blob: 3efb2b95e323470427fc7384742dfe3056cca1e9 [file] [log] [blame]
Michal Simek18a952c2018-03-27 10:36:39 +02001// SPDX-License-Identifier: GPL-2.0+
Michal Simek1f4f3d32016-04-07 15:58:23 +02002/*
Michal Simek23b34d12017-11-02 10:21:08 +01003 * dts file for Xilinx ZynqMP ZCU102 RevA
Michal Simek1f4f3d32016-04-07 15:58:23 +02004 *
Michal Simek18a952c2018-03-27 10:36:39 +02005 * (C) Copyright 2015 - 2018, Xilinx, Inc.
Michal Simek1f4f3d32016-04-07 15:58:23 +02006 *
7 * Michal Simek <michal.simek@xilinx.com>
Michal Simek1f4f3d32016-04-07 15:58:23 +02008 */
9
10/dts-v1/;
11
12#include "zynqmp.dtsi"
Michal Simekee4983f2017-12-08 14:50:42 +010013#include "zynqmp-clk-ccf.dtsi"
Michal Simek9d928f02018-03-27 12:13:13 +020014#include <dt-bindings/input/input.h>
Michal Simeke4e7f2f2016-05-25 20:09:35 +020015#include <dt-bindings/gpio/gpio.h>
Michal Simekd70cb512017-12-01 15:50:31 +010016#include <dt-bindings/phy/phy.h>
Michal Simek1f4f3d32016-04-07 15:58:23 +020017
18/ {
19 model = "ZynqMP ZCU102 RevA";
Michal Simekbe463452017-07-20 12:38:27 +020020 compatible = "xlnx,zynqmp-zcu102-revA", "xlnx,zynqmp-zcu102", "xlnx,zynqmp";
Michal Simek1f4f3d32016-04-07 15:58:23 +020021
22 aliases {
23 ethernet0 = &gem3;
24 gpio0 = &gpio;
25 i2c0 = &i2c0;
26 i2c1 = &i2c1;
27 mmc0 = &sdhci1;
28 rtc0 = &rtc;
29 serial0 = &uart0;
30 serial1 = &uart1;
Michal Simek69d09dd2016-09-09 08:46:39 +020031 serial2 = &dcc;
Michal Simek1f4f3d32016-04-07 15:58:23 +020032 spi0 = &qspi;
33 usb0 = &usb0;
34 };
35
36 chosen {
37 bootargs = "earlycon";
38 stdout-path = "serial0:115200n8";
Michal Simek8bdad432019-01-18 09:10:39 +010039 xlnx,eeprom = &eeprom;
Michal Simek1f4f3d32016-04-07 15:58:23 +020040 };
41
Michal Simekc926e6f2016-11-11 13:21:04 +010042 memory@0 {
Michal Simek1f4f3d32016-04-07 15:58:23 +020043 device_type = "memory";
44 reg = <0x0 0x0 0x0 0x80000000>, <0x8 0x00000000 0x0 0x80000000>;
45 };
Michal Simek4ae78e52016-04-20 13:12:25 +020046
Michal Simeke4e7f2f2016-05-25 20:09:35 +020047 gpio-keys {
48 compatible = "gpio-keys";
Michal Simeke4e7f2f2016-05-25 20:09:35 +020049 autorepeat;
50 sw19 {
51 label = "sw19";
52 gpios = <&gpio 22 GPIO_ACTIVE_HIGH>;
Michal Simek9d928f02018-03-27 12:13:13 +020053 linux,code = <KEY_DOWN>;
Michal Simeke4e7f2f2016-05-25 20:09:35 +020054 gpio-key,wakeup;
55 autorepeat;
56 };
57 };
58
Michal Simek4ae78e52016-04-20 13:12:25 +020059 leds {
60 compatible = "gpio-leds";
61 heartbeat_led {
62 label = "heartbeat";
Chirag Parekhd801ce52017-01-25 07:00:57 -080063 gpios = <&gpio 23 GPIO_ACTIVE_HIGH>;
Michal Simek4ae78e52016-04-20 13:12:25 +020064 linux,default-trigger = "heartbeat";
65 };
66 };
Michal Simek1f4f3d32016-04-07 15:58:23 +020067};
68
69&can1 {
70 status = "okay";
71};
72
Michal Simek69d09dd2016-09-09 08:46:39 +020073&dcc {
74 status = "okay";
75};
76
Michal Simek1f4f3d32016-04-07 15:58:23 +020077&fpd_dma_chan1 {
78 status = "okay";
Michal Simek1f4f3d32016-04-07 15:58:23 +020079};
80
81&fpd_dma_chan2 {
82 status = "okay";
Michal Simek1f4f3d32016-04-07 15:58:23 +020083};
84
85&fpd_dma_chan3 {
86 status = "okay";
87};
88
89&fpd_dma_chan4 {
90 status = "okay";
Michal Simek1f4f3d32016-04-07 15:58:23 +020091};
92
93&fpd_dma_chan5 {
94 status = "okay";
95};
96
97&fpd_dma_chan6 {
98 status = "okay";
Michal Simek1f4f3d32016-04-07 15:58:23 +020099};
100
101&fpd_dma_chan7 {
102 status = "okay";
103};
104
105&fpd_dma_chan8 {
106 status = "okay";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200107};
108
109&gem3 {
110 status = "okay";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200111 phy-handle = <&phy0>;
112 phy-mode = "rgmii-id";
Michal Simek2975a422019-08-08 12:44:22 +0200113 phy0: ethernet-phy@21 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200114 reg = <21>;
115 ti,rx-internal-delay = <0x8>;
116 ti,tx-internal-delay = <0xa>;
117 ti,fifo-depth = <0x1>;
Harini Katakam631d9a92019-02-13 17:02:21 +0530118 ti,dp83867-rxctrl-strap-quirk;
Harini Katakam26b2c682019-03-13 19:41:19 +0530119 /* reset-gpios = <&tca6416_u97 6 GPIO_ACTIVE_LOW>; */
Michal Simek1f4f3d32016-04-07 15:58:23 +0200120 };
121};
122
123&gpio {
124 status = "okay";
125};
126
127&gpu {
128 status = "okay";
129};
130
131&i2c0 {
132 status = "okay";
133 clock-frequency = <400000>;
134
135 tca6416_u97: gpio@20 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200136 compatible = "ti,tca6416";
137 reg = <0x20>;
138 gpio-controller;
139 #gpio-cells = <2>;
140 /*
141 * IRQ not connected
142 * Lines:
143 * 0 - PS_GTR_LAN_SEL0
144 * 1 - PS_GTR_LAN_SEL1
145 * 2 - PS_GTR_LAN_SEL2
146 * 3 - PS_GTR_LAN_SEL3
147 * 4 - PCI_CLK_DIR_SEL
148 * 5 - IIC_MUX_RESET_B
149 * 6 - GEM3_EXP_RESET_B
150 * 7, 10 - 17 - not connected
151 */
152
153 gtr_sel0 {
154 gpio-hog;
155 gpios = <0 0>;
Bharat Kumar Gogadaf811eca2017-01-30 12:06:02 +0530156 output-low; /* PCIE = 0, DP = 1 */
Michal Simek1f4f3d32016-04-07 15:58:23 +0200157 line-name = "sel0";
158 };
159 gtr_sel1 {
160 gpio-hog;
161 gpios = <1 0>;
162 output-high; /* PCIE = 0, DP = 1 */
163 line-name = "sel1";
164 };
165 gtr_sel2 {
166 gpio-hog;
167 gpios = <2 0>;
168 output-high; /* PCIE = 0, USB0 = 1 */
169 line-name = "sel2";
170 };
171 gtr_sel3 {
172 gpio-hog;
173 gpios = <3 0>;
174 output-high; /* PCIE = 0, SATA = 1 */
175 line-name = "sel3";
176 };
177 };
178
Michal Simek95f7d642018-03-27 10:47:26 +0200179 tca6416_u61: gpio@21 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200180 compatible = "ti,tca6416";
181 reg = <0x21>;
182 gpio-controller;
183 #gpio-cells = <2>;
184 /*
185 * IRQ not connected
186 * Lines:
187 * 0 - VCCPSPLL_EN
188 * 1 - MGTRAVCC_EN
189 * 2 - MGTRAVTT_EN
190 * 3 - VCCPSDDRPLL_EN
191 * 4 - MIO26_PMU_INPUT_LS
192 * 5 - PL_PMBUS_ALERT
193 * 6 - PS_PMBUS_ALERT
194 * 7 - MAXIM_PMBUS_ALERT
195 * 10 - PL_DDR4_VTERM_EN
196 * 11 - PL_DDR4_VPP_2V5_EN
197 * 12 - PS_DIMM_VDDQ_TO_PSVCCO_ON
198 * 13 - PS_DIMM_SUSPEND_EN
199 * 14 - PS_DDR4_VTERM_EN
200 * 15 - PS_DDR4_VPP_2V5_EN
201 * 16 - 17 - not connected
202 */
203 };
204
Michal Simekba7b6df2018-03-27 10:38:08 +0200205 i2c-mux@75 { /* u60 */
Michal Simek1f4f3d32016-04-07 15:58:23 +0200206 compatible = "nxp,pca9544";
207 #address-cells = <1>;
208 #size-cells = <0>;
209 reg = <0x75>;
Michal Simek95f7d642018-03-27 10:47:26 +0200210 i2c@0 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200211 #address-cells = <1>;
212 #size-cells = <0>;
213 reg = <0>;
214 /* PS_PMBUS */
215 ina226@40 { /* u76 */
216 compatible = "ti,ina226";
217 reg = <0x40>;
218 shunt-resistor = <5000>;
219 };
220 ina226@41 { /* u77 */
221 compatible = "ti,ina226";
222 reg = <0x41>;
223 shunt-resistor = <5000>;
224 };
225 ina226@42 { /* u78 */
226 compatible = "ti,ina226";
227 reg = <0x42>;
228 shunt-resistor = <5000>;
229 };
230 ina226@43 { /* u87 */
231 compatible = "ti,ina226";
232 reg = <0x43>;
233 shunt-resistor = <5000>;
234 };
235 ina226@44 { /* u85 */
236 compatible = "ti,ina226";
237 reg = <0x44>;
238 shunt-resistor = <5000>;
239 };
240 ina226@45 { /* u86 */
241 compatible = "ti,ina226";
242 reg = <0x45>;
243 shunt-resistor = <5000>;
244 };
245 ina226@46 { /* u93 */
246 compatible = "ti,ina226";
247 reg = <0x46>;
248 shunt-resistor = <5000>;
249 };
250 ina226@47 { /* u88 */
251 compatible = "ti,ina226";
252 reg = <0x47>;
253 shunt-resistor = <5000>;
254 };
255 ina226@4a { /* u15 */
256 compatible = "ti,ina226";
257 reg = <0x4a>;
258 shunt-resistor = <5000>;
259 };
260 ina226@4b { /* u92 */
261 compatible = "ti,ina226";
262 reg = <0x4b>;
263 shunt-resistor = <5000>;
264 };
265 };
Michal Simek95f7d642018-03-27 10:47:26 +0200266 i2c@1 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200267 #address-cells = <1>;
268 #size-cells = <0>;
269 reg = <1>;
270 /* PL_PMBUS */
271 ina226@40 { /* u79 */
272 compatible = "ti,ina226";
273 reg = <0x40>;
274 shunt-resistor = <2000>;
275 };
276 ina226@41 { /* u81 */
277 compatible = "ti,ina226";
278 reg = <0x41>;
279 shunt-resistor = <5000>;
280 };
281 ina226@42 { /* u80 */
282 compatible = "ti,ina226";
283 reg = <0x42>;
284 shunt-resistor = <5000>;
285 };
286 ina226@43 { /* u84 */
287 compatible = "ti,ina226";
288 reg = <0x43>;
289 shunt-resistor = <5000>;
290 };
291 ina226@44 { /* u16 */
292 compatible = "ti,ina226";
293 reg = <0x44>;
294 shunt-resistor = <5000>;
295 };
296 ina226@45 { /* u65 */
297 compatible = "ti,ina226";
298 reg = <0x45>;
299 shunt-resistor = <5000>;
300 };
301 ina226@46 { /* u74 */
302 compatible = "ti,ina226";
303 reg = <0x46>;
304 shunt-resistor = <5000>;
305 };
306 ina226@47 { /* u75 */
307 compatible = "ti,ina226";
308 reg = <0x47>;
309 shunt-resistor = <5000>;
310 };
311 };
Michal Simek95f7d642018-03-27 10:47:26 +0200312 i2c@2 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200313 #address-cells = <1>;
314 #size-cells = <0>;
315 reg = <2>;
316 /* MAXIM_PMBUS - 00 */
317 max15301@a { /* u46 */
Michal Simeka16e5782018-03-27 10:52:40 +0200318 compatible = "maxim,max15301";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200319 reg = <0xa>;
320 };
321 max15303@b { /* u4 */
Michal Simeka16e5782018-03-27 10:52:40 +0200322 compatible = "maxim,max15303";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200323 reg = <0xb>;
324 };
325 max15303@10 { /* u13 */
Michal Simeka16e5782018-03-27 10:52:40 +0200326 compatible = "maxim,max15303";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200327 reg = <0x10>;
328 };
329 max15301@13 { /* u47 */
Michal Simeka16e5782018-03-27 10:52:40 +0200330 compatible = "maxim,max15301";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200331 reg = <0x13>;
332 };
333 max15303@14 { /* u7 */
Michal Simeka16e5782018-03-27 10:52:40 +0200334 compatible = "maxim,max15303";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200335 reg = <0x14>;
336 };
337 max15303@15 { /* u6 */
Michal Simeka16e5782018-03-27 10:52:40 +0200338 compatible = "maxim,max15303";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200339 reg = <0x15>;
340 };
341 max15303@16 { /* u10 */
Michal Simeka16e5782018-03-27 10:52:40 +0200342 compatible = "maxim,max15303";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200343 reg = <0x16>;
344 };
345 max15303@17 { /* u9 */
Michal Simeka16e5782018-03-27 10:52:40 +0200346 compatible = "maxim,max15303";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200347 reg = <0x17>;
348 };
349 max15301@18 { /* u63 */
Michal Simeka16e5782018-03-27 10:52:40 +0200350 compatible = "maxim,max15301";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200351 reg = <0x18>;
352 };
353 max15303@1a { /* u49 */
Michal Simeka16e5782018-03-27 10:52:40 +0200354 compatible = "maxim,max15303";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200355 reg = <0x1a>;
356 };
357 max15303@1d { /* u18 */
Michal Simeka16e5782018-03-27 10:52:40 +0200358 compatible = "maxim,max15303";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200359 reg = <0x1d>;
360 };
361 max15303@20 { /* u8 */
Michal Simeka16e5782018-03-27 10:52:40 +0200362 compatible = "maxim,max15303";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200363 status = "disabled"; /* unreachable */
364 reg = <0x20>;
365 };
Michal Simek52af7e32018-03-27 12:01:24 +0200366 max20751@72 { /* u95 */
Michal Simeka16e5782018-03-27 10:52:40 +0200367 compatible = "maxim,max20751";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200368 reg = <0x72>;
369 };
Michal Simek52af7e32018-03-27 12:01:24 +0200370 max20751@73 { /* u96 */
Michal Simeka16e5782018-03-27 10:52:40 +0200371 compatible = "maxim,max20751";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200372 reg = <0x73>;
373 };
374 };
375 /* Bus 3 is not connected */
376 };
Michal Simek1f4f3d32016-04-07 15:58:23 +0200377};
378
379&i2c1 {
380 status = "okay";
381 clock-frequency = <400000>;
Michal Simek9c77cb72017-11-02 11:51:59 +0100382
Michal Simek52af7e32018-03-27 12:01:24 +0200383 /* PL i2c via PCA9306 - u45 */
Michal Simekba7b6df2018-03-27 10:38:08 +0200384 i2c-mux@74 { /* u34 */
Michal Simek1f4f3d32016-04-07 15:58:23 +0200385 compatible = "nxp,pca9548";
386 #address-cells = <1>;
387 #size-cells = <0>;
388 reg = <0x74>;
Michal Simek95f7d642018-03-27 10:47:26 +0200389 i2c@0 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200390 #address-cells = <1>;
391 #size-cells = <0>;
392 reg = <0>;
393 /*
394 * IIC_EEPROM 1kB memory which uses 256B blocks
395 * where every block has different address.
396 * 0 - 256B address 0x54
397 * 256B - 512B address 0x55
398 * 512B - 768B address 0x56
399 * 768B - 1024B address 0x57
400 */
Michal Simekae9775f2017-11-02 11:42:12 +0100401 eeprom: eeprom@54 { /* u23 */
Michal Simek098505f2018-03-27 10:54:25 +0200402 compatible = "atmel,24c08";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200403 reg = <0x54>;
404 };
405 };
Michal Simek95f7d642018-03-27 10:47:26 +0200406 i2c@1 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200407 #address-cells = <1>;
408 #size-cells = <0>;
409 reg = <1>;
Michal Simek147ae1f2018-03-27 10:39:53 +0200410 si5341: clock-generator@36 { /* SI5341 - u69 */
Michal Simekbbe5c722018-03-27 12:48:30 +0200411 compatible = "silabs,si5341";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200412 reg = <0x36>;
413 };
414
415 };
Michal Simek95f7d642018-03-27 10:47:26 +0200416 i2c@2 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200417 #address-cells = <1>;
418 #size-cells = <0>;
419 reg = <2>;
Michal Simek147ae1f2018-03-27 10:39:53 +0200420 si570_1: clock-generator@5d { /* USER SI570 - u42 */
Michal Simek1f4f3d32016-04-07 15:58:23 +0200421 #clock-cells = <0>;
422 compatible = "silabs,si570";
423 reg = <0x5d>;
424 temperature-stability = <50>;
425 factory-fout = <300000000>;
426 clock-frequency = <300000000>;
Michal Simek6bd13ee2018-07-18 12:10:02 +0200427 clock-output-names = "si570_user";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200428 };
429 };
Michal Simek95f7d642018-03-27 10:47:26 +0200430 i2c@3 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200431 #address-cells = <1>;
432 #size-cells = <0>;
433 reg = <3>;
Michal Simek147ae1f2018-03-27 10:39:53 +0200434 si570_2: clock-generator@5d { /* USER MGT SI570 - u56 */
Michal Simek1f4f3d32016-04-07 15:58:23 +0200435 #clock-cells = <0>;
436 compatible = "silabs,si570";
437 reg = <0x5d>;
438 temperature-stability = <50>; /* copy from zc702 */
439 factory-fout = <156250000>;
440 clock-frequency = <148500000>;
Michal Simek6bd13ee2018-07-18 12:10:02 +0200441 clock-output-names = "si570_mgt";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200442 };
443 };
Michal Simek95f7d642018-03-27 10:47:26 +0200444 i2c@4 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200445 #address-cells = <1>;
446 #size-cells = <0>;
447 reg = <4>;
Michal Simek147ae1f2018-03-27 10:39:53 +0200448 si5328: clock-generator@69 {/* SI5328 - u20 */
Michal Simek1f4f3d32016-04-07 15:58:23 +0200449 compatible = "silabs,si5328";
450 reg = <0x69>;
Michal Simekb10255f2017-11-02 12:45:10 +0100451 /*
452 * Chip has interrupt present connected to PL
453 * interrupt-parent = <&>;
454 * interrupts = <>;
455 */
Michal Simek1f4f3d32016-04-07 15:58:23 +0200456 };
457 };
458 /* 5 - 7 unconnected */
459 };
460
Michal Simekba7b6df2018-03-27 10:38:08 +0200461 i2c-mux@75 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200462 compatible = "nxp,pca9548"; /* u135 */
463 #address-cells = <1>;
464 #size-cells = <0>;
465 reg = <0x75>;
466
467 i2c@0 {
468 #address-cells = <1>;
469 #size-cells = <0>;
470 reg = <0>;
471 /* HPC0_IIC */
472 };
473 i2c@1 {
474 #address-cells = <1>;
475 #size-cells = <0>;
476 reg = <1>;
477 /* HPC1_IIC */
478 };
479 i2c@2 {
480 #address-cells = <1>;
481 #size-cells = <0>;
482 reg = <2>;
483 /* SYSMON */
484 };
Michal Simek95f7d642018-03-27 10:47:26 +0200485 i2c@3 {
Michal Simek1f4f3d32016-04-07 15:58:23 +0200486 #address-cells = <1>;
487 #size-cells = <0>;
488 reg = <3>;
489 /* DDR4 SODIMM */
Michal Simek1f4f3d32016-04-07 15:58:23 +0200490 };
491 i2c@4 {
492 #address-cells = <1>;
493 #size-cells = <0>;
494 reg = <4>;
495 /* SEP 3 */
496 };
497 i2c@5 {
498 #address-cells = <1>;
499 #size-cells = <0>;
500 reg = <5>;
501 /* SEP 2 */
502 };
503 i2c@6 {
504 #address-cells = <1>;
505 #size-cells = <0>;
506 reg = <6>;
507 /* SEP 1 */
508 };
509 i2c@7 {
510 #address-cells = <1>;
511 #size-cells = <0>;
512 reg = <7>;
513 /* SEP 0 */
514 };
515 };
516};
517
518&pcie {
Bharat Kumar Gogadaf811eca2017-01-30 12:06:02 +0530519 status = "okay";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200520};
521
522&qspi {
523 status = "okay";
524 is-dual = <1>;
525 flash@0 {
Neil Armstrongffd4c7c2019-02-10 10:16:20 +0000526 compatible = "m25p80", "jedec,spi-nor"; /* 32MB */
Michal Simek1f4f3d32016-04-07 15:58:23 +0200527 #address-cells = <1>;
528 #size-cells = <1>;
529 reg = <0x0>;
530 spi-tx-bus-width = <1>;
531 spi-rx-bus-width = <4>; /* FIXME also DUAL configuration possible */
532 spi-max-frequency = <108000000>; /* Based on DC1 spec */
533 partition@qspi-fsbl-uboot { /* for testing purpose */
534 label = "qspi-fsbl-uboot";
535 reg = <0x0 0x100000>;
536 };
537 partition@qspi-linux { /* for testing purpose */
538 label = "qspi-linux";
539 reg = <0x100000 0x500000>;
540 };
541 partition@qspi-device-tree { /* for testing purpose */
542 label = "qspi-device-tree";
543 reg = <0x600000 0x20000>;
544 };
545 partition@qspi-rootfs { /* for testing purpose */
546 label = "qspi-rootfs";
547 reg = <0x620000 0x5E0000>;
548 };
549 };
550};
551
552&rtc {
553 status = "okay";
554};
555
556&sata {
557 status = "okay";
558 /* SATA OOB timing settings */
559 ceva,p0-cominit-params = /bits/ 8 <0x18 0x40 0x18 0x28>;
560 ceva,p0-comwake-params = /bits/ 8 <0x06 0x14 0x08 0x0E>;
561 ceva,p0-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
562 ceva,p0-retry-params = /bits/ 16 <0x96A4 0x3FFC>;
563 ceva,p1-cominit-params = /bits/ 8 <0x18 0x40 0x18 0x28>;
564 ceva,p1-comwake-params = /bits/ 8 <0x06 0x14 0x08 0x0E>;
565 ceva,p1-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
566 ceva,p1-retry-params = /bits/ 16 <0x96A4 0x3FFC>;
Michal Simekd70cb512017-12-01 15:50:31 +0100567 phy-names = "sata-phy";
568 phys = <&lane3 PHY_TYPE_SATA 1 1 125000000>;
Michal Simek1f4f3d32016-04-07 15:58:23 +0200569};
570
571/* SD1 with level shifter */
572&sdhci1 {
573 status = "okay";
574 no-1-8-v; /* for 1.0 silicon */
Sai Krishna Potthuri0488a5e2016-08-16 14:41:35 +0530575 xlnx,mio_bank = <1>;
Michal Simek1f4f3d32016-04-07 15:58:23 +0200576};
577
Michal Simekd70cb512017-12-01 15:50:31 +0100578&serdes {
579 status = "okay";
580};
581
Michal Simek1f4f3d32016-04-07 15:58:23 +0200582&uart0 {
583 status = "okay";
584};
585
586&uart1 {
587 status = "okay";
588};
589
590/* ULPI SMSC USB3320 */
591&usb0 {
592 status = "okay";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200593};
594
595&dwc3_0 {
596 status = "okay";
597 dr_mode = "host";
Michal Simekd70cb512017-12-01 15:50:31 +0100598 snps,usb3_lpm_capable;
599 phy-names = "usb3-phy";
600 phys = <&lane2 PHY_TYPE_USB3 0 2 26000000>;
601 maximum-speed = "super-speed";
Michal Simek1f4f3d32016-04-07 15:58:23 +0200602};
603
Shubhrajyoti Dattafe16aa42017-04-06 12:28:14 +0530604&watchdog0 {
605 status = "okay";
606};
607
Michal Simek795ebc02017-11-02 12:04:43 +0100608&xilinx_ams {
609 status = "okay";
610};
611
612&ams_ps {
613 status = "okay";
614};
615
616&ams_pl {
617 status = "okay";
618};
619
Michal Simek1f4f3d32016-04-07 15:58:23 +0200620&xilinx_drm {
621 status = "okay";
622 clocks = <&si570_1>;
623};
624
625&xlnx_dp {
626 status = "okay";
627};
628
629&xlnx_dp_sub {
630 status = "okay";
631 xlnx,vid-clk-pl;
632};
633
634&xlnx_dp_snd_pcm0 {
635 status = "okay";
636};
637
638&xlnx_dp_snd_pcm1 {
639 status = "okay";
640};
641
642&xlnx_dp_snd_card {
643 status = "okay";
644};
645
646&xlnx_dp_snd_codec0 {
647 status = "okay";
648};
649
650&xlnx_dpdma {
651 status = "okay";
652};