xref: /openbmc/u-boot/arch/arm/dts/zynq-zed.dts (revision 17aa548c)
1/*
2 * Xilinx ZED board DTS
3 *
4 *  Copyright (C) 2011 - 2015 Xilinx
5 *  Copyright (C) 2012 National Instruments Corp.
6 *
7 * SPDX-License-Identifier:	GPL-2.0+
8 */
9/dts-v1/;
10#include "zynq-7000.dtsi"
11
12/ {
13	model = "Zynq Zed Development Board";
14	compatible = "xlnx,zynq-zed", "xlnx,zynq-7000";
15
16	aliases {
17		ethernet0 = &gem0;
18		serial0 = &uart1;
19	};
20
21	memory {
22		device_type = "memory";
23		reg = <0x0 0x20000000>;
24	};
25
26	chosen {
27		bootargs = "earlyprintk";
28		stdout-path = "serial0:115200n8";
29	};
30
31	usb_phy0: phy0 {
32		compatible = "usb-nop-xceiv";
33		#phy-cells = <0>;
34	};
35};
36
37&clkc {
38	ps-clk-frequency = <33333333>;
39};
40
41&gem0 {
42	status = "okay";
43	phy-mode = "rgmii-id";
44	phy-handle = <&ethernet_phy>;
45
46	ethernet_phy: ethernet-phy@0 {
47		reg = <0>;
48	};
49};
50
51&sdhci0 {
52	status = "okay";
53};
54
55&uart1 {
56	status = "okay";
57};
58
59&usb0 {
60	status = "okay";
61	dr_mode = "host";
62	usb-phy = <&usb_phy0>;
63};
64