blob: 38735b1ce1aceddaab6a206aa5a54e4ad101032b [file] [log] [blame]
Michal Simek499ba762020-01-09 10:28:56 +01001// SPDX-License-Identifier: GPL-2.0
2/*
3 * dts file for Xilinx ZynqMP ZCU1285 RevA
4 *
Michal Simek821e32a2021-05-31 09:50:01 +02005 * (C) Copyright 2018 - 2021, Xilinx, Inc.
Michal Simek499ba762020-01-09 10:28:56 +01006 *
Michal Simeka8c94362023-07-10 14:35:49 +02007 * Michal Simek <michal.simek@amd.com>
Michal Simek7359cc22023-09-22 12:35:35 +02008 * Siva Durga Prasad Paladugu <siva.durga.prasad.paladugu@amd.com>
Michal Simek499ba762020-01-09 10:28:56 +01009 */
10
11/dts-v1/;
12
13#include "zynqmp.dtsi"
14#include "zynqmp-clk-ccf.dtsi"
15
16/ {
17 model = "ZynqMP ZCU1285 RevA";
18 compatible = "xlnx,zynqmp-zcu1285-revA", "xlnx,zynqmp-zcu1285",
19 "xlnx,zynqmp";
20
21 aliases {
22 serial0 = &uart0;
23 serial1 = &dcc;
24 spi0 = &qspi;
25 mmc0 = &sdhci1;
Harini Katakamcada8b62020-02-18 14:20:18 +053026 ethernet0 = &gem1; /* EMIO */
Michal Simek499ba762020-01-09 10:28:56 +010027 i2c = &i2c0; /* EMIO */
28 };
29
30 chosen {
31 bootargs = "earlycon";
32 stdout-path = "serial0:115200n8";
33 };
34
35 memory@0 {
36 device_type = "memory";
37 reg = <0x0 0x0 0x0 0x80000000>;
38 };
39
Michal Simek499ba762020-01-09 10:28:56 +010040};
41
42&dcc {
43 status = "okay";
44};
45
46&i2c0 {
47 status = "okay";
48 clock-frequency = <400000>;
49
Michal Simek499ba762020-01-09 10:28:56 +010050};
51
Harini Katakamcada8b62020-02-18 14:20:18 +053052&gem1 {
53 mdio {
54 #address-cells = <1>;
55 #size-cells = <0>;
56 phy1: ethernet-phy@1 {
57 reg = <1>; /* KSZ9031RNXIC on AES-FMC-NETW1-G */
58 rxc-skew-ps = <1800>; /* Skew control of RX_CLK pad output */
59 txc-skew-ps = <1800>; /* Skew control of GTX_CLK pad input */
60 txen-skew-ps = <900>; /* Skew control of TX_CTL pad input */
61 rxdv-skew-ps = <0>; /* Skew control of RX_CTL pad output */
62 rxd0-skew-ps = <0>; /* Skew control of RXD0 pad output */
63 rxd1-skew-ps = <0>; /* Skew control of RXD1 pad output */
64 rxd2-skew-ps = <0>; /* Skew control of RXD2 pad output */
65 rxd3-skew-ps = <0>; /* Skew control of RXD3 pad output */
66 txd0-skew-ps = <900>; /* Skew control of TXD0 pad input */
67 txd1-skew-ps = <900>; /* Skew control of TXD1 pad input */
68 txd2-skew-ps = <900>; /* Skew control of TXD2 pad input */
69 txd3-skew-ps = <900>; /* Skew control of TXD3 pad input */
70 };
71 };
72};
73
Michal Simek52dc8212021-05-11 13:59:01 +020074&gpio {
75 status = "okay";
76};
77
Michal Simek499ba762020-01-09 10:28:56 +010078&qspi {
79 status = "okay";
80 flash@0 {
81 compatible = "m25p80", "jedec,spi-nor"; /* 32MB */
82 #address-cells = <1>;
83 #size-cells = <1>;
84 reg = <0x0>;
85 spi-tx-bus-width = <1>;
86 spi-rx-bus-width = <1>;
87 spi-max-frequency = <108000000>; /* Based on DC1 spec */
88 };
89};
90
91&uart0 {
92 status = "okay";
93};
94
95&sdhci1 {
96 status = "okay";
Manish Naranie2ba0932020-02-13 23:37:30 -070097 /*
98 * This property should be removed for supporting UHS mode
99 */
100 no-1-8-v;
Michal Simek3b662642020-07-22 17:42:43 +0200101 xlnx,mio-bank = <1>;
Michal Simek499ba762020-01-09 10:28:56 +0100102};