xref: /freebsd/sys/contrib/device-tree/src/arm64/renesas/r8a779h0.dtsi (revision 01950c46b8155250f64374fb72fc11faa44bf099)
1*01950c46SEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*01950c46SEmmanuel Vadot/*
3*01950c46SEmmanuel Vadot * Device Tree Source for the R-Car V4M (R8A779H0) SoC
4*01950c46SEmmanuel Vadot *
5*01950c46SEmmanuel Vadot * Copyright (C) 2023 Renesas Electronics Corp.
6*01950c46SEmmanuel Vadot */
7*01950c46SEmmanuel Vadot
8*01950c46SEmmanuel Vadot#include <dt-bindings/clock/renesas,r8a779h0-cpg-mssr.h>
9*01950c46SEmmanuel Vadot#include <dt-bindings/interrupt-controller/arm-gic.h>
10*01950c46SEmmanuel Vadot#include <dt-bindings/power/renesas,r8a779h0-sysc.h>
11*01950c46SEmmanuel Vadot
12*01950c46SEmmanuel Vadot/ {
13*01950c46SEmmanuel Vadot	compatible = "renesas,r8a779h0";
14*01950c46SEmmanuel Vadot	#address-cells = <2>;
15*01950c46SEmmanuel Vadot	#size-cells = <2>;
16*01950c46SEmmanuel Vadot
17*01950c46SEmmanuel Vadot	cluster0_opp: opp-table-0 {
18*01950c46SEmmanuel Vadot		compatible = "operating-points-v2";
19*01950c46SEmmanuel Vadot		opp-shared;
20*01950c46SEmmanuel Vadot
21*01950c46SEmmanuel Vadot		opp-500000000 {
22*01950c46SEmmanuel Vadot			opp-hz = /bits/ 64 <500000000>;
23*01950c46SEmmanuel Vadot			opp-microvolt = <825000>;
24*01950c46SEmmanuel Vadot			clock-latency-ns = <500000>;
25*01950c46SEmmanuel Vadot		};
26*01950c46SEmmanuel Vadot		opp-1000000000 {
27*01950c46SEmmanuel Vadot			opp-hz = /bits/ 64 <1000000000>;
28*01950c46SEmmanuel Vadot			opp-microvolt = <825000>;
29*01950c46SEmmanuel Vadot			clock-latency-ns = <500000>;
30*01950c46SEmmanuel Vadot		};
31*01950c46SEmmanuel Vadot	};
32*01950c46SEmmanuel Vadot
33*01950c46SEmmanuel Vadot	cpus {
34*01950c46SEmmanuel Vadot		#address-cells = <1>;
35*01950c46SEmmanuel Vadot		#size-cells = <0>;
36*01950c46SEmmanuel Vadot
37*01950c46SEmmanuel Vadot		cpu-map {
38*01950c46SEmmanuel Vadot			cluster0 {
39*01950c46SEmmanuel Vadot				core0 {
40*01950c46SEmmanuel Vadot					cpu = <&a76_0>;
41*01950c46SEmmanuel Vadot				};
42*01950c46SEmmanuel Vadot				core1 {
43*01950c46SEmmanuel Vadot					cpu = <&a76_1>;
44*01950c46SEmmanuel Vadot				};
45*01950c46SEmmanuel Vadot				core2 {
46*01950c46SEmmanuel Vadot					cpu = <&a76_2>;
47*01950c46SEmmanuel Vadot				};
48*01950c46SEmmanuel Vadot				core3 {
49*01950c46SEmmanuel Vadot					cpu = <&a76_3>;
50*01950c46SEmmanuel Vadot				};
51*01950c46SEmmanuel Vadot			};
52*01950c46SEmmanuel Vadot		};
53*01950c46SEmmanuel Vadot
54*01950c46SEmmanuel Vadot		a76_0: cpu@0 {
55*01950c46SEmmanuel Vadot			compatible = "arm,cortex-a76";
56*01950c46SEmmanuel Vadot			reg = <0>;
57*01950c46SEmmanuel Vadot			device_type = "cpu";
58*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_A1E0D0C0>;
59*01950c46SEmmanuel Vadot			next-level-cache = <&L3_CA76>;
60*01950c46SEmmanuel Vadot			enable-method = "psci";
61*01950c46SEmmanuel Vadot			cpu-idle-states = <&CPU_SLEEP_0>;
62*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_CORE R8A779H0_CLK_ZC0>;
63*01950c46SEmmanuel Vadot			operating-points-v2 = <&cluster0_opp>;
64*01950c46SEmmanuel Vadot		};
65*01950c46SEmmanuel Vadot
66*01950c46SEmmanuel Vadot		a76_1: cpu@100 {
67*01950c46SEmmanuel Vadot			compatible = "arm,cortex-a76";
68*01950c46SEmmanuel Vadot			reg = <0x100>;
69*01950c46SEmmanuel Vadot			device_type = "cpu";
70*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_A1E0D0C1>;
71*01950c46SEmmanuel Vadot			next-level-cache = <&L3_CA76>;
72*01950c46SEmmanuel Vadot			enable-method = "psci";
73*01950c46SEmmanuel Vadot			cpu-idle-states = <&CPU_SLEEP_0>;
74*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_CORE R8A779H0_CLK_ZC1>;
75*01950c46SEmmanuel Vadot			operating-points-v2 = <&cluster0_opp>;
76*01950c46SEmmanuel Vadot		};
77*01950c46SEmmanuel Vadot
78*01950c46SEmmanuel Vadot		a76_2: cpu@200 {
79*01950c46SEmmanuel Vadot			compatible = "arm,cortex-a76";
80*01950c46SEmmanuel Vadot			reg = <0x200>;
81*01950c46SEmmanuel Vadot			device_type = "cpu";
82*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_A1E0D0C2>;
83*01950c46SEmmanuel Vadot			next-level-cache = <&L3_CA76>;
84*01950c46SEmmanuel Vadot			enable-method = "psci";
85*01950c46SEmmanuel Vadot			cpu-idle-states = <&CPU_SLEEP_0>;
86*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_CORE R8A779H0_CLK_ZC2>;
87*01950c46SEmmanuel Vadot			operating-points-v2 = <&cluster0_opp>;
88*01950c46SEmmanuel Vadot		};
89*01950c46SEmmanuel Vadot
90*01950c46SEmmanuel Vadot		a76_3: cpu@300 {
91*01950c46SEmmanuel Vadot			compatible = "arm,cortex-a76";
92*01950c46SEmmanuel Vadot			reg = <0x300>;
93*01950c46SEmmanuel Vadot			device_type = "cpu";
94*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_A1E0D0C3>;
95*01950c46SEmmanuel Vadot			next-level-cache = <&L3_CA76>;
96*01950c46SEmmanuel Vadot			enable-method = "psci";
97*01950c46SEmmanuel Vadot			cpu-idle-states = <&CPU_SLEEP_0>;
98*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_CORE R8A779H0_CLK_ZC3>;
99*01950c46SEmmanuel Vadot			operating-points-v2 = <&cluster0_opp>;
100*01950c46SEmmanuel Vadot		};
101*01950c46SEmmanuel Vadot
102*01950c46SEmmanuel Vadot		idle-states {
103*01950c46SEmmanuel Vadot			entry-method = "psci";
104*01950c46SEmmanuel Vadot
105*01950c46SEmmanuel Vadot			CPU_SLEEP_0: cpu-sleep-0 {
106*01950c46SEmmanuel Vadot				compatible = "arm,idle-state";
107*01950c46SEmmanuel Vadot				arm,psci-suspend-param = <0x0010000>;
108*01950c46SEmmanuel Vadot				local-timer-stop;
109*01950c46SEmmanuel Vadot				entry-latency-us = <400>;
110*01950c46SEmmanuel Vadot				exit-latency-us = <500>;
111*01950c46SEmmanuel Vadot				min-residency-us = <4000>;
112*01950c46SEmmanuel Vadot			};
113*01950c46SEmmanuel Vadot		};
114*01950c46SEmmanuel Vadot
115*01950c46SEmmanuel Vadot		L3_CA76: cache-controller {
116*01950c46SEmmanuel Vadot			compatible = "cache";
117*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_A2E0D0>;
118*01950c46SEmmanuel Vadot			cache-unified;
119*01950c46SEmmanuel Vadot			cache-level = <3>;
120*01950c46SEmmanuel Vadot		};
121*01950c46SEmmanuel Vadot	};
122*01950c46SEmmanuel Vadot
123*01950c46SEmmanuel Vadot	extal_clk: extal-clk {
124*01950c46SEmmanuel Vadot		compatible = "fixed-clock";
125*01950c46SEmmanuel Vadot		#clock-cells = <0>;
126*01950c46SEmmanuel Vadot		/* This value must be overridden by the board */
127*01950c46SEmmanuel Vadot		clock-frequency = <0>;
128*01950c46SEmmanuel Vadot	};
129*01950c46SEmmanuel Vadot
130*01950c46SEmmanuel Vadot	extalr_clk: extalr-clk {
131*01950c46SEmmanuel Vadot		compatible = "fixed-clock";
132*01950c46SEmmanuel Vadot		#clock-cells = <0>;
133*01950c46SEmmanuel Vadot		/* This value must be overridden by the board */
134*01950c46SEmmanuel Vadot		clock-frequency = <0>;
135*01950c46SEmmanuel Vadot	};
136*01950c46SEmmanuel Vadot
137*01950c46SEmmanuel Vadot	pmu-a76 {
138*01950c46SEmmanuel Vadot		compatible = "arm,cortex-a76-pmu";
139*01950c46SEmmanuel Vadot		interrupts-extended = <&gic GIC_PPI 7 IRQ_TYPE_LEVEL_LOW>;
140*01950c46SEmmanuel Vadot	};
141*01950c46SEmmanuel Vadot
142*01950c46SEmmanuel Vadot	psci {
143*01950c46SEmmanuel Vadot		compatible = "arm,psci-1.0", "arm,psci-0.2";
144*01950c46SEmmanuel Vadot		method = "smc";
145*01950c46SEmmanuel Vadot	};
146*01950c46SEmmanuel Vadot
147*01950c46SEmmanuel Vadot	/* External SCIF clock - to be overridden by boards that provide it */
148*01950c46SEmmanuel Vadot	scif_clk: scif-clk {
149*01950c46SEmmanuel Vadot		compatible = "fixed-clock";
150*01950c46SEmmanuel Vadot		#clock-cells = <0>;
151*01950c46SEmmanuel Vadot		clock-frequency = <0>;
152*01950c46SEmmanuel Vadot	};
153*01950c46SEmmanuel Vadot
154*01950c46SEmmanuel Vadot	soc: soc {
155*01950c46SEmmanuel Vadot		compatible = "simple-bus";
156*01950c46SEmmanuel Vadot		interrupt-parent = <&gic>;
157*01950c46SEmmanuel Vadot		#address-cells = <2>;
158*01950c46SEmmanuel Vadot		#size-cells = <2>;
159*01950c46SEmmanuel Vadot		ranges;
160*01950c46SEmmanuel Vadot
161*01950c46SEmmanuel Vadot		rwdt: watchdog@e6020000 {
162*01950c46SEmmanuel Vadot			compatible = "renesas,r8a779h0-wdt",
163*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-wdt";
164*01950c46SEmmanuel Vadot			reg = <0 0xe6020000 0 0x0c>;
165*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 330 IRQ_TYPE_LEVEL_HIGH>;
166*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 907>;
167*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
168*01950c46SEmmanuel Vadot			resets = <&cpg 907>;
169*01950c46SEmmanuel Vadot			status = "disabled";
170*01950c46SEmmanuel Vadot		};
171*01950c46SEmmanuel Vadot
172*01950c46SEmmanuel Vadot		pfc: pinctrl@e6050000 {
173*01950c46SEmmanuel Vadot			compatible = "renesas,pfc-r8a779h0";
174*01950c46SEmmanuel Vadot			reg = <0 0xe6050000 0 0x16c>, <0 0xe6050800 0 0x16c>,
175*01950c46SEmmanuel Vadot			      <0 0xe6058000 0 0x16c>, <0 0xe6058800 0 0x16c>,
176*01950c46SEmmanuel Vadot			      <0 0xe6060000 0 0x16c>, <0 0xe6060800 0 0x16c>,
177*01950c46SEmmanuel Vadot			      <0 0xe6061000 0 0x16c>, <0 0xe6061800 0 0x16c>;
178*01950c46SEmmanuel Vadot		};
179*01950c46SEmmanuel Vadot
180*01950c46SEmmanuel Vadot		gpio0: gpio@e6050180 {
181*01950c46SEmmanuel Vadot			compatible = "renesas,gpio-r8a779h0",
182*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-gpio";
183*01950c46SEmmanuel Vadot			reg = <0 0xe6050180 0 0x54>;
184*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 619 IRQ_TYPE_LEVEL_HIGH>;
185*01950c46SEmmanuel Vadot			#gpio-cells = <2>;
186*01950c46SEmmanuel Vadot			gpio-controller;
187*01950c46SEmmanuel Vadot			gpio-ranges = <&pfc 0 0 19>;
188*01950c46SEmmanuel Vadot			#interrupt-cells = <2>;
189*01950c46SEmmanuel Vadot			interrupt-controller;
190*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 915>;
191*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
192*01950c46SEmmanuel Vadot			resets = <&cpg 915>;
193*01950c46SEmmanuel Vadot		};
194*01950c46SEmmanuel Vadot
195*01950c46SEmmanuel Vadot		gpio1: gpio@e6050980 {
196*01950c46SEmmanuel Vadot			compatible = "renesas,gpio-r8a779h0",
197*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-gpio";
198*01950c46SEmmanuel Vadot			reg = <0 0xe6050980 0 0x54>;
199*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 623 IRQ_TYPE_LEVEL_HIGH>;
200*01950c46SEmmanuel Vadot			#gpio-cells = <2>;
201*01950c46SEmmanuel Vadot			gpio-controller;
202*01950c46SEmmanuel Vadot			gpio-ranges = <&pfc 0 32 30>;
203*01950c46SEmmanuel Vadot			#interrupt-cells = <2>;
204*01950c46SEmmanuel Vadot			interrupt-controller;
205*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 915>;
206*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
207*01950c46SEmmanuel Vadot			resets = <&cpg 915>;
208*01950c46SEmmanuel Vadot		};
209*01950c46SEmmanuel Vadot
210*01950c46SEmmanuel Vadot		gpio2: gpio@e6058180 {
211*01950c46SEmmanuel Vadot			compatible = "renesas,gpio-r8a779h0",
212*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-gpio";
213*01950c46SEmmanuel Vadot			reg = <0 0xe6058180 0 0x54>;
214*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 627 IRQ_TYPE_LEVEL_HIGH>;
215*01950c46SEmmanuel Vadot			#gpio-cells = <2>;
216*01950c46SEmmanuel Vadot			gpio-controller;
217*01950c46SEmmanuel Vadot			gpio-ranges = <&pfc 0 64 20>;
218*01950c46SEmmanuel Vadot			#interrupt-cells = <2>;
219*01950c46SEmmanuel Vadot			interrupt-controller;
220*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 916>;
221*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
222*01950c46SEmmanuel Vadot			resets = <&cpg 916>;
223*01950c46SEmmanuel Vadot		};
224*01950c46SEmmanuel Vadot
225*01950c46SEmmanuel Vadot		gpio3: gpio@e6058980 {
226*01950c46SEmmanuel Vadot			compatible = "renesas,gpio-r8a779h0",
227*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-gpio";
228*01950c46SEmmanuel Vadot			reg = <0 0xe6058980 0 0x54>;
229*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 631 IRQ_TYPE_LEVEL_HIGH>;
230*01950c46SEmmanuel Vadot			#gpio-cells = <2>;
231*01950c46SEmmanuel Vadot			gpio-controller;
232*01950c46SEmmanuel Vadot			gpio-ranges = <&pfc 0 96 32>;
233*01950c46SEmmanuel Vadot			#interrupt-cells = <2>;
234*01950c46SEmmanuel Vadot			interrupt-controller;
235*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 916>;
236*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
237*01950c46SEmmanuel Vadot			resets = <&cpg 916>;
238*01950c46SEmmanuel Vadot		};
239*01950c46SEmmanuel Vadot
240*01950c46SEmmanuel Vadot		gpio4: gpio@e6060180 {
241*01950c46SEmmanuel Vadot			compatible = "renesas,gpio-r8a779h0",
242*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-gpio";
243*01950c46SEmmanuel Vadot			reg = <0 0xe6060180 0 0x54>;
244*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 635 IRQ_TYPE_LEVEL_HIGH>;
245*01950c46SEmmanuel Vadot			#gpio-cells = <2>;
246*01950c46SEmmanuel Vadot			gpio-controller;
247*01950c46SEmmanuel Vadot			gpio-ranges = <&pfc 0 128 25>;
248*01950c46SEmmanuel Vadot			#interrupt-cells = <2>;
249*01950c46SEmmanuel Vadot			interrupt-controller;
250*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 917>;
251*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
252*01950c46SEmmanuel Vadot			resets = <&cpg 917>;
253*01950c46SEmmanuel Vadot		};
254*01950c46SEmmanuel Vadot
255*01950c46SEmmanuel Vadot		gpio5: gpio@e6060980 {
256*01950c46SEmmanuel Vadot			compatible = "renesas,gpio-r8a779h0",
257*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-gpio";
258*01950c46SEmmanuel Vadot			reg = <0 0xe6060980 0 0x54>;
259*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 639 IRQ_TYPE_LEVEL_HIGH>;
260*01950c46SEmmanuel Vadot			#gpio-cells = <2>;
261*01950c46SEmmanuel Vadot			gpio-controller;
262*01950c46SEmmanuel Vadot			gpio-ranges = <&pfc 0 160 21>;
263*01950c46SEmmanuel Vadot			#interrupt-cells = <2>;
264*01950c46SEmmanuel Vadot			interrupt-controller;
265*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 917>;
266*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
267*01950c46SEmmanuel Vadot			resets = <&cpg 917>;
268*01950c46SEmmanuel Vadot		};
269*01950c46SEmmanuel Vadot
270*01950c46SEmmanuel Vadot		gpio6: gpio@e6061180 {
271*01950c46SEmmanuel Vadot			compatible = "renesas,gpio-r8a779h0",
272*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-gpio";
273*01950c46SEmmanuel Vadot			reg = <0 0xe6061180 0 0x54>;
274*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 643 IRQ_TYPE_LEVEL_HIGH>;
275*01950c46SEmmanuel Vadot			#gpio-cells = <2>;
276*01950c46SEmmanuel Vadot			gpio-controller;
277*01950c46SEmmanuel Vadot			gpio-ranges = <&pfc 0 192 21>;
278*01950c46SEmmanuel Vadot			#interrupt-cells = <2>;
279*01950c46SEmmanuel Vadot			interrupt-controller;
280*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 917>;
281*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
282*01950c46SEmmanuel Vadot			resets = <&cpg 917>;
283*01950c46SEmmanuel Vadot		};
284*01950c46SEmmanuel Vadot
285*01950c46SEmmanuel Vadot		gpio7: gpio@e6061980 {
286*01950c46SEmmanuel Vadot			compatible = "renesas,gpio-r8a779h0",
287*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-gpio";
288*01950c46SEmmanuel Vadot			reg = <0 0xe6061980 0 0x54>;
289*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 647 IRQ_TYPE_LEVEL_HIGH>;
290*01950c46SEmmanuel Vadot			#gpio-cells = <2>;
291*01950c46SEmmanuel Vadot			gpio-controller;
292*01950c46SEmmanuel Vadot			gpio-ranges = <&pfc 0 224 21>;
293*01950c46SEmmanuel Vadot			#interrupt-cells = <2>;
294*01950c46SEmmanuel Vadot			interrupt-controller;
295*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 917>;
296*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
297*01950c46SEmmanuel Vadot			resets = <&cpg 917>;
298*01950c46SEmmanuel Vadot		};
299*01950c46SEmmanuel Vadot
300*01950c46SEmmanuel Vadot		cpg: clock-controller@e6150000 {
301*01950c46SEmmanuel Vadot			compatible = "renesas,r8a779h0-cpg-mssr";
302*01950c46SEmmanuel Vadot			reg = <0 0xe6150000 0 0x4000>;
303*01950c46SEmmanuel Vadot			clocks = <&extal_clk>, <&extalr_clk>;
304*01950c46SEmmanuel Vadot			clock-names = "extal", "extalr";
305*01950c46SEmmanuel Vadot			#clock-cells = <2>;
306*01950c46SEmmanuel Vadot			#power-domain-cells = <0>;
307*01950c46SEmmanuel Vadot			#reset-cells = <1>;
308*01950c46SEmmanuel Vadot		};
309*01950c46SEmmanuel Vadot
310*01950c46SEmmanuel Vadot		rst: reset-controller@e6160000 {
311*01950c46SEmmanuel Vadot			compatible = "renesas,r8a779h0-rst";
312*01950c46SEmmanuel Vadot			reg = <0 0xe6160000 0 0x4000>;
313*01950c46SEmmanuel Vadot		};
314*01950c46SEmmanuel Vadot
315*01950c46SEmmanuel Vadot		sysc: system-controller@e6180000 {
316*01950c46SEmmanuel Vadot			compatible = "renesas,r8a779h0-sysc";
317*01950c46SEmmanuel Vadot			reg = <0 0xe6180000 0 0x4000>;
318*01950c46SEmmanuel Vadot			#power-domain-cells = <1>;
319*01950c46SEmmanuel Vadot		};
320*01950c46SEmmanuel Vadot
321*01950c46SEmmanuel Vadot		i2c0: i2c@e6500000 {
322*01950c46SEmmanuel Vadot			compatible = "renesas,i2c-r8a779h0",
323*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-i2c";
324*01950c46SEmmanuel Vadot			reg = <0 0xe6500000 0 0x40>;
325*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 610 IRQ_TYPE_LEVEL_HIGH>;
326*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 518>;
327*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
328*01950c46SEmmanuel Vadot			resets = <&cpg 518>;
329*01950c46SEmmanuel Vadot			dmas = <&dmac1 0x91>, <&dmac1 0x90>,
330*01950c46SEmmanuel Vadot			       <&dmac2 0x91>, <&dmac2 0x90>;
331*01950c46SEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
332*01950c46SEmmanuel Vadot			i2c-scl-internal-delay-ns = <110>;
333*01950c46SEmmanuel Vadot			#address-cells = <1>;
334*01950c46SEmmanuel Vadot			#size-cells = <0>;
335*01950c46SEmmanuel Vadot			status = "disabled";
336*01950c46SEmmanuel Vadot		};
337*01950c46SEmmanuel Vadot
338*01950c46SEmmanuel Vadot		i2c1: i2c@e6508000 {
339*01950c46SEmmanuel Vadot			compatible = "renesas,i2c-r8a779h0",
340*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-i2c";
341*01950c46SEmmanuel Vadot			reg = <0 0xe6508000 0 0x40>;
342*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 611 IRQ_TYPE_LEVEL_HIGH>;
343*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 519>;
344*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
345*01950c46SEmmanuel Vadot			resets = <&cpg 519>;
346*01950c46SEmmanuel Vadot			dmas = <&dmac1 0x93>, <&dmac1 0x92>,
347*01950c46SEmmanuel Vadot			       <&dmac2 0x93>, <&dmac2 0x92>;
348*01950c46SEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
349*01950c46SEmmanuel Vadot			i2c-scl-internal-delay-ns = <110>;
350*01950c46SEmmanuel Vadot			#address-cells = <1>;
351*01950c46SEmmanuel Vadot			#size-cells = <0>;
352*01950c46SEmmanuel Vadot			status = "disabled";
353*01950c46SEmmanuel Vadot		};
354*01950c46SEmmanuel Vadot
355*01950c46SEmmanuel Vadot		i2c2: i2c@e6510000 {
356*01950c46SEmmanuel Vadot			compatible = "renesas,i2c-r8a779h0",
357*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-i2c";
358*01950c46SEmmanuel Vadot			reg = <0 0xe6510000 0 0x40>;
359*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 612 IRQ_TYPE_LEVEL_HIGH>;
360*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 520>;
361*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
362*01950c46SEmmanuel Vadot			resets = <&cpg 520>;
363*01950c46SEmmanuel Vadot			dmas = <&dmac1 0x95>, <&dmac1 0x94>,
364*01950c46SEmmanuel Vadot			       <&dmac2 0x95>, <&dmac2 0x94>;
365*01950c46SEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
366*01950c46SEmmanuel Vadot			i2c-scl-internal-delay-ns = <110>;
367*01950c46SEmmanuel Vadot			#address-cells = <1>;
368*01950c46SEmmanuel Vadot			#size-cells = <0>;
369*01950c46SEmmanuel Vadot			status = "disabled";
370*01950c46SEmmanuel Vadot		};
371*01950c46SEmmanuel Vadot
372*01950c46SEmmanuel Vadot		i2c3: i2c@e66d0000 {
373*01950c46SEmmanuel Vadot			compatible = "renesas,i2c-r8a779h0",
374*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-i2c";
375*01950c46SEmmanuel Vadot			reg = <0 0xe66d0000 0 0x40>;
376*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 613 IRQ_TYPE_LEVEL_HIGH>;
377*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 521>;
378*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
379*01950c46SEmmanuel Vadot			resets = <&cpg 521>;
380*01950c46SEmmanuel Vadot			dmas = <&dmac1 0x97>, <&dmac1 0x96>,
381*01950c46SEmmanuel Vadot			       <&dmac2 0x97>, <&dmac2 0x96>;
382*01950c46SEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
383*01950c46SEmmanuel Vadot			i2c-scl-internal-delay-ns = <110>;
384*01950c46SEmmanuel Vadot			#address-cells = <1>;
385*01950c46SEmmanuel Vadot			#size-cells = <0>;
386*01950c46SEmmanuel Vadot			status = "disabled";
387*01950c46SEmmanuel Vadot		};
388*01950c46SEmmanuel Vadot
389*01950c46SEmmanuel Vadot		hscif0: serial@e6540000 {
390*01950c46SEmmanuel Vadot			compatible = "renesas,hscif-r8a779h0",
391*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-hscif", "renesas,hscif";
392*01950c46SEmmanuel Vadot			reg = <0 0xe6540000 0 0x60>;
393*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>;
394*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 514>,
395*01950c46SEmmanuel Vadot				 <&cpg CPG_CORE R8A779H0_CLK_SASYNCPERD1>,
396*01950c46SEmmanuel Vadot				 <&scif_clk>;
397*01950c46SEmmanuel Vadot			clock-names = "fck", "brg_int", "scif_clk";
398*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
399*01950c46SEmmanuel Vadot			resets = <&cpg 514>;
400*01950c46SEmmanuel Vadot			dmas = <&dmac1 0x31>, <&dmac1 0x30>,
401*01950c46SEmmanuel Vadot			       <&dmac2 0x31>, <&dmac2 0x30>;
402*01950c46SEmmanuel Vadot			dma-names = "tx", "rx", "tx", "rx";
403*01950c46SEmmanuel Vadot			status = "disabled";
404*01950c46SEmmanuel Vadot		};
405*01950c46SEmmanuel Vadot
406*01950c46SEmmanuel Vadot		avb0: ethernet@e6800000 {
407*01950c46SEmmanuel Vadot			compatible = "renesas,etheravb-r8a779h0",
408*01950c46SEmmanuel Vadot				     "renesas,etheravb-rcar-gen4";
409*01950c46SEmmanuel Vadot			reg = <0 0xe6800000 0 0x1000>;
410*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
411*01950c46SEmmanuel Vadot				     <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
412*01950c46SEmmanuel Vadot				     <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>,
413*01950c46SEmmanuel Vadot				     <GIC_SPI 338 IRQ_TYPE_LEVEL_HIGH>,
414*01950c46SEmmanuel Vadot				     <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>,
415*01950c46SEmmanuel Vadot				     <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>,
416*01950c46SEmmanuel Vadot				     <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>,
417*01950c46SEmmanuel Vadot				     <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>,
418*01950c46SEmmanuel Vadot				     <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>,
419*01950c46SEmmanuel Vadot				     <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>,
420*01950c46SEmmanuel Vadot				     <GIC_SPI 345 IRQ_TYPE_LEVEL_HIGH>,
421*01950c46SEmmanuel Vadot				     <GIC_SPI 346 IRQ_TYPE_LEVEL_HIGH>,
422*01950c46SEmmanuel Vadot				     <GIC_SPI 347 IRQ_TYPE_LEVEL_HIGH>,
423*01950c46SEmmanuel Vadot				     <GIC_SPI 348 IRQ_TYPE_LEVEL_HIGH>,
424*01950c46SEmmanuel Vadot				     <GIC_SPI 349 IRQ_TYPE_LEVEL_HIGH>,
425*01950c46SEmmanuel Vadot				     <GIC_SPI 350 IRQ_TYPE_LEVEL_HIGH>,
426*01950c46SEmmanuel Vadot				     <GIC_SPI 351 IRQ_TYPE_LEVEL_HIGH>,
427*01950c46SEmmanuel Vadot				     <GIC_SPI 352 IRQ_TYPE_LEVEL_HIGH>,
428*01950c46SEmmanuel Vadot				     <GIC_SPI 353 IRQ_TYPE_LEVEL_HIGH>,
429*01950c46SEmmanuel Vadot				     <GIC_SPI 354 IRQ_TYPE_LEVEL_HIGH>,
430*01950c46SEmmanuel Vadot				     <GIC_SPI 355 IRQ_TYPE_LEVEL_HIGH>,
431*01950c46SEmmanuel Vadot				     <GIC_SPI 356 IRQ_TYPE_LEVEL_HIGH>,
432*01950c46SEmmanuel Vadot				     <GIC_SPI 357 IRQ_TYPE_LEVEL_HIGH>,
433*01950c46SEmmanuel Vadot				     <GIC_SPI 358 IRQ_TYPE_LEVEL_HIGH>,
434*01950c46SEmmanuel Vadot				     <GIC_SPI 359 IRQ_TYPE_LEVEL_HIGH>;
435*01950c46SEmmanuel Vadot			interrupt-names = "ch0", "ch1", "ch2", "ch3",
436*01950c46SEmmanuel Vadot					  "ch4", "ch5", "ch6", "ch7",
437*01950c46SEmmanuel Vadot					  "ch8", "ch9", "ch10", "ch11",
438*01950c46SEmmanuel Vadot					  "ch12", "ch13", "ch14", "ch15",
439*01950c46SEmmanuel Vadot					  "ch16", "ch17", "ch18", "ch19",
440*01950c46SEmmanuel Vadot					  "ch20", "ch21", "ch22", "ch23",
441*01950c46SEmmanuel Vadot					  "ch24";
442*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 211>;
443*01950c46SEmmanuel Vadot			clock-names = "fck";
444*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_C4>;
445*01950c46SEmmanuel Vadot			resets = <&cpg 211>;
446*01950c46SEmmanuel Vadot			phy-mode = "rgmii";
447*01950c46SEmmanuel Vadot			rx-internal-delay-ps = <0>;
448*01950c46SEmmanuel Vadot			tx-internal-delay-ps = <0>;
449*01950c46SEmmanuel Vadot			#address-cells = <1>;
450*01950c46SEmmanuel Vadot			#size-cells = <0>;
451*01950c46SEmmanuel Vadot			status = "disabled";
452*01950c46SEmmanuel Vadot		};
453*01950c46SEmmanuel Vadot
454*01950c46SEmmanuel Vadot		avb1: ethernet@e6810000 {
455*01950c46SEmmanuel Vadot			compatible = "renesas,etheravb-r8a779h0",
456*01950c46SEmmanuel Vadot				     "renesas,etheravb-rcar-gen4";
457*01950c46SEmmanuel Vadot			reg = <0 0xe6810000 0 0x1000>;
458*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 360 IRQ_TYPE_LEVEL_HIGH>,
459*01950c46SEmmanuel Vadot				     <GIC_SPI 361 IRQ_TYPE_LEVEL_HIGH>,
460*01950c46SEmmanuel Vadot				     <GIC_SPI 362 IRQ_TYPE_LEVEL_HIGH>,
461*01950c46SEmmanuel Vadot				     <GIC_SPI 363 IRQ_TYPE_LEVEL_HIGH>,
462*01950c46SEmmanuel Vadot				     <GIC_SPI 364 IRQ_TYPE_LEVEL_HIGH>,
463*01950c46SEmmanuel Vadot				     <GIC_SPI 365 IRQ_TYPE_LEVEL_HIGH>,
464*01950c46SEmmanuel Vadot				     <GIC_SPI 366 IRQ_TYPE_LEVEL_HIGH>,
465*01950c46SEmmanuel Vadot				     <GIC_SPI 367 IRQ_TYPE_LEVEL_HIGH>,
466*01950c46SEmmanuel Vadot				     <GIC_SPI 368 IRQ_TYPE_LEVEL_HIGH>,
467*01950c46SEmmanuel Vadot				     <GIC_SPI 369 IRQ_TYPE_LEVEL_HIGH>,
468*01950c46SEmmanuel Vadot				     <GIC_SPI 370 IRQ_TYPE_LEVEL_HIGH>,
469*01950c46SEmmanuel Vadot				     <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH>,
470*01950c46SEmmanuel Vadot				     <GIC_SPI 372 IRQ_TYPE_LEVEL_HIGH>,
471*01950c46SEmmanuel Vadot				     <GIC_SPI 373 IRQ_TYPE_LEVEL_HIGH>,
472*01950c46SEmmanuel Vadot				     <GIC_SPI 374 IRQ_TYPE_LEVEL_HIGH>,
473*01950c46SEmmanuel Vadot				     <GIC_SPI 375 IRQ_TYPE_LEVEL_HIGH>,
474*01950c46SEmmanuel Vadot				     <GIC_SPI 376 IRQ_TYPE_LEVEL_HIGH>,
475*01950c46SEmmanuel Vadot				     <GIC_SPI 377 IRQ_TYPE_LEVEL_HIGH>,
476*01950c46SEmmanuel Vadot				     <GIC_SPI 378 IRQ_TYPE_LEVEL_HIGH>,
477*01950c46SEmmanuel Vadot				     <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
478*01950c46SEmmanuel Vadot				     <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
479*01950c46SEmmanuel Vadot				     <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
480*01950c46SEmmanuel Vadot				     <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>,
481*01950c46SEmmanuel Vadot				     <GIC_SPI 383 IRQ_TYPE_LEVEL_HIGH>,
482*01950c46SEmmanuel Vadot				     <GIC_SPI 384 IRQ_TYPE_LEVEL_HIGH>;
483*01950c46SEmmanuel Vadot			interrupt-names = "ch0", "ch1", "ch2", "ch3",
484*01950c46SEmmanuel Vadot					  "ch4", "ch5", "ch6", "ch7",
485*01950c46SEmmanuel Vadot					  "ch8", "ch9", "ch10", "ch11",
486*01950c46SEmmanuel Vadot					  "ch12", "ch13", "ch14", "ch15",
487*01950c46SEmmanuel Vadot					  "ch16", "ch17", "ch18", "ch19",
488*01950c46SEmmanuel Vadot					  "ch20", "ch21", "ch22", "ch23",
489*01950c46SEmmanuel Vadot					  "ch24";
490*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 212>;
491*01950c46SEmmanuel Vadot			clock-names = "fck";
492*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_C4>;
493*01950c46SEmmanuel Vadot			resets = <&cpg 212>;
494*01950c46SEmmanuel Vadot			phy-mode = "rgmii";
495*01950c46SEmmanuel Vadot			rx-internal-delay-ps = <0>;
496*01950c46SEmmanuel Vadot			tx-internal-delay-ps = <0>;
497*01950c46SEmmanuel Vadot			#address-cells = <1>;
498*01950c46SEmmanuel Vadot			#size-cells = <0>;
499*01950c46SEmmanuel Vadot			status = "disabled";
500*01950c46SEmmanuel Vadot		};
501*01950c46SEmmanuel Vadot
502*01950c46SEmmanuel Vadot		avb2: ethernet@e6820000 {
503*01950c46SEmmanuel Vadot			compatible = "renesas,etheravb-r8a779h0",
504*01950c46SEmmanuel Vadot				     "renesas,etheravb-rcar-gen4";
505*01950c46SEmmanuel Vadot			reg = <0 0xe6820000 0 0x1000>;
506*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 385 IRQ_TYPE_LEVEL_HIGH>,
507*01950c46SEmmanuel Vadot				     <GIC_SPI 386 IRQ_TYPE_LEVEL_HIGH>,
508*01950c46SEmmanuel Vadot				     <GIC_SPI 387 IRQ_TYPE_LEVEL_HIGH>,
509*01950c46SEmmanuel Vadot				     <GIC_SPI 388 IRQ_TYPE_LEVEL_HIGH>,
510*01950c46SEmmanuel Vadot				     <GIC_SPI 389 IRQ_TYPE_LEVEL_HIGH>,
511*01950c46SEmmanuel Vadot				     <GIC_SPI 390 IRQ_TYPE_LEVEL_HIGH>,
512*01950c46SEmmanuel Vadot				     <GIC_SPI 391 IRQ_TYPE_LEVEL_HIGH>,
513*01950c46SEmmanuel Vadot				     <GIC_SPI 392 IRQ_TYPE_LEVEL_HIGH>,
514*01950c46SEmmanuel Vadot				     <GIC_SPI 393 IRQ_TYPE_LEVEL_HIGH>,
515*01950c46SEmmanuel Vadot				     <GIC_SPI 394 IRQ_TYPE_LEVEL_HIGH>,
516*01950c46SEmmanuel Vadot				     <GIC_SPI 395 IRQ_TYPE_LEVEL_HIGH>,
517*01950c46SEmmanuel Vadot				     <GIC_SPI 396 IRQ_TYPE_LEVEL_HIGH>,
518*01950c46SEmmanuel Vadot				     <GIC_SPI 397 IRQ_TYPE_LEVEL_HIGH>,
519*01950c46SEmmanuel Vadot				     <GIC_SPI 398 IRQ_TYPE_LEVEL_HIGH>,
520*01950c46SEmmanuel Vadot				     <GIC_SPI 399 IRQ_TYPE_LEVEL_HIGH>,
521*01950c46SEmmanuel Vadot				     <GIC_SPI 400 IRQ_TYPE_LEVEL_HIGH>,
522*01950c46SEmmanuel Vadot				     <GIC_SPI 401 IRQ_TYPE_LEVEL_HIGH>,
523*01950c46SEmmanuel Vadot				     <GIC_SPI 402 IRQ_TYPE_LEVEL_HIGH>,
524*01950c46SEmmanuel Vadot				     <GIC_SPI 403 IRQ_TYPE_LEVEL_HIGH>,
525*01950c46SEmmanuel Vadot				     <GIC_SPI 404 IRQ_TYPE_LEVEL_HIGH>,
526*01950c46SEmmanuel Vadot				     <GIC_SPI 405 IRQ_TYPE_LEVEL_HIGH>,
527*01950c46SEmmanuel Vadot				     <GIC_SPI 406 IRQ_TYPE_LEVEL_HIGH>,
528*01950c46SEmmanuel Vadot				     <GIC_SPI 407 IRQ_TYPE_LEVEL_HIGH>,
529*01950c46SEmmanuel Vadot				     <GIC_SPI 408 IRQ_TYPE_LEVEL_HIGH>,
530*01950c46SEmmanuel Vadot				     <GIC_SPI 409 IRQ_TYPE_LEVEL_HIGH>;
531*01950c46SEmmanuel Vadot			interrupt-names = "ch0", "ch1", "ch2", "ch3",
532*01950c46SEmmanuel Vadot					  "ch4", "ch5", "ch6", "ch7",
533*01950c46SEmmanuel Vadot					  "ch8", "ch9", "ch10", "ch11",
534*01950c46SEmmanuel Vadot					  "ch12", "ch13", "ch14", "ch15",
535*01950c46SEmmanuel Vadot					  "ch16", "ch17", "ch18", "ch19",
536*01950c46SEmmanuel Vadot					  "ch20", "ch21", "ch22", "ch23",
537*01950c46SEmmanuel Vadot					  "ch24";
538*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 213>;
539*01950c46SEmmanuel Vadot			clock-names = "fck";
540*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_C4>;
541*01950c46SEmmanuel Vadot			resets = <&cpg 213>;
542*01950c46SEmmanuel Vadot			phy-mode = "rgmii";
543*01950c46SEmmanuel Vadot			rx-internal-delay-ps = <0>;
544*01950c46SEmmanuel Vadot			tx-internal-delay-ps = <0>;
545*01950c46SEmmanuel Vadot			#address-cells = <1>;
546*01950c46SEmmanuel Vadot			#size-cells = <0>;
547*01950c46SEmmanuel Vadot			status = "disabled";
548*01950c46SEmmanuel Vadot		};
549*01950c46SEmmanuel Vadot
550*01950c46SEmmanuel Vadot		dmac1: dma-controller@e7350000 {
551*01950c46SEmmanuel Vadot			compatible = "renesas,dmac-r8a779h0",
552*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-dmac";
553*01950c46SEmmanuel Vadot			reg = <0 0xe7350000 0 0x1000>,
554*01950c46SEmmanuel Vadot			      <0 0xe7300000 0 0x10000>;
555*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>,
556*01950c46SEmmanuel Vadot				     <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>,
557*01950c46SEmmanuel Vadot				     <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>,
558*01950c46SEmmanuel Vadot				     <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>,
559*01950c46SEmmanuel Vadot				     <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>,
560*01950c46SEmmanuel Vadot				     <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>,
561*01950c46SEmmanuel Vadot				     <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>,
562*01950c46SEmmanuel Vadot				     <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
563*01950c46SEmmanuel Vadot				     <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>,
564*01950c46SEmmanuel Vadot				     <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>,
565*01950c46SEmmanuel Vadot				     <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>,
566*01950c46SEmmanuel Vadot				     <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>,
567*01950c46SEmmanuel Vadot				     <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>,
568*01950c46SEmmanuel Vadot				     <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>,
569*01950c46SEmmanuel Vadot				     <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>,
570*01950c46SEmmanuel Vadot				     <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>,
571*01950c46SEmmanuel Vadot				     <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
572*01950c46SEmmanuel Vadot			interrupt-names = "error",
573*01950c46SEmmanuel Vadot					  "ch0", "ch1", "ch2", "ch3", "ch4",
574*01950c46SEmmanuel Vadot					  "ch5", "ch6", "ch7", "ch8", "ch9",
575*01950c46SEmmanuel Vadot					  "ch10", "ch11", "ch12", "ch13",
576*01950c46SEmmanuel Vadot					  "ch14", "ch15";
577*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 709>;
578*01950c46SEmmanuel Vadot			clock-names = "fck";
579*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
580*01950c46SEmmanuel Vadot			resets = <&cpg 709>;
581*01950c46SEmmanuel Vadot			#dma-cells = <1>;
582*01950c46SEmmanuel Vadot			dma-channels = <16>;
583*01950c46SEmmanuel Vadot		};
584*01950c46SEmmanuel Vadot
585*01950c46SEmmanuel Vadot		dmac2: dma-controller@e7351000 {
586*01950c46SEmmanuel Vadot			compatible = "renesas,dmac-r8a779h0",
587*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-dmac";
588*01950c46SEmmanuel Vadot			reg = <0 0xe7351000 0 0x1000>,
589*01950c46SEmmanuel Vadot			      <0 0xe7310000 0 0x10000>;
590*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>,
591*01950c46SEmmanuel Vadot				     <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>,
592*01950c46SEmmanuel Vadot				     <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>,
593*01950c46SEmmanuel Vadot				     <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>,
594*01950c46SEmmanuel Vadot				     <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>,
595*01950c46SEmmanuel Vadot				     <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>,
596*01950c46SEmmanuel Vadot				     <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>,
597*01950c46SEmmanuel Vadot				     <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>,
598*01950c46SEmmanuel Vadot				     <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>;
599*01950c46SEmmanuel Vadot			interrupt-names = "error",
600*01950c46SEmmanuel Vadot					  "ch0", "ch1", "ch2", "ch3", "ch4",
601*01950c46SEmmanuel Vadot					  "ch5", "ch6", "ch7";
602*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 710>;
603*01950c46SEmmanuel Vadot			clock-names = "fck";
604*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
605*01950c46SEmmanuel Vadot			resets = <&cpg 710>;
606*01950c46SEmmanuel Vadot			#dma-cells = <1>;
607*01950c46SEmmanuel Vadot			dma-channels = <8>;
608*01950c46SEmmanuel Vadot		};
609*01950c46SEmmanuel Vadot
610*01950c46SEmmanuel Vadot		mmc0: mmc@ee140000 {
611*01950c46SEmmanuel Vadot			compatible = "renesas,sdhi-r8a779h0",
612*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-sdhi";
613*01950c46SEmmanuel Vadot			reg = <0 0xee140000 0 0x2000>;
614*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 440 IRQ_TYPE_LEVEL_HIGH>;
615*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 706>,
616*01950c46SEmmanuel Vadot				 <&cpg CPG_CORE R8A779H0_CLK_SD0H>;
617*01950c46SEmmanuel Vadot			clock-names = "core", "clkh";
618*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
619*01950c46SEmmanuel Vadot			resets = <&cpg 706>;
620*01950c46SEmmanuel Vadot			max-frequency = <200000000>;
621*01950c46SEmmanuel Vadot			status = "disabled";
622*01950c46SEmmanuel Vadot		};
623*01950c46SEmmanuel Vadot
624*01950c46SEmmanuel Vadot		rpc: spi@ee200000 {
625*01950c46SEmmanuel Vadot			compatible = "renesas,r8a779h0-rpc-if",
626*01950c46SEmmanuel Vadot				     "renesas,rcar-gen4-rpc-if";
627*01950c46SEmmanuel Vadot			reg = <0 0xee200000 0 0x200>,
628*01950c46SEmmanuel Vadot			      <0 0x08000000 0 0x04000000>,
629*01950c46SEmmanuel Vadot			      <0 0xee208000 0 0x100>;
630*01950c46SEmmanuel Vadot			reg-names = "regs", "dirmap", "wbuf";
631*01950c46SEmmanuel Vadot			interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
632*01950c46SEmmanuel Vadot			clocks = <&cpg CPG_MOD 629>;
633*01950c46SEmmanuel Vadot			power-domains = <&sysc R8A779H0_PD_ALWAYS_ON>;
634*01950c46SEmmanuel Vadot			resets = <&cpg 629>;
635*01950c46SEmmanuel Vadot			#address-cells = <1>;
636*01950c46SEmmanuel Vadot			#size-cells = <0>;
637*01950c46SEmmanuel Vadot			status = "disabled";
638*01950c46SEmmanuel Vadot		};
639*01950c46SEmmanuel Vadot
640*01950c46SEmmanuel Vadot		gic: interrupt-controller@f1000000 {
641*01950c46SEmmanuel Vadot			compatible = "arm,gic-v3";
642*01950c46SEmmanuel Vadot			#interrupt-cells = <3>;
643*01950c46SEmmanuel Vadot			#address-cells = <0>;
644*01950c46SEmmanuel Vadot			interrupt-controller;
645*01950c46SEmmanuel Vadot			reg = <0x0 0xf1000000 0 0x20000>,
646*01950c46SEmmanuel Vadot			      <0x0 0xf1060000 0 0x110000>;
647*01950c46SEmmanuel Vadot			interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>;
648*01950c46SEmmanuel Vadot		};
649*01950c46SEmmanuel Vadot
650*01950c46SEmmanuel Vadot		prr: chipid@fff00044 {
651*01950c46SEmmanuel Vadot			compatible = "renesas,prr";
652*01950c46SEmmanuel Vadot			reg = <0 0xfff00044 0 4>;
653*01950c46SEmmanuel Vadot		};
654*01950c46SEmmanuel Vadot	};
655*01950c46SEmmanuel Vadot
656*01950c46SEmmanuel Vadot	timer {
657*01950c46SEmmanuel Vadot		compatible = "arm,armv8-timer";
658*01950c46SEmmanuel Vadot		interrupts-extended = <&gic GIC_PPI 13 IRQ_TYPE_LEVEL_LOW>,
659*01950c46SEmmanuel Vadot				      <&gic GIC_PPI 14 IRQ_TYPE_LEVEL_LOW>,
660*01950c46SEmmanuel Vadot				      <&gic GIC_PPI 11 IRQ_TYPE_LEVEL_LOW>,
661*01950c46SEmmanuel Vadot				      <&gic GIC_PPI 10 IRQ_TYPE_LEVEL_LOW>,
662*01950c46SEmmanuel Vadot				      <&gic GIC_PPI 12 IRQ_TYPE_LEVEL_LOW>;
663*01950c46SEmmanuel Vadot	};
664*01950c46SEmmanuel Vadot};
665