1*086a2509Svishnupatekar/*
2*086a2509Svishnupatekar * Copyright 2015 Vishnu Patekar
3*086a2509Svishnupatekar * Vishnu Patekar <vishnupatekar0510@gmail.com>
4*086a2509Svishnupatekar *
5*086a2509Svishnupatekar * This file is dual-licensed: you can use it either under the terms
6*086a2509Svishnupatekar * of the GPL or the X11 license, at your option. Note that this dual
7*086a2509Svishnupatekar * licensing only applies to this file, and not this project as a
8*086a2509Svishnupatekar * whole.
9*086a2509Svishnupatekar *
10*086a2509Svishnupatekar *  a) This file is free software; you can redistribute it and/or
11*086a2509Svishnupatekar *     modify it under the terms of the GNU General Public License as
12*086a2509Svishnupatekar *     published by the Free Software Foundation; either version 2 of the
13*086a2509Svishnupatekar *     License, or (at your option) any later version.
14*086a2509Svishnupatekar *
15*086a2509Svishnupatekar *     This file is distributed in the hope that it will be useful,
16*086a2509Svishnupatekar *     but WITHOUT ANY WARRANTY; without even the implied warranty of
17*086a2509Svishnupatekar *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*086a2509Svishnupatekar *     GNU General Public License for more details.
19*086a2509Svishnupatekar *
20*086a2509Svishnupatekar * Or, alternatively,
21*086a2509Svishnupatekar *
22*086a2509Svishnupatekar *  b) Permission is hereby granted, free of charge, to any person
23*086a2509Svishnupatekar *     obtaining a copy of this software and associated documentation
24*086a2509Svishnupatekar *     files (the "Software"), to deal in the Software without
25*086a2509Svishnupatekar *     restriction, including without limitation the rights to use,
26*086a2509Svishnupatekar *     copy, modify, merge, publish, distribute, sublicense, and/or
27*086a2509Svishnupatekar *     sell copies of the Software, and to permit persons to whom the
28*086a2509Svishnupatekar *     Software is furnished to do so, subject to the following
29*086a2509Svishnupatekar *     conditions:
30*086a2509Svishnupatekar *
31*086a2509Svishnupatekar *     The above copyright notice and this permission notice shall be
32*086a2509Svishnupatekar *     included in all copies or substantial portions of the Software.
33*086a2509Svishnupatekar *
34*086a2509Svishnupatekar *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
35*086a2509Svishnupatekar *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
36*086a2509Svishnupatekar *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
37*086a2509Svishnupatekar *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
38*086a2509Svishnupatekar *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
39*086a2509Svishnupatekar *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
40*086a2509Svishnupatekar *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
41*086a2509Svishnupatekar *     OTHER DEALINGS IN THE SOFTWARE.
42*086a2509Svishnupatekar */
43*086a2509Svishnupatekar
44*086a2509Svishnupatekar/dts-v1/;
45*086a2509Svishnupatekar#include "sun8i-a83t.dtsi"
46*086a2509Svishnupatekar
47*086a2509Svishnupatekar/ {
48*086a2509Svishnupatekar	model = "Allwinner A83T H8Homlet Proto Dev Board v2.0";
49*086a2509Svishnupatekar	compatible = "allwinner,h8homlet-v2", "allwinner,sun8i-a83t";
50*086a2509Svishnupatekar
51*086a2509Svishnupatekar	aliases {
52*086a2509Svishnupatekar		serial0 = &uart0;
53*086a2509Svishnupatekar	};
54*086a2509Svishnupatekar
55*086a2509Svishnupatekar	chosen {
56*086a2509Svishnupatekar		stdout-path = "serial0:115200n8";
57*086a2509Svishnupatekar	};
58*086a2509Svishnupatekar};
59*086a2509Svishnupatekar
60*086a2509Svishnupatekar&uart0 {
61*086a2509Svishnupatekar	pinctrl-names = "default";
62*086a2509Svishnupatekar	pinctrl-0 = <&uart0_pins_b>;
63*086a2509Svishnupatekar	status = "okay";
64*086a2509Svishnupatekar};
65