blob: 8b30e596deabfb84a1bd42739af81d962c91ade8 [file] [log] [blame]
John Linnb85a3ef2011-06-20 11:47:27 -06001/*
2 * Copyright (C) 2011 Xilinx
3 *
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
Josh Cartwrighte06f1a92012-10-31 12:24:48 -060013/include/ "skeleton.dtsi"
John Linnb85a3ef2011-06-20 11:47:27 -060014
John Linnb85a3ef2011-06-20 11:47:27 -060015/ {
Josh Cartwrighte06f1a92012-10-31 12:24:48 -060016 compatible = "xlnx,zynq-7000";
John Linnb85a3ef2011-06-20 11:47:27 -060017
18 amba {
19 compatible = "simple-bus";
20 #address-cells = <1>;
21 #size-cells = <1>;
Josh Cartwrighte06f1a92012-10-31 12:24:48 -060022 interrupt-parent = <&intc>;
John Linnb85a3ef2011-06-20 11:47:27 -060023 ranges;
24
25 intc: interrupt-controller@f8f01000 {
Josh Cartwrightf447ed22012-10-17 19:46:49 -050026 compatible = "arm,cortex-a9-gic";
27 #interrupt-cells = <3>;
28 #address-cells = <1>;
John Linnb85a3ef2011-06-20 11:47:27 -060029 interrupt-controller;
Josh Cartwrightf447ed22012-10-17 19:46:49 -050030 reg = <0xF8F01000 0x1000>,
31 <0xF8F00100 0x100>;
John Linnb85a3ef2011-06-20 11:47:27 -060032 };
33
Josh Cartwright0fcfdbc2012-10-23 17:34:22 -050034 L2: cache-controller {
35 compatible = "arm,pl310-cache";
36 reg = <0xF8F02000 0x1000>;
37 arm,data-latency = <2 3 2>;
38 arm,tag-latency = <2 3 2>;
39 cache-unified;
40 cache-level = <2>;
41 };
42
John Linnb85a3ef2011-06-20 11:47:27 -060043 uart0: uart@e0000000 {
44 compatible = "xlnx,xuartps";
45 reg = <0xE0000000 0x1000>;
Josh Cartwrightf447ed22012-10-17 19:46:49 -050046 interrupts = <0 27 4>;
John Linnb85a3ef2011-06-20 11:47:27 -060047 clock = <50000000>;
48 };
Josh Cartwright78d67852012-10-31 13:45:17 -060049
50 uart1: uart@e0001000 {
51 compatible = "xlnx,xuartps";
52 reg = <0xE0001000 0x1000>;
53 interrupts = <0 50 4>;
54 clock = <50000000>;
55 };
John Linnb85a3ef2011-06-20 11:47:27 -060056 };
57};