blob: 3bcfd81837f048c2d329cee59d08733998f99f8b [file] [log] [blame]
Emilio López629ae882013-08-13 20:18:21 -03001/*
2 * Copyright 2013 Emilio López
3 *
4 * Emilio López <emilio@elopez.com.ar>
5 *
Maxime Ripard2ef6ef92014-09-02 19:25:26 +02006 * This file is dual-licensed: you can use it either under the terms
7 * of the GPL or the X11 license, at your option. Note that this dual
8 * licensing only applies to this file, and not this project as a
9 * whole.
Emilio López629ae882013-08-13 20:18:21 -030010 *
Maxime Ripard2ef6ef92014-09-02 19:25:26 +020011 * a) This file is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of the
14 * License, or (at your option) any later version.
15 *
16 * This file is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public
22 * License along with this file; if not, write to the Free
23 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
24 * MA 02110-1301 USA
25 *
26 * Or, alternatively,
27 *
28 * b) Permission is hereby granted, free of charge, to any person
29 * obtaining a copy of this software and associated documentation
30 * files (the "Software"), to deal in the Software without
31 * restriction, including without limitation the rights to use,
32 * copy, modify, merge, publish, distribute, sublicense, and/or
33 * sell copies of the Software, and to permit persons to whom the
34 * Software is furnished to do so, subject to the following
35 * conditions:
36 *
37 * The above copyright notice and this permission notice shall be
38 * included in all copies or substantial portions of the Software.
39 *
40 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
41 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
42 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
43 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
44 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
45 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
46 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
47 * OTHER DEALINGS IN THE SOFTWARE.
Emilio López629ae882013-08-13 20:18:21 -030048 */
49
50/dts-v1/;
51/include/ "sun4i-a10.dtsi"
Roman Byshko2428b6c2014-03-01 20:26:26 +010052/include/ "sunxi-common-regulators.dtsi"
Emilio López629ae882013-08-13 20:18:21 -030053
54/ {
55 model = "Mele A1000";
56 compatible = "mele,a1000", "allwinner,sun4i-a10";
57
Emilio López629ae882013-08-13 20:18:21 -030058 soc@01c00000 {
59 emac: ethernet@01c0b000 {
60 pinctrl-names = "default";
61 pinctrl-0 = <&emac_pins_a>;
62 phy = <&phy1>;
63 status = "okay";
64 };
65
66 mdio@01c0b080 {
67 phy-supply = <&reg_emac_3v3>;
68 status = "okay";
69
70 phy1: ethernet-phy@1 {
71 reg = <1>;
72 };
73 };
74
Hans de Goedec0955a82014-05-02 17:57:20 +020075 mmc0: mmc@01c0f000 {
76 pinctrl-names = "default";
77 pinctrl-0 = <&mmc0_pins_a>, <&mmc0_cd_pin_reference_design>;
Hans de Goedea4da4762014-05-11 09:46:54 +020078 vmmc-supply = <&reg_vcc3v3>;
Hans de Goedec0955a82014-05-02 17:57:20 +020079 bus-width = <4>;
80 cd-gpios = <&pio 7 1 0>; /* PH1 */
81 cd-inverted;
82 status = "okay";
83 };
84
Roman Byshko2428b6c2014-03-01 20:26:26 +010085 usbphy: phy@01c13400 {
86 usb1_vbus-supply = <&reg_usb1_vbus>;
87 usb2_vbus-supply = <&reg_usb2_vbus>;
88 status = "okay";
89 };
90
91 ehci0: usb@01c14000 {
92 status = "okay";
93 };
94
95 ohci0: usb@01c14400 {
96 status = "okay";
97 };
98
Oliver Schinagl248bd1e2014-03-01 20:26:21 +010099 ahci: sata@01c18000 {
100 status = "okay";
101 };
102
Roman Byshko2428b6c2014-03-01 20:26:26 +0100103 ehci1: usb@01c1c000 {
104 status = "okay";
105 };
106
107 ohci1: usb@01c1c400 {
108 status = "okay";
109 };
110
Emilio López629ae882013-08-13 20:18:21 -0300111 pinctrl@01c20800 {
112 emac_power_pin_a1000: emac_power_pin@0 {
113 allwinner,pins = "PH15";
114 allwinner,function = "gpio_out";
115 allwinner,drive = <0>;
116 allwinner,pull = <0>;
117 };
118
119 led_pins_a1000: led_pins@0 {
120 allwinner,pins = "PH10", "PH20";
121 allwinner,function = "gpio_out";
122 allwinner,drive = <0>;
123 allwinner,pull = <0>;
124 };
125 };
126
Hans de Goede4a5c5862014-06-30 23:57:59 +0200127 ir0: ir@01c21800 {
128 pinctrl-names = "default";
129 pinctrl-0 = <&ir0_pins_a>;
130 status = "okay";
131 };
132
Emilio López629ae882013-08-13 20:18:21 -0300133 uart0: serial@01c28000 {
134 pinctrl-names = "default";
135 pinctrl-0 = <&uart0_pins_a>;
136 status = "okay";
137 };
138
139 i2c0: i2c@01c2ac00 {
140 pinctrl-names = "default";
141 pinctrl-0 = <&i2c0_pins_a>;
142 status = "okay";
Carlo Caionee288f1b2014-06-30 23:57:52 +0200143
144 axp209: pmic@34 {
145 compatible = "x-powers,axp209";
146 reg = <0x34>;
147 interrupts = <0>;
148
149 interrupt-controller;
150 #interrupt-cells = <1>;
151 };
Emilio López629ae882013-08-13 20:18:21 -0300152 };
153 };
154
155 leds {
156 compatible = "gpio-leds";
157 pinctrl-names = "default";
158 pinctrl-0 = <&led_pins_a1000>;
159
160 red {
161 label = "a1000:red:usr";
162 gpios = <&pio 7 10 0>;
163 };
164
165 blue {
166 label = "a1000:blue:usr";
167 gpios = <&pio 7 20 0>;
168 };
169 };
170
Hans de Goede5991bbe2014-02-22 16:53:42 +0100171 reg_emac_3v3: emac-3v3 {
172 compatible = "regulator-fixed";
173 pinctrl-names = "default";
174 pinctrl-0 = <&emac_power_pin_a1000>;
175 regulator-name = "emac-3v3";
176 regulator-min-microvolt = <3300000>;
177 regulator-max-microvolt = <3300000>;
178 enable-active-high;
179 gpio = <&pio 7 15 0>;
Emilio López629ae882013-08-13 20:18:21 -0300180 };
Roman Byshko2428b6c2014-03-01 20:26:26 +0100181
182 reg_usb1_vbus: usb1-vbus {
183 status = "okay";
184 };
185
186 reg_usb2_vbus: usb2-vbus {
187 status = "okay";
188 };
Emilio López629ae882013-08-13 20:18:21 -0300189};