blob: 084323d5c61cb03c7e882c29dc21f298e77058bc [file] [log] [blame]
Icenowy Zhenge267d942017-04-08 15:30:13 +08001/*
2 * Copyright (C) 2016 Icenowy Zheng <icenowy@aosc.xyz>
Samuel Holland94539ab2022-04-27 15:31:28 -05003 * Copyright (C) 2021 Tobias Schramm <t.schramm@manjaro.org>
Icenowy Zhenge267d942017-04-08 15:30:13 +08004 *
5 * This file is dual-licensed: you can use it either under the terms
6 * of the GPL or the X11 license, at your option. Note that this dual
7 * licensing only applies to this file, and not this project as a
8 * whole.
9 *
10 * a) This file is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of the
13 * License, or (at your option) any later version.
14 *
15 * This file is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * Or, alternatively,
21 *
22 * b) Permission is hereby granted, free of charge, to any person
23 * obtaining a copy of this software and associated documentation
24 * files (the "Software"), to deal in the Software without
25 * restriction, including without limitation the rights to use,
26 * copy, modify, merge, publish, distribute, sublicense, and/or
27 * sell copies of the Software, and to permit persons to whom the
28 * Software is furnished to do so, subject to the following
29 * conditions:
30 *
31 * The above copyright notice and this permission notice shall be
32 * included in all copies or substantial portions of the Software.
33 *
34 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
35 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
36 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
37 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
38 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
39 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
40 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
41 * OTHER DEALINGS IN THE SOFTWARE.
42 */
43
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +080044#include <dt-bindings/interrupt-controller/arm-gic.h>
Icenowy Zhenge267d942017-04-08 15:30:13 +080045#include <dt-bindings/clock/sun8i-v3s-ccu.h>
46#include <dt-bindings/reset/sun8i-v3s-ccu.h>
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +080047#include <dt-bindings/clock/sun8i-de2.h>
Icenowy Zhenge267d942017-04-08 15:30:13 +080048
49/ {
50 #address-cells = <1>;
51 #size-cells = <1>;
52 interrupt-parent = <&gic>;
53
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +080054 chosen {
55 #address-cells = <1>;
56 #size-cells = <1>;
57 ranges;
58
59 framebuffer-lcd {
60 compatible = "allwinner,simple-framebuffer",
61 "simple-framebuffer";
62 allwinner,pipeline = "mixer0-lcd0";
63 clocks = <&display_clocks CLK_MIXER0>,
64 <&ccu CLK_TCON0>;
65 status = "disabled";
66 };
67 };
68
Icenowy Zhenge267d942017-04-08 15:30:13 +080069 cpus {
70 #address-cells = <1>;
71 #size-cells = <0>;
72
73 cpu@0 {
74 compatible = "arm,cortex-a7";
75 device_type = "cpu";
76 reg = <0>;
77 clocks = <&ccu CLK_CPU>;
78 };
79 };
80
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +080081 de: display-engine {
82 compatible = "allwinner,sun8i-v3s-display-engine";
83 allwinner,pipelines = <&mixer0>;
84 status = "disabled";
85 };
86
Icenowy Zhenge267d942017-04-08 15:30:13 +080087 timer {
88 compatible = "arm,armv7-timer";
89 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
90 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
91 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
92 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>;
93 };
94
95 clocks {
96 #address-cells = <1>;
97 #size-cells = <1>;
98 ranges;
99
100 osc24M: osc24M_clk {
101 #clock-cells = <0>;
102 compatible = "fixed-clock";
103 clock-frequency = <24000000>;
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800104 clock-accuracy = <50000>;
Icenowy Zhenge267d942017-04-08 15:30:13 +0800105 clock-output-names = "osc24M";
106 };
107
108 osc32k: osc32k_clk {
109 #clock-cells = <0>;
110 compatible = "fixed-clock";
111 clock-frequency = <32768>;
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800112 clock-accuracy = <50000>;
113 clock-output-names = "ext-osc32k";
Icenowy Zhenge267d942017-04-08 15:30:13 +0800114 };
115 };
116
117 soc {
118 compatible = "simple-bus";
119 #address-cells = <1>;
120 #size-cells = <1>;
121 ranges;
122
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800123 display_clocks: clock@1000000 {
124 compatible = "allwinner,sun8i-v3s-de2-clk";
125 reg = <0x01000000 0x10000>;
126 clocks = <&ccu CLK_BUS_DE>,
127 <&ccu CLK_DE>;
128 clock-names = "bus",
129 "mod";
130 resets = <&ccu RST_BUS_DE>;
131 #clock-cells = <1>;
132 #reset-cells = <1>;
133 };
134
135 mixer0: mixer@1100000 {
136 compatible = "allwinner,sun8i-v3s-de2-mixer";
137 reg = <0x01100000 0x100000>;
138 clocks = <&display_clocks 0>,
139 <&display_clocks 6>;
140 clock-names = "bus",
141 "mod";
142 resets = <&display_clocks 0>;
143
144 ports {
145 #address-cells = <1>;
146 #size-cells = <0>;
147
148 mixer0_out: port@1 {
149 reg = <1>;
150
151 mixer0_out_tcon0: endpoint {
152 remote-endpoint = <&tcon0_in_mixer0>;
153 };
154 };
155 };
156 };
157
158 syscon: system-control@1c00000 {
159 compatible = "allwinner,sun8i-v3s-system-control",
160 "allwinner,sun8i-h3-system-control";
Samuel Holland94539ab2022-04-27 15:31:28 -0500161 reg = <0x01c00000 0xd0>;
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800162 #address-cells = <1>;
163 #size-cells = <1>;
164 ranges;
165 };
166
Samuel Holland94539ab2022-04-27 15:31:28 -0500167 nmi_intc: interrupt-controller@1c000d0 {
168 compatible = "allwinner,sun8i-v3s-nmi",
169 "allwinner,sun9i-a80-nmi";
170 interrupt-controller;
171 #interrupt-cells = <2>;
172 reg = <0x01c000d0 0x0c>;
173 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
174 };
175
176 dma: dma-controller@1c02000 {
177 compatible = "allwinner,sun8i-v3s-dma";
178 reg = <0x01c02000 0x1000>;
179 interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>;
180 clocks = <&ccu CLK_BUS_DMA>;
181 resets = <&ccu RST_BUS_DMA>;
182 #dma-cells = <1>;
183 };
184
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800185 tcon0: lcd-controller@1c0c000 {
186 compatible = "allwinner,sun8i-v3s-tcon";
187 reg = <0x01c0c000 0x1000>;
188 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
189 clocks = <&ccu CLK_BUS_TCON0>,
190 <&ccu CLK_TCON0>;
191 clock-names = "ahb",
192 "tcon-ch0";
193 clock-output-names = "tcon-pixel-clock";
194 #clock-cells = <0>;
195 resets = <&ccu RST_BUS_TCON0>;
196 reset-names = "lcd";
197 status = "disabled";
198
199 ports {
200 #address-cells = <1>;
201 #size-cells = <0>;
202
203 tcon0_in: port@0 {
204 reg = <0>;
205
206 tcon0_in_mixer0: endpoint {
207 remote-endpoint = <&mixer0_out_tcon0>;
208 };
209 };
210
211 tcon0_out: port@1 {
212 #address-cells = <1>;
213 #size-cells = <0>;
214 reg = <1>;
215 };
216 };
217 };
218
219
220 mmc0: mmc@1c0f000 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800221 compatible = "allwinner,sun7i-a20-mmc";
222 reg = <0x01c0f000 0x1000>;
223 clocks = <&ccu CLK_BUS_MMC0>,
224 <&ccu CLK_MMC0>,
225 <&ccu CLK_MMC0_OUTPUT>,
226 <&ccu CLK_MMC0_SAMPLE>;
227 clock-names = "ahb",
228 "mmc",
229 "output",
230 "sample";
231 resets = <&ccu RST_BUS_MMC0>;
232 reset-names = "ahb";
233 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800234 pinctrl-names = "default";
235 pinctrl-0 = <&mmc0_pins>;
Icenowy Zhenge267d942017-04-08 15:30:13 +0800236 status = "disabled";
237 #address-cells = <1>;
238 #size-cells = <0>;
239 };
240
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800241 mmc1: mmc@1c10000 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800242 compatible = "allwinner,sun7i-a20-mmc";
243 reg = <0x01c10000 0x1000>;
244 clocks = <&ccu CLK_BUS_MMC1>,
245 <&ccu CLK_MMC1>,
246 <&ccu CLK_MMC1_OUTPUT>,
247 <&ccu CLK_MMC1_SAMPLE>;
248 clock-names = "ahb",
249 "mmc",
250 "output",
251 "sample";
252 resets = <&ccu RST_BUS_MMC1>;
253 reset-names = "ahb";
254 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800255 pinctrl-names = "default";
256 pinctrl-0 = <&mmc1_pins>;
Icenowy Zhenge267d942017-04-08 15:30:13 +0800257 status = "disabled";
258 #address-cells = <1>;
259 #size-cells = <0>;
260 };
261
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800262 mmc2: mmc@1c11000 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800263 compatible = "allwinner,sun7i-a20-mmc";
264 reg = <0x01c11000 0x1000>;
265 clocks = <&ccu CLK_BUS_MMC2>,
266 <&ccu CLK_MMC2>,
267 <&ccu CLK_MMC2_OUTPUT>,
268 <&ccu CLK_MMC2_SAMPLE>;
269 clock-names = "ahb",
270 "mmc",
271 "output",
272 "sample";
273 resets = <&ccu RST_BUS_MMC2>;
274 reset-names = "ahb";
275 interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
276 status = "disabled";
277 #address-cells = <1>;
278 #size-cells = <0>;
279 };
280
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800281 crypto@1c15000 {
282 compatible = "allwinner,sun8i-v3s-crypto",
283 "allwinner,sun8i-a33-crypto";
284 reg = <0x01c15000 0x1000>;
285 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
286 clocks = <&ccu CLK_BUS_CE>, <&ccu CLK_CE>;
287 clock-names = "ahb", "mod";
Samuel Holland94539ab2022-04-27 15:31:28 -0500288 dmas = <&dma 16>, <&dma 16>;
289 dma-names = "rx", "tx";
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800290 resets = <&ccu RST_BUS_CE>;
291 reset-names = "ahb";
292 };
293
294 usb_otg: usb@1c19000 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800295 compatible = "allwinner,sun8i-h3-musb";
296 reg = <0x01c19000 0x0400>;
297 clocks = <&ccu CLK_BUS_OTG>;
298 resets = <&ccu RST_BUS_OTG>;
299 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
300 interrupt-names = "mc";
301 phys = <&usbphy 0>;
302 phy-names = "usb";
303 extcon = <&usbphy 0>;
304 status = "disabled";
305 };
306
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800307 usbphy: phy@1c19400 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800308 compatible = "allwinner,sun8i-v3s-usb-phy";
309 reg = <0x01c19400 0x2c>,
310 <0x01c1a800 0x4>;
311 reg-names = "phy_ctrl",
312 "pmu0";
313 clocks = <&ccu CLK_USB_PHY0>;
314 clock-names = "usb0_phy";
315 resets = <&ccu RST_USB_PHY0>;
316 reset-names = "usb0_reset";
317 status = "disabled";
318 #phy-cells = <1>;
319 };
320
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800321 ccu: clock@1c20000 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800322 compatible = "allwinner,sun8i-v3s-ccu";
323 reg = <0x01c20000 0x400>;
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800324 clocks = <&osc24M>, <&rtc 0>;
Icenowy Zhenge267d942017-04-08 15:30:13 +0800325 clock-names = "hosc", "losc";
326 #clock-cells = <1>;
327 #reset-cells = <1>;
328 };
329
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800330 rtc: rtc@1c20400 {
331 #clock-cells = <1>;
332 compatible = "allwinner,sun8i-v3-rtc";
Icenowy Zhenge267d942017-04-08 15:30:13 +0800333 reg = <0x01c20400 0x54>;
334 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>,
335 <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800336 clocks = <&osc32k>;
337 clock-output-names = "osc32k", "osc32k-out";
Icenowy Zhenge267d942017-04-08 15:30:13 +0800338 };
339
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800340 pio: pinctrl@1c20800 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800341 compatible = "allwinner,sun8i-v3s-pinctrl";
342 reg = <0x01c20800 0x400>;
343 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>,
344 <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800345 clocks = <&ccu CLK_BUS_PIO>, <&osc24M>, <&rtc 0>;
Icenowy Zhenge267d942017-04-08 15:30:13 +0800346 clock-names = "apb", "hosc", "losc";
347 gpio-controller;
348 #gpio-cells = <3>;
349 interrupt-controller;
350 #interrupt-cells = <3>;
351
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800352 /omit-if-no-ref/
Samuel Holland94539ab2022-04-27 15:31:28 -0500353 csi0_mclk_pin: csi0-mclk-pin {
354 pins = "PE20";
355 function = "csi_mipi";
356 };
357
358 /omit-if-no-ref/
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800359 csi1_8bit_pins: csi1-8bit-pins {
360 pins = "PE0", "PE2", "PE3", "PE8", "PE9",
361 "PE10", "PE11", "PE12", "PE13", "PE14",
362 "PE15";
363 function = "csi";
Icenowy Zhenge267d942017-04-08 15:30:13 +0800364 };
365
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800366 /omit-if-no-ref/
367 csi1_mclk_pin: csi1-mclk-pin {
368 pins = "PE1";
369 function = "csi";
370 };
371
372 i2c0_pins: i2c0-pins {
373 pins = "PB6", "PB7";
374 function = "i2c0";
375 };
376
377 /omit-if-no-ref/
Samuel Holland94539ab2022-04-27 15:31:28 -0500378 i2c1_pb_pins: i2c1-pb-pins {
379 pins = "PB8", "PB9";
380 function = "i2c1";
381 };
382
383 /omit-if-no-ref/
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800384 i2c1_pe_pins: i2c1-pe-pins {
385 pins = "PE21", "PE22";
386 function = "i2c1";
387 };
388
389 uart0_pb_pins: uart0-pb-pins {
390 pins = "PB8", "PB9";
391 function = "uart0";
392 };
393
394 uart2_pins: uart2-pins {
395 pins = "PB0", "PB1";
396 function = "uart2";
397 };
398
399 mmc0_pins: mmc0-pins {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800400 pins = "PF0", "PF1", "PF2", "PF3",
401 "PF4", "PF5";
402 function = "mmc0";
403 drive-strength = <30>;
404 bias-pull-up;
405 };
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800406
407 mmc1_pins: mmc1-pins {
408 pins = "PG0", "PG1", "PG2", "PG3",
409 "PG4", "PG5";
410 function = "mmc1";
411 drive-strength = <30>;
412 bias-pull-up;
413 };
414
415 spi0_pins: spi0-pins {
416 pins = "PC0", "PC1", "PC2", "PC3";
417 function = "spi0";
418 };
Icenowy Zhenge267d942017-04-08 15:30:13 +0800419 };
420
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800421 timer@1c20c00 {
422 compatible = "allwinner,sun8i-v3s-timer";
Icenowy Zhenge267d942017-04-08 15:30:13 +0800423 reg = <0x01c20c00 0xa0>;
424 interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>,
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800425 <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>,
426 <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
Icenowy Zhenge267d942017-04-08 15:30:13 +0800427 clocks = <&osc24M>;
428 };
429
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800430 wdt0: watchdog@1c20ca0 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800431 compatible = "allwinner,sun6i-a31-wdt";
432 reg = <0x01c20ca0 0x20>;
433 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800434 clocks = <&osc24M>;
Icenowy Zhenge267d942017-04-08 15:30:13 +0800435 };
436
Samuel Holland94539ab2022-04-27 15:31:28 -0500437 pwm: pwm@1c21400 {
438 compatible = "allwinner,sun8i-v3s-pwm",
439 "allwinner,sun7i-a20-pwm";
440 reg = <0x01c21400 0xc>;
441 clocks = <&osc24M>;
442 #pwm-cells = <3>;
443 status = "disabled";
444 };
445
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800446 lradc: lradc@1c22800 {
447 compatible = "allwinner,sun4i-a10-lradc-keys";
448 reg = <0x01c22800 0x400>;
449 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
450 status = "disabled";
451 };
452
Samuel Holland94539ab2022-04-27 15:31:28 -0500453 codec: codec@1c22c00 {
454 #sound-dai-cells = <0>;
455 compatible = "allwinner,sun8i-v3s-codec";
456 reg = <0x01c22c00 0x400>;
457 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
458 clocks = <&ccu CLK_BUS_CODEC>, <&ccu CLK_AC_DIG>;
459 clock-names = "apb", "codec";
460 resets = <&ccu RST_BUS_CODEC>;
461 dmas = <&dma 15>, <&dma 15>;
462 dma-names = "rx", "tx";
463 allwinner,codec-analog-controls = <&codec_analog>;
464 status = "disabled";
465 };
466
467 codec_analog: codec-analog@1c23000 {
468 compatible = "allwinner,sun8i-v3s-codec-analog";
469 reg = <0x01c23000 0x4>;
470 };
471
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800472 uart0: serial@1c28000 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800473 compatible = "snps,dw-apb-uart";
474 reg = <0x01c28000 0x400>;
475 interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>;
476 reg-shift = <2>;
477 reg-io-width = <4>;
478 clocks = <&ccu CLK_BUS_UART0>;
Samuel Holland94539ab2022-04-27 15:31:28 -0500479 dmas = <&dma 6>, <&dma 6>;
480 dma-names = "rx", "tx";
Icenowy Zhenge267d942017-04-08 15:30:13 +0800481 resets = <&ccu RST_BUS_UART0>;
482 status = "disabled";
483 };
484
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800485 uart1: serial@1c28400 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800486 compatible = "snps,dw-apb-uart";
487 reg = <0x01c28400 0x400>;
488 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
489 reg-shift = <2>;
490 reg-io-width = <4>;
491 clocks = <&ccu CLK_BUS_UART1>;
Samuel Holland94539ab2022-04-27 15:31:28 -0500492 dmas = <&dma 7>, <&dma 7>;
493 dma-names = "rx", "tx";
Icenowy Zhenge267d942017-04-08 15:30:13 +0800494 resets = <&ccu RST_BUS_UART1>;
495 status = "disabled";
496 };
497
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800498 uart2: serial@1c28800 {
Icenowy Zhenge267d942017-04-08 15:30:13 +0800499 compatible = "snps,dw-apb-uart";
500 reg = <0x01c28800 0x400>;
501 interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>;
502 reg-shift = <2>;
503 reg-io-width = <4>;
504 clocks = <&ccu CLK_BUS_UART2>;
Samuel Holland94539ab2022-04-27 15:31:28 -0500505 dmas = <&dma 8>, <&dma 8>;
506 dma-names = "rx", "tx";
Icenowy Zhenge267d942017-04-08 15:30:13 +0800507 resets = <&ccu RST_BUS_UART2>;
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800508 pinctrl-0 = <&uart2_pins>;
509 pinctrl-names = "default";
Icenowy Zhenge267d942017-04-08 15:30:13 +0800510 status = "disabled";
511 };
512
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800513 i2c0: i2c@1c2ac00 {
514 compatible = "allwinner,sun6i-a31-i2c";
515 reg = <0x01c2ac00 0x400>;
516 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
517 clocks = <&ccu CLK_BUS_I2C0>;
518 resets = <&ccu RST_BUS_I2C0>;
519 pinctrl-names = "default";
520 pinctrl-0 = <&i2c0_pins>;
521 status = "disabled";
522 #address-cells = <1>;
523 #size-cells = <0>;
524 };
525
526 i2c1: i2c@1c2b000 {
527 compatible = "allwinner,sun6i-a31-i2c";
528 reg = <0x01c2b000 0x400>;
529 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
530 clocks = <&ccu CLK_BUS_I2C1>;
531 resets = <&ccu RST_BUS_I2C1>;
532 status = "disabled";
533 #address-cells = <1>;
534 #size-cells = <0>;
535 };
536
537 emac: ethernet@1c30000 {
538 compatible = "allwinner,sun8i-v3s-emac";
539 syscon = <&syscon>;
540 reg = <0x01c30000 0x10000>;
541 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
542 interrupt-names = "macirq";
543 resets = <&ccu RST_BUS_EMAC>;
544 reset-names = "stmmaceth";
545 clocks = <&ccu CLK_BUS_EMAC>;
546 clock-names = "stmmaceth";
547 phy-handle = <&int_mii_phy>;
548 phy-mode = "mii";
549 status = "disabled";
550
551 mdio: mdio {
552 #address-cells = <1>;
553 #size-cells = <0>;
554 compatible = "snps,dwmac-mdio";
555 };
556
557 mdio_mux: mdio-mux {
558 compatible = "allwinner,sun8i-h3-mdio-mux";
559 #address-cells = <1>;
560 #size-cells = <0>;
561
562 mdio-parent-bus = <&mdio>;
563 /* Only one MDIO is usable at the time */
564 internal_mdio: mdio@1 {
565 compatible = "allwinner,sun8i-h3-mdio-internal";
566 reg = <1>;
567 #address-cells = <1>;
568 #size-cells = <0>;
569
570 int_mii_phy: ethernet-phy@1 {
571 compatible = "ethernet-phy-ieee802.3-c22";
572 reg = <1>;
573 clocks = <&ccu CLK_BUS_EPHY>;
574 resets = <&ccu RST_BUS_EPHY>;
575 };
576 };
577 };
578 };
579
580 spi0: spi@1c68000 {
581 compatible = "allwinner,sun8i-h3-spi";
582 reg = <0x01c68000 0x1000>;
583 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
584 clocks = <&ccu CLK_BUS_SPI0>, <&ccu CLK_SPI0>;
585 clock-names = "ahb", "mod";
Samuel Holland94539ab2022-04-27 15:31:28 -0500586 dmas = <&dma 23>, <&dma 23>;
587 dma-names = "rx", "tx";
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800588 pinctrl-names = "default";
589 pinctrl-0 = <&spi0_pins>;
590 resets = <&ccu RST_BUS_SPI0>;
591 status = "disabled";
592 #address-cells = <1>;
593 #size-cells = <0>;
594 };
595
Samuel Holland94539ab2022-04-27 15:31:28 -0500596 gic: interrupt-controller@1c81000 {
597 compatible = "arm,gic-400";
598 reg = <0x01c81000 0x1000>,
599 <0x01c82000 0x2000>,
600 <0x01c84000 0x2000>,
601 <0x01c86000 0x2000>;
602 interrupt-controller;
603 #interrupt-cells = <3>;
604 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
605 };
606
Icenowy Zheng6d5d6bb2020-10-26 22:19:35 +0800607 csi1: camera@1cb4000 {
608 compatible = "allwinner,sun8i-v3s-csi";
609 reg = <0x01cb4000 0x3000>;
610 interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
611 clocks = <&ccu CLK_BUS_CSI>,
612 <&ccu CLK_CSI1_SCLK>,
613 <&ccu CLK_DRAM_CSI>;
614 clock-names = "bus", "mod", "ram";
615 resets = <&ccu RST_BUS_CSI>;
616 status = "disabled";
617 };
Icenowy Zhenge267d942017-04-08 15:30:13 +0800618 };
619};