blob: 4708b2d7a1bd96f03402a5c687d56c59e34d9fac [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 sLD8 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>
Kunihiko Hayashi051451a2023-02-28 11:37:09 +09009#include <dt-bindings/interrupt-controller/arm-gic.h>
Masahiro Yamadab443fb42017-11-25 00:25:35 +090010
Masahiro Yamada509eb672014-11-26 18:33:59 +090011/ {
Masahiro Yamada52159d22016-10-07 16:43:00 +090012 compatible = "socionext,uniphier-sld8";
Masahiro Yamadaf16eda92017-03-13 00:16:39 +090013 #address-cells = <1>;
14 #size-cells = <1>;
Masahiro Yamada509eb672014-11-26 18:33:59 +090015
16 cpus {
Masahiro Yamada509eb672014-11-26 18:33:59 +090017 #address-cells = <1>;
Masahiro Yamadaf5fd7af2014-12-06 00:03:23 +090018 #size-cells = <0>;
Masahiro Yamada509eb672014-11-26 18:33:59 +090019
20 cpu@0 {
21 device_type = "cpu";
22 compatible = "arm,cortex-a9";
23 reg = <0>;
Masahiro Yamada52159d22016-10-07 16:43:00 +090024 enable-method = "psci";
Masahiro Yamada4e1f81d2015-12-16 10:54:08 +090025 next-level-cache = <&l2>;
Masahiro Yamada509eb672014-11-26 18:33:59 +090026 };
27 };
28
Masahiro Yamadacd622142016-12-05 18:31:39 +090029 psci {
30 compatible = "arm,psci-0.2";
31 method = "smc";
32 };
33
Masahiro Yamadaedcfaeb2015-06-30 18:27:00 +090034 clocks {
Masahiro Yamadacd622142016-12-05 18:31:39 +090035 refclk: ref {
36 compatible = "fixed-clock";
37 #clock-cells = <0>;
38 clock-frequency = <25000000>;
39 };
40
Masahiro Yamadab443fb42017-11-25 00:25:35 +090041 arm_timer_clk: arm-timer {
Masahiro Yamadaedcfaeb2015-06-30 18:27:00 +090042 #clock-cells = <0>;
43 compatible = "fixed-clock";
44 clock-frequency = <50000000>;
45 };
Masahiro Yamadacd622142016-12-05 18:31:39 +090046 };
Masahiro Yamadad243c182015-08-28 22:33:13 +090047
Masahiro Yamadacd622142016-12-05 18:31:39 +090048 soc {
49 compatible = "simple-bus";
50 #address-cells = <1>;
51 #size-cells = <1>;
52 ranges;
53 interrupt-parent = <&intc>;
Masahiro Yamadacd622142016-12-05 18:31:39 +090054
Masahiro Yamada44ebaa82020-02-28 21:57:19 +090055 l2: cache-controller@500c0000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +090056 compatible = "socionext,uniphier-system-cache";
57 reg = <0x500c0000 0x2000>, <0x503c0100 0x4>,
58 <0x506c0000 0x400>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +090059 interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>,
60 <GIC_SPI 175 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadacd622142016-12-05 18:31:39 +090061 cache-unified;
62 cache-size = <(256 * 1024)>;
63 cache-sets = <256>;
64 cache-line-size = <128>;
65 cache-level = <2>;
66 };
67
Masahiro Yamada2001a812018-12-19 20:03:21 +090068 spi: spi@54006000 {
69 compatible = "socionext,uniphier-scssi";
70 status = "disabled";
71 reg = <0x54006000 0x100>;
Masahiro Yamada08520332020-07-09 15:08:14 +090072 #address-cells = <1>;
73 #size-cells = <0>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +090074 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamada2001a812018-12-19 20:03:21 +090075 pinctrl-names = "default";
76 pinctrl-0 = <&pinctrl_spi0>;
77 clocks = <&peri_clk 11>;
78 resets = <&peri_rst 11>;
79 };
80
Masahiro Yamadacd622142016-12-05 18:31:39 +090081 serial0: serial@54006800 {
82 compatible = "socionext,uniphier-uart";
83 status = "disabled";
84 reg = <0x54006800 0x40>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +090085 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadacd622142016-12-05 18:31:39 +090086 pinctrl-names = "default";
87 pinctrl-0 = <&pinctrl_uart0>;
88 clocks = <&peri_clk 0>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +090089 resets = <&peri_rst 0>;
Masahiro Yamadacd622142016-12-05 18:31:39 +090090 };
91
92 serial1: serial@54006900 {
93 compatible = "socionext,uniphier-uart";
94 status = "disabled";
95 reg = <0x54006900 0x40>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +090096 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadacd622142016-12-05 18:31:39 +090097 pinctrl-names = "default";
98 pinctrl-0 = <&pinctrl_uart1>;
99 clocks = <&peri_clk 1>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900100 resets = <&peri_rst 1>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900101 };
102
103 serial2: serial@54006a00 {
104 compatible = "socionext,uniphier-uart";
105 status = "disabled";
106 reg = <0x54006a00 0x40>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900107 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900108 pinctrl-names = "default";
109 pinctrl-0 = <&pinctrl_uart2>;
110 clocks = <&peri_clk 2>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900111 resets = <&peri_rst 2>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900112 };
113
114 serial3: serial@54006b00 {
115 compatible = "socionext,uniphier-uart";
116 status = "disabled";
117 reg = <0x54006b00 0x40>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900118 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900119 pinctrl-names = "default";
120 pinctrl-0 = <&pinctrl_uart3>;
121 clocks = <&peri_clk 3>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900122 resets = <&peri_rst 3>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900123 };
124
Masahiro Yamada0f72b742017-10-13 19:21:52 +0900125 gpio: gpio@55000000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900126 compatible = "socionext,uniphier-gpio";
Masahiro Yamada0f72b742017-10-13 19:21:52 +0900127 reg = <0x55000000 0x200>;
128 interrupt-parent = <&aidet>;
129 interrupt-controller;
130 #interrupt-cells = <2>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900131 gpio-controller;
132 #gpio-cells = <2>;
Masahiro Yamada0f72b742017-10-13 19:21:52 +0900133 gpio-ranges = <&pinctrl 0 0 0>,
134 <&pinctrl 104 0 0>,
135 <&pinctrl 112 0 0>;
136 gpio-ranges-group-names = "gpio_range0",
137 "gpio_range1",
138 "gpio_range2";
139 ngpios = <136>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900140 socionext,interrupt-ranges = <0 48 13>, <14 62 2>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900141 };
142
143 i2c0: i2c@58400000 {
144 compatible = "socionext,uniphier-i2c";
145 status = "disabled";
146 reg = <0x58400000 0x40>;
147 #address-cells = <1>;
148 #size-cells = <0>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900149 interrupts = <GIC_SPI 41 IRQ_TYPE_EDGE_RISING>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900150 pinctrl-names = "default";
151 pinctrl-0 = <&pinctrl_i2c0>;
152 clocks = <&peri_clk 4>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900153 resets = <&peri_rst 4>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900154 clock-frequency = <100000>;
155 };
156
157 i2c1: i2c@58480000 {
158 compatible = "socionext,uniphier-i2c";
159 status = "disabled";
160 reg = <0x58480000 0x40>;
161 #address-cells = <1>;
162 #size-cells = <0>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900163 interrupts = <GIC_SPI 42 IRQ_TYPE_EDGE_RISING>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900164 pinctrl-names = "default";
165 pinctrl-0 = <&pinctrl_i2c1>;
166 clocks = <&peri_clk 5>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900167 resets = <&peri_rst 5>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900168 clock-frequency = <100000>;
169 };
170
171 /* chip-internal connection for DMD */
172 i2c2: i2c@58500000 {
173 compatible = "socionext,uniphier-i2c";
174 reg = <0x58500000 0x40>;
175 #address-cells = <1>;
176 #size-cells = <0>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900177 interrupts = <GIC_SPI 43 IRQ_TYPE_EDGE_RISING>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900178 pinctrl-names = "default";
179 pinctrl-0 = <&pinctrl_i2c2>;
180 clocks = <&peri_clk 6>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900181 resets = <&peri_rst 6>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900182 clock-frequency = <400000>;
183 };
184
185 i2c3: i2c@58580000 {
186 compatible = "socionext,uniphier-i2c";
187 status = "disabled";
188 reg = <0x58580000 0x40>;
189 #address-cells = <1>;
190 #size-cells = <0>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900191 interrupts = <GIC_SPI 44 IRQ_TYPE_EDGE_RISING>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900192 pinctrl-names = "default";
193 pinctrl-0 = <&pinctrl_i2c3>;
194 clocks = <&peri_clk 7>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900195 resets = <&peri_rst 7>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900196 clock-frequency = <100000>;
197 };
198
199 system_bus: system-bus@58c00000 {
200 compatible = "socionext,uniphier-system-bus";
201 status = "disabled";
202 reg = <0x58c00000 0x400>;
203 #address-cells = <2>;
204 #size-cells = <1>;
205 pinctrl-names = "default";
206 pinctrl-0 = <&pinctrl_system_bus>;
207 };
208
Masahiro Yamadaabb6ac22017-05-15 14:23:46 +0900209 smpctrl@59801000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900210 compatible = "socionext,uniphier-smpctrl";
211 reg = <0x59801000 0x400>;
212 };
213
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900214 mioctrl: syscon@59810000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900215 compatible = "socionext,uniphier-sld8-mioctrl",
216 "simple-mfd", "syscon";
217 reg = <0x59810000 0x800>;
218
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900219 mio_clk: clock-controller {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900220 compatible = "socionext,uniphier-sld8-mio-clock";
221 #clock-cells = <1>;
222 };
223
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900224 mio_rst: reset-controller {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900225 compatible = "socionext,uniphier-sld8-mio-reset";
226 #reset-cells = <1>;
227 };
228 };
229
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900230 syscon@59820000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900231 compatible = "socionext,uniphier-sld8-perictrl",
232 "simple-mfd", "syscon";
233 reg = <0x59820000 0x200>;
234
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900235 peri_clk: clock-controller {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900236 compatible = "socionext,uniphier-sld8-peri-clock";
237 #clock-cells = <1>;
238 };
239
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900240 peri_rst: reset-controller {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900241 compatible = "socionext,uniphier-sld8-peri-reset";
242 #reset-cells = <1>;
243 };
244 };
245
Masahiro Yamadacd33fed2019-04-12 18:55:50 +0900246 dmac: dma-controller@5a000000 {
247 compatible = "socionext,uniphier-mio-dmac";
248 reg = <0x5a000000 0x1000>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900249 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>,
250 <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>,
251 <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>,
252 <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>,
253 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
254 <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>,
255 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadacd33fed2019-04-12 18:55:50 +0900256 clocks = <&mio_clk 7>;
257 resets = <&mio_rst 7>;
258 #dma-cells = <1>;
259 };
260
Masahiro Yamada44ebaa82020-02-28 21:57:19 +0900261 sd: mmc@5a400000 {
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900262 compatible = "socionext,uniphier-sd-v2.91";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900263 status = "disabled";
264 reg = <0x5a400000 0x200>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900265 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900266 pinctrl-names = "default", "uhs";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900267 pinctrl-0 = <&pinctrl_sd>;
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900268 pinctrl-1 = <&pinctrl_sd_uhs>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900269 clocks = <&mio_clk 0>;
270 reset-names = "host", "bridge";
271 resets = <&mio_rst 0>, <&mio_rst 3>;
Masahiro Yamadacd33fed2019-04-12 18:55:50 +0900272 dma-names = "rx-tx";
273 dmas = <&dmac 4>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900274 bus-width = <4>;
275 cap-sd-highspeed;
276 sd-uhs-sdr12;
277 sd-uhs-sdr25;
278 sd-uhs-sdr50;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900279 socionext,syscon-uhs-mode = <&mioctrl 0>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900280 };
281
Masahiro Yamada44ebaa82020-02-28 21:57:19 +0900282 emmc: mmc@5a500000 {
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900283 compatible = "socionext,uniphier-sd-v2.91";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900284 status = "disabled";
285 reg = <0x5a500000 0x200>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900286 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamada33aae6b2018-09-10 12:58:32 +0900287 pinctrl-names = "default";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900288 pinctrl-0 = <&pinctrl_emmc>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900289 clocks = <&mio_clk 1>;
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900290 reset-names = "host", "bridge", "hw";
291 resets = <&mio_rst 1>, <&mio_rst 4>, <&mio_rst 6>;
Masahiro Yamadacd33fed2019-04-12 18:55:50 +0900292 dma-names = "rx-tx";
293 dmas = <&dmac 6>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900294 bus-width = <8>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900295 cap-mmc-highspeed;
296 cap-mmc-hw-reset;
Masahiro Yamadac3ab1e12018-09-10 12:58:35 +0900297 non-removable;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900298 };
299
300 usb0: usb@5a800100 {
301 compatible = "socionext,uniphier-ehci", "generic-ehci";
302 status = "disabled";
303 reg = <0x5a800100 0x100>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900304 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900305 pinctrl-names = "default";
306 pinctrl-0 = <&pinctrl_usb0>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900307 clocks = <&sys_clk 8>, <&mio_clk 7>, <&mio_clk 8>,
308 <&mio_clk 12>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900309 resets = <&sys_rst 8>, <&mio_rst 7>, <&mio_rst 8>,
310 <&mio_rst 12>;
Masahiro Yamada46820e32018-03-15 11:43:03 +0900311 has-transaction-translator;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900312 };
313
314 usb1: usb@5a810100 {
315 compatible = "socionext,uniphier-ehci", "generic-ehci";
316 status = "disabled";
317 reg = <0x5a810100 0x100>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900318 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900319 pinctrl-names = "default";
320 pinctrl-0 = <&pinctrl_usb1>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900321 clocks = <&sys_clk 8>, <&mio_clk 7>, <&mio_clk 9>,
322 <&mio_clk 13>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900323 resets = <&sys_rst 8>, <&mio_rst 7>, <&mio_rst 9>,
324 <&mio_rst 13>;
Masahiro Yamada46820e32018-03-15 11:43:03 +0900325 has-transaction-translator;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900326 };
327
328 usb2: usb@5a820100 {
329 compatible = "socionext,uniphier-ehci", "generic-ehci";
330 status = "disabled";
331 reg = <0x5a820100 0x100>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900332 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900333 pinctrl-names = "default";
334 pinctrl-0 = <&pinctrl_usb2>;
Masahiro Yamadab443fb42017-11-25 00:25:35 +0900335 clocks = <&sys_clk 8>, <&mio_clk 7>, <&mio_clk 10>,
336 <&mio_clk 14>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900337 resets = <&sys_rst 8>, <&mio_rst 7>, <&mio_rst 10>,
338 <&mio_rst 14>;
Masahiro Yamada46820e32018-03-15 11:43:03 +0900339 has-transaction-translator;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900340 };
341
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900342 syscon@5f800000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900343 compatible = "socionext,uniphier-sld8-soc-glue",
344 "simple-mfd", "syscon";
345 reg = <0x5f800000 0x2000>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900346
347 pinctrl: pinctrl {
348 compatible = "socionext,uniphier-sld8-pinctrl";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900349 };
350 };
351
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900352 syscon@5f900000 {
Masahiro Yamada46820e32018-03-15 11:43:03 +0900353 compatible = "socionext,uniphier-sld8-soc-glue-debug",
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900354 "simple-mfd", "syscon";
355 reg = <0x5f900000 0x2000>;
Masahiro Yamada46820e32018-03-15 11:43:03 +0900356 #address-cells = <1>;
357 #size-cells = <1>;
358 ranges = <0 0x5f900000 0x2000>;
359
360 efuse@100 {
361 compatible = "socionext,uniphier-efuse";
362 reg = <0x100 0x28>;
363 };
364
365 efuse@200 {
366 compatible = "socionext,uniphier-efuse";
367 reg = <0x200 0x14>;
368 };
369 };
370
Masahiro Yamadacd622142016-12-05 18:31:39 +0900371 timer@60000200 {
372 compatible = "arm,cortex-a9-global-timer";
373 reg = <0x60000200 0x20>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900374 interrupts = <GIC_PPI 11
375 (GIC_CPU_MASK_RAW(1) | IRQ_TYPE_LEVEL_HIGH)>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900376 clocks = <&arm_timer_clk>;
377 };
378
379 timer@60000600 {
380 compatible = "arm,cortex-a9-twd-timer";
381 reg = <0x60000600 0x20>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900382 interrupts = <GIC_PPI 13
383 (GIC_CPU_MASK_RAW(1) | IRQ_TYPE_LEVEL_HIGH)>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900384 clocks = <&arm_timer_clk>;
385 };
386
387 intc: interrupt-controller@60001000 {
388 compatible = "arm,cortex-a9-gic";
389 reg = <0x60001000 0x1000>,
390 <0x60000100 0x100>;
391 #interrupt-cells = <3>;
392 interrupt-controller;
393 };
394
Masahiro Yamada44ebaa82020-02-28 21:57:19 +0900395 aidet: interrupt-controller@61830000 {
Masahiro Yamada6c9e46e2017-08-29 12:20:52 +0900396 compatible = "socionext,uniphier-sld8-aidet";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900397 reg = <0x61830000 0x200>;
Masahiro Yamada6c9e46e2017-08-29 12:20:52 +0900398 interrupt-controller;
399 #interrupt-cells = <2>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900400 };
401
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900402 syscon@61840000 {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900403 compatible = "socionext,uniphier-sld8-sysctrl",
404 "simple-mfd", "syscon";
405 reg = <0x61840000 0x10000>;
406
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900407 sys_clk: clock-controller {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900408 compatible = "socionext,uniphier-sld8-clock";
409 #clock-cells = <1>;
410 };
411
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900412 sys_rst: reset-controller {
Masahiro Yamadacd622142016-12-05 18:31:39 +0900413 compatible = "socionext,uniphier-sld8-reset";
414 #reset-cells = <1>;
415 };
416 };
417
Masahiro Yamada44ebaa82020-02-28 21:57:19 +0900418 nand: nand-controller@68000000 {
Masahiro Yamadaabb6ac22017-05-15 14:23:46 +0900419 compatible = "socionext,uniphier-denali-nand-v5a";
Masahiro Yamadacd622142016-12-05 18:31:39 +0900420 status = "disabled";
421 reg-names = "nand_data", "denali_reg";
422 reg = <0x68000000 0x20>, <0x68100000 0x1000>;
Kunihiko Hayashi051451a2023-02-28 11:37:09 +0900423 #address-cells = <1>;
424 #size-cells = <0>;
425 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
Masahiro Yamadacd622142016-12-05 18:31:39 +0900426 pinctrl-names = "default";
Masahiro Yamada6c9e46e2017-08-29 12:20:52 +0900427 pinctrl-0 = <&pinctrl_nand2cs>;
Masahiro Yamada2001a812018-12-19 20:03:21 +0900428 clock-names = "nand", "nand_x", "ecc";
429 clocks = <&sys_clk 2>, <&sys_clk 3>, <&sys_clk 3>;
Masahiro Yamada5ad15962020-02-28 21:57:20 +0900430 reset-names = "nand", "reg";
431 resets = <&sys_rst 2>, <&sys_rst 2>;
Masahiro Yamadad243c182015-08-28 22:33:13 +0900432 };
Masahiro Yamadaedcfaeb2015-06-30 18:27:00 +0900433 };
Masahiro Yamada8f062432015-12-16 10:54:07 +0900434};
Masahiro Yamadaedcfaeb2015-06-30 18:27:00 +0900435
Masahiro Yamada6c9e46e2017-08-29 12:20:52 +0900436#include "uniphier-pinctrl.dtsi"