Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 1 | /* |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 2 | * Blackfin core clock scaling |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 3 | * |
Michael Hennerich | 8944b5a | 2011-02-28 21:23:36 +0000 | [diff] [blame] | 4 | * Copyright 2008-2011 Analog Devices Inc. |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 5 | * |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 6 | * Licensed under the GPL-2 or later. |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/kernel.h> |
Paul Gortmaker | 6a550b9 | 2011-08-09 16:54:30 -0400 | [diff] [blame] | 10 | #include <linux/module.h> |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 11 | #include <linux/types.h> |
| 12 | #include <linux/init.h> |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 13 | #include <linux/clk.h> |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 14 | #include <linux/cpufreq.h> |
| 15 | #include <linux/fs.h> |
Graf Yang | 7998a87 | 2010-03-08 03:01:35 +0000 | [diff] [blame] | 16 | #include <linux/delay.h> |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 17 | #include <asm/blackfin.h> |
| 18 | #include <asm/time.h> |
Mike Frysinger | 761ec44 | 2009-10-15 17:12:05 +0000 | [diff] [blame] | 19 | #include <asm/dpmc.h> |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 20 | |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 21 | |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 22 | /* this is the table of CCLK frequencies, in Hz */ |
Michael Hennerich | 8944b5a | 2011-02-28 21:23:36 +0000 | [diff] [blame] | 23 | /* .index is the entry in the auxiliary dpm_state_table[] */ |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 24 | static struct cpufreq_frequency_table bfin_freq_table[] = { |
| 25 | { |
| 26 | .frequency = CPUFREQ_TABLE_END, |
| 27 | .index = 0, |
| 28 | }, |
| 29 | { |
| 30 | .frequency = CPUFREQ_TABLE_END, |
| 31 | .index = 1, |
| 32 | }, |
| 33 | { |
| 34 | .frequency = CPUFREQ_TABLE_END, |
| 35 | .index = 2, |
| 36 | }, |
| 37 | { |
| 38 | .frequency = CPUFREQ_TABLE_END, |
| 39 | .index = 0, |
| 40 | }, |
| 41 | }; |
| 42 | |
| 43 | static struct bfin_dpm_state { |
| 44 | unsigned int csel; /* system clock divider */ |
| 45 | unsigned int tscale; /* change the divider on the core timer interrupt */ |
| 46 | } dpm_state_table[3]; |
| 47 | |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 48 | #if defined(CONFIG_CYCLES_CLOCKSOURCE) |
Vitja Makarov | 1bfb4b2 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 49 | /* |
Michael Hennerich | 8944b5a | 2011-02-28 21:23:36 +0000 | [diff] [blame] | 50 | * normalized to maximum frequency offset for CYCLES, |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 51 | * used in time-ts cycles clock source, but could be used |
| 52 | * somewhere also. |
Vitja Makarov | 1bfb4b2 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 53 | */ |
| 54 | unsigned long long __bfin_cycles_off; |
| 55 | unsigned int __bfin_cycles_mod; |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 56 | #endif |
Vitja Makarov | 1bfb4b2 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 57 | |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 58 | /**************************************************************************/ |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 59 | static void __init bfin_init_tables(unsigned long cclk, unsigned long sclk) |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 60 | { |
| 61 | |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 62 | unsigned long csel, min_cclk; |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 63 | int index; |
| 64 | |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 65 | /* Anomaly 273 seems to still exist on non-BF54x w/dcache turned on */ |
Sonic Zhang | 7f3aee3 | 2009-05-07 10:04:19 +0000 | [diff] [blame] | 66 | #if ANOMALY_05000273 || ANOMALY_05000274 || \ |
Sonic Zhang | 7c7d027 | 2012-07-17 13:40:15 +0800 | [diff] [blame] | 67 | (!(defined(CONFIG_BF54x) || defined(CONFIG_BF60x)) \ |
| 68 | && defined(CONFIG_BFIN_EXTMEM_DCACHEABLE)) |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 69 | min_cclk = sclk * 2; |
| 70 | #else |
| 71 | min_cclk = sclk; |
| 72 | #endif |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 73 | |
| 74 | #ifndef CONFIG_BF60x |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 75 | csel = ((bfin_read_PLL_DIV() & CSEL) >> 4); |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 76 | #else |
| 77 | csel = bfin_read32(CGU0_DIV) & 0x1F; |
| 78 | #endif |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 79 | |
James Cosin | 810f151 | 2012-08-20 11:55:36 +0800 | [diff] [blame] | 80 | for (index = 0; (cclk >> index) >= min_cclk && csel <= 3 && index < 3; index++, csel++) { |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 81 | bfin_freq_table[index].frequency = cclk >> index; |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 82 | #ifndef CONFIG_BF60x |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 83 | dpm_state_table[index].csel = csel << 4; /* Shift now into PLL_DIV bitpos */ |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 84 | #else |
| 85 | dpm_state_table[index].csel = csel; |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 86 | #endif |
James Cosin | 810f151 | 2012-08-20 11:55:36 +0800 | [diff] [blame] | 87 | dpm_state_table[index].tscale = (TIME_SCALE >> index) - 1; |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 88 | |
Michael Hennerich | a10101d | 2008-10-28 14:18:29 +0800 | [diff] [blame] | 89 | pr_debug("cpufreq: freq:%d csel:0x%x tscale:%d\n", |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 90 | bfin_freq_table[index].frequency, |
| 91 | dpm_state_table[index].csel, |
| 92 | dpm_state_table[index].tscale); |
| 93 | } |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 94 | return; |
| 95 | } |
| 96 | |
| 97 | static void bfin_adjust_core_timer(void *info) |
| 98 | { |
| 99 | unsigned int tscale; |
| 100 | unsigned int index = *(unsigned int *)info; |
| 101 | |
| 102 | /* we have to adjust the core timer, because it is using cclk */ |
| 103 | tscale = dpm_state_table[index].tscale; |
| 104 | bfin_write_TSCALE(tscale); |
| 105 | return; |
| 106 | } |
| 107 | |
| 108 | static unsigned int bfin_getfreq_khz(unsigned int cpu) |
| 109 | { |
| 110 | /* Both CoreA/B have the same core clock */ |
| 111 | return get_cclk() / 1000; |
| 112 | } |
| 113 | |
Bob Liu | 3a3cf0d | 2012-05-17 14:21:22 +0800 | [diff] [blame] | 114 | #ifdef CONFIG_BF60x |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 115 | unsigned long cpu_set_cclk(int cpu, unsigned long new) |
| 116 | { |
| 117 | struct clk *clk; |
| 118 | int ret; |
| 119 | |
| 120 | clk = clk_get(NULL, "CCLK"); |
| 121 | if (IS_ERR(clk)) |
| 122 | return -ENODEV; |
| 123 | |
| 124 | ret = clk_set_rate(clk, new); |
| 125 | clk_put(clk); |
| 126 | return ret; |
| 127 | } |
Bob Liu | 3a3cf0d | 2012-05-17 14:21:22 +0800 | [diff] [blame] | 128 | #endif |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 129 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 130 | static int bfin_target(struct cpufreq_policy *policy, |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 131 | unsigned int target_freq, unsigned int relation) |
| 132 | { |
Bob Liu | 3a3cf0d | 2012-05-17 14:21:22 +0800 | [diff] [blame] | 133 | #ifndef CONFIG_BF60x |
| 134 | unsigned int plldiv; |
| 135 | #endif |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 136 | unsigned int index; |
Steven Miao | 5204e47 | 2012-10-08 14:18:34 +0800 | [diff] [blame] | 137 | unsigned long cclk_hz; |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 138 | struct cpufreq_freqs freqs; |
Graf Yang | 7998a87 | 2010-03-08 03:01:35 +0000 | [diff] [blame] | 139 | static unsigned long lpj_ref; |
| 140 | static unsigned int lpj_ref_freq; |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 141 | int ret = 0; |
Graf Yang | 7998a87 | 2010-03-08 03:01:35 +0000 | [diff] [blame] | 142 | |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 143 | #if defined(CONFIG_CYCLES_CLOCKSOURCE) |
| 144 | cycles_t cycles; |
| 145 | #endif |
| 146 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 147 | if (cpufreq_frequency_table_target(policy, bfin_freq_table, target_freq, |
| 148 | relation, &index)) |
| 149 | return -EINVAL; |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 150 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 151 | cclk_hz = bfin_freq_table[index].frequency; |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 152 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 153 | freqs.old = bfin_getfreq_khz(0); |
| 154 | freqs.new = cclk_hz; |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 155 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 156 | pr_debug("cpufreq: changing cclk to %lu; target = %u, oldfreq = %u\n", |
| 157 | cclk_hz, target_freq, freqs.old); |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 158 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 159 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE); |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 160 | #ifndef CONFIG_BF60x |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 161 | plldiv = (bfin_read_PLL_DIV() & SSEL) | dpm_state_table[index].csel; |
| 162 | bfin_write_PLL_DIV(plldiv); |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 163 | #else |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 164 | ret = cpu_set_cclk(policy->cpu, freqs.new * 1000); |
| 165 | if (ret != 0) { |
| 166 | WARN_ONCE(ret, "cpufreq set freq failed %d\n", ret); |
| 167 | return ret; |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 168 | } |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 169 | #endif |
| 170 | on_each_cpu(bfin_adjust_core_timer, &index, 1); |
| 171 | #if defined(CONFIG_CYCLES_CLOCKSOURCE) |
| 172 | cycles = get_cycles(); |
| 173 | SSYNC(); |
| 174 | cycles += 10; /* ~10 cycles we lose after get_cycles() */ |
| 175 | __bfin_cycles_off += (cycles << __bfin_cycles_mod) - (cycles << index); |
| 176 | __bfin_cycles_mod = index; |
| 177 | #endif |
| 178 | if (!lpj_ref_freq) { |
| 179 | lpj_ref = loops_per_jiffy; |
| 180 | lpj_ref_freq = freqs.old; |
| 181 | } |
| 182 | if (freqs.new != freqs.old) { |
| 183 | loops_per_jiffy = cpufreq_scale(lpj_ref, |
| 184 | lpj_ref_freq, freqs.new); |
| 185 | } |
| 186 | |
| 187 | /* TODO: just test case for cycles clock source, remove later */ |
| 188 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE); |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 189 | |
| 190 | pr_debug("cpufreq: done\n"); |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 191 | return ret; |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | static int bfin_verify_speed(struct cpufreq_policy *policy) |
| 195 | { |
| 196 | return cpufreq_frequency_table_verify(policy, bfin_freq_table); |
| 197 | } |
| 198 | |
Steven Miao | 9690031 | 2012-05-16 17:49:52 +0800 | [diff] [blame] | 199 | static int __bfin_cpu_init(struct cpufreq_policy *policy) |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 200 | { |
| 201 | |
| 202 | unsigned long cclk, sclk; |
| 203 | |
| 204 | cclk = get_cclk() / 1000; |
| 205 | sclk = get_sclk() / 1000; |
| 206 | |
| 207 | if (policy->cpu == CPUFREQ_CPU) |
| 208 | bfin_init_tables(cclk, sclk); |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 209 | |
Michael Hennerich | d887a1c | 2009-09-25 09:03:21 +0000 | [diff] [blame] | 210 | policy->cpuinfo.transition_latency = 50000; /* 50us assumed */ |
| 211 | |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 212 | policy->cur = cclk; |
| 213 | cpufreq_frequency_table_get_attr(bfin_freq_table, policy->cpu); |
| 214 | return cpufreq_frequency_table_cpuinfo(policy, bfin_freq_table); |
| 215 | } |
| 216 | |
| 217 | static struct freq_attr *bfin_freq_attr[] = { |
| 218 | &cpufreq_freq_attr_scaling_available_freqs, |
| 219 | NULL, |
| 220 | }; |
| 221 | |
| 222 | static struct cpufreq_driver bfin_driver = { |
| 223 | .verify = bfin_verify_speed, |
| 224 | .target = bfin_target, |
Michael Hennerich | a10101d | 2008-10-28 14:18:29 +0800 | [diff] [blame] | 225 | .get = bfin_getfreq_khz, |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 226 | .init = __bfin_cpu_init, |
| 227 | .name = "bfin cpufreq", |
| 228 | .owner = THIS_MODULE, |
| 229 | .attr = bfin_freq_attr, |
| 230 | }; |
| 231 | |
| 232 | static int __init bfin_cpu_init(void) |
| 233 | { |
| 234 | return cpufreq_register_driver(&bfin_driver); |
| 235 | } |
| 236 | |
| 237 | static void __exit bfin_cpu_exit(void) |
| 238 | { |
| 239 | cpufreq_unregister_driver(&bfin_driver); |
| 240 | } |
| 241 | |
| 242 | MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>"); |
| 243 | MODULE_DESCRIPTION("cpufreq driver for Blackfin"); |
| 244 | MODULE_LICENSE("GPL"); |
| 245 | |
| 246 | module_init(bfin_cpu_init); |
| 247 | module_exit(bfin_cpu_exit); |