blob: 5d7f8ab5509a18fae7e4bbf05d062c70287c09c5 [file] [log] [blame]
Michael Henneriche6c91b62008-04-25 04:58:29 +08001/*
Robin Getz96f10502009-09-24 14:11:24 +00002 * Blackfin core clock scaling
Michael Henneriche6c91b62008-04-25 04:58:29 +08003 *
Robin Getz96f10502009-09-24 14:11:24 +00004 * Copyright 2008-2009 Analog Devices Inc.
Michael Henneriche6c91b62008-04-25 04:58:29 +08005 *
Robin Getz96f10502009-09-24 14:11:24 +00006 * Licensed under the GPL-2 or later.
Michael Henneriche6c91b62008-04-25 04:58:29 +08007 */
8
9#include <linux/kernel.h>
10#include <linux/types.h>
11#include <linux/init.h>
12#include <linux/cpufreq.h>
13#include <linux/fs.h>
14#include <asm/blackfin.h>
15#include <asm/time.h>
Mike Frysinger761ec442009-10-15 17:12:05 +000016#include <asm/dpmc.h>
Michael Henneriche6c91b62008-04-25 04:58:29 +080017
Graf Yang6c2b7072010-01-27 11:16:32 +000018#define CPUFREQ_CPU 0
19
Michael Henneriche6c91b62008-04-25 04:58:29 +080020/* this is the table of CCLK frequencies, in Hz */
21/* .index is the entry in the auxillary dpm_state_table[] */
22static struct cpufreq_frequency_table bfin_freq_table[] = {
23 {
24 .frequency = CPUFREQ_TABLE_END,
25 .index = 0,
26 },
27 {
28 .frequency = CPUFREQ_TABLE_END,
29 .index = 1,
30 },
31 {
32 .frequency = CPUFREQ_TABLE_END,
33 .index = 2,
34 },
35 {
36 .frequency = CPUFREQ_TABLE_END,
37 .index = 0,
38 },
39};
40
41static struct bfin_dpm_state {
42 unsigned int csel; /* system clock divider */
43 unsigned int tscale; /* change the divider on the core timer interrupt */
44} dpm_state_table[3];
45
Graf Yang6c2b7072010-01-27 11:16:32 +000046#if defined(CONFIG_CYCLES_CLOCKSOURCE)
Vitja Makarov1bfb4b22008-05-07 11:41:26 +080047/*
Graf Yang6c2b7072010-01-27 11:16:32 +000048 * normalized to maximum frequncy offset for CYCLES,
49 * used in time-ts cycles clock source, but could be used
50 * somewhere also.
Vitja Makarov1bfb4b22008-05-07 11:41:26 +080051 */
52unsigned long long __bfin_cycles_off;
53unsigned int __bfin_cycles_mod;
Graf Yang6c2b7072010-01-27 11:16:32 +000054#endif
Vitja Makarov1bfb4b22008-05-07 11:41:26 +080055
Michael Henneriche6c91b62008-04-25 04:58:29 +080056/**************************************************************************/
Graf Yang6c2b7072010-01-27 11:16:32 +000057static void __init bfin_init_tables(unsigned long cclk, unsigned long sclk)
Michael Henneriche6c91b62008-04-25 04:58:29 +080058{
59
Graf Yang6c2b7072010-01-27 11:16:32 +000060 unsigned long csel, min_cclk;
Michael Henneriche6c91b62008-04-25 04:58:29 +080061 int index;
62
Graf Yang6c2b7072010-01-27 11:16:32 +000063 /* Anomaly 273 seems to still exist on non-BF54x w/dcache turned on */
Sonic Zhang7f3aee32009-05-07 10:04:19 +000064#if ANOMALY_05000273 || ANOMALY_05000274 || \
Jie Zhang41ba6532009-06-16 09:48:33 +000065 (!defined(CONFIG_BF54x) && defined(CONFIG_BFIN_EXTMEM_DCACHEABLE))
Michael Henneriche6c91b62008-04-25 04:58:29 +080066 min_cclk = sclk * 2;
67#else
68 min_cclk = sclk;
69#endif
70 csel = ((bfin_read_PLL_DIV() & CSEL) >> 4);
71
72 for (index = 0; (cclk >> index) >= min_cclk && csel <= 3; index++, csel++) {
73 bfin_freq_table[index].frequency = cclk >> index;
74 dpm_state_table[index].csel = csel << 4; /* Shift now into PLL_DIV bitpos */
75 dpm_state_table[index].tscale = (TIME_SCALE / (1 << csel)) - 1;
76
Michael Hennericha10101d2008-10-28 14:18:29 +080077 pr_debug("cpufreq: freq:%d csel:0x%x tscale:%d\n",
Michael Henneriche6c91b62008-04-25 04:58:29 +080078 bfin_freq_table[index].frequency,
79 dpm_state_table[index].csel,
80 dpm_state_table[index].tscale);
81 }
Graf Yang6c2b7072010-01-27 11:16:32 +000082 return;
83}
84
85static void bfin_adjust_core_timer(void *info)
86{
87 unsigned int tscale;
88 unsigned int index = *(unsigned int *)info;
89
90 /* we have to adjust the core timer, because it is using cclk */
91 tscale = dpm_state_table[index].tscale;
92 bfin_write_TSCALE(tscale);
93 return;
94}
95
96static unsigned int bfin_getfreq_khz(unsigned int cpu)
97{
98 /* Both CoreA/B have the same core clock */
99 return get_cclk() / 1000;
100}
101
102
103static int bfin_target(struct cpufreq_policy *poli,
104 unsigned int target_freq, unsigned int relation)
105{
106 unsigned int index, plldiv, cpu;
107 unsigned long flags, cclk_hz;
108 struct cpufreq_freqs freqs;
109#if defined(CONFIG_CYCLES_CLOCKSOURCE)
110 cycles_t cycles;
111#endif
112
113 for_each_online_cpu(cpu) {
114 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
115
116 if (!policy)
117 continue;
118
119 if (cpufreq_frequency_table_target(policy, bfin_freq_table,
120 target_freq, relation, &index))
121 return -EINVAL;
122
123 cclk_hz = bfin_freq_table[index].frequency;
124
125 freqs.old = bfin_getfreq_khz(0);
126 freqs.new = cclk_hz;
127 freqs.cpu = cpu;
128
129 pr_debug("cpufreq: changing cclk to %lu; target = %u, oldfreq = %u\n",
130 cclk_hz, target_freq, freqs.old);
131
132 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
133 if (cpu == CPUFREQ_CPU) {
134 local_irq_save_hw(flags);
135 plldiv = (bfin_read_PLL_DIV() & SSEL) |
136 dpm_state_table[index].csel;
137 bfin_write_PLL_DIV(plldiv);
138 on_each_cpu(bfin_adjust_core_timer, &index, 1);
139#if defined(CONFIG_CYCLES_CLOCKSOURCE)
140 cycles = get_cycles();
141 SSYNC();
142 cycles += 10; /* ~10 cycles we lose after get_cycles() */
143 __bfin_cycles_off +=
144 (cycles << __bfin_cycles_mod) - (cycles << index);
145 __bfin_cycles_mod = index;
146#endif
147 local_irq_restore_hw(flags);
148 }
149 /* TODO: just test case for cycles clock source, remove later */
150 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
151 }
152
153 pr_debug("cpufreq: done\n");
154 return 0;
155}
156
157static int bfin_verify_speed(struct cpufreq_policy *policy)
158{
159 return cpufreq_frequency_table_verify(policy, bfin_freq_table);
160}
161
162static int __init __bfin_cpu_init(struct cpufreq_policy *policy)
163{
164
165 unsigned long cclk, sclk;
166
167 cclk = get_cclk() / 1000;
168 sclk = get_sclk() / 1000;
169
170 if (policy->cpu == CPUFREQ_CPU)
171 bfin_init_tables(cclk, sclk);
Michael Henneriche6c91b62008-04-25 04:58:29 +0800172
Michael Hennerichd887a1c2009-09-25 09:03:21 +0000173 policy->cpuinfo.transition_latency = 50000; /* 50us assumed */
174
Michael Henneriche6c91b62008-04-25 04:58:29 +0800175 policy->cur = cclk;
176 cpufreq_frequency_table_get_attr(bfin_freq_table, policy->cpu);
177 return cpufreq_frequency_table_cpuinfo(policy, bfin_freq_table);
178}
179
180static struct freq_attr *bfin_freq_attr[] = {
181 &cpufreq_freq_attr_scaling_available_freqs,
182 NULL,
183};
184
185static struct cpufreq_driver bfin_driver = {
186 .verify = bfin_verify_speed,
187 .target = bfin_target,
Michael Hennericha10101d2008-10-28 14:18:29 +0800188 .get = bfin_getfreq_khz,
Michael Henneriche6c91b62008-04-25 04:58:29 +0800189 .init = __bfin_cpu_init,
190 .name = "bfin cpufreq",
191 .owner = THIS_MODULE,
192 .attr = bfin_freq_attr,
193};
194
195static int __init bfin_cpu_init(void)
196{
197 return cpufreq_register_driver(&bfin_driver);
198}
199
200static void __exit bfin_cpu_exit(void)
201{
202 cpufreq_unregister_driver(&bfin_driver);
203}
204
205MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
206MODULE_DESCRIPTION("cpufreq driver for Blackfin");
207MODULE_LICENSE("GPL");
208
209module_init(bfin_cpu_init);
210module_exit(bfin_cpu_exit);