xref: /freebsd/sys/contrib/device-tree/src/arm/xilinx/zynq-zc770-xm013.dts (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0+
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Xilinx ZC770 XM013 board DTS
4*f126890aSEmmanuel Vadot *
5*f126890aSEmmanuel Vadot * Copyright (C) 2013 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 XM013 board";
12*f126890aSEmmanuel Vadot	compatible = "xlnx,zynq-zc770-xm013", "xlnx,zynq-7000";
13*f126890aSEmmanuel Vadot
14*f126890aSEmmanuel Vadot	aliases {
15*f126890aSEmmanuel Vadot		ethernet0 = &gem1;
16*f126890aSEmmanuel Vadot		i2c0 = &i2c1;
17*f126890aSEmmanuel Vadot		serial0 = &uart0;
18*f126890aSEmmanuel Vadot		spi1 = &spi0;
19*f126890aSEmmanuel Vadot	};
20*f126890aSEmmanuel Vadot
21*f126890aSEmmanuel Vadot	chosen {
22*f126890aSEmmanuel Vadot		bootargs = "";
23*f126890aSEmmanuel Vadot		stdout-path = "serial0:115200n8";
24*f126890aSEmmanuel Vadot	};
25*f126890aSEmmanuel Vadot
26*f126890aSEmmanuel Vadot	memory@0 {
27*f126890aSEmmanuel Vadot		device_type = "memory";
28*f126890aSEmmanuel Vadot		reg = <0x0 0x40000000>;
29*f126890aSEmmanuel Vadot	};
30*f126890aSEmmanuel Vadot};
31*f126890aSEmmanuel Vadot
32*f126890aSEmmanuel Vadot&can1 {
33*f126890aSEmmanuel Vadot	status = "okay";
34*f126890aSEmmanuel Vadot};
35*f126890aSEmmanuel Vadot
36*f126890aSEmmanuel Vadot&gem1 {
37*f126890aSEmmanuel Vadot	status = "okay";
38*f126890aSEmmanuel Vadot	phy-mode = "rgmii-id";
39*f126890aSEmmanuel Vadot	phy-handle = <&ethernet_phy>;
40*f126890aSEmmanuel Vadot
41*f126890aSEmmanuel Vadot	ethernet_phy: ethernet-phy@7 {
42*f126890aSEmmanuel Vadot		reg = <7>;
43*f126890aSEmmanuel Vadot		device_type = "ethernet-phy";
44*f126890aSEmmanuel Vadot	};
45*f126890aSEmmanuel Vadot};
46*f126890aSEmmanuel Vadot
47*f126890aSEmmanuel Vadot&i2c1 {
48*f126890aSEmmanuel Vadot	status = "okay";
49*f126890aSEmmanuel Vadot	clock-frequency = <400000>;
50*f126890aSEmmanuel Vadot
51*f126890aSEmmanuel Vadot	si570: clock-generator@55 {
52*f126890aSEmmanuel Vadot		#clock-cells = <0>;
53*f126890aSEmmanuel Vadot		compatible = "silabs,si570";
54*f126890aSEmmanuel Vadot		temperature-stability = <50>;
55*f126890aSEmmanuel Vadot		reg = <0x55>;
56*f126890aSEmmanuel Vadot		factory-fout = <156250000>;
57*f126890aSEmmanuel Vadot		clock-frequency = <148500000>;
58*f126890aSEmmanuel Vadot	};
59*f126890aSEmmanuel Vadot};
60*f126890aSEmmanuel Vadot
61*f126890aSEmmanuel Vadot&spi0 {
62*f126890aSEmmanuel Vadot	status = "okay";
63*f126890aSEmmanuel Vadot	num-cs = <4>;
64*f126890aSEmmanuel Vadot	is-decoded-cs = <0>;
65*f126890aSEmmanuel Vadot	eeprom: eeprom@2 {
66*f126890aSEmmanuel Vadot		compatible = "atmel,at25";
67*f126890aSEmmanuel Vadot		reg = <2>;
68*f126890aSEmmanuel Vadot		spi-max-frequency = <1000000>;
69*f126890aSEmmanuel Vadot		size = <8192>;
70*f126890aSEmmanuel Vadot		address-width = <16>;
71*f126890aSEmmanuel Vadot		pagesize = <32>;
72*f126890aSEmmanuel Vadot	};
73*f126890aSEmmanuel Vadot};
74*f126890aSEmmanuel Vadot
75*f126890aSEmmanuel Vadot&uart0 {
76*f126890aSEmmanuel Vadot	status = "okay";
77*f126890aSEmmanuel Vadot};
78