blob: 9dae4e9b23fd5d07a4b2d46d219a17b99e26aa17 [file] [log] [blame]
Masahiro Yamada3e98fc12018-04-16 12:35:33 +09001// SPDX-License-Identifier: GPL-2.0+ OR MIT
2//
3// Device Tree Source for UniPhier Pro4 SoC
4//
5// Copyright (C) 2015-2016 Socionext Inc.
6// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamada509eb672014-11-26 18:33:59 +09007
Masahiro Yamadab443fb42017-11-25 00:25:35 +09008#include <dt-bindings/gpio/uniphier-gpio.h>
9
Masahiro Yamada509eb672014-11-26 18:33:59 +090010/ {
Masahiro Yamada52159d22016-10-07 16:43:00 +090011 compatible = "socionext,uniphier-pro4";
Masahiro Yamadaf16eda92017-03-13 00:16:39 +090012 #address-cells = <1>;
13 #size-cells = <1>;
Masahiro Yamada509eb672014-11-26 18:33:59 +090014
15 cpus {
Masahiro Yamada509eb672014-11-26 18:33:59 +090016 #address-cells = <1>;
Masahiro Yamadaf5fd7af2014-12-06 00:03:23 +090017 #size-cells = <0>;
Masahiro Yamada509eb672014-11-26 18:33:59 +090018
19 cpu@0 {
20 device_type = "cpu";
21 compatible = "arm,cortex-a9";
22 reg = <0>;
Masahiro Yamada52159d22016-10-07 16:43:00 +090023 enable-method = "psci";
Masahiro Yamada4e1f81d2015-12-16 10:54:08 +090024 next-level-cache = <&l2>;
Masahiro Yamada509eb672014-11-26 18:33:59 +090025 };
26
27 cpu@1 {
28 device_type = "cpu";
29 compatible = "arm,cortex-a9";
30 reg = <1>;
Masahiro Yamada52159d22016-10-07 16:43:00 +090031 enable-method = "psci";
Masahiro Yamada4e1f81d2015-12-16 10:54:08 +090032 next-level-cache = <&l2>;
Masahiro Yamada509eb672014-11-26 18:33:59 +090033 };
34 };
35
Masahiro Yamadacd622142016-12-05 18:31:39 +090036 psci {
37 compatible = "arm,psci-0.2";
38 method = "smc";
39 };
40
Masahiro Yamadaedcfaeb2015-06-30 18:27:00 +090041 clocks {
Masahiro Yamadacd622142016-12-05 18:31:39 +090042 refclk: ref {
43 compatible = "fixed-clock";
44 #clock-cells = <0>;
45 clock-frequency = <25000000>;
46 };
47
Masahiro Yamadab443fb42017-11-25 00:25:35 +090048 arm_timer_clk: arm-timer {
Masahiro Yamadaedcfaeb2015-06-30 18:27:00 +090049 #clock-cells = <0>;
50 compatible = "fixed-clock";
51 clock-frequency = <50000000>;
52 };
Masahiro Yamadacd622142016-12-05 18:31:39 +090053 };
Masahiro Yamadad243c182015-08-28 22:33:13 +090054
Masahiro Yamadacd622142016-12-05 18:31:39 +090055 soc {
56 compatible = "simple-bus";
57 #address-cells = <1>;
58 #size-cells = <1>;
59 ranges;
60 interrupt-parent = <&intc>;
Masahiro Yamadacd622142016-12-05 18:31:39 +090061
Masahiro Yamada44ebaa82020-02-28 21:57:19 +090062 l2: cache-controller@500c0000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +090063 compatible = "socionext,uniphier-system-cache";
64 reg = <0x500c0000 0x2000>, <0x503c0100 0x4>,
65 <0x506c0000 0x400>;
66 interrupts = <0 174 4>, <0 175 4>;
67 cache-unified;
68 cache-size = <(768 * 1024)>;
69 cache-sets = <256>;
70 cache-line-size = <128>;
71 cache-level = <2>;
72 };
73
Masahiro Yamada2001a812018-12-19 20:03:21 +090074 spi0: spi@54006000 {
75 compatible = "socionext,uniphier-scssi";
76 status = "disabled";
77 reg = <0x54006000 0x100>;
Masahiro Yamada08520332020-07-09 15:08:14 +090078 #address-cells = <1>;
79 #size-cells = <0>;
Masahiro Yamada2001a812018-12-19 20:03:21 +090080 interrupts = <0 39 4>;
81 pinctrl-names = "default";
82 pinctrl-0 = <&pinctrl_spi0>;
83 clocks = <&peri_clk 11>;
84 resets = <&peri_rst 11>;
85 };
86
Masahiro Yamadacd622142016-12-05 18:31:39 +090087 serial0: serial@54006800 {
88 compatible = "socionext,uniphier-uart";
89 status = "disabled";
90 reg = <0x54006800 0x40>;
91 interrupts = <0 33 4>;
92 pinctrl-names = "default";
93 pinctrl-0 = <&pinctrl_uart0>;
94 clocks = <&peri_clk 0>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +090095 resets = <&peri_rst 0>;
Masahiro Yamadad243c182015-08-28 22:33:13 +090096 };
97
Masahiro Yamadacd622142016-12-05 18:31:39 +090098 serial1: serial@54006900 {
99 compatible = "socionext,uniphier-uart";
100 status = "disabled";
101 reg = <0x54006900 0x40>;
102 interrupts = <0 35 4>;
103 pinctrl-names = "default";
104 pinctrl-0 = <&pinctrl_uart1>;
105 clocks = <&peri_clk 1>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900106 resets = <&peri_rst 1>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900107 };
108
109 serial2: serial@54006a00 {
110 compatible = "socionext,uniphier-uart";
111 status = "disabled";
112 reg = <0x54006a00 0x40>;
113 interrupts = <0 37 4>;
114 pinctrl-names = "default";
115 pinctrl-0 = <&pinctrl_uart2>;
116 clocks = <&peri_clk 2>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900117 resets = <&peri_rst 2>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900118 };
119
120 serial3: serial@54006b00 {
121 compatible = "socionext,uniphier-uart";
122 status = "disabled";
123 reg = <0x54006b00 0x40>;
124 interrupts = <0 177 4>;
125 pinctrl-names = "default";
126 pinctrl-0 = <&pinctrl_uart3>;
127 clocks = <&peri_clk 3>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900128 resets = <&peri_rst 3>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900129 };
130
Masahiro Yamada0f72b742017-10-13 19:21:52 +0900131 gpio: gpio@55000000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900132 compatible = "socionext,uniphier-gpio";
Masahiro Yamada0f72b742017-10-13 19:21:52 +0900133 reg = <0x55000000 0x200>;
134 interrupt-parent = <&aidet>;
135 interrupt-controller;
136 #interrupt-cells = <2>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900137 gpio-controller;
138 #gpio-cells = <2>;
Masahiro Yamada0f72b742017-10-13 19:21:52 +0900139 gpio-ranges = <&pinctrl 0 0 0>;
140 gpio-ranges-group-names = "gpio_range";
141 ngpios = <248>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900142 socionext,interrupt-ranges = <0 48 16>, <16 154 5>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900143 };
144
145 i2c0: i2c@58780000 {
146 compatible = "socionext,uniphier-fi2c";
147 status = "disabled";
148 reg = <0x58780000 0x80>;
149 #address-cells = <1>;
150 #size-cells = <0>;
151 interrupts = <0 41 4>;
152 pinctrl-names = "default";
153 pinctrl-0 = <&pinctrl_i2c0>;
154 clocks = <&peri_clk 4>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900155 resets = <&peri_rst 4>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900156 clock-frequency = <100000>;
157 };
158
159 i2c1: i2c@58781000 {
160 compatible = "socionext,uniphier-fi2c";
161 status = "disabled";
162 reg = <0x58781000 0x80>;
163 #address-cells = <1>;
164 #size-cells = <0>;
165 interrupts = <0 42 4>;
166 pinctrl-names = "default";
167 pinctrl-0 = <&pinctrl_i2c1>;
168 clocks = <&peri_clk 5>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900169 resets = <&peri_rst 5>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900170 clock-frequency = <100000>;
171 };
172
173 i2c2: i2c@58782000 {
174 compatible = "socionext,uniphier-fi2c";
175 status = "disabled";
176 reg = <0x58782000 0x80>;
177 #address-cells = <1>;
178 #size-cells = <0>;
179 interrupts = <0 43 4>;
180 pinctrl-names = "default";
181 pinctrl-0 = <&pinctrl_i2c2>;
182 clocks = <&peri_clk 6>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900183 resets = <&peri_rst 6>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900184 clock-frequency = <100000>;
185 };
186
187 i2c3: i2c@58783000 {
188 compatible = "socionext,uniphier-fi2c";
189 status = "disabled";
190 reg = <0x58783000 0x80>;
191 #address-cells = <1>;
192 #size-cells = <0>;
193 interrupts = <0 44 4>;
194 pinctrl-names = "default";
195 pinctrl-0 = <&pinctrl_i2c3>;
196 clocks = <&peri_clk 7>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900197 resets = <&peri_rst 7>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900198 clock-frequency = <100000>;
199 };
200
201 /* i2c4 does not exist */
202
203 /* chip-internal connection for DMD */
204 i2c5: i2c@58785000 {
205 compatible = "socionext,uniphier-fi2c";
206 reg = <0x58785000 0x80>;
207 #address-cells = <1>;
208 #size-cells = <0>;
209 interrupts = <0 25 4>;
210 clocks = <&peri_clk 9>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900211 resets = <&peri_rst 9>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900212 clock-frequency = <400000>;
213 };
214
215 /* chip-internal connection for HDMI */
216 i2c6: i2c@58786000 {
217 compatible = "socionext,uniphier-fi2c";
218 reg = <0x58786000 0x80>;
219 #address-cells = <1>;
220 #size-cells = <0>;
221 interrupts = <0 26 4>;
222 clocks = <&peri_clk 10>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900223 resets = <&peri_rst 10>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900224 clock-frequency = <400000>;
225 };
226
227 system_bus: system-bus@58c00000 {
228 compatible = "socionext,uniphier-system-bus";
229 status = "disabled";
230 reg = <0x58c00000 0x400>;
231 #address-cells = <2>;
232 #size-cells = <1>;
233 pinctrl-names = "default";
234 pinctrl-0 = <&pinctrl_system_bus>;
235 };
236
Masahiro Yamadaabb6ac22017-05-15 14:23:46 +0900237 smpctrl@59801000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900238 compatible = "socionext,uniphier-smpctrl";
239 reg = <0x59801000 0x400>;
240 };
241
242 mioctrl@59810000 {
243 compatible = "socionext,uniphier-pro4-mioctrl",
244 "simple-mfd", "syscon";
245 reg = <0x59810000 0x800>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900246
247 mio_clk: clock {
248 compatible = "socionext,uniphier-pro4-mio-clock";
249 #clock-cells = <1>;
250 };
251
252 mio_rst: reset {
253 compatible = "socionext,uniphier-pro4-mio-reset";
254 #reset-cells = <1>;
255 };
256 };
257
258 perictrl@59820000 {
259 compatible = "socionext,uniphier-pro4-perictrl",
260 "simple-mfd", "syscon";
261 reg = <0x59820000 0x200>;
262
263 peri_clk: clock {
264 compatible = "socionext,uniphier-pro4-peri-clock";
265 #clock-cells = <1>;
266 };
267
268 peri_rst: reset {
269 compatible = "socionext,uniphier-pro4-peri-reset";
270 #reset-cells = <1>;
271 };
272 };
273
Masahiro Yamadacd33fed2019-04-12 18:55:50 +0900274 dmac: dma-controller@5a000000 {
275 compatible = "socionext,uniphier-mio-dmac";
276 reg = <0x5a000000 0x1000>;
277 interrupts = <0 68 4>, <0 68 4>, <0 69 4>, <0 70 4>,
278 <0 71 4>, <0 72 4>, <0 73 4>, <0 74 4>;
279 clocks = <&mio_clk 7>;
280 resets = <&mio_rst 7>;
281 #dma-cells = <1>;
282 };
283
Masahiro Yamada44ebaa82020-02-28 21:57:19 +0900284 sd: mmc@5a400000 {
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900285 compatible = "socionext,uniphier-sd-v2.91";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900286 status = "disabled";
287 reg = <0x5a400000 0x200>;
288 interrupts = <0 76 4>;
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900289 pinctrl-names = "default", "uhs";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900290 pinctrl-0 = <&pinctrl_sd>;
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900291 pinctrl-1 = <&pinctrl_sd_uhs>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900292 clocks = <&mio_clk 0>;
293 reset-names = "host", "bridge";
294 resets = <&mio_rst 0>, <&mio_rst 3>;
Masahiro Yamadacd33fed2019-04-12 18:55:50 +0900295 dma-names = "rx-tx";
296 dmas = <&dmac 4>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900297 bus-width = <4>;
298 cap-sd-highspeed;
299 sd-uhs-sdr12;
300 sd-uhs-sdr25;
301 sd-uhs-sdr50;
302 };
303
Masahiro Yamada44ebaa82020-02-28 21:57:19 +0900304 emmc: mmc@5a500000 {
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900305 compatible = "socionext,uniphier-sd-v2.91";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900306 status = "disabled";
307 reg = <0x5a500000 0x200>;
308 interrupts = <0 78 4>;
Masahiro Yamada33aae6b2018-09-10 12:58:32 +0900309 pinctrl-names = "default";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900310 pinctrl-0 = <&pinctrl_emmc>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900311 clocks = <&mio_clk 1>;
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900312 reset-names = "host", "bridge", "hw";
313 resets = <&mio_rst 1>, <&mio_rst 4>, <&mio_rst 6>;
Masahiro Yamadacd33fed2019-04-12 18:55:50 +0900314 dma-names = "rx-tx";
315 dmas = <&dmac 5>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900316 bus-width = <8>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900317 cap-mmc-highspeed;
318 cap-mmc-hw-reset;
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900319 non-removable;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900320 };
321
Masahiro Yamada44ebaa82020-02-28 21:57:19 +0900322 sd1: mmc@5a600000 {
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900323 compatible = "socionext,uniphier-sd-v2.91";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900324 status = "disabled";
325 reg = <0x5a600000 0x200>;
326 interrupts = <0 85 4>;
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900327 pinctrl-names = "default";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900328 pinctrl-0 = <&pinctrl_sd1>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900329 clocks = <&mio_clk 2>;
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900330 reset-names = "host", "bridge";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900331 resets = <&mio_rst 2>, <&mio_rst 5>;
Masahiro Yamadacd33fed2019-04-12 18:55:50 +0900332 dma-names = "rx-tx";
333 dmas = <&dmac 6>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900334 bus-width = <4>;
335 cap-sd-highspeed;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900336 };
337
338 usb2: usb@5a800100 {
339 compatible = "socionext,uniphier-ehci", "generic-ehci";
340 status = "disabled";
341 reg = <0x5a800100 0x100>;
342 interrupts = <0 80 4>;
343 pinctrl-names = "default";
344 pinctrl-0 = <&pinctrl_usb2>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900345 clocks = <&sys_clk 8>, <&mio_clk 7>, <&mio_clk 8>,
346 <&mio_clk 12>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900347 resets = <&sys_rst 8>, <&mio_rst 7>, <&mio_rst 8>,
348 <&mio_rst 12>;
Masahiro Yamada2001a812018-12-19 20:03:21 +0900349 phy-names = "usb";
350 phys = <&usb_phy0>;
Masahiro Yamada46820e32018-03-15 11:43:03 +0900351 has-transaction-translator;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900352 };
353
354 usb3: usb@5a810100 {
355 compatible = "socionext,uniphier-ehci", "generic-ehci";
356 status = "disabled";
357 reg = <0x5a810100 0x100>;
358 interrupts = <0 81 4>;
359 pinctrl-names = "default";
360 pinctrl-0 = <&pinctrl_usb3>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900361 clocks = <&sys_clk 8>, <&mio_clk 7>, <&mio_clk 9>,
362 <&mio_clk 13>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900363 resets = <&sys_rst 8>, <&mio_rst 7>, <&mio_rst 9>,
364 <&mio_rst 13>;
Masahiro Yamada2001a812018-12-19 20:03:21 +0900365 phy-names = "usb";
366 phys = <&usb_phy1>;
Masahiro Yamada46820e32018-03-15 11:43:03 +0900367 has-transaction-translator;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900368 };
369
Kunihiko Hayashi69b3d4e2018-05-11 18:49:14 +0900370 soc_glue: soc-glue@5f800000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900371 compatible = "socionext,uniphier-pro4-soc-glue",
372 "simple-mfd", "syscon";
373 reg = <0x5f800000 0x2000>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900374
375 pinctrl: pinctrl {
376 compatible = "socionext,uniphier-pro4-pinctrl";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900377 };
Masahiro Yamada2001a812018-12-19 20:03:21 +0900378
379 usb-phy {
380 compatible = "socionext,uniphier-pro4-usb2-phy";
381 #address-cells = <1>;
382 #size-cells = <0>;
383
384 usb_phy0: phy@0 {
385 reg = <0>;
386 #phy-cells = <0>;
387 };
388
389 usb_phy1: phy@1 {
390 reg = <1>;
391 #phy-cells = <0>;
392 };
393
394 usb_phy2: phy@2 {
395 reg = <2>;
396 #phy-cells = <0>;
397 vbus-supply = <&usb0_vbus>;
398 };
399
400 usb_phy3: phy@3 {
401 reg = <3>;
402 #phy-cells = <0>;
403 vbus-supply = <&usb1_vbus>;
404 };
405 };
Masahiro Yamadacd622142016-12-05 18:31:39 +0900406 };
407
Masahiro Yamada46820e32018-03-15 11:43:03 +0900408 soc-glue@5f900000 {
409 compatible = "socionext,uniphier-pro4-soc-glue-debug",
410 "simple-mfd";
411 #address-cells = <1>;
412 #size-cells = <1>;
413 ranges = <0 0x5f900000 0x2000>;
414
415 efuse@100 {
416 compatible = "socionext,uniphier-efuse";
417 reg = <0x100 0x28>;
418 };
419
420 efuse@130 {
421 compatible = "socionext,uniphier-efuse";
422 reg = <0x130 0x8>;
423 };
424
425 efuse@200 {
426 compatible = "socionext,uniphier-efuse";
427 reg = <0x200 0x14>;
428 };
429 };
430
Masahiro Yamada08520332020-07-09 15:08:14 +0900431 xdmac: dma-controller@5fc10000 {
432 compatible = "socionext,uniphier-xdmac";
433 reg = <0x5fc10000 0x5300>;
434 interrupts = <0 188 4>;
435 dma-channels = <16>;
436 #dma-cells = <2>;
437 };
438
Masahiro Yamada44ebaa82020-02-28 21:57:19 +0900439 aidet: interrupt-controller@5fc20000 {
Masahiro Yamada6c9e46e2017-08-29 12:20:52 +0900440 compatible = "socionext,uniphier-pro4-aidet";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900441 reg = <0x5fc20000 0x200>;
Masahiro Yamada6c9e46e2017-08-29 12:20:52 +0900442 interrupt-controller;
443 #interrupt-cells = <2>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900444 };
445
446 timer@60000200 {
447 compatible = "arm,cortex-a9-global-timer";
448 reg = <0x60000200 0x20>;
449 interrupts = <1 11 0x304>;
450 clocks = <&arm_timer_clk>;
451 };
452
453 timer@60000600 {
454 compatible = "arm,cortex-a9-twd-timer";
455 reg = <0x60000600 0x20>;
456 interrupts = <1 13 0x304>;
457 clocks = <&arm_timer_clk>;
458 };
459
460 intc: interrupt-controller@60001000 {
461 compatible = "arm,cortex-a9-gic";
462 reg = <0x60001000 0x1000>,
463 <0x60000100 0x100>;
464 #interrupt-cells = <3>;
465 interrupt-controller;
466 };
467
468 sysctrl@61840000 {
469 compatible = "socionext,uniphier-pro4-sysctrl",
470 "simple-mfd", "syscon";
471 reg = <0x61840000 0x10000>;
472
473 sys_clk: clock {
474 compatible = "socionext,uniphier-pro4-clock";
475 #clock-cells = <1>;
476 };
477
478 sys_rst: reset {
479 compatible = "socionext,uniphier-pro4-reset";
480 #reset-cells = <1>;
481 };
482 };
483
Masahiro Yamada3e98fc12018-04-16 12:35:33 +0900484 eth: ethernet@65000000 {
485 compatible = "socionext,uniphier-pro4-ave4";
486 status = "disabled";
487 reg = <0x65000000 0x8500>;
488 interrupts = <0 66 4>;
489 pinctrl-names = "default";
490 pinctrl-0 = <&pinctrl_ether_rgmii>;
Kunihiko Hayashi3c0fa6c2018-05-11 18:49:16 +0900491 clock-names = "gio", "ether", "ether-gb", "ether-phy";
Kunihiko Hayashi28cd3d22018-05-11 18:49:15 +0900492 clocks = <&sys_clk 12>, <&sys_clk 6>, <&sys_clk 7>,
Masahiro Yamadae885c5a2018-06-19 16:11:46 +0900493 <&sys_clk 10>;
Kunihiko Hayashi3c0fa6c2018-05-11 18:49:16 +0900494 reset-names = "gio", "ether";
Kunihiko Hayashi28cd3d22018-05-11 18:49:15 +0900495 resets = <&sys_rst 12>, <&sys_rst 6>;
Masahiro Yamada3e98fc12018-04-16 12:35:33 +0900496 phy-mode = "rgmii";
497 local-mac-address = [00 00 00 00 00 00];
Kunihiko Hayashi69b3d4e2018-05-11 18:49:14 +0900498 socionext,syscon-phy-mode = <&soc_glue 0>;
Masahiro Yamada3e98fc12018-04-16 12:35:33 +0900499
500 mdio: mdio {
501 #address-cells = <1>;
502 #size-cells = <0>;
503 };
504 };
505
Masahiro Yamada2001a812018-12-19 20:03:21 +0900506 _usb0: usb@65a00000 {
507 compatible = "socionext,uniphier-dwc3", "snps,dwc3";
508 status = "disabled";
509 reg = <0x65a00000 0xcd00>;
510 interrupt-names = "host", "peripheral";
511 interrupts = <0 134 4>, <0 135 4>;
512 pinctrl-names = "default";
513 pinctrl-0 = <&pinctrl_usb0>;
514 clock-names = "ref", "bus_early", "suspend";
515 clocks = <&sys_clk 12>, <&sys_clk 12>, <&sys_clk 12>;
516 resets = <&usb0_rst 4>;
517 phys = <&usb_phy2>, <&usb0_ssphy>;
518 dr_mode = "host";
519 };
520
521 usb-glue@65b00000 {
522 compatible = "socionext,uniphier-pro4-dwc3-glue",
523 "simple-mfd";
524 #address-cells = <1>;
525 #size-cells = <1>;
526 ranges = <0 0x65b00000 0x100>;
527
528 usb0_vbus: regulator@0 {
529 compatible = "socionext,uniphier-pro4-usb3-regulator";
530 reg = <0 0x10>;
531 clock-names = "gio", "link";
532 clocks = <&sys_clk 12>, <&sys_clk 14>;
533 reset-names = "gio", "link";
534 resets = <&sys_rst 12>, <&sys_rst 14>;
535 };
536
537 usb0_ssphy: ss-phy@10 {
538 compatible = "socionext,uniphier-pro4-usb3-ssphy";
539 reg = <0x10 0x10>;
540 #phy-cells = <0>;
541 clock-names = "gio", "link";
542 clocks = <&sys_clk 12>, <&sys_clk 14>;
543 reset-names = "gio", "link";
544 resets = <&sys_rst 12>, <&sys_rst 14>;
545 vbus-supply = <&usb0_vbus>;
546 };
547
548 usb0_rst: reset@40 {
549 compatible = "socionext,uniphier-pro4-usb3-reset";
550 reg = <0x40 0x4>;
551 #reset-cells = <1>;
552 clock-names = "gio", "link";
553 clocks = <&sys_clk 12>, <&sys_clk 14>;
554 reset-names = "gio", "link";
555 resets = <&sys_rst 12>, <&sys_rst 14>;
556 };
557 };
558
559 /* FIXME: U-Boot own node */
Masahiro Yamadacd622142016-12-05 18:31:39 +0900560 usb0: usb@65b00000 {
561 compatible = "socionext,uniphier-pro4-dwc3";
562 status = "disabled";
563 reg = <0x65b00000 0x1000>;
564 #address-cells = <1>;
565 #size-cells = <1>;
566 ranges;
567 pinctrl-names = "default";
568 pinctrl-0 = <&pinctrl_usb0>;
569 dwc3@65a00000 {
570 compatible = "snps,dwc3";
571 reg = <0x65a00000 0x10000>;
572 interrupts = <0 134 4>;
Masahiro Yamada3444d1d2017-08-13 09:01:17 +0900573 dr_mode = "host";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900574 tx-fifo-resize;
575 };
576 };
577
Masahiro Yamada2001a812018-12-19 20:03:21 +0900578 _usb1: usb@65c00000 {
579 compatible = "socionext,uniphier-dwc3", "snps,dwc3";
580 status = "disabled";
581 reg = <0x65c00000 0xcd00>;
582 interrupt-names = "host", "peripheral";
583 interrupts = <0 137 4>, <0 138 4>;
584 pinctrl-names = "default";
585 pinctrl-0 = <&pinctrl_usb1>;
586 clock-names = "ref", "bus_early", "suspend";
587 clocks = <&sys_clk 12>, <&sys_clk 12>, <&sys_clk 12>;
588 resets = <&usb1_rst 4>;
589 phys = <&usb_phy3>;
590 dr_mode = "host";
591 };
592
593 usb-glue@65d00000 {
594 compatible = "socionext,uniphier-pro4-dwc3-glue",
595 "simple-mfd";
596 #address-cells = <1>;
597 #size-cells = <1>;
598 ranges = <0 0x65d00000 0x100>;
599
600 usb1_vbus: regulator@0 {
601 compatible = "socionext,uniphier-pro4-usb3-regulator";
602 reg = <0 0x10>;
603 clock-names = "gio", "link";
604 clocks = <&sys_clk 12>, <&sys_clk 15>;
605 reset-names = "gio", "link";
606 resets = <&sys_rst 12>, <&sys_rst 15>;
607 };
608
609 usb1_rst: reset@40 {
610 compatible = "socionext,uniphier-pro4-usb3-reset";
611 reg = <0x40 0x4>;
612 #reset-cells = <1>;
613 clock-names = "gio", "link";
614 clocks = <&sys_clk 12>, <&sys_clk 15>;
615 reset-names = "gio", "link";
616 resets = <&sys_rst 12>, <&sys_rst 15>;
617 };
618 };
619
620 /* FIXME: U-Boot own node */
Masahiro Yamadacd622142016-12-05 18:31:39 +0900621 usb1: usb@65d00000 {
622 compatible = "socionext,uniphier-pro4-dwc3";
623 status = "disabled";
624 reg = <0x65d00000 0x1000>;
625 #address-cells = <1>;
626 #size-cells = <1>;
627 ranges;
628 pinctrl-names = "default";
629 pinctrl-0 = <&pinctrl_usb1>;
630 dwc3@65c00000 {
631 compatible = "snps,dwc3";
632 reg = <0x65c00000 0x10000>;
633 interrupts = <0 137 4>;
Masahiro Yamada3444d1d2017-08-13 09:01:17 +0900634 dr_mode = "host";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900635 tx-fifo-resize;
636 };
637 };
638
Masahiro Yamada44ebaa82020-02-28 21:57:19 +0900639 nand: nand-controller@68000000 {
Masahiro Yamadaabb6ac22017-05-15 14:23:46 +0900640 compatible = "socionext,uniphier-denali-nand-v5a";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900641 status = "disabled";
642 reg-names = "nand_data", "denali_reg";
643 reg = <0x68000000 0x20>, <0x68100000 0x1000>;
644 interrupts = <0 65 4>;
645 pinctrl-names = "default";
646 pinctrl-0 = <&pinctrl_nand>;
Masahiro Yamada2001a812018-12-19 20:03:21 +0900647 clock-names = "nand", "nand_x", "ecc";
648 clocks = <&sys_clk 2>, <&sys_clk 3>, <&sys_clk 3>;
Masahiro Yamada5ad15962020-02-28 21:57:20 +0900649 reset-names = "nand", "reg";
650 resets = <&sys_rst 2>, <&sys_rst 2>;
Masahiro Yamadad243c182015-08-28 22:33:13 +0900651 };
Masahiro Yamadaedcfaeb2015-06-30 18:27:00 +0900652 };
Masahiro Yamada8f062432015-12-16 10:54:07 +0900653};
Masahiro Yamadaedcfaeb2015-06-30 18:27:00 +0900654
Masahiro Yamada6c9e46e2017-08-29 12:20:52 +0900655#include "uniphier-pinctrl.dtsi"