zynq-7000.dtsi 5.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 *  Copyright (C) 2011 Xilinx
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */
13
/include/ "skeleton.dtsi"
14 15

/ {
16
	compatible = "xlnx,zynq-7000";
17

S
Soren Brinkmann 已提交
18 19 20 21 22 23 24 25 26
	cpus {
		#address-cells = <1>;
		#size-cells = <0>;

		cpu@0 {
			compatible = "arm,cortex-a9";
			device_type = "cpu";
			reg = <0>;
			clocks = <&clkc 3>;
27
			clock-latency = <1000>;
28 29 30 31 32 33
			operating-points = <
				/* kHz    uV */
				666667  1000000
				333334  1000000
				222223  1000000
			>;
S
Soren Brinkmann 已提交
34 35 36 37 38 39 40 41 42 43
		};

		cpu@1 {
			compatible = "arm,cortex-a9";
			device_type = "cpu";
			reg = <1>;
			clocks = <&clkc 3>;
		};
	};

M
Michal Simek 已提交
44 45 46 47 48 49 50
	pmu {
		compatible = "arm,cortex-a9-pmu";
		interrupts = <0 5 4>, <0 6 4>;
		interrupt-parent = <&intc>;
		reg = < 0xf8891000 0x1000 0xf8893000 0x1000 >;
	};

51 52 53 54
	amba {
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
55
		interrupt-parent = <&intc>;
56 57
		ranges;

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
		i2c0: zynq-i2c@e0004000 {
			compatible = "cdns,i2c-r1p10";
			status = "disabled";
			clocks = <&clkc 38>;
			interrupt-parent = <&intc>;
			interrupts = <0 25 4>;
			reg = <0xe0004000 0x1000>;
			#address-cells = <1>;
			#size-cells = <0>;
		};

		i2c1: zynq-i2c@e0005000 {
			compatible = "cdns,i2c-r1p10";
			status = "disabled";
			clocks = <&clkc 39>;
			interrupt-parent = <&intc>;
			interrupts = <0 48 4>;
			reg = <0xe0005000 0x1000>;
			#address-cells = <1>;
			#size-cells = <0>;
		};

80
		intc: interrupt-controller@f8f01000 {
81 82
			compatible = "arm,cortex-a9-gic";
			#interrupt-cells = <3>;
83
			interrupt-controller;
84 85
			reg = <0xF8F01000 0x1000>,
			      <0xF8F00100 0x100>;
86 87
		};

88 89 90
		L2: cache-controller {
			compatible = "arm,pl310-cache";
			reg = <0xF8F02000 0x1000>;
91 92
			arm,data-latency = <3 2 2>;
			arm,tag-latency = <2 2 2>;
93 94 95 96
			cache-unified;
			cache-level = <2>;
		};

97 98
		uart0: uart@e0000000 {
			compatible = "xlnx,xuartps";
99
			status = "disabled";
100 101
			clocks = <&clkc 23>, <&clkc 40>;
			clock-names = "ref_clk", "aper_clk";
102
			reg = <0xE0000000 0x1000>;
103
			interrupts = <0 27 4>;
104
		};
105 106 107

		uart1: uart@e0001000 {
			compatible = "xlnx,xuartps";
108
			status = "disabled";
109 110
			clocks = <&clkc 24>, <&clkc 41>;
			clock-names = "ref_clk", "aper_clk";
111 112 113
			reg = <0xE0001000 0x1000>;
			interrupts = <0 50 4>;
		};
J
Josh Cartwright 已提交
114

S
Steffen Trumtrar 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
		gem0: ethernet@e000b000 {
			compatible = "cdns,gem";
			reg = <0xe000b000 0x4000>;
			status = "disabled";
			interrupts = <0 22 4>;
			clocks = <&clkc 30>, <&clkc 30>, <&clkc 13>;
			clock-names = "pclk", "hclk", "tx_clk";
		};

		gem1: ethernet@e000c000 {
			compatible = "cdns,gem";
			reg = <0xe000c000 0x4000>;
			status = "disabled";
			interrupts = <0 45 4>;
			clocks = <&clkc 31>, <&clkc 31>, <&clkc 14>;
			clock-names = "pclk", "hclk", "tx_clk";
		};

133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
		sdhci0: ps7-sdhci@e0100000 {
			compatible = "arasan,sdhci-8.9a";
			status = "disabled";
			clock-names = "clk_xin", "clk_ahb";
			clocks = <&clkc 21>, <&clkc 32>;
			interrupt-parent = <&intc>;
			interrupts = <0 24 4>;
			reg = <0xe0100000 0x1000>;
		} ;

		sdhci1: ps7-sdhci@e0101000 {
			compatible = "arasan,sdhci-8.9a";
			status = "disabled";
			clock-names = "clk_xin", "clk_ahb";
			clocks = <&clkc 22>, <&clkc 33>;
			interrupt-parent = <&intc>;
			interrupts = <0 47 4>;
			reg = <0xe0101000 0x1000>;
		} ;

J
Josh Cartwright 已提交
153
		slcr: slcr@f8000000 {
154 155
			#address-cells = <1>;
			#size-cells = <1>;
156
			compatible = "xlnx,zynq-slcr", "syscon";
J
Josh Cartwright 已提交
157
			reg = <0xF8000000 0x1000>;
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
			ranges;
			clkc: clkc@100 {
				#clock-cells = <1>;
				compatible = "xlnx,ps7-clkc";
				ps-clk-frequency = <33333333>;
				fclk-enable = <0>;
				clock-output-names = "armpll", "ddrpll", "iopll", "cpu_6or4x",
						"cpu_3or2x", "cpu_2x", "cpu_1x", "ddr2x", "ddr3x",
						"dci", "lqspi", "smc", "pcap", "gem0", "gem1",
						"fclk0", "fclk1", "fclk2", "fclk3", "can0", "can1",
						"sdio0", "sdio1", "uart0", "uart1", "spi0", "spi1",
						"dma", "usb0_aper", "usb1_aper", "gem0_aper",
						"gem1_aper", "sdio0_aper", "sdio1_aper",
						"spi0_aper", "spi1_aper", "can0_aper", "can1_aper",
						"i2c0_aper", "i2c1_aper", "uart0_aper", "uart1_aper",
						"gpio_aper", "lqspi_aper", "smc_aper", "swdt",
						"dbg_trc", "dbg_apb";
				reg = <0x100 0x100>;
J
Josh Cartwright 已提交
176 177
			};
		};
178

179 180 181 182 183 184 185 186
		global_timer: timer@f8f00200 {
			compatible = "arm,cortex-a9-global-timer";
			reg = <0xf8f00200 0x20>;
			interrupts = <1 11 0x301>;
			interrupt-parent = <&intc>;
			clocks = <&clkc 4>;
		};

187
		ttc0: ttc0@f8001000 {
188 189 190
			interrupt-parent = <&intc>;
			interrupts = < 0 10 4 0 11 4 0 12 4 >;
			compatible = "cdns,ttc";
191
			clocks = <&clkc 6>;
192 193 194 195
			reg = <0xF8001000 0x1000>;
		};

		ttc1: ttc1@f8002000 {
196 197 198
			interrupt-parent = <&intc>;
			interrupts = < 0 37 4 0 38 4 0 39 4 >;
			compatible = "cdns,ttc";
199
			clocks = <&clkc 6>;
200 201
			reg = <0xF8002000 0x1000>;
		};
M
Michal Simek 已提交
202 203 204 205 206
		scutimer: scutimer@f8f00600 {
			interrupt-parent = <&intc>;
			interrupts = < 1 13 0x301 >;
			compatible = "arm,cortex-a9-twd-timer";
			reg = < 0xf8f00600 0x20 >;
207
			clocks = <&clkc 4>;
M
Michal Simek 已提交
208
		} ;
209 210
	};
};