xref: /freebsd/sys/contrib/device-tree/src/arm64/ti/k3-j721e-main.dtsi (revision 8d13bc63c0e1d50bc9e47ac1f26329c999bfecf0)
1c66ec88fSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0
2c66ec88fSEmmanuel Vadot/*
3c66ec88fSEmmanuel Vadot * Device Tree Source for J721E SoC Family Main Domain peripherals
4c66ec88fSEmmanuel Vadot *
55def4c47SEmmanuel Vadot * Copyright (C) 2016-2020 Texas Instruments Incorporated - https://www.ti.com/
6c66ec88fSEmmanuel Vadot */
7c66ec88fSEmmanuel Vadot#include <dt-bindings/phy/phy.h>
8d5b0e70fSEmmanuel Vadot#include <dt-bindings/phy/phy-ti.h>
9c66ec88fSEmmanuel Vadot#include <dt-bindings/mux/mux.h>
10aa1a8ff2SEmmanuel Vadot
11aa1a8ff2SEmmanuel Vadot#include "k3-serdes.h"
12c66ec88fSEmmanuel Vadot
135956d97fSEmmanuel Vadot/ {
145956d97fSEmmanuel Vadot	cmn_refclk: clock-cmnrefclk {
155956d97fSEmmanuel Vadot		#clock-cells = <0>;
165956d97fSEmmanuel Vadot		compatible = "fixed-clock";
175956d97fSEmmanuel Vadot		clock-frequency = <0>;
185956d97fSEmmanuel Vadot	};
195956d97fSEmmanuel Vadot
205956d97fSEmmanuel Vadot	cmn_refclk1: clock-cmnrefclk1 {
215956d97fSEmmanuel Vadot		#clock-cells = <0>;
225956d97fSEmmanuel Vadot		compatible = "fixed-clock";
235956d97fSEmmanuel Vadot		clock-frequency = <0>;
245956d97fSEmmanuel Vadot	};
255956d97fSEmmanuel Vadot};
265956d97fSEmmanuel Vadot
27c66ec88fSEmmanuel Vadot&cbass_main {
28c66ec88fSEmmanuel Vadot	msmc_ram: sram@70000000 {
29c66ec88fSEmmanuel Vadot		compatible = "mmio-sram";
30c66ec88fSEmmanuel Vadot		reg = <0x0 0x70000000 0x0 0x800000>;
31c66ec88fSEmmanuel Vadot		#address-cells = <1>;
32c66ec88fSEmmanuel Vadot		#size-cells = <1>;
33c66ec88fSEmmanuel Vadot		ranges = <0x0 0x0 0x70000000 0x800000>;
34c66ec88fSEmmanuel Vadot
35c66ec88fSEmmanuel Vadot		atf-sram@0 {
36c66ec88fSEmmanuel Vadot			reg = <0x0 0x20000>;
37c66ec88fSEmmanuel Vadot		};
38c66ec88fSEmmanuel Vadot	};
39c66ec88fSEmmanuel Vadot
40c66ec88fSEmmanuel Vadot	scm_conf: scm-conf@100000 {
41c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-system-controller", "syscon", "simple-mfd";
42c66ec88fSEmmanuel Vadot		reg = <0 0x00100000 0 0x1c000>; /* excludes pinctrl region */
43c66ec88fSEmmanuel Vadot		#address-cells = <1>;
44c66ec88fSEmmanuel Vadot		#size-cells = <1>;
45c66ec88fSEmmanuel Vadot		ranges = <0x0 0x0 0x00100000 0x1c000>;
46c66ec88fSEmmanuel Vadot
47e67e8565SEmmanuel Vadot		serdes_ln_ctrl: mux-controller@4080 {
48c66ec88fSEmmanuel Vadot			compatible = "mmio-mux";
49c66ec88fSEmmanuel Vadot			reg = <0x00004080 0x50>;
50c66ec88fSEmmanuel Vadot			#mux-control-cells = <1>;
51c66ec88fSEmmanuel Vadot			mux-reg-masks = <0x4080 0x3>, <0x4084 0x3>, /* SERDES0 lane0/1 select */
52c66ec88fSEmmanuel Vadot					<0x4090 0x3>, <0x4094 0x3>, /* SERDES1 lane0/1 select */
53c66ec88fSEmmanuel Vadot					<0x40a0 0x3>, <0x40a4 0x3>, /* SERDES2 lane0/1 select */
54c66ec88fSEmmanuel Vadot					<0x40b0 0x3>, <0x40b4 0x3>, /* SERDES3 lane0/1 select */
55c66ec88fSEmmanuel Vadot					<0x40c0 0x3>, <0x40c4 0x3>, <0x40c8 0x3>, <0x40cc 0x3>;
56c66ec88fSEmmanuel Vadot					/* SERDES4 lane0/1/2/3 select */
576be33864SEmmanuel Vadot			idle-states = <J721E_SERDES0_LANE0_PCIE0_LANE0>, <J721E_SERDES0_LANE1_PCIE0_LANE1>,
586be33864SEmmanuel Vadot				      <J721E_SERDES1_LANE0_PCIE1_LANE0>, <J721E_SERDES1_LANE1_PCIE1_LANE1>,
596be33864SEmmanuel Vadot				      <J721E_SERDES2_LANE0_PCIE2_LANE0>, <J721E_SERDES2_LANE1_PCIE2_LANE1>,
606be33864SEmmanuel Vadot				      <MUX_IDLE_AS_IS>, <J721E_SERDES3_LANE1_USB3_0>,
616be33864SEmmanuel Vadot				      <J721E_SERDES4_LANE0_EDP_LANE0>, <J721E_SERDES4_LANE1_EDP_LANE1>,
626be33864SEmmanuel Vadot				      <J721E_SERDES4_LANE2_EDP_LANE2>, <J721E_SERDES4_LANE3_EDP_LANE3>;
63c66ec88fSEmmanuel Vadot		};
64c66ec88fSEmmanuel Vadot
65fac71e4eSEmmanuel Vadot		cpsw0_phy_gmii_sel: phy@4044 {
66fac71e4eSEmmanuel Vadot			compatible = "ti,j721e-cpsw9g-phy-gmii-sel";
67fac71e4eSEmmanuel Vadot			ti,qsgmii-main-ports = <2>, <2>;
68fac71e4eSEmmanuel Vadot			reg = <0x4044 0x20>;
69fac71e4eSEmmanuel Vadot			#phy-cells = <1>;
70fac71e4eSEmmanuel Vadot		};
71fac71e4eSEmmanuel Vadot
72c66ec88fSEmmanuel Vadot		usb_serdes_mux: mux-controller@4000 {
73c66ec88fSEmmanuel Vadot			compatible = "mmio-mux";
74c66ec88fSEmmanuel Vadot			#mux-control-cells = <1>;
75c66ec88fSEmmanuel Vadot			mux-reg-masks = <0x4000 0x8000000>, /* USB0 to SERDES0/3 mux */
76c66ec88fSEmmanuel Vadot					<0x4010 0x8000000>; /* USB1 to SERDES1/2 mux */
77c66ec88fSEmmanuel Vadot		};
788bab661aSEmmanuel Vadot
798bab661aSEmmanuel Vadot		ehrpwm_tbclk: clock-controller@4140 {
80aa1a8ff2SEmmanuel Vadot			compatible = "ti,am654-ehrpwm-tbclk";
818bab661aSEmmanuel Vadot			reg = <0x4140 0x18>;
828bab661aSEmmanuel Vadot			#clock-cells = <1>;
838bab661aSEmmanuel Vadot		};
848bab661aSEmmanuel Vadot	};
858bab661aSEmmanuel Vadot
868bab661aSEmmanuel Vadot	main_ehrpwm0: pwm@3000000 {
878bab661aSEmmanuel Vadot		compatible = "ti,am654-ehrpwm", "ti,am3352-ehrpwm";
888bab661aSEmmanuel Vadot		#pwm-cells = <3>;
898bab661aSEmmanuel Vadot		reg = <0x00 0x3000000 0x00 0x100>;
908bab661aSEmmanuel Vadot		power-domains = <&k3_pds 83 TI_SCI_PD_EXCLUSIVE>;
918bab661aSEmmanuel Vadot		clocks = <&ehrpwm_tbclk 0>, <&k3_clks 83 0>;
928bab661aSEmmanuel Vadot		clock-names = "tbclk", "fck";
938bab661aSEmmanuel Vadot		status = "disabled";
948bab661aSEmmanuel Vadot	};
958bab661aSEmmanuel Vadot
968bab661aSEmmanuel Vadot	main_ehrpwm1: pwm@3010000 {
978bab661aSEmmanuel Vadot		compatible = "ti,am654-ehrpwm", "ti,am3352-ehrpwm";
988bab661aSEmmanuel Vadot		#pwm-cells = <3>;
998bab661aSEmmanuel Vadot		reg = <0x00 0x3010000 0x00 0x100>;
1008bab661aSEmmanuel Vadot		power-domains = <&k3_pds 84 TI_SCI_PD_EXCLUSIVE>;
1018bab661aSEmmanuel Vadot		clocks = <&ehrpwm_tbclk 1>, <&k3_clks 84 0>;
1028bab661aSEmmanuel Vadot		clock-names = "tbclk", "fck";
1038bab661aSEmmanuel Vadot		status = "disabled";
1048bab661aSEmmanuel Vadot	};
1058bab661aSEmmanuel Vadot
1068bab661aSEmmanuel Vadot	main_ehrpwm2: pwm@3020000 {
1078bab661aSEmmanuel Vadot		compatible = "ti,am654-ehrpwm", "ti,am3352-ehrpwm";
1088bab661aSEmmanuel Vadot		#pwm-cells = <3>;
1098bab661aSEmmanuel Vadot		reg = <0x00 0x3020000 0x00 0x100>;
1108bab661aSEmmanuel Vadot		power-domains = <&k3_pds 85 TI_SCI_PD_EXCLUSIVE>;
1118bab661aSEmmanuel Vadot		clocks = <&ehrpwm_tbclk 2>, <&k3_clks 85 0>;
1128bab661aSEmmanuel Vadot		clock-names = "tbclk", "fck";
1138bab661aSEmmanuel Vadot		status = "disabled";
1148bab661aSEmmanuel Vadot	};
1158bab661aSEmmanuel Vadot
1168bab661aSEmmanuel Vadot	main_ehrpwm3: pwm@3030000 {
1178bab661aSEmmanuel Vadot		compatible = "ti,am654-ehrpwm", "ti,am3352-ehrpwm";
1188bab661aSEmmanuel Vadot		#pwm-cells = <3>;
1198bab661aSEmmanuel Vadot		reg = <0x00 0x3030000 0x00 0x100>;
1208bab661aSEmmanuel Vadot		power-domains = <&k3_pds 86 TI_SCI_PD_EXCLUSIVE>;
1218bab661aSEmmanuel Vadot		clocks = <&ehrpwm_tbclk 3>, <&k3_clks 86 0>;
1228bab661aSEmmanuel Vadot		clock-names = "tbclk", "fck";
1238bab661aSEmmanuel Vadot		status = "disabled";
1248bab661aSEmmanuel Vadot	};
1258bab661aSEmmanuel Vadot
1268bab661aSEmmanuel Vadot	main_ehrpwm4: pwm@3040000 {
1278bab661aSEmmanuel Vadot		compatible = "ti,am654-ehrpwm", "ti,am3352-ehrpwm";
1288bab661aSEmmanuel Vadot		#pwm-cells = <3>;
1298bab661aSEmmanuel Vadot		reg = <0x00 0x3040000 0x00 0x100>;
1308bab661aSEmmanuel Vadot		power-domains = <&k3_pds 87 TI_SCI_PD_EXCLUSIVE>;
1318bab661aSEmmanuel Vadot		clocks = <&ehrpwm_tbclk 4>, <&k3_clks 87 0>;
1328bab661aSEmmanuel Vadot		clock-names = "tbclk", "fck";
1338bab661aSEmmanuel Vadot		status = "disabled";
1348bab661aSEmmanuel Vadot	};
1358bab661aSEmmanuel Vadot
1368bab661aSEmmanuel Vadot	main_ehrpwm5: pwm@3050000 {
1378bab661aSEmmanuel Vadot		compatible = "ti,am654-ehrpwm", "ti,am3352-ehrpwm";
1388bab661aSEmmanuel Vadot		#pwm-cells = <3>;
1398bab661aSEmmanuel Vadot		reg = <0x00 0x3050000 0x00 0x100>;
1408bab661aSEmmanuel Vadot		power-domains = <&k3_pds 88 TI_SCI_PD_EXCLUSIVE>;
1418bab661aSEmmanuel Vadot		clocks = <&ehrpwm_tbclk 5>, <&k3_clks 88 0>;
1428bab661aSEmmanuel Vadot		clock-names = "tbclk", "fck";
1438bab661aSEmmanuel Vadot		status = "disabled";
144c66ec88fSEmmanuel Vadot	};
145c66ec88fSEmmanuel Vadot
146c66ec88fSEmmanuel Vadot	gic500: interrupt-controller@1800000 {
147c66ec88fSEmmanuel Vadot		compatible = "arm,gic-v3";
148c66ec88fSEmmanuel Vadot		#address-cells = <2>;
149c66ec88fSEmmanuel Vadot		#size-cells = <2>;
150c66ec88fSEmmanuel Vadot		ranges;
151c66ec88fSEmmanuel Vadot		#interrupt-cells = <3>;
152c66ec88fSEmmanuel Vadot		interrupt-controller;
153c66ec88fSEmmanuel Vadot		reg = <0x00 0x01800000 0x00 0x10000>,	/* GICD */
154c9ccf3a3SEmmanuel Vadot		      <0x00 0x01900000 0x00 0x100000>,	/* GICR */
155c9ccf3a3SEmmanuel Vadot		      <0x00 0x6f000000 0x00 0x2000>,	/* GICC */
156c9ccf3a3SEmmanuel Vadot		      <0x00 0x6f010000 0x00 0x1000>,	/* GICH */
157c9ccf3a3SEmmanuel Vadot		      <0x00 0x6f020000 0x00 0x2000>;	/* GICV */
158c66ec88fSEmmanuel Vadot
159c66ec88fSEmmanuel Vadot		/* vcpumntirq: virtual CPU interface maintenance interrupt */
160c66ec88fSEmmanuel Vadot		interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>;
161c66ec88fSEmmanuel Vadot
162c66ec88fSEmmanuel Vadot		gic_its: msi-controller@1820000 {
163c66ec88fSEmmanuel Vadot			compatible = "arm,gic-v3-its";
164c66ec88fSEmmanuel Vadot			reg = <0x00 0x01820000 0x00 0x10000>;
165c66ec88fSEmmanuel Vadot			socionext,synquacer-pre-its = <0x1000000 0x400000>;
166c66ec88fSEmmanuel Vadot			msi-controller;
167c66ec88fSEmmanuel Vadot			#msi-cells = <1>;
168c66ec88fSEmmanuel Vadot		};
169c66ec88fSEmmanuel Vadot	};
170c66ec88fSEmmanuel Vadot
1712eb4d8dcSEmmanuel Vadot	main_gpio_intr: interrupt-controller@a00000 {
172c66ec88fSEmmanuel Vadot		compatible = "ti,sci-intr";
1732eb4d8dcSEmmanuel Vadot		reg = <0x00 0x00a00000 0x00 0x800>;
174c66ec88fSEmmanuel Vadot		ti,intr-trigger-type = <1>;
175c66ec88fSEmmanuel Vadot		interrupt-controller;
176c66ec88fSEmmanuel Vadot		interrupt-parent = <&gic500>;
177c66ec88fSEmmanuel Vadot		#interrupt-cells = <1>;
178c66ec88fSEmmanuel Vadot		ti,sci = <&dmsc>;
179c66ec88fSEmmanuel Vadot		ti,sci-dev-id = <131>;
180c66ec88fSEmmanuel Vadot		ti,interrupt-ranges = <8 392 56>;
181c66ec88fSEmmanuel Vadot	};
182c66ec88fSEmmanuel Vadot
1832eb4d8dcSEmmanuel Vadot	main_navss: bus@30000000 {
18484943d6fSEmmanuel Vadot		compatible = "simple-bus";
185c66ec88fSEmmanuel Vadot		#address-cells = <2>;
186c66ec88fSEmmanuel Vadot		#size-cells = <2>;
1872eb4d8dcSEmmanuel Vadot		ranges = <0x00 0x30000000 0x00 0x30000000 0x00 0x0c400000>;
188c66ec88fSEmmanuel Vadot		dma-coherent;
189c66ec88fSEmmanuel Vadot		dma-ranges;
190c66ec88fSEmmanuel Vadot
191c66ec88fSEmmanuel Vadot		ti,sci-dev-id = <199>;
192c66ec88fSEmmanuel Vadot
1932eb4d8dcSEmmanuel Vadot		main_navss_intr: interrupt-controller@310e0000 {
194c66ec88fSEmmanuel Vadot			compatible = "ti,sci-intr";
1952eb4d8dcSEmmanuel Vadot			reg = <0x0 0x310e0000 0x0 0x4000>;
196c66ec88fSEmmanuel Vadot			ti,intr-trigger-type = <4>;
197c66ec88fSEmmanuel Vadot			interrupt-controller;
198c66ec88fSEmmanuel Vadot			interrupt-parent = <&gic500>;
199c66ec88fSEmmanuel Vadot			#interrupt-cells = <1>;
200c66ec88fSEmmanuel Vadot			ti,sci = <&dmsc>;
201c66ec88fSEmmanuel Vadot			ti,sci-dev-id = <213>;
202c66ec88fSEmmanuel Vadot			ti,interrupt-ranges = <0 64 64>,
203c66ec88fSEmmanuel Vadot					      <64 448 64>,
204c66ec88fSEmmanuel Vadot					      <128 672 64>;
205c66ec88fSEmmanuel Vadot		};
206c66ec88fSEmmanuel Vadot
207c66ec88fSEmmanuel Vadot		main_udmass_inta: interrupt-controller@33d00000 {
208c66ec88fSEmmanuel Vadot			compatible = "ti,sci-inta";
209c66ec88fSEmmanuel Vadot			reg = <0x0 0x33d00000 0x0 0x100000>;
210c66ec88fSEmmanuel Vadot			interrupt-controller;
211c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
212c66ec88fSEmmanuel Vadot			msi-controller;
2135def4c47SEmmanuel Vadot			#interrupt-cells = <0>;
214c66ec88fSEmmanuel Vadot			ti,sci = <&dmsc>;
215c66ec88fSEmmanuel Vadot			ti,sci-dev-id = <209>;
216c66ec88fSEmmanuel Vadot			ti,interrupt-ranges = <0 0 256>;
217c66ec88fSEmmanuel Vadot		};
218c66ec88fSEmmanuel Vadot
219c66ec88fSEmmanuel Vadot		secure_proxy_main: mailbox@32c00000 {
220c66ec88fSEmmanuel Vadot			compatible = "ti,am654-secure-proxy";
221c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
222c66ec88fSEmmanuel Vadot			reg-names = "target_data", "rt", "scfg";
223c66ec88fSEmmanuel Vadot			reg = <0x00 0x32c00000 0x00 0x100000>,
224c66ec88fSEmmanuel Vadot			      <0x00 0x32400000 0x00 0x100000>,
225c66ec88fSEmmanuel Vadot			      <0x00 0x32800000 0x00 0x100000>;
226c66ec88fSEmmanuel Vadot			interrupt-names = "rx_011";
227c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
228c66ec88fSEmmanuel Vadot		};
229c66ec88fSEmmanuel Vadot
230c66ec88fSEmmanuel Vadot		smmu0: iommu@36600000 {
231c66ec88fSEmmanuel Vadot			compatible = "arm,smmu-v3";
232c66ec88fSEmmanuel Vadot			reg = <0x0 0x36600000 0x0 0x100000>;
233c66ec88fSEmmanuel Vadot			interrupt-parent = <&gic500>;
234c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 772 IRQ_TYPE_EDGE_RISING>,
235c66ec88fSEmmanuel Vadot				     <GIC_SPI 768 IRQ_TYPE_EDGE_RISING>;
236c66ec88fSEmmanuel Vadot			interrupt-names = "eventq", "gerror";
237c66ec88fSEmmanuel Vadot			#iommu-cells = <1>;
238c66ec88fSEmmanuel Vadot		};
239c66ec88fSEmmanuel Vadot
240c66ec88fSEmmanuel Vadot		hwspinlock: spinlock@30e00000 {
241c66ec88fSEmmanuel Vadot			compatible = "ti,am654-hwspinlock";
242c66ec88fSEmmanuel Vadot			reg = <0x00 0x30e00000 0x00 0x1000>;
243c66ec88fSEmmanuel Vadot			#hwlock-cells = <1>;
244c66ec88fSEmmanuel Vadot		};
245c66ec88fSEmmanuel Vadot
246c66ec88fSEmmanuel Vadot		mailbox0_cluster0: mailbox@31f80000 {
247c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
248c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f80000 0x00 0x200>;
249c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
250c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
251c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
252c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
2538bab661aSEmmanuel Vadot			status = "disabled";
254c66ec88fSEmmanuel Vadot		};
255c66ec88fSEmmanuel Vadot
256c66ec88fSEmmanuel Vadot		mailbox0_cluster1: mailbox@31f81000 {
257c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
258c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f81000 0x00 0x200>;
259c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
260c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
261c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
262c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
2638bab661aSEmmanuel Vadot			status = "disabled";
264c66ec88fSEmmanuel Vadot		};
265c66ec88fSEmmanuel Vadot
266c66ec88fSEmmanuel Vadot		mailbox0_cluster2: mailbox@31f82000 {
267c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
268c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f82000 0x00 0x200>;
269c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
270c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
271c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
272c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
2738bab661aSEmmanuel Vadot			status = "disabled";
274c66ec88fSEmmanuel Vadot		};
275c66ec88fSEmmanuel Vadot
276c66ec88fSEmmanuel Vadot		mailbox0_cluster3: mailbox@31f83000 {
277c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
278c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f83000 0x00 0x200>;
279c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
280c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
281c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
282c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
2838bab661aSEmmanuel Vadot			status = "disabled";
284c66ec88fSEmmanuel Vadot		};
285c66ec88fSEmmanuel Vadot
286c66ec88fSEmmanuel Vadot		mailbox0_cluster4: mailbox@31f84000 {
287c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
288c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f84000 0x00 0x200>;
289c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
290c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
291c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
292c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
2938bab661aSEmmanuel Vadot			status = "disabled";
294c66ec88fSEmmanuel Vadot		};
295c66ec88fSEmmanuel Vadot
296c66ec88fSEmmanuel Vadot		mailbox0_cluster5: mailbox@31f85000 {
297c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
298c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f85000 0x00 0x200>;
299c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
300c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
301c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
302c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
3038bab661aSEmmanuel Vadot			status = "disabled";
304c66ec88fSEmmanuel Vadot		};
305c66ec88fSEmmanuel Vadot
306c66ec88fSEmmanuel Vadot		mailbox0_cluster6: mailbox@31f86000 {
307c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
308c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f86000 0x00 0x200>;
309c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
310c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
311c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
312c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
3138bab661aSEmmanuel Vadot			status = "disabled";
314c66ec88fSEmmanuel Vadot		};
315c66ec88fSEmmanuel Vadot
316c66ec88fSEmmanuel Vadot		mailbox0_cluster7: mailbox@31f87000 {
317c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
318c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f87000 0x00 0x200>;
319c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
320c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
321c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
322c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
3238bab661aSEmmanuel Vadot			status = "disabled";
324c66ec88fSEmmanuel Vadot		};
325c66ec88fSEmmanuel Vadot
326c66ec88fSEmmanuel Vadot		mailbox0_cluster8: mailbox@31f88000 {
327c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
328c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f88000 0x00 0x200>;
329c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
330c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
331c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
332c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
3338bab661aSEmmanuel Vadot			status = "disabled";
334c66ec88fSEmmanuel Vadot		};
335c66ec88fSEmmanuel Vadot
336c66ec88fSEmmanuel Vadot		mailbox0_cluster9: mailbox@31f89000 {
337c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
338c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f89000 0x00 0x200>;
339c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
340c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
341c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
342c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
3438bab661aSEmmanuel Vadot			status = "disabled";
344c66ec88fSEmmanuel Vadot		};
345c66ec88fSEmmanuel Vadot
346c66ec88fSEmmanuel Vadot		mailbox0_cluster10: mailbox@31f8a000 {
347c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
348c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f8a000 0x00 0x200>;
349c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
350c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
351c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
352c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
3538bab661aSEmmanuel Vadot			status = "disabled";
354c66ec88fSEmmanuel Vadot		};
355c66ec88fSEmmanuel Vadot
356c66ec88fSEmmanuel Vadot		mailbox0_cluster11: mailbox@31f8b000 {
357c66ec88fSEmmanuel Vadot			compatible = "ti,am654-mailbox";
358c66ec88fSEmmanuel Vadot			reg = <0x00 0x31f8b000 0x00 0x200>;
359c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
360c66ec88fSEmmanuel Vadot			ti,mbox-num-users = <4>;
361c66ec88fSEmmanuel Vadot			ti,mbox-num-fifos = <16>;
362c66ec88fSEmmanuel Vadot			interrupt-parent = <&main_navss_intr>;
3638bab661aSEmmanuel Vadot			status = "disabled";
364c66ec88fSEmmanuel Vadot		};
365c66ec88fSEmmanuel Vadot
366c66ec88fSEmmanuel Vadot		main_ringacc: ringacc@3c000000 {
367c66ec88fSEmmanuel Vadot			compatible = "ti,am654-navss-ringacc";
368c66ec88fSEmmanuel Vadot			reg = <0x0 0x3c000000 0x0 0x400000>,
369c66ec88fSEmmanuel Vadot			      <0x0 0x38000000 0x0 0x400000>,
370c66ec88fSEmmanuel Vadot			      <0x0 0x31120000 0x0 0x100>,
371aa1a8ff2SEmmanuel Vadot			      <0x0 0x33000000 0x0 0x40000>,
372aa1a8ff2SEmmanuel Vadot			      <0x0 0x31080000 0x0 0x40000>;
373aa1a8ff2SEmmanuel Vadot			reg-names = "rt", "fifos", "proxy_gcfg", "proxy_target", "cfg";
374c66ec88fSEmmanuel Vadot			ti,num-rings = <1024>;
375c66ec88fSEmmanuel Vadot			ti,sci-rm-range-gp-rings = <0x1>; /* GP ring range */
376c66ec88fSEmmanuel Vadot			ti,sci = <&dmsc>;
377c66ec88fSEmmanuel Vadot			ti,sci-dev-id = <211>;
378c66ec88fSEmmanuel Vadot			msi-parent = <&main_udmass_inta>;
379c66ec88fSEmmanuel Vadot		};
380c66ec88fSEmmanuel Vadot
381c66ec88fSEmmanuel Vadot		main_udmap: dma-controller@31150000 {
382c66ec88fSEmmanuel Vadot			compatible = "ti,j721e-navss-main-udmap";
383c66ec88fSEmmanuel Vadot			reg = <0x0 0x31150000 0x0 0x100>,
384c66ec88fSEmmanuel Vadot			      <0x0 0x34000000 0x0 0x100000>,
385*8d13bc63SEmmanuel Vadot			      <0x0 0x35000000 0x0 0x100000>,
386*8d13bc63SEmmanuel Vadot			      <0x0 0x30b00000 0x0 0x20000>,
387*8d13bc63SEmmanuel Vadot			      <0x0 0x30c00000 0x0 0x10000>,
388*8d13bc63SEmmanuel Vadot			      <0x0 0x30d00000 0x0 0x8000>;
389*8d13bc63SEmmanuel Vadot			reg-names = "gcfg", "rchanrt", "tchanrt",
390*8d13bc63SEmmanuel Vadot				    "tchan", "rchan", "rflow";
391c66ec88fSEmmanuel Vadot			msi-parent = <&main_udmass_inta>;
392c66ec88fSEmmanuel Vadot			#dma-cells = <1>;
393c66ec88fSEmmanuel Vadot
394c66ec88fSEmmanuel Vadot			ti,sci = <&dmsc>;
395c66ec88fSEmmanuel Vadot			ti,sci-dev-id = <212>;
396c66ec88fSEmmanuel Vadot			ti,ringacc = <&main_ringacc>;
397c66ec88fSEmmanuel Vadot
398c66ec88fSEmmanuel Vadot			ti,sci-rm-range-tchan = <0x0d>, /* TX_CHAN */
399c66ec88fSEmmanuel Vadot						<0x0f>, /* TX_HCHAN */
400c66ec88fSEmmanuel Vadot						<0x10>; /* TX_UHCHAN */
401c66ec88fSEmmanuel Vadot			ti,sci-rm-range-rchan = <0x0a>, /* RX_CHAN */
402c66ec88fSEmmanuel Vadot						<0x0b>, /* RX_HCHAN */
403c66ec88fSEmmanuel Vadot						<0x0c>; /* RX_UHCHAN */
404c66ec88fSEmmanuel Vadot			ti,sci-rm-range-rflow = <0x00>; /* GP RFLOW */
405c66ec88fSEmmanuel Vadot		};
406c66ec88fSEmmanuel Vadot
407c66ec88fSEmmanuel Vadot		cpts@310d0000 {
408c66ec88fSEmmanuel Vadot			compatible = "ti,j721e-cpts";
409c66ec88fSEmmanuel Vadot			reg = <0x0 0x310d0000 0x0 0x400>;
410c66ec88fSEmmanuel Vadot			reg-names = "cpts";
411c66ec88fSEmmanuel Vadot			clocks = <&k3_clks 201 1>;
412c66ec88fSEmmanuel Vadot			clock-names = "cpts";
413c66ec88fSEmmanuel Vadot			interrupts-extended = <&main_navss_intr 391>;
414c66ec88fSEmmanuel Vadot			interrupt-names = "cpts";
415c66ec88fSEmmanuel Vadot			ti,cpts-periodic-outputs = <6>;
416c66ec88fSEmmanuel Vadot			ti,cpts-ext-ts-inputs = <8>;
417c66ec88fSEmmanuel Vadot		};
418c66ec88fSEmmanuel Vadot	};
419c66ec88fSEmmanuel Vadot
420fac71e4eSEmmanuel Vadot	cpsw0: ethernet@c000000 {
421fac71e4eSEmmanuel Vadot		compatible = "ti,j721e-cpswxg-nuss";
422fac71e4eSEmmanuel Vadot		#address-cells = <2>;
423fac71e4eSEmmanuel Vadot		#size-cells = <2>;
424fac71e4eSEmmanuel Vadot		reg = <0x0 0xc000000 0x0 0x200000>;
425fac71e4eSEmmanuel Vadot		reg-names = "cpsw_nuss";
426fac71e4eSEmmanuel Vadot		ranges = <0x0 0x0 0x0 0x0c000000 0x0 0x200000>;
427fac71e4eSEmmanuel Vadot		clocks = <&k3_clks 19 89>;
428fac71e4eSEmmanuel Vadot		clock-names = "fck";
429fac71e4eSEmmanuel Vadot		power-domains = <&k3_pds 19 TI_SCI_PD_EXCLUSIVE>;
430fac71e4eSEmmanuel Vadot
431fac71e4eSEmmanuel Vadot		dmas = <&main_udmap 0xca00>,
432fac71e4eSEmmanuel Vadot		       <&main_udmap 0xca01>,
433fac71e4eSEmmanuel Vadot		       <&main_udmap 0xca02>,
434fac71e4eSEmmanuel Vadot		       <&main_udmap 0xca03>,
435fac71e4eSEmmanuel Vadot		       <&main_udmap 0xca04>,
436fac71e4eSEmmanuel Vadot		       <&main_udmap 0xca05>,
437fac71e4eSEmmanuel Vadot		       <&main_udmap 0xca06>,
438fac71e4eSEmmanuel Vadot		       <&main_udmap 0xca07>,
439fac71e4eSEmmanuel Vadot		       <&main_udmap 0x4a00>;
440fac71e4eSEmmanuel Vadot		dma-names = "tx0", "tx1", "tx2", "tx3",
441fac71e4eSEmmanuel Vadot			    "tx4", "tx5", "tx6", "tx7",
442fac71e4eSEmmanuel Vadot			    "rx";
443fac71e4eSEmmanuel Vadot
444fac71e4eSEmmanuel Vadot		status = "disabled";
445fac71e4eSEmmanuel Vadot
446fac71e4eSEmmanuel Vadot		ethernet-ports {
447fac71e4eSEmmanuel Vadot			#address-cells = <1>;
448fac71e4eSEmmanuel Vadot			#size-cells = <0>;
449fac71e4eSEmmanuel Vadot			cpsw0_port1: port@1 {
450fac71e4eSEmmanuel Vadot				reg = <1>;
451fac71e4eSEmmanuel Vadot				ti,mac-only;
452fac71e4eSEmmanuel Vadot				label = "port1";
453fac71e4eSEmmanuel Vadot				status = "disabled";
454fac71e4eSEmmanuel Vadot			};
455fac71e4eSEmmanuel Vadot
456fac71e4eSEmmanuel Vadot			cpsw0_port2: port@2 {
457fac71e4eSEmmanuel Vadot				reg = <2>;
458fac71e4eSEmmanuel Vadot				ti,mac-only;
459fac71e4eSEmmanuel Vadot				label = "port2";
460fac71e4eSEmmanuel Vadot				status = "disabled";
461fac71e4eSEmmanuel Vadot			};
462fac71e4eSEmmanuel Vadot
463fac71e4eSEmmanuel Vadot			cpsw0_port3: port@3 {
464fac71e4eSEmmanuel Vadot				reg = <3>;
465fac71e4eSEmmanuel Vadot				ti,mac-only;
466fac71e4eSEmmanuel Vadot				label = "port3";
467fac71e4eSEmmanuel Vadot				status = "disabled";
468fac71e4eSEmmanuel Vadot			};
469fac71e4eSEmmanuel Vadot
470fac71e4eSEmmanuel Vadot			cpsw0_port4: port@4 {
471fac71e4eSEmmanuel Vadot				reg = <4>;
472fac71e4eSEmmanuel Vadot				ti,mac-only;
473fac71e4eSEmmanuel Vadot				label = "port4";
474fac71e4eSEmmanuel Vadot				status = "disabled";
475fac71e4eSEmmanuel Vadot			};
476fac71e4eSEmmanuel Vadot
477fac71e4eSEmmanuel Vadot			cpsw0_port5: port@5 {
478fac71e4eSEmmanuel Vadot				reg = <5>;
479fac71e4eSEmmanuel Vadot				ti,mac-only;
480fac71e4eSEmmanuel Vadot				label = "port5";
481fac71e4eSEmmanuel Vadot				status = "disabled";
482fac71e4eSEmmanuel Vadot			};
483fac71e4eSEmmanuel Vadot
484fac71e4eSEmmanuel Vadot			cpsw0_port6: port@6 {
485fac71e4eSEmmanuel Vadot				reg = <6>;
486fac71e4eSEmmanuel Vadot				ti,mac-only;
487fac71e4eSEmmanuel Vadot				label = "port6";
488fac71e4eSEmmanuel Vadot				status = "disabled";
489fac71e4eSEmmanuel Vadot			};
490fac71e4eSEmmanuel Vadot
491fac71e4eSEmmanuel Vadot			cpsw0_port7: port@7 {
492fac71e4eSEmmanuel Vadot				reg = <7>;
493fac71e4eSEmmanuel Vadot				ti,mac-only;
494fac71e4eSEmmanuel Vadot				label = "port7";
495fac71e4eSEmmanuel Vadot				status = "disabled";
496fac71e4eSEmmanuel Vadot			};
497fac71e4eSEmmanuel Vadot
498fac71e4eSEmmanuel Vadot			cpsw0_port8: port@8 {
499fac71e4eSEmmanuel Vadot				reg = <8>;
500fac71e4eSEmmanuel Vadot				ti,mac-only;
501fac71e4eSEmmanuel Vadot				label = "port8";
502fac71e4eSEmmanuel Vadot				status = "disabled";
503fac71e4eSEmmanuel Vadot			};
504fac71e4eSEmmanuel Vadot		};
505fac71e4eSEmmanuel Vadot
506fac71e4eSEmmanuel Vadot		cpsw9g_mdio: mdio@f00 {
507fac71e4eSEmmanuel Vadot			compatible = "ti,cpsw-mdio","ti,davinci_mdio";
508fac71e4eSEmmanuel Vadot			reg = <0x0 0xf00 0x0 0x100>;
509fac71e4eSEmmanuel Vadot			#address-cells = <1>;
510fac71e4eSEmmanuel Vadot			#size-cells = <0>;
511fac71e4eSEmmanuel Vadot			clocks = <&k3_clks 19 89>;
512fac71e4eSEmmanuel Vadot			clock-names = "fck";
513fac71e4eSEmmanuel Vadot			bus_freq = <1000000>;
514fac71e4eSEmmanuel Vadot			status = "disabled";
515fac71e4eSEmmanuel Vadot		};
516fac71e4eSEmmanuel Vadot
517fac71e4eSEmmanuel Vadot		cpts@3d000 {
518fac71e4eSEmmanuel Vadot			compatible = "ti,j721e-cpts";
519fac71e4eSEmmanuel Vadot			reg = <0x0 0x3d000 0x0 0x400>;
520fac71e4eSEmmanuel Vadot			clocks = <&k3_clks 19 16>;
521fac71e4eSEmmanuel Vadot			clock-names = "cpts";
522fac71e4eSEmmanuel Vadot			interrupts-extended = <&gic500 GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
523fac71e4eSEmmanuel Vadot			interrupt-names = "cpts";
524fac71e4eSEmmanuel Vadot			ti,cpts-ext-ts-inputs = <4>;
525fac71e4eSEmmanuel Vadot			ti,cpts-periodic-outputs = <2>;
526fac71e4eSEmmanuel Vadot		};
527fac71e4eSEmmanuel Vadot	};
528fac71e4eSEmmanuel Vadot
5296be33864SEmmanuel Vadot	main_crypto: crypto@4e00000 {
5306be33864SEmmanuel Vadot		compatible = "ti,j721e-sa2ul";
5316be33864SEmmanuel Vadot		reg = <0x0 0x4e00000 0x0 0x1200>;
5326be33864SEmmanuel Vadot		power-domains = <&k3_pds 264 TI_SCI_PD_EXCLUSIVE>;
5336be33864SEmmanuel Vadot		#address-cells = <2>;
5346be33864SEmmanuel Vadot		#size-cells = <2>;
5356be33864SEmmanuel Vadot		ranges = <0x0 0x04e00000 0x00 0x04e00000 0x0 0x30000>;
5366be33864SEmmanuel Vadot
5376be33864SEmmanuel Vadot		dmas = <&main_udmap 0xc000>, <&main_udmap 0x4000>,
5386be33864SEmmanuel Vadot				<&main_udmap 0x4001>;
5396be33864SEmmanuel Vadot		dma-names = "tx", "rx1", "rx2";
5406be33864SEmmanuel Vadot
5416be33864SEmmanuel Vadot		rng: rng@4e10000 {
5426be33864SEmmanuel Vadot			compatible = "inside-secure,safexcel-eip76";
5436be33864SEmmanuel Vadot			reg = <0x0 0x4e10000 0x0 0x7d>;
5446be33864SEmmanuel Vadot			interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
5456be33864SEmmanuel Vadot		};
5466be33864SEmmanuel Vadot	};
5476be33864SEmmanuel Vadot
5486be33864SEmmanuel Vadot	main_pmx0: pinctrl@11c000 {
549c66ec88fSEmmanuel Vadot		compatible = "pinctrl-single";
550c66ec88fSEmmanuel Vadot		/* Proxy 0 addressing */
551c66ec88fSEmmanuel Vadot		reg = <0x0 0x11c000 0x0 0x2b4>;
552c66ec88fSEmmanuel Vadot		#pinctrl-cells = <1>;
553c66ec88fSEmmanuel Vadot		pinctrl-single,register-width = <32>;
554c66ec88fSEmmanuel Vadot		pinctrl-single,function-mask = <0xffffffff>;
555c66ec88fSEmmanuel Vadot	};
556c66ec88fSEmmanuel Vadot
557f126890aSEmmanuel Vadot	/* TIMERIO pad input CTRLMMR_TIMER*_CTRL registers */
558f126890aSEmmanuel Vadot	main_timerio_input: pinctrl@104200 {
559f126890aSEmmanuel Vadot		compatible = "pinctrl-single";
560f126890aSEmmanuel Vadot		reg = <0x00 0x104200 0x00 0x50>;
561f126890aSEmmanuel Vadot		#pinctrl-cells = <1>;
562f126890aSEmmanuel Vadot		pinctrl-single,register-width = <32>;
563f126890aSEmmanuel Vadot		pinctrl-single,function-mask = <0x00000007>;
564f126890aSEmmanuel Vadot	};
565f126890aSEmmanuel Vadot
566f126890aSEmmanuel Vadot	/* TIMERIO pad output CTCTRLMMR_TIMERIO*_CTRL registers */
567f126890aSEmmanuel Vadot	main_timerio_output: pinctrl@104280 {
568f126890aSEmmanuel Vadot		compatible = "pinctrl-single";
569f126890aSEmmanuel Vadot		reg = <0x00 0x104280 0x00 0x20>;
570f126890aSEmmanuel Vadot		#pinctrl-cells = <1>;
571f126890aSEmmanuel Vadot		pinctrl-single,register-width = <32>;
572f126890aSEmmanuel Vadot		pinctrl-single,function-mask = <0x0000001f>;
573f126890aSEmmanuel Vadot	};
574f126890aSEmmanuel Vadot
575c66ec88fSEmmanuel Vadot	serdes_wiz0: wiz@5000000 {
576c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-wiz-16g";
577c66ec88fSEmmanuel Vadot		#address-cells = <1>;
578c66ec88fSEmmanuel Vadot		#size-cells = <1>;
579c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 292 TI_SCI_PD_EXCLUSIVE>;
5805956d97fSEmmanuel Vadot		clocks = <&k3_clks 292 5>, <&k3_clks 292 11>, <&cmn_refclk>;
581c66ec88fSEmmanuel Vadot		clock-names = "fck", "core_ref_clk", "ext_ref_clk";
582c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 292 11>, <&k3_clks 292 0>;
583c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 292 15>, <&k3_clks 292 4>;
584c66ec88fSEmmanuel Vadot		num-lanes = <2>;
585c66ec88fSEmmanuel Vadot		#reset-cells = <1>;
586c66ec88fSEmmanuel Vadot		ranges = <0x5000000 0x0 0x5000000 0x10000>;
587c66ec88fSEmmanuel Vadot
588c66ec88fSEmmanuel Vadot		wiz0_pll0_refclk: pll0-refclk {
5895956d97fSEmmanuel Vadot			clocks = <&k3_clks 292 11>, <&cmn_refclk>;
590c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
591c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz0_pll0_refclk>;
592c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 292 11>;
593c66ec88fSEmmanuel Vadot		};
594c66ec88fSEmmanuel Vadot
595c66ec88fSEmmanuel Vadot		wiz0_pll1_refclk: pll1-refclk {
5965956d97fSEmmanuel Vadot			clocks = <&k3_clks 292 0>, <&cmn_refclk1>;
597c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
598c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz0_pll1_refclk>;
599c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 292 0>;
600c66ec88fSEmmanuel Vadot		};
601c66ec88fSEmmanuel Vadot
602c66ec88fSEmmanuel Vadot		wiz0_refclk_dig: refclk-dig {
6035956d97fSEmmanuel Vadot			clocks = <&k3_clks 292 11>, <&k3_clks 292 0>, <&cmn_refclk>, <&cmn_refclk1>;
604c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
605c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz0_refclk_dig>;
606c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 292 11>;
607c66ec88fSEmmanuel Vadot		};
608c66ec88fSEmmanuel Vadot
609c66ec88fSEmmanuel Vadot		wiz0_cmn_refclk_dig_div: cmn-refclk-dig-div {
610c66ec88fSEmmanuel Vadot			clocks = <&wiz0_refclk_dig>;
611c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
612c66ec88fSEmmanuel Vadot		};
613c66ec88fSEmmanuel Vadot
614c66ec88fSEmmanuel Vadot		wiz0_cmn_refclk1_dig_div: cmn-refclk1-dig-div {
615c66ec88fSEmmanuel Vadot			clocks = <&wiz0_pll1_refclk>;
616c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
617c66ec88fSEmmanuel Vadot		};
618c66ec88fSEmmanuel Vadot
619c66ec88fSEmmanuel Vadot		serdes0: serdes@5000000 {
620c66ec88fSEmmanuel Vadot			compatible = "ti,sierra-phy-t0";
621c66ec88fSEmmanuel Vadot			reg-names = "serdes";
622c66ec88fSEmmanuel Vadot			reg = <0x5000000 0x10000>;
623c66ec88fSEmmanuel Vadot			#address-cells = <1>;
624c66ec88fSEmmanuel Vadot			#size-cells = <0>;
6255956d97fSEmmanuel Vadot			#clock-cells = <1>;
626c66ec88fSEmmanuel Vadot			resets = <&serdes_wiz0 0>;
627c66ec88fSEmmanuel Vadot			reset-names = "sierra_reset";
6285956d97fSEmmanuel Vadot			clocks = <&wiz0_cmn_refclk_dig_div>, <&wiz0_cmn_refclk1_dig_div>,
6295956d97fSEmmanuel Vadot				 <&wiz0_pll0_refclk>, <&wiz0_pll1_refclk>;
6305956d97fSEmmanuel Vadot			clock-names = "cmn_refclk_dig_div", "cmn_refclk1_dig_div",
6315956d97fSEmmanuel Vadot				      "pll0_refclk", "pll1_refclk";
632c66ec88fSEmmanuel Vadot		};
633c66ec88fSEmmanuel Vadot	};
634c66ec88fSEmmanuel Vadot
635c66ec88fSEmmanuel Vadot	serdes_wiz1: wiz@5010000 {
636c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-wiz-16g";
637c66ec88fSEmmanuel Vadot		#address-cells = <1>;
638c66ec88fSEmmanuel Vadot		#size-cells = <1>;
639c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 293 TI_SCI_PD_EXCLUSIVE>;
6405956d97fSEmmanuel Vadot		clocks = <&k3_clks 293 5>, <&k3_clks 293 13>, <&cmn_refclk>;
641c66ec88fSEmmanuel Vadot		clock-names = "fck", "core_ref_clk", "ext_ref_clk";
642c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 293 13>, <&k3_clks 293 0>;
643c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 293 17>, <&k3_clks 293 4>;
644c66ec88fSEmmanuel Vadot		num-lanes = <2>;
645c66ec88fSEmmanuel Vadot		#reset-cells = <1>;
646c66ec88fSEmmanuel Vadot		ranges = <0x5010000 0x0 0x5010000 0x10000>;
647c66ec88fSEmmanuel Vadot
648c66ec88fSEmmanuel Vadot		wiz1_pll0_refclk: pll0-refclk {
6495956d97fSEmmanuel Vadot			clocks = <&k3_clks 293 13>, <&cmn_refclk>;
650c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
651c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz1_pll0_refclk>;
652c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 293 13>;
653c66ec88fSEmmanuel Vadot		};
654c66ec88fSEmmanuel Vadot
655c66ec88fSEmmanuel Vadot		wiz1_pll1_refclk: pll1-refclk {
6565956d97fSEmmanuel Vadot			clocks = <&k3_clks 293 0>, <&cmn_refclk1>;
657c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
658c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz1_pll1_refclk>;
659c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 293 0>;
660c66ec88fSEmmanuel Vadot		};
661c66ec88fSEmmanuel Vadot
662c66ec88fSEmmanuel Vadot		wiz1_refclk_dig: refclk-dig {
6635956d97fSEmmanuel Vadot			clocks = <&k3_clks 293 13>, <&k3_clks 293 0>, <&cmn_refclk>, <&cmn_refclk1>;
664c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
665c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz1_refclk_dig>;
666c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 293 13>;
667c66ec88fSEmmanuel Vadot		};
668c66ec88fSEmmanuel Vadot
669c66ec88fSEmmanuel Vadot		wiz1_cmn_refclk_dig_div: cmn-refclk-dig-div {
670c66ec88fSEmmanuel Vadot			clocks = <&wiz1_refclk_dig>;
671c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
672c66ec88fSEmmanuel Vadot		};
673c66ec88fSEmmanuel Vadot
674c66ec88fSEmmanuel Vadot		wiz1_cmn_refclk1_dig_div: cmn-refclk1-dig-div {
675c66ec88fSEmmanuel Vadot			clocks = <&wiz1_pll1_refclk>;
676c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
677c66ec88fSEmmanuel Vadot		};
678c66ec88fSEmmanuel Vadot
679c66ec88fSEmmanuel Vadot		serdes1: serdes@5010000 {
680c66ec88fSEmmanuel Vadot			compatible = "ti,sierra-phy-t0";
681c66ec88fSEmmanuel Vadot			reg-names = "serdes";
682c66ec88fSEmmanuel Vadot			reg = <0x5010000 0x10000>;
683c66ec88fSEmmanuel Vadot			#address-cells = <1>;
684c66ec88fSEmmanuel Vadot			#size-cells = <0>;
6855956d97fSEmmanuel Vadot			#clock-cells = <1>;
686c66ec88fSEmmanuel Vadot			resets = <&serdes_wiz1 0>;
687c66ec88fSEmmanuel Vadot			reset-names = "sierra_reset";
6885956d97fSEmmanuel Vadot			clocks = <&wiz1_cmn_refclk_dig_div>, <&wiz1_cmn_refclk1_dig_div>,
6895956d97fSEmmanuel Vadot				 <&wiz1_pll0_refclk>, <&wiz1_pll1_refclk>;
6905956d97fSEmmanuel Vadot			clock-names = "cmn_refclk_dig_div", "cmn_refclk1_dig_div",
6915956d97fSEmmanuel Vadot				      "pll0_refclk", "pll1_refclk";
692c66ec88fSEmmanuel Vadot		};
693c66ec88fSEmmanuel Vadot	};
694c66ec88fSEmmanuel Vadot
695c66ec88fSEmmanuel Vadot	serdes_wiz2: wiz@5020000 {
696c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-wiz-16g";
697c66ec88fSEmmanuel Vadot		#address-cells = <1>;
698c66ec88fSEmmanuel Vadot		#size-cells = <1>;
699c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 294 TI_SCI_PD_EXCLUSIVE>;
7005956d97fSEmmanuel Vadot		clocks = <&k3_clks 294 5>, <&k3_clks 294 11>, <&cmn_refclk>;
701c66ec88fSEmmanuel Vadot		clock-names = "fck", "core_ref_clk", "ext_ref_clk";
702c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 294 11>, <&k3_clks 294 0>;
703c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 294 15>, <&k3_clks 294 4>;
704c66ec88fSEmmanuel Vadot		num-lanes = <2>;
705c66ec88fSEmmanuel Vadot		#reset-cells = <1>;
706c66ec88fSEmmanuel Vadot		ranges = <0x5020000 0x0 0x5020000 0x10000>;
707c66ec88fSEmmanuel Vadot
708c66ec88fSEmmanuel Vadot		wiz2_pll0_refclk: pll0-refclk {
7095956d97fSEmmanuel Vadot			clocks = <&k3_clks 294 11>, <&cmn_refclk>;
710c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
711c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz2_pll0_refclk>;
712c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 294 11>;
713c66ec88fSEmmanuel Vadot		};
714c66ec88fSEmmanuel Vadot
715c66ec88fSEmmanuel Vadot		wiz2_pll1_refclk: pll1-refclk {
7165956d97fSEmmanuel Vadot			clocks = <&k3_clks 294 0>, <&cmn_refclk1>;
717c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
718c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz2_pll1_refclk>;
719c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 294 0>;
720c66ec88fSEmmanuel Vadot		};
721c66ec88fSEmmanuel Vadot
722c66ec88fSEmmanuel Vadot		wiz2_refclk_dig: refclk-dig {
7235956d97fSEmmanuel Vadot			clocks = <&k3_clks 294 11>, <&k3_clks 294 0>, <&cmn_refclk>, <&cmn_refclk1>;
724c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
725c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz2_refclk_dig>;
726c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 294 11>;
727c66ec88fSEmmanuel Vadot		};
728c66ec88fSEmmanuel Vadot
729c66ec88fSEmmanuel Vadot		wiz2_cmn_refclk_dig_div: cmn-refclk-dig-div {
730c66ec88fSEmmanuel Vadot			clocks = <&wiz2_refclk_dig>;
731c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
732c66ec88fSEmmanuel Vadot		};
733c66ec88fSEmmanuel Vadot
734c66ec88fSEmmanuel Vadot		wiz2_cmn_refclk1_dig_div: cmn-refclk1-dig-div {
735c66ec88fSEmmanuel Vadot			clocks = <&wiz2_pll1_refclk>;
736c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
737c66ec88fSEmmanuel Vadot		};
738c66ec88fSEmmanuel Vadot
739c66ec88fSEmmanuel Vadot		serdes2: serdes@5020000 {
740c66ec88fSEmmanuel Vadot			compatible = "ti,sierra-phy-t0";
741c66ec88fSEmmanuel Vadot			reg-names = "serdes";
742c66ec88fSEmmanuel Vadot			reg = <0x5020000 0x10000>;
743c66ec88fSEmmanuel Vadot			#address-cells = <1>;
744c66ec88fSEmmanuel Vadot			#size-cells = <0>;
7455956d97fSEmmanuel Vadot			#clock-cells = <1>;
746c66ec88fSEmmanuel Vadot			resets = <&serdes_wiz2 0>;
747c66ec88fSEmmanuel Vadot			reset-names = "sierra_reset";
7485956d97fSEmmanuel Vadot			clocks = <&wiz2_cmn_refclk_dig_div>, <&wiz2_cmn_refclk1_dig_div>,
7495956d97fSEmmanuel Vadot				 <&wiz2_pll0_refclk>, <&wiz2_pll1_refclk>;
7505956d97fSEmmanuel Vadot			clock-names = "cmn_refclk_dig_div", "cmn_refclk1_dig_div",
7515956d97fSEmmanuel Vadot				      "pll0_refclk", "pll1_refclk";
752c66ec88fSEmmanuel Vadot		};
753c66ec88fSEmmanuel Vadot	};
754c66ec88fSEmmanuel Vadot
755c66ec88fSEmmanuel Vadot	serdes_wiz3: wiz@5030000 {
756c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-wiz-16g";
757c66ec88fSEmmanuel Vadot		#address-cells = <1>;
758c66ec88fSEmmanuel Vadot		#size-cells = <1>;
759c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 295 TI_SCI_PD_EXCLUSIVE>;
7605956d97fSEmmanuel Vadot		clocks = <&k3_clks 295 5>, <&k3_clks 295 9>, <&cmn_refclk>;
761c66ec88fSEmmanuel Vadot		clock-names = "fck", "core_ref_clk", "ext_ref_clk";
762c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 295 9>, <&k3_clks 295 0>;
763c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 295 13>, <&k3_clks 295 4>;
764c66ec88fSEmmanuel Vadot		num-lanes = <2>;
765c66ec88fSEmmanuel Vadot		#reset-cells = <1>;
766c66ec88fSEmmanuel Vadot		ranges = <0x5030000 0x0 0x5030000 0x10000>;
767c66ec88fSEmmanuel Vadot
768c66ec88fSEmmanuel Vadot		wiz3_pll0_refclk: pll0-refclk {
7695956d97fSEmmanuel Vadot			clocks = <&k3_clks 295 9>, <&cmn_refclk>;
770c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
771c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz3_pll0_refclk>;
772c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 295 9>;
773c66ec88fSEmmanuel Vadot		};
774c66ec88fSEmmanuel Vadot
775c66ec88fSEmmanuel Vadot		wiz3_pll1_refclk: pll1-refclk {
7765956d97fSEmmanuel Vadot			clocks = <&k3_clks 295 0>, <&cmn_refclk1>;
777c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
778c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz3_pll1_refclk>;
779c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 295 0>;
780c66ec88fSEmmanuel Vadot		};
781c66ec88fSEmmanuel Vadot
782c66ec88fSEmmanuel Vadot		wiz3_refclk_dig: refclk-dig {
7835956d97fSEmmanuel Vadot			clocks = <&k3_clks 295 9>, <&k3_clks 295 0>, <&cmn_refclk>, <&cmn_refclk1>;
784c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
785c66ec88fSEmmanuel Vadot			assigned-clocks = <&wiz3_refclk_dig>;
786c66ec88fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 295 9>;
787c66ec88fSEmmanuel Vadot		};
788c66ec88fSEmmanuel Vadot
789c66ec88fSEmmanuel Vadot		wiz3_cmn_refclk_dig_div: cmn-refclk-dig-div {
790c66ec88fSEmmanuel Vadot			clocks = <&wiz3_refclk_dig>;
791c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
792c66ec88fSEmmanuel Vadot		};
793c66ec88fSEmmanuel Vadot
794c66ec88fSEmmanuel Vadot		wiz3_cmn_refclk1_dig_div: cmn-refclk1-dig-div {
795c66ec88fSEmmanuel Vadot			clocks = <&wiz3_pll1_refclk>;
796c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
797c66ec88fSEmmanuel Vadot		};
798c66ec88fSEmmanuel Vadot
799c66ec88fSEmmanuel Vadot		serdes3: serdes@5030000 {
800c66ec88fSEmmanuel Vadot			compatible = "ti,sierra-phy-t0";
801c66ec88fSEmmanuel Vadot			reg-names = "serdes";
802c66ec88fSEmmanuel Vadot			reg = <0x5030000 0x10000>;
803c66ec88fSEmmanuel Vadot			#address-cells = <1>;
804c66ec88fSEmmanuel Vadot			#size-cells = <0>;
8055956d97fSEmmanuel Vadot			#clock-cells = <1>;
806c66ec88fSEmmanuel Vadot			resets = <&serdes_wiz3 0>;
807c66ec88fSEmmanuel Vadot			reset-names = "sierra_reset";
8085956d97fSEmmanuel Vadot			clocks = <&wiz3_cmn_refclk_dig_div>, <&wiz3_cmn_refclk1_dig_div>,
8095956d97fSEmmanuel Vadot				 <&wiz3_pll0_refclk>, <&wiz3_pll1_refclk>;
8105956d97fSEmmanuel Vadot			clock-names = "cmn_refclk_dig_div", "cmn_refclk1_dig_div",
8115956d97fSEmmanuel Vadot				      "pll0_refclk", "pll1_refclk";
812c66ec88fSEmmanuel Vadot		};
813c66ec88fSEmmanuel Vadot	};
814c66ec88fSEmmanuel Vadot
8156be33864SEmmanuel Vadot	pcie0_rc: pcie@2900000 {
8166be33864SEmmanuel Vadot		compatible = "ti,j721e-pcie-host";
8176be33864SEmmanuel Vadot		reg = <0x00 0x02900000 0x00 0x1000>,
8186be33864SEmmanuel Vadot		      <0x00 0x02907000 0x00 0x400>,
8196be33864SEmmanuel Vadot		      <0x00 0x0d000000 0x00 0x00800000>,
8206be33864SEmmanuel Vadot		      <0x00 0x10000000 0x00 0x00001000>;
8216be33864SEmmanuel Vadot		reg-names = "intd_cfg", "user_cfg", "reg", "cfg";
8226be33864SEmmanuel Vadot		interrupt-names = "link_state";
8236be33864SEmmanuel Vadot		interrupts = <GIC_SPI 318 IRQ_TYPE_EDGE_RISING>;
8246be33864SEmmanuel Vadot		device_type = "pci";
8255def4c47SEmmanuel Vadot		ti,syscon-pcie-ctrl = <&scm_conf 0x4070>;
8266be33864SEmmanuel Vadot		max-link-speed = <3>;
8276be33864SEmmanuel Vadot		num-lanes = <2>;
8286be33864SEmmanuel Vadot		power-domains = <&k3_pds 239 TI_SCI_PD_EXCLUSIVE>;
8296be33864SEmmanuel Vadot		clocks = <&k3_clks 239 1>;
8306be33864SEmmanuel Vadot		clock-names = "fck";
8316be33864SEmmanuel Vadot		#address-cells = <3>;
8326be33864SEmmanuel Vadot		#size-cells = <2>;
8338cc087a1SEmmanuel Vadot		bus-range = <0x0 0xff>;
8346be33864SEmmanuel Vadot		vendor-id = <0x104c>;
8356be33864SEmmanuel Vadot		device-id = <0xb00d>;
8366be33864SEmmanuel Vadot		msi-map = <0x0 &gic_its 0x0 0x10000>;
8376be33864SEmmanuel Vadot		dma-coherent;
8386be33864SEmmanuel Vadot		ranges = <0x01000000 0x0 0x10001000 0x0 0x10001000 0x0 0x0010000>,
8396be33864SEmmanuel Vadot			 <0x02000000 0x0 0x10011000 0x0 0x10011000 0x0 0x7fef000>;
8406be33864SEmmanuel Vadot		dma-ranges = <0x02000000 0x0 0x0 0x0 0x0 0x10000 0x0>;
841f126890aSEmmanuel Vadot		status = "disabled";
8426be33864SEmmanuel Vadot	};
8436be33864SEmmanuel Vadot
8446be33864SEmmanuel Vadot	pcie1_rc: pcie@2910000 {
8456be33864SEmmanuel Vadot		compatible = "ti,j721e-pcie-host";
8466be33864SEmmanuel Vadot		reg = <0x00 0x02910000 0x00 0x1000>,
8476be33864SEmmanuel Vadot		      <0x00 0x02917000 0x00 0x400>,
8486be33864SEmmanuel Vadot		      <0x00 0x0d800000 0x00 0x00800000>,
8496be33864SEmmanuel Vadot		      <0x00 0x18000000 0x00 0x00001000>;
8506be33864SEmmanuel Vadot		reg-names = "intd_cfg", "user_cfg", "reg", "cfg";
8516be33864SEmmanuel Vadot		interrupt-names = "link_state";
8526be33864SEmmanuel Vadot		interrupts = <GIC_SPI 330 IRQ_TYPE_EDGE_RISING>;
8536be33864SEmmanuel Vadot		device_type = "pci";
8545def4c47SEmmanuel Vadot		ti,syscon-pcie-ctrl = <&scm_conf 0x4074>;
8556be33864SEmmanuel Vadot		max-link-speed = <3>;
8566be33864SEmmanuel Vadot		num-lanes = <2>;
8576be33864SEmmanuel Vadot		power-domains = <&k3_pds 240 TI_SCI_PD_EXCLUSIVE>;
8586be33864SEmmanuel Vadot		clocks = <&k3_clks 240 1>;
8596be33864SEmmanuel Vadot		clock-names = "fck";
8606be33864SEmmanuel Vadot		#address-cells = <3>;
8616be33864SEmmanuel Vadot		#size-cells = <2>;
8628cc087a1SEmmanuel Vadot		bus-range = <0x0 0xff>;
8636be33864SEmmanuel Vadot		vendor-id = <0x104c>;
8646be33864SEmmanuel Vadot		device-id = <0xb00d>;
8656be33864SEmmanuel Vadot		msi-map = <0x0 &gic_its 0x10000 0x10000>;
8666be33864SEmmanuel Vadot		dma-coherent;
8676be33864SEmmanuel Vadot		ranges = <0x01000000 0x0 0x18001000 0x0 0x18001000 0x0 0x0010000>,
8686be33864SEmmanuel Vadot			 <0x02000000 0x0 0x18011000 0x0 0x18011000 0x0 0x7fef000>;
8696be33864SEmmanuel Vadot		dma-ranges = <0x02000000 0x0 0x0 0x0 0x0 0x10000 0x0>;
870f126890aSEmmanuel Vadot		status = "disabled";
8716be33864SEmmanuel Vadot	};
8726be33864SEmmanuel Vadot
8736be33864SEmmanuel Vadot	pcie2_rc: pcie@2920000 {
8746be33864SEmmanuel Vadot		compatible = "ti,j721e-pcie-host";
8756be33864SEmmanuel Vadot		reg = <0x00 0x02920000 0x00 0x1000>,
8766be33864SEmmanuel Vadot		      <0x00 0x02927000 0x00 0x400>,
8776be33864SEmmanuel Vadot		      <0x00 0x0e000000 0x00 0x00800000>,
8786be33864SEmmanuel Vadot		      <0x44 0x00000000 0x00 0x00001000>;
8796be33864SEmmanuel Vadot		reg-names = "intd_cfg", "user_cfg", "reg", "cfg";
8806be33864SEmmanuel Vadot		interrupt-names = "link_state";
8816be33864SEmmanuel Vadot		interrupts = <GIC_SPI 342 IRQ_TYPE_EDGE_RISING>;
8826be33864SEmmanuel Vadot		device_type = "pci";
8835def4c47SEmmanuel Vadot		ti,syscon-pcie-ctrl = <&scm_conf 0x4078>;
8846be33864SEmmanuel Vadot		max-link-speed = <3>;
8856be33864SEmmanuel Vadot		num-lanes = <2>;
8866be33864SEmmanuel Vadot		power-domains = <&k3_pds 241 TI_SCI_PD_EXCLUSIVE>;
8876be33864SEmmanuel Vadot		clocks = <&k3_clks 241 1>;
8886be33864SEmmanuel Vadot		clock-names = "fck";
8896be33864SEmmanuel Vadot		#address-cells = <3>;
8906be33864SEmmanuel Vadot		#size-cells = <2>;
8918cc087a1SEmmanuel Vadot		bus-range = <0x0 0xff>;
8926be33864SEmmanuel Vadot		vendor-id = <0x104c>;
8936be33864SEmmanuel Vadot		device-id = <0xb00d>;
8946be33864SEmmanuel Vadot		msi-map = <0x0 &gic_its 0x20000 0x10000>;
8956be33864SEmmanuel Vadot		dma-coherent;
8966be33864SEmmanuel Vadot		ranges = <0x01000000 0x0 0x00001000 0x44 0x00001000 0x0 0x0010000>,
8976be33864SEmmanuel Vadot			 <0x02000000 0x0 0x00011000 0x44 0x00011000 0x0 0x7fef000>;
8986be33864SEmmanuel Vadot		dma-ranges = <0x02000000 0x0 0x0 0x0 0x0 0x10000 0x0>;
899f126890aSEmmanuel Vadot		status = "disabled";
9006be33864SEmmanuel Vadot	};
9016be33864SEmmanuel Vadot
9026be33864SEmmanuel Vadot	pcie3_rc: pcie@2930000 {
9036be33864SEmmanuel Vadot		compatible = "ti,j721e-pcie-host";
9046be33864SEmmanuel Vadot		reg = <0x00 0x02930000 0x00 0x1000>,
9056be33864SEmmanuel Vadot		      <0x00 0x02937000 0x00 0x400>,
9066be33864SEmmanuel Vadot		      <0x00 0x0e800000 0x00 0x00800000>,
9076be33864SEmmanuel Vadot		      <0x44 0x10000000 0x00 0x00001000>;
9086be33864SEmmanuel Vadot		reg-names = "intd_cfg", "user_cfg", "reg", "cfg";
9096be33864SEmmanuel Vadot		interrupt-names = "link_state";
9106be33864SEmmanuel Vadot		interrupts = <GIC_SPI 354 IRQ_TYPE_EDGE_RISING>;
9116be33864SEmmanuel Vadot		device_type = "pci";
9125def4c47SEmmanuel Vadot		ti,syscon-pcie-ctrl = <&scm_conf 0x407c>;
9136be33864SEmmanuel Vadot		max-link-speed = <3>;
9146be33864SEmmanuel Vadot		num-lanes = <2>;
9156be33864SEmmanuel Vadot		power-domains = <&k3_pds 242 TI_SCI_PD_EXCLUSIVE>;
9166be33864SEmmanuel Vadot		clocks = <&k3_clks 242 1>;
9176be33864SEmmanuel Vadot		clock-names = "fck";
9186be33864SEmmanuel Vadot		#address-cells = <3>;
9196be33864SEmmanuel Vadot		#size-cells = <2>;
9208cc087a1SEmmanuel Vadot		bus-range = <0x0 0xff>;
9216be33864SEmmanuel Vadot		vendor-id = <0x104c>;
9226be33864SEmmanuel Vadot		device-id = <0xb00d>;
9236be33864SEmmanuel Vadot		msi-map = <0x0 &gic_its 0x30000 0x10000>;
9246be33864SEmmanuel Vadot		dma-coherent;
9256be33864SEmmanuel Vadot		ranges = <0x01000000 0x0 0x00001000 0x44 0x10001000 0x0 0x0010000>,
9266be33864SEmmanuel Vadot			 <0x02000000 0x0 0x00011000 0x44 0x10011000 0x0 0x7fef000>;
9276be33864SEmmanuel Vadot		dma-ranges = <0x02000000 0x0 0x0 0x0 0x0 0x10000 0x0>;
928f126890aSEmmanuel Vadot		status = "disabled";
9296be33864SEmmanuel Vadot	};
9306be33864SEmmanuel Vadot
931d5b0e70fSEmmanuel Vadot	serdes_wiz4: wiz@5050000 {
932d5b0e70fSEmmanuel Vadot		compatible = "ti,am64-wiz-10g";
933d5b0e70fSEmmanuel Vadot		#address-cells = <1>;
934d5b0e70fSEmmanuel Vadot		#size-cells = <1>;
935d5b0e70fSEmmanuel Vadot		power-domains = <&k3_pds 297 TI_SCI_PD_EXCLUSIVE>;
936d5b0e70fSEmmanuel Vadot		clocks = <&k3_clks 297 1>, <&k3_clks 297 9>, <&cmn_refclk>;
937d5b0e70fSEmmanuel Vadot		clock-names = "fck", "core_ref_clk", "ext_ref_clk";
938d5b0e70fSEmmanuel Vadot		assigned-clocks = <&k3_clks 297 9>;
939d5b0e70fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 297 10>;
940d5b0e70fSEmmanuel Vadot		assigned-clock-rates = <19200000>;
941d5b0e70fSEmmanuel Vadot		num-lanes = <4>;
942d5b0e70fSEmmanuel Vadot		#reset-cells = <1>;
943d5b0e70fSEmmanuel Vadot		#clock-cells = <1>;
944d5b0e70fSEmmanuel Vadot		ranges = <0x05050000 0x00 0x05050000 0x010000>,
945d5b0e70fSEmmanuel Vadot			<0x0a030a00 0x00 0x0a030a00 0x40>;
946d5b0e70fSEmmanuel Vadot
947d5b0e70fSEmmanuel Vadot		serdes4: serdes@5050000 {
948d5b0e70fSEmmanuel Vadot			/*
949d5b0e70fSEmmanuel Vadot			 * Note: we also map DPTX PHY registers as the Torrent
950d5b0e70fSEmmanuel Vadot			 * needs to manage those.
951d5b0e70fSEmmanuel Vadot			 */
952d5b0e70fSEmmanuel Vadot			compatible = "ti,j721e-serdes-10g";
953d5b0e70fSEmmanuel Vadot			reg = <0x05050000 0x010000>,
954d5b0e70fSEmmanuel Vadot			      <0x0a030a00 0x40>; /* DPTX PHY */
955d5b0e70fSEmmanuel Vadot			reg-names = "torrent_phy", "dptx_phy";
956d5b0e70fSEmmanuel Vadot
957d5b0e70fSEmmanuel Vadot			resets = <&serdes_wiz4 0>;
958d5b0e70fSEmmanuel Vadot			reset-names = "torrent_reset";
959d5b0e70fSEmmanuel Vadot			clocks = <&serdes_wiz4 TI_WIZ_PLL0_REFCLK>;
960d5b0e70fSEmmanuel Vadot			clock-names = "refclk";
961d5b0e70fSEmmanuel Vadot			assigned-clocks = <&serdes_wiz4 TI_WIZ_PLL0_REFCLK>,
962d5b0e70fSEmmanuel Vadot					  <&serdes_wiz4 TI_WIZ_PLL1_REFCLK>,
963d5b0e70fSEmmanuel Vadot					  <&serdes_wiz4 TI_WIZ_REFCLK_DIG>;
964d5b0e70fSEmmanuel Vadot			assigned-clock-parents = <&k3_clks 297 9>,
965d5b0e70fSEmmanuel Vadot						 <&k3_clks 297 9>,
966d5b0e70fSEmmanuel Vadot						 <&k3_clks 297 9>;
967d5b0e70fSEmmanuel Vadot			#address-cells = <1>;
968d5b0e70fSEmmanuel Vadot			#size-cells = <0>;
969d5b0e70fSEmmanuel Vadot		};
970d5b0e70fSEmmanuel Vadot	};
971d5b0e70fSEmmanuel Vadot
972f126890aSEmmanuel Vadot	main_timer0: timer@2400000 {
973f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
974f126890aSEmmanuel Vadot		reg = <0x00 0x2400000 0x00 0x400>;
975f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 224 IRQ_TYPE_LEVEL_HIGH>;
976f126890aSEmmanuel Vadot		clocks = <&k3_clks 49 1>;
977f126890aSEmmanuel Vadot		clock-names = "fck";
978f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 49 1>;
979f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 49 2>;
980f126890aSEmmanuel Vadot		power-domains = <&k3_pds 49 TI_SCI_PD_EXCLUSIVE>;
981f126890aSEmmanuel Vadot		ti,timer-pwm;
982f126890aSEmmanuel Vadot	};
983f126890aSEmmanuel Vadot
984f126890aSEmmanuel Vadot	main_timer1: timer@2410000 {
985f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
986f126890aSEmmanuel Vadot		reg = <0x00 0x2410000 0x00 0x400>;
987f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
988f126890aSEmmanuel Vadot		clocks = <&k3_clks 50 1>;
989f126890aSEmmanuel Vadot		clock-names = "fck";
990f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 50 1>, <&k3_clks 327 0>;
991f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 50 2>, <&k3_clks 327 1>;
992f126890aSEmmanuel Vadot		power-domains = <&k3_pds 50 TI_SCI_PD_EXCLUSIVE>;
993f126890aSEmmanuel Vadot		ti,timer-pwm;
994f126890aSEmmanuel Vadot	};
995f126890aSEmmanuel Vadot
996f126890aSEmmanuel Vadot	main_timer2: timer@2420000 {
997f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
998f126890aSEmmanuel Vadot		reg = <0x00 0x2420000 0x00 0x400>;
999f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 226 IRQ_TYPE_LEVEL_HIGH>;
1000f126890aSEmmanuel Vadot		clocks = <&k3_clks 51 1>;
1001f126890aSEmmanuel Vadot		clock-names = "fck";
1002f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 51 1>;
1003f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 51 2>;
1004f126890aSEmmanuel Vadot		power-domains = <&k3_pds 51 TI_SCI_PD_EXCLUSIVE>;
1005f126890aSEmmanuel Vadot		ti,timer-pwm;
1006f126890aSEmmanuel Vadot	};
1007f126890aSEmmanuel Vadot
1008f126890aSEmmanuel Vadot	main_timer3: timer@2430000 {
1009f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1010f126890aSEmmanuel Vadot		reg = <0x00 0x2430000 0x00 0x400>;
1011f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 227 IRQ_TYPE_LEVEL_HIGH>;
1012f126890aSEmmanuel Vadot		clocks = <&k3_clks 52 1>;
1013f126890aSEmmanuel Vadot		clock-names = "fck";
1014f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 52 1>, <&k3_clks 328 0>;
1015f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 52 2>, <&k3_clks 328 1>;
1016f126890aSEmmanuel Vadot		power-domains = <&k3_pds 52 TI_SCI_PD_EXCLUSIVE>;
1017f126890aSEmmanuel Vadot		ti,timer-pwm;
1018f126890aSEmmanuel Vadot	};
1019f126890aSEmmanuel Vadot
1020f126890aSEmmanuel Vadot	main_timer4: timer@2440000 {
1021f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1022f126890aSEmmanuel Vadot		reg = <0x00 0x2440000 0x00 0x400>;
1023f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 228 IRQ_TYPE_LEVEL_HIGH>;
1024f126890aSEmmanuel Vadot		clocks = <&k3_clks 53 1>;
1025f126890aSEmmanuel Vadot		clock-names = "fck";
1026f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 53 1>;
1027f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 53 2>;
1028f126890aSEmmanuel Vadot		power-domains = <&k3_pds 53 TI_SCI_PD_EXCLUSIVE>;
1029f126890aSEmmanuel Vadot		ti,timer-pwm;
1030f126890aSEmmanuel Vadot	};
1031f126890aSEmmanuel Vadot
1032f126890aSEmmanuel Vadot	main_timer5: timer@2450000 {
1033f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1034f126890aSEmmanuel Vadot		reg = <0x00 0x2450000 0x00 0x400>;
1035f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 229 IRQ_TYPE_LEVEL_HIGH>;
1036f126890aSEmmanuel Vadot		clocks = <&k3_clks 54 1>;
1037f126890aSEmmanuel Vadot		clock-names = "fck";
1038f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 54 1>, <&k3_clks 329 0>;
1039f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 54 2>, <&k3_clks 329 1>;
1040f126890aSEmmanuel Vadot		power-domains = <&k3_pds 54 TI_SCI_PD_EXCLUSIVE>;
1041f126890aSEmmanuel Vadot		ti,timer-pwm;
1042f126890aSEmmanuel Vadot	};
1043f126890aSEmmanuel Vadot
1044f126890aSEmmanuel Vadot	main_timer6: timer@2460000 {
1045f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1046f126890aSEmmanuel Vadot		reg = <0x00 0x2460000 0x00 0x400>;
1047f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 230 IRQ_TYPE_LEVEL_HIGH>;
1048f126890aSEmmanuel Vadot		clocks = <&k3_clks 55 1>;
1049f126890aSEmmanuel Vadot		clock-names = "fck";
1050f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 55 1>;
1051f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 55 2>;
1052f126890aSEmmanuel Vadot		power-domains = <&k3_pds 55 TI_SCI_PD_EXCLUSIVE>;
1053f126890aSEmmanuel Vadot		ti,timer-pwm;
1054f126890aSEmmanuel Vadot	};
1055f126890aSEmmanuel Vadot
1056f126890aSEmmanuel Vadot	main_timer7: timer@2470000 {
1057f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1058f126890aSEmmanuel Vadot		reg = <0x00 0x2470000 0x00 0x400>;
1059f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 231 IRQ_TYPE_LEVEL_HIGH>;
1060f126890aSEmmanuel Vadot		clocks = <&k3_clks 57 1>;
1061f126890aSEmmanuel Vadot		clock-names = "fck";
1062f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 57 1>, <&k3_clks 330 0>;
1063f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 57 2>, <&k3_clks 330 1>;
1064f126890aSEmmanuel Vadot		power-domains = <&k3_pds 57 TI_SCI_PD_EXCLUSIVE>;
1065f126890aSEmmanuel Vadot		ti,timer-pwm;
1066f126890aSEmmanuel Vadot	};
1067f126890aSEmmanuel Vadot
1068f126890aSEmmanuel Vadot	main_timer8: timer@2480000 {
1069f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1070f126890aSEmmanuel Vadot		reg = <0x00 0x2480000 0x00 0x400>;
1071f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 232 IRQ_TYPE_LEVEL_HIGH>;
1072f126890aSEmmanuel Vadot		clocks = <&k3_clks 58 1>;
1073f126890aSEmmanuel Vadot		clock-names = "fck";
1074f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 58 1>;
1075f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 58 2>;
1076f126890aSEmmanuel Vadot		power-domains = <&k3_pds 58 TI_SCI_PD_EXCLUSIVE>;
1077f126890aSEmmanuel Vadot		ti,timer-pwm;
1078f126890aSEmmanuel Vadot	};
1079f126890aSEmmanuel Vadot
1080f126890aSEmmanuel Vadot	main_timer9: timer@2490000 {
1081f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1082f126890aSEmmanuel Vadot		reg = <0x00 0x2490000 0x00 0x400>;
1083f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 233 IRQ_TYPE_LEVEL_HIGH>;
1084f126890aSEmmanuel Vadot		clocks = <&k3_clks 59 1>;
1085f126890aSEmmanuel Vadot		clock-names = "fck";
1086f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 59 1>, <&k3_clks 331 0>;
1087f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 59 2>, <&k3_clks 331 1>;
1088f126890aSEmmanuel Vadot		power-domains = <&k3_pds 59 TI_SCI_PD_EXCLUSIVE>;
1089f126890aSEmmanuel Vadot		ti,timer-pwm;
1090f126890aSEmmanuel Vadot	};
1091f126890aSEmmanuel Vadot
1092f126890aSEmmanuel Vadot	main_timer10: timer@24a0000 {
1093f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1094f126890aSEmmanuel Vadot		reg = <0x00 0x24a0000 0x00 0x400>;
1095f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 234 IRQ_TYPE_LEVEL_HIGH>;
1096f126890aSEmmanuel Vadot		clocks = <&k3_clks 60 1>;
1097f126890aSEmmanuel Vadot		clock-names = "fck";
1098f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 60 1>;
1099f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 60 2>;
1100f126890aSEmmanuel Vadot		power-domains = <&k3_pds 60 TI_SCI_PD_EXCLUSIVE>;
1101f126890aSEmmanuel Vadot		ti,timer-pwm;
1102f126890aSEmmanuel Vadot	};
1103f126890aSEmmanuel Vadot
1104f126890aSEmmanuel Vadot	main_timer11: timer@24b0000 {
1105f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1106f126890aSEmmanuel Vadot		reg = <0x00 0x24b0000 0x00 0x400>;
1107f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 235 IRQ_TYPE_LEVEL_HIGH>;
1108f126890aSEmmanuel Vadot		clocks = <&k3_clks 62 1>;
1109f126890aSEmmanuel Vadot		clock-names = "fck";
1110f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 62 1>, <&k3_clks 332 0>;
1111f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 62 2>, <&k3_clks 332 1>;
1112f126890aSEmmanuel Vadot		power-domains = <&k3_pds 62 TI_SCI_PD_EXCLUSIVE>;
1113f126890aSEmmanuel Vadot		ti,timer-pwm;
1114f126890aSEmmanuel Vadot	};
1115f126890aSEmmanuel Vadot
1116f126890aSEmmanuel Vadot	main_timer12: timer@24c0000 {
1117f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1118f126890aSEmmanuel Vadot		reg = <0x00 0x24c0000 0x00 0x400>;
1119f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 236 IRQ_TYPE_LEVEL_HIGH>;
1120f126890aSEmmanuel Vadot		clocks = <&k3_clks 63 1>;
1121f126890aSEmmanuel Vadot		clock-names = "fck";
1122f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 63 1>;
1123f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 63 2>;
1124f126890aSEmmanuel Vadot		power-domains = <&k3_pds 63 TI_SCI_PD_EXCLUSIVE>;
1125f126890aSEmmanuel Vadot		ti,timer-pwm;
1126f126890aSEmmanuel Vadot	};
1127f126890aSEmmanuel Vadot
1128f126890aSEmmanuel Vadot	main_timer13: timer@24d0000 {
1129f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1130f126890aSEmmanuel Vadot		reg = <0x00 0x24d0000 0x00 0x400>;
1131f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>;
1132f126890aSEmmanuel Vadot		clocks = <&k3_clks 64 1>;
1133f126890aSEmmanuel Vadot		clock-names = "fck";
1134f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 64 1>, <&k3_clks 333 0>;
1135f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 64 2>, <&k3_clks 333 1>;
1136f126890aSEmmanuel Vadot		power-domains = <&k3_pds 64 TI_SCI_PD_EXCLUSIVE>;
1137f126890aSEmmanuel Vadot		ti,timer-pwm;
1138f126890aSEmmanuel Vadot	};
1139f126890aSEmmanuel Vadot
1140f126890aSEmmanuel Vadot	main_timer14: timer@24e0000 {
1141f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1142f126890aSEmmanuel Vadot		reg = <0x00 0x24e0000 0x00 0x400>;
1143f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>;
1144f126890aSEmmanuel Vadot		clocks = <&k3_clks 65 1>;
1145f126890aSEmmanuel Vadot		clock-names = "fck";
1146f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 65 1>;
1147f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 65 2>;
1148f126890aSEmmanuel Vadot		power-domains = <&k3_pds 65 TI_SCI_PD_EXCLUSIVE>;
1149f126890aSEmmanuel Vadot		ti,timer-pwm;
1150f126890aSEmmanuel Vadot	};
1151f126890aSEmmanuel Vadot
1152f126890aSEmmanuel Vadot	main_timer15: timer@24f0000 {
1153f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1154f126890aSEmmanuel Vadot		reg = <0x00 0x24f0000 0x00 0x400>;
1155f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>;
1156f126890aSEmmanuel Vadot		clocks = <&k3_clks 66 1>;
1157f126890aSEmmanuel Vadot		clock-names = "fck";
1158f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 66 1>, <&k3_clks 334 0>;
1159f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 66 2>, <&k3_clks 334 1>;
1160f126890aSEmmanuel Vadot		power-domains = <&k3_pds 66 TI_SCI_PD_EXCLUSIVE>;
1161f126890aSEmmanuel Vadot		ti,timer-pwm;
1162f126890aSEmmanuel Vadot	};
1163f126890aSEmmanuel Vadot
1164f126890aSEmmanuel Vadot	main_timer16: timer@2500000 {
1165f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1166f126890aSEmmanuel Vadot		reg = <0x00 0x2500000 0x00 0x400>;
1167f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
1168f126890aSEmmanuel Vadot		clocks = <&k3_clks 67 1>;
1169f126890aSEmmanuel Vadot		clock-names = "fck";
1170f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 67 1>;
1171f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 67 2>;
1172f126890aSEmmanuel Vadot		power-domains = <&k3_pds 67 TI_SCI_PD_EXCLUSIVE>;
1173f126890aSEmmanuel Vadot		ti,timer-pwm;
1174f126890aSEmmanuel Vadot	};
1175f126890aSEmmanuel Vadot
1176f126890aSEmmanuel Vadot	main_timer17: timer@2510000 {
1177f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1178f126890aSEmmanuel Vadot		reg = <0x00 0x2510000 0x00 0x400>;
1179f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>;
1180f126890aSEmmanuel Vadot		clocks = <&k3_clks 68 1>;
1181f126890aSEmmanuel Vadot		clock-names = "fck";
1182f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 68 1>, <&k3_clks 335 0>;
1183f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 68 2>, <&k3_clks 335 1>;
1184f126890aSEmmanuel Vadot		power-domains = <&k3_pds 68 TI_SCI_PD_EXCLUSIVE>;
1185f126890aSEmmanuel Vadot		ti,timer-pwm;
1186f126890aSEmmanuel Vadot	};
1187f126890aSEmmanuel Vadot
1188f126890aSEmmanuel Vadot	main_timer18: timer@2520000 {
1189f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1190f126890aSEmmanuel Vadot		reg = <0x00 0x2520000 0x00 0x400>;
1191f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>;
1192f126890aSEmmanuel Vadot		clocks = <&k3_clks 69 1>;
1193f126890aSEmmanuel Vadot		clock-names = "fck";
1194f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 69 1>;
1195f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 69 2>;
1196f126890aSEmmanuel Vadot		power-domains = <&k3_pds 69 TI_SCI_PD_EXCLUSIVE>;
1197f126890aSEmmanuel Vadot		ti,timer-pwm;
1198f126890aSEmmanuel Vadot	};
1199f126890aSEmmanuel Vadot
1200f126890aSEmmanuel Vadot	main_timer19: timer@2530000 {
1201f126890aSEmmanuel Vadot		compatible = "ti,am654-timer";
1202f126890aSEmmanuel Vadot		reg = <0x00 0x2530000 0x00 0x400>;
1203f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>;
1204f126890aSEmmanuel Vadot		clocks = <&k3_clks 70 1>;
1205f126890aSEmmanuel Vadot		clock-names = "fck";
1206f126890aSEmmanuel Vadot		assigned-clocks = <&k3_clks 70 1>, <&k3_clks 336 0>;
1207f126890aSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 70 2>, <&k3_clks 336 1>;
1208f126890aSEmmanuel Vadot		power-domains = <&k3_pds 70 TI_SCI_PD_EXCLUSIVE>;
1209f126890aSEmmanuel Vadot		ti,timer-pwm;
1210f126890aSEmmanuel Vadot	};
1211f126890aSEmmanuel Vadot
1212c66ec88fSEmmanuel Vadot	main_uart0: serial@2800000 {
1213c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-uart", "ti,am654-uart";
1214c66ec88fSEmmanuel Vadot		reg = <0x00 0x02800000 0x00 0x100>;
1215c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 192 IRQ_TYPE_LEVEL_HIGH>;
1216c66ec88fSEmmanuel Vadot		clock-frequency = <48000000>;
1217c66ec88fSEmmanuel Vadot		current-speed = <115200>;
1218c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 146 TI_SCI_PD_EXCLUSIVE>;
1219c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 146 0>;
1220c66ec88fSEmmanuel Vadot		clock-names = "fclk";
12218bab661aSEmmanuel Vadot		status = "disabled";
1222c66ec88fSEmmanuel Vadot	};
1223c66ec88fSEmmanuel Vadot
1224c66ec88fSEmmanuel Vadot	main_uart1: serial@2810000 {
1225c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-uart", "ti,am654-uart";
1226c66ec88fSEmmanuel Vadot		reg = <0x00 0x02810000 0x00 0x100>;
1227c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 193 IRQ_TYPE_LEVEL_HIGH>;
1228c66ec88fSEmmanuel Vadot		clock-frequency = <48000000>;
1229c66ec88fSEmmanuel Vadot		current-speed = <115200>;
1230c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 278 TI_SCI_PD_EXCLUSIVE>;
1231c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 278 0>;
1232c66ec88fSEmmanuel Vadot		clock-names = "fclk";
12338bab661aSEmmanuel Vadot		status = "disabled";
1234c66ec88fSEmmanuel Vadot	};
1235c66ec88fSEmmanuel Vadot
1236c66ec88fSEmmanuel Vadot	main_uart2: serial@2820000 {
1237c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-uart", "ti,am654-uart";
1238c66ec88fSEmmanuel Vadot		reg = <0x00 0x02820000 0x00 0x100>;
1239c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 194 IRQ_TYPE_LEVEL_HIGH>;
1240c66ec88fSEmmanuel Vadot		clock-frequency = <48000000>;
1241c66ec88fSEmmanuel Vadot		current-speed = <115200>;
1242c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 279 TI_SCI_PD_EXCLUSIVE>;
1243c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 279 0>;
1244c66ec88fSEmmanuel Vadot		clock-names = "fclk";
12458bab661aSEmmanuel Vadot		status = "disabled";
1246c66ec88fSEmmanuel Vadot	};
1247c66ec88fSEmmanuel Vadot
1248c66ec88fSEmmanuel Vadot	main_uart3: serial@2830000 {
1249c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-uart", "ti,am654-uart";
1250c66ec88fSEmmanuel Vadot		reg = <0x00 0x02830000 0x00 0x100>;
1251c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 195 IRQ_TYPE_LEVEL_HIGH>;
1252c66ec88fSEmmanuel Vadot		clock-frequency = <48000000>;
1253c66ec88fSEmmanuel Vadot		current-speed = <115200>;
1254c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 280 TI_SCI_PD_EXCLUSIVE>;
1255c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 280 0>;
1256c66ec88fSEmmanuel Vadot		clock-names = "fclk";
12578bab661aSEmmanuel Vadot		status = "disabled";
1258c66ec88fSEmmanuel Vadot	};
1259c66ec88fSEmmanuel Vadot
1260c66ec88fSEmmanuel Vadot	main_uart4: serial@2840000 {
1261c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-uart", "ti,am654-uart";
1262c66ec88fSEmmanuel Vadot		reg = <0x00 0x02840000 0x00 0x100>;
1263c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 196 IRQ_TYPE_LEVEL_HIGH>;
1264c66ec88fSEmmanuel Vadot		clock-frequency = <48000000>;
1265c66ec88fSEmmanuel Vadot		current-speed = <115200>;
1266c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 281 TI_SCI_PD_EXCLUSIVE>;
1267c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 281 0>;
1268c66ec88fSEmmanuel Vadot		clock-names = "fclk";
12698bab661aSEmmanuel Vadot		status = "disabled";
1270c66ec88fSEmmanuel Vadot	};
1271c66ec88fSEmmanuel Vadot
1272c66ec88fSEmmanuel Vadot	main_uart5: serial@2850000 {
1273c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-uart", "ti,am654-uart";
1274c66ec88fSEmmanuel Vadot		reg = <0x00 0x02850000 0x00 0x100>;
1275c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 197 IRQ_TYPE_LEVEL_HIGH>;
1276c66ec88fSEmmanuel Vadot		clock-frequency = <48000000>;
1277c66ec88fSEmmanuel Vadot		current-speed = <115200>;
1278c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 282 TI_SCI_PD_EXCLUSIVE>;
1279c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 282 0>;
1280c66ec88fSEmmanuel Vadot		clock-names = "fclk";
12818bab661aSEmmanuel Vadot		status = "disabled";
1282c66ec88fSEmmanuel Vadot	};
1283c66ec88fSEmmanuel Vadot
1284c66ec88fSEmmanuel Vadot	main_uart6: serial@2860000 {
1285c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-uart", "ti,am654-uart";
1286c66ec88fSEmmanuel Vadot		reg = <0x00 0x02860000 0x00 0x100>;
1287c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 198 IRQ_TYPE_LEVEL_HIGH>;
1288c66ec88fSEmmanuel Vadot		clock-frequency = <48000000>;
1289c66ec88fSEmmanuel Vadot		current-speed = <115200>;
1290c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 283 TI_SCI_PD_EXCLUSIVE>;
1291c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 283 0>;
1292c66ec88fSEmmanuel Vadot		clock-names = "fclk";
12938bab661aSEmmanuel Vadot		status = "disabled";
1294c66ec88fSEmmanuel Vadot	};
1295c66ec88fSEmmanuel Vadot
1296c66ec88fSEmmanuel Vadot	main_uart7: serial@2870000 {
1297c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-uart", "ti,am654-uart";
1298c66ec88fSEmmanuel Vadot		reg = <0x00 0x02870000 0x00 0x100>;
1299c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 199 IRQ_TYPE_LEVEL_HIGH>;
1300c66ec88fSEmmanuel Vadot		clock-frequency = <48000000>;
1301c66ec88fSEmmanuel Vadot		current-speed = <115200>;
1302c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 284 TI_SCI_PD_EXCLUSIVE>;
1303c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 284 0>;
1304c66ec88fSEmmanuel Vadot		clock-names = "fclk";
13058bab661aSEmmanuel Vadot		status = "disabled";
1306c66ec88fSEmmanuel Vadot	};
1307c66ec88fSEmmanuel Vadot
1308c66ec88fSEmmanuel Vadot	main_uart8: serial@2880000 {
1309c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-uart", "ti,am654-uart";
1310c66ec88fSEmmanuel Vadot		reg = <0x00 0x02880000 0x00 0x100>;
1311c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
1312c66ec88fSEmmanuel Vadot		clock-frequency = <48000000>;
1313c66ec88fSEmmanuel Vadot		current-speed = <115200>;
1314c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 285 TI_SCI_PD_EXCLUSIVE>;
1315c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 285 0>;
1316c66ec88fSEmmanuel Vadot		clock-names = "fclk";
13178bab661aSEmmanuel Vadot		status = "disabled";
1318c66ec88fSEmmanuel Vadot	};
1319c66ec88fSEmmanuel Vadot
1320c66ec88fSEmmanuel Vadot	main_uart9: serial@2890000 {
1321c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-uart", "ti,am654-uart";
1322c66ec88fSEmmanuel Vadot		reg = <0x00 0x02890000 0x00 0x100>;
1323c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>;
1324c66ec88fSEmmanuel Vadot		clock-frequency = <48000000>;
1325c66ec88fSEmmanuel Vadot		current-speed = <115200>;
1326c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 286 TI_SCI_PD_EXCLUSIVE>;
1327c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 286 0>;
1328c66ec88fSEmmanuel Vadot		clock-names = "fclk";
13298bab661aSEmmanuel Vadot		status = "disabled";
1330c66ec88fSEmmanuel Vadot	};
1331c66ec88fSEmmanuel Vadot
1332c66ec88fSEmmanuel Vadot	main_gpio0: gpio@600000 {
1333c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-gpio", "ti,keystone-gpio";
1334c66ec88fSEmmanuel Vadot		reg = <0x0 0x00600000 0x0 0x100>;
1335c66ec88fSEmmanuel Vadot		gpio-controller;
1336c66ec88fSEmmanuel Vadot		#gpio-cells = <2>;
1337c66ec88fSEmmanuel Vadot		interrupt-parent = <&main_gpio_intr>;
1338c66ec88fSEmmanuel Vadot		interrupts = <256>, <257>, <258>, <259>,
1339c66ec88fSEmmanuel Vadot			     <260>, <261>, <262>, <263>;
1340c66ec88fSEmmanuel Vadot		interrupt-controller;
1341c66ec88fSEmmanuel Vadot		#interrupt-cells = <2>;
1342c66ec88fSEmmanuel Vadot		ti,ngpio = <128>;
1343c66ec88fSEmmanuel Vadot		ti,davinci-gpio-unbanked = <0>;
1344c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 105 TI_SCI_PD_EXCLUSIVE>;
1345c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 105 0>;
1346c66ec88fSEmmanuel Vadot		clock-names = "gpio";
1347aa1a8ff2SEmmanuel Vadot		status = "disabled";
1348c66ec88fSEmmanuel Vadot	};
1349c66ec88fSEmmanuel Vadot
1350c66ec88fSEmmanuel Vadot	main_gpio1: gpio@601000 {
1351c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-gpio", "ti,keystone-gpio";
1352c66ec88fSEmmanuel Vadot		reg = <0x0 0x00601000 0x0 0x100>;
1353c66ec88fSEmmanuel Vadot		gpio-controller;
1354c66ec88fSEmmanuel Vadot		#gpio-cells = <2>;
1355c66ec88fSEmmanuel Vadot		interrupt-parent = <&main_gpio_intr>;
1356c66ec88fSEmmanuel Vadot		interrupts = <288>, <289>, <290>;
1357c66ec88fSEmmanuel Vadot		interrupt-controller;
1358c66ec88fSEmmanuel Vadot		#interrupt-cells = <2>;
1359c66ec88fSEmmanuel Vadot		ti,ngpio = <36>;
1360c66ec88fSEmmanuel Vadot		ti,davinci-gpio-unbanked = <0>;
1361c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 106 TI_SCI_PD_EXCLUSIVE>;
1362c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 106 0>;
1363c66ec88fSEmmanuel Vadot		clock-names = "gpio";
1364aa1a8ff2SEmmanuel Vadot		status = "disabled";
1365c66ec88fSEmmanuel Vadot	};
1366c66ec88fSEmmanuel Vadot
1367c66ec88fSEmmanuel Vadot	main_gpio2: gpio@610000 {
1368c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-gpio", "ti,keystone-gpio";
1369c66ec88fSEmmanuel Vadot		reg = <0x0 0x00610000 0x0 0x100>;
1370c66ec88fSEmmanuel Vadot		gpio-controller;
1371c66ec88fSEmmanuel Vadot		#gpio-cells = <2>;
1372c66ec88fSEmmanuel Vadot		interrupt-parent = <&main_gpio_intr>;
1373c66ec88fSEmmanuel Vadot		interrupts = <264>, <265>, <266>, <267>,
1374c66ec88fSEmmanuel Vadot			     <268>, <269>, <270>, <271>;
1375c66ec88fSEmmanuel Vadot		interrupt-controller;
1376c66ec88fSEmmanuel Vadot		#interrupt-cells = <2>;
1377c66ec88fSEmmanuel Vadot		ti,ngpio = <128>;
1378c66ec88fSEmmanuel Vadot		ti,davinci-gpio-unbanked = <0>;
1379c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 107 TI_SCI_PD_EXCLUSIVE>;
1380c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 107 0>;
1381c66ec88fSEmmanuel Vadot		clock-names = "gpio";
1382aa1a8ff2SEmmanuel Vadot		status = "disabled";
1383c66ec88fSEmmanuel Vadot	};
1384c66ec88fSEmmanuel Vadot
1385c66ec88fSEmmanuel Vadot	main_gpio3: gpio@611000 {
1386c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-gpio", "ti,keystone-gpio";
1387c66ec88fSEmmanuel Vadot		reg = <0x0 0x00611000 0x0 0x100>;
1388c66ec88fSEmmanuel Vadot		gpio-controller;
1389c66ec88fSEmmanuel Vadot		#gpio-cells = <2>;
1390c66ec88fSEmmanuel Vadot		interrupt-parent = <&main_gpio_intr>;
1391c66ec88fSEmmanuel Vadot		interrupts = <292>, <293>, <294>;
1392c66ec88fSEmmanuel Vadot		interrupt-controller;
1393c66ec88fSEmmanuel Vadot		#interrupt-cells = <2>;
1394c66ec88fSEmmanuel Vadot		ti,ngpio = <36>;
1395c66ec88fSEmmanuel Vadot		ti,davinci-gpio-unbanked = <0>;
1396c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 108 TI_SCI_PD_EXCLUSIVE>;
1397c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 108 0>;
1398c66ec88fSEmmanuel Vadot		clock-names = "gpio";
1399aa1a8ff2SEmmanuel Vadot		status = "disabled";
1400c66ec88fSEmmanuel Vadot	};
1401c66ec88fSEmmanuel Vadot
1402c66ec88fSEmmanuel Vadot	main_gpio4: gpio@620000 {
1403c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-gpio", "ti,keystone-gpio";
1404c66ec88fSEmmanuel Vadot		reg = <0x0 0x00620000 0x0 0x100>;
1405c66ec88fSEmmanuel Vadot		gpio-controller;
1406c66ec88fSEmmanuel Vadot		#gpio-cells = <2>;
1407c66ec88fSEmmanuel Vadot		interrupt-parent = <&main_gpio_intr>;
1408c66ec88fSEmmanuel Vadot		interrupts = <272>, <273>, <274>, <275>,
1409c66ec88fSEmmanuel Vadot			     <276>, <277>, <278>, <279>;
1410c66ec88fSEmmanuel Vadot		interrupt-controller;
1411c66ec88fSEmmanuel Vadot		#interrupt-cells = <2>;
1412c66ec88fSEmmanuel Vadot		ti,ngpio = <128>;
1413c66ec88fSEmmanuel Vadot		ti,davinci-gpio-unbanked = <0>;
1414c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 109 TI_SCI_PD_EXCLUSIVE>;
1415c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 109 0>;
1416c66ec88fSEmmanuel Vadot		clock-names = "gpio";
1417aa1a8ff2SEmmanuel Vadot		status = "disabled";
1418c66ec88fSEmmanuel Vadot	};
1419c66ec88fSEmmanuel Vadot
1420c66ec88fSEmmanuel Vadot	main_gpio5: gpio@621000 {
1421c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-gpio", "ti,keystone-gpio";
1422c66ec88fSEmmanuel Vadot		reg = <0x0 0x00621000 0x0 0x100>;
1423c66ec88fSEmmanuel Vadot		gpio-controller;
1424c66ec88fSEmmanuel Vadot		#gpio-cells = <2>;
1425c66ec88fSEmmanuel Vadot		interrupt-parent = <&main_gpio_intr>;
1426c66ec88fSEmmanuel Vadot		interrupts = <296>, <297>, <298>;
1427c66ec88fSEmmanuel Vadot		interrupt-controller;
1428c66ec88fSEmmanuel Vadot		#interrupt-cells = <2>;
1429c66ec88fSEmmanuel Vadot		ti,ngpio = <36>;
1430c66ec88fSEmmanuel Vadot		ti,davinci-gpio-unbanked = <0>;
1431c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 110 TI_SCI_PD_EXCLUSIVE>;
1432c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 110 0>;
1433c66ec88fSEmmanuel Vadot		clock-names = "gpio";
1434aa1a8ff2SEmmanuel Vadot		status = "disabled";
1435c66ec88fSEmmanuel Vadot	};
1436c66ec88fSEmmanuel Vadot
1437c66ec88fSEmmanuel Vadot	main_gpio6: gpio@630000 {
1438c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-gpio", "ti,keystone-gpio";
1439c66ec88fSEmmanuel Vadot		reg = <0x0 0x00630000 0x0 0x100>;
1440c66ec88fSEmmanuel Vadot		gpio-controller;
1441c66ec88fSEmmanuel Vadot		#gpio-cells = <2>;
1442c66ec88fSEmmanuel Vadot		interrupt-parent = <&main_gpio_intr>;
1443c66ec88fSEmmanuel Vadot		interrupts = <280>, <281>, <282>, <283>,
1444c66ec88fSEmmanuel Vadot			     <284>, <285>, <286>, <287>;
1445c66ec88fSEmmanuel Vadot		interrupt-controller;
1446c66ec88fSEmmanuel Vadot		#interrupt-cells = <2>;
1447c66ec88fSEmmanuel Vadot		ti,ngpio = <128>;
1448c66ec88fSEmmanuel Vadot		ti,davinci-gpio-unbanked = <0>;
1449c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 111 TI_SCI_PD_EXCLUSIVE>;
1450c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 111 0>;
1451c66ec88fSEmmanuel Vadot		clock-names = "gpio";
1452aa1a8ff2SEmmanuel Vadot		status = "disabled";
1453c66ec88fSEmmanuel Vadot	};
1454c66ec88fSEmmanuel Vadot
1455c66ec88fSEmmanuel Vadot	main_gpio7: gpio@631000 {
1456c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-gpio", "ti,keystone-gpio";
1457c66ec88fSEmmanuel Vadot		reg = <0x0 0x00631000 0x0 0x100>;
1458c66ec88fSEmmanuel Vadot		gpio-controller;
1459c66ec88fSEmmanuel Vadot		#gpio-cells = <2>;
1460c66ec88fSEmmanuel Vadot		interrupt-parent = <&main_gpio_intr>;
1461c66ec88fSEmmanuel Vadot		interrupts = <300>, <301>, <302>;
1462c66ec88fSEmmanuel Vadot		interrupt-controller;
1463c66ec88fSEmmanuel Vadot		#interrupt-cells = <2>;
1464c66ec88fSEmmanuel Vadot		ti,ngpio = <36>;
1465c66ec88fSEmmanuel Vadot		ti,davinci-gpio-unbanked = <0>;
1466c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 112 TI_SCI_PD_EXCLUSIVE>;
1467c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 112 0>;
1468c66ec88fSEmmanuel Vadot		clock-names = "gpio";
1469aa1a8ff2SEmmanuel Vadot		status = "disabled";
1470c66ec88fSEmmanuel Vadot	};
1471c66ec88fSEmmanuel Vadot
14725def4c47SEmmanuel Vadot	main_sdhci0: mmc@4f80000 {
1473c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-sdhci-8bit";
1474c66ec88fSEmmanuel Vadot		reg = <0x0 0x4f80000 0x0 0x1000>, <0x0 0x4f88000 0x0 0x400>;
1475c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
1476c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 91 TI_SCI_PD_EXCLUSIVE>;
14775def4c47SEmmanuel Vadot		clock-names = "clk_ahb", "clk_xin";
14785def4c47SEmmanuel Vadot		clocks = <&k3_clks 91 0>, <&k3_clks 91 1>;
1479c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 91 1>;
1480c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 91 2>;
1481c66ec88fSEmmanuel Vadot		bus-width = <8>;
14822eb4d8dcSEmmanuel Vadot		mmc-hs200-1_8v;
1483c66ec88fSEmmanuel Vadot		mmc-ddr-1_8v;
1484f126890aSEmmanuel Vadot		ti,otap-del-sel-legacy = <0x0>;
1485f126890aSEmmanuel Vadot		ti,otap-del-sel-mmc-hs = <0x0>;
14865def4c47SEmmanuel Vadot		ti,otap-del-sel-ddr52 = <0x5>;
14875def4c47SEmmanuel Vadot		ti,otap-del-sel-hs200 = <0x6>;
14885def4c47SEmmanuel Vadot		ti,otap-del-sel-hs400 = <0x0>;
14892eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-legacy = <0x10>;
14902eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-mmc-hs = <0xa>;
14912eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-ddr52 = <0x3>;
1492c66ec88fSEmmanuel Vadot		ti,trm-icp = <0x8>;
1493c66ec88fSEmmanuel Vadot		dma-coherent;
1494aa1a8ff2SEmmanuel Vadot		status = "disabled";
1495c66ec88fSEmmanuel Vadot	};
1496c66ec88fSEmmanuel Vadot
14975def4c47SEmmanuel Vadot	main_sdhci1: mmc@4fb0000 {
1498c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-sdhci-4bit";
1499c66ec88fSEmmanuel Vadot		reg = <0x0 0x04fb0000 0x0 0x1000>, <0x0 0x4fb8000 0x0 0x400>;
1500c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
1501c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 92 TI_SCI_PD_EXCLUSIVE>;
15025def4c47SEmmanuel Vadot		clock-names = "clk_ahb", "clk_xin";
15035def4c47SEmmanuel Vadot		clocks = <&k3_clks 92 5>, <&k3_clks 92 0>;
1504c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 92 0>;
1505c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 92 1>;
15065def4c47SEmmanuel Vadot		ti,otap-del-sel-legacy = <0x0>;
1507f126890aSEmmanuel Vadot		ti,otap-del-sel-sd-hs = <0x0>;
15085def4c47SEmmanuel Vadot		ti,otap-del-sel-sdr12 = <0xf>;
15095def4c47SEmmanuel Vadot		ti,otap-del-sel-sdr25 = <0xf>;
15105def4c47SEmmanuel Vadot		ti,otap-del-sel-sdr50 = <0xc>;
15115def4c47SEmmanuel Vadot		ti,otap-del-sel-ddr50 = <0xc>;
1512f126890aSEmmanuel Vadot		ti,otap-del-sel-sdr104 = <0x5>;
15132eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-legacy = <0x0>;
15142eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-sd-hs = <0x0>;
15152eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-sdr12 = <0x0>;
15162eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-sdr25 = <0x0>;
15172eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-ddr50 = <0x2>;
1518c66ec88fSEmmanuel Vadot		ti,trm-icp = <0x8>;
1519c66ec88fSEmmanuel Vadot		ti,clkbuf-sel = <0x7>;
1520c66ec88fSEmmanuel Vadot		dma-coherent;
15212eb4d8dcSEmmanuel Vadot		sdhci-caps-mask = <0x2 0x0>;
1522aa1a8ff2SEmmanuel Vadot		status = "disabled";
1523c66ec88fSEmmanuel Vadot	};
1524c66ec88fSEmmanuel Vadot
15255def4c47SEmmanuel Vadot	main_sdhci2: mmc@4f98000 {
1526c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-sdhci-4bit";
1527c66ec88fSEmmanuel Vadot		reg = <0x0 0x4f98000 0x0 0x1000>, <0x0 0x4f90000 0x0 0x400>;
1528c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
1529c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 93 TI_SCI_PD_EXCLUSIVE>;
15305def4c47SEmmanuel Vadot		clock-names = "clk_ahb", "clk_xin";
15315def4c47SEmmanuel Vadot		clocks = <&k3_clks 93 5>, <&k3_clks 93 0>;
1532c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 93 0>;
1533c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 93 1>;
15345def4c47SEmmanuel Vadot		ti,otap-del-sel-legacy = <0x0>;
1535f126890aSEmmanuel Vadot		ti,otap-del-sel-sd-hs = <0x0>;
15365def4c47SEmmanuel Vadot		ti,otap-del-sel-sdr12 = <0xf>;
15375def4c47SEmmanuel Vadot		ti,otap-del-sel-sdr25 = <0xf>;
15385def4c47SEmmanuel Vadot		ti,otap-del-sel-sdr50 = <0xc>;
15395def4c47SEmmanuel Vadot		ti,otap-del-sel-ddr50 = <0xc>;
1540f126890aSEmmanuel Vadot		ti,otap-del-sel-sdr104 = <0x5>;
15412eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-legacy = <0x0>;
15422eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-sd-hs = <0x0>;
15432eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-sdr12 = <0x0>;
15442eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-sdr25 = <0x0>;
15452eb4d8dcSEmmanuel Vadot		ti,itap-del-sel-ddr50 = <0x2>;
1546c66ec88fSEmmanuel Vadot		ti,trm-icp = <0x8>;
1547c66ec88fSEmmanuel Vadot		ti,clkbuf-sel = <0x7>;
1548c66ec88fSEmmanuel Vadot		dma-coherent;
15492eb4d8dcSEmmanuel Vadot		sdhci-caps-mask = <0x2 0x0>;
1550aa1a8ff2SEmmanuel Vadot		status = "disabled";
1551c66ec88fSEmmanuel Vadot	};
1552c66ec88fSEmmanuel Vadot
15536be33864SEmmanuel Vadot	usbss0: cdns-usb@4104000 {
1554c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-usb";
1555c66ec88fSEmmanuel Vadot		reg = <0x00 0x4104000 0x00 0x100>;
1556c66ec88fSEmmanuel Vadot		dma-coherent;
1557c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 288 TI_SCI_PD_EXCLUSIVE>;
1558c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 288 15>, <&k3_clks 288 3>;
1559c66ec88fSEmmanuel Vadot		clock-names = "ref", "lpm";
1560c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 288 15>;	/* USB2_REFCLK */
1561c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 288 16>; /* HFOSC0 */
1562c66ec88fSEmmanuel Vadot		#address-cells = <2>;
1563c66ec88fSEmmanuel Vadot		#size-cells = <2>;
1564c66ec88fSEmmanuel Vadot		ranges;
1565c66ec88fSEmmanuel Vadot
1566c66ec88fSEmmanuel Vadot		usb0: usb@6000000 {
1567c66ec88fSEmmanuel Vadot			compatible = "cdns,usb3";
1568c66ec88fSEmmanuel Vadot			reg = <0x00 0x6000000 0x00 0x10000>,
1569c66ec88fSEmmanuel Vadot			      <0x00 0x6010000 0x00 0x10000>,
1570c66ec88fSEmmanuel Vadot			      <0x00 0x6020000 0x00 0x10000>;
1571c66ec88fSEmmanuel Vadot			reg-names = "otg", "xhci", "dev";
1572c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>,	/* irq.0 */
1573c66ec88fSEmmanuel Vadot				     <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>,	/* irq.6 */
1574c66ec88fSEmmanuel Vadot				     <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;	/* otgirq.0 */
1575c66ec88fSEmmanuel Vadot			interrupt-names = "host",
1576c66ec88fSEmmanuel Vadot					  "peripheral",
1577c66ec88fSEmmanuel Vadot					  "otg";
1578c66ec88fSEmmanuel Vadot			maximum-speed = "super-speed";
1579c66ec88fSEmmanuel Vadot			dr_mode = "otg";
1580c66ec88fSEmmanuel Vadot		};
1581c66ec88fSEmmanuel Vadot	};
1582c66ec88fSEmmanuel Vadot
15836be33864SEmmanuel Vadot	usbss1: cdns-usb@4114000 {
1584c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-usb";
1585c66ec88fSEmmanuel Vadot		reg = <0x00 0x4114000 0x00 0x100>;
1586c66ec88fSEmmanuel Vadot		dma-coherent;
1587c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 289 TI_SCI_PD_EXCLUSIVE>;
1588c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 289 15>, <&k3_clks 289 3>;
1589c66ec88fSEmmanuel Vadot		clock-names = "ref", "lpm";
1590c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 289 15>;	/* USB2_REFCLK */
1591c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 289 16>; /* HFOSC0 */
1592c66ec88fSEmmanuel Vadot		#address-cells = <2>;
1593c66ec88fSEmmanuel Vadot		#size-cells = <2>;
1594c66ec88fSEmmanuel Vadot		ranges;
1595c66ec88fSEmmanuel Vadot
1596c66ec88fSEmmanuel Vadot		usb1: usb@6400000 {
1597c66ec88fSEmmanuel Vadot			compatible = "cdns,usb3";
1598c66ec88fSEmmanuel Vadot			reg = <0x00 0x6400000 0x00 0x10000>,
1599c66ec88fSEmmanuel Vadot			      <0x00 0x6410000 0x00 0x10000>,
1600c66ec88fSEmmanuel Vadot			      <0x00 0x6420000 0x00 0x10000>;
1601c66ec88fSEmmanuel Vadot			reg-names = "otg", "xhci", "dev";
1602c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>,	/* irq.0 */
1603c66ec88fSEmmanuel Vadot				     <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>,	/* irq.6 */
1604c66ec88fSEmmanuel Vadot				     <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;	/* otgirq.0 */
1605c66ec88fSEmmanuel Vadot			interrupt-names = "host",
1606c66ec88fSEmmanuel Vadot					  "peripheral",
1607c66ec88fSEmmanuel Vadot					  "otg";
1608c66ec88fSEmmanuel Vadot			maximum-speed = "super-speed";
1609c66ec88fSEmmanuel Vadot			dr_mode = "otg";
1610c66ec88fSEmmanuel Vadot		};
1611c66ec88fSEmmanuel Vadot	};
1612c66ec88fSEmmanuel Vadot
1613c66ec88fSEmmanuel Vadot	main_i2c0: i2c@2000000 {
1614c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-i2c", "ti,omap4-i2c";
1615c66ec88fSEmmanuel Vadot		reg = <0x0 0x2000000 0x0 0x100>;
1616c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 200 IRQ_TYPE_LEVEL_HIGH>;
1617c66ec88fSEmmanuel Vadot		#address-cells = <1>;
1618c66ec88fSEmmanuel Vadot		#size-cells = <0>;
1619c66ec88fSEmmanuel Vadot		clock-names = "fck";
1620c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 187 0>;
1621c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 187 TI_SCI_PD_SHARED>;
16228bab661aSEmmanuel Vadot		status = "disabled";
1623c66ec88fSEmmanuel Vadot	};
1624c66ec88fSEmmanuel Vadot
1625c66ec88fSEmmanuel Vadot	main_i2c1: i2c@2010000 {
1626c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-i2c", "ti,omap4-i2c";
1627c66ec88fSEmmanuel Vadot		reg = <0x0 0x2010000 0x0 0x100>;
1628c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 201 IRQ_TYPE_LEVEL_HIGH>;
1629c66ec88fSEmmanuel Vadot		#address-cells = <1>;
1630c66ec88fSEmmanuel Vadot		#size-cells = <0>;
1631c66ec88fSEmmanuel Vadot		clock-names = "fck";
1632c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 188 0>;
1633c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 188 TI_SCI_PD_EXCLUSIVE>;
16348bab661aSEmmanuel Vadot		status = "disabled";
1635c66ec88fSEmmanuel Vadot	};
1636c66ec88fSEmmanuel Vadot
1637c66ec88fSEmmanuel Vadot	main_i2c2: i2c@2020000 {
1638c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-i2c", "ti,omap4-i2c";
1639c66ec88fSEmmanuel Vadot		reg = <0x0 0x2020000 0x0 0x100>;
1640c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 202 IRQ_TYPE_LEVEL_HIGH>;
1641c66ec88fSEmmanuel Vadot		#address-cells = <1>;
1642c66ec88fSEmmanuel Vadot		#size-cells = <0>;
1643c66ec88fSEmmanuel Vadot		clock-names = "fck";
1644c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 189 0>;
1645c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 189 TI_SCI_PD_EXCLUSIVE>;
16468bab661aSEmmanuel Vadot		status = "disabled";
1647c66ec88fSEmmanuel Vadot	};
1648c66ec88fSEmmanuel Vadot
1649c66ec88fSEmmanuel Vadot	main_i2c3: i2c@2030000 {
1650c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-i2c", "ti,omap4-i2c";
1651c66ec88fSEmmanuel Vadot		reg = <0x0 0x2030000 0x0 0x100>;
1652c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 203 IRQ_TYPE_LEVEL_HIGH>;
1653c66ec88fSEmmanuel Vadot		#address-cells = <1>;
1654c66ec88fSEmmanuel Vadot		#size-cells = <0>;
1655c66ec88fSEmmanuel Vadot		clock-names = "fck";
1656c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 190 0>;
1657c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 190 TI_SCI_PD_EXCLUSIVE>;
16588bab661aSEmmanuel Vadot		status = "disabled";
1659c66ec88fSEmmanuel Vadot	};
1660c66ec88fSEmmanuel Vadot
1661c66ec88fSEmmanuel Vadot	main_i2c4: i2c@2040000 {
1662c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-i2c", "ti,omap4-i2c";
1663c66ec88fSEmmanuel Vadot		reg = <0x0 0x2040000 0x0 0x100>;
1664c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 204 IRQ_TYPE_LEVEL_HIGH>;
1665c66ec88fSEmmanuel Vadot		#address-cells = <1>;
1666c66ec88fSEmmanuel Vadot		#size-cells = <0>;
1667c66ec88fSEmmanuel Vadot		clock-names = "fck";
1668c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 191 0>;
1669c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 191 TI_SCI_PD_EXCLUSIVE>;
16708bab661aSEmmanuel Vadot		status = "disabled";
1671c66ec88fSEmmanuel Vadot	};
1672c66ec88fSEmmanuel Vadot
1673c66ec88fSEmmanuel Vadot	main_i2c5: i2c@2050000 {
1674c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-i2c", "ti,omap4-i2c";
1675c66ec88fSEmmanuel Vadot		reg = <0x0 0x2050000 0x0 0x100>;
1676c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>;
1677c66ec88fSEmmanuel Vadot		#address-cells = <1>;
1678c66ec88fSEmmanuel Vadot		#size-cells = <0>;
1679c66ec88fSEmmanuel Vadot		clock-names = "fck";
1680c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 192 0>;
1681c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 192 TI_SCI_PD_EXCLUSIVE>;
16828bab661aSEmmanuel Vadot		status = "disabled";
1683c66ec88fSEmmanuel Vadot	};
1684c66ec88fSEmmanuel Vadot
1685c66ec88fSEmmanuel Vadot	main_i2c6: i2c@2060000 {
1686c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-i2c", "ti,omap4-i2c";
1687c66ec88fSEmmanuel Vadot		reg = <0x0 0x2060000 0x0 0x100>;
1688c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>;
1689c66ec88fSEmmanuel Vadot		#address-cells = <1>;
1690c66ec88fSEmmanuel Vadot		#size-cells = <0>;
1691c66ec88fSEmmanuel Vadot		clock-names = "fck";
1692c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 193 0>;
1693c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 193 TI_SCI_PD_EXCLUSIVE>;
16948bab661aSEmmanuel Vadot		status = "disabled";
1695c66ec88fSEmmanuel Vadot	};
1696c66ec88fSEmmanuel Vadot
1697c66ec88fSEmmanuel Vadot	ufs_wrapper: ufs-wrapper@4e80000 {
1698c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-ufs";
1699c66ec88fSEmmanuel Vadot		reg = <0x0 0x4e80000 0x0 0x100>;
1700c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 277 TI_SCI_PD_EXCLUSIVE>;
1701c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 277 1>;
1702c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 277 1>;
1703c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 277 4>;
1704c66ec88fSEmmanuel Vadot		ranges;
1705c66ec88fSEmmanuel Vadot		#address-cells = <2>;
1706c66ec88fSEmmanuel Vadot		#size-cells = <2>;
1707c66ec88fSEmmanuel Vadot
1708c66ec88fSEmmanuel Vadot		ufs@4e84000 {
1709c66ec88fSEmmanuel Vadot			compatible = "cdns,ufshc-m31-16nm", "jedec,ufs-2.0";
1710c66ec88fSEmmanuel Vadot			reg = <0x0 0x4e84000 0x0 0x10000>;
1711c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
1712c66ec88fSEmmanuel Vadot			freq-table-hz = <250000000 250000000>, <19200000 19200000>, <19200000 19200000>;
1713c66ec88fSEmmanuel Vadot			clocks = <&k3_clks 277 0>, <&k3_clks 277 1>, <&k3_clks 277 1>;
1714c66ec88fSEmmanuel Vadot			clock-names = "core_clk", "phy_clk", "ref_clk";
1715c66ec88fSEmmanuel Vadot			dma-coherent;
1716c66ec88fSEmmanuel Vadot		};
1717c66ec88fSEmmanuel Vadot	};
1718c66ec88fSEmmanuel Vadot
1719d5b0e70fSEmmanuel Vadot	mhdp: dp-bridge@a000000 {
1720d5b0e70fSEmmanuel Vadot		compatible = "ti,j721e-mhdp8546";
1721d5b0e70fSEmmanuel Vadot		/*
1722d5b0e70fSEmmanuel Vadot		 * Note: we do not map DPTX PHY area, as that is handled by
1723d5b0e70fSEmmanuel Vadot		 * the PHY driver.
1724d5b0e70fSEmmanuel Vadot		 */
1725d5b0e70fSEmmanuel Vadot		reg = <0x00 0x0a000000 0x00 0x030a00>, /* DSS_EDP0_V2A_CORE_VP_REGS_APB */
1726d5b0e70fSEmmanuel Vadot		      <0x00 0x04f40000 0x00 0x20>;    /* DSS_EDP0_INTG_CFG_VP */
1727d5b0e70fSEmmanuel Vadot		reg-names = "mhdptx", "j721e-intg";
1728d5b0e70fSEmmanuel Vadot
1729d5b0e70fSEmmanuel Vadot		clocks = <&k3_clks 151 36>;
1730d5b0e70fSEmmanuel Vadot
1731d5b0e70fSEmmanuel Vadot		interrupt-parent = <&gic500>;
1732d5b0e70fSEmmanuel Vadot		interrupts = <GIC_SPI 614 IRQ_TYPE_LEVEL_HIGH>;
1733d5b0e70fSEmmanuel Vadot
1734d5b0e70fSEmmanuel Vadot		power-domains = <&k3_pds 151 TI_SCI_PD_EXCLUSIVE>;
1735d5b0e70fSEmmanuel Vadot
1736d5b0e70fSEmmanuel Vadot		dp0_ports: ports {
1737d5b0e70fSEmmanuel Vadot			#address-cells = <1>;
1738d5b0e70fSEmmanuel Vadot			#size-cells = <0>;
1739d5b0e70fSEmmanuel Vadot
1740d5b0e70fSEmmanuel Vadot			port@0 {
1741d5b0e70fSEmmanuel Vadot			    reg = <0>;
1742d5b0e70fSEmmanuel Vadot			};
1743d5b0e70fSEmmanuel Vadot
1744d5b0e70fSEmmanuel Vadot			port@4 {
1745d5b0e70fSEmmanuel Vadot			    reg = <4>;
1746d5b0e70fSEmmanuel Vadot			};
1747d5b0e70fSEmmanuel Vadot		};
1748d5b0e70fSEmmanuel Vadot	};
1749d5b0e70fSEmmanuel Vadot
17505def4c47SEmmanuel Vadot	dss: dss@4a00000 {
1751c66ec88fSEmmanuel Vadot		compatible = "ti,j721e-dss";
1752c66ec88fSEmmanuel Vadot		reg =
1753c66ec88fSEmmanuel Vadot			<0x00 0x04a00000 0x00 0x10000>, /* common_m */
1754c66ec88fSEmmanuel Vadot			<0x00 0x04a10000 0x00 0x10000>, /* common_s0*/
1755c66ec88fSEmmanuel Vadot			<0x00 0x04b00000 0x00 0x10000>, /* common_s1*/
1756c66ec88fSEmmanuel Vadot			<0x00 0x04b10000 0x00 0x10000>, /* common_s2*/
1757c66ec88fSEmmanuel Vadot
1758c66ec88fSEmmanuel Vadot			<0x00 0x04a20000 0x00 0x10000>, /* vidl1 */
1759c66ec88fSEmmanuel Vadot			<0x00 0x04a30000 0x00 0x10000>, /* vidl2 */
1760c66ec88fSEmmanuel Vadot			<0x00 0x04a50000 0x00 0x10000>, /* vid1 */
1761c66ec88fSEmmanuel Vadot			<0x00 0x04a60000 0x00 0x10000>, /* vid2 */
1762c66ec88fSEmmanuel Vadot
1763c66ec88fSEmmanuel Vadot			<0x00 0x04a70000 0x00 0x10000>, /* ovr1 */
1764c66ec88fSEmmanuel Vadot			<0x00 0x04a90000 0x00 0x10000>, /* ovr2 */
1765c66ec88fSEmmanuel Vadot			<0x00 0x04ab0000 0x00 0x10000>, /* ovr3 */
1766c66ec88fSEmmanuel Vadot			<0x00 0x04ad0000 0x00 0x10000>, /* ovr4 */
1767c66ec88fSEmmanuel Vadot
1768c66ec88fSEmmanuel Vadot			<0x00 0x04a80000 0x00 0x10000>, /* vp1 */
1769c66ec88fSEmmanuel Vadot			<0x00 0x04aa0000 0x00 0x10000>, /* vp2 */
1770c66ec88fSEmmanuel Vadot			<0x00 0x04ac0000 0x00 0x10000>, /* vp3 */
1771c66ec88fSEmmanuel Vadot			<0x00 0x04ae0000 0x00 0x10000>, /* vp4 */
1772c66ec88fSEmmanuel Vadot			<0x00 0x04af0000 0x00 0x10000>; /* wb */
1773c66ec88fSEmmanuel Vadot
1774c66ec88fSEmmanuel Vadot		reg-names = "common_m", "common_s0",
1775c66ec88fSEmmanuel Vadot			"common_s1", "common_s2",
1776c66ec88fSEmmanuel Vadot			"vidl1", "vidl2","vid1","vid2",
1777c66ec88fSEmmanuel Vadot			"ovr1", "ovr2", "ovr3", "ovr4",
1778c66ec88fSEmmanuel Vadot			"vp1", "vp2", "vp3", "vp4",
1779c66ec88fSEmmanuel Vadot			"wb";
1780c66ec88fSEmmanuel Vadot
1781c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 152 0>,
1782c66ec88fSEmmanuel Vadot			 <&k3_clks 152 1>,
1783c66ec88fSEmmanuel Vadot			 <&k3_clks 152 4>,
1784c66ec88fSEmmanuel Vadot			 <&k3_clks 152 9>,
1785c66ec88fSEmmanuel Vadot			 <&k3_clks 152 13>;
1786c66ec88fSEmmanuel Vadot		clock-names = "fck", "vp1", "vp2", "vp3", "vp4";
1787c66ec88fSEmmanuel Vadot
1788c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 152 TI_SCI_PD_EXCLUSIVE>;
1789c66ec88fSEmmanuel Vadot
1790c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 602 IRQ_TYPE_LEVEL_HIGH>,
1791c66ec88fSEmmanuel Vadot			     <GIC_SPI 603 IRQ_TYPE_LEVEL_HIGH>,
1792c66ec88fSEmmanuel Vadot			     <GIC_SPI 604 IRQ_TYPE_LEVEL_HIGH>,
1793c66ec88fSEmmanuel Vadot			     <GIC_SPI 605 IRQ_TYPE_LEVEL_HIGH>;
1794c66ec88fSEmmanuel Vadot		interrupt-names = "common_m",
1795c66ec88fSEmmanuel Vadot				  "common_s0",
1796c66ec88fSEmmanuel Vadot				  "common_s1",
1797c66ec88fSEmmanuel Vadot				  "common_s2";
1798c66ec88fSEmmanuel Vadot
1799c66ec88fSEmmanuel Vadot		dss_ports: ports {
1800c66ec88fSEmmanuel Vadot		};
1801c66ec88fSEmmanuel Vadot	};
1802c66ec88fSEmmanuel Vadot
1803c66ec88fSEmmanuel Vadot	mcasp0: mcasp@2b00000 {
1804c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1805c66ec88fSEmmanuel Vadot		reg = <0x0 0x02b00000 0x0 0x2000>,
1806c66ec88fSEmmanuel Vadot			<0x0 0x02b08000 0x0 0x1000>;
1807c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1808c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 544 IRQ_TYPE_LEVEL_HIGH>,
1809c66ec88fSEmmanuel Vadot				<GIC_SPI 545 IRQ_TYPE_LEVEL_HIGH>;
1810c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1811c66ec88fSEmmanuel Vadot
1812c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc400>, <&main_udmap 0x4400>;
1813c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1814c66ec88fSEmmanuel Vadot
1815c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 174 1>;
1816c66ec88fSEmmanuel Vadot		clock-names = "fck";
1817c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 174 TI_SCI_PD_EXCLUSIVE>;
18188bab661aSEmmanuel Vadot		status = "disabled";
1819c66ec88fSEmmanuel Vadot	};
1820c66ec88fSEmmanuel Vadot
1821c66ec88fSEmmanuel Vadot	mcasp1: mcasp@2b10000 {
1822c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1823c66ec88fSEmmanuel Vadot		reg = <0x0 0x02b10000 0x0 0x2000>,
1824c66ec88fSEmmanuel Vadot			<0x0 0x02b18000 0x0 0x1000>;
1825c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1826c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 546 IRQ_TYPE_LEVEL_HIGH>,
1827c66ec88fSEmmanuel Vadot				<GIC_SPI 547 IRQ_TYPE_LEVEL_HIGH>;
1828c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1829c66ec88fSEmmanuel Vadot
1830c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc401>, <&main_udmap 0x4401>;
1831c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1832c66ec88fSEmmanuel Vadot
1833c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 175 1>;
1834c66ec88fSEmmanuel Vadot		clock-names = "fck";
1835c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 175 TI_SCI_PD_EXCLUSIVE>;
18368bab661aSEmmanuel Vadot		status = "disabled";
1837c66ec88fSEmmanuel Vadot	};
1838c66ec88fSEmmanuel Vadot
1839c66ec88fSEmmanuel Vadot	mcasp2: mcasp@2b20000 {
1840c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1841c66ec88fSEmmanuel Vadot		reg = <0x0 0x02b20000 0x0 0x2000>,
1842c66ec88fSEmmanuel Vadot			<0x0 0x02b28000 0x0 0x1000>;
1843c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1844c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 548 IRQ_TYPE_LEVEL_HIGH>,
1845c66ec88fSEmmanuel Vadot				<GIC_SPI 549 IRQ_TYPE_LEVEL_HIGH>;
1846c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1847c66ec88fSEmmanuel Vadot
1848c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc402>, <&main_udmap 0x4402>;
1849c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1850c66ec88fSEmmanuel Vadot
1851c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 176 1>;
1852c66ec88fSEmmanuel Vadot		clock-names = "fck";
1853c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 176 TI_SCI_PD_EXCLUSIVE>;
18548bab661aSEmmanuel Vadot		status = "disabled";
1855c66ec88fSEmmanuel Vadot	};
1856c66ec88fSEmmanuel Vadot
1857c66ec88fSEmmanuel Vadot	mcasp3: mcasp@2b30000 {
1858c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1859c66ec88fSEmmanuel Vadot		reg = <0x0 0x02b30000 0x0 0x2000>,
1860c66ec88fSEmmanuel Vadot			<0x0 0x02b38000 0x0 0x1000>;
1861c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1862c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 550 IRQ_TYPE_LEVEL_HIGH>,
1863c66ec88fSEmmanuel Vadot				<GIC_SPI 551 IRQ_TYPE_LEVEL_HIGH>;
1864c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1865c66ec88fSEmmanuel Vadot
1866c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc500>, <&main_udmap 0x4500>;
1867c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1868c66ec88fSEmmanuel Vadot
1869c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 177 1>;
1870c66ec88fSEmmanuel Vadot		clock-names = "fck";
1871c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 177 TI_SCI_PD_EXCLUSIVE>;
18728bab661aSEmmanuel Vadot		status = "disabled";
1873c66ec88fSEmmanuel Vadot	};
1874c66ec88fSEmmanuel Vadot
1875c66ec88fSEmmanuel Vadot	mcasp4: mcasp@2b40000 {
1876c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1877c66ec88fSEmmanuel Vadot		reg = <0x0 0x02b40000 0x0 0x2000>,
1878c66ec88fSEmmanuel Vadot			<0x0 0x02b48000 0x0 0x1000>;
1879c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1880c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 552 IRQ_TYPE_LEVEL_HIGH>,
1881c66ec88fSEmmanuel Vadot				<GIC_SPI 553 IRQ_TYPE_LEVEL_HIGH>;
1882c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1883c66ec88fSEmmanuel Vadot
1884c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc501>, <&main_udmap 0x4501>;
1885c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1886c66ec88fSEmmanuel Vadot
1887c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 178 1>;
1888c66ec88fSEmmanuel Vadot		clock-names = "fck";
1889c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 178 TI_SCI_PD_EXCLUSIVE>;
18908bab661aSEmmanuel Vadot		status = "disabled";
1891c66ec88fSEmmanuel Vadot	};
1892c66ec88fSEmmanuel Vadot
1893c66ec88fSEmmanuel Vadot	mcasp5: mcasp@2b50000 {
1894c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1895c66ec88fSEmmanuel Vadot		reg = <0x0 0x02b50000 0x0 0x2000>,
1896c66ec88fSEmmanuel Vadot			<0x0 0x02b58000 0x0 0x1000>;
1897c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1898c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 554 IRQ_TYPE_LEVEL_HIGH>,
1899c66ec88fSEmmanuel Vadot				<GIC_SPI 555 IRQ_TYPE_LEVEL_HIGH>;
1900c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1901c66ec88fSEmmanuel Vadot
1902c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc502>, <&main_udmap 0x4502>;
1903c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1904c66ec88fSEmmanuel Vadot
1905c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 179 1>;
1906c66ec88fSEmmanuel Vadot		clock-names = "fck";
1907c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 179 TI_SCI_PD_EXCLUSIVE>;
19088bab661aSEmmanuel Vadot		status = "disabled";
1909c66ec88fSEmmanuel Vadot	};
1910c66ec88fSEmmanuel Vadot
1911c66ec88fSEmmanuel Vadot	mcasp6: mcasp@2b60000 {
1912c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1913c66ec88fSEmmanuel Vadot		reg = <0x0 0x02b60000 0x0 0x2000>,
1914c66ec88fSEmmanuel Vadot			<0x0 0x02b68000 0x0 0x1000>;
1915c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1916c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 556 IRQ_TYPE_LEVEL_HIGH>,
1917c66ec88fSEmmanuel Vadot				<GIC_SPI 557 IRQ_TYPE_LEVEL_HIGH>;
1918c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1919c66ec88fSEmmanuel Vadot
1920c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc503>, <&main_udmap 0x4503>;
1921c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1922c66ec88fSEmmanuel Vadot
1923c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 180 1>;
1924c66ec88fSEmmanuel Vadot		clock-names = "fck";
1925c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 180 TI_SCI_PD_EXCLUSIVE>;
19268bab661aSEmmanuel Vadot		status = "disabled";
1927c66ec88fSEmmanuel Vadot	};
1928c66ec88fSEmmanuel Vadot
1929c66ec88fSEmmanuel Vadot	mcasp7: mcasp@2b70000 {
1930c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1931c66ec88fSEmmanuel Vadot		reg = <0x0 0x02b70000 0x0 0x2000>,
1932c66ec88fSEmmanuel Vadot			<0x0 0x02b78000 0x0 0x1000>;
1933c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1934c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 558 IRQ_TYPE_LEVEL_HIGH>,
1935c66ec88fSEmmanuel Vadot				<GIC_SPI 559 IRQ_TYPE_LEVEL_HIGH>;
1936c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1937c66ec88fSEmmanuel Vadot
1938c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc504>, <&main_udmap 0x4504>;
1939c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1940c66ec88fSEmmanuel Vadot
1941c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 181 1>;
1942c66ec88fSEmmanuel Vadot		clock-names = "fck";
1943c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 181 TI_SCI_PD_EXCLUSIVE>;
19448bab661aSEmmanuel Vadot		status = "disabled";
1945c66ec88fSEmmanuel Vadot	};
1946c66ec88fSEmmanuel Vadot
1947c66ec88fSEmmanuel Vadot	mcasp8: mcasp@2b80000 {
1948c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1949c66ec88fSEmmanuel Vadot		reg = <0x0 0x02b80000 0x0 0x2000>,
1950c66ec88fSEmmanuel Vadot			<0x0 0x02b88000 0x0 0x1000>;
1951c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1952c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 560 IRQ_TYPE_LEVEL_HIGH>,
1953c66ec88fSEmmanuel Vadot				<GIC_SPI 561 IRQ_TYPE_LEVEL_HIGH>;
1954c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1955c66ec88fSEmmanuel Vadot
1956c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc505>, <&main_udmap 0x4505>;
1957c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1958c66ec88fSEmmanuel Vadot
1959c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 182 1>;
1960c66ec88fSEmmanuel Vadot		clock-names = "fck";
1961c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 182 TI_SCI_PD_EXCLUSIVE>;
19628bab661aSEmmanuel Vadot		status = "disabled";
1963c66ec88fSEmmanuel Vadot	};
1964c66ec88fSEmmanuel Vadot
1965c66ec88fSEmmanuel Vadot	mcasp9: mcasp@2b90000 {
1966c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1967c66ec88fSEmmanuel Vadot		reg = <0x0 0x02b90000 0x0 0x2000>,
1968c66ec88fSEmmanuel Vadot			<0x0 0x02b98000 0x0 0x1000>;
1969c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1970c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 562 IRQ_TYPE_LEVEL_HIGH>,
1971c66ec88fSEmmanuel Vadot				<GIC_SPI 563 IRQ_TYPE_LEVEL_HIGH>;
1972c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1973c66ec88fSEmmanuel Vadot
1974c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc506>, <&main_udmap 0x4506>;
1975c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1976c66ec88fSEmmanuel Vadot
1977c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 183 1>;
1978c66ec88fSEmmanuel Vadot		clock-names = "fck";
1979c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 183 TI_SCI_PD_EXCLUSIVE>;
19808bab661aSEmmanuel Vadot		status = "disabled";
1981c66ec88fSEmmanuel Vadot	};
1982c66ec88fSEmmanuel Vadot
1983c66ec88fSEmmanuel Vadot	mcasp10: mcasp@2ba0000 {
1984c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
1985c66ec88fSEmmanuel Vadot		reg = <0x0 0x02ba0000 0x0 0x2000>,
1986c66ec88fSEmmanuel Vadot			<0x0 0x02ba8000 0x0 0x1000>;
1987c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
1988c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 564 IRQ_TYPE_LEVEL_HIGH>,
1989c66ec88fSEmmanuel Vadot				<GIC_SPI 565 IRQ_TYPE_LEVEL_HIGH>;
1990c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
1991c66ec88fSEmmanuel Vadot
1992c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc507>, <&main_udmap 0x4507>;
1993c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
1994c66ec88fSEmmanuel Vadot
1995c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 184 1>;
1996c66ec88fSEmmanuel Vadot		clock-names = "fck";
1997c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 184 TI_SCI_PD_EXCLUSIVE>;
19988bab661aSEmmanuel Vadot		status = "disabled";
1999c66ec88fSEmmanuel Vadot	};
2000c66ec88fSEmmanuel Vadot
2001c66ec88fSEmmanuel Vadot	mcasp11: mcasp@2bb0000 {
2002c66ec88fSEmmanuel Vadot		compatible = "ti,am33xx-mcasp-audio";
2003c66ec88fSEmmanuel Vadot		reg = <0x0 0x02bb0000 0x0 0x2000>,
2004c66ec88fSEmmanuel Vadot			<0x0 0x02bb8000 0x0 0x1000>;
2005c66ec88fSEmmanuel Vadot		reg-names = "mpu","dat";
2006c66ec88fSEmmanuel Vadot		interrupts = <GIC_SPI 566 IRQ_TYPE_LEVEL_HIGH>,
2007c66ec88fSEmmanuel Vadot				<GIC_SPI 567 IRQ_TYPE_LEVEL_HIGH>;
2008c66ec88fSEmmanuel Vadot		interrupt-names = "tx", "rx";
2009c66ec88fSEmmanuel Vadot
2010c66ec88fSEmmanuel Vadot		dmas = <&main_udmap 0xc508>, <&main_udmap 0x4508>;
2011c66ec88fSEmmanuel Vadot		dma-names = "tx", "rx";
2012c66ec88fSEmmanuel Vadot
2013c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 185 1>;
2014c66ec88fSEmmanuel Vadot		clock-names = "fck";
2015c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 185 TI_SCI_PD_EXCLUSIVE>;
20168bab661aSEmmanuel Vadot		status = "disabled";
2017c66ec88fSEmmanuel Vadot	};
2018c66ec88fSEmmanuel Vadot
2019c66ec88fSEmmanuel Vadot	watchdog0: watchdog@2200000 {
2020c66ec88fSEmmanuel Vadot		compatible = "ti,j7-rti-wdt";
2021c66ec88fSEmmanuel Vadot		reg = <0x0 0x2200000 0x0 0x100>;
2022c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 252 1>;
2023c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 252 TI_SCI_PD_EXCLUSIVE>;
2024c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 252 1>;
2025c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 252 5>;
2026c66ec88fSEmmanuel Vadot	};
2027c66ec88fSEmmanuel Vadot
2028c66ec88fSEmmanuel Vadot	watchdog1: watchdog@2210000 {
2029c66ec88fSEmmanuel Vadot		compatible = "ti,j7-rti-wdt";
2030c66ec88fSEmmanuel Vadot		reg = <0x0 0x2210000 0x0 0x100>;
2031c66ec88fSEmmanuel Vadot		clocks = <&k3_clks 253 1>;
2032c66ec88fSEmmanuel Vadot		power-domains = <&k3_pds 253 TI_SCI_PD_EXCLUSIVE>;
2033c66ec88fSEmmanuel Vadot		assigned-clocks = <&k3_clks 253 1>;
2034c66ec88fSEmmanuel Vadot		assigned-clock-parents = <&k3_clks 253 5>;
2035c66ec88fSEmmanuel Vadot	};
20366be33864SEmmanuel Vadot
20375def4c47SEmmanuel Vadot	main_r5fss0: r5fss@5c00000 {
20385def4c47SEmmanuel Vadot		compatible = "ti,j721e-r5fss";
20395def4c47SEmmanuel Vadot		ti,cluster-mode = <1>;
20405def4c47SEmmanuel Vadot		#address-cells = <1>;
20415def4c47SEmmanuel Vadot		#size-cells = <1>;
20425def4c47SEmmanuel Vadot		ranges = <0x5c00000 0x00 0x5c00000 0x20000>,
20435def4c47SEmmanuel Vadot			 <0x5d00000 0x00 0x5d00000 0x20000>;
20445def4c47SEmmanuel Vadot		power-domains = <&k3_pds 243 TI_SCI_PD_EXCLUSIVE>;
20455def4c47SEmmanuel Vadot
20465def4c47SEmmanuel Vadot		main_r5fss0_core0: r5f@5c00000 {
20475def4c47SEmmanuel Vadot			compatible = "ti,j721e-r5f";
20485def4c47SEmmanuel Vadot			reg = <0x5c00000 0x00008000>,
20495def4c47SEmmanuel Vadot			      <0x5c10000 0x00008000>;
20505def4c47SEmmanuel Vadot			reg-names = "atcm", "btcm";
20515def4c47SEmmanuel Vadot			ti,sci = <&dmsc>;
20525def4c47SEmmanuel Vadot			ti,sci-dev-id = <245>;
20535def4c47SEmmanuel Vadot			ti,sci-proc-ids = <0x06 0xff>;
20545def4c47SEmmanuel Vadot			resets = <&k3_reset 245 1>;
20555def4c47SEmmanuel Vadot			firmware-name = "j7-main-r5f0_0-fw";
20565def4c47SEmmanuel Vadot			ti,atcm-enable = <1>;
20575def4c47SEmmanuel Vadot			ti,btcm-enable = <1>;
20585def4c47SEmmanuel Vadot			ti,loczrama = <1>;
20595def4c47SEmmanuel Vadot		};
20605def4c47SEmmanuel Vadot
20615def4c47SEmmanuel Vadot		main_r5fss0_core1: r5f@5d00000 {
20625def4c47SEmmanuel Vadot			compatible = "ti,j721e-r5f";
20635def4c47SEmmanuel Vadot			reg = <0x5d00000 0x00008000>,
20645def4c47SEmmanuel Vadot			      <0x5d10000 0x00008000>;
20655def4c47SEmmanuel Vadot			reg-names = "atcm", "btcm";
20665def4c47SEmmanuel Vadot			ti,sci = <&dmsc>;
20675def4c47SEmmanuel Vadot			ti,sci-dev-id = <246>;
20685def4c47SEmmanuel Vadot			ti,sci-proc-ids = <0x07 0xff>;
20695def4c47SEmmanuel Vadot			resets = <&k3_reset 246 1>;
20705def4c47SEmmanuel Vadot			firmware-name = "j7-main-r5f0_1-fw";
20715def4c47SEmmanuel Vadot			ti,atcm-enable = <1>;
20725def4c47SEmmanuel Vadot			ti,btcm-enable = <1>;
20735def4c47SEmmanuel Vadot			ti,loczrama = <1>;
20745def4c47SEmmanuel Vadot		};
20755def4c47SEmmanuel Vadot	};
20765def4c47SEmmanuel Vadot
20775def4c47SEmmanuel Vadot	main_r5fss1: r5fss@5e00000 {
20785def4c47SEmmanuel Vadot		compatible = "ti,j721e-r5fss";
20795def4c47SEmmanuel Vadot		ti,cluster-mode = <1>;
20805def4c47SEmmanuel Vadot		#address-cells = <1>;
20815def4c47SEmmanuel Vadot		#size-cells = <1>;
20825def4c47SEmmanuel Vadot		ranges = <0x5e00000 0x00 0x5e00000 0x20000>,
20835def4c47SEmmanuel Vadot			 <0x5f00000 0x00 0x5f00000 0x20000>;
20845def4c47SEmmanuel Vadot		power-domains = <&k3_pds 244 TI_SCI_PD_EXCLUSIVE>;
20855def4c47SEmmanuel Vadot
20865def4c47SEmmanuel Vadot		main_r5fss1_core0: r5f@5e00000 {
20875def4c47SEmmanuel Vadot			compatible = "ti,j721e-r5f";
20885def4c47SEmmanuel Vadot			reg = <0x5e00000 0x00008000>,
20895def4c47SEmmanuel Vadot			      <0x5e10000 0x00008000>;
20905def4c47SEmmanuel Vadot			reg-names = "atcm", "btcm";
20915def4c47SEmmanuel Vadot			ti,sci = <&dmsc>;
20925def4c47SEmmanuel Vadot			ti,sci-dev-id = <247>;
20935def4c47SEmmanuel Vadot			ti,sci-proc-ids = <0x08 0xff>;
20945def4c47SEmmanuel Vadot			resets = <&k3_reset 247 1>;
20955def4c47SEmmanuel Vadot			firmware-name = "j7-main-r5f1_0-fw";
20965def4c47SEmmanuel Vadot			ti,atcm-enable = <1>;
20975def4c47SEmmanuel Vadot			ti,btcm-enable = <1>;
20985def4c47SEmmanuel Vadot			ti,loczrama = <1>;
20995def4c47SEmmanuel Vadot		};
21005def4c47SEmmanuel Vadot
21015def4c47SEmmanuel Vadot		main_r5fss1_core1: r5f@5f00000 {
21025def4c47SEmmanuel Vadot			compatible = "ti,j721e-r5f";
21035def4c47SEmmanuel Vadot			reg = <0x5f00000 0x00008000>,
21045def4c47SEmmanuel Vadot			      <0x5f10000 0x00008000>;
21055def4c47SEmmanuel Vadot			reg-names = "atcm", "btcm";
21065def4c47SEmmanuel Vadot			ti,sci = <&dmsc>;
21075def4c47SEmmanuel Vadot			ti,sci-dev-id = <248>;
21085def4c47SEmmanuel Vadot			ti,sci-proc-ids = <0x09 0xff>;
21095def4c47SEmmanuel Vadot			resets = <&k3_reset 248 1>;
21105def4c47SEmmanuel Vadot			firmware-name = "j7-main-r5f1_1-fw";
21115def4c47SEmmanuel Vadot			ti,atcm-enable = <1>;
21125def4c47SEmmanuel Vadot			ti,btcm-enable = <1>;
21135def4c47SEmmanuel Vadot			ti,loczrama = <1>;
21145def4c47SEmmanuel Vadot		};
21155def4c47SEmmanuel Vadot	};
21165def4c47SEmmanuel Vadot
21176be33864SEmmanuel Vadot	c66_0: dsp@4d80800000 {
21186be33864SEmmanuel Vadot		compatible = "ti,j721e-c66-dsp";
21196be33864SEmmanuel Vadot		reg = <0x4d 0x80800000 0x00 0x00048000>,
21206be33864SEmmanuel Vadot		      <0x4d 0x80e00000 0x00 0x00008000>,
21216be33864SEmmanuel Vadot		      <0x4d 0x80f00000 0x00 0x00008000>;
21226be33864SEmmanuel Vadot		reg-names = "l2sram", "l1pram", "l1dram";
21236be33864SEmmanuel Vadot		ti,sci = <&dmsc>;
21246be33864SEmmanuel Vadot		ti,sci-dev-id = <142>;
21256be33864SEmmanuel Vadot		ti,sci-proc-ids = <0x03 0xff>;
21266be33864SEmmanuel Vadot		resets = <&k3_reset 142 1>;
21276be33864SEmmanuel Vadot		firmware-name = "j7-c66_0-fw";
2128aa1a8ff2SEmmanuel Vadot		status = "disabled";
21296be33864SEmmanuel Vadot	};
21306be33864SEmmanuel Vadot
21316be33864SEmmanuel Vadot	c66_1: dsp@4d81800000 {
21326be33864SEmmanuel Vadot		compatible = "ti,j721e-c66-dsp";
21336be33864SEmmanuel Vadot		reg = <0x4d 0x81800000 0x00 0x00048000>,
21346be33864SEmmanuel Vadot		      <0x4d 0x81e00000 0x00 0x00008000>,
21356be33864SEmmanuel Vadot		      <0x4d 0x81f00000 0x00 0x00008000>;
21366be33864SEmmanuel Vadot		reg-names = "l2sram", "l1pram", "l1dram";
21376be33864SEmmanuel Vadot		ti,sci = <&dmsc>;
21386be33864SEmmanuel Vadot		ti,sci-dev-id = <143>;
21396be33864SEmmanuel Vadot		ti,sci-proc-ids = <0x04 0xff>;
21406be33864SEmmanuel Vadot		resets = <&k3_reset 143 1>;
21416be33864SEmmanuel Vadot		firmware-name = "j7-c66_1-fw";
2142aa1a8ff2SEmmanuel Vadot		status = "disabled";
21436be33864SEmmanuel Vadot	};
21446be33864SEmmanuel Vadot
21456be33864SEmmanuel Vadot	c71_0: dsp@64800000 {
21466be33864SEmmanuel Vadot		compatible = "ti,j721e-c71-dsp";
21476be33864SEmmanuel Vadot		reg = <0x00 0x64800000 0x00 0x00080000>,
21486be33864SEmmanuel Vadot		      <0x00 0x64e00000 0x00 0x0000c000>;
21496be33864SEmmanuel Vadot		reg-names = "l2sram", "l1dram";
21506be33864SEmmanuel Vadot		ti,sci = <&dmsc>;
21516be33864SEmmanuel Vadot		ti,sci-dev-id = <15>;
21526be33864SEmmanuel Vadot		ti,sci-proc-ids = <0x30 0xff>;
21536be33864SEmmanuel Vadot		resets = <&k3_reset 15 1>;
21546be33864SEmmanuel Vadot		firmware-name = "j7-c71_0-fw";
2155aa1a8ff2SEmmanuel Vadot		status = "disabled";
21566be33864SEmmanuel Vadot	};
21572eb4d8dcSEmmanuel Vadot
21582eb4d8dcSEmmanuel Vadot	icssg0: icssg@b000000 {
21592eb4d8dcSEmmanuel Vadot		compatible = "ti,j721e-icssg";
21602eb4d8dcSEmmanuel Vadot		reg = <0x00 0xb000000 0x00 0x80000>;
21612eb4d8dcSEmmanuel Vadot		power-domains = <&k3_pds 119 TI_SCI_PD_EXCLUSIVE>;
21622eb4d8dcSEmmanuel Vadot		#address-cells = <1>;
21632eb4d8dcSEmmanuel Vadot		#size-cells = <1>;
21642eb4d8dcSEmmanuel Vadot		ranges = <0x0 0x00 0x0b000000 0x100000>;
21652eb4d8dcSEmmanuel Vadot
21662eb4d8dcSEmmanuel Vadot		icssg0_mem: memories@0 {
21672eb4d8dcSEmmanuel Vadot			reg = <0x0 0x2000>,
21682eb4d8dcSEmmanuel Vadot			      <0x2000 0x2000>,
21692eb4d8dcSEmmanuel Vadot			      <0x10000 0x10000>;
21702eb4d8dcSEmmanuel Vadot			reg-names = "dram0", "dram1",
21712eb4d8dcSEmmanuel Vadot				    "shrdram2";
21722eb4d8dcSEmmanuel Vadot		};
21732eb4d8dcSEmmanuel Vadot
21742eb4d8dcSEmmanuel Vadot		icssg0_cfg: cfg@26000 {
21752eb4d8dcSEmmanuel Vadot			compatible = "ti,pruss-cfg", "syscon";
21762eb4d8dcSEmmanuel Vadot			reg = <0x26000 0x200>;
21772eb4d8dcSEmmanuel Vadot			#address-cells = <1>;
21782eb4d8dcSEmmanuel Vadot			#size-cells = <1>;
21792eb4d8dcSEmmanuel Vadot			ranges = <0x0 0x26000 0x2000>;
21802eb4d8dcSEmmanuel Vadot
21812eb4d8dcSEmmanuel Vadot			clocks {
21822eb4d8dcSEmmanuel Vadot				#address-cells = <1>;
21832eb4d8dcSEmmanuel Vadot				#size-cells = <0>;
21842eb4d8dcSEmmanuel Vadot
21852eb4d8dcSEmmanuel Vadot				icssg0_coreclk_mux: coreclk-mux@3c {
21862eb4d8dcSEmmanuel Vadot					reg = <0x3c>;
21872eb4d8dcSEmmanuel Vadot					#clock-cells = <0>;
21882eb4d8dcSEmmanuel Vadot					clocks = <&k3_clks 119 24>, /* icssg0_core_clk */
21892eb4d8dcSEmmanuel Vadot						 <&k3_clks 119 1>;  /* icssg0_iclk */
21902eb4d8dcSEmmanuel Vadot					assigned-clocks = <&icssg0_coreclk_mux>;
21912eb4d8dcSEmmanuel Vadot					assigned-clock-parents = <&k3_clks 119 1>;
21922eb4d8dcSEmmanuel Vadot				};
21932eb4d8dcSEmmanuel Vadot
21942eb4d8dcSEmmanuel Vadot				icssg0_iepclk_mux: iepclk-mux@30 {
21952eb4d8dcSEmmanuel Vadot					reg = <0x30>;
21962eb4d8dcSEmmanuel Vadot					#clock-cells = <0>;
21972eb4d8dcSEmmanuel Vadot					clocks = <&k3_clks 119 3>,	/* icssg0_iep_clk */
21982eb4d8dcSEmmanuel Vadot						 <&icssg0_coreclk_mux>;	/* core_clk */
21992eb4d8dcSEmmanuel Vadot					assigned-clocks = <&icssg0_iepclk_mux>;
22002eb4d8dcSEmmanuel Vadot					assigned-clock-parents = <&icssg0_coreclk_mux>;
22012eb4d8dcSEmmanuel Vadot				};
22022eb4d8dcSEmmanuel Vadot			};
22032eb4d8dcSEmmanuel Vadot		};
22042eb4d8dcSEmmanuel Vadot
22052eb4d8dcSEmmanuel Vadot		icssg0_mii_rt: mii-rt@32000 {
22062eb4d8dcSEmmanuel Vadot			compatible = "ti,pruss-mii", "syscon";
22072eb4d8dcSEmmanuel Vadot			reg = <0x32000 0x100>;
22082eb4d8dcSEmmanuel Vadot		};
22092eb4d8dcSEmmanuel Vadot
22102eb4d8dcSEmmanuel Vadot		icssg0_mii_g_rt: mii-g-rt@33000 {
22112eb4d8dcSEmmanuel Vadot			compatible = "ti,pruss-mii-g", "syscon";
22122eb4d8dcSEmmanuel Vadot			reg = <0x33000 0x1000>;
22132eb4d8dcSEmmanuel Vadot		};
22142eb4d8dcSEmmanuel Vadot
22152eb4d8dcSEmmanuel Vadot		icssg0_intc: interrupt-controller@20000 {
22162eb4d8dcSEmmanuel Vadot			compatible = "ti,icssg-intc";
22172eb4d8dcSEmmanuel Vadot			reg = <0x20000 0x2000>;
22182eb4d8dcSEmmanuel Vadot			interrupt-controller;
22192eb4d8dcSEmmanuel Vadot			#interrupt-cells = <3>;
22202eb4d8dcSEmmanuel Vadot			interrupts = <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
22212eb4d8dcSEmmanuel Vadot				     <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
22222eb4d8dcSEmmanuel Vadot				     <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>,
22232eb4d8dcSEmmanuel Vadot				     <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
22242eb4d8dcSEmmanuel Vadot				     <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
22252eb4d8dcSEmmanuel Vadot				     <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
22262eb4d8dcSEmmanuel Vadot				     <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>,
22272eb4d8dcSEmmanuel Vadot				     <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>;
22282eb4d8dcSEmmanuel Vadot			interrupt-names = "host_intr0", "host_intr1",
22292eb4d8dcSEmmanuel Vadot					  "host_intr2", "host_intr3",
22302eb4d8dcSEmmanuel Vadot					  "host_intr4", "host_intr5",
22312eb4d8dcSEmmanuel Vadot					  "host_intr6", "host_intr7";
22322eb4d8dcSEmmanuel Vadot		};
22332eb4d8dcSEmmanuel Vadot
22342eb4d8dcSEmmanuel Vadot		pru0_0: pru@34000 {
22352eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-pru";
22362eb4d8dcSEmmanuel Vadot			reg = <0x34000 0x3000>,
22372eb4d8dcSEmmanuel Vadot			      <0x22000 0x100>,
22382eb4d8dcSEmmanuel Vadot			      <0x22400 0x100>;
22392eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
22402eb4d8dcSEmmanuel Vadot			firmware-name = "j7-pru0_0-fw";
22412eb4d8dcSEmmanuel Vadot		};
22422eb4d8dcSEmmanuel Vadot
22432eb4d8dcSEmmanuel Vadot		rtu0_0: rtu@4000 {
22442eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-rtu";
22452eb4d8dcSEmmanuel Vadot			reg = <0x4000 0x2000>,
22462eb4d8dcSEmmanuel Vadot			      <0x23000 0x100>,
22472eb4d8dcSEmmanuel Vadot			      <0x23400 0x100>;
22482eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
22492eb4d8dcSEmmanuel Vadot			firmware-name = "j7-rtu0_0-fw";
22502eb4d8dcSEmmanuel Vadot		};
22512eb4d8dcSEmmanuel Vadot
22522eb4d8dcSEmmanuel Vadot		tx_pru0_0: txpru@a000 {
22532eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-tx-pru";
22542eb4d8dcSEmmanuel Vadot			reg = <0xa000 0x1800>,
22552eb4d8dcSEmmanuel Vadot			      <0x25000 0x100>,
22562eb4d8dcSEmmanuel Vadot			      <0x25400 0x100>;
22572eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
22582eb4d8dcSEmmanuel Vadot			firmware-name = "j7-txpru0_0-fw";
22592eb4d8dcSEmmanuel Vadot		};
22602eb4d8dcSEmmanuel Vadot
22612eb4d8dcSEmmanuel Vadot		pru0_1: pru@38000 {
22622eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-pru";
22632eb4d8dcSEmmanuel Vadot			reg = <0x38000 0x3000>,
22642eb4d8dcSEmmanuel Vadot			      <0x24000 0x100>,
22652eb4d8dcSEmmanuel Vadot			      <0x24400 0x100>;
22662eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
22672eb4d8dcSEmmanuel Vadot			firmware-name = "j7-pru0_1-fw";
22682eb4d8dcSEmmanuel Vadot		};
22692eb4d8dcSEmmanuel Vadot
22702eb4d8dcSEmmanuel Vadot		rtu0_1: rtu@6000 {
22712eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-rtu";
22722eb4d8dcSEmmanuel Vadot			reg = <0x6000 0x2000>,
22732eb4d8dcSEmmanuel Vadot			      <0x23800 0x100>,
22742eb4d8dcSEmmanuel Vadot			      <0x23c00 0x100>;
22752eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
22762eb4d8dcSEmmanuel Vadot			firmware-name = "j7-rtu0_1-fw";
22772eb4d8dcSEmmanuel Vadot		};
22782eb4d8dcSEmmanuel Vadot
22792eb4d8dcSEmmanuel Vadot		tx_pru0_1: txpru@c000 {
22802eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-tx-pru";
22812eb4d8dcSEmmanuel Vadot			reg = <0xc000 0x1800>,
22822eb4d8dcSEmmanuel Vadot			      <0x25800 0x100>,
22832eb4d8dcSEmmanuel Vadot			      <0x25c00 0x100>;
22842eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
22852eb4d8dcSEmmanuel Vadot			firmware-name = "j7-txpru0_1-fw";
22862eb4d8dcSEmmanuel Vadot		};
22875956d97fSEmmanuel Vadot
22885956d97fSEmmanuel Vadot		icssg0_mdio: mdio@32400 {
22895956d97fSEmmanuel Vadot			compatible = "ti,davinci_mdio";
22905956d97fSEmmanuel Vadot			reg = <0x32400 0x100>;
22915956d97fSEmmanuel Vadot			clocks = <&k3_clks 119 1>;
22925956d97fSEmmanuel Vadot			clock-names = "fck";
22935956d97fSEmmanuel Vadot			#address-cells = <1>;
22945956d97fSEmmanuel Vadot			#size-cells = <0>;
22955956d97fSEmmanuel Vadot			bus_freq = <1000000>;
2296f126890aSEmmanuel Vadot			status = "disabled";
22975956d97fSEmmanuel Vadot		};
22982eb4d8dcSEmmanuel Vadot	};
22992eb4d8dcSEmmanuel Vadot
23002eb4d8dcSEmmanuel Vadot	icssg1: icssg@b100000 {
23012eb4d8dcSEmmanuel Vadot		compatible = "ti,j721e-icssg";
23022eb4d8dcSEmmanuel Vadot		reg = <0x00 0xb100000 0x00 0x80000>;
23032eb4d8dcSEmmanuel Vadot		power-domains = <&k3_pds 120 TI_SCI_PD_EXCLUSIVE>;
23042eb4d8dcSEmmanuel Vadot		#address-cells = <1>;
23052eb4d8dcSEmmanuel Vadot		#size-cells = <1>;
23062eb4d8dcSEmmanuel Vadot		ranges = <0x0 0x00 0x0b100000 0x100000>;
23072eb4d8dcSEmmanuel Vadot
23082eb4d8dcSEmmanuel Vadot		icssg1_mem: memories@b100000 {
23092eb4d8dcSEmmanuel Vadot			reg = <0x0 0x2000>,
23102eb4d8dcSEmmanuel Vadot			      <0x2000 0x2000>,
23112eb4d8dcSEmmanuel Vadot			      <0x10000 0x10000>;
23122eb4d8dcSEmmanuel Vadot			reg-names = "dram0", "dram1",
23132eb4d8dcSEmmanuel Vadot				    "shrdram2";
23142eb4d8dcSEmmanuel Vadot		};
23152eb4d8dcSEmmanuel Vadot
23162eb4d8dcSEmmanuel Vadot		icssg1_cfg: cfg@26000 {
23172eb4d8dcSEmmanuel Vadot			compatible = "ti,pruss-cfg", "syscon";
23182eb4d8dcSEmmanuel Vadot			reg = <0x26000 0x200>;
23192eb4d8dcSEmmanuel Vadot			#address-cells = <1>;
23202eb4d8dcSEmmanuel Vadot			#size-cells = <1>;
23212eb4d8dcSEmmanuel Vadot			ranges = <0x0 0x26000 0x2000>;
23222eb4d8dcSEmmanuel Vadot
23232eb4d8dcSEmmanuel Vadot			clocks {
23242eb4d8dcSEmmanuel Vadot				#address-cells = <1>;
23252eb4d8dcSEmmanuel Vadot				#size-cells = <0>;
23262eb4d8dcSEmmanuel Vadot
23272eb4d8dcSEmmanuel Vadot				icssg1_coreclk_mux: coreclk-mux@3c {
23282eb4d8dcSEmmanuel Vadot					reg = <0x3c>;
23292eb4d8dcSEmmanuel Vadot					#clock-cells = <0>;
23302eb4d8dcSEmmanuel Vadot					clocks = <&k3_clks 120 54>, /* icssg1_core_clk */
23312eb4d8dcSEmmanuel Vadot						 <&k3_clks 120 4>;  /* icssg1_iclk */
23322eb4d8dcSEmmanuel Vadot					assigned-clocks = <&icssg1_coreclk_mux>;
23332eb4d8dcSEmmanuel Vadot					assigned-clock-parents = <&k3_clks 120 4>;
23342eb4d8dcSEmmanuel Vadot				};
23352eb4d8dcSEmmanuel Vadot
23362eb4d8dcSEmmanuel Vadot				icssg1_iepclk_mux: iepclk-mux@30 {
23372eb4d8dcSEmmanuel Vadot					reg = <0x30>;
23382eb4d8dcSEmmanuel Vadot					#clock-cells = <0>;
23392eb4d8dcSEmmanuel Vadot					clocks = <&k3_clks 120 9>,	/* icssg1_iep_clk */
23402eb4d8dcSEmmanuel Vadot						 <&icssg1_coreclk_mux>;	/* core_clk */
23412eb4d8dcSEmmanuel Vadot					assigned-clocks = <&icssg1_iepclk_mux>;
23422eb4d8dcSEmmanuel Vadot					assigned-clock-parents = <&icssg1_coreclk_mux>;
23432eb4d8dcSEmmanuel Vadot				};
23442eb4d8dcSEmmanuel Vadot			};
23452eb4d8dcSEmmanuel Vadot		};
23462eb4d8dcSEmmanuel Vadot
23472eb4d8dcSEmmanuel Vadot		icssg1_mii_rt: mii-rt@32000 {
23482eb4d8dcSEmmanuel Vadot			compatible = "ti,pruss-mii", "syscon";
23492eb4d8dcSEmmanuel Vadot			reg = <0x32000 0x100>;
23502eb4d8dcSEmmanuel Vadot		};
23512eb4d8dcSEmmanuel Vadot
23522eb4d8dcSEmmanuel Vadot		icssg1_mii_g_rt: mii-g-rt@33000 {
23532eb4d8dcSEmmanuel Vadot			compatible = "ti,pruss-mii-g", "syscon";
23542eb4d8dcSEmmanuel Vadot			reg = <0x33000 0x1000>;
23552eb4d8dcSEmmanuel Vadot		};
23562eb4d8dcSEmmanuel Vadot
23572eb4d8dcSEmmanuel Vadot		icssg1_intc: interrupt-controller@20000 {
23582eb4d8dcSEmmanuel Vadot			compatible = "ti,icssg-intc";
23592eb4d8dcSEmmanuel Vadot			reg = <0x20000 0x2000>;
23602eb4d8dcSEmmanuel Vadot			interrupt-controller;
23612eb4d8dcSEmmanuel Vadot			#interrupt-cells = <3>;
23622eb4d8dcSEmmanuel Vadot			interrupts = <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
23632eb4d8dcSEmmanuel Vadot				     <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
23642eb4d8dcSEmmanuel Vadot				     <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>,
23652eb4d8dcSEmmanuel Vadot				     <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
23662eb4d8dcSEmmanuel Vadot				     <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
23672eb4d8dcSEmmanuel Vadot				     <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
23682eb4d8dcSEmmanuel Vadot				     <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>,
23692eb4d8dcSEmmanuel Vadot				     <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>;
23702eb4d8dcSEmmanuel Vadot			interrupt-names = "host_intr0", "host_intr1",
23712eb4d8dcSEmmanuel Vadot					  "host_intr2", "host_intr3",
23722eb4d8dcSEmmanuel Vadot					  "host_intr4", "host_intr5",
23732eb4d8dcSEmmanuel Vadot					  "host_intr6", "host_intr7";
23742eb4d8dcSEmmanuel Vadot		};
23752eb4d8dcSEmmanuel Vadot
23762eb4d8dcSEmmanuel Vadot		pru1_0: pru@34000 {
23772eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-pru";
23782eb4d8dcSEmmanuel Vadot			reg = <0x34000 0x4000>,
23792eb4d8dcSEmmanuel Vadot			      <0x22000 0x100>,
23802eb4d8dcSEmmanuel Vadot			      <0x22400 0x100>;
23812eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
23822eb4d8dcSEmmanuel Vadot			firmware-name = "j7-pru1_0-fw";
23832eb4d8dcSEmmanuel Vadot		};
23842eb4d8dcSEmmanuel Vadot
23852eb4d8dcSEmmanuel Vadot		rtu1_0: rtu@4000 {
23862eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-rtu";
23872eb4d8dcSEmmanuel Vadot			reg = <0x4000 0x2000>,
23882eb4d8dcSEmmanuel Vadot			      <0x23000 0x100>,
23892eb4d8dcSEmmanuel Vadot			      <0x23400 0x100>;
23902eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
23912eb4d8dcSEmmanuel Vadot			firmware-name = "j7-rtu1_0-fw";
23922eb4d8dcSEmmanuel Vadot		};
23932eb4d8dcSEmmanuel Vadot
23942eb4d8dcSEmmanuel Vadot		tx_pru1_0: txpru@a000 {
23952eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-tx-pru";
23962eb4d8dcSEmmanuel Vadot			reg = <0xa000 0x1800>,
23972eb4d8dcSEmmanuel Vadot			      <0x25000 0x100>,
23982eb4d8dcSEmmanuel Vadot			      <0x25400 0x100>;
23992eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
24002eb4d8dcSEmmanuel Vadot			firmware-name = "j7-txpru1_0-fw";
24012eb4d8dcSEmmanuel Vadot		};
24022eb4d8dcSEmmanuel Vadot
24032eb4d8dcSEmmanuel Vadot		pru1_1: pru@38000 {
24042eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-pru";
24052eb4d8dcSEmmanuel Vadot			reg = <0x38000 0x4000>,
24062eb4d8dcSEmmanuel Vadot			      <0x24000 0x100>,
24072eb4d8dcSEmmanuel Vadot			      <0x24400 0x100>;
24082eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
24092eb4d8dcSEmmanuel Vadot			firmware-name = "j7-pru1_1-fw";
24102eb4d8dcSEmmanuel Vadot		};
24112eb4d8dcSEmmanuel Vadot
24122eb4d8dcSEmmanuel Vadot		rtu1_1: rtu@6000 {
24132eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-rtu";
24142eb4d8dcSEmmanuel Vadot			reg = <0x6000 0x2000>,
24152eb4d8dcSEmmanuel Vadot			      <0x23800 0x100>,
24162eb4d8dcSEmmanuel Vadot			      <0x23c00 0x100>;
24172eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
24182eb4d8dcSEmmanuel Vadot			firmware-name = "j7-rtu1_1-fw";
24192eb4d8dcSEmmanuel Vadot		};
24202eb4d8dcSEmmanuel Vadot
24212eb4d8dcSEmmanuel Vadot		tx_pru1_1: txpru@c000 {
24222eb4d8dcSEmmanuel Vadot			compatible = "ti,j721e-tx-pru";
24232eb4d8dcSEmmanuel Vadot			reg = <0xc000 0x1800>,
24242eb4d8dcSEmmanuel Vadot			      <0x25800 0x100>,
24252eb4d8dcSEmmanuel Vadot			      <0x25c00 0x100>;
24262eb4d8dcSEmmanuel Vadot			reg-names = "iram", "control", "debug";
24272eb4d8dcSEmmanuel Vadot			firmware-name = "j7-txpru1_1-fw";
24282eb4d8dcSEmmanuel Vadot		};
24295956d97fSEmmanuel Vadot
24305956d97fSEmmanuel Vadot		icssg1_mdio: mdio@32400 {
24315956d97fSEmmanuel Vadot			compatible = "ti,davinci_mdio";
24325956d97fSEmmanuel Vadot			reg = <0x32400 0x100>;
24335956d97fSEmmanuel Vadot			clocks = <&k3_clks 120 4>;
24345956d97fSEmmanuel Vadot			clock-names = "fck";
24355956d97fSEmmanuel Vadot			#address-cells = <1>;
24365956d97fSEmmanuel Vadot			#size-cells = <0>;
24375956d97fSEmmanuel Vadot			bus_freq = <1000000>;
2438f126890aSEmmanuel Vadot			status = "disabled";
24395956d97fSEmmanuel Vadot		};
24402eb4d8dcSEmmanuel Vadot	};
2441e67e8565SEmmanuel Vadot
2442e67e8565SEmmanuel Vadot	main_mcan0: can@2701000 {
2443e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2444e67e8565SEmmanuel Vadot		reg = <0x00 0x02701000 0x00 0x200>,
2445e67e8565SEmmanuel Vadot		      <0x00 0x02708000 0x00 0x8000>;
2446e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2447e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 156 TI_SCI_PD_EXCLUSIVE>;
2448e67e8565SEmmanuel Vadot		clocks = <&k3_clks 156 0>, <&k3_clks 156 1>;
2449e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2450e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>,
2451e67e8565SEmmanuel Vadot			     <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>;
2452e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2453e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
24548bab661aSEmmanuel Vadot		status = "disabled";
2455e67e8565SEmmanuel Vadot	};
2456e67e8565SEmmanuel Vadot
2457e67e8565SEmmanuel Vadot	main_mcan1: can@2711000 {
2458e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2459e67e8565SEmmanuel Vadot		reg = <0x00 0x02711000 0x00 0x200>,
2460e67e8565SEmmanuel Vadot		      <0x00 0x02718000 0x00 0x8000>;
2461e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2462e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 158 TI_SCI_PD_EXCLUSIVE>;
2463e67e8565SEmmanuel Vadot		clocks = <&k3_clks 158 0>, <&k3_clks 158 1>;
2464e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2465e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>,
2466e67e8565SEmmanuel Vadot			     <GIC_SPI 128 IRQ_TYPE_LEVEL_HIGH>;
2467e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2468e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
24698bab661aSEmmanuel Vadot		status = "disabled";
2470e67e8565SEmmanuel Vadot	};
2471e67e8565SEmmanuel Vadot
2472e67e8565SEmmanuel Vadot	main_mcan2: can@2721000 {
2473e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2474e67e8565SEmmanuel Vadot		reg = <0x00 0x02721000 0x00 0x200>,
2475e67e8565SEmmanuel Vadot		      <0x00 0x02728000 0x00 0x8000>;
2476e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2477e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 160 TI_SCI_PD_EXCLUSIVE>;
2478e67e8565SEmmanuel Vadot		clocks = <&k3_clks 160 0>, <&k3_clks 160 1>;
2479e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2480e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 130 IRQ_TYPE_LEVEL_HIGH>,
2481e67e8565SEmmanuel Vadot			     <GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>;
2482e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2483e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
24848bab661aSEmmanuel Vadot		status = "disabled";
2485e67e8565SEmmanuel Vadot	};
2486e67e8565SEmmanuel Vadot
2487e67e8565SEmmanuel Vadot	main_mcan3: can@2731000 {
2488e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2489e67e8565SEmmanuel Vadot		reg = <0x00 0x02731000 0x00 0x200>,
2490e67e8565SEmmanuel Vadot		      <0x00 0x02738000 0x00 0x8000>;
2491e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2492e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 161 TI_SCI_PD_EXCLUSIVE>;
2493e67e8565SEmmanuel Vadot		clocks = <&k3_clks 161 0>, <&k3_clks 161 1>;
2494e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2495e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>,
2496e67e8565SEmmanuel Vadot			     <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
2497e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2498e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
24998bab661aSEmmanuel Vadot		status = "disabled";
2500e67e8565SEmmanuel Vadot	};
2501e67e8565SEmmanuel Vadot
2502e67e8565SEmmanuel Vadot	main_mcan4: can@2741000 {
2503e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2504e67e8565SEmmanuel Vadot		reg = <0x00 0x02741000 0x00 0x200>,
2505e67e8565SEmmanuel Vadot		      <0x00 0x02748000 0x00 0x8000>;
2506e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2507e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 162 TI_SCI_PD_EXCLUSIVE>;
2508e67e8565SEmmanuel Vadot		clocks = <&k3_clks 162 0>, <&k3_clks 162 1>;
2509e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2510e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>,
2511e67e8565SEmmanuel Vadot			     <GIC_SPI 137 IRQ_TYPE_LEVEL_HIGH>;
2512e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2513e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
25148bab661aSEmmanuel Vadot		status = "disabled";
2515e67e8565SEmmanuel Vadot	};
2516e67e8565SEmmanuel Vadot
2517e67e8565SEmmanuel Vadot	main_mcan5: can@2751000 {
2518e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2519e67e8565SEmmanuel Vadot		reg = <0x00 0x02751000 0x00 0x200>,
2520e67e8565SEmmanuel Vadot		      <0x00 0x02758000 0x00 0x8000>;
2521e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2522e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 163 TI_SCI_PD_EXCLUSIVE>;
2523e67e8565SEmmanuel Vadot		clocks = <&k3_clks 163 0>, <&k3_clks 163 1>;
2524e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2525e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 139 IRQ_TYPE_LEVEL_HIGH>,
2526e67e8565SEmmanuel Vadot			     <GIC_SPI 140 IRQ_TYPE_LEVEL_HIGH>;
2527e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2528e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
25298bab661aSEmmanuel Vadot		status = "disabled";
2530e67e8565SEmmanuel Vadot	};
2531e67e8565SEmmanuel Vadot
2532e67e8565SEmmanuel Vadot	main_mcan6: can@2761000 {
2533e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2534e67e8565SEmmanuel Vadot		reg = <0x00 0x02761000 0x00 0x200>,
2535e67e8565SEmmanuel Vadot		      <0x00 0x02768000 0x00 0x8000>;
2536e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2537e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 164 TI_SCI_PD_EXCLUSIVE>;
2538e67e8565SEmmanuel Vadot		clocks = <&k3_clks 164 0>, <&k3_clks 164 1>;
2539e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2540e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 142 IRQ_TYPE_LEVEL_HIGH>,
2541e67e8565SEmmanuel Vadot			     <GIC_SPI 143 IRQ_TYPE_LEVEL_HIGH>;
2542e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2543e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
25448bab661aSEmmanuel Vadot		status = "disabled";
2545e67e8565SEmmanuel Vadot	};
2546e67e8565SEmmanuel Vadot
2547e67e8565SEmmanuel Vadot	main_mcan7: can@2771000 {
2548e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2549e67e8565SEmmanuel Vadot		reg = <0x00 0x02771000 0x00 0x200>,
2550e67e8565SEmmanuel Vadot		      <0x00 0x02778000 0x00 0x8000>;
2551e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2552e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 165 TI_SCI_PD_EXCLUSIVE>;
2553e67e8565SEmmanuel Vadot		clocks = <&k3_clks 165 0>, <&k3_clks 165 1>;
2554e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2555e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>,
2556e67e8565SEmmanuel Vadot			     <GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>;
2557e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2558e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
25598bab661aSEmmanuel Vadot		status = "disabled";
2560e67e8565SEmmanuel Vadot	};
2561e67e8565SEmmanuel Vadot
2562e67e8565SEmmanuel Vadot	main_mcan8: can@2781000 {
2563e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2564e67e8565SEmmanuel Vadot		reg = <0x00 0x02781000 0x00 0x200>,
2565e67e8565SEmmanuel Vadot		      <0x00 0x02788000 0x00 0x8000>;
2566e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2567e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 166 TI_SCI_PD_EXCLUSIVE>;
2568e67e8565SEmmanuel Vadot		clocks = <&k3_clks 166 0>, <&k3_clks 166 1>;
2569e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2570e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 576 IRQ_TYPE_LEVEL_HIGH>,
2571e67e8565SEmmanuel Vadot			     <GIC_SPI 577 IRQ_TYPE_LEVEL_HIGH>;
2572e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2573e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
25748bab661aSEmmanuel Vadot		status = "disabled";
2575e67e8565SEmmanuel Vadot	};
2576e67e8565SEmmanuel Vadot
2577e67e8565SEmmanuel Vadot	main_mcan9: can@2791000 {
2578e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2579e67e8565SEmmanuel Vadot		reg = <0x00 0x02791000 0x00 0x200>,
2580e67e8565SEmmanuel Vadot		      <0x00 0x02798000 0x00 0x8000>;
2581e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2582e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 167 TI_SCI_PD_EXCLUSIVE>;
2583e67e8565SEmmanuel Vadot		clocks = <&k3_clks 167 0>, <&k3_clks 167 1>;
2584e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2585e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 579 IRQ_TYPE_LEVEL_HIGH>,
2586e67e8565SEmmanuel Vadot			     <GIC_SPI 580 IRQ_TYPE_LEVEL_HIGH>;
2587e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2588e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
25898bab661aSEmmanuel Vadot		status = "disabled";
2590e67e8565SEmmanuel Vadot	};
2591e67e8565SEmmanuel Vadot
2592e67e8565SEmmanuel Vadot	main_mcan10: can@27a1000 {
2593e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2594e67e8565SEmmanuel Vadot		reg = <0x00 0x027a1000 0x00 0x200>,
2595e67e8565SEmmanuel Vadot		      <0x00 0x027a8000 0x00 0x8000>;
2596e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2597e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 168 TI_SCI_PD_EXCLUSIVE>;
2598e67e8565SEmmanuel Vadot		clocks = <&k3_clks 168 0>, <&k3_clks 168 1>;
2599e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2600e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 582 IRQ_TYPE_LEVEL_HIGH>,
2601e67e8565SEmmanuel Vadot			     <GIC_SPI 583 IRQ_TYPE_LEVEL_HIGH>;
2602e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2603e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
26048bab661aSEmmanuel Vadot		status = "disabled";
2605e67e8565SEmmanuel Vadot	};
2606e67e8565SEmmanuel Vadot
2607e67e8565SEmmanuel Vadot	main_mcan11: can@27b1000 {
2608e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2609e67e8565SEmmanuel Vadot		reg = <0x00 0x027b1000 0x00 0x200>,
2610e67e8565SEmmanuel Vadot		      <0x00 0x027b8000 0x00 0x8000>;
2611e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2612e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 169 TI_SCI_PD_EXCLUSIVE>;
2613e67e8565SEmmanuel Vadot		clocks = <&k3_clks 169 0>, <&k3_clks 169 1>;
2614e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2615e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 585 IRQ_TYPE_LEVEL_HIGH>,
2616e67e8565SEmmanuel Vadot			     <GIC_SPI 586 IRQ_TYPE_LEVEL_HIGH>;
2617e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2618e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
26198bab661aSEmmanuel Vadot		status = "disabled";
2620e67e8565SEmmanuel Vadot	};
2621e67e8565SEmmanuel Vadot
2622e67e8565SEmmanuel Vadot	main_mcan12: can@27c1000 {
2623e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2624e67e8565SEmmanuel Vadot		reg = <0x00 0x027c1000 0x00 0x200>,
2625e67e8565SEmmanuel Vadot		      <0x00 0x027c8000 0x00 0x8000>;
2626e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2627e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 170 TI_SCI_PD_EXCLUSIVE>;
2628e67e8565SEmmanuel Vadot		clocks = <&k3_clks 170 0>, <&k3_clks 170 1>;
2629e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2630e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 588 IRQ_TYPE_LEVEL_HIGH>,
2631e67e8565SEmmanuel Vadot			     <GIC_SPI 589 IRQ_TYPE_LEVEL_HIGH>;
2632e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2633e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
26348bab661aSEmmanuel Vadot		status = "disabled";
2635e67e8565SEmmanuel Vadot	};
2636e67e8565SEmmanuel Vadot
2637e67e8565SEmmanuel Vadot	main_mcan13: can@27d1000 {
2638e67e8565SEmmanuel Vadot		compatible = "bosch,m_can";
2639e67e8565SEmmanuel Vadot		reg = <0x00 0x027d1000 0x00 0x200>,
2640e67e8565SEmmanuel Vadot		      <0x00 0x027d8000 0x00 0x8000>;
2641e67e8565SEmmanuel Vadot		reg-names = "m_can", "message_ram";
2642e67e8565SEmmanuel Vadot		power-domains = <&k3_pds 171 TI_SCI_PD_EXCLUSIVE>;
2643e67e8565SEmmanuel Vadot		clocks = <&k3_clks 171 0>, <&k3_clks 171 1>;
2644e67e8565SEmmanuel Vadot		clock-names = "hclk", "cclk";
2645e67e8565SEmmanuel Vadot		interrupts = <GIC_SPI 591 IRQ_TYPE_LEVEL_HIGH>,
2646e67e8565SEmmanuel Vadot			     <GIC_SPI 592 IRQ_TYPE_LEVEL_HIGH>;
2647e67e8565SEmmanuel Vadot		interrupt-names = "int0", "int1";
2648e67e8565SEmmanuel Vadot		bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
26498bab661aSEmmanuel Vadot		status = "disabled";
2650e67e8565SEmmanuel Vadot	};
2651fac71e4eSEmmanuel Vadot
2652fac71e4eSEmmanuel Vadot	main_spi0: spi@2100000 {
2653fac71e4eSEmmanuel Vadot		compatible = "ti,am654-mcspi","ti,omap4-mcspi";
2654fac71e4eSEmmanuel Vadot		reg = <0x00 0x02100000 0x00 0x400>;
2655fac71e4eSEmmanuel Vadot		interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
2656fac71e4eSEmmanuel Vadot		#address-cells = <1>;
2657fac71e4eSEmmanuel Vadot		#size-cells = <0>;
2658fac71e4eSEmmanuel Vadot		power-domains = <&k3_pds 266 TI_SCI_PD_EXCLUSIVE>;
2659fac71e4eSEmmanuel Vadot		clocks = <&k3_clks 266 1>;
2660fac71e4eSEmmanuel Vadot		status = "disabled";
2661fac71e4eSEmmanuel Vadot	};
2662fac71e4eSEmmanuel Vadot
2663fac71e4eSEmmanuel Vadot	main_spi1: spi@2110000 {
2664fac71e4eSEmmanuel Vadot		compatible = "ti,am654-mcspi","ti,omap4-mcspi";
2665fac71e4eSEmmanuel Vadot		reg = <0x00 0x02110000 0x00 0x400>;
2666fac71e4eSEmmanuel Vadot		interrupts = <GIC_SPI 185 IRQ_TYPE_LEVEL_HIGH>;
2667fac71e4eSEmmanuel Vadot		#address-cells = <1>;
2668fac71e4eSEmmanuel Vadot		#size-cells = <0>;
2669fac71e4eSEmmanuel Vadot		power-domains = <&k3_pds 267 TI_SCI_PD_EXCLUSIVE>;
2670fac71e4eSEmmanuel Vadot		clocks = <&k3_clks 267 1>;
2671fac71e4eSEmmanuel Vadot		status = "disabled";
2672fac71e4eSEmmanuel Vadot	};
2673fac71e4eSEmmanuel Vadot
2674fac71e4eSEmmanuel Vadot	main_spi2: spi@2120000 {
2675fac71e4eSEmmanuel Vadot		compatible = "ti,am654-mcspi","ti,omap4-mcspi";
2676fac71e4eSEmmanuel Vadot		reg = <0x00 0x02120000 0x00 0x400>;
2677fac71e4eSEmmanuel Vadot		interrupts = <GIC_SPI 186 IRQ_TYPE_LEVEL_HIGH>;
2678fac71e4eSEmmanuel Vadot		#address-cells = <1>;
2679fac71e4eSEmmanuel Vadot		#size-cells = <0>;
2680fac71e4eSEmmanuel Vadot		power-domains = <&k3_pds 268 TI_SCI_PD_EXCLUSIVE>;
2681fac71e4eSEmmanuel Vadot		clocks = <&k3_clks 268 1>;
2682fac71e4eSEmmanuel Vadot		status = "disabled";
2683fac71e4eSEmmanuel Vadot	};
2684fac71e4eSEmmanuel Vadot
2685fac71e4eSEmmanuel Vadot	main_spi3: spi@2130000 {
2686fac71e4eSEmmanuel Vadot		compatible = "ti,am654-mcspi","ti,omap4-mcspi";
2687fac71e4eSEmmanuel Vadot		reg = <0x00 0x02130000 0x00 0x400>;
2688fac71e4eSEmmanuel Vadot		interrupts = <GIC_SPI 187 IRQ_TYPE_LEVEL_HIGH>;
2689fac71e4eSEmmanuel Vadot		#address-cells = <1>;
2690fac71e4eSEmmanuel Vadot		#size-cells = <0>;
2691fac71e4eSEmmanuel Vadot		power-domains = <&k3_pds 269 TI_SCI_PD_EXCLUSIVE>;
2692fac71e4eSEmmanuel Vadot		clocks = <&k3_clks 269 1>;
2693fac71e4eSEmmanuel Vadot		status = "disabled";
2694fac71e4eSEmmanuel Vadot	};
2695fac71e4eSEmmanuel Vadot
2696fac71e4eSEmmanuel Vadot	main_spi4: spi@2140000 {
2697fac71e4eSEmmanuel Vadot		compatible = "ti,am654-mcspi","ti,omap4-mcspi";
2698fac71e4eSEmmanuel Vadot		reg = <0x00 0x02140000 0x00 0x400>;
2699fac71e4eSEmmanuel Vadot		interrupts = <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>;
2700fac71e4eSEmmanuel Vadot		#address-cells = <1>;
2701fac71e4eSEmmanuel Vadot		#size-cells = <0>;
2702fac71e4eSEmmanuel Vadot		power-domains = <&k3_pds 270 TI_SCI_PD_EXCLUSIVE>;
2703fac71e4eSEmmanuel Vadot		clocks = <&k3_clks 270 1>;
2704fac71e4eSEmmanuel Vadot		status = "disabled";
2705fac71e4eSEmmanuel Vadot	};
2706fac71e4eSEmmanuel Vadot
2707fac71e4eSEmmanuel Vadot	main_spi5: spi@2150000 {
2708fac71e4eSEmmanuel Vadot		compatible = "ti,am654-mcspi","ti,omap4-mcspi";
2709fac71e4eSEmmanuel Vadot		reg = <0x00 0x02150000 0x00 0x400>;
2710fac71e4eSEmmanuel Vadot		interrupts = <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>;
2711fac71e4eSEmmanuel Vadot		#address-cells = <1>;
2712fac71e4eSEmmanuel Vadot		#size-cells = <0>;
2713fac71e4eSEmmanuel Vadot		power-domains = <&k3_pds 271 TI_SCI_PD_EXCLUSIVE>;
2714fac71e4eSEmmanuel Vadot		clocks = <&k3_clks 271 1>;
2715fac71e4eSEmmanuel Vadot		status = "disabled";
2716fac71e4eSEmmanuel Vadot	};
2717fac71e4eSEmmanuel Vadot
2718fac71e4eSEmmanuel Vadot	main_spi6: spi@2160000 {
2719fac71e4eSEmmanuel Vadot		compatible = "ti,am654-mcspi","ti,omap4-mcspi";
2720fac71e4eSEmmanuel Vadot		reg = <0x00 0x02160000 0x00 0x400>;
2721fac71e4eSEmmanuel Vadot		interrupts = <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>;
2722fac71e4eSEmmanuel Vadot		#address-cells = <1>;
2723fac71e4eSEmmanuel Vadot		#size-cells = <0>;
2724fac71e4eSEmmanuel Vadot		power-domains = <&k3_pds 272 TI_SCI_PD_EXCLUSIVE>;
2725fac71e4eSEmmanuel Vadot		clocks = <&k3_clks 272 1>;
2726fac71e4eSEmmanuel Vadot		status = "disabled";
2727fac71e4eSEmmanuel Vadot	};
2728fac71e4eSEmmanuel Vadot
2729fac71e4eSEmmanuel Vadot	main_spi7: spi@2170000 {
2730fac71e4eSEmmanuel Vadot		compatible = "ti,am654-mcspi","ti,omap4-mcspi";
2731fac71e4eSEmmanuel Vadot		reg = <0x00 0x02170000 0x00 0x400>;
2732fac71e4eSEmmanuel Vadot		interrupts = <GIC_SPI 191 IRQ_TYPE_LEVEL_HIGH>;
2733fac71e4eSEmmanuel Vadot		#address-cells = <1>;
2734fac71e4eSEmmanuel Vadot		#size-cells = <0>;
2735fac71e4eSEmmanuel Vadot		power-domains = <&k3_pds 273 TI_SCI_PD_EXCLUSIVE>;
2736fac71e4eSEmmanuel Vadot		clocks = <&k3_clks 273 1>;
2737fac71e4eSEmmanuel Vadot		status = "disabled";
2738fac71e4eSEmmanuel Vadot	};
2739f126890aSEmmanuel Vadot
2740f126890aSEmmanuel Vadot	main_esm: esm@700000 {
2741f126890aSEmmanuel Vadot		compatible = "ti,j721e-esm";
2742f126890aSEmmanuel Vadot		reg = <0x0 0x700000 0x0 0x1000>;
2743f126890aSEmmanuel Vadot		ti,esm-pins = <344>, <345>;
2744f126890aSEmmanuel Vadot	};
2745c66ec88fSEmmanuel Vadot};
2746