1// SPDX-License-Identifier: GPL-2.0
2/*
3 *  Copyright (C) 2011 - 2014 Xilinx
4 *  Copyright (C) 2012 National Instruments Corp.
5 */
6/dts-v1/;
7#include "zynq-7000.dtsi"
8
9/ {
10	model = "Digilent Zybo board";
11	compatible = "digilent,zynq-zybo", "xlnx,zynq-7000";
12
13	aliases {
14		ethernet0 = &gem0;
15		serial0 = &uart1;
16		spi0 = &qspi;
17		mmc0 = &sdhci0;
18	};
19
20	memory@0 {
21		device_type = "memory";
22		reg = <0x0 0x20000000>;
23	};
24
25	chosen {
26		bootargs = "";
27		stdout-path = "serial0:115200n8";
28	};
29
30	usb_phy0: phy0 {
31		#phy-cells = <0>;
32		compatible = "usb-nop-xceiv";
33		reset-gpios = <&gpio0 46 1>;
34	};
35};
36
37&clkc {
38	ps-clk-frequency = <50000000>;
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&qspi {
52	bootph-all;
53	status = "okay";
54};
55
56&sdhci0 {
57	bootph-all;
58	status = "okay";
59};
60
61&uart1 {
62	bootph-all;
63	status = "okay";
64};
65
66&usb0 {
67	status = "okay";
68	dr_mode = "host";
69	usb-phy = <&usb_phy0>;
70};
71