aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/dts
diff options
context:
space:
mode:
authorKukjin Kim <kgene.kim@samsung.com>2012-12-06 02:54:10 -0500
committerKukjin Kim <kgene.kim@samsung.com>2013-03-07 05:39:50 -0500
commitf5108e1c5168991173d4184002158b57d03971fd (patch)
tree58ac21f62f4dd20c71b3a56d0c2a643db21e0609 /arch/arm/boot/dts
parent49498c5609f5cdef6768eeb932dbc4d81b907c33 (diff)
ARM: dts: re-organized cpu node for exynos5440
This patch adds timer node and re-organizes cpu node for exynos5440. Acked-by: Thomas Abraham <thomas.ab@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/boot/dts')
-rw-r--r--arch/arm/boot/dts/exynos5440.dtsi37
1 files changed, 17 insertions, 20 deletions
diff --git a/arch/arm/boot/dts/exynos5440.dtsi b/arch/arm/boot/dts/exynos5440.dtsi
index 1e7a2b060bde..5c5a69954d8b 100644
--- a/arch/arm/boot/dts/exynos5440.dtsi
+++ b/arch/arm/boot/dts/exynos5440.dtsi
@@ -24,40 +24,37 @@
24 }; 24 };
25 25
26 cpus { 26 cpus {
27 #address-cells = <1>;
28 #size-cells = <0>;
29
27 cpu@0 { 30 cpu@0 {
28 compatible = "arm,cortex-a15"; 31 compatible = "arm,cortex-a15";
29 timer { 32 reg = <0>;
30 compatible = "arm,armv7-timer";
31 interrupts = <1 13 0xf08>;
32 clock-frequency = <1000000>;
33 };
34 }; 33 };
35 cpu@1 { 34 cpu@1 {
36 compatible = "arm,cortex-a15"; 35 compatible = "arm,cortex-a15";
37 timer { 36 reg = <1>;
38 compatible = "arm,armv7-timer";
39 interrupts = <1 14 0xf08>;
40 clock-frequency = <1000000>;
41 };
42 }; 37 };
43 cpu@2 { 38 cpu@2 {
44 compatible = "arm,cortex-a15"; 39 compatible = "arm,cortex-a15";
45 timer { 40 reg = <2>;
46 compatible = "arm,armv7-timer";
47 interrupts = <1 14 0xf08>;
48 clock-frequency = <1000000>;
49 };
50 }; 41 };
51 cpu@3 { 42 cpu@3 {
52 compatible = "arm,cortex-a15"; 43 compatible = "arm,cortex-a15";
53 timer { 44 reg = <3>;
54 compatible = "arm,armv7-timer";
55 interrupts = <1 14 0xf08>;
56 clock-frequency = <1000000>;
57 };
58 }; 45 };
59 }; 46 };
60 47
48 timer {
49 compatible = "arm,cortex-a15-timer",
50 "arm,armv7-timer";
51 interrupts = <1 13 0xf08>,
52 <1 14 0xf08>,
53 <1 11 0xf08>,
54 <1 10 0xf08>;
55 clock-frequency = <50000000>;
56 };
57
61 serial@B0000 { 58 serial@B0000 {
62 compatible = "samsung,exynos4210-uart"; 59 compatible = "samsung,exynos4210-uart";
63 reg = <0xB0000 0x1000>; 60 reg = <0xB0000 0x1000>;