blob: ad4bbbf667508070be3d87f5285a38673193959b [file] [log] [blame]
Michal Simek090a2d72018-03-27 10:36:39 +02001// SPDX-License-Identifier: GPL-2.0+
Michal Simek54b896f2015-10-30 15:39:18 +01002/*
3 * dts file for Xilinx ZynqMP
4 *
5 * (C) Copyright 2014 - 2015, Xilinx, Inc.
6 *
7 * Michal Simek <michal.simek@xilinx.com>
8 *
Michal Simek090a2d72018-03-27 10:36:39 +02009 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
Michal Simek54b896f2015-10-30 15:39:18 +010013 */
Michal Simek0c365702016-12-16 13:12:48 +010014
Michal Simek54b896f2015-10-30 15:39:18 +010015/ {
16 compatible = "xlnx,zynqmp";
17 #address-cells = <2>;
Michal Simekd171c752016-04-07 15:07:38 +020018 #size-cells = <2>;
Michal Simek54b896f2015-10-30 15:39:18 +010019
20 cpus {
21 #address-cells = <1>;
22 #size-cells = <0>;
23
Michal Simek28663032017-02-06 10:09:53 +010024 cpu0: cpu@0 {
Michal Simek54b896f2015-10-30 15:39:18 +010025 compatible = "arm,cortex-a53", "arm,armv8";
26 device_type = "cpu";
27 enable-method = "psci";
Shubhrajyoti Dattaec9c6c82017-02-13 15:58:55 +053028 operating-points-v2 = <&cpu_opp_table>;
Michal Simek54b896f2015-10-30 15:39:18 +010029 reg = <0x0>;
Stefan Krsmanovic8e16a6e2016-10-21 12:44:56 +020030 cpu-idle-states = <&CPU_SLEEP_0>;
Michal Simek54b896f2015-10-30 15:39:18 +010031 };
32
Michal Simek28663032017-02-06 10:09:53 +010033 cpu1: cpu@1 {
Michal Simek54b896f2015-10-30 15:39:18 +010034 compatible = "arm,cortex-a53", "arm,armv8";
35 device_type = "cpu";
36 enable-method = "psci";
37 reg = <0x1>;
Shubhrajyoti Dattaec9c6c82017-02-13 15:58:55 +053038 operating-points-v2 = <&cpu_opp_table>;
Stefan Krsmanovic8e16a6e2016-10-21 12:44:56 +020039 cpu-idle-states = <&CPU_SLEEP_0>;
Michal Simek54b896f2015-10-30 15:39:18 +010040 };
41
Michal Simek28663032017-02-06 10:09:53 +010042 cpu2: cpu@2 {
Michal Simek54b896f2015-10-30 15:39:18 +010043 compatible = "arm,cortex-a53", "arm,armv8";
44 device_type = "cpu";
45 enable-method = "psci";
46 reg = <0x2>;
Shubhrajyoti Dattaec9c6c82017-02-13 15:58:55 +053047 operating-points-v2 = <&cpu_opp_table>;
Stefan Krsmanovic8e16a6e2016-10-21 12:44:56 +020048 cpu-idle-states = <&CPU_SLEEP_0>;
Michal Simek54b896f2015-10-30 15:39:18 +010049 };
50
Michal Simek28663032017-02-06 10:09:53 +010051 cpu3: cpu@3 {
Michal Simek54b896f2015-10-30 15:39:18 +010052 compatible = "arm,cortex-a53", "arm,armv8";
53 device_type = "cpu";
54 enable-method = "psci";
55 reg = <0x3>;
Shubhrajyoti Dattaec9c6c82017-02-13 15:58:55 +053056 operating-points-v2 = <&cpu_opp_table>;
Stefan Krsmanovic8e16a6e2016-10-21 12:44:56 +020057 cpu-idle-states = <&CPU_SLEEP_0>;
58 };
59
60 idle-states {
Jyotheeswar Reddy96d44242017-01-13 16:13:39 +053061 entry-method = "arm,psci";
Stefan Krsmanovic8e16a6e2016-10-21 12:44:56 +020062
63 CPU_SLEEP_0: cpu-sleep-0 {
64 compatible = "arm,idle-state";
65 arm,psci-suspend-param = <0x40000000>;
66 local-timer-stop;
67 entry-latency-us = <300>;
68 exit-latency-us = <600>;
Jolly Shah5a5d5b32017-06-14 15:03:52 -070069 min-residency-us = <10000>;
Stefan Krsmanovic8e16a6e2016-10-21 12:44:56 +020070 };
Michal Simek54b896f2015-10-30 15:39:18 +010071 };
72 };
73
Shubhrajyoti Dattaec9c6c82017-02-13 15:58:55 +053074 cpu_opp_table: cpu_opp_table {
75 compatible = "operating-points-v2";
76 opp-shared;
77 opp00 {
78 opp-hz = /bits/ 64 <1199999988>;
79 opp-microvolt = <1000000>;
80 clock-latency-ns = <500000>;
81 };
82 opp01 {
83 opp-hz = /bits/ 64 <599999994>;
84 opp-microvolt = <1000000>;
85 clock-latency-ns = <500000>;
86 };
87 opp02 {
88 opp-hz = /bits/ 64 <399999996>;
89 opp-microvolt = <1000000>;
90 clock-latency-ns = <500000>;
91 };
92 opp03 {
93 opp-hz = /bits/ 64 <299999997>;
94 opp-microvolt = <1000000>;
95 clock-latency-ns = <500000>;
96 };
97 };
98
Michal Simekde29d542016-09-09 08:46:39 +020099 dcc: dcc {
100 compatible = "arm,dcc";
101 status = "disabled";
102 u-boot,dm-pre-reloc;
103 };
104
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800105 power-domains {
106 compatible = "xlnx,zynqmp-genpd";
107
108 pd_usb0: pd-usb0 {
109 #power-domain-cells = <0x0>;
110 pd-id = <0x16>;
111 };
112
113 pd_usb1: pd-usb1 {
114 #power-domain-cells = <0x0>;
115 pd-id = <0x17>;
116 };
117
118 pd_sata: pd-sata {
119 #power-domain-cells = <0x0>;
120 pd-id = <0x1c>;
121 };
122
123 pd_spi0: pd-spi0 {
124 #power-domain-cells = <0x0>;
125 pd-id = <0x23>;
126 };
127
128 pd_spi1: pd-spi1 {
129 #power-domain-cells = <0x0>;
130 pd-id = <0x24>;
131 };
132
133 pd_uart0: pd-uart0 {
134 #power-domain-cells = <0x0>;
135 pd-id = <0x21>;
136 };
137
138 pd_uart1: pd-uart1 {
139 #power-domain-cells = <0x0>;
140 pd-id = <0x22>;
141 };
142
143 pd_eth0: pd-eth0 {
144 #power-domain-cells = <0x0>;
145 pd-id = <0x1d>;
146 };
147
148 pd_eth1: pd-eth1 {
149 #power-domain-cells = <0x0>;
150 pd-id = <0x1e>;
151 };
152
153 pd_eth2: pd-eth2 {
154 #power-domain-cells = <0x0>;
155 pd-id = <0x1f>;
156 };
157
158 pd_eth3: pd-eth3 {
159 #power-domain-cells = <0x0>;
160 pd-id = <0x20>;
161 };
162
163 pd_i2c0: pd-i2c0 {
164 #power-domain-cells = <0x0>;
165 pd-id = <0x25>;
166 };
167
168 pd_i2c1: pd-i2c1 {
169 #power-domain-cells = <0x0>;
170 pd-id = <0x26>;
171 };
172
173 pd_dp: pd-dp {
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800174 #power-domain-cells = <0x0>;
175 pd-id = <0x29>;
176 };
177
178 pd_gdma: pd-gdma {
179 #power-domain-cells = <0x0>;
180 pd-id = <0x2a>;
181 };
182
183 pd_adma: pd-adma {
184 #power-domain-cells = <0x0>;
185 pd-id = <0x2b>;
186 };
187
188 pd_ttc0: pd-ttc0 {
189 #power-domain-cells = <0x0>;
190 pd-id = <0x18>;
191 };
192
193 pd_ttc1: pd-ttc1 {
194 #power-domain-cells = <0x0>;
195 pd-id = <0x19>;
196 };
197
198 pd_ttc2: pd-ttc2 {
199 #power-domain-cells = <0x0>;
200 pd-id = <0x1a>;
201 };
202
203 pd_ttc3: pd-ttc3 {
204 #power-domain-cells = <0x0>;
205 pd-id = <0x1b>;
206 };
207
208 pd_sd0: pd-sd0 {
209 #power-domain-cells = <0x0>;
210 pd-id = <0x27>;
211 };
212
213 pd_sd1: pd-sd1 {
214 #power-domain-cells = <0x0>;
215 pd-id = <0x28>;
216 };
217
218 pd_nand: pd-nand {
219 #power-domain-cells = <0x0>;
220 pd-id = <0x2c>;
221 };
222
223 pd_qspi: pd-qspi {
224 #power-domain-cells = <0x0>;
225 pd-id = <0x2d>;
226 };
227
228 pd_gpio: pd-gpio {
229 #power-domain-cells = <0x0>;
230 pd-id = <0x2e>;
231 };
232
233 pd_can0: pd-can0 {
234 #power-domain-cells = <0x0>;
235 pd-id = <0x2f>;
236 };
237
238 pd_can1: pd-can1 {
239 #power-domain-cells = <0x0>;
240 pd-id = <0x30>;
241 };
Filip Drazicfe716f92016-08-29 19:32:56 +0200242
243 pd_pcie: pd-pcie {
244 #power-domain-cells = <0x0>;
245 pd-id = <0x3b>;
246 };
247
248 pd_gpu: pd-gpu {
249 #power-domain-cells = <0x0>;
Filip Drazic5957bf32016-08-29 19:32:59 +0200250 pd-id = <0x3a 0x14 0x15>;
Filip Drazicfe716f92016-08-29 19:32:56 +0200251 };
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800252 };
253
Michal Simek54b896f2015-10-30 15:39:18 +0100254 pmu {
255 compatible = "arm,armv8-pmuv3";
Michal Simek86e6eee2016-04-07 15:28:33 +0200256 interrupt-parent = <&gic>;
Michal Simek54b896f2015-10-30 15:39:18 +0100257 interrupts = <0 143 4>,
258 <0 144 4>,
259 <0 145 4>,
260 <0 146 4>;
261 };
262
263 psci {
264 compatible = "arm,psci-0.2";
265 method = "smc";
266 };
267
Michal Simek38aabff2017-12-01 14:43:05 +0100268 pmufw: firmware {
Michal Simek54b896f2015-10-30 15:39:18 +0100269 compatible = "xlnx,zynqmp-pm";
270 method = "smc";
Soren Brinkmanna6b64512016-11-21 16:12:05 -0800271 interrupt-parent = <&gic>;
272 interrupts = <0 35 4>;
Michal Simek54b896f2015-10-30 15:39:18 +0100273 };
274
275 timer {
276 compatible = "arm,armv8-timer";
277 interrupt-parent = <&gic>;
Michal Simek2155a602017-02-09 14:45:12 +0100278 interrupts = <1 13 0xf08>,
279 <1 14 0xf08>,
280 <1 11 0xf08>,
281 <1 10 0xf08>;
Michal Simek54b896f2015-10-30 15:39:18 +0100282 };
283
Naga Sureshkumar Relli1931f212016-06-20 15:48:30 +0530284 edac {
285 compatible = "arm,cortex-a53-edac";
286 };
287
Nava kishore Mannea1763ba2017-05-22 12:05:17 +0530288 fpga_full: fpga-full {
289 compatible = "fpga-region";
290 fpga-mgr = <&pcap>;
291 #address-cells = <2>;
292 #size-cells = <2>;
293 };
294
Nava kishore Manne59dc8ce2017-01-17 16:57:24 +0530295 nvmem_firmware {
296 compatible = "xlnx,zynqmp-nvmem-fw";
297 #address-cells = <1>;
298 #size-cells = <1>;
299
300 soc_revision: soc_revision@0 {
301 reg = <0x0 0x4>;
302 };
303 };
304
Nava kishore Mannea1763ba2017-05-22 12:05:17 +0530305 pcap: pcap {
Nava kishore Manne90571702016-08-21 00:17:52 +0530306 compatible = "xlnx,zynqmp-pcap-fpga";
307 };
308
Anurag Kumar Vulisha767e9752017-02-06 21:40:34 +0530309 rst: reset-controller {
310 compatible = "xlnx,zynqmp-reset";
311 #reset-cells = <1>;
312 };
313
Michal Simek63e5dd52017-07-05 14:51:42 +0200314 xlnx_dp_snd_card: dp_snd_card {
315 compatible = "xlnx,dp-snd-card";
316 status = "disabled";
317 xlnx,dp-snd-pcm = <&xlnx_dp_snd_pcm0>, <&xlnx_dp_snd_pcm1>;
318 xlnx,dp-snd-codec = <&xlnx_dp_snd_codec0>;
319 };
320
321 xlnx_dp_snd_codec0: dp_snd_codec0 {
322 compatible = "xlnx,dp-snd-codec";
323 status = "disabled";
324 clock-names = "aud_clk";
325 };
326
327 xlnx_dp_snd_pcm0: dp_snd_pcm0 {
328 compatible = "xlnx,dp-snd-pcm";
329 status = "disabled";
330 dmas = <&xlnx_dpdma 4>;
331 dma-names = "tx";
332 };
333
334 xlnx_dp_snd_pcm1: dp_snd_pcm1 {
335 compatible = "xlnx,dp-snd-pcm";
336 status = "disabled";
337 dmas = <&xlnx_dpdma 5>;
338 dma-names = "tx";
339 };
340
341 xilinx_drm: xilinx_drm {
342 compatible = "xlnx,drm";
343 status = "disabled";
344 xlnx,encoder-slave = <&xlnx_dp>;
345 xlnx,connector-type = "DisplayPort";
346 xlnx,dp-sub = <&xlnx_dp_sub>;
347 planes {
348 xlnx,pixel-format = "rgb565";
349 plane0 {
350 dmas = <&xlnx_dpdma 3>;
351 dma-names = "dma0";
352 };
353 plane1 {
354 dmas = <&xlnx_dpdma 0>,
355 <&xlnx_dpdma 1>,
356 <&xlnx_dpdma 2>;
357 dma-names = "dma0", "dma1", "dma2";
358 };
359 };
360 };
361
Michal Simek79c1cbf2016-11-11 13:21:04 +0100362 amba_apu: amba_apu@0 {
Michal Simek54b896f2015-10-30 15:39:18 +0100363 compatible = "simple-bus";
364 #address-cells = <2>;
365 #size-cells = <1>;
Michal Simekd171c752016-04-07 15:07:38 +0200366 ranges = <0 0 0 0 0xffffffff>;
Michal Simek54b896f2015-10-30 15:39:18 +0100367
368 gic: interrupt-controller@f9010000 {
369 compatible = "arm,gic-400", "arm,cortex-a15-gic";
370 #interrupt-cells = <3>;
371 reg = <0x0 0xf9010000 0x10000>,
Alexander Grafd35e65d2016-05-12 13:44:01 +0200372 <0x0 0xf9020000 0x20000>,
Michal Simek54b896f2015-10-30 15:39:18 +0100373 <0x0 0xf9040000 0x20000>,
Alexander Grafd35e65d2016-05-12 13:44:01 +0200374 <0x0 0xf9060000 0x20000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100375 interrupt-controller;
376 interrupt-parent = <&gic>;
377 interrupts = <1 9 0xf04>;
378 };
379 };
380
Michal Simek72b562a2016-02-11 07:19:06 +0100381 amba: amba {
Michal Simek54b896f2015-10-30 15:39:18 +0100382 compatible = "simple-bus";
Michal Simekba087532016-02-22 09:57:27 +0100383 u-boot,dm-pre-reloc;
Michal Simek54b896f2015-10-30 15:39:18 +0100384 #address-cells = <2>;
Michal Simek72b562a2016-02-11 07:19:06 +0100385 #size-cells = <2>;
386 ranges;
Michal Simek54b896f2015-10-30 15:39:18 +0100387
388 can0: can@ff060000 {
389 compatible = "xlnx,zynq-can-1.0";
390 status = "disabled";
391 clock-names = "can_clk", "pclk";
Michal Simek72b562a2016-02-11 07:19:06 +0100392 reg = <0x0 0xff060000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100393 interrupts = <0 23 4>;
394 interrupt-parent = <&gic>;
395 tx-fifo-depth = <0x40>;
396 rx-fifo-depth = <0x40>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800397 power-domains = <&pd_can0>;
Michal Simek54b896f2015-10-30 15:39:18 +0100398 };
399
400 can1: can@ff070000 {
401 compatible = "xlnx,zynq-can-1.0";
402 status = "disabled";
403 clock-names = "can_clk", "pclk";
Michal Simek72b562a2016-02-11 07:19:06 +0100404 reg = <0x0 0xff070000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100405 interrupts = <0 24 4>;
406 interrupt-parent = <&gic>;
407 tx-fifo-depth = <0x40>;
408 rx-fifo-depth = <0x40>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800409 power-domains = <&pd_can1>;
Michal Simek54b896f2015-10-30 15:39:18 +0100410 };
411
Michal Simekb197dd42015-11-26 11:21:25 +0100412 cci: cci@fd6e0000 {
413 compatible = "arm,cci-400";
Michal Simek72b562a2016-02-11 07:19:06 +0100414 reg = <0x0 0xfd6e0000 0x0 0x9000>;
Michal Simekb197dd42015-11-26 11:21:25 +0100415 ranges = <0x0 0x0 0xfd6e0000 0x10000>;
416 #address-cells = <1>;
417 #size-cells = <1>;
418
419 pmu@9000 {
420 compatible = "arm,cci-400-pmu,r1";
421 reg = <0x9000 0x5000>;
422 interrupt-parent = <&gic>;
423 interrupts = <0 123 4>,
424 <0 123 4>,
425 <0 123 4>,
426 <0 123 4>,
427 <0 123 4>;
428 };
429 };
430
Michal Simek54b896f2015-10-30 15:39:18 +0100431 /* GDMA */
432 fpd_dma_chan1: dma@fd500000 {
433 status = "disabled";
434 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100435 reg = <0x0 0xfd500000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100436 interrupt-parent = <&gic>;
437 interrupts = <0 124 4>;
VNSL Durga7b3cb892016-03-24 22:45:12 +0530438 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100439 xlnx,bus-width = <128>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200440 #stream-id-cells = <1>;
441 iommus = <&smmu 0x14e8>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800442 power-domains = <&pd_gdma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100443 };
444
445 fpd_dma_chan2: dma@fd510000 {
446 status = "disabled";
447 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100448 reg = <0x0 0xfd510000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100449 interrupt-parent = <&gic>;
450 interrupts = <0 125 4>;
VNSL Durga7b3cb892016-03-24 22:45:12 +0530451 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100452 xlnx,bus-width = <128>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200453 #stream-id-cells = <1>;
454 iommus = <&smmu 0x14e9>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800455 power-domains = <&pd_gdma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100456 };
457
458 fpd_dma_chan3: dma@fd520000 {
459 status = "disabled";
460 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100461 reg = <0x0 0xfd520000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100462 interrupt-parent = <&gic>;
463 interrupts = <0 126 4>;
VNSL Durga7b3cb892016-03-24 22:45:12 +0530464 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100465 xlnx,bus-width = <128>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200466 #stream-id-cells = <1>;
467 iommus = <&smmu 0x14ea>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800468 power-domains = <&pd_gdma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100469 };
470
471 fpd_dma_chan4: dma@fd530000 {
472 status = "disabled";
473 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100474 reg = <0x0 0xfd530000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100475 interrupt-parent = <&gic>;
476 interrupts = <0 127 4>;
VNSL Durga7b3cb892016-03-24 22:45:12 +0530477 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100478 xlnx,bus-width = <128>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200479 #stream-id-cells = <1>;
480 iommus = <&smmu 0x14eb>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800481 power-domains = <&pd_gdma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100482 };
483
484 fpd_dma_chan5: dma@fd540000 {
485 status = "disabled";
486 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100487 reg = <0x0 0xfd540000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100488 interrupt-parent = <&gic>;
489 interrupts = <0 128 4>;
VNSL Durga7b3cb892016-03-24 22:45:12 +0530490 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100491 xlnx,bus-width = <128>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200492 #stream-id-cells = <1>;
493 iommus = <&smmu 0x14ec>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800494 power-domains = <&pd_gdma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100495 };
496
497 fpd_dma_chan6: dma@fd550000 {
498 status = "disabled";
499 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100500 reg = <0x0 0xfd550000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100501 interrupt-parent = <&gic>;
502 interrupts = <0 129 4>;
VNSL Durga7b3cb892016-03-24 22:45:12 +0530503 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100504 xlnx,bus-width = <128>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200505 #stream-id-cells = <1>;
506 iommus = <&smmu 0x14ed>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800507 power-domains = <&pd_gdma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100508 };
509
510 fpd_dma_chan7: dma@fd560000 {
511 status = "disabled";
512 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100513 reg = <0x0 0xfd560000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100514 interrupt-parent = <&gic>;
515 interrupts = <0 130 4>;
VNSL Durga7b3cb892016-03-24 22:45:12 +0530516 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100517 xlnx,bus-width = <128>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200518 #stream-id-cells = <1>;
519 iommus = <&smmu 0x14ee>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800520 power-domains = <&pd_gdma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100521 };
522
523 fpd_dma_chan8: dma@fd570000 {
524 status = "disabled";
525 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100526 reg = <0x0 0xfd570000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100527 interrupt-parent = <&gic>;
528 interrupts = <0 131 4>;
VNSL Durga7b3cb892016-03-24 22:45:12 +0530529 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100530 xlnx,bus-width = <128>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200531 #stream-id-cells = <1>;
532 iommus = <&smmu 0x14ef>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800533 power-domains = <&pd_gdma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100534 };
535
536 gpu: gpu@fd4b0000 {
537 status = "disabled";
538 compatible = "arm,mali-400", "arm,mali-utgard";
Hyun Kwon991faf72017-08-21 18:54:29 -0700539 reg = <0x0 0xfd4b0000 0x0 0x10000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100540 interrupt-parent = <&gic>;
541 interrupts = <0 132 4>, <0 132 4>, <0 132 4>, <0 132 4>, <0 132 4>, <0 132 4>;
542 interrupt-names = "IRQGP", "IRQGPMMU", "IRQPP0", "IRQPPMMU0", "IRQPP1", "IRQPPMMU1";
Madhurkiran Harikrishnan69819bd2017-02-17 04:14:45 -0800543 clock-names = "gpu", "gpu_pp0", "gpu_pp1";
Filip Drazicfe716f92016-08-29 19:32:56 +0200544 power-domains = <&pd_gpu>;
Michal Simek54b896f2015-10-30 15:39:18 +0100545 };
546
Kedareswara rao Appanaae9342f2016-09-09 12:36:01 +0530547 /* LPDDMA default allows only secured access. inorder to enable
548 * These dma channels, Users should ensure that these dma
549 * Channels are allowed for non secure access.
550 */
Michal Simek54b896f2015-10-30 15:39:18 +0100551 lpd_dma_chan1: dma@ffa80000 {
552 status = "disabled";
553 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100554 reg = <0x0 0xffa80000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100555 interrupt-parent = <&gic>;
556 interrupts = <0 77 4>;
Michal Simek91ab8252018-01-17 16:32:33 +0100557 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100558 xlnx,bus-width = <64>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200559 #stream-id-cells = <1>;
560 iommus = <&smmu 0x868>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800561 power-domains = <&pd_adma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100562 };
563
564 lpd_dma_chan2: dma@ffa90000 {
565 status = "disabled";
566 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100567 reg = <0x0 0xffa90000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100568 interrupt-parent = <&gic>;
569 interrupts = <0 78 4>;
Michal Simek91ab8252018-01-17 16:32:33 +0100570 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100571 xlnx,bus-width = <64>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200572 #stream-id-cells = <1>;
573 iommus = <&smmu 0x869>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800574 power-domains = <&pd_adma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100575 };
576
577 lpd_dma_chan3: dma@ffaa0000 {
578 status = "disabled";
579 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100580 reg = <0x0 0xffaa0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100581 interrupt-parent = <&gic>;
582 interrupts = <0 79 4>;
Michal Simek91ab8252018-01-17 16:32:33 +0100583 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100584 xlnx,bus-width = <64>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200585 #stream-id-cells = <1>;
586 iommus = <&smmu 0x86a>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800587 power-domains = <&pd_adma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100588 };
589
590 lpd_dma_chan4: dma@ffab0000 {
591 status = "disabled";
592 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100593 reg = <0x0 0xffab0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100594 interrupt-parent = <&gic>;
595 interrupts = <0 80 4>;
Michal Simek91ab8252018-01-17 16:32:33 +0100596 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100597 xlnx,bus-width = <64>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200598 #stream-id-cells = <1>;
599 iommus = <&smmu 0x86b>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800600 power-domains = <&pd_adma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100601 };
602
603 lpd_dma_chan5: dma@ffac0000 {
604 status = "disabled";
605 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100606 reg = <0x0 0xffac0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100607 interrupt-parent = <&gic>;
608 interrupts = <0 81 4>;
Michal Simek91ab8252018-01-17 16:32:33 +0100609 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100610 xlnx,bus-width = <64>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200611 #stream-id-cells = <1>;
612 iommus = <&smmu 0x86c>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800613 power-domains = <&pd_adma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100614 };
615
616 lpd_dma_chan6: dma@ffad0000 {
617 status = "disabled";
618 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100619 reg = <0x0 0xffad0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100620 interrupt-parent = <&gic>;
621 interrupts = <0 82 4>;
Michal Simek91ab8252018-01-17 16:32:33 +0100622 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100623 xlnx,bus-width = <64>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200624 #stream-id-cells = <1>;
625 iommus = <&smmu 0x86d>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800626 power-domains = <&pd_adma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100627 };
628
629 lpd_dma_chan7: dma@ffae0000 {
630 status = "disabled";
631 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100632 reg = <0x0 0xffae0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100633 interrupt-parent = <&gic>;
634 interrupts = <0 83 4>;
Michal Simek91ab8252018-01-17 16:32:33 +0100635 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100636 xlnx,bus-width = <64>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200637 #stream-id-cells = <1>;
638 iommus = <&smmu 0x86e>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800639 power-domains = <&pd_adma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100640 };
641
642 lpd_dma_chan8: dma@ffaf0000 {
643 status = "disabled";
644 compatible = "xlnx,zynqmp-dma-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100645 reg = <0x0 0xffaf0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100646 interrupt-parent = <&gic>;
647 interrupts = <0 84 4>;
Michal Simek91ab8252018-01-17 16:32:33 +0100648 clock-names = "clk_main", "clk_apb";
Michal Simek54b896f2015-10-30 15:39:18 +0100649 xlnx,bus-width = <64>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200650 #stream-id-cells = <1>;
651 iommus = <&smmu 0x86f>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800652 power-domains = <&pd_adma>;
Michal Simek54b896f2015-10-30 15:39:18 +0100653 };
654
Naga Sureshkumar Rellide96a3e2016-03-11 13:10:26 +0530655 mc: memory-controller@fd070000 {
656 compatible = "xlnx,zynqmp-ddrc-2.40a";
Michal Simek72b562a2016-02-11 07:19:06 +0100657 reg = <0x0 0xfd070000 0x0 0x30000>;
Naga Sureshkumar Rellide96a3e2016-03-11 13:10:26 +0530658 interrupt-parent = <&gic>;
659 interrupts = <0 112 4>;
660 };
661
Michal Simek54b896f2015-10-30 15:39:18 +0100662 nand0: nand@ff100000 {
663 compatible = "arasan,nfc-v3p10";
664 status = "disabled";
Michal Simek72b562a2016-02-11 07:19:06 +0100665 reg = <0x0 0xff100000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100666 clock-names = "clk_sys", "clk_flash";
667 interrupt-parent = <&gic>;
668 interrupts = <0 14 4>;
669 #address-cells = <2>;
670 #size-cells = <1>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200671 #stream-id-cells = <1>;
672 iommus = <&smmu 0x872>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800673 power-domains = <&pd_nand>;
Michal Simek54b896f2015-10-30 15:39:18 +0100674 };
675
676 gem0: ethernet@ff0b0000 {
Michal Simek5804e922016-02-11 15:26:46 +0100677 compatible = "cdns,zynqmp-gem";
Michal Simek54b896f2015-10-30 15:39:18 +0100678 status = "disabled";
679 interrupt-parent = <&gic>;
680 interrupts = <0 57 4>, <0 57 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100681 reg = <0x0 0xff0b0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100682 clock-names = "pclk", "hclk", "tx_clk";
683 #address-cells = <1>;
684 #size-cells = <0>;
Edgar E. Iglesiasfde098f2015-11-26 14:12:20 +0100685 #stream-id-cells = <1>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200686 iommus = <&smmu 0x874>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800687 power-domains = <&pd_eth0>;
Michal Simek54b896f2015-10-30 15:39:18 +0100688 };
689
690 gem1: ethernet@ff0c0000 {
Michal Simek5804e922016-02-11 15:26:46 +0100691 compatible = "cdns,zynqmp-gem";
Michal Simek54b896f2015-10-30 15:39:18 +0100692 status = "disabled";
693 interrupt-parent = <&gic>;
694 interrupts = <0 59 4>, <0 59 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100695 reg = <0x0 0xff0c0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100696 clock-names = "pclk", "hclk", "tx_clk";
697 #address-cells = <1>;
698 #size-cells = <0>;
Edgar E. Iglesiasfde098f2015-11-26 14:12:20 +0100699 #stream-id-cells = <1>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200700 iommus = <&smmu 0x875>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800701 power-domains = <&pd_eth1>;
Michal Simek54b896f2015-10-30 15:39:18 +0100702 };
703
704 gem2: ethernet@ff0d0000 {
Michal Simek5804e922016-02-11 15:26:46 +0100705 compatible = "cdns,zynqmp-gem";
Michal Simek54b896f2015-10-30 15:39:18 +0100706 status = "disabled";
707 interrupt-parent = <&gic>;
708 interrupts = <0 61 4>, <0 61 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100709 reg = <0x0 0xff0d0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100710 clock-names = "pclk", "hclk", "tx_clk";
711 #address-cells = <1>;
712 #size-cells = <0>;
Edgar E. Iglesiasfde098f2015-11-26 14:12:20 +0100713 #stream-id-cells = <1>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200714 iommus = <&smmu 0x876>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800715 power-domains = <&pd_eth2>;
Michal Simek54b896f2015-10-30 15:39:18 +0100716 };
717
718 gem3: ethernet@ff0e0000 {
Michal Simek5804e922016-02-11 15:26:46 +0100719 compatible = "cdns,zynqmp-gem";
Michal Simek54b896f2015-10-30 15:39:18 +0100720 status = "disabled";
721 interrupt-parent = <&gic>;
722 interrupts = <0 63 4>, <0 63 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100723 reg = <0x0 0xff0e0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100724 clock-names = "pclk", "hclk", "tx_clk";
725 #address-cells = <1>;
726 #size-cells = <0>;
Edgar E. Iglesiasfde098f2015-11-26 14:12:20 +0100727 #stream-id-cells = <1>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200728 iommus = <&smmu 0x877>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800729 power-domains = <&pd_eth3>;
Michal Simek54b896f2015-10-30 15:39:18 +0100730 };
731
732 gpio: gpio@ff0a0000 {
733 compatible = "xlnx,zynqmp-gpio-1.0";
734 status = "disabled";
735 #gpio-cells = <0x2>;
736 interrupt-parent = <&gic>;
737 interrupts = <0 16 4>;
Michal Simek7e2df452016-10-20 10:26:13 +0200738 interrupt-controller;
739 #interrupt-cells = <2>;
Michal Simek72b562a2016-02-11 07:19:06 +0100740 reg = <0x0 0xff0a0000 0x0 0x1000>;
Michal Simek44c45e02017-08-30 08:06:11 +0200741 gpio-controller;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800742 power-domains = <&pd_gpio>;
Michal Simek54b896f2015-10-30 15:39:18 +0100743 };
744
745 i2c0: i2c@ff020000 {
Moritz Fischere94b8df2016-12-22 09:36:11 -0800746 compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
Michal Simek54b896f2015-10-30 15:39:18 +0100747 status = "disabled";
748 interrupt-parent = <&gic>;
749 interrupts = <0 17 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100750 reg = <0x0 0xff020000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100751 #address-cells = <1>;
752 #size-cells = <0>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800753 power-domains = <&pd_i2c0>;
Michal Simek54b896f2015-10-30 15:39:18 +0100754 };
755
756 i2c1: i2c@ff030000 {
Moritz Fischere94b8df2016-12-22 09:36:11 -0800757 compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
Michal Simek54b896f2015-10-30 15:39:18 +0100758 status = "disabled";
759 interrupt-parent = <&gic>;
760 interrupts = <0 18 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100761 reg = <0x0 0xff030000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100762 #address-cells = <1>;
763 #size-cells = <0>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800764 power-domains = <&pd_i2c1>;
Michal Simek54b896f2015-10-30 15:39:18 +0100765 };
766
Naga Sureshkumar Relli104b4fc2016-05-18 12:23:13 +0530767 ocm: memory-controller@ff960000 {
768 compatible = "xlnx,zynqmp-ocmc-1.0";
Michal Simek72b562a2016-02-11 07:19:06 +0100769 reg = <0x0 0xff960000 0x0 0x1000>;
Naga Sureshkumar Relli104b4fc2016-05-18 12:23:13 +0530770 interrupt-parent = <&gic>;
771 interrupts = <0 10 4>;
772 };
773
Michal Simek54b896f2015-10-30 15:39:18 +0100774 pcie: pcie@fd0e0000 {
775 compatible = "xlnx,nwl-pcie-2.11";
776 status = "disabled";
777 #address-cells = <3>;
778 #size-cells = <2>;
779 #interrupt-cells = <1>;
Bharat Kumar Gogadae44f69d2016-07-19 20:49:29 +0530780 msi-controller;
Michal Simek54b896f2015-10-30 15:39:18 +0100781 device_type = "pci";
782 interrupt-parent = <&gic>;
Michal Simekf9fda432016-01-20 12:59:23 +0100783 interrupts = <0 118 4>,
Bharat Kumar Gogadae44f69d2016-07-19 20:49:29 +0530784 <0 117 4>,
Michal Simekf9fda432016-01-20 12:59:23 +0100785 <0 116 4>,
786 <0 115 4>, /* MSI_1 [63...32] */
787 <0 114 4>; /* MSI_0 [31...0] */
Michal Simek91ab8252018-01-17 16:32:33 +0100788 interrupt-names = "misc", "dummy", "intx",
789 "msi1", "msi0";
Bharat Kumar Gogadae44f69d2016-07-19 20:49:29 +0530790 msi-parent = <&pcie>;
Michal Simek72b562a2016-02-11 07:19:06 +0100791 reg = <0x0 0xfd0e0000 0x0 0x1000>,
792 <0x0 0xfd480000 0x0 0x1000>,
Bharat Kumar Gogadae829f072016-08-02 20:34:13 +0530793 <0x80 0x00000000 0x0 0x1000000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100794 reg-names = "breg", "pcireg", "cfg";
Bharat Kumar Gogadae829f072016-08-02 20:34:13 +0530795 ranges = <0x02000000 0x00000000 0xe0000000 0x00000000 0xe0000000 0x00000000 0x10000000 /* non-prefetchable memory */
796 0x43000000 0x00000006 0x00000000 0x00000006 0x00000000 0x00000002 0x00000000>;/* prefetchable memory */
Rob Herring1559f562017-03-21 21:03:13 -0500797 bus-range = <0x00 0xff>;
Bharat Kumar Gogadaf6e02b32016-02-15 21:18:58 +0530798 interrupt-map-mask = <0x0 0x0 0x0 0x7>;
799 interrupt-map = <0x0 0x0 0x0 0x1 &pcie_intc 0x1>,
800 <0x0 0x0 0x0 0x2 &pcie_intc 0x2>,
801 <0x0 0x0 0x0 0x3 &pcie_intc 0x3>,
802 <0x0 0x0 0x0 0x4 &pcie_intc 0x4>;
Filip Drazicfe716f92016-08-29 19:32:56 +0200803 power-domains = <&pd_pcie>;
Bharat Kumar Gogadaf6e02b32016-02-15 21:18:58 +0530804 pcie_intc: legacy-interrupt-controller {
805 interrupt-controller;
806 #address-cells = <0>;
807 #interrupt-cells = <1>;
808 };
Michal Simek54b896f2015-10-30 15:39:18 +0100809 };
810
811 qspi: spi@ff0f0000 {
Michal Simek933b6f72017-01-16 12:07:33 +0100812 u-boot,dm-pre-reloc;
Michal Simek54b896f2015-10-30 15:39:18 +0100813 compatible = "xlnx,zynqmp-qspi-1.0";
814 status = "disabled";
815 clock-names = "ref_clk", "pclk";
816 interrupts = <0 15 4>;
817 interrupt-parent = <&gic>;
818 num-cs = <1>;
Michal Simek72b562a2016-02-11 07:19:06 +0100819 reg = <0x0 0xff0f0000 0x0 0x1000>,
820 <0x0 0xc0000000 0x0 0x8000000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100821 #address-cells = <1>;
822 #size-cells = <0>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200823 #stream-id-cells = <1>;
824 iommus = <&smmu 0x873>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800825 power-domains = <&pd_qspi>;
Michal Simek54b896f2015-10-30 15:39:18 +0100826 };
827
828 rtc: rtc@ffa60000 {
829 compatible = "xlnx,zynqmp-rtc";
830 status = "disabled";
Michal Simek72b562a2016-02-11 07:19:06 +0100831 reg = <0x0 0xffa60000 0x0 0x100>;
Michal Simek54b896f2015-10-30 15:39:18 +0100832 interrupt-parent = <&gic>;
833 interrupts = <0 26 4>, <0 27 4>;
834 interrupt-names = "alarm", "sec";
Nava kishore Mannefaa728f2017-01-27 18:20:14 +0530835 calibration = <0x8000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100836 };
837
Anurag Kumar Vulisha2d112502016-05-17 16:49:01 +0530838 serdes: zynqmp_phy@fd400000 {
839 compatible = "xlnx,zynqmp-psgtr";
840 status = "disabled";
Michal Simek72b562a2016-02-11 07:19:06 +0100841 reg = <0x0 0xfd400000 0x0 0x40000>,
842 <0x0 0xfd3d0000 0x0 0x1000>,
Michal Simek72b562a2016-02-11 07:19:06 +0100843 <0x0 0xff5e0000 0x0 0x1000>;
Anurag Kumar Vulisha66ee0d22017-02-08 17:09:10 +0530844 reg-names = "serdes", "siou", "lpd";
Michal Simekc79738d2017-01-17 14:36:54 +0100845 nvmem-cells = <&soc_revision>;
846 nvmem-cell-names = "soc_revision";
Anurag Kumar Vulisha767e9752017-02-06 21:40:34 +0530847 resets = <&rst 16>, <&rst 59>, <&rst 60>,
848 <&rst 61>, <&rst 62>, <&rst 63>,
849 <&rst 64>, <&rst 3>, <&rst 29>,
850 <&rst 30>, <&rst 31>, <&rst 32>;
851 reset-names = "sata_rst", "usb0_crst", "usb1_crst",
852 "usb0_hibrst", "usb1_hibrst", "usb0_apbrst",
853 "usb1_apbrst", "dp_rst", "gem0_rst",
854 "gem1_rst", "gem2_rst", "gem3_rst";
Anurag Kumar Vulisha2d112502016-05-17 16:49:01 +0530855 lane0: lane0 {
856 #phy-cells = <4>;
857 };
858 lane1: lane1 {
859 #phy-cells = <4>;
860 };
861 lane2: lane2 {
862 #phy-cells = <4>;
863 };
864 lane3: lane3 {
865 #phy-cells = <4>;
866 };
867 };
868
Michal Simek54b896f2015-10-30 15:39:18 +0100869 sata: ahci@fd0c0000 {
870 compatible = "ceva,ahci-1v84";
871 status = "disabled";
Michal Simek72b562a2016-02-11 07:19:06 +0100872 reg = <0x0 0xfd0c0000 0x0 0x2000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100873 interrupt-parent = <&gic>;
874 interrupts = <0 133 4>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800875 power-domains = <&pd_sata>;
Anurag Kumar Vulisha4e2aaef2017-07-04 20:03:42 +0530876 #stream-id-cells = <4>;
877 iommus = <&smmu 0x4c0>, <&smmu 0x4c1>,
878 <&smmu 0x4c2>, <&smmu 0x4c3>;
879 /* dma-coherent; */
Michal Simek54b896f2015-10-30 15:39:18 +0100880 };
881
882 sdhci0: sdhci@ff160000 {
Michal Simekba087532016-02-22 09:57:27 +0100883 u-boot,dm-pre-reloc;
Sai Krishna Potthuri02550fb2016-08-16 14:41:35 +0530884 compatible = "xlnx,zynqmp-8.9a", "arasan,sdhci-8.9a";
Michal Simek54b896f2015-10-30 15:39:18 +0100885 status = "disabled";
886 interrupt-parent = <&gic>;
887 interrupts = <0 48 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100888 reg = <0x0 0xff160000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100889 clock-names = "clk_xin", "clk_ahb";
Sai Krishna Potthuri02550fb2016-08-16 14:41:35 +0530890 xlnx,device_id = <0>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200891 #stream-id-cells = <1>;
892 iommus = <&smmu 0x870>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800893 power-domains = <&pd_sd0>;
Manish Narani61072012017-07-19 21:16:33 +0530894 nvmem-cells = <&soc_revision>;
895 nvmem-cell-names = "soc_revision";
Michal Simek54b896f2015-10-30 15:39:18 +0100896 };
897
898 sdhci1: sdhci@ff170000 {
Michal Simekba087532016-02-22 09:57:27 +0100899 u-boot,dm-pre-reloc;
Sai Krishna Potthuri02550fb2016-08-16 14:41:35 +0530900 compatible = "xlnx,zynqmp-8.9a", "arasan,sdhci-8.9a";
Michal Simek54b896f2015-10-30 15:39:18 +0100901 status = "disabled";
902 interrupt-parent = <&gic>;
903 interrupts = <0 49 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100904 reg = <0x0 0xff170000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100905 clock-names = "clk_xin", "clk_ahb";
Sai Krishna Potthuri02550fb2016-08-16 14:41:35 +0530906 xlnx,device_id = <1>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200907 #stream-id-cells = <1>;
908 iommus = <&smmu 0x871>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800909 power-domains = <&pd_sd1>;
Manish Narani61072012017-07-19 21:16:33 +0530910 nvmem-cells = <&soc_revision>;
911 nvmem-cell-names = "soc_revision";
Michal Simek54b896f2015-10-30 15:39:18 +0100912 };
913
Michal Simek6471f8e2017-11-02 11:51:59 +0100914 pinctrl0: pinctrl@ff180000 {
915 compatible = "xlnx,pinctrl-zynqmp";
916 status = "disabled";
917 reg = <0x0 0xff180000 0x0 0x1000>;
918 };
919
Michal Simek54b896f2015-10-30 15:39:18 +0100920 smmu: smmu@fd800000 {
921 compatible = "arm,mmu-500";
Michal Simek72b562a2016-02-11 07:19:06 +0100922 reg = <0x0 0xfd800000 0x0 0x20000>;
Michal Simek8db0faa2016-04-06 10:43:23 +0200923 #iommu-cells = <1>;
Naga Sureshkumar Relli033f87c2017-03-09 20:00:13 +0530924 status = "disabled";
Michal Simek54b896f2015-10-30 15:39:18 +0100925 #global-interrupts = <1>;
926 interrupt-parent = <&gic>;
Edgar E. Iglesiasf1880d82015-11-26 14:12:19 +0100927 interrupts = <0 155 4>,
928 <0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
929 <0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
930 <0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
931 <0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>;
Michal Simek54b896f2015-10-30 15:39:18 +0100932 };
933
934 spi0: spi@ff040000 {
935 compatible = "cdns,spi-r1p6";
936 status = "disabled";
937 interrupt-parent = <&gic>;
938 interrupts = <0 19 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100939 reg = <0x0 0xff040000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100940 clock-names = "ref_clk", "pclk";
941 #address-cells = <1>;
942 #size-cells = <0>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800943 power-domains = <&pd_spi0>;
Michal Simek54b896f2015-10-30 15:39:18 +0100944 };
945
946 spi1: spi@ff050000 {
947 compatible = "cdns,spi-r1p6";
948 status = "disabled";
949 interrupt-parent = <&gic>;
950 interrupts = <0 20 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100951 reg = <0x0 0xff050000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100952 clock-names = "ref_clk", "pclk";
953 #address-cells = <1>;
954 #size-cells = <0>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800955 power-domains = <&pd_spi1>;
Michal Simek54b896f2015-10-30 15:39:18 +0100956 };
957
958 ttc0: timer@ff110000 {
959 compatible = "cdns,ttc";
960 status = "disabled";
961 interrupt-parent = <&gic>;
962 interrupts = <0 36 4>, <0 37 4>, <0 38 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100963 reg = <0x0 0xff110000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100964 timer-width = <32>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800965 power-domains = <&pd_ttc0>;
Michal Simek54b896f2015-10-30 15:39:18 +0100966 };
967
968 ttc1: timer@ff120000 {
969 compatible = "cdns,ttc";
970 status = "disabled";
971 interrupt-parent = <&gic>;
972 interrupts = <0 39 4>, <0 40 4>, <0 41 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100973 reg = <0x0 0xff120000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100974 timer-width = <32>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800975 power-domains = <&pd_ttc1>;
Michal Simek54b896f2015-10-30 15:39:18 +0100976 };
977
978 ttc2: timer@ff130000 {
979 compatible = "cdns,ttc";
980 status = "disabled";
981 interrupt-parent = <&gic>;
982 interrupts = <0 42 4>, <0 43 4>, <0 44 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100983 reg = <0x0 0xff130000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100984 timer-width = <32>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800985 power-domains = <&pd_ttc2>;
Michal Simek54b896f2015-10-30 15:39:18 +0100986 };
987
988 ttc3: timer@ff140000 {
989 compatible = "cdns,ttc";
990 status = "disabled";
991 interrupt-parent = <&gic>;
992 interrupts = <0 45 4>, <0 46 4>, <0 47 4>;
Michal Simek72b562a2016-02-11 07:19:06 +0100993 reg = <0x0 0xff140000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +0100994 timer-width = <32>;
Soren Brinkmann40ef7de2016-01-11 15:34:42 -0800995 power-domains = <&pd_ttc3>;
Michal Simek54b896f2015-10-30 15:39:18 +0100996 };
997
998 uart0: serial@ff000000 {
Michal Simekba087532016-02-22 09:57:27 +0100999 u-boot,dm-pre-reloc;
Michal Simek8f0dc3e2015-11-27 13:22:58 +01001000 compatible = "cdns,uart-r1p12", "xlnx,xuartps";
Michal Simek54b896f2015-10-30 15:39:18 +01001001 status = "disabled";
1002 interrupt-parent = <&gic>;
1003 interrupts = <0 21 4>;
Michal Simek72b562a2016-02-11 07:19:06 +01001004 reg = <0x0 0xff000000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +01001005 clock-names = "uart_clk", "pclk";
Soren Brinkmann40ef7de2016-01-11 15:34:42 -08001006 power-domains = <&pd_uart0>;
Michal Simek54b896f2015-10-30 15:39:18 +01001007 };
1008
1009 uart1: serial@ff010000 {
Michal Simekba087532016-02-22 09:57:27 +01001010 u-boot,dm-pre-reloc;
Michal Simek8f0dc3e2015-11-27 13:22:58 +01001011 compatible = "cdns,uart-r1p12", "xlnx,xuartps";
Michal Simek54b896f2015-10-30 15:39:18 +01001012 status = "disabled";
1013 interrupt-parent = <&gic>;
1014 interrupts = <0 22 4>;
Michal Simek72b562a2016-02-11 07:19:06 +01001015 reg = <0x0 0xff010000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +01001016 clock-names = "uart_clk", "pclk";
Soren Brinkmann40ef7de2016-01-11 15:34:42 -08001017 power-domains = <&pd_uart1>;
Michal Simek54b896f2015-10-30 15:39:18 +01001018 };
1019
Manish Narani047096e2017-03-27 17:47:00 +05301020 usb0: usb0@ff9d0000 {
Michal Simek13111a12016-04-07 15:06:07 +02001021 #address-cells = <2>;
Michal Simek72b562a2016-02-11 07:19:06 +01001022 #size-cells = <2>;
Michal Simek54b896f2015-10-30 15:39:18 +01001023 status = "disabled";
Michal Simek13111a12016-04-07 15:06:07 +02001024 compatible = "xlnx,zynqmp-dwc3";
Manish Narani047096e2017-03-27 17:47:00 +05301025 reg = <0x0 0xff9d0000 0x0 0x100>;
Michal Simek13111a12016-04-07 15:06:07 +02001026 clock-names = "bus_clk", "ref_clk";
Soren Brinkmann40ef7de2016-01-11 15:34:42 -08001027 power-domains = <&pd_usb0>;
Michal Simek13111a12016-04-07 15:06:07 +02001028 ranges;
Anurag Kumar Vulisha042323c2017-03-02 14:40:51 +05301029 nvmem-cells = <&soc_revision>;
1030 nvmem-cell-names = "soc_revision";
Michal Simek13111a12016-04-07 15:06:07 +02001031
1032 dwc3_0: dwc3@fe200000 {
1033 compatible = "snps,dwc3";
1034 status = "disabled";
Michal Simek72b562a2016-02-11 07:19:06 +01001035 reg = <0x0 0xfe200000 0x0 0x40000>;
Michal Simek13111a12016-04-07 15:06:07 +02001036 interrupt-parent = <&gic>;
Manish Narani97143bd2017-01-18 17:34:48 +05301037 interrupts = <0 65 4>, <0 69 4>;
Anurag Kumar Vulisha4bf99f82017-06-20 16:25:16 +05301038 #stream-id-cells = <1>;
1039 iommus = <&smmu 0x860>;
Anurag Kumar Vulisha011bd7d2017-03-10 19:18:17 +05301040 snps,quirk-frame-length-adjustment = <0x20>;
Michal Simek13111a12016-04-07 15:06:07 +02001041 snps,refclk_fladj;
Manish Narani047096e2017-03-27 17:47:00 +05301042 /* dma-coherent; */
Michal Simek13111a12016-04-07 15:06:07 +02001043 };
Michal Simek54b896f2015-10-30 15:39:18 +01001044 };
1045
Manish Narani047096e2017-03-27 17:47:00 +05301046 usb1: usb1@ff9e0000 {
Michal Simek13111a12016-04-07 15:06:07 +02001047 #address-cells = <2>;
Michal Simek72b562a2016-02-11 07:19:06 +01001048 #size-cells = <2>;
Michal Simek54b896f2015-10-30 15:39:18 +01001049 status = "disabled";
Michal Simek13111a12016-04-07 15:06:07 +02001050 compatible = "xlnx,zynqmp-dwc3";
Manish Narani047096e2017-03-27 17:47:00 +05301051 reg = <0x0 0xff9e0000 0x0 0x100>;
Michal Simek13111a12016-04-07 15:06:07 +02001052 clock-names = "bus_clk", "ref_clk";
Soren Brinkmann40ef7de2016-01-11 15:34:42 -08001053 power-domains = <&pd_usb1>;
Michal Simek13111a12016-04-07 15:06:07 +02001054 ranges;
Anurag Kumar Vulisha042323c2017-03-02 14:40:51 +05301055 nvmem-cells = <&soc_revision>;
1056 nvmem-cell-names = "soc_revision";
Michal Simek13111a12016-04-07 15:06:07 +02001057
1058 dwc3_1: dwc3@fe300000 {
1059 compatible = "snps,dwc3";
1060 status = "disabled";
Michal Simek72b562a2016-02-11 07:19:06 +01001061 reg = <0x0 0xfe300000 0x0 0x40000>;
Michal Simek13111a12016-04-07 15:06:07 +02001062 interrupt-parent = <&gic>;
Manish Narani97143bd2017-01-18 17:34:48 +05301063 interrupts = <0 70 4>, <0 74 4>;
Anurag Kumar Vulisha4bf99f82017-06-20 16:25:16 +05301064 #stream-id-cells = <1>;
1065 iommus = <&smmu 0x861>;
Anurag Kumar Vulisha011bd7d2017-03-10 19:18:17 +05301066 snps,quirk-frame-length-adjustment = <0x20>;
Michal Simek13111a12016-04-07 15:06:07 +02001067 snps,refclk_fladj;
Manish Narani047096e2017-03-27 17:47:00 +05301068 /* dma-coherent; */
Michal Simek13111a12016-04-07 15:06:07 +02001069 };
Michal Simek54b896f2015-10-30 15:39:18 +01001070 };
1071
1072 watchdog0: watchdog@fd4d0000 {
1073 compatible = "cdns,wdt-r1p2";
1074 status = "disabled";
1075 interrupt-parent = <&gic>;
Punnaiah Choudary Kallurid67bab62015-11-04 12:34:17 +05301076 interrupts = <0 113 1>;
Michal Simek72b562a2016-02-11 07:19:06 +01001077 reg = <0x0 0xfd4d0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +01001078 timeout-sec = <10>;
1079 };
1080
Michal Simek1bb4be32017-11-02 12:04:43 +01001081 xilinx_ams: ams@ffa50000 {
1082 compatible = "xlnx,zynqmp-ams";
1083 status = "disabled";
1084 interrupt-parent = <&gic>;
1085 interrupts = <0 56 4>;
1086 interrupt-names = "ams-irq";
1087 reg = <0x0 0xffa50000 0x0 0x800>;
1088 reg-names = "ams-base";
1089 #address-cells = <2>;
1090 #size-cells = <2>;
1091 #io-channel-cells = <1>;
1092 ranges;
1093
1094 ams_ps: ams_ps@ffa50800 {
1095 compatible = "xlnx,zynqmp-ams-ps";
1096 status = "disabled";
1097 reg = <0x0 0xffa50800 0x0 0x400>;
1098 };
1099
1100 ams_pl: ams_pl@ffa50c00 {
1101 compatible = "xlnx,zynqmp-ams-pl";
1102 status = "disabled";
1103 reg = <0x0 0xffa50c00 0x0 0x400>;
1104 };
1105 };
1106
Hyun Kwon4fb90b3e2015-11-23 17:12:54 -08001107 xlnx_dp: dp@fd4a0000 {
Michal Simek54b896f2015-10-30 15:39:18 +01001108 compatible = "xlnx,v-dp";
1109 status = "disabled";
Michal Simek72b562a2016-02-11 07:19:06 +01001110 reg = <0x0 0xfd4a0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +01001111 interrupts = <0 119 4>;
1112 interrupt-parent = <&gic>;
1113 clock-names = "aclk", "aud_clk";
Jyotheeswar Reddy Mutthareddyvari2b3ad8f2017-01-02 14:34:51 +05301114 power-domains = <&pd_dp>;
Michal Simek54b896f2015-10-30 15:39:18 +01001115 xlnx,dp-version = "v1.2";
1116 xlnx,max-lanes = <2>;
1117 xlnx,max-link-rate = <540000>;
1118 xlnx,max-bpc = <16>;
1119 xlnx,enable-ycrcb;
1120 xlnx,colormetry = "rgb";
1121 xlnx,bpc = <8>;
1122 xlnx,audio-chan = <2>;
1123 xlnx,dp-sub = <&xlnx_dp_sub>;
Hyun Kwon7e58f3b2015-11-23 17:12:55 -08001124 xlnx,max-pclock-frequency = <300000>;
Michal Simek54b896f2015-10-30 15:39:18 +01001125 };
1126
Hyun Kwon4fb90b3e2015-11-23 17:12:54 -08001127 xlnx_dp_sub: dp_sub@fd4aa000 {
Michal Simek54b896f2015-10-30 15:39:18 +01001128 compatible = "xlnx,dp-sub";
1129 status = "disabled";
Michal Simek72b562a2016-02-11 07:19:06 +01001130 reg = <0x0 0xfd4aa000 0x0 0x1000>,
1131 <0x0 0xfd4ab000 0x0 0x1000>,
1132 <0x0 0xfd4ac000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +01001133 reg-names = "blend", "av_buf", "aud";
1134 xlnx,output-fmt = "rgb";
Hyun Kwon7e58f3b2015-11-23 17:12:55 -08001135 xlnx,vid-fmt = "yuyv";
1136 xlnx,gfx-fmt = "rgb565";
Jyotheeswar Reddy Mutthareddyvari2b3ad8f2017-01-02 14:34:51 +05301137 power-domains = <&pd_dp>;
Michal Simek54b896f2015-10-30 15:39:18 +01001138 };
1139
1140 xlnx_dpdma: dma@fd4c0000 {
1141 compatible = "xlnx,dpdma";
1142 status = "disabled";
Michal Simek72b562a2016-02-11 07:19:06 +01001143 reg = <0x0 0xfd4c0000 0x0 0x1000>;
Michal Simek54b896f2015-10-30 15:39:18 +01001144 interrupts = <0 122 4>;
1145 interrupt-parent = <&gic>;
1146 clock-names = "axi_clk";
Jyotheeswar Reddy Mutthareddyvari2b3ad8f2017-01-02 14:34:51 +05301147 power-domains = <&pd_dp>;
Michal Simek54b896f2015-10-30 15:39:18 +01001148 dma-channels = <6>;
1149 #dma-cells = <1>;
Michal Simek79c1cbf2016-11-11 13:21:04 +01001150 dma-video0channel {
Michal Simek54b896f2015-10-30 15:39:18 +01001151 compatible = "xlnx,video0";
1152 };
Michal Simek79c1cbf2016-11-11 13:21:04 +01001153 dma-video1channel {
Michal Simek54b896f2015-10-30 15:39:18 +01001154 compatible = "xlnx,video1";
1155 };
Michal Simek79c1cbf2016-11-11 13:21:04 +01001156 dma-video2channel {
Michal Simek54b896f2015-10-30 15:39:18 +01001157 compatible = "xlnx,video2";
1158 };
Michal Simek79c1cbf2016-11-11 13:21:04 +01001159 dma-graphicschannel {
Michal Simek54b896f2015-10-30 15:39:18 +01001160 compatible = "xlnx,graphics";
1161 };
Michal Simek79c1cbf2016-11-11 13:21:04 +01001162 dma-audio0channel {
Michal Simek54b896f2015-10-30 15:39:18 +01001163 compatible = "xlnx,audio0";
1164 };
Michal Simek79c1cbf2016-11-11 13:21:04 +01001165 dma-audio1channel {
Michal Simek54b896f2015-10-30 15:39:18 +01001166 compatible = "xlnx,audio1";
1167 };
1168 };
1169 };
1170};