blob: ec39aad1c0c19055629ef483923a18d8188ffd1b [file] [log] [blame]
Michal Simek71d84b42018-03-27 13:43:05 +02001// SPDX-License-Identifier: GPL-2.0+
Michal Simek9e996ec2017-11-02 09:18:42 +01002/*
3 * Xilinx CC108 board DTS
4 *
Michal Simek71d84b42018-03-27 13:43:05 +02005 * (C) Copyright 2007-2018 Xilinx, Inc.
Michal Simek9e996ec2017-11-02 09:18:42 +01006 * (C) Copyright 2007-2013 Michal Simek
7 * (C) Copyright 2007-2012 PetaLogix Qld Pty Ltd
8 *
9 * Michal SIMEK <monstr@monstr.eu>
Michal Simek9e996ec2017-11-02 09:18:42 +010010 */
11/dts-v1/;
12/include/ "zynq-7000.dtsi"
13
14/ {
Luis Aranedaac891162018-07-12 00:10:20 -040015 model = "Xilinx CC108 board";
Michal Simek9e996ec2017-11-02 09:18:42 +010016 compatible = "xlnx,zynq-cc108", "xlnx,zynq-7000";
Michal Simek9e996ec2017-11-02 09:18:42 +010017
18 aliases {
19 ethernet0 = &gem0;
20 serial0 = &uart0;
21 spi0 = &qspi;
22 };
23
24 chosen {
25 bootargs = "";
26 stdout-path = "serial0:115200n8";
27 };
28
29 memory@0 {
30 device_type = "memory";
31 reg = <0x0 0x20000000>;
32 };
33
34 usb_phy0: phy0 {
35 compatible = "usb-nop-xceiv";
36 #phy-cells = <0>;
37 };
38
39 usb_phy1: phy1 {
40 compatible = "usb-nop-xceiv";
41 #phy-cells = <0>;
42 };
43};
44
45&gem0 {
46 status = "okay";
47 phy-mode = "rgmii-id";
48 phy-handle = <&ethernet_phy>;
49
50 ethernet_phy: ethernet-phy@1 {
51 reg = <1>;
Michal Simek9e996ec2017-11-02 09:18:42 +010052 };
53};
54
55&qspi {
56 status = "okay";
Michal Simek9e996ec2017-11-02 09:18:42 +010057 num-cs = <1>;
58 flash@0 { /* 16 MB */
Raju Kumar Pothuraju8c6fdf62021-07-01 14:15:11 +053059 compatible = "n25q128a11", "jedec,spi-nor";
Michal Simek9e996ec2017-11-02 09:18:42 +010060 reg = <0x0>;
61 spi-max-frequency = <50000000>;
62 spi-tx-bus-width = <1>;
63 spi-rx-bus-width = <4>;
64 #address-cells = <1>;
65 #size-cells = <1>;
66 partition@0 {
67 label = "qspi-fsbl-uboot-bs";
68 reg = <0x0 0x400000>; /* 4MB */
69 };
Michal Simek3f3a2132018-03-27 14:31:42 +020070 partition@400000 {
Michal Simek9e996ec2017-11-02 09:18:42 +010071 label = "qspi-linux";
72 reg = <0x400000 0x400000>; /* 4MB */
73 };
Michal Simek3f3a2132018-03-27 14:31:42 +020074 partition@800000 {
Michal Simek9e996ec2017-11-02 09:18:42 +010075 label = "qspi-rootfs";
76 reg = <0x800000 0x400000>; /* 4MB */
77 };
Michal Simek3f3a2132018-03-27 14:31:42 +020078 partition@c00000 {
Michal Simek9e996ec2017-11-02 09:18:42 +010079 label = "qspi-devicetree";
80 reg = <0xc00000 0x100000>; /* 1MB */
81 };
Michal Simek3f3a2132018-03-27 14:31:42 +020082 partition@d00000 {
Michal Simek9e996ec2017-11-02 09:18:42 +010083 label = "qspi-scratch";
84 reg = <0xd00000 0x200000>; /* 2MB */
85 };
Michal Simek3f3a2132018-03-27 14:31:42 +020086 partition@f00000 {
Michal Simek9e996ec2017-11-02 09:18:42 +010087 label = "qspi-uboot-env";
88 reg = <0xf00000 0x100000>; /* 1MB */
89 };
90 };
91};
92
93&sdhci1 {
94 status = "okay";
95 broken-cd ;
96 wp-inverted ;
97};
98
99&uart0 {
Simon Glassd3a98cb2023-02-13 08:56:33 -0700100 bootph-all;
Michal Simek9e996ec2017-11-02 09:18:42 +0100101 status = "okay";
102};
103
104&usb0 {
105 status = "okay";
106 dr_mode = "host";
107 usb-phy = <&usb_phy0>;
108};
109
110&usb1 {
111 status = "okay";
112 dr_mode = "host";
113 usb-phy = <&usb_phy1>;
114};