blob: 1df6ca4f31b2b32f16eb403adb03a4f98912f237 [file] [log] [blame]
Hans de Goedeb7f90072015-11-20 16:03:56 +01001/*
2 * Copyright (C) 2015 Jens Kuske <jenskuske@gmail.com>
3 *
4 * This file is dual-licensed: you can use it either under the terms
5 * of the GPL or the X11 license, at your option. Note that this dual
6 * licensing only applies to this file, and not this project as a
7 * whole.
8 *
9 * a) This file is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
13 *
14 * This file is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * Or, alternatively,
20 *
21 * b) Permission is hereby granted, free of charge, to any person
22 * obtaining a copy of this software and associated documentation
23 * files (the "Software"), to deal in the Software without
24 * restriction, including without limitation the rights to use,
25 * copy, modify, merge, publish, distribute, sublicense, and/or
26 * sell copies of the Software, and to permit persons to whom the
27 * Software is furnished to do so, subject to the following
28 * conditions:
29 *
30 * The above copyright notice and this permission notice shall be
31 * included in all copies or substantial portions of the Software.
32 *
33 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
34 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
35 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
36 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
37 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
38 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
39 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
40 * OTHER DEALINGS IN THE SOFTWARE.
41 */
42
43#include "skeleton.dtsi"
44
Hans de Goede6ebb4d02016-08-18 20:51:12 +020045#include <dt-bindings/clock/sun8i-h3-ccu.h>
Hans de Goedeb7f90072015-11-20 16:03:56 +010046#include <dt-bindings/interrupt-controller/arm-gic.h>
47#include <dt-bindings/pinctrl/sun4i-a10.h>
Hans de Goede6ebb4d02016-08-18 20:51:12 +020048#include <dt-bindings/reset/sun8i-h3-ccu.h>
Hans de Goedeb7f90072015-11-20 16:03:56 +010049
50/ {
51 interrupt-parent = <&gic>;
52
Chen-Yu Tsai343f0b82016-07-22 18:16:08 +080053 aliases {
Hans de Goede6ebb4d02016-08-18 20:51:12 +020054 ethernet0 = &emac;
Chen-Yu Tsai343f0b82016-07-22 18:16:08 +080055 };
56
Hans de Goedeb7f90072015-11-20 16:03:56 +010057 cpus {
58 #address-cells = <1>;
59 #size-cells = <0>;
60
61 cpu@0 {
62 compatible = "arm,cortex-a7";
63 device_type = "cpu";
64 reg = <0>;
65 };
66
67 cpu@1 {
68 compatible = "arm,cortex-a7";
69 device_type = "cpu";
70 reg = <1>;
71 };
72
73 cpu@2 {
74 compatible = "arm,cortex-a7";
75 device_type = "cpu";
76 reg = <2>;
77 };
78
79 cpu@3 {
80 compatible = "arm,cortex-a7";
81 device_type = "cpu";
82 reg = <3>;
83 };
84 };
85
86 timer {
87 compatible = "arm,armv7-timer";
88 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
89 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
90 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
91 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>;
Hans de Goedeb7f90072015-11-20 16:03:56 +010092 };
93
Hans de Goedeb7f90072015-11-20 16:03:56 +010094 clocks {
95 #address-cells = <1>;
96 #size-cells = <1>;
97 ranges;
98
99 osc24M: osc24M_clk {
100 #clock-cells = <0>;
101 compatible = "fixed-clock";
102 clock-frequency = <24000000>;
103 clock-output-names = "osc24M";
104 };
105
106 osc32k: osc32k_clk {
107 #clock-cells = <0>;
108 compatible = "fixed-clock";
109 clock-frequency = <32768>;
110 clock-output-names = "osc32k";
111 };
112
Hans de Goede19888a42016-03-14 17:37:09 +0100113 apb0: apb0_clk {
114 compatible = "fixed-factor-clock";
115 #clock-cells = <0>;
116 clock-div = <1>;
117 clock-mult = <1>;
118 clocks = <&osc24M>;
119 clock-output-names = "apb0";
120 };
121
122 apb0_gates: clk@01f01428 {
123 compatible = "allwinner,sun8i-h3-apb0-gates-clk",
124 "allwinner,sun4i-a10-gates-clk";
125 reg = <0x01f01428 0x4>;
126 #clock-cells = <1>;
127 clocks = <&apb0>;
128 clock-indices = <0>, <1>;
129 clock-output-names = "apb0_pio", "apb0_ir";
130 };
131
132 ir_clk: ir_clk@01f01454 {
133 compatible = "allwinner,sun4i-a10-mod0-clk";
134 reg = <0x01f01454 0x4>;
135 #clock-cells = <0>;
136 clocks = <&osc32k>, <&osc24M>;
137 clock-output-names = "ir";
138 };
Hans de Goedeb7f90072015-11-20 16:03:56 +0100139 };
140
141 soc {
142 compatible = "simple-bus";
143 #address-cells = <1>;
144 #size-cells = <1>;
145 ranges;
146
Andre Przywarab7923232018-04-04 01:31:18 +0100147 syscon: syscon@1c00000 {
148 compatible = "allwinner,sun8i-h3-system-controller",
149 "syscon";
150 reg = <0x01c00000 0x1000>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200151 };
152
Hans de Goedeb7f90072015-11-20 16:03:56 +0100153 dma: dma-controller@01c02000 {
154 compatible = "allwinner,sun8i-h3-dma";
155 reg = <0x01c02000 0x1000>;
156 interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200157 clocks = <&ccu CLK_BUS_DMA>;
158 resets = <&ccu RST_BUS_DMA>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100159 #dma-cells = <1>;
160 };
161
162 mmc0: mmc@01c0f000 {
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200163 compatible = "allwinner,sun7i-a20-mmc",
164 "allwinner,sun5i-a13-mmc";
Hans de Goedeb7f90072015-11-20 16:03:56 +0100165 reg = <0x01c0f000 0x1000>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200166 clocks = <&ccu CLK_BUS_MMC0>,
167 <&ccu CLK_MMC0>,
168 <&ccu CLK_MMC0_OUTPUT>,
169 <&ccu CLK_MMC0_SAMPLE>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100170 clock-names = "ahb",
171 "mmc",
172 "output",
173 "sample";
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200174 resets = <&ccu RST_BUS_MMC0>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100175 reset-names = "ahb";
176 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
177 status = "disabled";
178 #address-cells = <1>;
179 #size-cells = <0>;
180 };
181
182 mmc1: mmc@01c10000 {
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200183 compatible = "allwinner,sun7i-a20-mmc",
184 "allwinner,sun5i-a13-mmc";
Hans de Goedeb7f90072015-11-20 16:03:56 +0100185 reg = <0x01c10000 0x1000>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200186 clocks = <&ccu CLK_BUS_MMC1>,
187 <&ccu CLK_MMC1>,
188 <&ccu CLK_MMC1_OUTPUT>,
189 <&ccu CLK_MMC1_SAMPLE>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100190 clock-names = "ahb",
191 "mmc",
192 "output",
193 "sample";
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200194 resets = <&ccu RST_BUS_MMC1>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100195 reset-names = "ahb";
196 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
197 status = "disabled";
198 #address-cells = <1>;
199 #size-cells = <0>;
200 };
201
202 mmc2: mmc@01c11000 {
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200203 compatible = "allwinner,sun7i-a20-mmc",
204 "allwinner,sun5i-a13-mmc";
Hans de Goedeb7f90072015-11-20 16:03:56 +0100205 reg = <0x01c11000 0x1000>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200206 clocks = <&ccu CLK_BUS_MMC2>,
207 <&ccu CLK_MMC2>,
208 <&ccu CLK_MMC2_OUTPUT>,
209 <&ccu CLK_MMC2_SAMPLE>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100210 clock-names = "ahb",
211 "mmc",
212 "output",
213 "sample";
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200214 resets = <&ccu RST_BUS_MMC2>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100215 reset-names = "ahb";
216 interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
217 status = "disabled";
218 #address-cells = <1>;
219 #size-cells = <0>;
220 };
221
Jun Nie22e39362018-05-07 13:03:40 +0530222 usb_otg: usb@1c19000 {
223 compatible = "allwinner,sun8i-h3-musb";
224 reg = <0x01c19000 0x400>;
225 clocks = <&ccu CLK_BUS_OTG>;
226 resets = <&ccu RST_BUS_OTG>;
227 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
228 interrupt-names = "mc";
229 phys = <&usbphy 0>;
230 phy-names = "usb";
231 extcon = <&usbphy 0>;
232 status = "disabled";
233 };
234
Hans de Goedeb7f90072015-11-20 16:03:56 +0100235 usbphy: phy@01c19400 {
236 compatible = "allwinner,sun8i-h3-usb-phy";
237 reg = <0x01c19400 0x2c>,
238 <0x01c1a800 0x4>,
239 <0x01c1b800 0x4>,
240 <0x01c1c800 0x4>,
241 <0x01c1d800 0x4>;
242 reg-names = "phy_ctrl",
243 "pmu0",
244 "pmu1",
245 "pmu2",
246 "pmu3";
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200247 clocks = <&ccu CLK_USB_PHY0>,
248 <&ccu CLK_USB_PHY1>,
249 <&ccu CLK_USB_PHY2>,
250 <&ccu CLK_USB_PHY3>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100251 clock-names = "usb0_phy",
252 "usb1_phy",
253 "usb2_phy",
254 "usb3_phy";
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200255 resets = <&ccu RST_USB_PHY0>,
256 <&ccu RST_USB_PHY1>,
257 <&ccu RST_USB_PHY2>,
258 <&ccu RST_USB_PHY3>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100259 reset-names = "usb0_reset",
260 "usb1_reset",
261 "usb2_reset",
262 "usb3_reset";
263 status = "disabled";
264 #phy-cells = <1>;
265 };
266
Jun Nie22e39362018-05-07 13:03:40 +0530267 ehci0: usb@1c1a000 {
268 compatible = "allwinner,sun8i-h3-ehci", "generic-ehci";
269 reg = <0x01c1a000 0x100>;
270 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
271 clocks = <&ccu CLK_BUS_EHCI0>, <&ccu CLK_BUS_OHCI0>;
272 resets = <&ccu RST_BUS_EHCI0>, <&ccu RST_BUS_OHCI0>;
273 status = "disabled";
274 };
275
276 ohci0: usb@1c1a400 {
277 compatible = "allwinner,sun8i-h3-ohci", "generic-ohci";
278 reg = <0x01c1a400 0x100>;
279 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
280 clocks = <&ccu CLK_BUS_EHCI0>, <&ccu CLK_BUS_OHCI0>,
281 <&ccu CLK_USB_OHCI0>;
282 resets = <&ccu RST_BUS_EHCI0>, <&ccu RST_BUS_OHCI0>;
283 status = "disabled";
284 };
285
Hans de Goedeb7f90072015-11-20 16:03:56 +0100286 ehci1: usb@01c1b000 {
287 compatible = "allwinner,sun8i-h3-ehci", "generic-ehci";
288 reg = <0x01c1b000 0x100>;
289 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200290 clocks = <&ccu CLK_BUS_EHCI1>, <&ccu CLK_BUS_OHCI1>;
291 resets = <&ccu RST_BUS_EHCI1>, <&ccu RST_BUS_OHCI1>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100292 phys = <&usbphy 1>;
293 phy-names = "usb";
294 status = "disabled";
295 };
296
297 ohci1: usb@01c1b400 {
298 compatible = "allwinner,sun8i-h3-ohci", "generic-ohci";
299 reg = <0x01c1b400 0x100>;
300 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200301 clocks = <&ccu CLK_BUS_EHCI1>, <&ccu CLK_BUS_OHCI1>,
302 <&ccu CLK_USB_OHCI1>;
303 resets = <&ccu RST_BUS_EHCI1>, <&ccu RST_BUS_OHCI1>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100304 phys = <&usbphy 1>;
305 phy-names = "usb";
306 status = "disabled";
307 };
308
309 ehci2: usb@01c1c000 {
310 compatible = "allwinner,sun8i-h3-ehci", "generic-ehci";
311 reg = <0x01c1c000 0x100>;
312 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200313 clocks = <&ccu CLK_BUS_EHCI2>, <&ccu CLK_BUS_OHCI2>;
314 resets = <&ccu RST_BUS_EHCI2>, <&ccu RST_BUS_OHCI2>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100315 phys = <&usbphy 2>;
316 phy-names = "usb";
317 status = "disabled";
318 };
319
320 ohci2: usb@01c1c400 {
321 compatible = "allwinner,sun8i-h3-ohci", "generic-ohci";
322 reg = <0x01c1c400 0x100>;
323 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200324 clocks = <&ccu CLK_BUS_EHCI2>, <&ccu CLK_BUS_OHCI2>,
325 <&ccu CLK_USB_OHCI2>;
326 resets = <&ccu RST_BUS_EHCI2>, <&ccu RST_BUS_OHCI2>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100327 phys = <&usbphy 2>;
328 phy-names = "usb";
329 status = "disabled";
330 };
331
332 ehci3: usb@01c1d000 {
333 compatible = "allwinner,sun8i-h3-ehci", "generic-ehci";
334 reg = <0x01c1d000 0x100>;
335 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200336 clocks = <&ccu CLK_BUS_EHCI3>, <&ccu CLK_BUS_OHCI3>;
337 resets = <&ccu RST_BUS_EHCI3>, <&ccu RST_BUS_OHCI3>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100338 phys = <&usbphy 3>;
339 phy-names = "usb";
340 status = "disabled";
341 };
342
343 ohci3: usb@01c1d400 {
344 compatible = "allwinner,sun8i-h3-ohci", "generic-ohci";
345 reg = <0x01c1d400 0x100>;
346 interrupts = <GIC_SPI 79 IRQ_TYPE_LEVEL_HIGH>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200347 clocks = <&ccu CLK_BUS_EHCI3>, <&ccu CLK_BUS_OHCI3>,
348 <&ccu CLK_USB_OHCI3>;
349 resets = <&ccu RST_BUS_EHCI3>, <&ccu RST_BUS_OHCI3>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100350 phys = <&usbphy 3>;
351 phy-names = "usb";
352 status = "disabled";
353 };
354
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200355 ccu: clock@01c20000 {
356 compatible = "allwinner,sun8i-h3-ccu";
357 reg = <0x01c20000 0x400>;
358 clocks = <&osc24M>, <&osc32k>;
359 clock-names = "hosc", "losc";
360 #clock-cells = <1>;
361 #reset-cells = <1>;
362 };
363
Hans de Goedeb7f90072015-11-20 16:03:56 +0100364 pio: pinctrl@01c20800 {
365 compatible = "allwinner,sun8i-h3-pinctrl";
366 reg = <0x01c20800 0x400>;
367 interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>,
368 <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200369 clocks = <&ccu CLK_BUS_PIO>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100370 gpio-controller;
371 #gpio-cells = <3>;
372 interrupt-controller;
Hans de Goede19888a42016-03-14 17:37:09 +0100373 #interrupt-cells = <3>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100374
Andre Przywarab7923232018-04-04 01:31:18 +0100375 emac_rgmii_pins: emac0 {
376 pins = "PD0", "PD1", "PD2", "PD3", "PD4",
377 "PD5", "PD7", "PD8", "PD9", "PD10",
378 "PD12", "PD13", "PD15", "PD16", "PD17";
379 function = "emac";
380 drive-strength = <40>;
Amit Singh Tomard194c0e2016-07-06 17:59:44 +0530381 };
382
Hans de Goedeb7f90072015-11-20 16:03:56 +0100383 mmc0_pins_a: mmc0@0 {
384 allwinner,pins = "PF0", "PF1", "PF2", "PF3",
385 "PF4", "PF5";
386 allwinner,function = "mmc0";
387 allwinner,drive = <SUN4I_PINCTRL_30_MA>;
388 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
389 };
390
391 mmc0_cd_pin: mmc0_cd_pin@0 {
392 allwinner,pins = "PF6";
393 allwinner,function = "gpio_in";
394 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
395 allwinner,pull = <SUN4I_PINCTRL_PULL_UP>;
396 };
397
398 mmc1_pins_a: mmc1@0 {
399 allwinner,pins = "PG0", "PG1", "PG2", "PG3",
400 "PG4", "PG5";
401 allwinner,function = "mmc1";
402 allwinner,drive = <SUN4I_PINCTRL_30_MA>;
403 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
404 };
Hans de Goedea4afc312016-07-09 17:31:14 +0200405
406 mmc2_8bit_pins: mmc2_8bit {
407 allwinner,pins = "PC5", "PC6", "PC8",
408 "PC9", "PC10", "PC11",
409 "PC12", "PC13", "PC14",
410 "PC15", "PC16";
411 allwinner,function = "mmc2";
412 allwinner,drive = <SUN4I_PINCTRL_30_MA>;
413 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
414 };
Hans de Goedeb7f90072015-11-20 16:03:56 +0100415
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200416 uart0_pins_a: uart0@0 {
417 allwinner,pins = "PA4", "PA5";
418 allwinner,function = "uart0";
419 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
420 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
421 };
Hans de Goede19888a42016-03-14 17:37:09 +0100422
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200423 uart1_pins_a: uart1@0 {
424 allwinner,pins = "PG6", "PG7", "PG8", "PG9";
425 allwinner,function = "uart1";
426 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
427 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
428 };
Hans de Goede19888a42016-03-14 17:37:09 +0100429 };
430
Hans de Goedeb7f90072015-11-20 16:03:56 +0100431 timer@01c20c00 {
432 compatible = "allwinner,sun4i-a10-timer";
433 reg = <0x01c20c00 0xa0>;
434 interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>,
435 <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
436 clocks = <&osc24M>;
437 };
438
439 wdt0: watchdog@01c20ca0 {
440 compatible = "allwinner,sun6i-a31-wdt";
441 reg = <0x01c20ca0 0x20>;
442 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
443 };
444
445 uart0: serial@01c28000 {
446 compatible = "snps,dw-apb-uart";
447 reg = <0x01c28000 0x400>;
448 interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>;
449 reg-shift = <2>;
450 reg-io-width = <4>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200451 clocks = <&ccu CLK_BUS_UART0>;
452 resets = <&ccu RST_BUS_UART0>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100453 dmas = <&dma 6>, <&dma 6>;
454 dma-names = "rx", "tx";
455 status = "disabled";
456 };
457
458 uart1: serial@01c28400 {
459 compatible = "snps,dw-apb-uart";
460 reg = <0x01c28400 0x400>;
461 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
462 reg-shift = <2>;
463 reg-io-width = <4>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200464 clocks = <&ccu CLK_BUS_UART1>;
465 resets = <&ccu RST_BUS_UART1>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100466 dmas = <&dma 7>, <&dma 7>;
467 dma-names = "rx", "tx";
468 status = "disabled";
469 };
470
471 uart2: serial@01c28800 {
472 compatible = "snps,dw-apb-uart";
473 reg = <0x01c28800 0x400>;
474 interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>;
475 reg-shift = <2>;
476 reg-io-width = <4>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200477 clocks = <&ccu CLK_BUS_UART2>;
478 resets = <&ccu RST_BUS_UART2>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100479 dmas = <&dma 8>, <&dma 8>;
480 dma-names = "rx", "tx";
481 status = "disabled";
482 };
483
484 uart3: serial@01c28c00 {
485 compatible = "snps,dw-apb-uart";
486 reg = <0x01c28c00 0x400>;
487 interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
488 reg-shift = <2>;
489 reg-io-width = <4>;
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200490 clocks = <&ccu CLK_BUS_UART3>;
491 resets = <&ccu RST_BUS_UART3>;
Hans de Goedeb7f90072015-11-20 16:03:56 +0100492 dmas = <&dma 9>, <&dma 9>;
493 dma-names = "rx", "tx";
494 status = "disabled";
495 };
496
Hans de Goede6ebb4d02016-08-18 20:51:12 +0200497 emac: ethernet@1c30000 {
Amit Singh Tomard194c0e2016-07-06 17:59:44 +0530498 compatible = "allwinner,sun8i-h3-emac";
Andre Przywarab7923232018-04-04 01:31:18 +0100499 syscon = <&syscon>;
500 reg = <0x01c30000 0x10000>;
Amit Singh Tomard194c0e2016-07-06 17:59:44 +0530501 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
Andre Przywarab7923232018-04-04 01:31:18 +0100502 interrupt-names = "macirq";
503 resets = <&ccu RST_BUS_EMAC>;
504 reset-names = "stmmaceth";
505 clocks = <&ccu CLK_BUS_EMAC>;
506 clock-names = "stmmaceth";
Amit Singh Tomard194c0e2016-07-06 17:59:44 +0530507 #address-cells = <1>;
508 #size-cells = <0>;
509 status = "disabled";
Andre Przywarab7923232018-04-04 01:31:18 +0100510
511 mdio: mdio {
512 #address-cells = <1>;
513 #size-cells = <0>;
514 compatible = "snps,dwmac-mdio";
515 };
516
517 mdio-mux {
518 compatible = "allwinner,sun8i-h3-mdio-mux";
519 #address-cells = <1>;
520 #size-cells = <0>;
521
522 mdio-parent-bus = <&mdio>;
523 /* Only one MDIO is usable at the time */
524 internal_mdio: mdio@1 {
525 compatible = "allwinner,sun8i-h3-mdio-internal";
526 reg = <1>;
527 #address-cells = <1>;
528 #size-cells = <0>;
529
530 int_mii_phy: ethernet-phy@1 {
531 compatible = "ethernet-phy-ieee802.3-c22";
532 reg = <1>;
533 clocks = <&ccu CLK_BUS_EPHY>;
534 resets = <&ccu RST_BUS_EPHY>;
535 };
536 };
537
538 external_mdio: mdio@2 {
539 reg = <2>;
540 #address-cells = <1>;
541 #size-cells = <0>;
542 };
543 };
Amit Singh Tomard194c0e2016-07-06 17:59:44 +0530544 };
545
Hans de Goedeb7f90072015-11-20 16:03:56 +0100546 gic: interrupt-controller@01c81000 {
547 compatible = "arm,cortex-a7-gic", "arm,cortex-a15-gic";
548 reg = <0x01c81000 0x1000>,
549 <0x01c82000 0x1000>,
550 <0x01c84000 0x2000>,
551 <0x01c86000 0x2000>;
552 interrupt-controller;
553 #interrupt-cells = <3>;
554 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
555 };
556
557 rtc: rtc@01f00000 {
558 compatible = "allwinner,sun6i-a31-rtc";
559 reg = <0x01f00000 0x54>;
560 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>,
561 <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
562 };
Hans de Goede19888a42016-03-14 17:37:09 +0100563
564 apb0_reset: reset@01f014b0 {
565 reg = <0x01f014b0 0x4>;
566 compatible = "allwinner,sun6i-a31-clock-reset";
567 #reset-cells = <1>;
568 };
569
570 ir: ir@01f02000 {
571 compatible = "allwinner,sun5i-a13-ir";
572 clocks = <&apb0_gates 1>, <&ir_clk>;
573 clock-names = "apb", "ir";
574 resets = <&apb0_reset 1>;
575 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
576 reg = <0x01f02000 0x40>;
577 status = "disabled";
578 };
579
580 r_pio: pinctrl@01f02c00 {
581 compatible = "allwinner,sun8i-h3-r-pinctrl";
582 reg = <0x01f02c00 0x400>;
583 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
584 clocks = <&apb0_gates 0>;
585 resets = <&apb0_reset 0>;
586 gpio-controller;
587 #gpio-cells = <3>;
588 interrupt-controller;
589 #interrupt-cells = <3>;
590
591 ir_pins_a: ir@0 {
592 allwinner,pins = "PL11";
593 allwinner,function = "s_cir_rx";
594 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
595 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
596 };
597 };
Hans de Goedeb7f90072015-11-20 16:03:56 +0100598 };
599};