aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoren Brinkmann <soren.brinkmann@xilinx.com>2013-11-26 20:04:49 -0500
committerMichal Simek <michal.simek@xilinx.com>2013-12-12 03:50:23 -0500
commit41e4cdb95efa7e8fc88c65cb3c7221e89b9efb49 (patch)
treefd0467831f7a4c512aa6253bbd68d21d6d643ec3
parent204accaf18d84dd9dc4a98f37c82053f79b9b931 (diff)
arm: dt: zynq: Add 'cpus' node
Add a 'cpus' node to describe the CPU cores of Zynq. Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com> Acked-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r--arch/arm/boot/dts/zynq-7000.dtsi19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/zynq-7000.dtsi b/arch/arm/boot/dts/zynq-7000.dtsi
index 3ea27e44b825..5d7681be0580 100644
--- a/arch/arm/boot/dts/zynq-7000.dtsi
+++ b/arch/arm/boot/dts/zynq-7000.dtsi
@@ -15,6 +15,25 @@
15/ { 15/ {
16 compatible = "xlnx,zynq-7000"; 16 compatible = "xlnx,zynq-7000";
17 17
18 cpus {
19 #address-cells = <1>;
20 #size-cells = <0>;
21
22 cpu@0 {
23 compatible = "arm,cortex-a9";
24 device_type = "cpu";
25 reg = <0>;
26 clocks = <&clkc 3>;
27 };
28
29 cpu@1 {
30 compatible = "arm,cortex-a9";
31 device_type = "cpu";
32 reg = <1>;
33 clocks = <&clkc 3>;
34 };
35 };
36
18 pmu { 37 pmu {
19 compatible = "arm,cortex-a9-pmu"; 38 compatible = "arm,cortex-a9-pmu";
20 interrupts = <0 5 4>, <0 6 4>; 39 interrupts = <0 5 4>, <0 6 4>;