1295011Sandrew/*
2295011Sandrew * Copyright 2015 Endless Mobile, Inc.
3295011Sandrew * Author: Carlo Caione <carlo@endlessm.com>
4295011Sandrew *
5295011Sandrew * This file is dual-licensed: you can use it either under the terms
6295011Sandrew * of the GPL or the X11 license, at your option. Note that this dual
7295011Sandrew * licensing only applies to this file, and not this project as a
8295011Sandrew * whole.
9295011Sandrew *
10295011Sandrew *  a) This library is free software; you can redistribute it and/or
11295011Sandrew *     modify it under the terms of the GNU General Public License as
12295011Sandrew *     published by the Free Software Foundation; either version 2 of the
13295011Sandrew *     License, or (at your option) any later version.
14295011Sandrew *
15295011Sandrew *     This library is distributed in the hope that it will be useful,
16295011Sandrew *     but WITHOUT ANY WARRANTY; without even the implied warranty of
17295011Sandrew *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18295011Sandrew *     GNU General Public License for more details.
19295011Sandrew *
20295011Sandrew *     You should have received a copy of the GNU General Public License
21295011Sandrew *     along with this program. If not, see <http://www.gnu.org/licenses/>.
22295011Sandrew *
23295011Sandrew * Or, alternatively,
24295011Sandrew *
25295011Sandrew *  b) Permission is hereby granted, free of charge, to any person
26295011Sandrew *     obtaining a copy of this software and associated documentation
27295011Sandrew *     files (the "Software"), to deal in the Software without
28295011Sandrew *     restriction, including without limitation the rights to use,
29295011Sandrew *     copy, modify, merge, publish, distribute, sublicense, and/or
30295011Sandrew *     sell copies of the Software, and to permit persons to whom the
31295011Sandrew *     Software is furnished to do so, subject to the following
32295011Sandrew *     conditions:
33295011Sandrew *
34295011Sandrew *     The above copyright notice and this permission notice shall be
35295011Sandrew *     included in all copies or substantial portions of the Software.
36295011Sandrew *
37295011Sandrew *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
38295011Sandrew *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
39295011Sandrew *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
40295011Sandrew *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
41295011Sandrew *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
42295011Sandrew *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
43295011Sandrew *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
44295011Sandrew *     OTHER DEALINGS IN THE SOFTWARE.
45295011Sandrew */
46295011Sandrew
47295011Sandrew/dts-v1/;
48295011Sandrew#include "meson8b.dtsi"
49295011Sandrew
50295011Sandrew/ {
51295011Sandrew	model = "TRONFY MXQ S805";
52295011Sandrew	compatible = "tronfy,mxq", "amlogic,meson8b";
53295011Sandrew
54295011Sandrew	aliases {
55295011Sandrew		serial0 = &uart_AO;
56295011Sandrew	};
57295011Sandrew
58295011Sandrew	memory {
59295011Sandrew		reg = <0x40000000 0x40000000>;
60295011Sandrew	};
61295011Sandrew};
62295011Sandrew
63295011Sandrew&uart_AO {
64295011Sandrew	status = "okay";
65295011Sandrew	pinctrl-0 = <&uart_ao_a_pins>;
66295011Sandrew	pinctrl-names = "default";
67295011Sandrew};
68