diff options
author | James Cosin <jkosin@intcomgrp.com> | 2012-08-19 23:55:36 -0400 |
---|---|---|
committer | Bob Liu <lliubbo@gmail.com> | 2012-10-08 02:36:29 -0400 |
commit | 810f1512dc8a1f64c22229c3def85fc398b6a24f (patch) | |
tree | 3102b28e57030bacaee88a758710bc68dd20821c /arch/blackfin/mach-common/cpufreq.c | |
parent | ce8609146d09df213ed1e842ece7ad477e0ab7a6 (diff) |
Blackfin: cpufreq: fix dpm_state_table
This patch fixes an assumption that cclk's initial divisor will always be 1 (or
0 in the register). TSCALE is always initialized on startup with a value of 4
regardless of the inital cclk divisor; so, we can't make the assumption without
making lots of other assumptions. The TPERIOD value is set with a value of the
current cclk (value / (HZ * TSCALE)) - 1; so, we need to adjust based on this
initial frequency and not use cclk's initial divisor for adjusting the tscale.
Signed-off-by: Steven Miao <realmz6@gmail.com>
Signed-off-by: Bob Liu <lliubbo@gmail.com>
Diffstat (limited to 'arch/blackfin/mach-common/cpufreq.c')
-rw-r--r-- | arch/blackfin/mach-common/cpufreq.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/blackfin/mach-common/cpufreq.c b/arch/blackfin/mach-common/cpufreq.c index c854a27cbeab..65a4511e1d1f 100644 --- a/arch/blackfin/mach-common/cpufreq.c +++ b/arch/blackfin/mach-common/cpufreq.c | |||
@@ -77,15 +77,14 @@ static void __init bfin_init_tables(unsigned long cclk, unsigned long sclk) | |||
77 | csel = bfin_read32(CGU0_DIV) & 0x1F; | 77 | csel = bfin_read32(CGU0_DIV) & 0x1F; |
78 | #endif | 78 | #endif |
79 | 79 | ||
80 | for (index = 0; (cclk >> index) >= min_cclk && csel <= 3; index++, csel++) { | 80 | for (index = 0; (cclk >> index) >= min_cclk && csel <= 3 && index < 3; index++, csel++) { |
81 | bfin_freq_table[index].frequency = cclk >> index; | 81 | bfin_freq_table[index].frequency = cclk >> index; |
82 | #ifndef CONFIG_BF60x | 82 | #ifndef CONFIG_BF60x |
83 | dpm_state_table[index].csel = csel << 4; /* Shift now into PLL_DIV bitpos */ | 83 | dpm_state_table[index].csel = csel << 4; /* Shift now into PLL_DIV bitpos */ |
84 | dpm_state_table[index].tscale = (TIME_SCALE / (1 << csel)) - 1; | ||
85 | #else | 84 | #else |
86 | dpm_state_table[index].csel = csel; | 85 | dpm_state_table[index].csel = csel; |
87 | dpm_state_table[index].tscale = TIME_SCALE >> index; | ||
88 | #endif | 86 | #endif |
87 | dpm_state_table[index].tscale = (TIME_SCALE >> index) - 1; | ||
89 | 88 | ||
90 | pr_debug("cpufreq: freq:%d csel:0x%x tscale:%d\n", | 89 | pr_debug("cpufreq: freq:%d csel:0x%x tscale:%d\n", |
91 | bfin_freq_table[index].frequency, | 90 | bfin_freq_table[index].frequency, |