aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-integrator
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2010-01-16 14:49:39 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-05-02 04:35:31 -0400
commite73a46a3d3df22b379d8adcb59999eafea1d60d5 (patch)
tree20253a507d838d0acc180776ba5e7737111e78df /arch/arm/mach-integrator
parent64fceb1dcd1aa6a9f2e53cf8830b38bb007b375b (diff)
ARM: ICST: move minimum VCO frequency to icst_params
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-integrator')
-rw-r--r--arch/arm/mach-integrator/cpu.c2
-rw-r--r--arch/arm/mach-integrator/impd1.c1
-rw-r--r--arch/arm/mach-integrator/integrator_cp.c1
3 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-integrator/cpu.c b/arch/arm/mach-integrator/cpu.c
index 3ebb785f30c1..569306b8fdb5 100644
--- a/arch/arm/mach-integrator/cpu.c
+++ b/arch/arm/mach-integrator/cpu.c
@@ -34,6 +34,7 @@ static struct cpufreq_driver integrator_driver;
34static const struct icst_params lclk_params = { 34static const struct icst_params lclk_params = {
35 .ref = 24000000, 35 .ref = 24000000,
36 .vco_max = ICST525_VCO_MAX_5V, 36 .vco_max = ICST525_VCO_MAX_5V,
37 .vco_min = ICST525_VCO_MIN,
37 .vd_min = 8, 38 .vd_min = 8,
38 .vd_max = 132, 39 .vd_max = 132,
39 .rd_min = 24, 40 .rd_min = 24,
@@ -43,6 +44,7 @@ static const struct icst_params lclk_params = {
43static const struct icst_params cclk_params = { 44static const struct icst_params cclk_params = {
44 .ref = 24000000, 45 .ref = 24000000,
45 .vco_max = ICST525_VCO_MAX_5V, 46 .vco_max = ICST525_VCO_MAX_5V,
47 .vco_min = ICST525_VCO_MIN,
46 .vd_min = 12, 48 .vd_min = 12,
47 .vd_max = 160, 49 .vd_max = 160,
48 .rd_min = 24, 50 .rd_min = 24,
diff --git a/arch/arm/mach-integrator/impd1.c b/arch/arm/mach-integrator/impd1.c
index ecce3eb8fe00..036cfb452735 100644
--- a/arch/arm/mach-integrator/impd1.c
+++ b/arch/arm/mach-integrator/impd1.c
@@ -43,6 +43,7 @@ struct impd1_module {
43static const struct icst_params impd1_vco_params = { 43static const struct icst_params impd1_vco_params = {
44 .ref = 24000000, /* 24 MHz */ 44 .ref = 24000000, /* 24 MHz */
45 .vco_max = ICST525_VCO_MAX_3V, 45 .vco_max = ICST525_VCO_MAX_3V,
46 .vco_min = ICST525_VCO_MIN,
46 .vd_min = 12, 47 .vd_min = 12,
47 .vd_max = 519, 48 .vd_max = 519,
48 .rd_min = 3, 49 .rd_min = 3,
diff --git a/arch/arm/mach-integrator/integrator_cp.c b/arch/arm/mach-integrator/integrator_cp.c
index 335af99acb79..34c120ad1292 100644
--- a/arch/arm/mach-integrator/integrator_cp.c
+++ b/arch/arm/mach-integrator/integrator_cp.c
@@ -271,6 +271,7 @@ static void __init intcp_init_irq(void)
271static const struct icst_params cp_auxvco_params = { 271static const struct icst_params cp_auxvco_params = {
272 .ref = 24000000, 272 .ref = 24000000,
273 .vco_max = ICST525_VCO_MAX_5V, 273 .vco_max = ICST525_VCO_MAX_5V,
274 .vco_min = ICST525_VCO_MIN,
274 .vd_min = 8, 275 .vd_min = 8,
275 .vd_max = 263, 276 .vd_max = 263,
276 .rd_min = 3, 277 .rd_min = 3,