Merge tag 'zynq-dt-for-v5.0' of https://github.com/Xilinx/linux-xlnx into next/dt
[sfrench/cifs-2.6.git] / arch / arm / boot / dts / sun6i-a31-hummingbird.dts
1 /*
2  * Copyright 2014 Maxime Ripard
3  *
4  * Maxime Ripard <maxime.ripard@free-electrons.com>
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  * Or, alternatively,
22  *
23  *  b) Permission is hereby granted, free of charge, to any person
24  *     obtaining a copy of this software and associated documentation
25  *     files (the "Software"), to deal in the Software without
26  *     restriction, including without limitation the rights to use,
27  *     copy, modify, merge, publish, distribute, sublicense, and/or
28  *     sell copies of the Software, and to permit persons to whom the
29  *     Software is furnished to do so, subject to the following
30  *     conditions:
31  *
32  *     The above copyright notice and this permission notice shall be
33  *     included in all copies or substantial portions of the Software.
34  *
35  *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
36  *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
37  *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
38  *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
39  *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
40  *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
41  *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
42  *     OTHER DEALINGS IN THE SOFTWARE.
43  */
44
45 /dts-v1/;
46 #include "sun6i-a31.dtsi"
47 #include "sunxi-common-regulators.dtsi"
48
49 #include <dt-bindings/gpio/gpio.h>
50
51 / {
52         model = "Merrii A31 Hummingbird";
53         compatible = "merrii,a31-hummingbird", "allwinner,sun6i-a31";
54
55         aliases {
56                 rtc0 = &pcf8563;
57                 rtc1 = &rtc;
58                 serial0 = &uart0;
59         };
60
61         chosen {
62                 stdout-path = "serial0:115200n8";
63         };
64
65         hdmi-connector {
66                 compatible = "hdmi-connector";
67                 type = "a";
68
69                 port {
70                         hdmi_con_in: endpoint {
71                                 remote-endpoint = <&hdmi_out_con>;
72                         };
73                 };
74         };
75
76         vga-connector {
77                 compatible = "vga-connector";
78
79                 port {
80                         vga_con_in: endpoint {
81                                 remote-endpoint = <&vga_dac_out>;
82                         };
83                 };
84         };
85
86         vga-dac {
87                 compatible = "dumb-vga-dac";
88                 vdd-supply = <&reg_vga_3v3>;
89                 #address-cells = <1>;
90                 #size-cells = <0>;
91
92                 ports {
93                         #address-cells = <1>;
94                         #size-cells = <0>;
95
96                         port@0 {
97                                 #address-cells = <1>;
98                                 #size-cells = <0>;
99                                 reg = <0>;
100
101                                 vga_dac_in: endpoint@0 {
102                                         reg = <0>;
103                                         remote-endpoint = <&tcon0_out_vga>;
104                                 };
105                         };
106
107                         port@1 {
108                                 #address-cells = <1>;
109                                 #size-cells = <0>;
110                                 reg = <1>;
111
112                                 vga_dac_out: endpoint@0 {
113                                         reg = <0>;
114                                         remote-endpoint = <&vga_con_in>;
115                                 };
116                         };
117                 };
118         };
119
120         reg_vga_3v3: vga_3v3_regulator {
121                 compatible = "regulator-fixed";
122                 regulator-name = "vga-3v3";
123                 regulator-min-microvolt = <3300000>;
124                 regulator-max-microvolt = <3300000>;
125                 regulator-boot-on;
126                 enable-active-high;
127                 gpio = <&pio 7 25 GPIO_ACTIVE_HIGH>; /* PH25 */
128         };
129
130         wifi_pwrseq: wifi_pwrseq {
131                 compatible = "mmc-pwrseq-simple";
132                 reset-gpios = <&pio 6 10 GPIO_ACTIVE_LOW>; /* PG10 */
133         };
134 };
135
136 &codec {
137         allwinner,audio-routing =
138                 "Headphone", "HP",
139                 "Speaker", "LINEOUT",
140                 "LINEIN", "Line In",
141                 "MIC1", "Mic",
142                 "MIC2", "Headset Mic",
143                 "Mic",  "MBIAS",
144                 "Headset Mic", "HBIAS";
145         allwinner,pa-gpios = <&pio 7 22 GPIO_ACTIVE_HIGH>; /* PH22 */
146         status = "okay";
147 };
148
149 &cpu0 {
150         cpu-supply = <&reg_dcdc3>;
151 };
152
153 &de {
154         status = "okay";
155 };
156
157 &ehci0 {
158         status = "okay";
159 };
160
161 &gmac {
162         pinctrl-names = "default";
163         pinctrl-0 = <&gmac_rgmii_pins>;
164         phy = <&phy1>;
165         phy-mode = "rgmii";
166         snps,reset-gpio = <&pio 0 21 GPIO_ACTIVE_HIGH>;
167         snps,reset-active-low;
168         snps,reset-delays-us = <0 10000 30000>;
169         status = "okay";
170
171         phy1: ethernet-phy@1 {
172                 reg = <1>;
173         };
174 };
175
176 &hdmi {
177         status = "okay";
178 };
179
180 &hdmi_out {
181         hdmi_out_con: endpoint {
182                 remote-endpoint = <&hdmi_con_in>;
183         };
184 };
185
186 &i2c0 {
187         /* pull-ups and devices require AXP221 DLDO3 */
188         status = "failed";
189 };
190
191 &i2c1 {
192         status = "okay";
193 };
194
195 &i2c2 {
196         status = "okay";
197
198         pcf8563: rtc@51 {
199                 compatible = "nxp,pcf8563";
200                 reg = <0x51>;
201         };
202 };
203
204 &ir {
205         pinctrl-names = "default";
206         pinctrl-0 = <&s_ir_rx_pin>;
207         status = "okay";
208 };
209
210 &mmc0 {
211         vmmc-supply = <&reg_dcdc1>;
212         bus-width = <4>;
213         cd-gpios = <&pio 0 8 GPIO_ACTIVE_LOW>; /* PA8 */
214         status = "okay";
215 };
216
217 &mmc1 {
218         vmmc-supply = <&reg_aldo1>;
219         mmc-pwrseq = <&wifi_pwrseq>;
220         bus-width = <4>;
221         non-removable;
222         status = "okay";
223 };
224
225 &ohci0 {
226         status = "okay";
227 };
228
229 &p2wi {
230         status = "okay";
231
232         axp22x: pmic@68 {
233                 compatible = "x-powers,axp221";
234                 reg = <0x68>;
235                 interrupt-parent = <&nmi_intc>;
236                 interrupts = <0 IRQ_TYPE_LEVEL_LOW>;
237                 x-powers,drive-vbus-en;
238         };
239 };
240
241 #include "axp22x.dtsi"
242
243 &ac_power_supply {
244         status = "okay";
245 };
246
247 &reg_aldo1 {
248         regulator-min-microvolt = <3300000>;
249         regulator-max-microvolt = <3300000>;
250         regulator-name = "vcc-wifi";
251 };
252
253 &reg_aldo3 {
254         regulator-always-on;
255         regulator-min-microvolt = <2700000>;
256         regulator-max-microvolt = <3300000>;
257         regulator-name = "avcc";
258 };
259
260 &reg_dc5ldo {
261         regulator-min-microvolt = <700000>;
262         regulator-max-microvolt = <1320000>;
263         regulator-name = "vdd-cpus";
264 };
265
266 &reg_dcdc1 {
267         regulator-always-on;
268         regulator-min-microvolt = <3000000>;
269         regulator-max-microvolt = <3000000>;
270         regulator-name = "vcc-3v0";
271 };
272
273 &reg_dcdc2 {
274         regulator-min-microvolt = <700000>;
275         regulator-max-microvolt = <1320000>;
276         regulator-name = "vdd-gpu";
277 };
278
279 &reg_dcdc3 {
280         regulator-always-on;
281         regulator-min-microvolt = <700000>;
282         regulator-max-microvolt = <1320000>;
283         regulator-name = "vdd-cpu";
284 };
285
286 &reg_dcdc4 {
287         regulator-always-on;
288         regulator-min-microvolt = <700000>;
289         regulator-max-microvolt = <1320000>;
290         regulator-name = "vdd-sys-dll";
291 };
292
293 &reg_dcdc5 {
294         regulator-always-on;
295         regulator-min-microvolt = <1500000>;
296         regulator-max-microvolt = <1500000>;
297         regulator-name = "vcc-dram";
298 };
299
300 &reg_drivevbus {
301         regulator-name = "usb0-vbus";
302         status = "okay";
303 };
304
305 &reg_usb1_vbus {
306         gpio = <&pio 7 24 GPIO_ACTIVE_HIGH>; /* PH24 */
307         status = "okay";
308 };
309
310 &tcon0 {
311         pinctrl-names = "default";
312         pinctrl-0 = <&lcd0_rgb888_pins>;
313 };
314
315 &tcon0_out {
316         tcon0_out_vga: endpoint@0 {
317                 reg = <0>;
318                 remote-endpoint = <&vga_dac_in>;
319         };
320 };
321
322 &uart0 {
323         pinctrl-names = "default";
324         pinctrl-0 = <&uart0_ph_pins>;
325         status = "okay";
326 };
327
328 &usb_otg {
329         dr_mode = "otg";
330         status = "okay";
331 };
332
333 &usb_power_supply {
334         status = "okay";
335 };
336
337 &usbphy {
338         usb0_id_det-gpio = <&pio 0 15 GPIO_ACTIVE_HIGH>; /* PA15 */
339         usb0_vbus_det-gpio = <&pio 0 16 GPIO_ACTIVE_HIGH>; /* PA16 */
340         usb0_vbus_power-supply = <&usb_power_supply>;
341         usb0_vbus-supply = <&reg_drivevbus>;
342         usb1_vbus-supply = <&reg_usb1_vbus>;
343         status = "okay";
344 };