aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMagnus Damm <damm+renesas@opensource.se>2014-08-20 09:02:19 -0400
committerSimon Horman <horms+renesas@verge.net.au>2014-08-21 22:31:56 -0400
commit13bd825bdd5c087d156d294b427d05dcf9bff281 (patch)
treeb20ab85b9449e4dfa1e60c8fd70c9a1d0c14dc81
parent2340cd112933ee837aa83017a6da23c72565d501 (diff)
ARM: shmobile: sh73a0: Update DTS to include CPU frequency
Add CPU Frequency information to the sh73a0 DTS file. This will allow us to use the shared C code on sh73a0 and KZM9G which reads out the clock frequency from DT and calculates the delay settings from there. Signed-off-by: Magnus Damm <damm+renesas@opensource.se> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r--arch/arm/boot/dts/sh73a0.dtsi2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/sh73a0.dtsi b/arch/arm/boot/dts/sh73a0.dtsi
index 910b79079d5a..175729e59170 100644
--- a/arch/arm/boot/dts/sh73a0.dtsi
+++ b/arch/arm/boot/dts/sh73a0.dtsi
@@ -23,11 +23,13 @@
23 device_type = "cpu"; 23 device_type = "cpu";
24 compatible = "arm,cortex-a9"; 24 compatible = "arm,cortex-a9";
25 reg = <0>; 25 reg = <0>;
26 clock-frequency = <1196000000>;
26 }; 27 };
27 cpu@1 { 28 cpu@1 {
28 device_type = "cpu"; 29 device_type = "cpu";
29 compatible = "arm,cortex-a9"; 30 compatible = "arm,cortex-a9";
30 reg = <1>; 31 reg = <1>;
32 clock-frequency = <1196000000>;
31 }; 33 };
32 }; 34 };
33 35