xref: /linux/scripts/dtc/include-prefixes/arm64/renesas/r9a07g043.dtsi (revision cf40c9689e5109bf5e4c29038c9f450223aaad2b)
1*cf40c968SBiju Das// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*cf40c968SBiju Das/*
3*cf40c968SBiju Das * Device Tree Source for the RZ/G2UL SoC
4*cf40c968SBiju Das *
5*cf40c968SBiju Das * Copyright (C) 2022 Renesas Electronics Corp.
6*cf40c968SBiju Das */
7*cf40c968SBiju Das
8*cf40c968SBiju Das#include <dt-bindings/interrupt-controller/arm-gic.h>
9*cf40c968SBiju Das#include <dt-bindings/clock/r9a07g043-cpg.h>
10*cf40c968SBiju Das
11*cf40c968SBiju Das/ {
12*cf40c968SBiju Das	compatible = "renesas,r9a07g043";
13*cf40c968SBiju Das	#address-cells = <2>;
14*cf40c968SBiju Das	#size-cells = <2>;
15*cf40c968SBiju Das
16*cf40c968SBiju Das	audio_clk1: audio-clk1 {
17*cf40c968SBiju Das		compatible = "fixed-clock";
18*cf40c968SBiju Das		#clock-cells = <0>;
19*cf40c968SBiju Das		/* This value must be overridden by boards that provide it */
20*cf40c968SBiju Das		clock-frequency = <0>;
21*cf40c968SBiju Das	};
22*cf40c968SBiju Das
23*cf40c968SBiju Das	audio_clk2: audio-clk2 {
24*cf40c968SBiju Das		compatible = "fixed-clock";
25*cf40c968SBiju Das		#clock-cells = <0>;
26*cf40c968SBiju Das		/* This value must be overridden by boards that provide it */
27*cf40c968SBiju Das		clock-frequency = <0>;
28*cf40c968SBiju Das	};
29*cf40c968SBiju Das
30*cf40c968SBiju Das	/* External CAN clock - to be overridden by boards that provide it */
31*cf40c968SBiju Das	can_clk: can-clk {
32*cf40c968SBiju Das		compatible = "fixed-clock";
33*cf40c968SBiju Das		#clock-cells = <0>;
34*cf40c968SBiju Das		clock-frequency = <0>;
35*cf40c968SBiju Das	};
36*cf40c968SBiju Das
37*cf40c968SBiju Das	/* clock can be either from exclk or crystal oscillator (XIN/XOUT) */
38*cf40c968SBiju Das	extal_clk: extal-clk {
39*cf40c968SBiju Das		compatible = "fixed-clock";
40*cf40c968SBiju Das		#clock-cells = <0>;
41*cf40c968SBiju Das		/* This value must be overridden by the board */
42*cf40c968SBiju Das		clock-frequency = <0>;
43*cf40c968SBiju Das	};
44*cf40c968SBiju Das
45*cf40c968SBiju Das	cpus {
46*cf40c968SBiju Das		#address-cells = <1>;
47*cf40c968SBiju Das		#size-cells = <0>;
48*cf40c968SBiju Das
49*cf40c968SBiju Das		cpu0: cpu@0 {
50*cf40c968SBiju Das			compatible = "arm,cortex-a55";
51*cf40c968SBiju Das			reg = <0>;
52*cf40c968SBiju Das			device_type = "cpu";
53*cf40c968SBiju Das			next-level-cache = <&L3_CA55>;
54*cf40c968SBiju Das			enable-method = "psci";
55*cf40c968SBiju Das			clocks = <&cpg CPG_CORE R9A07G043_CLK_I>;
56*cf40c968SBiju Das		};
57*cf40c968SBiju Das
58*cf40c968SBiju Das		L3_CA55: cache-controller-0 {
59*cf40c968SBiju Das			compatible = "cache";
60*cf40c968SBiju Das			cache-unified;
61*cf40c968SBiju Das			cache-size = <0x40000>;
62*cf40c968SBiju Das		};
63*cf40c968SBiju Das	};
64*cf40c968SBiju Das
65*cf40c968SBiju Das	psci {
66*cf40c968SBiju Das		compatible = "arm,psci-1.0", "arm,psci-0.2";
67*cf40c968SBiju Das		method = "smc";
68*cf40c968SBiju Das	};
69*cf40c968SBiju Das
70*cf40c968SBiju Das	soc: soc {
71*cf40c968SBiju Das		compatible = "simple-bus";
72*cf40c968SBiju Das		interrupt-parent = <&gic>;
73*cf40c968SBiju Das		#address-cells = <2>;
74*cf40c968SBiju Das		#size-cells = <2>;
75*cf40c968SBiju Das		ranges;
76*cf40c968SBiju Das
77*cf40c968SBiju Das		ssi0: ssi@10049c00 {
78*cf40c968SBiju Das			reg = <0 0x10049c00 0 0x400>;
79*cf40c968SBiju Das			#sound-dai-cells = <0>;
80*cf40c968SBiju Das			/* place holder */
81*cf40c968SBiju Das		};
82*cf40c968SBiju Das
83*cf40c968SBiju Das		spi1: spi@1004b000 {
84*cf40c968SBiju Das			reg = <0 0x1004b000 0 0x400>;
85*cf40c968SBiju Das			#address-cells = <1>;
86*cf40c968SBiju Das			#size-cells = <0>;
87*cf40c968SBiju Das			/* place holder */
88*cf40c968SBiju Das		};
89*cf40c968SBiju Das
90*cf40c968SBiju Das		scif0: serial@1004b800 {
91*cf40c968SBiju Das			compatible = "renesas,scif-r9a07g043",
92*cf40c968SBiju Das				     "renesas,scif-r9a07g044";
93*cf40c968SBiju Das			reg = <0 0x1004b800 0 0x400>;
94*cf40c968SBiju Das			interrupts = <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
95*cf40c968SBiju Das				     <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>,
96*cf40c968SBiju Das				     <GIC_SPI 383 IRQ_TYPE_LEVEL_HIGH>,
97*cf40c968SBiju Das				     <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
98*cf40c968SBiju Das				     <GIC_SPI 384 IRQ_TYPE_LEVEL_HIGH>,
99*cf40c968SBiju Das				     <GIC_SPI 384 IRQ_TYPE_LEVEL_HIGH>;
100*cf40c968SBiju Das			interrupt-names = "eri", "rxi", "txi",
101*cf40c968SBiju Das					  "bri", "dri", "tei";
102*cf40c968SBiju Das			clocks = <&cpg CPG_MOD R9A07G043_SCIF0_CLK_PCK>;
103*cf40c968SBiju Das			clock-names = "fck";
104*cf40c968SBiju Das			power-domains = <&cpg>;
105*cf40c968SBiju Das			resets = <&cpg R9A07G043_SCIF0_RST_SYSTEM_N>;
106*cf40c968SBiju Das			status = "disabled";
107*cf40c968SBiju Das		};
108*cf40c968SBiju Das
109*cf40c968SBiju Das		scif1: serial@1004bc00 {
110*cf40c968SBiju Das			compatible = "renesas,scif-r9a07g043",
111*cf40c968SBiju Das				     "renesas,scif-r9a07g044";
112*cf40c968SBiju Das			reg = <0 0x1004bc00 0 0x400>;
113*cf40c968SBiju Das			interrupts = <GIC_SPI 385 IRQ_TYPE_LEVEL_HIGH>,
114*cf40c968SBiju Das				     <GIC_SPI 387 IRQ_TYPE_LEVEL_HIGH>,
115*cf40c968SBiju Das				     <GIC_SPI 388 IRQ_TYPE_LEVEL_HIGH>,
116*cf40c968SBiju Das				     <GIC_SPI 386 IRQ_TYPE_LEVEL_HIGH>,
117*cf40c968SBiju Das				     <GIC_SPI 389 IRQ_TYPE_LEVEL_HIGH>,
118*cf40c968SBiju Das				     <GIC_SPI 389 IRQ_TYPE_LEVEL_HIGH>;
119*cf40c968SBiju Das			interrupt-names = "eri", "rxi", "txi",
120*cf40c968SBiju Das					  "bri", "dri", "tei";
121*cf40c968SBiju Das			clocks = <&cpg CPG_MOD R9A07G043_SCIF1_CLK_PCK>;
122*cf40c968SBiju Das			clock-names = "fck";
123*cf40c968SBiju Das			power-domains = <&cpg>;
124*cf40c968SBiju Das			resets = <&cpg R9A07G043_SCIF1_RST_SYSTEM_N>;
125*cf40c968SBiju Das			status = "disabled";
126*cf40c968SBiju Das		};
127*cf40c968SBiju Das
128*cf40c968SBiju Das		scif2: serial@1004c000 {
129*cf40c968SBiju Das			compatible = "renesas,scif-r9a07g043",
130*cf40c968SBiju Das				     "renesas,scif-r9a07g044";
131*cf40c968SBiju Das			reg = <0 0x1004c000 0 0x400>;
132*cf40c968SBiju Das			interrupts = <GIC_SPI 390 IRQ_TYPE_LEVEL_HIGH>,
133*cf40c968SBiju Das				     <GIC_SPI 392 IRQ_TYPE_LEVEL_HIGH>,
134*cf40c968SBiju Das				     <GIC_SPI 393 IRQ_TYPE_LEVEL_HIGH>,
135*cf40c968SBiju Das				     <GIC_SPI 391 IRQ_TYPE_LEVEL_HIGH>,
136*cf40c968SBiju Das				     <GIC_SPI 394 IRQ_TYPE_LEVEL_HIGH>,
137*cf40c968SBiju Das				     <GIC_SPI 394 IRQ_TYPE_LEVEL_HIGH>;
138*cf40c968SBiju Das			interrupt-names = "eri", "rxi", "txi",
139*cf40c968SBiju Das					  "bri", "dri", "tei";
140*cf40c968SBiju Das			clocks = <&cpg CPG_MOD R9A07G043_SCIF2_CLK_PCK>;
141*cf40c968SBiju Das			clock-names = "fck";
142*cf40c968SBiju Das			power-domains = <&cpg>;
143*cf40c968SBiju Das			resets = <&cpg R9A07G043_SCIF2_RST_SYSTEM_N>;
144*cf40c968SBiju Das			status = "disabled";
145*cf40c968SBiju Das		};
146*cf40c968SBiju Das
147*cf40c968SBiju Das		scif3: serial@1004c400 {
148*cf40c968SBiju Das			compatible = "renesas,scif-r9a07g043",
149*cf40c968SBiju Das				     "renesas,scif-r9a07g044";
150*cf40c968SBiju Das			reg = <0 0x1004c400 0 0x400>;
151*cf40c968SBiju Das			interrupts = <GIC_SPI 395 IRQ_TYPE_LEVEL_HIGH>,
152*cf40c968SBiju Das				     <GIC_SPI 397 IRQ_TYPE_LEVEL_HIGH>,
153*cf40c968SBiju Das				     <GIC_SPI 398 IRQ_TYPE_LEVEL_HIGH>,
154*cf40c968SBiju Das				     <GIC_SPI 396 IRQ_TYPE_LEVEL_HIGH>,
155*cf40c968SBiju Das				     <GIC_SPI 399 IRQ_TYPE_LEVEL_HIGH>,
156*cf40c968SBiju Das				     <GIC_SPI 399 IRQ_TYPE_LEVEL_HIGH>;
157*cf40c968SBiju Das			interrupt-names = "eri", "rxi", "txi",
158*cf40c968SBiju Das					  "bri", "dri", "tei";
159*cf40c968SBiju Das			clocks = <&cpg CPG_MOD R9A07G043_SCIF3_CLK_PCK>;
160*cf40c968SBiju Das			clock-names = "fck";
161*cf40c968SBiju Das			power-domains = <&cpg>;
162*cf40c968SBiju Das			resets = <&cpg R9A07G043_SCIF3_RST_SYSTEM_N>;
163*cf40c968SBiju Das			status = "disabled";
164*cf40c968SBiju Das		};
165*cf40c968SBiju Das
166*cf40c968SBiju Das		scif4: serial@1004c800 {
167*cf40c968SBiju Das			compatible = "renesas,scif-r9a07g043",
168*cf40c968SBiju Das				     "renesas,scif-r9a07g044";
169*cf40c968SBiju Das			reg = <0 0x1004c800 0 0x400>;
170*cf40c968SBiju Das			interrupts = <GIC_SPI 400 IRQ_TYPE_LEVEL_HIGH>,
171*cf40c968SBiju Das				     <GIC_SPI 402 IRQ_TYPE_LEVEL_HIGH>,
172*cf40c968SBiju Das				     <GIC_SPI 403 IRQ_TYPE_LEVEL_HIGH>,
173*cf40c968SBiju Das				     <GIC_SPI 401 IRQ_TYPE_LEVEL_HIGH>,
174*cf40c968SBiju Das				     <GIC_SPI 404 IRQ_TYPE_LEVEL_HIGH>,
175*cf40c968SBiju Das				     <GIC_SPI 404 IRQ_TYPE_LEVEL_HIGH>;
176*cf40c968SBiju Das			interrupt-names = "eri", "rxi", "txi",
177*cf40c968SBiju Das					  "bri", "dri", "tei";
178*cf40c968SBiju Das			clocks = <&cpg CPG_MOD R9A07G043_SCIF4_CLK_PCK>;
179*cf40c968SBiju Das			clock-names = "fck";
180*cf40c968SBiju Das			power-domains = <&cpg>;
181*cf40c968SBiju Das			resets = <&cpg R9A07G043_SCIF4_RST_SYSTEM_N>;
182*cf40c968SBiju Das			status = "disabled";
183*cf40c968SBiju Das		};
184*cf40c968SBiju Das
185*cf40c968SBiju Das		sci0: serial@1004d000 {
186*cf40c968SBiju Das			compatible = "renesas,r9a07g043-sci", "renesas,sci";
187*cf40c968SBiju Das			reg = <0 0x1004d000 0 0x400>;
188*cf40c968SBiju Das			interrupts = <GIC_SPI 405 IRQ_TYPE_LEVEL_HIGH>,
189*cf40c968SBiju Das				     <GIC_SPI 406 IRQ_TYPE_LEVEL_HIGH>,
190*cf40c968SBiju Das				     <GIC_SPI 407 IRQ_TYPE_LEVEL_HIGH>,
191*cf40c968SBiju Das				     <GIC_SPI 408 IRQ_TYPE_LEVEL_HIGH>;
192*cf40c968SBiju Das			interrupt-names = "eri", "rxi", "txi", "tei";
193*cf40c968SBiju Das			clocks = <&cpg CPG_MOD R9A07G043_SCI0_CLKP>;
194*cf40c968SBiju Das			clock-names = "fck";
195*cf40c968SBiju Das			power-domains = <&cpg>;
196*cf40c968SBiju Das			resets = <&cpg R9A07G043_SCI0_RST>;
197*cf40c968SBiju Das			status = "disabled";
198*cf40c968SBiju Das		};
199*cf40c968SBiju Das
200*cf40c968SBiju Das		sci1: serial@1004d400 {
201*cf40c968SBiju Das			compatible = "renesas,r9a07g043-sci", "renesas,sci";
202*cf40c968SBiju Das			reg = <0 0x1004d400 0 0x400>;
203*cf40c968SBiju Das			interrupts = <GIC_SPI 409 IRQ_TYPE_LEVEL_HIGH>,
204*cf40c968SBiju Das				     <GIC_SPI 410 IRQ_TYPE_LEVEL_HIGH>,
205*cf40c968SBiju Das				     <GIC_SPI 411 IRQ_TYPE_LEVEL_HIGH>,
206*cf40c968SBiju Das				     <GIC_SPI 412 IRQ_TYPE_LEVEL_HIGH>;
207*cf40c968SBiju Das			interrupt-names = "eri", "rxi", "txi", "tei";
208*cf40c968SBiju Das			clocks = <&cpg CPG_MOD R9A07G043_SCI1_CLKP>;
209*cf40c968SBiju Das			clock-names = "fck";
210*cf40c968SBiju Das			power-domains = <&cpg>;
211*cf40c968SBiju Das			resets = <&cpg R9A07G043_SCI1_RST>;
212*cf40c968SBiju Das			status = "disabled";
213*cf40c968SBiju Das		};
214*cf40c968SBiju Das
215*cf40c968SBiju Das		canfd: can@10050000 {
216*cf40c968SBiju Das			reg = <0 0x10050000 0 0x8000>;
217*cf40c968SBiju Das			/* place holder */
218*cf40c968SBiju Das		};
219*cf40c968SBiju Das
220*cf40c968SBiju Das		i2c0: i2c@10058000 {
221*cf40c968SBiju Das			#address-cells = <1>;
222*cf40c968SBiju Das			#size-cells = <0>;
223*cf40c968SBiju Das			reg = <0 0x10058000 0 0x400>;
224*cf40c968SBiju Das			/* place holder */
225*cf40c968SBiju Das		};
226*cf40c968SBiju Das
227*cf40c968SBiju Das		i2c1: i2c@10058400 {
228*cf40c968SBiju Das			#address-cells = <1>;
229*cf40c968SBiju Das			#size-cells = <0>;
230*cf40c968SBiju Das			reg = <0 0x10058400 0 0x400>;
231*cf40c968SBiju Das			/* place holder */
232*cf40c968SBiju Das		};
233*cf40c968SBiju Das
234*cf40c968SBiju Das		i2c3: i2c@10058c00 {
235*cf40c968SBiju Das			#address-cells = <1>;
236*cf40c968SBiju Das			#size-cells = <0>;
237*cf40c968SBiju Das			reg = <0 0x10058c00 0 0x400>;
238*cf40c968SBiju Das			/* place holder */
239*cf40c968SBiju Das		};
240*cf40c968SBiju Das
241*cf40c968SBiju Das		adc: adc@10059000 {
242*cf40c968SBiju Das			reg = <0 0x10059000 0 0x400>;
243*cf40c968SBiju Das			/* place holder */
244*cf40c968SBiju Das		};
245*cf40c968SBiju Das
246*cf40c968SBiju Das		sbc: spi@10060000 {
247*cf40c968SBiju Das			reg = <0 0x10060000 0 0x10000>,
248*cf40c968SBiju Das			      <0 0x20000000 0 0x10000000>,
249*cf40c968SBiju Das			      <0 0x10070000 0 0x10000>;
250*cf40c968SBiju Das			#address-cells = <1>;
251*cf40c968SBiju Das			#size-cells = <0>;
252*cf40c968SBiju Das			/* place holder */
253*cf40c968SBiju Das		};
254*cf40c968SBiju Das
255*cf40c968SBiju Das		cpg: clock-controller@11010000 {
256*cf40c968SBiju Das			compatible = "renesas,r9a07g043-cpg";
257*cf40c968SBiju Das			reg = <0 0x11010000 0 0x10000>;
258*cf40c968SBiju Das			clocks = <&extal_clk>;
259*cf40c968SBiju Das			clock-names = "extal";
260*cf40c968SBiju Das			#clock-cells = <2>;
261*cf40c968SBiju Das			#reset-cells = <1>;
262*cf40c968SBiju Das			#power-domain-cells = <0>;
263*cf40c968SBiju Das		};
264*cf40c968SBiju Das
265*cf40c968SBiju Das		sysc: system-controller@11020000 {
266*cf40c968SBiju Das			compatible = "renesas,r9a07g043-sysc";
267*cf40c968SBiju Das			reg = <0 0x11020000 0 0x10000>;
268*cf40c968SBiju Das			interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>,
269*cf40c968SBiju Das				     <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>,
270*cf40c968SBiju Das				     <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>,
271*cf40c968SBiju Das				     <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
272*cf40c968SBiju Das			interrupt-names = "lpm_int", "ca55stbydone_int",
273*cf40c968SBiju Das					  "cm33stbyr_int", "ca55_deny";
274*cf40c968SBiju Das			status = "disabled";
275*cf40c968SBiju Das		};
276*cf40c968SBiju Das
277*cf40c968SBiju Das		pinctrl: pinctrl@11030000 {
278*cf40c968SBiju Das			reg = <0 0x11030000 0 0x10000>;
279*cf40c968SBiju Das			gpio-controller;
280*cf40c968SBiju Das			#gpio-cells = <2>;
281*cf40c968SBiju Das			/* place holder */
282*cf40c968SBiju Das		};
283*cf40c968SBiju Das
284*cf40c968SBiju Das		dmac: dma-controller@11820000 {
285*cf40c968SBiju Das			compatible = "renesas,r9a07g043-dmac",
286*cf40c968SBiju Das				     "renesas,rz-dmac";
287*cf40c968SBiju Das			reg = <0 0x11820000 0 0x10000>,
288*cf40c968SBiju Das			      <0 0x11830000 0 0x10000>;
289*cf40c968SBiju Das			interrupts = <GIC_SPI 141 IRQ_TYPE_EDGE_RISING>,
290*cf40c968SBiju Das				     <GIC_SPI 125 IRQ_TYPE_EDGE_RISING>,
291*cf40c968SBiju Das				     <GIC_SPI 126 IRQ_TYPE_EDGE_RISING>,
292*cf40c968SBiju Das				     <GIC_SPI 127 IRQ_TYPE_EDGE_RISING>,
293*cf40c968SBiju Das				     <GIC_SPI 128 IRQ_TYPE_EDGE_RISING>,
294*cf40c968SBiju Das				     <GIC_SPI 129 IRQ_TYPE_EDGE_RISING>,
295*cf40c968SBiju Das				     <GIC_SPI 130 IRQ_TYPE_EDGE_RISING>,
296*cf40c968SBiju Das				     <GIC_SPI 131 IRQ_TYPE_EDGE_RISING>,
297*cf40c968SBiju Das				     <GIC_SPI 132 IRQ_TYPE_EDGE_RISING>,
298*cf40c968SBiju Das				     <GIC_SPI 133 IRQ_TYPE_EDGE_RISING>,
299*cf40c968SBiju Das				     <GIC_SPI 134 IRQ_TYPE_EDGE_RISING>,
300*cf40c968SBiju Das				     <GIC_SPI 135 IRQ_TYPE_EDGE_RISING>,
301*cf40c968SBiju Das				     <GIC_SPI 136 IRQ_TYPE_EDGE_RISING>,
302*cf40c968SBiju Das				     <GIC_SPI 137 IRQ_TYPE_EDGE_RISING>,
303*cf40c968SBiju Das				     <GIC_SPI 138 IRQ_TYPE_EDGE_RISING>,
304*cf40c968SBiju Das				     <GIC_SPI 139 IRQ_TYPE_EDGE_RISING>,
305*cf40c968SBiju Das				     <GIC_SPI 140 IRQ_TYPE_EDGE_RISING>;
306*cf40c968SBiju Das			interrupt-names = "error",
307*cf40c968SBiju Das					  "ch0", "ch1", "ch2", "ch3",
308*cf40c968SBiju Das					  "ch4", "ch5", "ch6", "ch7",
309*cf40c968SBiju Das					  "ch8", "ch9", "ch10", "ch11",
310*cf40c968SBiju Das					  "ch12", "ch13", "ch14", "ch15";
311*cf40c968SBiju Das			clocks = <&cpg CPG_MOD R9A07G043_DMAC_ACLK>,
312*cf40c968SBiju Das				 <&cpg CPG_MOD R9A07G043_DMAC_PCLK>;
313*cf40c968SBiju Das			power-domains = <&cpg>;
314*cf40c968SBiju Das			resets = <&cpg R9A07G043_DMAC_ARESETN>,
315*cf40c968SBiju Das				 <&cpg R9A07G043_DMAC_RST_ASYNC>;
316*cf40c968SBiju Das			#dma-cells = <1>;
317*cf40c968SBiju Das			dma-channels = <16>;
318*cf40c968SBiju Das		};
319*cf40c968SBiju Das
320*cf40c968SBiju Das		gic: interrupt-controller@11900000 {
321*cf40c968SBiju Das			compatible = "arm,gic-v3";
322*cf40c968SBiju Das			#interrupt-cells = <3>;
323*cf40c968SBiju Das			#address-cells = <0>;
324*cf40c968SBiju Das			interrupt-controller;
325*cf40c968SBiju Das			reg = <0x0 0x11900000 0 0x40000>,
326*cf40c968SBiju Das			      <0x0 0x11940000 0 0x60000>;
327*cf40c968SBiju Das			interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_LOW>;
328*cf40c968SBiju Das		};
329*cf40c968SBiju Das
330*cf40c968SBiju Das		sdhi0: mmc@11c00000  {
331*cf40c968SBiju Das			reg = <0x0 0x11c00000 0 0x10000>;
332*cf40c968SBiju Das			/* place holder */
333*cf40c968SBiju Das		};
334*cf40c968SBiju Das
335*cf40c968SBiju Das		sdhi1: mmc@11c10000 {
336*cf40c968SBiju Das			reg = <0x0 0x11c10000 0 0x10000>;
337*cf40c968SBiju Das			/* place holder */
338*cf40c968SBiju Das		};
339*cf40c968SBiju Das
340*cf40c968SBiju Das		phyrst: usbphy-ctrl@11c40000 {
341*cf40c968SBiju Das			reg = <0 0x11c40000 0 0x10000>;
342*cf40c968SBiju Das			/* place holder */
343*cf40c968SBiju Das		};
344*cf40c968SBiju Das
345*cf40c968SBiju Das		ohci0: usb@11c50000 {
346*cf40c968SBiju Das			reg = <0 0x11c50000 0 0x100>;
347*cf40c968SBiju Das			/* place holder */
348*cf40c968SBiju Das		};
349*cf40c968SBiju Das
350*cf40c968SBiju Das		ohci1: usb@11c70000 {
351*cf40c968SBiju Das			reg = <0 0x11c70000 0 0x100>;
352*cf40c968SBiju Das			/* place holder */
353*cf40c968SBiju Das		};
354*cf40c968SBiju Das
355*cf40c968SBiju Das		ehci0: usb@11c50100 {
356*cf40c968SBiju Das			reg = <0 0x11c50100 0 0x100>;
357*cf40c968SBiju Das			/* place holder */
358*cf40c968SBiju Das		};
359*cf40c968SBiju Das
360*cf40c968SBiju Das		ehci1: usb@11c70100 {
361*cf40c968SBiju Das			reg = <0 0x11c70100 0 0x100>;
362*cf40c968SBiju Das			/* place holder */
363*cf40c968SBiju Das		};
364*cf40c968SBiju Das
365*cf40c968SBiju Das		usb2_phy0: usb-phy@11c50200 {
366*cf40c968SBiju Das			reg = <0 0x11c50200 0 0x700>;
367*cf40c968SBiju Das			/* place holder */
368*cf40c968SBiju Das		};
369*cf40c968SBiju Das
370*cf40c968SBiju Das		usb2_phy1: usb-phy@11c70200 {
371*cf40c968SBiju Das			reg = <0 0x11c70200 0 0x700>;
372*cf40c968SBiju Das			/* place holder */
373*cf40c968SBiju Das		};
374*cf40c968SBiju Das
375*cf40c968SBiju Das		hsusb: usb@11c60000 {
376*cf40c968SBiju Das			reg = <0 0x11c60000 0 0x10000>;
377*cf40c968SBiju Das			/* place holder */
378*cf40c968SBiju Das		};
379*cf40c968SBiju Das
380*cf40c968SBiju Das		wdt0: watchdog@12800800 {
381*cf40c968SBiju Das			reg = <0 0x12800800 0 0x400>;
382*cf40c968SBiju Das			/* place holder */
383*cf40c968SBiju Das		};
384*cf40c968SBiju Das
385*cf40c968SBiju Das		wdt2: watchdog@12800400 {
386*cf40c968SBiju Das			reg = <0 0x12800400 0 0x400>;
387*cf40c968SBiju Das			/* place holder */
388*cf40c968SBiju Das		};
389*cf40c968SBiju Das
390*cf40c968SBiju Das		ostm0: timer@12801000 {
391*cf40c968SBiju Das			reg = <0x0 0x12801000 0x0 0x400>;
392*cf40c968SBiju Das			/* place holder */
393*cf40c968SBiju Das		};
394*cf40c968SBiju Das
395*cf40c968SBiju Das		ostm1: timer@12801400 {
396*cf40c968SBiju Das			reg = <0x0 0x12801400 0x0 0x400>;
397*cf40c968SBiju Das			/* place holder */
398*cf40c968SBiju Das		};
399*cf40c968SBiju Das
400*cf40c968SBiju Das		ostm2: timer@12801800 {
401*cf40c968SBiju Das			reg = <0x0 0x12801800 0x0 0x400>;
402*cf40c968SBiju Das			/* place holder */
403*cf40c968SBiju Das		};
404*cf40c968SBiju Das	};
405*cf40c968SBiju Das
406*cf40c968SBiju Das	timer {
407*cf40c968SBiju Das		compatible = "arm,armv8-timer";
408*cf40c968SBiju Das		interrupts-extended = <&gic GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>,
409*cf40c968SBiju Das				      <&gic GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>,
410*cf40c968SBiju Das				      <&gic GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>,
411*cf40c968SBiju Das				      <&gic GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>;
412*cf40c968SBiju Das	};
413*cf40c968SBiju Das};
414