blob: f5b9898d9c6e60330417abc3cfad494d27474d75 [file] [log] [blame]
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001/ {
2 #address-cells = <1>;
3 #size-cells = <1>;
4
5 cpus {
6 #address-cells = <1>;
7 #size-cells = <0>;
8 cpu@0 {
Srinivas Kandagatla95e8ce62013-08-01 13:13:31 +01009 device_type = "cpu";
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +010010 compatible = "arm,cortex-a9";
11 reg = <0>;
12 };
13 cpu@1 {
Srinivas Kandagatla95e8ce62013-08-01 13:13:31 +010014 device_type = "cpu";
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +010015 compatible = "arm,cortex-a9";
16 reg = <1>;
17 };
18 };
19
20 intc: interrupt-controller@fffe1000 {
21 compatible = "arm,cortex-a9-gic";
22 #interrupt-cells = <3>;
23 interrupt-controller;
24 reg = <0xfffe1000 0x1000>,
25 <0xfffe0100 0x100>;
26 };
27
28 scu@fffe0000 {
29 compatible = "arm,cortex-a9-scu";
30 reg = <0xfffe0000 0x1000>;
31 };
32
33 timer@fffe0200 {
34 interrupt-parent = <&intc>;
35 compatible = "arm,cortex-a9-global-timer";
36 reg = <0xfffe0200 0x100>;
37 interrupts = <1 11 0x04>;
38 clocks = <&arm_periph_clk>;
39 };
40};