blob: 8031488d17a54270c7cfdd4710388550c3a0ebc9 [file] [log] [blame]
Michal Simek4e2f4df2018-09-13 08:44:02 +02001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2018 Xilinx, Inc.
4 *
Michal Simeka8c94362023-07-10 14:35:49 +02005 * Michal Simek <michal.simek@amd.com>
Michal Simek4e2f4df2018-09-13 08:44:02 +02006 */
7/dts-v1/;
8#include "zynq-7000.dtsi"
9
10/ {
11 model = "Zynq DLC20 Rev1.0";
12 compatible = "xlnx,zynq-dlc20-rev1.0", "xlnx,zynq-dlc20",
13 "xlnx,zynq-7000";
14
15 aliases {
16 ethernet0 = &gem0;
17 i2c0 = &i2c0;
18 serial0 = &uart1;
19 spi0 = &qspi;
20 mmc0 = &sdhci0;
21 };
22
23 memory@0 {
24 device_type = "memory";
25 reg = <0x0 0x20000000>;
26 };
27
28 chosen {
Michal Simek151497b2023-03-28 09:17:31 +020029 bootargs = "earlycon";
Michal Simek4e2f4df2018-09-13 08:44:02 +020030 stdout-path = "serial0:115200n8";
31 };
32
33 usb_phy0: phy0@e0002000 {
34 compatible = "ulpi-phy";
35 #phy-cells = <0>;
36 reg = <0xe0002000 0x1000>;
37 view-port = <0x0170>;
38 drv-vbus;
39 };
40};
41
42&clkc {
43 ps-clk-frequency = <33333333>; /* U7 */
44};
45
46&gem0 {
47 status = "okay"; /* MIO16-MIO27, MDIO MIO52/53 */
48 phy-mode = "rgmii-id";
49 phy-handle = <&ethernet_phy>;
50
51 ethernet_phy: ethernet-phy@7 { /* rtl8211e - U25 */
52 reg = <1>;
53 };
54};
55
56&i2c0 {
57 status = "okay"; /* MIO14/15 */
58 clock-frequency = <400000>;
59 /* U46 - m24c08 */
60 eeprom: eeprom@54 {
61 compatible = "atmel,24c08";
62 reg = <0x54>;
63 };
64};
65
66&qspi {
Simon Glassd3a98cb2023-02-13 08:56:33 -070067 bootph-all;
Michal Simek4e2f4df2018-09-13 08:44:02 +020068 status = "okay";
Michal Simek4e2f4df2018-09-13 08:44:02 +020069 num-cs = <1>;
70 spi-tx-bus-width = <4>;
71 spi-rx-bus-width = <4>;
72 flash@0 {
73 /* Rev1.0 W25Q128FWSIG, RevC N25Q128A */
74 compatible = "n25q128a11", "jedec,spi-nor";
75 reg = <0x0>;
76 spi-tx-bus-width = <1>;
77 spi-rx-bus-width = <4>;
78 spi-max-frequency = <50000000>;
79 };
80};
81
82&sdhci0 {
Simon Glassd3a98cb2023-02-13 08:56:33 -070083 bootph-all;
Michal Simek4e2f4df2018-09-13 08:44:02 +020084 status = "okay"; /* EMMC MTFC4GACAJCN - MIO40-MIO45 */
85 non-removable;
Paul Alvina1398f02024-09-25 09:03:13 +020086 no-sd;
87 no-sdio;
88 cap-mmc-hw-reset;
Michal Simek4e2f4df2018-09-13 08:44:02 +020089 bus-width = <4>;
90};
91
92&uart1 {
Simon Glassd3a98cb2023-02-13 08:56:33 -070093 bootph-all;
Michal Simek4e2f4df2018-09-13 08:44:02 +020094 status = "okay"; /* MIO8/9 */
95};
96
97&usb0 {
98 status = "okay"; /* MIO28-MIO39 */
99 dr_mode = "device";
100 usb-phy = <&usb_phy0>;
101};
102
103&watchdog0 {
104 reset-on-timeout;
105};