ARM: sun7i: cubietruck: Convert to DT label based syntax
[firefly-linux-kernel-4.4.55.git] / arch / arm / boot / dts / sun7i-a20-cubietruck.dts
1 /*
2  * Copyright 2013 Oliver Schinagl
3  *
4  * Oliver Schinagl <oliver@schinagl.nl>
5  *
6  * 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.
10  *
11  *  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.
48  */
49
50 /dts-v1/;
51 #include "sun7i-a20.dtsi"
52 #include "sunxi-common-regulators.dtsi"
53
54 #include <dt-bindings/gpio/gpio.h>
55 #include <dt-bindings/interrupt-controller/irq.h>
56 #include <dt-bindings/pinctrl/sun4i-a10.h>
57
58 / {
59         model = "Cubietech Cubietruck";
60         compatible = "cubietech,cubietruck", "allwinner,sun7i-a20";
61
62         leds {
63                 compatible = "gpio-leds";
64                 pinctrl-names = "default";
65                 pinctrl-0 = <&led_pins_cubietruck>;
66
67                 blue {
68                         label = "cubietruck:blue:usr";
69                         gpios = <&pio 7 21 GPIO_ACTIVE_HIGH>;
70                 };
71
72                 orange {
73                         label = "cubietruck:orange:usr";
74                         gpios = <&pio 7 20 GPIO_ACTIVE_HIGH>;
75                 };
76
77                 white {
78                         label = "cubietruck:white:usr";
79                         gpios = <&pio 7 11 GPIO_ACTIVE_HIGH>;
80                 };
81
82                 green {
83                         label = "cubietruck:green:usr";
84                         gpios = <&pio 7 7 GPIO_ACTIVE_HIGH>;
85                 };
86         };
87
88         reg_vmmc3: vmmc3 {
89                 compatible = "regulator-fixed";
90                 pinctrl-names = "default";
91                 pinctrl-0 = <&vmmc3_pin_cubietruck>;
92                 regulator-name = "vmmc3";
93                 regulator-min-microvolt = <3300000>;
94                 regulator-max-microvolt = <3300000>;
95                 enable-active-high;
96                 gpio = <&pio 7 9 GPIO_ACTIVE_HIGH>;
97         };
98 };
99
100 &ahci {
101         target-supply = <&reg_ahci_5v>;
102         status = "okay";
103 };
104
105 &cpu0 {
106         cpu-supply = <&reg_dcdc2>;
107 };
108
109 &ehci0 {
110         status = "okay";
111 };
112
113 &ehci1 {
114         status = "okay";
115 };
116
117 &gmac {
118         pinctrl-names = "default";
119         pinctrl-0 = <&gmac_pins_rgmii_a>;
120         phy = <&phy1>;
121         phy-mode = "rgmii";
122         status = "okay";
123
124         phy1: ethernet-phy@1 {
125                 reg = <1>;
126         };
127 };
128
129 &i2c0 {
130         pinctrl-names = "default";
131         pinctrl-0 = <&i2c0_pins_a>;
132         status = "okay";
133
134         axp209: pmic@34 {
135                 reg = <0x34>;
136                 interrupt-parent = <&nmi_intc>;
137                 interrupts = <0 IRQ_TYPE_LEVEL_LOW>;
138         };
139 };
140
141 &i2c1 {
142         pinctrl-names = "default";
143         pinctrl-0 = <&i2c1_pins_a>;
144         status = "okay";
145 };
146
147 &i2c2 {
148         pinctrl-names = "default";
149         pinctrl-0 = <&i2c2_pins_a>;
150         status = "okay";
151 };
152
153 &ir0 {
154         pinctrl-names = "default";
155         pinctrl-0 = <&ir0_pins_a>;
156         status = "okay";
157 };
158
159 &mmc0 {
160         pinctrl-names = "default";
161         pinctrl-0 = <&mmc0_pins_a>, <&mmc0_cd_pin_reference_design>;
162         vmmc-supply = <&reg_vcc3v3>;
163         bus-width = <4>;
164         cd-gpios = <&pio 7 1 GPIO_ACTIVE_HIGH>; /* PH1 */
165         cd-inverted;
166         status = "okay";
167 };
168
169 &mmc3 {
170         pinctrl-names = "default";
171         pinctrl-0 = <&mmc3_pins_a>;
172         vmmc-supply = <&reg_vmmc3>;
173         bus-width = <4>;
174         non-removable;
175         status = "okay";
176 };
177
178 &mmc3_pins_a {
179         /* AP6210 requires pull-up */
180         allwinner,pull = <SUN4I_PINCTRL_PULL_UP>;
181 };
182
183 &ohci0 {
184         status = "okay";
185 };
186
187 &ohci1 {
188         status = "okay";
189 };
190
191 &pio {
192         vmmc3_pin_cubietruck: vmmc3_pin@0 {
193                 allwinner,pins = "PH9";
194                 allwinner,function = "gpio_out";
195                 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
196                 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
197         };
198
199         ahci_pwr_pin_cubietruck: ahci_pwr_pin@1 {
200                 allwinner,pins = "PH12";
201                 allwinner,function = "gpio_out";
202                 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
203                 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
204         };
205
206         led_pins_cubietruck: led_pins@0 {
207                 allwinner,pins = "PH7", "PH11", "PH20", "PH21";
208                 allwinner,function = "gpio_out";
209                 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
210                 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
211         };
212
213         usb0_vbus_pin_a: usb0_vbus_pin@0 {
214                 allwinner,pins = "PH17";
215                 allwinner,function = "gpio_out";
216                 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
217                 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
218         };
219 };
220
221 &pwm {
222         pinctrl-names = "default";
223         pinctrl-0 = <&pwm0_pins_a>, <&pwm1_pins_a>;
224         status = "okay";
225 };
226
227 &reg_ahci_5v {
228         pinctrl-0 = <&ahci_pwr_pin_cubietruck>;
229         gpio = <&pio 7 12 GPIO_ACTIVE_HIGH>;
230         status = "okay";
231 };
232
233 #include "axp209.dtsi"
234
235 &reg_dcdc2 {
236         regulator-always-on;
237         regulator-min-microvolt = <1000000>;
238         regulator-max-microvolt = <1450000>;
239         regulator-name = "vdd-cpu";
240 };
241
242 &reg_dcdc3 {
243         regulator-always-on;
244         regulator-min-microvolt = <1000000>;
245         regulator-max-microvolt = <1400000>;
246         regulator-name = "vdd-int-dll";
247 };
248
249 &reg_ldo1 {
250         regulator-name = "vdd-rtc";
251 };
252
253 &reg_ldo2 {
254         regulator-always-on;
255         regulator-min-microvolt = <3000000>;
256         regulator-max-microvolt = <3000000>;
257         regulator-name = "avcc";
258 };
259
260 &reg_usb0_vbus {
261         pinctrl-0 = <&usb0_vbus_pin_a>;
262         gpio = <&pio 7 17 GPIO_ACTIVE_HIGH>;
263         status = "okay";
264 };
265
266 &reg_usb1_vbus {
267         status = "okay";
268 };
269
270 &reg_usb2_vbus {
271         status = "okay";
272 };
273
274 &uart0 {
275         pinctrl-names = "default";
276         pinctrl-0 = <&uart0_pins_a>;
277         status = "okay";
278 };
279
280 &usbphy {
281         usb0_vbus-supply = <&reg_usb0_vbus>;
282         usb1_vbus-supply = <&reg_usb1_vbus>;
283         usb2_vbus-supply = <&reg_usb2_vbus>;
284         status = "okay";
285 };