1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Device Tree Source for the R-Car E2 (R8A77940) SoC
4*f126890aSEmmanuel Vadot *
5*f126890aSEmmanuel Vadot * Copyright (C) 2014 Renesas Electronics Corporation
6*f126890aSEmmanuel Vadot * Copyright (C) 2014 Ulrich Hecht
7*f126890aSEmmanuel Vadot */
8*f126890aSEmmanuel Vadot
9*f126890aSEmmanuel Vadot#include <dt-bindings/clock/r8a7794-cpg-mssr.h>
10*f126890aSEmmanuel Vadot#include <dt-bindings/interrupt-controller/arm-gic.h>
11*f126890aSEmmanuel Vadot#include <dt-bindings/interrupt-controller/irq.h>
12*f126890aSEmmanuel Vadot#include <dt-bindings/power/r8a7794-sysc.h>
13*f126890aSEmmanuel Vadot
14*f126890aSEmmanuel Vadot/ {
15*f126890aSEmmanuel Vadot	compatible = "renesas,r8a7794";
16*f126890aSEmmanuel Vadot	#address-cells = <2>;
17*f126890aSEmmanuel Vadot	#size-cells = <2>;
18*f126890aSEmmanuel Vadot
19*f126890aSEmmanuel Vadot	aliases {
20*f126890aSEmmanuel Vadot		i2c0 = &i2c0;
21*f126890aSEmmanuel Vadot		i2c1 = &i2c1;
22*f126890aSEmmanuel Vadot		i2c2 = &i2c2;
23*f126890aSEmmanuel Vadot		i2c3 = &i2c3;
24*f126890aSEmmanuel Vadot		i2c4 = &i2c4;
25*f126890aSEmmanuel Vadot		i2c5 = &i2c5;
26*f126890aSEmmanuel Vadot		i2c6 = &i2c6;
27*f126890aSEmmanuel Vadot		i2c7 = &i2c7;
28*f126890aSEmmanuel Vadot		spi0 = &qspi;
29*f126890aSEmmanuel Vadot		vin0 = &vin0;
30*f126890aSEmmanuel Vadot		vin1 = &vin1;
31*f126890aSEmmanuel Vadot	};
32*f126890aSEmmanuel Vadot
33*f126890aSEmmanuel Vadot	/*
34*f126890aSEmmanuel Vadot	 * The external audio clocks are configured as 0 Hz fixed frequency
35*f126890aSEmmanuel Vadot	 * clocks by default.
36*f126890aSEmmanuel Vadot	 * Boards that provide audio clocks should override them.
37*f126890aSEmmanuel Vadot	 */
38*f126890aSEmmanuel Vadot	audio_clka: audio_clka {
39*f126890aSEmmanuel Vadot		compatible = "fixed-clock";
40*f126890aSEmmanuel Vadot		#clock-cells = <0>;
41*f126890aSEmmanuel Vadot		clock-frequency = <0>;
42*f126890aSEmmanuel Vadot	};
43*f126890aSEmmanuel Vadot	audio_clkb: audio_clkb {
44*f126890aSEmmanuel Vadot		compatible = "fixed-clock";
45*f126890aSEmmanuel Vadot		#clock-cells = <0>;
46*f126890aSEmmanuel Vadot		clock-frequency = <0>;
47*f126890aSEmmanuel Vadot	};
48*f126890aSEmmanuel Vadot	audio_clkc: audio_clkc {
49*f126890aSEmmanuel Vadot		compatible = "fixed-clock";
50*f126890aSEmmanuel Vadot		#clock-cells = <0>;
51*f126890aSEmmanuel Vadot		clock-frequency = <0>;
52*f126890aSEmmanuel Vadot	};
53*f126890aSEmmanuel Vadot
54*f126890aSEmmanuel Vadot	/* External CAN clock */
55*f126890aSEmmanuel Vadot	can_clk: can {
56*f126890aSEmmanuel Vadot		compatible = "fixed-clock";
57*f126890aSEmmanuel Vadot		#clock-cells = <0>;
58*f126890aSEmmanuel Vadot		/* This value must be overridden by the board. */
59*f126890aSEmmanuel Vadot		clock-frequency = <0>;
60*f126890aSEmmanuel Vadot	};
61*f126890aSEmmanuel Vadot
62*f126890aSEmmanuel Vadot	cpus {
63*f126890aSEmmanuel Vadot		#address-cells = <1>;
64*f126890aSEmmanuel Vadot		#size-cells = <0>;
65*f126890aSEmmanuel Vadot
66*f126890aSEmmanuel Vadot		cpu0: cpu@0 {
67*f126890aSEmmanuel Vadot			device_type = "cpu";
68*f126890aSEmmanuel Vadot			compatible = "arm,cortex-a7";
69*f126890aSEmmanuel Vadot			reg = <0>;
70*f126890aSEmmanuel Vadot			clock-frequency = <1000000000>;
71*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_CORE R8A7794_CLK_Z2>;
72*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_CA7_CPU0>;
73*f126890aSEmmanuel Vadot			enable-method = "renesas,apmu";
74*f126890aSEmmanuel Vadot			next-level-cache = <&L2_CA7>;
75*f126890aSEmmanuel Vadot		};
76*f126890aSEmmanuel Vadot
77*f126890aSEmmanuel Vadot		cpu1: cpu@1 {
78*f126890aSEmmanuel Vadot			device_type = "cpu";
79*f126890aSEmmanuel Vadot			compatible = "arm,cortex-a7";
80*f126890aSEmmanuel Vadot			reg = <1>;
81*f126890aSEmmanuel Vadot			clock-frequency = <1000000000>;
82*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_CORE R8A7794_CLK_Z2>;
83*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_CA7_CPU1>;
84*f126890aSEmmanuel Vadot			enable-method = "renesas,apmu";
85*f126890aSEmmanuel Vadot			next-level-cache = <&L2_CA7>;
86*f126890aSEmmanuel Vadot		};
87*f126890aSEmmanuel Vadot
88*f126890aSEmmanuel Vadot		L2_CA7: cache-controller-0 {
89*f126890aSEmmanuel Vadot			compatible = "cache";
90*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_CA7_SCU>;
91*f126890aSEmmanuel Vadot			cache-unified;
92*f126890aSEmmanuel Vadot			cache-level = <2>;
93*f126890aSEmmanuel Vadot		};
94*f126890aSEmmanuel Vadot	};
95*f126890aSEmmanuel Vadot
96*f126890aSEmmanuel Vadot	/* External root clock */
97*f126890aSEmmanuel Vadot	extal_clk: extal {
98*f126890aSEmmanuel Vadot		compatible = "fixed-clock";
99*f126890aSEmmanuel Vadot		#clock-cells = <0>;
100*f126890aSEmmanuel Vadot		/* This value must be overridden by the board. */
101*f126890aSEmmanuel Vadot		clock-frequency = <0>;
102*f126890aSEmmanuel Vadot	};
103*f126890aSEmmanuel Vadot
104*f126890aSEmmanuel Vadot	pmu {
105*f126890aSEmmanuel Vadot		compatible = "arm,cortex-a7-pmu";
106*f126890aSEmmanuel Vadot		interrupts-extended = <&gic GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>,
107*f126890aSEmmanuel Vadot				      <&gic GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
108*f126890aSEmmanuel Vadot		interrupt-affinity = <&cpu0>, <&cpu1>;
109*f126890aSEmmanuel Vadot	};
110*f126890aSEmmanuel Vadot
111*f126890aSEmmanuel Vadot	/* External SCIF clock */
112*f126890aSEmmanuel Vadot	scif_clk: scif {
113*f126890aSEmmanuel Vadot		compatible = "fixed-clock";
114*f126890aSEmmanuel Vadot		#clock-cells = <0>;
115*f126890aSEmmanuel Vadot		/* This value must be overridden by the board. */
116*f126890aSEmmanuel Vadot		clock-frequency = <0>;
117*f126890aSEmmanuel Vadot	};
118*f126890aSEmmanuel Vadot
119*f126890aSEmmanuel Vadot	soc {
120*f126890aSEmmanuel Vadot		compatible = "simple-bus";
121*f126890aSEmmanuel Vadot		interrupt-parent = <&gic>;
122*f126890aSEmmanuel Vadot
123*f126890aSEmmanuel Vadot		#address-cells = <2>;
124*f126890aSEmmanuel Vadot		#size-cells = <2>;
125*f126890aSEmmanuel Vadot		ranges;
126*f126890aSEmmanuel Vadot
127*f126890aSEmmanuel Vadot		rwdt: watchdog@e6020000 {
128*f126890aSEmmanuel Vadot			compatible = "renesas,r8a7794-wdt",
129*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-wdt";
130*f126890aSEmmanuel Vadot			reg = <0 0xe6020000 0 0x0c>;
131*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 140 IRQ_TYPE_LEVEL_HIGH>;
132*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 402>;
133*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
134*f126890aSEmmanuel Vadot			resets = <&cpg 402>;
135*f126890aSEmmanuel Vadot			status = "disabled";
136*f126890aSEmmanuel Vadot		};
137*f126890aSEmmanuel Vadot
138*f126890aSEmmanuel Vadot		gpio0: gpio@e6050000 {
139*f126890aSEmmanuel Vadot			compatible = "renesas,gpio-r8a7794",
140*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-gpio";
141*f126890aSEmmanuel Vadot			reg = <0 0xe6050000 0 0x50>;
142*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
143*f126890aSEmmanuel Vadot			#gpio-cells = <2>;
144*f126890aSEmmanuel Vadot			gpio-controller;
145*f126890aSEmmanuel Vadot			gpio-ranges = <&pfc 0 0 32>;
146*f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
147*f126890aSEmmanuel Vadot			interrupt-controller;
148*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 912>;
149*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
150*f126890aSEmmanuel Vadot			resets = <&cpg 912>;
151*f126890aSEmmanuel Vadot		};
152*f126890aSEmmanuel Vadot
153*f126890aSEmmanuel Vadot		gpio1: gpio@e6051000 {
154*f126890aSEmmanuel Vadot			compatible = "renesas,gpio-r8a7794",
155*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-gpio";
156*f126890aSEmmanuel Vadot			reg = <0 0xe6051000 0 0x50>;
157*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
158*f126890aSEmmanuel Vadot			#gpio-cells = <2>;
159*f126890aSEmmanuel Vadot			gpio-controller;
160*f126890aSEmmanuel Vadot			gpio-ranges = <&pfc 0 32 26>;
161*f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
162*f126890aSEmmanuel Vadot			interrupt-controller;
163*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 911>;
164*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
165*f126890aSEmmanuel Vadot			resets = <&cpg 911>;
166*f126890aSEmmanuel Vadot		};
167*f126890aSEmmanuel Vadot
168*f126890aSEmmanuel Vadot		gpio2: gpio@e6052000 {
169*f126890aSEmmanuel Vadot			compatible = "renesas,gpio-r8a7794",
170*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-gpio";
171*f126890aSEmmanuel Vadot			reg = <0 0xe6052000 0 0x50>;
172*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
173*f126890aSEmmanuel Vadot			#gpio-cells = <2>;
174*f126890aSEmmanuel Vadot			gpio-controller;
175*f126890aSEmmanuel Vadot			gpio-ranges = <&pfc 0 64 32>;
176*f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
177*f126890aSEmmanuel Vadot			interrupt-controller;
178*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 910>;
179*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
180*f126890aSEmmanuel Vadot			resets = <&cpg 910>;
181*f126890aSEmmanuel Vadot		};
182*f126890aSEmmanuel Vadot
183*f126890aSEmmanuel Vadot		gpio3: gpio@e6053000 {
184*f126890aSEmmanuel Vadot			compatible = "renesas,gpio-r8a7794",
185*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-gpio";
186*f126890aSEmmanuel Vadot			reg = <0 0xe6053000 0 0x50>;
187*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
188*f126890aSEmmanuel Vadot			#gpio-cells = <2>;
189*f126890aSEmmanuel Vadot			gpio-controller;
190*f126890aSEmmanuel Vadot			gpio-ranges = <&pfc 0 96 32>;
191*f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
192*f126890aSEmmanuel Vadot			interrupt-controller;
193*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 909>;
194*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
195*f126890aSEmmanuel Vadot			resets = <&cpg 909>;
196*f126890aSEmmanuel Vadot		};
197*f126890aSEmmanuel Vadot
198*f126890aSEmmanuel Vadot		gpio4: gpio@e6054000 {
199*f126890aSEmmanuel Vadot			compatible = "renesas,gpio-r8a7794",
200*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-gpio";
201*f126890aSEmmanuel Vadot			reg = <0 0xe6054000 0 0x50>;
202*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>;
203*f126890aSEmmanuel Vadot			#gpio-cells = <2>;
204*f126890aSEmmanuel Vadot			gpio-controller;
205*f126890aSEmmanuel Vadot			gpio-ranges = <&pfc 0 128 32>;
206*f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
207*f126890aSEmmanuel Vadot			interrupt-controller;
208*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 908>;
209*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
210*f126890aSEmmanuel Vadot			resets = <&cpg 908>;
211*f126890aSEmmanuel Vadot		};
212*f126890aSEmmanuel Vadot
213*f126890aSEmmanuel Vadot		gpio5: gpio@e6055000 {
214*f126890aSEmmanuel Vadot			compatible = "renesas,gpio-r8a7794",
215*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-gpio";
216*f126890aSEmmanuel Vadot			reg = <0 0xe6055000 0 0x50>;
217*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>;
218*f126890aSEmmanuel Vadot			#gpio-cells = <2>;
219*f126890aSEmmanuel Vadot			gpio-controller;
220*f126890aSEmmanuel Vadot			gpio-ranges = <&pfc 0 160 28>;
221*f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
222*f126890aSEmmanuel Vadot			interrupt-controller;
223*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 907>;
224*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
225*f126890aSEmmanuel Vadot			resets = <&cpg 907>;
226*f126890aSEmmanuel Vadot		};
227*f126890aSEmmanuel Vadot
228*f126890aSEmmanuel Vadot		gpio6: gpio@e6055400 {
229*f126890aSEmmanuel Vadot			compatible = "renesas,gpio-r8a7794",
230*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-gpio";
231*f126890aSEmmanuel Vadot			reg = <0 0xe6055400 0 0x50>;
232*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
233*f126890aSEmmanuel Vadot			#gpio-cells = <2>;
234*f126890aSEmmanuel Vadot			gpio-controller;
235*f126890aSEmmanuel Vadot			gpio-ranges = <&pfc 0 192 26>;
236*f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
237*f126890aSEmmanuel Vadot			interrupt-controller;
238*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 905>;
239*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
240*f126890aSEmmanuel Vadot			resets = <&cpg 905>;
241*f126890aSEmmanuel Vadot		};
242*f126890aSEmmanuel Vadot
243*f126890aSEmmanuel Vadot		pfc: pinctrl@e6060000 {
244*f126890aSEmmanuel Vadot			compatible = "renesas,pfc-r8a7794";
245*f126890aSEmmanuel Vadot			reg = <0 0xe6060000 0 0x11c>;
246*f126890aSEmmanuel Vadot		};
247*f126890aSEmmanuel Vadot
248*f126890aSEmmanuel Vadot		cpg: clock-controller@e6150000 {
249*f126890aSEmmanuel Vadot			compatible = "renesas,r8a7794-cpg-mssr";
250*f126890aSEmmanuel Vadot			reg = <0 0xe6150000 0 0x1000>;
251*f126890aSEmmanuel Vadot			clocks = <&extal_clk>, <&usb_extal_clk>;
252*f126890aSEmmanuel Vadot			clock-names = "extal", "usb_extal";
253*f126890aSEmmanuel Vadot			#clock-cells = <2>;
254*f126890aSEmmanuel Vadot			#power-domain-cells = <0>;
255*f126890aSEmmanuel Vadot			#reset-cells = <1>;
256*f126890aSEmmanuel Vadot		};
257*f126890aSEmmanuel Vadot
258*f126890aSEmmanuel Vadot		apmu@e6151000 {
259*f126890aSEmmanuel Vadot			compatible = "renesas,r8a7794-apmu", "renesas,apmu";
260*f126890aSEmmanuel Vadot			reg = <0 0xe6151000 0 0x188>;
261*f126890aSEmmanuel Vadot			cpus = <&cpu0>, <&cpu1>;
262*f126890aSEmmanuel Vadot		};
263*f126890aSEmmanuel Vadot
264*f126890aSEmmanuel Vadot		rst: reset-controller@e6160000 {
265*f126890aSEmmanuel Vadot			compatible = "renesas,r8a7794-rst";
266*f126890aSEmmanuel Vadot			reg = <0 0xe6160000 0 0x0100>;
267*f126890aSEmmanuel Vadot		};
268*f126890aSEmmanuel Vadot
269*f126890aSEmmanuel Vadot		sysc: system-controller@e6180000 {
270*f126890aSEmmanuel Vadot			compatible = "renesas,r8a7794-sysc";
271*f126890aSEmmanuel Vadot			reg = <0 0xe6180000 0 0x0200>;
272*f126890aSEmmanuel Vadot			#power-domain-cells = <1>;
273*f126890aSEmmanuel Vadot		};
274*f126890aSEmmanuel Vadot
275*f126890aSEmmanuel Vadot		irqc0: interrupt-controller@e61c0000 {
276*f126890aSEmmanuel Vadot			compatible = "renesas,irqc-r8a7794", "renesas,irqc";
277*f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
278*f126890aSEmmanuel Vadot			interrupt-controller;
279*f126890aSEmmanuel Vadot			reg = <0 0xe61c0000 0 0x200>;
280*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>,
281*f126890aSEmmanuel Vadot				     <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>,
282*f126890aSEmmanuel Vadot				     <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>,
283*f126890aSEmmanuel Vadot				     <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>,
284*f126890aSEmmanuel Vadot				     <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
285*f126890aSEmmanuel Vadot				     <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
286*f126890aSEmmanuel Vadot				     <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
287*f126890aSEmmanuel Vadot				     <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>,
288*f126890aSEmmanuel Vadot				     <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>,
289*f126890aSEmmanuel Vadot				     <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
290*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 407>;
291*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
292*f126890aSEmmanuel Vadot			resets = <&cpg 407>;
293*f126890aSEmmanuel Vadot		};
294*f126890aSEmmanuel Vadot
295*f126890aSEmmanuel Vadot		ipmmu_sy0: iommu@e6280000 {
296*f126890aSEmmanuel Vadot			compatible = "renesas,ipmmu-r8a7794",
297*f126890aSEmmanuel Vadot				     "renesas,ipmmu-vmsa";
298*f126890aSEmmanuel Vadot			reg = <0 0xe6280000 0 0x1000>;
299*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 223 IRQ_TYPE_LEVEL_HIGH>,
300*f126890aSEmmanuel Vadot				     <GIC_SPI 224 IRQ_TYPE_LEVEL_HIGH>;
301*f126890aSEmmanuel Vadot			#iommu-cells = <1>;
302*f126890aSEmmanuel Vadot			status = "disabled";
303*f126890aSEmmanuel Vadot		};
304*f126890aSEmmanuel Vadot
305*f126890aSEmmanuel Vadot		ipmmu_sy1: iommu@e6290000 {
306*f126890aSEmmanuel Vadot			compatible = "renesas,ipmmu-r8a7794",
307*f126890aSEmmanuel Vadot				     "renesas,ipmmu-vmsa";
308*f126890aSEmmanuel Vadot			reg = <0 0xe6290000 0 0x1000>;
309*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
310*f126890aSEmmanuel Vadot			#iommu-cells = <1>;
311*f126890aSEmmanuel Vadot			status = "disabled";
312*f126890aSEmmanuel Vadot		};
313*f126890aSEmmanuel Vadot
314*f126890aSEmmanuel Vadot		ipmmu_ds: iommu@e6740000 {
315*f126890aSEmmanuel Vadot			compatible = "renesas,ipmmu-r8a7794",
316*f126890aSEmmanuel Vadot				     "renesas,ipmmu-vmsa";
317*f126890aSEmmanuel Vadot			reg = <0 0xe6740000 0 0x1000>;
318*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 198 IRQ_TYPE_LEVEL_HIGH>,
319*f126890aSEmmanuel Vadot				     <GIC_SPI 199 IRQ_TYPE_LEVEL_HIGH>;
320*f126890aSEmmanuel Vadot			#iommu-cells = <1>;
321*f126890aSEmmanuel Vadot			status = "disabled";
322*f126890aSEmmanuel Vadot		};
323*f126890aSEmmanuel Vadot
324*f126890aSEmmanuel Vadot		ipmmu_mp: iommu@ec680000 {
325*f126890aSEmmanuel Vadot			compatible = "renesas,ipmmu-r8a7794",
326*f126890aSEmmanuel Vadot				     "renesas,ipmmu-vmsa";
327*f126890aSEmmanuel Vadot			reg = <0 0xec680000 0 0x1000>;
328*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 226 IRQ_TYPE_LEVEL_HIGH>;
329*f126890aSEmmanuel Vadot			#iommu-cells = <1>;
330*f126890aSEmmanuel Vadot			status = "disabled";
331*f126890aSEmmanuel Vadot		};
332*f126890aSEmmanuel Vadot
333*f126890aSEmmanuel Vadot		ipmmu_mx: iommu@fe951000 {
334*f126890aSEmmanuel Vadot			compatible = "renesas,ipmmu-r8a7794",
335*f126890aSEmmanuel Vadot				     "renesas,ipmmu-vmsa";
336*f126890aSEmmanuel Vadot			reg = <0 0xfe951000 0 0x1000>;
337*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>,
338*f126890aSEmmanuel Vadot				     <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
339*f126890aSEmmanuel Vadot			#iommu-cells = <1>;
340*f126890aSEmmanuel Vadot			status = "disabled";
341*f126890aSEmmanuel Vadot		};
342*f126890aSEmmanuel Vadot
343*f126890aSEmmanuel Vadot		ipmmu_gp: iommu@e62a0000 {
344*f126890aSEmmanuel Vadot			compatible = "renesas,ipmmu-r8a7794",
345*f126890aSEmmanuel Vadot				     "renesas,ipmmu-vmsa";
346*f126890aSEmmanuel Vadot			reg = <0 0xe62a0000 0 0x1000>;
347*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>,
348*f126890aSEmmanuel Vadot				     <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>;
349*f126890aSEmmanuel Vadot			#iommu-cells = <1>;
350*f126890aSEmmanuel Vadot			status = "disabled";
351*f126890aSEmmanuel Vadot		};
352*f126890aSEmmanuel Vadot
353*f126890aSEmmanuel Vadot		icram0:	sram@e63a0000 {
354*f126890aSEmmanuel Vadot			compatible = "mmio-sram";
355*f126890aSEmmanuel Vadot			reg = <0 0xe63a0000 0 0x12000>;
356*f126890aSEmmanuel Vadot			#address-cells = <1>;
357*f126890aSEmmanuel Vadot			#size-cells = <1>;
358*f126890aSEmmanuel Vadot			ranges = <0 0 0xe63a0000 0x12000>;
359*f126890aSEmmanuel Vadot		};
360*f126890aSEmmanuel Vadot
361*f126890aSEmmanuel Vadot		icram1:	sram@e63c0000 {
362*f126890aSEmmanuel Vadot			compatible = "mmio-sram";
363*f126890aSEmmanuel Vadot			reg = <0 0xe63c0000 0 0x1000>;
364*f126890aSEmmanuel Vadot			#address-cells = <1>;
365*f126890aSEmmanuel Vadot			#size-cells = <1>;
366*f126890aSEmmanuel Vadot			ranges = <0 0 0xe63c0000 0x1000>;
367*f126890aSEmmanuel Vadot
368*f126890aSEmmanuel Vadot			smp-sram@0 {
369*f126890aSEmmanuel Vadot				compatible = "renesas,smp-sram";
370*f126890aSEmmanuel Vadot				reg = <0 0x100>;
371*f126890aSEmmanuel Vadot			};
372*f126890aSEmmanuel Vadot		};
373*f126890aSEmmanuel Vadot
374*f126890aSEmmanuel Vadot		/* The memory map in the User's Manual maps the cores to
375*f126890aSEmmanuel Vadot		 * bus numbers
376*f126890aSEmmanuel Vadot		 */
377*f126890aSEmmanuel Vadot		i2c0: i2c@e6508000 {
378*f126890aSEmmanuel Vadot			compatible = "renesas,i2c-r8a7794",
379*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-i2c";
380*f126890aSEmmanuel Vadot			reg = <0 0xe6508000 0 0x40>;
381*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 287 IRQ_TYPE_LEVEL_HIGH>;
382*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 931>;
383*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
384*f126890aSEmmanuel Vadot			resets = <&cpg 931>;
385*f126890aSEmmanuel Vadot			#address-cells = <1>;
386*f126890aSEmmanuel Vadot			#size-cells = <0>;
387*f126890aSEmmanuel Vadot			i2c-scl-internal-delay-ns = <6>;
388*f126890aSEmmanuel Vadot			status = "disabled";
389*f126890aSEmmanuel Vadot		};
390*f126890aSEmmanuel Vadot
391*f126890aSEmmanuel Vadot		i2c1: i2c@e6518000 {
392*f126890aSEmmanuel Vadot			compatible = "renesas,i2c-r8a7794",
393*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-i2c";
394*f126890aSEmmanuel Vadot			reg = <0 0xe6518000 0 0x40>;
395*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 288 IRQ_TYPE_LEVEL_HIGH>;
396*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 930>;
397*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
398*f126890aSEmmanuel Vadot			resets = <&cpg 930>;
399*f126890aSEmmanuel Vadot			#address-cells = <1>;
400*f126890aSEmmanuel Vadot			#size-cells = <0>;
401*f126890aSEmmanuel Vadot			i2c-scl-internal-delay-ns = <6>;
402*f126890aSEmmanuel Vadot			status = "disabled";
403*f126890aSEmmanuel Vadot		};
404*f126890aSEmmanuel Vadot
405*f126890aSEmmanuel Vadot		i2c2: i2c@e6530000 {
406*f126890aSEmmanuel Vadot			compatible = "renesas,i2c-r8a7794",
407*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-i2c";
408*f126890aSEmmanuel Vadot			reg = <0 0xe6530000 0 0x40>;
409*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 286 IRQ_TYPE_LEVEL_HIGH>;
410*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 929>;
411*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
412*f126890aSEmmanuel Vadot			resets = <&cpg 929>;
413*f126890aSEmmanuel Vadot			#address-cells = <1>;
414*f126890aSEmmanuel Vadot			#size-cells = <0>;
415*f126890aSEmmanuel Vadot			i2c-scl-internal-delay-ns = <6>;
416*f126890aSEmmanuel Vadot			status = "disabled";
417*f126890aSEmmanuel Vadot		};
418*f126890aSEmmanuel Vadot
419*f126890aSEmmanuel Vadot		i2c3: i2c@e6540000 {
420*f126890aSEmmanuel Vadot			compatible = "renesas,i2c-r8a7794",
421*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-i2c";
422*f126890aSEmmanuel Vadot			reg = <0 0xe6540000 0 0x40>;
423*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 290 IRQ_TYPE_LEVEL_HIGH>;
424*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 928>;
425*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
426*f126890aSEmmanuel Vadot			resets = <&cpg 928>;
427*f126890aSEmmanuel Vadot			#address-cells = <1>;
428*f126890aSEmmanuel Vadot			#size-cells = <0>;
429*f126890aSEmmanuel Vadot			i2c-scl-internal-delay-ns = <6>;
430*f126890aSEmmanuel Vadot			status = "disabled";
431*f126890aSEmmanuel Vadot		};
432*f126890aSEmmanuel Vadot
433*f126890aSEmmanuel Vadot		i2c4: i2c@e6520000 {
434*f126890aSEmmanuel Vadot			compatible = "renesas,i2c-r8a7794",
435*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-i2c";
436*f126890aSEmmanuel Vadot			reg = <0 0xe6520000 0 0x40>;
437*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
438*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 927>;
439*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
440*f126890aSEmmanuel Vadot			resets = <&cpg 927>;
441*f126890aSEmmanuel Vadot			#address-cells = <1>;
442*f126890aSEmmanuel Vadot			#size-cells = <0>;
443*f126890aSEmmanuel Vadot			i2c-scl-internal-delay-ns = <6>;
444*f126890aSEmmanuel Vadot			status = "disabled";
445*f126890aSEmmanuel Vadot		};
446*f126890aSEmmanuel Vadot
447*f126890aSEmmanuel Vadot		i2c5: i2c@e6528000 {
448*f126890aSEmmanuel Vadot			compatible = "renesas,i2c-r8a7794",
449*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-i2c";
450*f126890aSEmmanuel Vadot			reg = <0 0xe6528000 0 0x40>;
451*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
452*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 925>;
453*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
454*f126890aSEmmanuel Vadot			resets = <&cpg 925>;
455*f126890aSEmmanuel Vadot			#address-cells = <1>;
456*f126890aSEmmanuel Vadot			#size-cells = <0>;
457*f126890aSEmmanuel Vadot			i2c-scl-internal-delay-ns = <6>;
458*f126890aSEmmanuel Vadot			status = "disabled";
459*f126890aSEmmanuel Vadot		};
460*f126890aSEmmanuel Vadot
461*f126890aSEmmanuel Vadot		i2c6: i2c@e6500000 {
462*f126890aSEmmanuel Vadot			compatible = "renesas,iic-r8a7794",
463*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-iic",
464*f126890aSEmmanuel Vadot				     "renesas,rmobile-iic";
465*f126890aSEmmanuel Vadot			reg = <0 0xe6500000 0 0x425>;
466*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>;
467*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 318>;
468*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x61>, <&dmac0 0x62>,
469*f126890aSEmmanuel Vadot			       <&dmac1 0x61>, <&dmac1 0x62>;
470*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
471*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
472*f126890aSEmmanuel Vadot			resets = <&cpg 318>;
473*f126890aSEmmanuel Vadot			#address-cells = <1>;
474*f126890aSEmmanuel Vadot			#size-cells = <0>;
475*f126890aSEmmanuel Vadot			status = "disabled";
476*f126890aSEmmanuel Vadot		};
477*f126890aSEmmanuel Vadot
478*f126890aSEmmanuel Vadot		i2c7: i2c@e6510000 {
479*f126890aSEmmanuel Vadot			compatible = "renesas,iic-r8a7794",
480*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-iic",
481*f126890aSEmmanuel Vadot				     "renesas,rmobile-iic";
482*f126890aSEmmanuel Vadot			reg = <0 0xe6510000 0 0x425>;
483*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 175 IRQ_TYPE_LEVEL_HIGH>;
484*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 323>;
485*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x65>, <&dmac0 0x66>,
486*f126890aSEmmanuel Vadot			       <&dmac1 0x65>, <&dmac1 0x66>;
487*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
488*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
489*f126890aSEmmanuel Vadot			resets = <&cpg 323>;
490*f126890aSEmmanuel Vadot			#address-cells = <1>;
491*f126890aSEmmanuel Vadot			#size-cells = <0>;
492*f126890aSEmmanuel Vadot			status = "disabled";
493*f126890aSEmmanuel Vadot		};
494*f126890aSEmmanuel Vadot
495*f126890aSEmmanuel Vadot		hsusb: usb@e6590000 {
496*f126890aSEmmanuel Vadot			compatible = "renesas,usbhs-r8a7794",
497*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-usbhs";
498*f126890aSEmmanuel Vadot			reg = <0 0xe6590000 0 0x100>;
499*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>;
500*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 704>;
501*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
502*f126890aSEmmanuel Vadot			resets = <&cpg 704>;
503*f126890aSEmmanuel Vadot			renesas,buswait = <4>;
504*f126890aSEmmanuel Vadot			phys = <&usb0 1>;
505*f126890aSEmmanuel Vadot			phy-names = "usb";
506*f126890aSEmmanuel Vadot			status = "disabled";
507*f126890aSEmmanuel Vadot		};
508*f126890aSEmmanuel Vadot
509*f126890aSEmmanuel Vadot		usbphy: usb-phy-controller@e6590100 {
510*f126890aSEmmanuel Vadot			compatible = "renesas,usb-phy-r8a7794",
511*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-usb-phy";
512*f126890aSEmmanuel Vadot			reg = <0 0xe6590100 0 0x100>;
513*f126890aSEmmanuel Vadot			#address-cells = <1>;
514*f126890aSEmmanuel Vadot			#size-cells = <0>;
515*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 704>;
516*f126890aSEmmanuel Vadot			clock-names = "usbhs";
517*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
518*f126890aSEmmanuel Vadot			resets = <&cpg 704>;
519*f126890aSEmmanuel Vadot			status = "disabled";
520*f126890aSEmmanuel Vadot
521*f126890aSEmmanuel Vadot			usb0: usb-phy@0 {
522*f126890aSEmmanuel Vadot				reg = <0>;
523*f126890aSEmmanuel Vadot				#phy-cells = <1>;
524*f126890aSEmmanuel Vadot			};
525*f126890aSEmmanuel Vadot			usb2: usb-phy@2 {
526*f126890aSEmmanuel Vadot				reg = <2>;
527*f126890aSEmmanuel Vadot				#phy-cells = <1>;
528*f126890aSEmmanuel Vadot			};
529*f126890aSEmmanuel Vadot		};
530*f126890aSEmmanuel Vadot
531*f126890aSEmmanuel Vadot		dmac0: dma-controller@e6700000 {
532*f126890aSEmmanuel Vadot			compatible = "renesas,dmac-r8a7794",
533*f126890aSEmmanuel Vadot				     "renesas,rcar-dmac";
534*f126890aSEmmanuel Vadot			reg = <0 0xe6700000 0 0x20000>;
535*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 197 IRQ_TYPE_LEVEL_HIGH>,
536*f126890aSEmmanuel Vadot				     <GIC_SPI 200 IRQ_TYPE_LEVEL_HIGH>,
537*f126890aSEmmanuel Vadot				     <GIC_SPI 201 IRQ_TYPE_LEVEL_HIGH>,
538*f126890aSEmmanuel Vadot				     <GIC_SPI 202 IRQ_TYPE_LEVEL_HIGH>,
539*f126890aSEmmanuel Vadot				     <GIC_SPI 203 IRQ_TYPE_LEVEL_HIGH>,
540*f126890aSEmmanuel Vadot				     <GIC_SPI 204 IRQ_TYPE_LEVEL_HIGH>,
541*f126890aSEmmanuel Vadot				     <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>,
542*f126890aSEmmanuel Vadot				     <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>,
543*f126890aSEmmanuel Vadot				     <GIC_SPI 207 IRQ_TYPE_LEVEL_HIGH>,
544*f126890aSEmmanuel Vadot				     <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>,
545*f126890aSEmmanuel Vadot				     <GIC_SPI 209 IRQ_TYPE_LEVEL_HIGH>,
546*f126890aSEmmanuel Vadot				     <GIC_SPI 210 IRQ_TYPE_LEVEL_HIGH>,
547*f126890aSEmmanuel Vadot				     <GIC_SPI 211 IRQ_TYPE_LEVEL_HIGH>,
548*f126890aSEmmanuel Vadot				     <GIC_SPI 212 IRQ_TYPE_LEVEL_HIGH>,
549*f126890aSEmmanuel Vadot				     <GIC_SPI 213 IRQ_TYPE_LEVEL_HIGH>,
550*f126890aSEmmanuel Vadot				     <GIC_SPI 214 IRQ_TYPE_LEVEL_HIGH>;
551*f126890aSEmmanuel Vadot			interrupt-names = "error",
552*f126890aSEmmanuel Vadot					  "ch0", "ch1", "ch2", "ch3",
553*f126890aSEmmanuel Vadot					  "ch4", "ch5", "ch6", "ch7",
554*f126890aSEmmanuel Vadot					  "ch8", "ch9", "ch10", "ch11",
555*f126890aSEmmanuel Vadot					  "ch12", "ch13", "ch14";
556*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 219>;
557*f126890aSEmmanuel Vadot			clock-names = "fck";
558*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
559*f126890aSEmmanuel Vadot			resets = <&cpg 219>;
560*f126890aSEmmanuel Vadot			#dma-cells = <1>;
561*f126890aSEmmanuel Vadot			dma-channels = <15>;
562*f126890aSEmmanuel Vadot		};
563*f126890aSEmmanuel Vadot
564*f126890aSEmmanuel Vadot		dmac1: dma-controller@e6720000 {
565*f126890aSEmmanuel Vadot			compatible = "renesas,dmac-r8a7794",
566*f126890aSEmmanuel Vadot				     "renesas,rcar-dmac";
567*f126890aSEmmanuel Vadot			reg = <0 0xe6720000 0 0x20000>;
568*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>,
569*f126890aSEmmanuel Vadot				     <GIC_SPI 216 IRQ_TYPE_LEVEL_HIGH>,
570*f126890aSEmmanuel Vadot				     <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
571*f126890aSEmmanuel Vadot				     <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>,
572*f126890aSEmmanuel Vadot				     <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>,
573*f126890aSEmmanuel Vadot				     <GIC_SPI 308 IRQ_TYPE_LEVEL_HIGH>,
574*f126890aSEmmanuel Vadot				     <GIC_SPI 309 IRQ_TYPE_LEVEL_HIGH>,
575*f126890aSEmmanuel Vadot				     <GIC_SPI 310 IRQ_TYPE_LEVEL_HIGH>,
576*f126890aSEmmanuel Vadot				     <GIC_SPI 311 IRQ_TYPE_LEVEL_HIGH>,
577*f126890aSEmmanuel Vadot				     <GIC_SPI 312 IRQ_TYPE_LEVEL_HIGH>,
578*f126890aSEmmanuel Vadot				     <GIC_SPI 313 IRQ_TYPE_LEVEL_HIGH>,
579*f126890aSEmmanuel Vadot				     <GIC_SPI 314 IRQ_TYPE_LEVEL_HIGH>,
580*f126890aSEmmanuel Vadot				     <GIC_SPI 315 IRQ_TYPE_LEVEL_HIGH>,
581*f126890aSEmmanuel Vadot				     <GIC_SPI 316 IRQ_TYPE_LEVEL_HIGH>,
582*f126890aSEmmanuel Vadot				     <GIC_SPI 317 IRQ_TYPE_LEVEL_HIGH>,
583*f126890aSEmmanuel Vadot				     <GIC_SPI 318 IRQ_TYPE_LEVEL_HIGH>;
584*f126890aSEmmanuel Vadot			interrupt-names = "error",
585*f126890aSEmmanuel Vadot					  "ch0", "ch1", "ch2", "ch3",
586*f126890aSEmmanuel Vadot					  "ch4", "ch5", "ch6", "ch7",
587*f126890aSEmmanuel Vadot					  "ch8", "ch9", "ch10", "ch11",
588*f126890aSEmmanuel Vadot					  "ch12", "ch13", "ch14";
589*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 218>;
590*f126890aSEmmanuel Vadot			clock-names = "fck";
591*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
592*f126890aSEmmanuel Vadot			resets = <&cpg 218>;
593*f126890aSEmmanuel Vadot			#dma-cells = <1>;
594*f126890aSEmmanuel Vadot			dma-channels = <15>;
595*f126890aSEmmanuel Vadot		};
596*f126890aSEmmanuel Vadot
597*f126890aSEmmanuel Vadot		avb: ethernet@e6800000 {
598*f126890aSEmmanuel Vadot			compatible = "renesas,etheravb-r8a7794",
599*f126890aSEmmanuel Vadot				     "renesas,etheravb-rcar-gen2";
600*f126890aSEmmanuel Vadot			reg = <0 0xe6800000 0 0x800>, <0 0xee0e8000 0 0x4000>;
601*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 163 IRQ_TYPE_LEVEL_HIGH>;
602*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 812>;
603*f126890aSEmmanuel Vadot			clock-names = "fck";
604*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
605*f126890aSEmmanuel Vadot			resets = <&cpg 812>;
606*f126890aSEmmanuel Vadot			#address-cells = <1>;
607*f126890aSEmmanuel Vadot			#size-cells = <0>;
608*f126890aSEmmanuel Vadot			status = "disabled";
609*f126890aSEmmanuel Vadot		};
610*f126890aSEmmanuel Vadot
611*f126890aSEmmanuel Vadot		qspi: spi@e6b10000 {
612*f126890aSEmmanuel Vadot			compatible = "renesas,qspi-r8a7794", "renesas,qspi";
613*f126890aSEmmanuel Vadot			reg = <0 0xe6b10000 0 0x2c>;
614*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
615*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 917>;
616*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x17>, <&dmac0 0x18>,
617*f126890aSEmmanuel Vadot			       <&dmac1 0x17>, <&dmac1 0x18>;
618*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
619*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
620*f126890aSEmmanuel Vadot			resets = <&cpg 917>;
621*f126890aSEmmanuel Vadot			num-cs = <1>;
622*f126890aSEmmanuel Vadot			#address-cells = <1>;
623*f126890aSEmmanuel Vadot			#size-cells = <0>;
624*f126890aSEmmanuel Vadot			status = "disabled";
625*f126890aSEmmanuel Vadot		};
626*f126890aSEmmanuel Vadot
627*f126890aSEmmanuel Vadot		scifa0: serial@e6c40000 {
628*f126890aSEmmanuel Vadot			compatible = "renesas,scifa-r8a7794",
629*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scifa", "renesas,scifa";
630*f126890aSEmmanuel Vadot			reg = <0 0xe6c40000 0 64>;
631*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 144 IRQ_TYPE_LEVEL_HIGH>;
632*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 204>;
633*f126890aSEmmanuel Vadot			clock-names = "fck";
634*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x21>, <&dmac0 0x22>,
635*f126890aSEmmanuel Vadot			       <&dmac1 0x21>, <&dmac1 0x22>;
636*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
637*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
638*f126890aSEmmanuel Vadot			resets = <&cpg 204>;
639*f126890aSEmmanuel Vadot			status = "disabled";
640*f126890aSEmmanuel Vadot		};
641*f126890aSEmmanuel Vadot
642*f126890aSEmmanuel Vadot		scifa1: serial@e6c50000 {
643*f126890aSEmmanuel Vadot			compatible = "renesas,scifa-r8a7794",
644*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scifa", "renesas,scifa";
645*f126890aSEmmanuel Vadot			reg = <0 0xe6c50000 0 64>;
646*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
647*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 203>;
648*f126890aSEmmanuel Vadot			clock-names = "fck";
649*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x25>, <&dmac0 0x26>,
650*f126890aSEmmanuel Vadot			       <&dmac1 0x25>, <&dmac1 0x26>;
651*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
652*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
653*f126890aSEmmanuel Vadot			resets = <&cpg 203>;
654*f126890aSEmmanuel Vadot			status = "disabled";
655*f126890aSEmmanuel Vadot		};
656*f126890aSEmmanuel Vadot
657*f126890aSEmmanuel Vadot		scifa2: serial@e6c60000 {
658*f126890aSEmmanuel Vadot			compatible = "renesas,scifa-r8a7794",
659*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scifa", "renesas,scifa";
660*f126890aSEmmanuel Vadot			reg = <0 0xe6c60000 0 64>;
661*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>;
662*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 202>;
663*f126890aSEmmanuel Vadot			clock-names = "fck";
664*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x27>, <&dmac0 0x28>,
665*f126890aSEmmanuel Vadot			       <&dmac1 0x27>, <&dmac1 0x28>;
666*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
667*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
668*f126890aSEmmanuel Vadot			resets = <&cpg 202>;
669*f126890aSEmmanuel Vadot			status = "disabled";
670*f126890aSEmmanuel Vadot		};
671*f126890aSEmmanuel Vadot
672*f126890aSEmmanuel Vadot		scifa3: serial@e6c70000 {
673*f126890aSEmmanuel Vadot			compatible = "renesas,scifa-r8a7794",
674*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scifa", "renesas,scifa";
675*f126890aSEmmanuel Vadot			reg = <0 0xe6c70000 0 64>;
676*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
677*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 1106>;
678*f126890aSEmmanuel Vadot			clock-names = "fck";
679*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x1b>, <&dmac0 0x1c>,
680*f126890aSEmmanuel Vadot			       <&dmac1 0x1b>, <&dmac1 0x1c>;
681*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
682*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
683*f126890aSEmmanuel Vadot			resets = <&cpg 1106>;
684*f126890aSEmmanuel Vadot			status = "disabled";
685*f126890aSEmmanuel Vadot		};
686*f126890aSEmmanuel Vadot
687*f126890aSEmmanuel Vadot		scifa4: serial@e6c78000 {
688*f126890aSEmmanuel Vadot			compatible = "renesas,scifa-r8a7794",
689*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scifa", "renesas,scifa";
690*f126890aSEmmanuel Vadot			reg = <0 0xe6c78000 0 64>;
691*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
692*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 1107>;
693*f126890aSEmmanuel Vadot			clock-names = "fck";
694*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x1f>, <&dmac0 0x20>,
695*f126890aSEmmanuel Vadot			       <&dmac1 0x1f>, <&dmac1 0x20>;
696*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
697*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
698*f126890aSEmmanuel Vadot			resets = <&cpg 1107>;
699*f126890aSEmmanuel Vadot			status = "disabled";
700*f126890aSEmmanuel Vadot		};
701*f126890aSEmmanuel Vadot
702*f126890aSEmmanuel Vadot		scifa5: serial@e6c80000 {
703*f126890aSEmmanuel Vadot			compatible = "renesas,scifa-r8a7794",
704*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scifa", "renesas,scifa";
705*f126890aSEmmanuel Vadot			reg = <0 0xe6c80000 0 64>;
706*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
707*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 1108>;
708*f126890aSEmmanuel Vadot			clock-names = "fck";
709*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x23>, <&dmac0 0x24>,
710*f126890aSEmmanuel Vadot			       <&dmac1 0x23>, <&dmac1 0x24>;
711*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
712*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
713*f126890aSEmmanuel Vadot			resets = <&cpg 1108>;
714*f126890aSEmmanuel Vadot			status = "disabled";
715*f126890aSEmmanuel Vadot		};
716*f126890aSEmmanuel Vadot
717*f126890aSEmmanuel Vadot		scifb0: serial@e6c20000 {
718*f126890aSEmmanuel Vadot			compatible = "renesas,scifb-r8a7794",
719*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scifb", "renesas,scifb";
720*f126890aSEmmanuel Vadot			reg = <0 0xe6c20000 0 0x100>;
721*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
722*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 206>;
723*f126890aSEmmanuel Vadot			clock-names = "fck";
724*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x3d>, <&dmac0 0x3e>,
725*f126890aSEmmanuel Vadot			       <&dmac1 0x3d>, <&dmac1 0x3e>;
726*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
727*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
728*f126890aSEmmanuel Vadot			resets = <&cpg 206>;
729*f126890aSEmmanuel Vadot			status = "disabled";
730*f126890aSEmmanuel Vadot		};
731*f126890aSEmmanuel Vadot
732*f126890aSEmmanuel Vadot		scifb1: serial@e6c30000 {
733*f126890aSEmmanuel Vadot			compatible = "renesas,scifb-r8a7794",
734*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scifb", "renesas,scifb";
735*f126890aSEmmanuel Vadot			reg = <0 0xe6c30000 0 0x100>;
736*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>;
737*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 207>;
738*f126890aSEmmanuel Vadot			clock-names = "fck";
739*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x19>, <&dmac0 0x1a>,
740*f126890aSEmmanuel Vadot			       <&dmac1 0x19>, <&dmac1 0x1a>;
741*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
742*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
743*f126890aSEmmanuel Vadot			resets = <&cpg 207>;
744*f126890aSEmmanuel Vadot			status = "disabled";
745*f126890aSEmmanuel Vadot		};
746*f126890aSEmmanuel Vadot
747*f126890aSEmmanuel Vadot		scifb2: serial@e6ce0000 {
748*f126890aSEmmanuel Vadot			compatible = "renesas,scifb-r8a7794",
749*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scifb", "renesas,scifb";
750*f126890aSEmmanuel Vadot			reg = <0 0xe6ce0000 0 0x100>;
751*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>;
752*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 216>;
753*f126890aSEmmanuel Vadot			clock-names = "fck";
754*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x1d>, <&dmac0 0x1e>,
755*f126890aSEmmanuel Vadot			       <&dmac1 0x1d>, <&dmac1 0x1e>;
756*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
757*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
758*f126890aSEmmanuel Vadot			resets = <&cpg 216>;
759*f126890aSEmmanuel Vadot			status = "disabled";
760*f126890aSEmmanuel Vadot		};
761*f126890aSEmmanuel Vadot
762*f126890aSEmmanuel Vadot		scif0: serial@e6e60000 {
763*f126890aSEmmanuel Vadot			compatible = "renesas,scif-r8a7794",
764*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scif",
765*f126890aSEmmanuel Vadot				     "renesas,scif";
766*f126890aSEmmanuel Vadot			reg = <0 0xe6e60000 0 64>;
767*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
768*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 721>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
769*f126890aSEmmanuel Vadot				 <&scif_clk>;
770*f126890aSEmmanuel Vadot			clock-names = "fck", "brg_int", "scif_clk";
771*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x29>, <&dmac0 0x2a>,
772*f126890aSEmmanuel Vadot			       <&dmac1 0x29>, <&dmac1 0x2a>;
773*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
774*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
775*f126890aSEmmanuel Vadot			resets = <&cpg 721>;
776*f126890aSEmmanuel Vadot			status = "disabled";
777*f126890aSEmmanuel Vadot		};
778*f126890aSEmmanuel Vadot
779*f126890aSEmmanuel Vadot		scif1: serial@e6e68000 {
780*f126890aSEmmanuel Vadot			compatible = "renesas,scif-r8a7794",
781*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scif",
782*f126890aSEmmanuel Vadot				     "renesas,scif";
783*f126890aSEmmanuel Vadot			reg = <0 0xe6e68000 0 64>;
784*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>;
785*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 720>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
786*f126890aSEmmanuel Vadot				 <&scif_clk>;
787*f126890aSEmmanuel Vadot			clock-names = "fck", "brg_int", "scif_clk";
788*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x2d>, <&dmac0 0x2e>,
789*f126890aSEmmanuel Vadot			       <&dmac1 0x2d>, <&dmac1 0x2e>;
790*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
791*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
792*f126890aSEmmanuel Vadot			resets = <&cpg 720>;
793*f126890aSEmmanuel Vadot			status = "disabled";
794*f126890aSEmmanuel Vadot		};
795*f126890aSEmmanuel Vadot
796*f126890aSEmmanuel Vadot		scif2: serial@e6e58000 {
797*f126890aSEmmanuel Vadot			compatible = "renesas,scif-r8a7794",
798*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scif", "renesas,scif";
799*f126890aSEmmanuel Vadot			reg = <0 0xe6e58000 0 64>;
800*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
801*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 719>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
802*f126890aSEmmanuel Vadot				 <&scif_clk>;
803*f126890aSEmmanuel Vadot			clock-names = "fck", "brg_int", "scif_clk";
804*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x2b>, <&dmac0 0x2c>,
805*f126890aSEmmanuel Vadot			       <&dmac1 0x2b>, <&dmac1 0x2c>;
806*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
807*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
808*f126890aSEmmanuel Vadot			resets = <&cpg 719>;
809*f126890aSEmmanuel Vadot			status = "disabled";
810*f126890aSEmmanuel Vadot		};
811*f126890aSEmmanuel Vadot
812*f126890aSEmmanuel Vadot		scif3: serial@e6ea8000 {
813*f126890aSEmmanuel Vadot			compatible = "renesas,scif-r8a7794",
814*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scif", "renesas,scif";
815*f126890aSEmmanuel Vadot			reg = <0 0xe6ea8000 0 64>;
816*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
817*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 718>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
818*f126890aSEmmanuel Vadot				 <&scif_clk>;
819*f126890aSEmmanuel Vadot			clock-names = "fck", "brg_int", "scif_clk";
820*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x2f>, <&dmac0 0x30>,
821*f126890aSEmmanuel Vadot			       <&dmac1 0x2f>, <&dmac1 0x30>;
822*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
823*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
824*f126890aSEmmanuel Vadot			resets = <&cpg 718>;
825*f126890aSEmmanuel Vadot			status = "disabled";
826*f126890aSEmmanuel Vadot		};
827*f126890aSEmmanuel Vadot
828*f126890aSEmmanuel Vadot		scif4: serial@e6ee0000 {
829*f126890aSEmmanuel Vadot			compatible = "renesas,scif-r8a7794",
830*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scif", "renesas,scif";
831*f126890aSEmmanuel Vadot			reg = <0 0xe6ee0000 0 64>;
832*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
833*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 715>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
834*f126890aSEmmanuel Vadot				 <&scif_clk>;
835*f126890aSEmmanuel Vadot			clock-names = "fck", "brg_int", "scif_clk";
836*f126890aSEmmanuel Vadot			dmas = <&dmac0 0xfb>, <&dmac0 0xfc>,
837*f126890aSEmmanuel Vadot			       <&dmac1 0xfb>, <&dmac1 0xfc>;
838*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
839*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
840*f126890aSEmmanuel Vadot			resets = <&cpg 715>;
841*f126890aSEmmanuel Vadot			status = "disabled";
842*f126890aSEmmanuel Vadot		};
843*f126890aSEmmanuel Vadot
844*f126890aSEmmanuel Vadot		scif5: serial@e6ee8000 {
845*f126890aSEmmanuel Vadot			compatible = "renesas,scif-r8a7794",
846*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-scif", "renesas,scif";
847*f126890aSEmmanuel Vadot			reg = <0 0xe6ee8000 0 64>;
848*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
849*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 714>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
850*f126890aSEmmanuel Vadot				 <&scif_clk>;
851*f126890aSEmmanuel Vadot			clock-names = "fck", "brg_int", "scif_clk";
852*f126890aSEmmanuel Vadot			dmas = <&dmac0 0xfd>, <&dmac0 0xfe>,
853*f126890aSEmmanuel Vadot			       <&dmac1 0xfd>, <&dmac1 0xfe>;
854*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
855*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
856*f126890aSEmmanuel Vadot			resets = <&cpg 714>;
857*f126890aSEmmanuel Vadot			status = "disabled";
858*f126890aSEmmanuel Vadot		};
859*f126890aSEmmanuel Vadot
860*f126890aSEmmanuel Vadot		hscif0: serial@e62c0000 {
861*f126890aSEmmanuel Vadot			compatible = "renesas,hscif-r8a7794",
862*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-hscif", "renesas,hscif";
863*f126890aSEmmanuel Vadot			reg = <0 0xe62c0000 0 96>;
864*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
865*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 717>,
866*f126890aSEmmanuel Vadot				 <&cpg CPG_CORE R8A7794_CLK_ZS>, <&scif_clk>;
867*f126890aSEmmanuel Vadot			clock-names = "fck", "brg_int", "scif_clk";
868*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x39>, <&dmac0 0x3a>,
869*f126890aSEmmanuel Vadot			       <&dmac1 0x39>, <&dmac1 0x3a>;
870*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
871*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
872*f126890aSEmmanuel Vadot			resets = <&cpg 717>;
873*f126890aSEmmanuel Vadot			status = "disabled";
874*f126890aSEmmanuel Vadot		};
875*f126890aSEmmanuel Vadot
876*f126890aSEmmanuel Vadot		hscif1: serial@e62c8000 {
877*f126890aSEmmanuel Vadot			compatible = "renesas,hscif-r8a7794",
878*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-hscif", "renesas,hscif";
879*f126890aSEmmanuel Vadot			reg = <0 0xe62c8000 0 96>;
880*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>;
881*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 716>,
882*f126890aSEmmanuel Vadot				 <&cpg CPG_CORE R8A7794_CLK_ZS>, <&scif_clk>;
883*f126890aSEmmanuel Vadot			clock-names = "fck", "brg_int", "scif_clk";
884*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x4d>, <&dmac0 0x4e>,
885*f126890aSEmmanuel Vadot			       <&dmac1 0x4d>, <&dmac1 0x4e>;
886*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
887*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
888*f126890aSEmmanuel Vadot			resets = <&cpg 716>;
889*f126890aSEmmanuel Vadot			status = "disabled";
890*f126890aSEmmanuel Vadot		};
891*f126890aSEmmanuel Vadot
892*f126890aSEmmanuel Vadot		hscif2: serial@e62d0000 {
893*f126890aSEmmanuel Vadot			compatible = "renesas,hscif-r8a7794",
894*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-hscif", "renesas,hscif";
895*f126890aSEmmanuel Vadot			reg = <0 0xe62d0000 0 96>;
896*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
897*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 713>, <&cpg CPG_CORE R8A7794_CLK_ZS>,
898*f126890aSEmmanuel Vadot				 <&scif_clk>;
899*f126890aSEmmanuel Vadot			clock-names = "fck", "brg_int", "scif_clk";
900*f126890aSEmmanuel Vadot			dmas = <&dmac0 0x3b>, <&dmac0 0x3c>,
901*f126890aSEmmanuel Vadot			       <&dmac1 0x3b>, <&dmac1 0x3c>;
902*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
903*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
904*f126890aSEmmanuel Vadot			resets = <&cpg 713>;
905*f126890aSEmmanuel Vadot			status = "disabled";
906*f126890aSEmmanuel Vadot		};
907*f126890aSEmmanuel Vadot
908*f126890aSEmmanuel Vadot		can0: can@e6e80000 {
909*f126890aSEmmanuel Vadot			compatible = "renesas,can-r8a7794",
910*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-can";
911*f126890aSEmmanuel Vadot			reg = <0 0xe6e80000 0 0x1000>;
912*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 186 IRQ_TYPE_LEVEL_HIGH>;
913*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 916>, <&cpg CPG_CORE R8A7794_CLK_RCAN>,
914*f126890aSEmmanuel Vadot				 <&can_clk>;
915*f126890aSEmmanuel Vadot			clock-names = "clkp1", "clkp2", "can_clk";
916*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
917*f126890aSEmmanuel Vadot			resets = <&cpg 916>;
918*f126890aSEmmanuel Vadot			status = "disabled";
919*f126890aSEmmanuel Vadot		};
920*f126890aSEmmanuel Vadot
921*f126890aSEmmanuel Vadot		can1: can@e6e88000 {
922*f126890aSEmmanuel Vadot			compatible = "renesas,can-r8a7794",
923*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-can";
924*f126890aSEmmanuel Vadot			reg = <0 0xe6e88000 0 0x1000>;
925*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 187 IRQ_TYPE_LEVEL_HIGH>;
926*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 915>, <&cpg CPG_CORE R8A7794_CLK_RCAN>,
927*f126890aSEmmanuel Vadot				 <&can_clk>;
928*f126890aSEmmanuel Vadot			clock-names = "clkp1", "clkp2", "can_clk";
929*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
930*f126890aSEmmanuel Vadot			resets = <&cpg 915>;
931*f126890aSEmmanuel Vadot			status = "disabled";
932*f126890aSEmmanuel Vadot		};
933*f126890aSEmmanuel Vadot
934*f126890aSEmmanuel Vadot		vin0: video@e6ef0000 {
935*f126890aSEmmanuel Vadot			compatible = "renesas,vin-r8a7794",
936*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-vin";
937*f126890aSEmmanuel Vadot			reg = <0 0xe6ef0000 0 0x1000>;
938*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>;
939*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 811>;
940*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
941*f126890aSEmmanuel Vadot			resets = <&cpg 811>;
942*f126890aSEmmanuel Vadot			status = "disabled";
943*f126890aSEmmanuel Vadot		};
944*f126890aSEmmanuel Vadot
945*f126890aSEmmanuel Vadot		vin1: video@e6ef1000 {
946*f126890aSEmmanuel Vadot			compatible = "renesas,vin-r8a7794",
947*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-vin";
948*f126890aSEmmanuel Vadot			reg = <0 0xe6ef1000 0 0x1000>;
949*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>;
950*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 810>;
951*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
952*f126890aSEmmanuel Vadot			resets = <&cpg 810>;
953*f126890aSEmmanuel Vadot			status = "disabled";
954*f126890aSEmmanuel Vadot		};
955*f126890aSEmmanuel Vadot
956*f126890aSEmmanuel Vadot		rcar_sound: sound@ec500000 {
957*f126890aSEmmanuel Vadot			/*
958*f126890aSEmmanuel Vadot			 * #sound-dai-cells is required if simple-card
959*f126890aSEmmanuel Vadot			 *
960*f126890aSEmmanuel Vadot			 * Single DAI : #sound-dai-cells = <0>;         <&rcar_sound>;
961*f126890aSEmmanuel Vadot			 * Multi  DAI : #sound-dai-cells = <1>;         <&rcar_sound N>;
962*f126890aSEmmanuel Vadot			 */
963*f126890aSEmmanuel Vadot			compatible = "renesas,rcar_sound-r8a7794",
964*f126890aSEmmanuel Vadot				     "renesas,rcar_sound-gen2";
965*f126890aSEmmanuel Vadot			reg = <0 0xec500000 0 0x1000>, /* SCU */
966*f126890aSEmmanuel Vadot			      <0 0xec5a0000 0 0x100>,  /* ADG */
967*f126890aSEmmanuel Vadot			      <0 0xec540000 0 0x1000>, /* SSIU */
968*f126890aSEmmanuel Vadot			      <0 0xec541000 0 0x280>,  /* SSI */
969*f126890aSEmmanuel Vadot			      <0 0xec740000 0 0x200>;  /* Audio DMAC peri peri */
970*f126890aSEmmanuel Vadot			reg-names = "scu", "adg", "ssiu", "ssi", "audmapp";
971*f126890aSEmmanuel Vadot
972*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 1005>,
973*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1006>, <&cpg CPG_MOD 1007>,
974*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1008>, <&cpg CPG_MOD 1009>,
975*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1010>, <&cpg CPG_MOD 1011>,
976*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1012>, <&cpg CPG_MOD 1013>,
977*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1014>, <&cpg CPG_MOD 1015>,
978*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1025>, <&cpg CPG_MOD 1026>,
979*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1027>, <&cpg CPG_MOD 1028>,
980*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1029>, <&cpg CPG_MOD 1030>,
981*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1021>, <&cpg CPG_MOD 1020>,
982*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1021>, <&cpg CPG_MOD 1020>,
983*f126890aSEmmanuel Vadot				 <&cpg CPG_MOD 1019>, <&cpg CPG_MOD 1018>,
984*f126890aSEmmanuel Vadot				 <&audio_clka>, <&audio_clkb>, <&audio_clkc>,
985*f126890aSEmmanuel Vadot				 <&cpg CPG_CORE R8A7794_CLK_M2>;
986*f126890aSEmmanuel Vadot			clock-names = "ssi-all",
987*f126890aSEmmanuel Vadot				      "ssi.9", "ssi.8", "ssi.7", "ssi.6",
988*f126890aSEmmanuel Vadot				      "ssi.5", "ssi.4", "ssi.3", "ssi.2",
989*f126890aSEmmanuel Vadot				      "ssi.1", "ssi.0",
990*f126890aSEmmanuel Vadot				      "src.6", "src.5", "src.4", "src.3",
991*f126890aSEmmanuel Vadot				      "src.2", "src.1",
992*f126890aSEmmanuel Vadot				      "ctu.0", "ctu.1",
993*f126890aSEmmanuel Vadot				      "mix.0", "mix.1",
994*f126890aSEmmanuel Vadot				      "dvc.0", "dvc.1",
995*f126890aSEmmanuel Vadot				      "clk_a", "clk_b", "clk_c", "clk_i";
996*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
997*f126890aSEmmanuel Vadot			resets = <&cpg 1005>,
998*f126890aSEmmanuel Vadot				 <&cpg 1006>, <&cpg 1007>,
999*f126890aSEmmanuel Vadot				 <&cpg 1008>, <&cpg 1009>,
1000*f126890aSEmmanuel Vadot				 <&cpg 1010>, <&cpg 1011>,
1001*f126890aSEmmanuel Vadot				 <&cpg 1012>, <&cpg 1013>,
1002*f126890aSEmmanuel Vadot				 <&cpg 1014>, <&cpg 1015>;
1003*f126890aSEmmanuel Vadot			reset-names = "ssi-all",
1004*f126890aSEmmanuel Vadot				      "ssi.9", "ssi.8", "ssi.7", "ssi.6",
1005*f126890aSEmmanuel Vadot				      "ssi.5", "ssi.4", "ssi.3", "ssi.2",
1006*f126890aSEmmanuel Vadot				      "ssi.1", "ssi.0";
1007*f126890aSEmmanuel Vadot
1008*f126890aSEmmanuel Vadot			status = "disabled";
1009*f126890aSEmmanuel Vadot
1010*f126890aSEmmanuel Vadot			rcar_sound,dvc {
1011*f126890aSEmmanuel Vadot				dvc0: dvc-0 {
1012*f126890aSEmmanuel Vadot					dmas = <&audma0 0xbc>;
1013*f126890aSEmmanuel Vadot					dma-names = "tx";
1014*f126890aSEmmanuel Vadot				};
1015*f126890aSEmmanuel Vadot				dvc1: dvc-1 {
1016*f126890aSEmmanuel Vadot					dmas = <&audma0 0xbe>;
1017*f126890aSEmmanuel Vadot					dma-names = "tx";
1018*f126890aSEmmanuel Vadot				};
1019*f126890aSEmmanuel Vadot			};
1020*f126890aSEmmanuel Vadot
1021*f126890aSEmmanuel Vadot			rcar_sound,mix {
1022*f126890aSEmmanuel Vadot				mix0: mix-0 { };
1023*f126890aSEmmanuel Vadot				mix1: mix-1 { };
1024*f126890aSEmmanuel Vadot			};
1025*f126890aSEmmanuel Vadot
1026*f126890aSEmmanuel Vadot			rcar_sound,ctu {
1027*f126890aSEmmanuel Vadot				ctu00: ctu-0 { };
1028*f126890aSEmmanuel Vadot				ctu01: ctu-1 { };
1029*f126890aSEmmanuel Vadot				ctu02: ctu-2 { };
1030*f126890aSEmmanuel Vadot				ctu03: ctu-3 { };
1031*f126890aSEmmanuel Vadot				ctu10: ctu-4 { };
1032*f126890aSEmmanuel Vadot				ctu11: ctu-5 { };
1033*f126890aSEmmanuel Vadot				ctu12: ctu-6 { };
1034*f126890aSEmmanuel Vadot				ctu13: ctu-7 { };
1035*f126890aSEmmanuel Vadot			};
1036*f126890aSEmmanuel Vadot
1037*f126890aSEmmanuel Vadot			rcar_sound,src {
1038*f126890aSEmmanuel Vadot				src-0 {
1039*f126890aSEmmanuel Vadot					status = "disabled";
1040*f126890aSEmmanuel Vadot				};
1041*f126890aSEmmanuel Vadot				src1: src-1 {
1042*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 353 IRQ_TYPE_LEVEL_HIGH>;
1043*f126890aSEmmanuel Vadot					dmas = <&audma0 0x87>, <&audma0 0x9c>;
1044*f126890aSEmmanuel Vadot					dma-names = "rx", "tx";
1045*f126890aSEmmanuel Vadot				};
1046*f126890aSEmmanuel Vadot				src2: src-2 {
1047*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 354 IRQ_TYPE_LEVEL_HIGH>;
1048*f126890aSEmmanuel Vadot					dmas = <&audma0 0x89>, <&audma0 0x9e>;
1049*f126890aSEmmanuel Vadot					dma-names = "rx", "tx";
1050*f126890aSEmmanuel Vadot				};
1051*f126890aSEmmanuel Vadot				src3: src-3 {
1052*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 355 IRQ_TYPE_LEVEL_HIGH>;
1053*f126890aSEmmanuel Vadot					dmas = <&audma0 0x8b>, <&audma0 0xa0>;
1054*f126890aSEmmanuel Vadot					dma-names = "rx", "tx";
1055*f126890aSEmmanuel Vadot				};
1056*f126890aSEmmanuel Vadot				src4: src-4 {
1057*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 356 IRQ_TYPE_LEVEL_HIGH>;
1058*f126890aSEmmanuel Vadot					dmas = <&audma0 0x8d>, <&audma0 0xb0>;
1059*f126890aSEmmanuel Vadot					dma-names = "rx", "tx";
1060*f126890aSEmmanuel Vadot				};
1061*f126890aSEmmanuel Vadot				src5: src-5 {
1062*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 357 IRQ_TYPE_LEVEL_HIGH>;
1063*f126890aSEmmanuel Vadot					dmas = <&audma0 0x8f>, <&audma0 0xb2>;
1064*f126890aSEmmanuel Vadot					dma-names = "rx", "tx";
1065*f126890aSEmmanuel Vadot				};
1066*f126890aSEmmanuel Vadot				src6: src-6 {
1067*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 358 IRQ_TYPE_LEVEL_HIGH>;
1068*f126890aSEmmanuel Vadot					dmas = <&audma0 0x91>, <&audma0 0xb4>;
1069*f126890aSEmmanuel Vadot					dma-names = "rx", "tx";
1070*f126890aSEmmanuel Vadot				};
1071*f126890aSEmmanuel Vadot			};
1072*f126890aSEmmanuel Vadot
1073*f126890aSEmmanuel Vadot			rcar_sound,ssi {
1074*f126890aSEmmanuel Vadot				ssi0: ssi-0 {
1075*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 370 IRQ_TYPE_LEVEL_HIGH>;
1076*f126890aSEmmanuel Vadot					dmas = <&audma0 0x01>, <&audma0 0x02>,
1077*f126890aSEmmanuel Vadot					       <&audma0 0x15>, <&audma0 0x16>;
1078*f126890aSEmmanuel Vadot					dma-names = "rx", "tx", "rxu", "txu";
1079*f126890aSEmmanuel Vadot				};
1080*f126890aSEmmanuel Vadot				ssi1: ssi-1 {
1081*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH>;
1082*f126890aSEmmanuel Vadot					dmas = <&audma0 0x03>, <&audma0 0x04>,
1083*f126890aSEmmanuel Vadot					       <&audma0 0x49>, <&audma0 0x4a>;
1084*f126890aSEmmanuel Vadot					dma-names = "rx", "tx", "rxu", "txu";
1085*f126890aSEmmanuel Vadot				};
1086*f126890aSEmmanuel Vadot				ssi2: ssi-2 {
1087*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 372 IRQ_TYPE_LEVEL_HIGH>;
1088*f126890aSEmmanuel Vadot					dmas = <&audma0 0x05>, <&audma0 0x06>,
1089*f126890aSEmmanuel Vadot					       <&audma0 0x63>, <&audma0 0x64>;
1090*f126890aSEmmanuel Vadot					dma-names = "rx", "tx", "rxu", "txu";
1091*f126890aSEmmanuel Vadot				};
1092*f126890aSEmmanuel Vadot				ssi3: ssi-3 {
1093*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 373 IRQ_TYPE_LEVEL_HIGH>;
1094*f126890aSEmmanuel Vadot					dmas = <&audma0 0x07>, <&audma0 0x08>,
1095*f126890aSEmmanuel Vadot					       <&audma0 0x6f>, <&audma0 0x70>;
1096*f126890aSEmmanuel Vadot					dma-names = "rx", "tx", "rxu", "txu";
1097*f126890aSEmmanuel Vadot				};
1098*f126890aSEmmanuel Vadot				ssi4: ssi-4 {
1099*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 374 IRQ_TYPE_LEVEL_HIGH>;
1100*f126890aSEmmanuel Vadot					dmas = <&audma0 0x09>, <&audma0 0x0a>,
1101*f126890aSEmmanuel Vadot					       <&audma0 0x71>, <&audma0 0x72>;
1102*f126890aSEmmanuel Vadot					dma-names = "rx", "tx", "rxu", "txu";
1103*f126890aSEmmanuel Vadot				};
1104*f126890aSEmmanuel Vadot				ssi5: ssi-5 {
1105*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 375 IRQ_TYPE_LEVEL_HIGH>;
1106*f126890aSEmmanuel Vadot					dmas = <&audma0 0x0b>, <&audma0 0x0c>,
1107*f126890aSEmmanuel Vadot					       <&audma0 0x73>, <&audma0 0x74>;
1108*f126890aSEmmanuel Vadot					dma-names = "rx", "tx", "rxu", "txu";
1109*f126890aSEmmanuel Vadot				};
1110*f126890aSEmmanuel Vadot				ssi6: ssi-6 {
1111*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 376 IRQ_TYPE_LEVEL_HIGH>;
1112*f126890aSEmmanuel Vadot					dmas = <&audma0 0x0d>, <&audma0 0x0e>,
1113*f126890aSEmmanuel Vadot					       <&audma0 0x75>, <&audma0 0x76>;
1114*f126890aSEmmanuel Vadot					dma-names = "rx", "tx", "rxu", "txu";
1115*f126890aSEmmanuel Vadot				};
1116*f126890aSEmmanuel Vadot				ssi7: ssi-7 {
1117*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 377 IRQ_TYPE_LEVEL_HIGH>;
1118*f126890aSEmmanuel Vadot					dmas = <&audma0 0x0f>, <&audma0 0x10>,
1119*f126890aSEmmanuel Vadot					       <&audma0 0x79>, <&audma0 0x7a>;
1120*f126890aSEmmanuel Vadot					dma-names = "rx", "tx", "rxu", "txu";
1121*f126890aSEmmanuel Vadot				};
1122*f126890aSEmmanuel Vadot				ssi8: ssi-8 {
1123*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 378 IRQ_TYPE_LEVEL_HIGH>;
1124*f126890aSEmmanuel Vadot					dmas = <&audma0 0x11>, <&audma0 0x12>,
1125*f126890aSEmmanuel Vadot					       <&audma0 0x7b>, <&audma0 0x7c>;
1126*f126890aSEmmanuel Vadot					dma-names = "rx", "tx", "rxu", "txu";
1127*f126890aSEmmanuel Vadot				};
1128*f126890aSEmmanuel Vadot				ssi9: ssi-9 {
1129*f126890aSEmmanuel Vadot					interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>;
1130*f126890aSEmmanuel Vadot					dmas = <&audma0 0x13>, <&audma0 0x14>,
1131*f126890aSEmmanuel Vadot					       <&audma0 0x7d>, <&audma0 0x7e>;
1132*f126890aSEmmanuel Vadot					dma-names = "rx", "tx", "rxu", "txu";
1133*f126890aSEmmanuel Vadot				};
1134*f126890aSEmmanuel Vadot			};
1135*f126890aSEmmanuel Vadot		};
1136*f126890aSEmmanuel Vadot
1137*f126890aSEmmanuel Vadot		audma0: dma-controller@ec700000 {
1138*f126890aSEmmanuel Vadot			compatible = "renesas,dmac-r8a7794",
1139*f126890aSEmmanuel Vadot				     "renesas,rcar-dmac";
1140*f126890aSEmmanuel Vadot			reg = <0 0xec700000 0 0x10000>;
1141*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 346 IRQ_TYPE_LEVEL_HIGH>,
1142*f126890aSEmmanuel Vadot				     <GIC_SPI 320 IRQ_TYPE_LEVEL_HIGH>,
1143*f126890aSEmmanuel Vadot				     <GIC_SPI 321 IRQ_TYPE_LEVEL_HIGH>,
1144*f126890aSEmmanuel Vadot				     <GIC_SPI 322 IRQ_TYPE_LEVEL_HIGH>,
1145*f126890aSEmmanuel Vadot				     <GIC_SPI 323 IRQ_TYPE_LEVEL_HIGH>,
1146*f126890aSEmmanuel Vadot				     <GIC_SPI 324 IRQ_TYPE_LEVEL_HIGH>,
1147*f126890aSEmmanuel Vadot				     <GIC_SPI 325 IRQ_TYPE_LEVEL_HIGH>,
1148*f126890aSEmmanuel Vadot				     <GIC_SPI 326 IRQ_TYPE_LEVEL_HIGH>,
1149*f126890aSEmmanuel Vadot				     <GIC_SPI 327 IRQ_TYPE_LEVEL_HIGH>,
1150*f126890aSEmmanuel Vadot				     <GIC_SPI 328 IRQ_TYPE_LEVEL_HIGH>,
1151*f126890aSEmmanuel Vadot				     <GIC_SPI 329 IRQ_TYPE_LEVEL_HIGH>,
1152*f126890aSEmmanuel Vadot				     <GIC_SPI 330 IRQ_TYPE_LEVEL_HIGH>,
1153*f126890aSEmmanuel Vadot				     <GIC_SPI 331 IRQ_TYPE_LEVEL_HIGH>,
1154*f126890aSEmmanuel Vadot				     <GIC_SPI 332 IRQ_TYPE_LEVEL_HIGH>;
1155*f126890aSEmmanuel Vadot			interrupt-names = "error",
1156*f126890aSEmmanuel Vadot					  "ch0", "ch1", "ch2", "ch3", "ch4",
1157*f126890aSEmmanuel Vadot					  "ch5", "ch6", "ch7", "ch8", "ch9",
1158*f126890aSEmmanuel Vadot					  "ch10", "ch11",
1159*f126890aSEmmanuel Vadot					  "ch12";
1160*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 502>;
1161*f126890aSEmmanuel Vadot			clock-names = "fck";
1162*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1163*f126890aSEmmanuel Vadot			resets = <&cpg 502>;
1164*f126890aSEmmanuel Vadot			#dma-cells = <1>;
1165*f126890aSEmmanuel Vadot			dma-channels = <13>;
1166*f126890aSEmmanuel Vadot		};
1167*f126890aSEmmanuel Vadot
1168*f126890aSEmmanuel Vadot		pci0: pci@ee090000 {
1169*f126890aSEmmanuel Vadot			compatible = "renesas,pci-r8a7794",
1170*f126890aSEmmanuel Vadot				     "renesas,pci-rcar-gen2";
1171*f126890aSEmmanuel Vadot			device_type = "pci";
1172*f126890aSEmmanuel Vadot			reg = <0 0xee090000 0 0xc00>,
1173*f126890aSEmmanuel Vadot			      <0 0xee080000 0 0x1100>;
1174*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
1175*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 703>;
1176*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1177*f126890aSEmmanuel Vadot			resets = <&cpg 703>;
1178*f126890aSEmmanuel Vadot			status = "disabled";
1179*f126890aSEmmanuel Vadot
1180*f126890aSEmmanuel Vadot			bus-range = <0 0>;
1181*f126890aSEmmanuel Vadot			#address-cells = <3>;
1182*f126890aSEmmanuel Vadot			#size-cells = <2>;
1183*f126890aSEmmanuel Vadot			#interrupt-cells = <1>;
1184*f126890aSEmmanuel Vadot			ranges = <0x02000000 0 0xee080000 0 0xee080000 0 0x00010000>;
1185*f126890aSEmmanuel Vadot			interrupt-map-mask = <0xf800 0 0 0x7>;
1186*f126890aSEmmanuel Vadot			interrupt-map = <0x0000 0 0 1 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>,
1187*f126890aSEmmanuel Vadot					<0x0800 0 0 1 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>,
1188*f126890aSEmmanuel Vadot					<0x1000 0 0 2 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
1189*f126890aSEmmanuel Vadot
1190*f126890aSEmmanuel Vadot			usb@1,0 {
1191*f126890aSEmmanuel Vadot				reg = <0x800 0 0 0 0>;
1192*f126890aSEmmanuel Vadot				phys = <&usb0 0>;
1193*f126890aSEmmanuel Vadot				phy-names = "usb";
1194*f126890aSEmmanuel Vadot			};
1195*f126890aSEmmanuel Vadot
1196*f126890aSEmmanuel Vadot			usb@2,0 {
1197*f126890aSEmmanuel Vadot				reg = <0x1000 0 0 0 0>;
1198*f126890aSEmmanuel Vadot				phys = <&usb0 0>;
1199*f126890aSEmmanuel Vadot				phy-names = "usb";
1200*f126890aSEmmanuel Vadot			};
1201*f126890aSEmmanuel Vadot		};
1202*f126890aSEmmanuel Vadot
1203*f126890aSEmmanuel Vadot		pci1: pci@ee0d0000 {
1204*f126890aSEmmanuel Vadot			compatible = "renesas,pci-r8a7794",
1205*f126890aSEmmanuel Vadot				     "renesas,pci-rcar-gen2";
1206*f126890aSEmmanuel Vadot			device_type = "pci";
1207*f126890aSEmmanuel Vadot			reg = <0 0xee0d0000 0 0xc00>,
1208*f126890aSEmmanuel Vadot			      <0 0xee0c0000 0 0x1100>;
1209*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>;
1210*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 703>;
1211*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1212*f126890aSEmmanuel Vadot			resets = <&cpg 703>;
1213*f126890aSEmmanuel Vadot			status = "disabled";
1214*f126890aSEmmanuel Vadot
1215*f126890aSEmmanuel Vadot			bus-range = <1 1>;
1216*f126890aSEmmanuel Vadot			#address-cells = <3>;
1217*f126890aSEmmanuel Vadot			#size-cells = <2>;
1218*f126890aSEmmanuel Vadot			#interrupt-cells = <1>;
1219*f126890aSEmmanuel Vadot			ranges = <0x02000000 0 0xee0c0000 0 0xee0c0000 0 0x00010000>;
1220*f126890aSEmmanuel Vadot			interrupt-map-mask = <0xf800 0 0 0x7>;
1221*f126890aSEmmanuel Vadot			interrupt-map = <0x0000 0 0 1 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>,
1222*f126890aSEmmanuel Vadot					<0x0800 0 0 1 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>,
1223*f126890aSEmmanuel Vadot					<0x1000 0 0 2 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>;
1224*f126890aSEmmanuel Vadot
1225*f126890aSEmmanuel Vadot			usb@1,0 {
1226*f126890aSEmmanuel Vadot				reg = <0x10800 0 0 0 0>;
1227*f126890aSEmmanuel Vadot				phys = <&usb2 0>;
1228*f126890aSEmmanuel Vadot				phy-names = "usb";
1229*f126890aSEmmanuel Vadot			};
1230*f126890aSEmmanuel Vadot
1231*f126890aSEmmanuel Vadot			usb@2,0 {
1232*f126890aSEmmanuel Vadot				reg = <0x11000 0 0 0 0>;
1233*f126890aSEmmanuel Vadot				phys = <&usb2 0>;
1234*f126890aSEmmanuel Vadot				phy-names = "usb";
1235*f126890aSEmmanuel Vadot			};
1236*f126890aSEmmanuel Vadot		};
1237*f126890aSEmmanuel Vadot
1238*f126890aSEmmanuel Vadot		sdhi0: mmc@ee100000 {
1239*f126890aSEmmanuel Vadot			compatible = "renesas,sdhi-r8a7794",
1240*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-sdhi";
1241*f126890aSEmmanuel Vadot			reg = <0 0xee100000 0 0x328>;
1242*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 165 IRQ_TYPE_LEVEL_HIGH>;
1243*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 314>;
1244*f126890aSEmmanuel Vadot			dmas = <&dmac0 0xcd>, <&dmac0 0xce>,
1245*f126890aSEmmanuel Vadot			       <&dmac1 0xcd>, <&dmac1 0xce>;
1246*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
1247*f126890aSEmmanuel Vadot			max-frequency = <195000000>;
1248*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1249*f126890aSEmmanuel Vadot			resets = <&cpg 314>;
1250*f126890aSEmmanuel Vadot			status = "disabled";
1251*f126890aSEmmanuel Vadot		};
1252*f126890aSEmmanuel Vadot
1253*f126890aSEmmanuel Vadot		sdhi1: mmc@ee140000 {
1254*f126890aSEmmanuel Vadot			compatible = "renesas,sdhi-r8a7794",
1255*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-sdhi";
1256*f126890aSEmmanuel Vadot			reg = <0 0xee140000 0 0x100>;
1257*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 167 IRQ_TYPE_LEVEL_HIGH>;
1258*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 312>;
1259*f126890aSEmmanuel Vadot			dmas = <&dmac0 0xc1>, <&dmac0 0xc2>,
1260*f126890aSEmmanuel Vadot			       <&dmac1 0xc1>, <&dmac1 0xc2>;
1261*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
1262*f126890aSEmmanuel Vadot			max-frequency = <97500000>;
1263*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1264*f126890aSEmmanuel Vadot			resets = <&cpg 312>;
1265*f126890aSEmmanuel Vadot			status = "disabled";
1266*f126890aSEmmanuel Vadot		};
1267*f126890aSEmmanuel Vadot
1268*f126890aSEmmanuel Vadot		sdhi2: mmc@ee160000 {
1269*f126890aSEmmanuel Vadot			compatible = "renesas,sdhi-r8a7794",
1270*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-sdhi";
1271*f126890aSEmmanuel Vadot			reg = <0 0xee160000 0 0x100>;
1272*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>;
1273*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 311>;
1274*f126890aSEmmanuel Vadot			dmas = <&dmac0 0xd3>, <&dmac0 0xd4>,
1275*f126890aSEmmanuel Vadot			       <&dmac1 0xd3>, <&dmac1 0xd4>;
1276*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
1277*f126890aSEmmanuel Vadot			max-frequency = <97500000>;
1278*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1279*f126890aSEmmanuel Vadot			resets = <&cpg 311>;
1280*f126890aSEmmanuel Vadot			status = "disabled";
1281*f126890aSEmmanuel Vadot		};
1282*f126890aSEmmanuel Vadot
1283*f126890aSEmmanuel Vadot		mmcif0: mmc@ee200000 {
1284*f126890aSEmmanuel Vadot			compatible = "renesas,mmcif-r8a7794",
1285*f126890aSEmmanuel Vadot				     "renesas,sh-mmcif";
1286*f126890aSEmmanuel Vadot			reg = <0 0xee200000 0 0x80>;
1287*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 169 IRQ_TYPE_LEVEL_HIGH>;
1288*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 315>;
1289*f126890aSEmmanuel Vadot			dmas = <&dmac0 0xd1>, <&dmac0 0xd2>,
1290*f126890aSEmmanuel Vadot			       <&dmac1 0xd1>, <&dmac1 0xd2>;
1291*f126890aSEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
1292*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1293*f126890aSEmmanuel Vadot			resets = <&cpg 315>;
1294*f126890aSEmmanuel Vadot			reg-io-width = <4>;
1295*f126890aSEmmanuel Vadot			status = "disabled";
1296*f126890aSEmmanuel Vadot		};
1297*f126890aSEmmanuel Vadot
1298*f126890aSEmmanuel Vadot		ether: ethernet@ee700000 {
1299*f126890aSEmmanuel Vadot			compatible = "renesas,ether-r8a7794",
1300*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-ether";
1301*f126890aSEmmanuel Vadot			reg = <0 0xee700000 0 0x400>;
1302*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 162 IRQ_TYPE_LEVEL_HIGH>;
1303*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 813>;
1304*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1305*f126890aSEmmanuel Vadot			resets = <&cpg 813>;
1306*f126890aSEmmanuel Vadot			phy-mode = "rmii";
1307*f126890aSEmmanuel Vadot			#address-cells = <1>;
1308*f126890aSEmmanuel Vadot			#size-cells = <0>;
1309*f126890aSEmmanuel Vadot			status = "disabled";
1310*f126890aSEmmanuel Vadot		};
1311*f126890aSEmmanuel Vadot
1312*f126890aSEmmanuel Vadot		gic: interrupt-controller@f1001000 {
1313*f126890aSEmmanuel Vadot			compatible = "arm,gic-400";
1314*f126890aSEmmanuel Vadot			#interrupt-cells = <3>;
1315*f126890aSEmmanuel Vadot			#address-cells = <0>;
1316*f126890aSEmmanuel Vadot			interrupt-controller;
1317*f126890aSEmmanuel Vadot			reg = <0 0xf1001000 0 0x1000>,
1318*f126890aSEmmanuel Vadot			      <0 0xf1002000 0 0x2000>,
1319*f126890aSEmmanuel Vadot			      <0 0xf1004000 0 0x2000>,
1320*f126890aSEmmanuel Vadot			      <0 0xf1006000 0 0x2000>;
1321*f126890aSEmmanuel Vadot			interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>;
1322*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 408>;
1323*f126890aSEmmanuel Vadot			clock-names = "clk";
1324*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1325*f126890aSEmmanuel Vadot			resets = <&cpg 408>;
1326*f126890aSEmmanuel Vadot		};
1327*f126890aSEmmanuel Vadot
1328*f126890aSEmmanuel Vadot		vsp@fe928000 {
1329*f126890aSEmmanuel Vadot			compatible = "renesas,vsp1";
1330*f126890aSEmmanuel Vadot			reg = <0 0xfe928000 0 0x8000>;
1331*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>;
1332*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 131>;
1333*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1334*f126890aSEmmanuel Vadot			resets = <&cpg 131>;
1335*f126890aSEmmanuel Vadot		};
1336*f126890aSEmmanuel Vadot
1337*f126890aSEmmanuel Vadot		vsp@fe930000 {
1338*f126890aSEmmanuel Vadot			compatible = "renesas,vsp1";
1339*f126890aSEmmanuel Vadot			reg = <0 0xfe930000 0 0x8000>;
1340*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>;
1341*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 128>;
1342*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1343*f126890aSEmmanuel Vadot			resets = <&cpg 128>;
1344*f126890aSEmmanuel Vadot		};
1345*f126890aSEmmanuel Vadot
1346*f126890aSEmmanuel Vadot		fdp1@fe940000 {
1347*f126890aSEmmanuel Vadot			compatible = "renesas,fdp1";
1348*f126890aSEmmanuel Vadot			reg = <0 0xfe940000 0 0x2400>;
1349*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>;
1350*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 119>;
1351*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1352*f126890aSEmmanuel Vadot			resets = <&cpg 119>;
1353*f126890aSEmmanuel Vadot		};
1354*f126890aSEmmanuel Vadot
1355*f126890aSEmmanuel Vadot		du: display@feb00000 {
1356*f126890aSEmmanuel Vadot			compatible = "renesas,du-r8a7794";
1357*f126890aSEmmanuel Vadot			reg = <0 0xfeb00000 0 0x40000>;
1358*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>,
1359*f126890aSEmmanuel Vadot				     <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
1360*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 724>, <&cpg CPG_MOD 723>;
1361*f126890aSEmmanuel Vadot			clock-names = "du.0", "du.1";
1362*f126890aSEmmanuel Vadot			resets = <&cpg 724>;
1363*f126890aSEmmanuel Vadot			reset-names = "du.0";
1364*f126890aSEmmanuel Vadot			status = "disabled";
1365*f126890aSEmmanuel Vadot
1366*f126890aSEmmanuel Vadot			ports {
1367*f126890aSEmmanuel Vadot				#address-cells = <1>;
1368*f126890aSEmmanuel Vadot				#size-cells = <0>;
1369*f126890aSEmmanuel Vadot
1370*f126890aSEmmanuel Vadot				port@0 {
1371*f126890aSEmmanuel Vadot					reg = <0>;
1372*f126890aSEmmanuel Vadot					du_out_rgb0: endpoint {
1373*f126890aSEmmanuel Vadot					};
1374*f126890aSEmmanuel Vadot				};
1375*f126890aSEmmanuel Vadot				port@1 {
1376*f126890aSEmmanuel Vadot					reg = <1>;
1377*f126890aSEmmanuel Vadot					du_out_rgb1: endpoint {
1378*f126890aSEmmanuel Vadot					};
1379*f126890aSEmmanuel Vadot				};
1380*f126890aSEmmanuel Vadot			};
1381*f126890aSEmmanuel Vadot		};
1382*f126890aSEmmanuel Vadot
1383*f126890aSEmmanuel Vadot		prr: chipid@ff000044 {
1384*f126890aSEmmanuel Vadot			compatible = "renesas,prr";
1385*f126890aSEmmanuel Vadot			reg = <0 0xff000044 0 4>;
1386*f126890aSEmmanuel Vadot		};
1387*f126890aSEmmanuel Vadot
1388*f126890aSEmmanuel Vadot		cmt0: timer@ffca0000 {
1389*f126890aSEmmanuel Vadot			compatible = "renesas,r8a7794-cmt0",
1390*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-cmt0";
1391*f126890aSEmmanuel Vadot			reg = <0 0xffca0000 0 0x1004>;
1392*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 142 IRQ_TYPE_LEVEL_HIGH>,
1393*f126890aSEmmanuel Vadot				     <GIC_SPI 143 IRQ_TYPE_LEVEL_HIGH>;
1394*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 124>;
1395*f126890aSEmmanuel Vadot			clock-names = "fck";
1396*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1397*f126890aSEmmanuel Vadot			resets = <&cpg 124>;
1398*f126890aSEmmanuel Vadot
1399*f126890aSEmmanuel Vadot			status = "disabled";
1400*f126890aSEmmanuel Vadot		};
1401*f126890aSEmmanuel Vadot
1402*f126890aSEmmanuel Vadot		cmt1: timer@e6130000 {
1403*f126890aSEmmanuel Vadot			compatible = "renesas,r8a7794-cmt1",
1404*f126890aSEmmanuel Vadot				     "renesas,rcar-gen2-cmt1";
1405*f126890aSEmmanuel Vadot			reg = <0 0xe6130000 0 0x1004>;
1406*f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>,
1407*f126890aSEmmanuel Vadot				     <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>,
1408*f126890aSEmmanuel Vadot				     <GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>,
1409*f126890aSEmmanuel Vadot				     <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>,
1410*f126890aSEmmanuel Vadot				     <GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>,
1411*f126890aSEmmanuel Vadot				     <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>,
1412*f126890aSEmmanuel Vadot				     <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>,
1413*f126890aSEmmanuel Vadot				     <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>;
1414*f126890aSEmmanuel Vadot			clocks = <&cpg CPG_MOD 329>;
1415*f126890aSEmmanuel Vadot			clock-names = "fck";
1416*f126890aSEmmanuel Vadot			power-domains = <&sysc R8A7794_PD_ALWAYS_ON>;
1417*f126890aSEmmanuel Vadot			resets = <&cpg 329>;
1418*f126890aSEmmanuel Vadot
1419*f126890aSEmmanuel Vadot			status = "disabled";
1420*f126890aSEmmanuel Vadot		};
1421*f126890aSEmmanuel Vadot	};
1422*f126890aSEmmanuel Vadot
1423*f126890aSEmmanuel Vadot	timer {
1424*f126890aSEmmanuel Vadot		compatible = "arm,armv7-timer";
1425*f126890aSEmmanuel Vadot		interrupts-extended = <&gic GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
1426*f126890aSEmmanuel Vadot				      <&gic GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
1427*f126890aSEmmanuel Vadot				      <&gic GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
1428*f126890aSEmmanuel Vadot				      <&gic GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>;
1429*f126890aSEmmanuel Vadot	};
1430*f126890aSEmmanuel Vadot
1431*f126890aSEmmanuel Vadot	/* External USB clock - can be overridden by the board */
1432*f126890aSEmmanuel Vadot	usb_extal_clk: usb_extal {
1433*f126890aSEmmanuel Vadot		compatible = "fixed-clock";
1434*f126890aSEmmanuel Vadot		#clock-cells = <0>;
1435*f126890aSEmmanuel Vadot		clock-frequency = <48000000>;
1436*f126890aSEmmanuel Vadot	};
1437*f126890aSEmmanuel Vadot};
1438