1/* 2 * Xilinx ZC770 XM010 board DTS 3 * 4 * Copyright (C) 2013 - 2015 Xilinx, Inc. 5 * 6 * SPDX-License-Identifier: GPL-2.0+ 7 */ 8/dts-v1/; 9#include "zynq-7000.dtsi" 10 11/ { 12 compatible = "xlnx,zynq-zc770-xm010", "xlnx,zynq-7000"; 13 model = "Xilinx Zynq"; 14 15 aliases { 16 ethernet0 = &gem0; 17 i2c0 = &i2c0; 18 serial0 = &uart1; 19 spi0 = &qspi; 20 spi1 = &spi1; 21 }; 22 23 chosen { 24 bootargs = ""; 25 stdout-path = "serial0:115200n8"; 26 }; 27 28 memory@0 { 29 device_type = "memory"; 30 reg = <0x0 0x40000000>; 31 }; 32 33 usb_phy0: phy0 { 34 compatible = "usb-nop-xceiv"; 35 #phy-cells = <0>; 36 }; 37}; 38 39&can0 { 40 status = "okay"; 41}; 42 43&gem0 { 44 status = "okay"; 45 phy-mode = "rgmii-id"; 46 phy-handle = <ðernet_phy>; 47 48 ethernet_phy: ethernet-phy@7 { 49 reg = <7>; 50 device_type = "ethernet-phy"; 51 }; 52}; 53 54&i2c0 { 55 status = "okay"; 56 clock-frequency = <400000>; 57 58 m24c02_eeprom@52 { 59 compatible = "at,24c02"; 60 reg = <0x52>; 61 }; 62 63}; 64 65&qspi { 66 status = "okay"; 67}; 68 69&sdhci0 { 70 status = "okay"; 71}; 72 73&spi1 { 74 status = "okay"; 75 num-cs = <4>; 76 is-decoded-cs = <0>; 77 flash@0 { 78 compatible = "sst25wf080"; 79 reg = <1>; 80 spi-max-frequency = <1000000>; 81 #address-cells = <1>; 82 #size-cells = <1>; 83 partition@test { 84 label = "spi-flash"; 85 reg = <0x0 0x100000>; 86 }; 87 }; 88}; 89 90&uart1 { 91 u-boot,dm-pre-reloc; 92 status = "okay"; 93}; 94 95&usb0 { 96 status = "okay"; 97 dr_mode = "host"; 98 usb-phy = <&usb_phy0>; 99}; 100