xref: /linux/scripts/dtc/include-prefixes/arm64/xilinx/zynqmp.dtsi (revision 932bd0d8dbe89fd2dcf6e23f5f2024936174801d)
15d1b79d2SMichal Simek/*
25d1b79d2SMichal Simek * dts file for Xilinx ZynqMP
35d1b79d2SMichal Simek *
45d1b79d2SMichal Simek * (C) Copyright 2014 - 2015, Xilinx, Inc.
55d1b79d2SMichal Simek *
65d1b79d2SMichal Simek * Michal Simek <michal.simek@xilinx.com>
75d1b79d2SMichal Simek *
85d1b79d2SMichal Simek * This program is free software; you can redistribute it and/or
95d1b79d2SMichal Simek * modify it under the terms of the GNU General Public License as
105d1b79d2SMichal Simek * published by the Free Software Foundation; either version 2 of
115d1b79d2SMichal Simek * the License, or (at your option) any later version.
125d1b79d2SMichal Simek */
135d1b79d2SMichal Simek
145d1b79d2SMichal Simek/ {
155d1b79d2SMichal Simek	compatible = "xlnx,zynqmp";
165d1b79d2SMichal Simek	#address-cells = <2>;
177393fd86SMichal Simek	#size-cells = <2>;
185d1b79d2SMichal Simek
195d1b79d2SMichal Simek	cpus {
205d1b79d2SMichal Simek		#address-cells = <1>;
215d1b79d2SMichal Simek		#size-cells = <0>;
225d1b79d2SMichal Simek
23400e188fSMichal Simek		cpu0: cpu@0 {
245d1b79d2SMichal Simek			compatible = "arm,cortex-a53", "arm,armv8";
255d1b79d2SMichal Simek			device_type = "cpu";
265d1b79d2SMichal Simek			enable-method = "psci";
27e31b7bb8SShubhrajyoti Datta			operating-points-v2 = <&cpu_opp_table>;
285d1b79d2SMichal Simek			reg = <0x0>;
291e4e25c8SStefan Krsmanovic			cpu-idle-states = <&CPU_SLEEP_0>;
305d1b79d2SMichal Simek		};
315d1b79d2SMichal Simek
32400e188fSMichal Simek		cpu1: cpu@1 {
335d1b79d2SMichal Simek			compatible = "arm,cortex-a53", "arm,armv8";
345d1b79d2SMichal Simek			device_type = "cpu";
355d1b79d2SMichal Simek			enable-method = "psci";
365d1b79d2SMichal Simek			reg = <0x1>;
37e31b7bb8SShubhrajyoti Datta			operating-points-v2 = <&cpu_opp_table>;
381e4e25c8SStefan Krsmanovic			cpu-idle-states = <&CPU_SLEEP_0>;
395d1b79d2SMichal Simek		};
405d1b79d2SMichal Simek
41400e188fSMichal Simek		cpu2: cpu@2 {
425d1b79d2SMichal Simek			compatible = "arm,cortex-a53", "arm,armv8";
435d1b79d2SMichal Simek			device_type = "cpu";
445d1b79d2SMichal Simek			enable-method = "psci";
455d1b79d2SMichal Simek			reg = <0x2>;
46e31b7bb8SShubhrajyoti Datta			operating-points-v2 = <&cpu_opp_table>;
471e4e25c8SStefan Krsmanovic			cpu-idle-states = <&CPU_SLEEP_0>;
485d1b79d2SMichal Simek		};
495d1b79d2SMichal Simek
50400e188fSMichal Simek		cpu3: cpu@3 {
515d1b79d2SMichal Simek			compatible = "arm,cortex-a53", "arm,armv8";
525d1b79d2SMichal Simek			device_type = "cpu";
535d1b79d2SMichal Simek			enable-method = "psci";
545d1b79d2SMichal Simek			reg = <0x3>;
55e31b7bb8SShubhrajyoti Datta			operating-points-v2 = <&cpu_opp_table>;
561e4e25c8SStefan Krsmanovic			cpu-idle-states = <&CPU_SLEEP_0>;
571e4e25c8SStefan Krsmanovic		};
581e4e25c8SStefan Krsmanovic
591e4e25c8SStefan Krsmanovic		idle-states {
601e4e25c8SStefan Krsmanovic			entry-method = "arm,psci";
611e4e25c8SStefan Krsmanovic
621e4e25c8SStefan Krsmanovic			CPU_SLEEP_0: cpu-sleep-0 {
631e4e25c8SStefan Krsmanovic				compatible = "arm,idle-state";
641e4e25c8SStefan Krsmanovic				arm,psci-suspend-param = <0x40000000>;
651e4e25c8SStefan Krsmanovic				local-timer-stop;
661e4e25c8SStefan Krsmanovic				entry-latency-us = <300>;
671e4e25c8SStefan Krsmanovic				exit-latency-us = <600>;
681e4e25c8SStefan Krsmanovic				min-residency-us = <10000>;
691e4e25c8SStefan Krsmanovic			};
705d1b79d2SMichal Simek		};
715d1b79d2SMichal Simek	};
725d1b79d2SMichal Simek
73e31b7bb8SShubhrajyoti Datta	cpu_opp_table: cpu_opp_table {
74e31b7bb8SShubhrajyoti Datta		compatible = "operating-points-v2";
75e31b7bb8SShubhrajyoti Datta		opp-shared;
76e31b7bb8SShubhrajyoti Datta		opp00 {
77e31b7bb8SShubhrajyoti Datta			opp-hz = /bits/ 64 <1199999988>;
78e31b7bb8SShubhrajyoti Datta			opp-microvolt = <1000000>;
79e31b7bb8SShubhrajyoti Datta			clock-latency-ns = <500000>;
80e31b7bb8SShubhrajyoti Datta		};
81e31b7bb8SShubhrajyoti Datta		opp01 {
82e31b7bb8SShubhrajyoti Datta			opp-hz = /bits/ 64 <599999994>;
83e31b7bb8SShubhrajyoti Datta			opp-microvolt = <1000000>;
84e31b7bb8SShubhrajyoti Datta			clock-latency-ns = <500000>;
85e31b7bb8SShubhrajyoti Datta		};
86e31b7bb8SShubhrajyoti Datta		opp02 {
87e31b7bb8SShubhrajyoti Datta			opp-hz = /bits/ 64 <399999996>;
88e31b7bb8SShubhrajyoti Datta			opp-microvolt = <1000000>;
89e31b7bb8SShubhrajyoti Datta			clock-latency-ns = <500000>;
90e31b7bb8SShubhrajyoti Datta		};
91e31b7bb8SShubhrajyoti Datta		opp03 {
92e31b7bb8SShubhrajyoti Datta			opp-hz = /bits/ 64 <299999997>;
93e31b7bb8SShubhrajyoti Datta			opp-microvolt = <1000000>;
94e31b7bb8SShubhrajyoti Datta			clock-latency-ns = <500000>;
95e31b7bb8SShubhrajyoti Datta		};
96e31b7bb8SShubhrajyoti Datta	};
97e31b7bb8SShubhrajyoti Datta
9817e76f95SMichal Simek	dcc: dcc {
9917e76f95SMichal Simek		compatible = "arm,dcc";
10017e76f95SMichal Simek		status = "disabled";
10117e76f95SMichal Simek	};
10217e76f95SMichal Simek
1035d1b79d2SMichal Simek	pmu {
1045d1b79d2SMichal Simek		compatible = "arm,armv8-pmuv3";
105886e7dddSMichal Simek		interrupt-parent = <&gic>;
1065d1b79d2SMichal Simek		interrupts = <0 143 4>,
1075d1b79d2SMichal Simek			     <0 144 4>,
1085d1b79d2SMichal Simek			     <0 145 4>,
1095d1b79d2SMichal Simek			     <0 146 4>;
1105d1b79d2SMichal Simek	};
1115d1b79d2SMichal Simek
1125d1b79d2SMichal Simek	psci {
1135d1b79d2SMichal Simek		compatible = "arm,psci-0.2";
1145d1b79d2SMichal Simek		method = "smc";
1155d1b79d2SMichal Simek	};
1165d1b79d2SMichal Simek
1175d1b79d2SMichal Simek	timer {
1185d1b79d2SMichal Simek		compatible = "arm,armv8-timer";
1195d1b79d2SMichal Simek		interrupt-parent = <&gic>;
120f2a89d3bSMarc Zyngier		interrupts = <1 13 0xf08>,
121f2a89d3bSMarc Zyngier			     <1 14 0xf08>,
122f2a89d3bSMarc Zyngier			     <1 11 0xf08>,
123f2a89d3bSMarc Zyngier			     <1 10 0xf08>;
1245d1b79d2SMichal Simek	};
1255d1b79d2SMichal Simek
1264ea2a6beSMichal Simek	amba_apu: amba_apu@0 {
1275d1b79d2SMichal Simek		compatible = "simple-bus";
1285d1b79d2SMichal Simek		#address-cells = <2>;
1295d1b79d2SMichal Simek		#size-cells = <1>;
1307393fd86SMichal Simek		ranges = <0 0 0 0 0xffffffff>;
1315d1b79d2SMichal Simek
1325d1b79d2SMichal Simek		gic: interrupt-controller@f9010000 {
1335d1b79d2SMichal Simek			compatible = "arm,gic-400", "arm,cortex-a15-gic";
1345d1b79d2SMichal Simek			#interrupt-cells = <3>;
1355d1b79d2SMichal Simek			reg = <0x0 0xf9010000 0x10000>,
136e753dc03SAlexander Graf			      <0x0 0xf9020000 0x20000>,
1375d1b79d2SMichal Simek			      <0x0 0xf9040000 0x20000>,
138e753dc03SAlexander Graf			      <0x0 0xf9060000 0x20000>;
1395d1b79d2SMichal Simek			interrupt-controller;
1405d1b79d2SMichal Simek			interrupt-parent = <&gic>;
1415d1b79d2SMichal Simek			interrupts = <1 9 0xf04>;
1425d1b79d2SMichal Simek		};
1435d1b79d2SMichal Simek	};
1445d1b79d2SMichal Simek
1455087bccbSMichal Simek	amba: amba {
1465d1b79d2SMichal Simek		compatible = "simple-bus";
1475d1b79d2SMichal Simek		#address-cells = <2>;
1487393fd86SMichal Simek		#size-cells = <2>;
1495d1b79d2SMichal Simek		ranges;
1505d1b79d2SMichal Simek
1513a8691f5SMichal Simek		can0: can@ff060000 {
1523a8691f5SMichal Simek			compatible = "xlnx,zynq-can-1.0";
1533a8691f5SMichal Simek			status = "disabled";
1543a8691f5SMichal Simek			clock-names = "can_clk", "pclk";
1557393fd86SMichal Simek			reg = <0x0 0xff060000 0x0 0x1000>;
1563a8691f5SMichal Simek			interrupts = <0 23 4>;
1573a8691f5SMichal Simek			interrupt-parent = <&gic>;
1583a8691f5SMichal Simek			tx-fifo-depth = <0x40>;
1593a8691f5SMichal Simek			rx-fifo-depth = <0x40>;
1603a8691f5SMichal Simek		};
1613a8691f5SMichal Simek
1623a8691f5SMichal Simek		can1: can@ff070000 {
1633a8691f5SMichal Simek			compatible = "xlnx,zynq-can-1.0";
1643a8691f5SMichal Simek			status = "disabled";
1653a8691f5SMichal Simek			clock-names = "can_clk", "pclk";
1667393fd86SMichal Simek			reg = <0x0 0xff070000 0x0 0x1000>;
1673a8691f5SMichal Simek			interrupts = <0 24 4>;
1683a8691f5SMichal Simek			interrupt-parent = <&gic>;
1693a8691f5SMichal Simek			tx-fifo-depth = <0x40>;
1703a8691f5SMichal Simek			rx-fifo-depth = <0x40>;
1713a8691f5SMichal Simek		};
1723a8691f5SMichal Simek
1738c50b1e4SMichal Simek		cci: cci@fd6e0000 {
1748c50b1e4SMichal Simek			compatible = "arm,cci-400";
1758c50b1e4SMichal Simek			reg = <0x0 0xfd6e0000 0x0 0x9000>;
1768c50b1e4SMichal Simek			ranges = <0x0 0x0 0xfd6e0000 0x10000>;
1778c50b1e4SMichal Simek			#address-cells = <1>;
1788c50b1e4SMichal Simek			#size-cells = <1>;
1798c50b1e4SMichal Simek
1808c50b1e4SMichal Simek			pmu@9000 {
1818c50b1e4SMichal Simek				compatible = "arm,cci-400-pmu,r1";
1828c50b1e4SMichal Simek				reg = <0x9000 0x5000>;
1838c50b1e4SMichal Simek				interrupt-parent = <&gic>;
1848c50b1e4SMichal Simek				interrupts = <0 123 4>,
1858c50b1e4SMichal Simek					     <0 123 4>,
1868c50b1e4SMichal Simek					     <0 123 4>,
1878c50b1e4SMichal Simek					     <0 123 4>,
1888c50b1e4SMichal Simek					     <0 123 4>;
1898c50b1e4SMichal Simek			};
1908c50b1e4SMichal Simek		};
1918c50b1e4SMichal Simek
192*932bd0d8SMichal Simek		/* GDMA */
193*932bd0d8SMichal Simek		fpd_dma_chan1: dma@fd500000 {
194*932bd0d8SMichal Simek			status = "disabled";
195*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
196*932bd0d8SMichal Simek			reg = <0x0 0xfd500000 0x0 0x1000>;
197*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
198*932bd0d8SMichal Simek			interrupts = <0 124 4>;
199*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
200*932bd0d8SMichal Simek			xlnx,bus-width = <128>;
201*932bd0d8SMichal Simek		};
202*932bd0d8SMichal Simek
203*932bd0d8SMichal Simek		fpd_dma_chan2: dma@fd510000 {
204*932bd0d8SMichal Simek			status = "disabled";
205*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
206*932bd0d8SMichal Simek			reg = <0x0 0xfd510000 0x0 0x1000>;
207*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
208*932bd0d8SMichal Simek			interrupts = <0 125 4>;
209*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
210*932bd0d8SMichal Simek			xlnx,bus-width = <128>;
211*932bd0d8SMichal Simek		};
212*932bd0d8SMichal Simek
213*932bd0d8SMichal Simek		fpd_dma_chan3: dma@fd520000 {
214*932bd0d8SMichal Simek			status = "disabled";
215*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
216*932bd0d8SMichal Simek			reg = <0x0 0xfd520000 0x0 0x1000>;
217*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
218*932bd0d8SMichal Simek			interrupts = <0 126 4>;
219*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
220*932bd0d8SMichal Simek			xlnx,bus-width = <128>;
221*932bd0d8SMichal Simek		};
222*932bd0d8SMichal Simek
223*932bd0d8SMichal Simek		fpd_dma_chan4: dma@fd530000 {
224*932bd0d8SMichal Simek			status = "disabled";
225*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
226*932bd0d8SMichal Simek			reg = <0x0 0xfd530000 0x0 0x1000>;
227*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
228*932bd0d8SMichal Simek			interrupts = <0 127 4>;
229*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
230*932bd0d8SMichal Simek			xlnx,bus-width = <128>;
231*932bd0d8SMichal Simek		};
232*932bd0d8SMichal Simek
233*932bd0d8SMichal Simek		fpd_dma_chan5: dma@fd540000 {
234*932bd0d8SMichal Simek			status = "disabled";
235*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
236*932bd0d8SMichal Simek			reg = <0x0 0xfd540000 0x0 0x1000>;
237*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
238*932bd0d8SMichal Simek			interrupts = <0 128 4>;
239*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
240*932bd0d8SMichal Simek			xlnx,bus-width = <128>;
241*932bd0d8SMichal Simek		};
242*932bd0d8SMichal Simek
243*932bd0d8SMichal Simek		fpd_dma_chan6: dma@fd550000 {
244*932bd0d8SMichal Simek			status = "disabled";
245*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
246*932bd0d8SMichal Simek			reg = <0x0 0xfd550000 0x0 0x1000>;
247*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
248*932bd0d8SMichal Simek			interrupts = <0 129 4>;
249*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
250*932bd0d8SMichal Simek			xlnx,bus-width = <128>;
251*932bd0d8SMichal Simek		};
252*932bd0d8SMichal Simek
253*932bd0d8SMichal Simek		fpd_dma_chan7: dma@fd560000 {
254*932bd0d8SMichal Simek			status = "disabled";
255*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
256*932bd0d8SMichal Simek			reg = <0x0 0xfd560000 0x0 0x1000>;
257*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
258*932bd0d8SMichal Simek			interrupts = <0 130 4>;
259*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
260*932bd0d8SMichal Simek			xlnx,bus-width = <128>;
261*932bd0d8SMichal Simek		};
262*932bd0d8SMichal Simek
263*932bd0d8SMichal Simek		fpd_dma_chan8: dma@fd570000 {
264*932bd0d8SMichal Simek			status = "disabled";
265*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
266*932bd0d8SMichal Simek			reg = <0x0 0xfd570000 0x0 0x1000>;
267*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
268*932bd0d8SMichal Simek			interrupts = <0 131 4>;
269*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
270*932bd0d8SMichal Simek			xlnx,bus-width = <128>;
271*932bd0d8SMichal Simek		};
272*932bd0d8SMichal Simek
273*932bd0d8SMichal Simek		/* LPDDMA default allows only secured access. inorder to enable
274*932bd0d8SMichal Simek		 * These dma channels, Users should ensure that these dma
275*932bd0d8SMichal Simek		 * Channels are allowed for non secure access.
276*932bd0d8SMichal Simek		 */
277*932bd0d8SMichal Simek		lpd_dma_chan1: dma@ffa80000 {
278*932bd0d8SMichal Simek			status = "disabled";
279*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
280*932bd0d8SMichal Simek			reg = <0x0 0xffa80000 0x0 0x1000>;
281*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
282*932bd0d8SMichal Simek			interrupts = <0 77 4>;
283*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
284*932bd0d8SMichal Simek			xlnx,bus-width = <64>;
285*932bd0d8SMichal Simek		};
286*932bd0d8SMichal Simek
287*932bd0d8SMichal Simek		lpd_dma_chan2: dma@ffa90000 {
288*932bd0d8SMichal Simek			status = "disabled";
289*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
290*932bd0d8SMichal Simek			reg = <0x0 0xffa90000 0x0 0x1000>;
291*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
292*932bd0d8SMichal Simek			interrupts = <0 78 4>;
293*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
294*932bd0d8SMichal Simek			xlnx,bus-width = <64>;
295*932bd0d8SMichal Simek		};
296*932bd0d8SMichal Simek
297*932bd0d8SMichal Simek		lpd_dma_chan3: dma@ffaa0000 {
298*932bd0d8SMichal Simek			status = "disabled";
299*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
300*932bd0d8SMichal Simek			reg = <0x0 0xffaa0000 0x0 0x1000>;
301*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
302*932bd0d8SMichal Simek			interrupts = <0 79 4>;
303*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
304*932bd0d8SMichal Simek			xlnx,bus-width = <64>;
305*932bd0d8SMichal Simek		};
306*932bd0d8SMichal Simek
307*932bd0d8SMichal Simek		lpd_dma_chan4: dma@ffab0000 {
308*932bd0d8SMichal Simek			status = "disabled";
309*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
310*932bd0d8SMichal Simek			reg = <0x0 0xffab0000 0x0 0x1000>;
311*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
312*932bd0d8SMichal Simek			interrupts = <0 80 4>;
313*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
314*932bd0d8SMichal Simek			xlnx,bus-width = <64>;
315*932bd0d8SMichal Simek		};
316*932bd0d8SMichal Simek
317*932bd0d8SMichal Simek		lpd_dma_chan5: dma@ffac0000 {
318*932bd0d8SMichal Simek			status = "disabled";
319*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
320*932bd0d8SMichal Simek			reg = <0x0 0xffac0000 0x0 0x1000>;
321*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
322*932bd0d8SMichal Simek			interrupts = <0 81 4>;
323*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
324*932bd0d8SMichal Simek			xlnx,bus-width = <64>;
325*932bd0d8SMichal Simek		};
326*932bd0d8SMichal Simek
327*932bd0d8SMichal Simek		lpd_dma_chan6: dma@ffad0000 {
328*932bd0d8SMichal Simek			status = "disabled";
329*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
330*932bd0d8SMichal Simek			reg = <0x0 0xffad0000 0x0 0x1000>;
331*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
332*932bd0d8SMichal Simek			interrupts = <0 82 4>;
333*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
334*932bd0d8SMichal Simek			xlnx,bus-width = <64>;
335*932bd0d8SMichal Simek		};
336*932bd0d8SMichal Simek
337*932bd0d8SMichal Simek		lpd_dma_chan7: dma@ffae0000 {
338*932bd0d8SMichal Simek			status = "disabled";
339*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
340*932bd0d8SMichal Simek			reg = <0x0 0xffae0000 0x0 0x1000>;
341*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
342*932bd0d8SMichal Simek			interrupts = <0 83 4>;
343*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
344*932bd0d8SMichal Simek			xlnx,bus-width = <64>;
345*932bd0d8SMichal Simek		};
346*932bd0d8SMichal Simek
347*932bd0d8SMichal Simek		lpd_dma_chan8: dma@ffaf0000 {
348*932bd0d8SMichal Simek			status = "disabled";
349*932bd0d8SMichal Simek			compatible = "xlnx,zynqmp-dma-1.0";
350*932bd0d8SMichal Simek			reg = <0x0 0xffaf0000 0x0 0x1000>;
351*932bd0d8SMichal Simek			interrupt-parent = <&gic>;
352*932bd0d8SMichal Simek			interrupts = <0 84 4>;
353*932bd0d8SMichal Simek			clock-names = "clk_main", "clk_apb";
354*932bd0d8SMichal Simek			xlnx,bus-width = <64>;
355*932bd0d8SMichal Simek		};
356*932bd0d8SMichal Simek
3575d1b79d2SMichal Simek		gem0: ethernet@ff0b0000 {
3585d1b79d2SMichal Simek			compatible = "cdns,gem";
3595d1b79d2SMichal Simek			status = "disabled";
3605d1b79d2SMichal Simek			interrupt-parent = <&gic>;
3615d1b79d2SMichal Simek			interrupts = <0 57 4>, <0 57 4>;
3627393fd86SMichal Simek			reg = <0x0 0xff0b0000 0x0 0x1000>;
3635d1b79d2SMichal Simek			clock-names = "pclk", "hclk", "tx_clk";
3645d1b79d2SMichal Simek			#address-cells = <1>;
3655d1b79d2SMichal Simek			#size-cells = <0>;
3665d1b79d2SMichal Simek		};
3675d1b79d2SMichal Simek
3685d1b79d2SMichal Simek		gem1: ethernet@ff0c0000 {
3695d1b79d2SMichal Simek			compatible = "cdns,gem";
3705d1b79d2SMichal Simek			status = "disabled";
3715d1b79d2SMichal Simek			interrupt-parent = <&gic>;
3725d1b79d2SMichal Simek			interrupts = <0 59 4>, <0 59 4>;
3737393fd86SMichal Simek			reg = <0x0 0xff0c0000 0x0 0x1000>;
3745d1b79d2SMichal Simek			clock-names = "pclk", "hclk", "tx_clk";
3755d1b79d2SMichal Simek			#address-cells = <1>;
3765d1b79d2SMichal Simek			#size-cells = <0>;
3775d1b79d2SMichal Simek		};
3785d1b79d2SMichal Simek
3795d1b79d2SMichal Simek		gem2: ethernet@ff0d0000 {
3805d1b79d2SMichal Simek			compatible = "cdns,gem";
3815d1b79d2SMichal Simek			status = "disabled";
3825d1b79d2SMichal Simek			interrupt-parent = <&gic>;
3835d1b79d2SMichal Simek			interrupts = <0 61 4>, <0 61 4>;
3847393fd86SMichal Simek			reg = <0x0 0xff0d0000 0x0 0x1000>;
3855d1b79d2SMichal Simek			clock-names = "pclk", "hclk", "tx_clk";
3865d1b79d2SMichal Simek			#address-cells = <1>;
3875d1b79d2SMichal Simek			#size-cells = <0>;
3885d1b79d2SMichal Simek		};
3895d1b79d2SMichal Simek
3905d1b79d2SMichal Simek		gem3: ethernet@ff0e0000 {
3915d1b79d2SMichal Simek			compatible = "cdns,gem";
3925d1b79d2SMichal Simek			status = "disabled";
3935d1b79d2SMichal Simek			interrupt-parent = <&gic>;
3945d1b79d2SMichal Simek			interrupts = <0 63 4>, <0 63 4>;
3957393fd86SMichal Simek			reg = <0x0 0xff0e0000 0x0 0x1000>;
3965d1b79d2SMichal Simek			clock-names = "pclk", "hclk", "tx_clk";
3975d1b79d2SMichal Simek			#address-cells = <1>;
3985d1b79d2SMichal Simek			#size-cells = <0>;
3995d1b79d2SMichal Simek		};
4005d1b79d2SMichal Simek
40172e5df43SMichal Simek		gpio: gpio@ff0a0000 {
40272e5df43SMichal Simek			compatible = "xlnx,zynqmp-gpio-1.0";
40372e5df43SMichal Simek			status = "disabled";
40472e5df43SMichal Simek			#gpio-cells = <0x2>;
40572e5df43SMichal Simek			interrupt-parent = <&gic>;
40672e5df43SMichal Simek			interrupts = <0 16 4>;
40772e5df43SMichal Simek			interrupt-controller;
40872e5df43SMichal Simek			#interrupt-cells = <2>;
4097393fd86SMichal Simek			reg = <0x0 0xff0a0000 0x0 0x1000>;
41072e5df43SMichal Simek		};
41172e5df43SMichal Simek
4125d1b79d2SMichal Simek		i2c0: i2c@ff020000 {
413c415f9e8SMoritz Fischer			compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
4145d1b79d2SMichal Simek			status = "disabled";
4155d1b79d2SMichal Simek			interrupt-parent = <&gic>;
4165d1b79d2SMichal Simek			interrupts = <0 17 4>;
4177393fd86SMichal Simek			reg = <0x0 0xff020000 0x0 0x1000>;
4185d1b79d2SMichal Simek			#address-cells = <1>;
4195d1b79d2SMichal Simek			#size-cells = <0>;
4205d1b79d2SMichal Simek		};
4215d1b79d2SMichal Simek
4225d1b79d2SMichal Simek		i2c1: i2c@ff030000 {
423c415f9e8SMoritz Fischer			compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
4245d1b79d2SMichal Simek			status = "disabled";
4255d1b79d2SMichal Simek			interrupt-parent = <&gic>;
4265d1b79d2SMichal Simek			interrupts = <0 18 4>;
4277393fd86SMichal Simek			reg = <0x0 0xff030000 0x0 0x1000>;
4285d1b79d2SMichal Simek			#address-cells = <1>;
4295d1b79d2SMichal Simek			#size-cells = <0>;
4305d1b79d2SMichal Simek		};
4315d1b79d2SMichal Simek
43278b83b8cSMichal Simek		pcie: pcie@fd0e0000 {
43378b83b8cSMichal Simek			compatible = "xlnx,nwl-pcie-2.11";
43478b83b8cSMichal Simek			status = "disabled";
43578b83b8cSMichal Simek			#address-cells = <3>;
43678b83b8cSMichal Simek			#size-cells = <2>;
43778b83b8cSMichal Simek			#interrupt-cells = <1>;
43878b83b8cSMichal Simek			msi-controller;
43978b83b8cSMichal Simek			device_type = "pci";
44078b83b8cSMichal Simek			interrupt-parent = <&gic>;
44178b83b8cSMichal Simek			interrupts = <0 118 4>,
44278b83b8cSMichal Simek				    <0 117 4>,
44378b83b8cSMichal Simek				    <0 116 4>,
44478b83b8cSMichal Simek				    <0 115 4>,	/* MSI_1 [63...32] */
44578b83b8cSMichal Simek				    <0 114 4>;	/* MSI_0 [31...0] */
44678b83b8cSMichal Simek			interrupt-names = "misc", "dummy", "intx",
44778b83b8cSMichal Simek					  "msi1", "msi0";
44878b83b8cSMichal Simek			msi-parent = <&pcie>;
44978b83b8cSMichal Simek			reg = <0x0 0xfd0e0000 0x0 0x1000>,
45078b83b8cSMichal Simek			      <0x0 0xfd480000 0x0 0x1000>,
45178b83b8cSMichal Simek			      <0x80 0x00000000 0x0 0x1000000>;
45278b83b8cSMichal Simek			reg-names = "breg", "pcireg", "cfg";
4534a6514d5SBharat Kumar Gogada			ranges = <0x02000000 0x00000000 0xe0000000 0x00000000 0xe0000000 0x00000000 0x10000000	/* non-prefetchable memory */
4544a6514d5SBharat Kumar Gogada				  0x43000000 0x00000006 0x00000000 0x00000006 0x00000000 0x00000002 0x00000000>;/* prefetchable memory */
455d15c56caSRob Herring			bus-range = <0x00 0xff>;
45678b83b8cSMichal Simek			interrupt-map-mask = <0x0 0x0 0x0 0x7>;
45778b83b8cSMichal Simek			interrupt-map = <0x0 0x0 0x0 0x1 &pcie_intc 0x1>,
45878b83b8cSMichal Simek					<0x0 0x0 0x0 0x2 &pcie_intc 0x2>,
45978b83b8cSMichal Simek					<0x0 0x0 0x0 0x3 &pcie_intc 0x3>,
46078b83b8cSMichal Simek					<0x0 0x0 0x0 0x4 &pcie_intc 0x4>;
46178b83b8cSMichal Simek			pcie_intc: legacy-interrupt-controller {
46278b83b8cSMichal Simek				interrupt-controller;
46378b83b8cSMichal Simek				#address-cells = <0>;
46478b83b8cSMichal Simek				#interrupt-cells = <1>;
46578b83b8cSMichal Simek			};
46678b83b8cSMichal Simek		};
46778b83b8cSMichal Simek
4687fb7820cSMichal Simek		rtc: rtc@ffa60000 {
4697fb7820cSMichal Simek			compatible = "xlnx,zynqmp-rtc";
4707fb7820cSMichal Simek			status = "disabled";
4717fb7820cSMichal Simek			reg = <0x0 0xffa60000 0x0 0x100>;
4727fb7820cSMichal Simek			interrupt-parent = <&gic>;
4737fb7820cSMichal Simek			interrupts = <0 26 4>, <0 27 4>;
4747fb7820cSMichal Simek			interrupt-names = "alarm", "sec";
4757fb7820cSMichal Simek			calibration = <0x8000>;
4767fb7820cSMichal Simek		};
4777fb7820cSMichal Simek
4788fae442fSSuneel Garapati		sata: ahci@fd0c0000 {
4798fae442fSSuneel Garapati			compatible = "ceva,ahci-1v84";
4808fae442fSSuneel Garapati			status = "disabled";
4817393fd86SMichal Simek			reg = <0x0 0xfd0c0000 0x0 0x2000>;
4828fae442fSSuneel Garapati			interrupt-parent = <&gic>;
4838fae442fSSuneel Garapati			interrupts = <0 133 4>;
4848fae442fSSuneel Garapati		};
4858fae442fSSuneel Garapati
4865d1b79d2SMichal Simek		sdhci0: sdhci@ff160000 {
4875d1b79d2SMichal Simek			compatible = "arasan,sdhci-8.9a";
4885d1b79d2SMichal Simek			status = "disabled";
4895d1b79d2SMichal Simek			interrupt-parent = <&gic>;
4905d1b79d2SMichal Simek			interrupts = <0 48 4>;
4917393fd86SMichal Simek			reg = <0x0 0xff160000 0x0 0x1000>;
4925d1b79d2SMichal Simek			clock-names = "clk_xin", "clk_ahb";
4935d1b79d2SMichal Simek		};
4945d1b79d2SMichal Simek
4955d1b79d2SMichal Simek		sdhci1: sdhci@ff170000 {
4965d1b79d2SMichal Simek			compatible = "arasan,sdhci-8.9a";
4975d1b79d2SMichal Simek			status = "disabled";
4985d1b79d2SMichal Simek			interrupt-parent = <&gic>;
4995d1b79d2SMichal Simek			interrupts = <0 49 4>;
5007393fd86SMichal Simek			reg = <0x0 0xff170000 0x0 0x1000>;
5015d1b79d2SMichal Simek			clock-names = "clk_xin", "clk_ahb";
5025d1b79d2SMichal Simek		};
5035d1b79d2SMichal Simek
504ff92e361SMichal Simek		smmu: smmu@fd800000 {
505ff92e361SMichal Simek			compatible = "arm,mmu-500";
5067393fd86SMichal Simek			reg = <0x0 0xfd800000 0x0 0x20000>;
5072f9ed199SNaga Sureshkumar Relli			status = "disabled";
508ff92e361SMichal Simek			#global-interrupts = <1>;
509ff92e361SMichal Simek			interrupt-parent = <&gic>;
510e199f2ccSEdgar E. Iglesias			interrupts = <0 155 4>,
511e199f2ccSEdgar E. Iglesias				<0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
512e199f2ccSEdgar E. Iglesias				<0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
513e199f2ccSEdgar E. Iglesias				<0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
514e199f2ccSEdgar E. Iglesias				<0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>;
515ff92e361SMichal Simek		};
516ff92e361SMichal Simek
517f49310dcSMichal Simek		spi0: spi@ff040000 {
518f49310dcSMichal Simek			compatible = "cdns,spi-r1p6";
519f49310dcSMichal Simek			status = "disabled";
520f49310dcSMichal Simek			interrupt-parent = <&gic>;
521f49310dcSMichal Simek			interrupts = <0 19 4>;
5227393fd86SMichal Simek			reg = <0x0 0xff040000 0x0 0x1000>;
523f49310dcSMichal Simek			clock-names = "ref_clk", "pclk";
524f49310dcSMichal Simek			#address-cells = <1>;
525f49310dcSMichal Simek			#size-cells = <0>;
526f49310dcSMichal Simek		};
527f49310dcSMichal Simek
528f49310dcSMichal Simek		spi1: spi@ff050000 {
529f49310dcSMichal Simek			compatible = "cdns,spi-r1p6";
530f49310dcSMichal Simek			status = "disabled";
531f49310dcSMichal Simek			interrupt-parent = <&gic>;
532f49310dcSMichal Simek			interrupts = <0 20 4>;
5337393fd86SMichal Simek			reg = <0x0 0xff050000 0x0 0x1000>;
534f49310dcSMichal Simek			clock-names = "ref_clk", "pclk";
535f49310dcSMichal Simek			#address-cells = <1>;
536f49310dcSMichal Simek			#size-cells = <0>;
537f49310dcSMichal Simek		};
538f49310dcSMichal Simek
5398fd7a775SMichal Simek		ttc0: timer@ff110000 {
5408fd7a775SMichal Simek			compatible = "cdns,ttc";
5418fd7a775SMichal Simek			status = "disabled";
5428fd7a775SMichal Simek			interrupt-parent = <&gic>;
5438fd7a775SMichal Simek			interrupts = <0 36 4>, <0 37 4>, <0 38 4>;
5447393fd86SMichal Simek			reg = <0x0 0xff110000 0x0 0x1000>;
5458fd7a775SMichal Simek			timer-width = <32>;
5468fd7a775SMichal Simek		};
5478fd7a775SMichal Simek
5488fd7a775SMichal Simek		ttc1: timer@ff120000 {
5498fd7a775SMichal Simek			compatible = "cdns,ttc";
5508fd7a775SMichal Simek			status = "disabled";
5518fd7a775SMichal Simek			interrupt-parent = <&gic>;
5528fd7a775SMichal Simek			interrupts = <0 39 4>, <0 40 4>, <0 41 4>;
5537393fd86SMichal Simek			reg = <0x0 0xff120000 0x0 0x1000>;
5548fd7a775SMichal Simek			timer-width = <32>;
5558fd7a775SMichal Simek		};
5568fd7a775SMichal Simek
5578fd7a775SMichal Simek		ttc2: timer@ff130000 {
5588fd7a775SMichal Simek			compatible = "cdns,ttc";
5598fd7a775SMichal Simek			status = "disabled";
5608fd7a775SMichal Simek			interrupt-parent = <&gic>;
5618fd7a775SMichal Simek			interrupts = <0 42 4>, <0 43 4>, <0 44 4>;
5627393fd86SMichal Simek			reg = <0x0 0xff130000 0x0 0x1000>;
5638fd7a775SMichal Simek			timer-width = <32>;
5648fd7a775SMichal Simek		};
5658fd7a775SMichal Simek
5668fd7a775SMichal Simek		ttc3: timer@ff140000 {
5678fd7a775SMichal Simek			compatible = "cdns,ttc";
5688fd7a775SMichal Simek			status = "disabled";
5698fd7a775SMichal Simek			interrupt-parent = <&gic>;
5708fd7a775SMichal Simek			interrupts = <0 45 4>, <0 46 4>, <0 47 4>;
5717393fd86SMichal Simek			reg = <0x0 0xff140000 0x0 0x1000>;
5728fd7a775SMichal Simek			timer-width = <32>;
5738fd7a775SMichal Simek		};
5748fd7a775SMichal Simek
5758fd7a775SMichal Simek		uart0: serial@ff000000 {
57627af3993SMichal Simek			compatible = "cdns,uart-r1p12", "xlnx,xuartps";
5778fd7a775SMichal Simek			status = "disabled";
5788fd7a775SMichal Simek			interrupt-parent = <&gic>;
5798fd7a775SMichal Simek			interrupts = <0 21 4>;
5807393fd86SMichal Simek			reg = <0x0 0xff000000 0x0 0x1000>;
5818fd7a775SMichal Simek			clock-names = "uart_clk", "pclk";
5828fd7a775SMichal Simek		};
5838fd7a775SMichal Simek
5848fd7a775SMichal Simek		uart1: serial@ff010000 {
58527af3993SMichal Simek			compatible = "cdns,uart-r1p12", "xlnx,xuartps";
5868fd7a775SMichal Simek			status = "disabled";
5878fd7a775SMichal Simek			interrupt-parent = <&gic>;
5888fd7a775SMichal Simek			interrupts = <0 22 4>;
5897393fd86SMichal Simek			reg = <0x0 0xff010000 0x0 0x1000>;
5908fd7a775SMichal Simek			clock-names = "uart_clk", "pclk";
5918fd7a775SMichal Simek		};
5928fd7a775SMichal Simek
59322eda14aSMichal Simek		usb0: usb@fe200000 {
59422eda14aSMichal Simek			compatible = "snps,dwc3";
59522eda14aSMichal Simek			status = "disabled";
59622eda14aSMichal Simek			interrupt-parent = <&gic>;
59722eda14aSMichal Simek			interrupts = <0 65 4>;
5987393fd86SMichal Simek			reg = <0x0 0xfe200000 0x0 0x40000>;
59922eda14aSMichal Simek			clock-names = "clk_xin", "clk_ahb";
60022eda14aSMichal Simek		};
60122eda14aSMichal Simek
60222eda14aSMichal Simek		usb1: usb@fe300000 {
60322eda14aSMichal Simek			compatible = "snps,dwc3";
60422eda14aSMichal Simek			status = "disabled";
60522eda14aSMichal Simek			interrupt-parent = <&gic>;
60622eda14aSMichal Simek			interrupts = <0 70 4>;
6077393fd86SMichal Simek			reg = <0x0 0xfe300000 0x0 0x40000>;
60822eda14aSMichal Simek			clock-names = "clk_xin", "clk_ahb";
60922eda14aSMichal Simek		};
61022eda14aSMichal Simek
6115d1b79d2SMichal Simek		watchdog0: watchdog@fd4d0000 {
6125d1b79d2SMichal Simek			compatible = "cdns,wdt-r1p2";
6135d1b79d2SMichal Simek			status = "disabled";
6145d1b79d2SMichal Simek			interrupt-parent = <&gic>;
615908c9e73SPunnaiah Choudary Kalluri			interrupts = <0 113 1>;
6167393fd86SMichal Simek			reg = <0x0 0xfd4d0000 0x0 0x1000>;
6175d1b79d2SMichal Simek			timeout-sec = <10>;
6185d1b79d2SMichal Simek		};
6195d1b79d2SMichal Simek	};
6205d1b79d2SMichal Simek};
621