blob: 8a885ae647b7e459d8bce9aef7eb0bc33ab5d670 [file] [log] [blame]
Michal Simekb9c74682018-01-17 16:07:11 +01001// SPDX-License-Identifier: GPL-2.0+
Michal Simek5d1b79d2015-03-09 09:41:04 +01002/*
3 * dts file for Xilinx ZynqMP
4 *
5 * (C) Copyright 2014 - 2015, Xilinx, Inc.
6 *
7 * Michal Simek <michal.simek@xilinx.com>
8 *
9 * 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.
13 */
14
15/ {
16 compatible = "xlnx,zynqmp";
17 #address-cells = <2>;
Michal Simek7393fd82016-02-11 13:26:28 +010018 #size-cells = <2>;
Michal Simek5d1b79d2015-03-09 09:41:04 +010019
20 cpus {
21 #address-cells = <1>;
22 #size-cells = <0>;
23
Michal Simek400e188f2017-02-06 10:09:53 +010024 cpu0: cpu@0 {
Michal Simek5d1b79d2015-03-09 09:41:04 +010025 compatible = "arm,cortex-a53", "arm,armv8";
26 device_type = "cpu";
27 enable-method = "psci";
Shubhrajyoti Dattae31b7bb2017-02-06 11:51:00 +053028 operating-points-v2 = <&cpu_opp_table>;
Michal Simek5d1b79d2015-03-09 09:41:04 +010029 reg = <0x0>;
Stefan Krsmanovic1e4e25c2016-10-21 12:44:56 +020030 cpu-idle-states = <&CPU_SLEEP_0>;
Michal Simek5d1b79d2015-03-09 09:41:04 +010031 };
32
Michal Simek400e188f2017-02-06 10:09:53 +010033 cpu1: cpu@1 {
Michal Simek5d1b79d2015-03-09 09:41:04 +010034 compatible = "arm,cortex-a53", "arm,armv8";
35 device_type = "cpu";
36 enable-method = "psci";
37 reg = <0x1>;
Shubhrajyoti Dattae31b7bb2017-02-06 11:51:00 +053038 operating-points-v2 = <&cpu_opp_table>;
Stefan Krsmanovic1e4e25c2016-10-21 12:44:56 +020039 cpu-idle-states = <&CPU_SLEEP_0>;
Michal Simek5d1b79d2015-03-09 09:41:04 +010040 };
41
Michal Simek400e188f2017-02-06 10:09:53 +010042 cpu2: cpu@2 {
Michal Simek5d1b79d2015-03-09 09:41:04 +010043 compatible = "arm,cortex-a53", "arm,armv8";
44 device_type = "cpu";
45 enable-method = "psci";
46 reg = <0x2>;
Shubhrajyoti Dattae31b7bb2017-02-06 11:51:00 +053047 operating-points-v2 = <&cpu_opp_table>;
Stefan Krsmanovic1e4e25c2016-10-21 12:44:56 +020048 cpu-idle-states = <&CPU_SLEEP_0>;
Michal Simek5d1b79d2015-03-09 09:41:04 +010049 };
50
Michal Simek400e188f2017-02-06 10:09:53 +010051 cpu3: cpu@3 {
Michal Simek5d1b79d2015-03-09 09:41:04 +010052 compatible = "arm,cortex-a53", "arm,armv8";
53 device_type = "cpu";
54 enable-method = "psci";
55 reg = <0x3>;
Shubhrajyoti Dattae31b7bb2017-02-06 11:51:00 +053056 operating-points-v2 = <&cpu_opp_table>;
Stefan Krsmanovic1e4e25c2016-10-21 12:44:56 +020057 cpu-idle-states = <&CPU_SLEEP_0>;
58 };
59
60 idle-states {
Amit Kucheriae9880242018-08-23 14:23:29 +053061 entry-method = "psci";
Stefan Krsmanovic1e4e25c2016-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>;
69 min-residency-us = <10000>;
70 };
Michal Simek5d1b79d2015-03-09 09:41:04 +010071 };
72 };
73
Michal Simek702155b2018-11-08 10:06:53 +010074 cpu_opp_table: cpu-opp-table {
Shubhrajyoti Dattae31b7bb2017-02-06 11:51:00 +053075 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 Simek17e76f952016-09-14 13:33:13 +020099 dcc: dcc {
100 compatible = "arm,dcc";
101 status = "disabled";
102 };
103
Michal Simek5d1b79d2015-03-09 09:41:04 +0100104 pmu {
105 compatible = "arm,armv8-pmuv3";
Michal Simek886e7dd2016-02-02 13:10:25 +0100106 interrupt-parent = <&gic>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100107 interrupts = <0 143 4>,
108 <0 144 4>,
109 <0 145 4>,
110 <0 146 4>;
111 };
112
113 psci {
114 compatible = "arm,psci-0.2";
115 method = "smc";
116 };
117
118 timer {
119 compatible = "arm,armv8-timer";
120 interrupt-parent = <&gic>;
Marc Zyngierf2a89d32016-08-01 10:54:16 +0100121 interrupts = <1 13 0xf08>,
122 <1 14 0xf08>,
123 <1 11 0xf08>,
124 <1 10 0xf08>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100125 };
126
Michal Simek702155b2018-11-08 10:06:53 +0100127 amba_apu: amba-apu@0 {
Michal Simek5d1b79d2015-03-09 09:41:04 +0100128 compatible = "simple-bus";
129 #address-cells = <2>;
130 #size-cells = <1>;
Michal Simek7393fd82016-02-11 13:26:28 +0100131 ranges = <0 0 0 0 0xffffffff>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100132
133 gic: interrupt-controller@f9010000 {
134 compatible = "arm,gic-400", "arm,cortex-a15-gic";
135 #interrupt-cells = <3>;
136 reg = <0x0 0xf9010000 0x10000>,
Alexander Grafe753dc02016-05-12 13:44:01 +0200137 <0x0 0xf9020000 0x20000>,
Michal Simek5d1b79d2015-03-09 09:41:04 +0100138 <0x0 0xf9040000 0x20000>,
Alexander Grafe753dc02016-05-12 13:44:01 +0200139 <0x0 0xf9060000 0x20000>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100140 interrupt-controller;
141 interrupt-parent = <&gic>;
142 interrupts = <1 9 0xf04>;
143 };
144 };
145
Michal Simek5087bcc2015-10-20 16:36:33 +0200146 amba: amba {
Michal Simek5d1b79d2015-03-09 09:41:04 +0100147 compatible = "simple-bus";
148 #address-cells = <2>;
Michal Simek7393fd82016-02-11 13:26:28 +0100149 #size-cells = <2>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100150 ranges;
151
Michal Simek3a8691f2015-07-27 11:15:38 +0200152 can0: can@ff060000 {
153 compatible = "xlnx,zynq-can-1.0";
154 status = "disabled";
Michal Simek3a8691f2015-07-27 11:15:38 +0200155 clock-names = "can_clk", "pclk";
Michal Simek7393fd82016-02-11 13:26:28 +0100156 reg = <0x0 0xff060000 0x0 0x1000>;
Michal Simek3a8691f2015-07-27 11:15:38 +0200157 interrupts = <0 23 4>;
158 interrupt-parent = <&gic>;
159 tx-fifo-depth = <0x40>;
160 rx-fifo-depth = <0x40>;
161 };
162
163 can1: can@ff070000 {
164 compatible = "xlnx,zynq-can-1.0";
165 status = "disabled";
Michal Simek3a8691f2015-07-27 11:15:38 +0200166 clock-names = "can_clk", "pclk";
Michal Simek7393fd82016-02-11 13:26:28 +0100167 reg = <0x0 0xff070000 0x0 0x1000>;
Michal Simek3a8691f2015-07-27 11:15:38 +0200168 interrupts = <0 24 4>;
169 interrupt-parent = <&gic>;
170 tx-fifo-depth = <0x40>;
171 rx-fifo-depth = <0x40>;
172 };
173
Michal Simek8c50b1e2015-11-26 11:21:25 +0100174 cci: cci@fd6e0000 {
175 compatible = "arm,cci-400";
176 reg = <0x0 0xfd6e0000 0x0 0x9000>;
177 ranges = <0x0 0x0 0xfd6e0000 0x10000>;
178 #address-cells = <1>;
179 #size-cells = <1>;
180
181 pmu@9000 {
182 compatible = "arm,cci-400-pmu,r1";
183 reg = <0x9000 0x5000>;
184 interrupt-parent = <&gic>;
185 interrupts = <0 123 4>,
186 <0 123 4>,
187 <0 123 4>,
188 <0 123 4>,
189 <0 123 4>;
190 };
191 };
192
Michal Simek932bd0d2015-10-09 14:46:08 +0200193 /* GDMA */
194 fpd_dma_chan1: dma@fd500000 {
195 status = "disabled";
196 compatible = "xlnx,zynqmp-dma-1.0";
197 reg = <0x0 0xfd500000 0x0 0x1000>;
198 interrupt-parent = <&gic>;
199 interrupts = <0 124 4>;
200 clock-names = "clk_main", "clk_apb";
201 xlnx,bus-width = <128>;
202 };
203
204 fpd_dma_chan2: dma@fd510000 {
205 status = "disabled";
206 compatible = "xlnx,zynqmp-dma-1.0";
207 reg = <0x0 0xfd510000 0x0 0x1000>;
208 interrupt-parent = <&gic>;
209 interrupts = <0 125 4>;
210 clock-names = "clk_main", "clk_apb";
211 xlnx,bus-width = <128>;
212 };
213
214 fpd_dma_chan3: dma@fd520000 {
215 status = "disabled";
216 compatible = "xlnx,zynqmp-dma-1.0";
217 reg = <0x0 0xfd520000 0x0 0x1000>;
218 interrupt-parent = <&gic>;
219 interrupts = <0 126 4>;
220 clock-names = "clk_main", "clk_apb";
221 xlnx,bus-width = <128>;
222 };
223
224 fpd_dma_chan4: dma@fd530000 {
225 status = "disabled";
226 compatible = "xlnx,zynqmp-dma-1.0";
227 reg = <0x0 0xfd530000 0x0 0x1000>;
228 interrupt-parent = <&gic>;
229 interrupts = <0 127 4>;
230 clock-names = "clk_main", "clk_apb";
231 xlnx,bus-width = <128>;
232 };
233
234 fpd_dma_chan5: dma@fd540000 {
235 status = "disabled";
236 compatible = "xlnx,zynqmp-dma-1.0";
237 reg = <0x0 0xfd540000 0x0 0x1000>;
238 interrupt-parent = <&gic>;
239 interrupts = <0 128 4>;
240 clock-names = "clk_main", "clk_apb";
241 xlnx,bus-width = <128>;
242 };
243
244 fpd_dma_chan6: dma@fd550000 {
245 status = "disabled";
246 compatible = "xlnx,zynqmp-dma-1.0";
247 reg = <0x0 0xfd550000 0x0 0x1000>;
248 interrupt-parent = <&gic>;
249 interrupts = <0 129 4>;
250 clock-names = "clk_main", "clk_apb";
251 xlnx,bus-width = <128>;
252 };
253
254 fpd_dma_chan7: dma@fd560000 {
255 status = "disabled";
256 compatible = "xlnx,zynqmp-dma-1.0";
257 reg = <0x0 0xfd560000 0x0 0x1000>;
258 interrupt-parent = <&gic>;
259 interrupts = <0 130 4>;
260 clock-names = "clk_main", "clk_apb";
261 xlnx,bus-width = <128>;
262 };
263
264 fpd_dma_chan8: dma@fd570000 {
265 status = "disabled";
266 compatible = "xlnx,zynqmp-dma-1.0";
267 reg = <0x0 0xfd570000 0x0 0x1000>;
268 interrupt-parent = <&gic>;
269 interrupts = <0 131 4>;
270 clock-names = "clk_main", "clk_apb";
271 xlnx,bus-width = <128>;
272 };
273
274 /* LPDDMA default allows only secured access. inorder to enable
275 * These dma channels, Users should ensure that these dma
276 * Channels are allowed for non secure access.
277 */
278 lpd_dma_chan1: dma@ffa80000 {
279 status = "disabled";
280 compatible = "xlnx,zynqmp-dma-1.0";
281 reg = <0x0 0xffa80000 0x0 0x1000>;
282 interrupt-parent = <&gic>;
283 interrupts = <0 77 4>;
284 clock-names = "clk_main", "clk_apb";
285 xlnx,bus-width = <64>;
286 };
287
288 lpd_dma_chan2: dma@ffa90000 {
289 status = "disabled";
290 compatible = "xlnx,zynqmp-dma-1.0";
291 reg = <0x0 0xffa90000 0x0 0x1000>;
292 interrupt-parent = <&gic>;
293 interrupts = <0 78 4>;
294 clock-names = "clk_main", "clk_apb";
295 xlnx,bus-width = <64>;
296 };
297
298 lpd_dma_chan3: dma@ffaa0000 {
299 status = "disabled";
300 compatible = "xlnx,zynqmp-dma-1.0";
301 reg = <0x0 0xffaa0000 0x0 0x1000>;
302 interrupt-parent = <&gic>;
303 interrupts = <0 79 4>;
304 clock-names = "clk_main", "clk_apb";
305 xlnx,bus-width = <64>;
306 };
307
308 lpd_dma_chan4: dma@ffab0000 {
309 status = "disabled";
310 compatible = "xlnx,zynqmp-dma-1.0";
311 reg = <0x0 0xffab0000 0x0 0x1000>;
312 interrupt-parent = <&gic>;
313 interrupts = <0 80 4>;
314 clock-names = "clk_main", "clk_apb";
315 xlnx,bus-width = <64>;
316 };
317
318 lpd_dma_chan5: dma@ffac0000 {
319 status = "disabled";
320 compatible = "xlnx,zynqmp-dma-1.0";
321 reg = <0x0 0xffac0000 0x0 0x1000>;
322 interrupt-parent = <&gic>;
323 interrupts = <0 81 4>;
324 clock-names = "clk_main", "clk_apb";
325 xlnx,bus-width = <64>;
326 };
327
328 lpd_dma_chan6: dma@ffad0000 {
329 status = "disabled";
330 compatible = "xlnx,zynqmp-dma-1.0";
331 reg = <0x0 0xffad0000 0x0 0x1000>;
332 interrupt-parent = <&gic>;
333 interrupts = <0 82 4>;
334 clock-names = "clk_main", "clk_apb";
335 xlnx,bus-width = <64>;
336 };
337
338 lpd_dma_chan7: dma@ffae0000 {
339 status = "disabled";
340 compatible = "xlnx,zynqmp-dma-1.0";
341 reg = <0x0 0xffae0000 0x0 0x1000>;
342 interrupt-parent = <&gic>;
343 interrupts = <0 83 4>;
344 clock-names = "clk_main", "clk_apb";
345 xlnx,bus-width = <64>;
346 };
347
348 lpd_dma_chan8: dma@ffaf0000 {
349 status = "disabled";
350 compatible = "xlnx,zynqmp-dma-1.0";
351 reg = <0x0 0xffaf0000 0x0 0x1000>;
352 interrupt-parent = <&gic>;
353 interrupts = <0 84 4>;
354 clock-names = "clk_main", "clk_apb";
355 xlnx,bus-width = <64>;
356 };
357
Michal Simek5d1b79d2015-03-09 09:41:04 +0100358 gem0: ethernet@ff0b0000 {
Michal Simek33af5092018-01-17 15:57:18 +0100359 compatible = "cdns,zynqmp-gem", "cdns,gem";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100360 status = "disabled";
361 interrupt-parent = <&gic>;
362 interrupts = <0 57 4>, <0 57 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100363 reg = <0x0 0xff0b0000 0x0 0x1000>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100364 clock-names = "pclk", "hclk", "tx_clk";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100365 #address-cells = <1>;
366 #size-cells = <0>;
367 };
368
369 gem1: ethernet@ff0c0000 {
Michal Simek33af5092018-01-17 15:57:18 +0100370 compatible = "cdns,zynqmp-gem", "cdns,gem";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100371 status = "disabled";
372 interrupt-parent = <&gic>;
373 interrupts = <0 59 4>, <0 59 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100374 reg = <0x0 0xff0c0000 0x0 0x1000>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100375 clock-names = "pclk", "hclk", "tx_clk";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100376 #address-cells = <1>;
377 #size-cells = <0>;
378 };
379
380 gem2: ethernet@ff0d0000 {
Michal Simek33af5092018-01-17 15:57:18 +0100381 compatible = "cdns,zynqmp-gem", "cdns,gem";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100382 status = "disabled";
383 interrupt-parent = <&gic>;
384 interrupts = <0 61 4>, <0 61 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100385 reg = <0x0 0xff0d0000 0x0 0x1000>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100386 clock-names = "pclk", "hclk", "tx_clk";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100387 #address-cells = <1>;
388 #size-cells = <0>;
389 };
390
391 gem3: ethernet@ff0e0000 {
Michal Simek33af5092018-01-17 15:57:18 +0100392 compatible = "cdns,zynqmp-gem", "cdns,gem";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100393 status = "disabled";
394 interrupt-parent = <&gic>;
395 interrupts = <0 63 4>, <0 63 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100396 reg = <0x0 0xff0e0000 0x0 0x1000>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100397 clock-names = "pclk", "hclk", "tx_clk";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100398 #address-cells = <1>;
399 #size-cells = <0>;
400 };
401
Michal Simek72e5df42016-02-11 13:08:44 +0100402 gpio: gpio@ff0a0000 {
403 compatible = "xlnx,zynqmp-gpio-1.0";
404 status = "disabled";
405 #gpio-cells = <0x2>;
Michal Simek72e5df42016-02-11 13:08:44 +0100406 interrupt-parent = <&gic>;
407 interrupts = <0 16 4>;
408 interrupt-controller;
409 #interrupt-cells = <2>;
Michal Simek7393fd82016-02-11 13:26:28 +0100410 reg = <0x0 0xff0a0000 0x0 0x1000>;
Michal Simek72e5df42016-02-11 13:08:44 +0100411 };
412
Michal Simek5d1b79d2015-03-09 09:41:04 +0100413 i2c0: i2c@ff020000 {
Michal Simek1dd60322020-08-24 10:59:14 +0200414 compatible = "cdns,i2c-r1p14";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100415 status = "disabled";
416 interrupt-parent = <&gic>;
417 interrupts = <0 17 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100418 reg = <0x0 0xff020000 0x0 0x1000>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100419 #address-cells = <1>;
420 #size-cells = <0>;
421 };
422
423 i2c1: i2c@ff030000 {
Michal Simek1dd60322020-08-24 10:59:14 +0200424 compatible = "cdns,i2c-r1p14";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100425 status = "disabled";
426 interrupt-parent = <&gic>;
427 interrupts = <0 18 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100428 reg = <0x0 0xff030000 0x0 0x1000>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100429 #address-cells = <1>;
430 #size-cells = <0>;
431 };
432
Michal Simek78b83b82016-08-09 15:13:02 +0200433 pcie: pcie@fd0e0000 {
434 compatible = "xlnx,nwl-pcie-2.11";
435 status = "disabled";
436 #address-cells = <3>;
437 #size-cells = <2>;
438 #interrupt-cells = <1>;
439 msi-controller;
440 device_type = "pci";
441 interrupt-parent = <&gic>;
442 interrupts = <0 118 4>,
Michal Simek0f780ca2018-01-17 16:02:26 +0100443 <0 117 4>,
444 <0 116 4>,
445 <0 115 4>, /* MSI_1 [63...32] */
446 <0 114 4>; /* MSI_0 [31...0] */
Michal Simek78b83b82016-08-09 15:13:02 +0200447 interrupt-names = "misc", "dummy", "intx",
448 "msi1", "msi0";
449 msi-parent = <&pcie>;
450 reg = <0x0 0xfd0e0000 0x0 0x1000>,
451 <0x0 0xfd480000 0x0 0x1000>,
452 <0x80 0x00000000 0x0 0x1000000>;
453 reg-names = "breg", "pcireg", "cfg";
Bharat Kumar Gogada4a6514d2016-08-02 20:34:13 +0530454 ranges = <0x02000000 0x00000000 0xe0000000 0x00000000 0xe0000000 0x00000000 0x10000000 /* non-prefetchable memory */
455 0x43000000 0x00000006 0x00000000 0x00000006 0x00000000 0x00000002 0x00000000>;/* prefetchable memory */
Rob Herringd15c56c2017-03-21 21:03:13 -0500456 bus-range = <0x00 0xff>;
Michal Simek78b83b82016-08-09 15:13:02 +0200457 interrupt-map-mask = <0x0 0x0 0x0 0x7>;
458 interrupt-map = <0x0 0x0 0x0 0x1 &pcie_intc 0x1>,
459 <0x0 0x0 0x0 0x2 &pcie_intc 0x2>,
460 <0x0 0x0 0x0 0x3 &pcie_intc 0x3>,
461 <0x0 0x0 0x0 0x4 &pcie_intc 0x4>;
462 pcie_intc: legacy-interrupt-controller {
463 interrupt-controller;
464 #address-cells = <0>;
465 #interrupt-cells = <1>;
466 };
467 };
468
Michal Simek7fb78202015-10-09 14:44:50 +0200469 rtc: rtc@ffa60000 {
470 compatible = "xlnx,zynqmp-rtc";
471 status = "disabled";
472 reg = <0x0 0xffa60000 0x0 0x100>;
473 interrupt-parent = <&gic>;
474 interrupts = <0 26 4>, <0 27 4>;
475 interrupt-names = "alarm", "sec";
476 calibration = <0x8000>;
477 };
478
Suneel Garapati8fae4422015-06-10 15:46:56 +0530479 sata: ahci@fd0c0000 {
480 compatible = "ceva,ahci-1v84";
481 status = "disabled";
Michal Simek7393fd82016-02-11 13:26:28 +0100482 reg = <0x0 0xfd0c0000 0x0 0x2000>;
Suneel Garapati8fae4422015-06-10 15:46:56 +0530483 interrupt-parent = <&gic>;
484 interrupts = <0 133 4>;
Suneel Garapati8fae4422015-06-10 15:46:56 +0530485 };
486
Michal Simek5d1b79d2015-03-09 09:41:04 +0100487 sdhci0: sdhci@ff160000 {
488 compatible = "arasan,sdhci-8.9a";
489 status = "disabled";
490 interrupt-parent = <&gic>;
491 interrupts = <0 48 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100492 reg = <0x0 0xff160000 0x0 0x1000>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100493 clock-names = "clk_xin", "clk_ahb";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100494 };
495
496 sdhci1: sdhci@ff170000 {
497 compatible = "arasan,sdhci-8.9a";
498 status = "disabled";
499 interrupt-parent = <&gic>;
500 interrupts = <0 49 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100501 reg = <0x0 0xff170000 0x0 0x1000>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100502 clock-names = "clk_xin", "clk_ahb";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100503 };
504
Michal Simekff92e362015-07-27 11:18:04 +0200505 smmu: smmu@fd800000 {
506 compatible = "arm,mmu-500";
Michal Simek7393fd82016-02-11 13:26:28 +0100507 reg = <0x0 0xfd800000 0x0 0x20000>;
Naga Sureshkumar Relli2f9ed192017-03-09 20:00:13 +0530508 status = "disabled";
Michal Simekff92e362015-07-27 11:18:04 +0200509 #global-interrupts = <1>;
510 interrupt-parent = <&gic>;
Edgar E. Iglesiase199f2c2015-11-26 14:12:19 +0100511 interrupts = <0 155 4>,
512 <0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
513 <0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
514 <0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
515 <0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>;
Michal Simekff92e362015-07-27 11:18:04 +0200516 };
517
Michal Simekf49310d2015-07-27 16:13:34 +0200518 spi0: spi@ff040000 {
519 compatible = "cdns,spi-r1p6";
520 status = "disabled";
521 interrupt-parent = <&gic>;
522 interrupts = <0 19 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100523 reg = <0x0 0xff040000 0x0 0x1000>;
Michal Simekf49310d2015-07-27 16:13:34 +0200524 clock-names = "ref_clk", "pclk";
Michal Simekf49310d2015-07-27 16:13:34 +0200525 #address-cells = <1>;
526 #size-cells = <0>;
527 };
528
529 spi1: spi@ff050000 {
530 compatible = "cdns,spi-r1p6";
531 status = "disabled";
532 interrupt-parent = <&gic>;
533 interrupts = <0 20 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100534 reg = <0x0 0xff050000 0x0 0x1000>;
Michal Simekf49310d2015-07-27 16:13:34 +0200535 clock-names = "ref_clk", "pclk";
Michal Simekf49310d2015-07-27 16:13:34 +0200536 #address-cells = <1>;
537 #size-cells = <0>;
538 };
539
Michal Simek8fd7a772015-07-27 16:09:29 +0200540 ttc0: timer@ff110000 {
541 compatible = "cdns,ttc";
542 status = "disabled";
543 interrupt-parent = <&gic>;
544 interrupts = <0 36 4>, <0 37 4>, <0 38 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100545 reg = <0x0 0xff110000 0x0 0x1000>;
Michal Simek8fd7a772015-07-27 16:09:29 +0200546 timer-width = <32>;
547 };
548
549 ttc1: timer@ff120000 {
550 compatible = "cdns,ttc";
551 status = "disabled";
552 interrupt-parent = <&gic>;
553 interrupts = <0 39 4>, <0 40 4>, <0 41 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100554 reg = <0x0 0xff120000 0x0 0x1000>;
Michal Simek8fd7a772015-07-27 16:09:29 +0200555 timer-width = <32>;
556 };
557
558 ttc2: timer@ff130000 {
559 compatible = "cdns,ttc";
560 status = "disabled";
561 interrupt-parent = <&gic>;
562 interrupts = <0 42 4>, <0 43 4>, <0 44 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100563 reg = <0x0 0xff130000 0x0 0x1000>;
Michal Simek8fd7a772015-07-27 16:09:29 +0200564 timer-width = <32>;
565 };
566
567 ttc3: timer@ff140000 {
568 compatible = "cdns,ttc";
569 status = "disabled";
570 interrupt-parent = <&gic>;
571 interrupts = <0 45 4>, <0 46 4>, <0 47 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100572 reg = <0x0 0xff140000 0x0 0x1000>;
Michal Simek8fd7a772015-07-27 16:09:29 +0200573 timer-width = <32>;
574 };
575
576 uart0: serial@ff000000 {
Michal Simek27af3992015-11-27 13:22:58 +0100577 compatible = "cdns,uart-r1p12", "xlnx,xuartps";
Michal Simek8fd7a772015-07-27 16:09:29 +0200578 status = "disabled";
579 interrupt-parent = <&gic>;
580 interrupts = <0 21 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100581 reg = <0x0 0xff000000 0x0 0x1000>;
Michal Simek8fd7a772015-07-27 16:09:29 +0200582 clock-names = "uart_clk", "pclk";
Michal Simek8fd7a772015-07-27 16:09:29 +0200583 };
584
585 uart1: serial@ff010000 {
Michal Simek27af3992015-11-27 13:22:58 +0100586 compatible = "cdns,uart-r1p12", "xlnx,xuartps";
Michal Simek8fd7a772015-07-27 16:09:29 +0200587 status = "disabled";
588 interrupt-parent = <&gic>;
589 interrupts = <0 22 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100590 reg = <0x0 0xff010000 0x0 0x1000>;
Michal Simek8fd7a772015-07-27 16:09:29 +0200591 clock-names = "uart_clk", "pclk";
Michal Simek8fd7a772015-07-27 16:09:29 +0200592 };
593
Michal Simek22eda142015-07-27 11:21:20 +0200594 usb0: usb@fe200000 {
595 compatible = "snps,dwc3";
596 status = "disabled";
597 interrupt-parent = <&gic>;
598 interrupts = <0 65 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100599 reg = <0x0 0xfe200000 0x0 0x40000>;
Michal Simek22eda142015-07-27 11:21:20 +0200600 clock-names = "clk_xin", "clk_ahb";
Michal Simek22eda142015-07-27 11:21:20 +0200601 };
602
603 usb1: usb@fe300000 {
604 compatible = "snps,dwc3";
605 status = "disabled";
606 interrupt-parent = <&gic>;
607 interrupts = <0 70 4>;
Michal Simek7393fd82016-02-11 13:26:28 +0100608 reg = <0x0 0xfe300000 0x0 0x40000>;
Michal Simek22eda142015-07-27 11:21:20 +0200609 clock-names = "clk_xin", "clk_ahb";
Michal Simek22eda142015-07-27 11:21:20 +0200610 };
611
Michal Simek5d1b79d2015-03-09 09:41:04 +0100612 watchdog0: watchdog@fd4d0000 {
613 compatible = "cdns,wdt-r1p2";
614 status = "disabled";
Michal Simek5d1b79d2015-03-09 09:41:04 +0100615 interrupt-parent = <&gic>;
Punnaiah Choudary Kalluri908c9e72015-11-04 12:34:17 +0530616 interrupts = <0 113 1>;
Michal Simek7393fd82016-02-11 13:26:28 +0100617 reg = <0x0 0xfd4d0000 0x0 0x1000>;
Michal Simek5d1b79d2015-03-09 09:41:04 +0100618 timeout-sec = <10>;
619 };
620 };
621};