diff options
author | Benoit Cousson <bcousson@baylibre.com> | 2014-06-03 08:02:24 -0400 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2014-06-17 06:58:20 -0400 |
commit | b989e1386385466761f703b8a91e00468bb5ca2a (patch) | |
tree | 6c61a97c5d2b93fa551e53663000957af3681bc9 /arch/arm/boot/dts/r8a7790.dtsi | |
parent | 05f72e03b7553958609d1475c79491f90e6b50d3 (diff) |
ARM: shmobile: r8a7790/lager dts: Add DVFS parameters into cpu0 node for r8a7790
Add needed information inside CPU0 for the generic cpufreq-cpu0 driver.
- voltage-tolerance = 1%
It reflects the tolerance for the CPU voltage defined inside the OPP
table. Due to the lack of proper OPP definition, use an arbitrary safe
value.
- clock-latency = 300 us
Approximate worst-case latency to do a full DVFS transition for every
OPPs. Due to the lack of HW information, use an arbitrary safe value.
Note: The term transition-latency will be more accurate to define this
value since the clock transition latency is not the only parameter that
will define the overall DVFS transition.
- operating-points = < kHz - uV >
List of 6 operating points. All of them are using the same voltage
since the valid Vmin voltage is not documented in the HW spec.
- clocks
phandle to the CPU clock source. This clock source is used for all the
4 CortexA15 located inside the same cluster.
Signed-off-by: Benoit Cousson <bcousson+renesas@baylibre.com>
[gaku.inami.xw@bp.renesas.com: Change the setting of OPPs for ES2.0]
Signed-off-by: Gaku Inami <gaku.inami.xw@bp.renesas.com>
Acked-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/boot/dts/r8a7790.dtsi')
-rw-r--r-- | arch/arm/boot/dts/r8a7790.dtsi | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/r8a7790.dtsi b/arch/arm/boot/dts/r8a7790.dtsi index e2c7d6df5be4..e990d3c4fe62 100644 --- a/arch/arm/boot/dts/r8a7790.dtsi +++ b/arch/arm/boot/dts/r8a7790.dtsi | |||
@@ -44,6 +44,17 @@ | |||
44 | compatible = "arm,cortex-a15"; | 44 | compatible = "arm,cortex-a15"; |
45 | reg = <0>; | 45 | reg = <0>; |
46 | clock-frequency = <1300000000>; | 46 | clock-frequency = <1300000000>; |
47 | voltage-tolerance = <1>; /* 1% */ | ||
48 | clocks = <&cpg_clocks R8A7790_CLK_Z>; | ||
49 | clock-latency = <300000>; /* 300 us */ | ||
50 | |||
51 | /* kHz - uV - OPPs unknown yet */ | ||
52 | operating-points = <1400000 1000000>, | ||
53 | <1225000 1000000>, | ||
54 | <1050000 1000000>, | ||
55 | < 875000 1000000>, | ||
56 | < 700000 1000000>, | ||
57 | < 350000 1000000>; | ||
47 | }; | 58 | }; |
48 | 59 | ||
49 | cpu1: cpu@1 { | 60 | cpu1: cpu@1 { |