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