xref: /freebsd-src/sys/contrib/device-tree/src/arm/xilinx/zynq-zc770-xm011.dts (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0+
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Xilinx ZC770 XM011 board DTS
4*f126890aSEmmanuel Vadot *
5*f126890aSEmmanuel Vadot * Copyright (C) 2013-2018 Xilinx, Inc.
6*f126890aSEmmanuel Vadot */
7*f126890aSEmmanuel Vadot/dts-v1/;
8*f126890aSEmmanuel Vadot#include "zynq-7000.dtsi"
9*f126890aSEmmanuel Vadot
10*f126890aSEmmanuel Vadot/ {
11*f126890aSEmmanuel Vadot	model = "Xilinx ZC770 XM011 board";
12*f126890aSEmmanuel Vadot	compatible = "xlnx,zynq-zc770-xm011", "xlnx,zynq-7000";
13*f126890aSEmmanuel Vadot
14*f126890aSEmmanuel Vadot	aliases {
15*f126890aSEmmanuel Vadot		i2c0 = &i2c1;
16*f126890aSEmmanuel Vadot		serial0 = &uart1;
17*f126890aSEmmanuel Vadot		spi0 = &spi0;
18*f126890aSEmmanuel Vadot	};
19*f126890aSEmmanuel Vadot
20*f126890aSEmmanuel Vadot	chosen {
21*f126890aSEmmanuel Vadot		bootargs = "";
22*f126890aSEmmanuel Vadot		stdout-path = "serial0:115200n8";
23*f126890aSEmmanuel Vadot	};
24*f126890aSEmmanuel Vadot
25*f126890aSEmmanuel Vadot	memory@0 {
26*f126890aSEmmanuel Vadot		device_type = "memory";
27*f126890aSEmmanuel Vadot		reg = <0x0 0x40000000>;
28*f126890aSEmmanuel Vadot	};
29*f126890aSEmmanuel Vadot
30*f126890aSEmmanuel Vadot	usb_phy1: phy1 {
31*f126890aSEmmanuel Vadot		compatible = "usb-nop-xceiv";
32*f126890aSEmmanuel Vadot		#phy-cells = <0>;
33*f126890aSEmmanuel Vadot	};
34*f126890aSEmmanuel Vadot};
35*f126890aSEmmanuel Vadot
36*f126890aSEmmanuel Vadot&can0 {
37*f126890aSEmmanuel Vadot	status = "okay";
38*f126890aSEmmanuel Vadot};
39*f126890aSEmmanuel Vadot
40*f126890aSEmmanuel Vadot&i2c1 {
41*f126890aSEmmanuel Vadot	status = "okay";
42*f126890aSEmmanuel Vadot	clock-frequency = <400000>;
43*f126890aSEmmanuel Vadot
44*f126890aSEmmanuel Vadot	eeprom: eeprom@52 {
45*f126890aSEmmanuel Vadot		compatible = "atmel,24c02";
46*f126890aSEmmanuel Vadot		reg = <0x52>;
47*f126890aSEmmanuel Vadot	};
48*f126890aSEmmanuel Vadot};
49*f126890aSEmmanuel Vadot
50*f126890aSEmmanuel Vadot&spi0 {
51*f126890aSEmmanuel Vadot	status = "okay";
52*f126890aSEmmanuel Vadot	num-cs = <4>;
53*f126890aSEmmanuel Vadot	is-decoded-cs = <0>;
54*f126890aSEmmanuel Vadot};
55*f126890aSEmmanuel Vadot
56*f126890aSEmmanuel Vadot&uart1 {
57*f126890aSEmmanuel Vadot	status = "okay";
58*f126890aSEmmanuel Vadot};
59*f126890aSEmmanuel Vadot
60*f126890aSEmmanuel Vadot&usb1 {
61*f126890aSEmmanuel Vadot	status = "okay";
62*f126890aSEmmanuel Vadot	dr_mode = "host";
63*f126890aSEmmanuel Vadot	usb-phy = <&usb_phy1>;
64*f126890aSEmmanuel Vadot};
65