Linux Audio

Check our new training course

Loading...
v6.2
 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 = "Avnet ZedBoard board";
11	compatible = "avnet,zynq-zed", "xlnx,zynq-zed", "xlnx,zynq-7000";
12
13	aliases {
14		ethernet0 = &gem0;
15		serial0 = &uart1;
16		mmc0 = &sdhci0;
17	};
18
19	memory@0 {
20		device_type = "memory";
21		reg = <0x0 0x20000000>;
22	};
23
24	chosen {
25		bootargs = "";
26		stdout-path = "serial0:115200n8";
27	};
28
29	usb_phy0: phy0 {
30		compatible = "usb-nop-xceiv";
31		#phy-cells = <0>;
32	};
33};
34
35&clkc {
36	ps-clk-frequency = <33333333>;
37};
38
39&gem0 {
40	status = "okay";
41	phy-mode = "rgmii-id";
42	phy-handle = <&ethernet_phy>;
43
44	ethernet_phy: ethernet-phy@0 {
45		reg = <0>;
46		device_type = "ethernet-phy";
47	};
48};
49
50&sdhci0 {
51	status = "okay";
52};
53
54&uart1 {
55	status = "okay";
56};
57
58&usb0 {
59	status = "okay";
60	dr_mode = "host";
61	usb-phy = <&usb_phy0>;
62};
v4.6
 
 1/*
 2 *  Copyright (C) 2011 - 2014 Xilinx
 3 *  Copyright (C) 2012 National Instruments Corp.
 4 *
 5 * This software is licensed under the terms of the GNU General Public
 6 * License version 2, as published by the Free Software Foundation, and
 7 * may be copied, distributed, and modified under those terms.
 8 *
 9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 */
14/dts-v1/;
15/include/ "zynq-7000.dtsi"
16
17/ {
18	model = "Zynq Zed Development Board";
19	compatible = "xlnx,zynq-zed", "xlnx,zynq-7000";
20
21	aliases {
22		ethernet0 = &gem0;
23		serial0 = &uart1;
 
24	};
25
26	memory {
27		device_type = "memory";
28		reg = <0x0 0x20000000>;
29	};
30
31	chosen {
32		bootargs = "earlycon";
33		stdout-path = "serial0:115200n8";
34	};
35
36	usb_phy0: phy0 {
37		compatible = "usb-nop-xceiv";
38		#phy-cells = <0>;
39	};
40};
41
42&clkc {
43	ps-clk-frequency = <33333333>;
44};
45
46&gem0 {
47	status = "okay";
48	phy-mode = "rgmii-id";
49	phy-handle = <&ethernet_phy>;
50
51	ethernet_phy: ethernet-phy@0 {
52		reg = <0>;
 
53	};
54};
55
56&sdhci0 {
57	status = "okay";
58};
59
60&uart1 {
61	status = "okay";
62};
63
64&usb0 {
65	status = "okay";
66	dr_mode = "host";
67	usb-phy = <&usb_phy0>;
68};