blob: a62562ee14612a3097be15b891a0c16d6f05c22d [file] [log] [blame]
Christian Krafft36ca4ba2006-10-24 18:39:45 +02001/*
2 * cpufreq driver for the cell processor
3 *
4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
5 *
6 * Author: Christian Krafft <krafft@de.ibm.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#include <linux/cpufreq.h>
24#include <linux/timer.h>
25
26#include <asm/hw_irq.h>
27#include <asm/io.h>
Olof Johansson4bd4aa12007-04-28 12:49:03 +100028#include <asm/machdep.h>
Christian Krafft36ca4ba2006-10-24 18:39:45 +020029#include <asm/processor.h>
30#include <asm/prom.h>
31#include <asm/time.h>
Christian Krafft50500632007-04-23 21:35:42 +020032#include <asm/pmi.h>
33#include <asm/of_platform.h>
Christian Krafft36ca4ba2006-10-24 18:39:45 +020034
35#include "cbe_regs.h"
36
37static DEFINE_MUTEX(cbe_switch_mutex);
38
39
40/* the CBE supports an 8 step frequency scaling */
41static struct cpufreq_frequency_table cbe_freqs[] = {
42 {1, 0},
43 {2, 0},
44 {3, 0},
45 {4, 0},
46 {5, 0},
47 {6, 0},
48 {8, 0},
49 {10, 0},
50 {0, CPUFREQ_TABLE_END},
51};
52
53/* to write to MIC register */
54static u64 MIC_Slow_Fast_Timer_table[] = {
55 [0 ... 7] = 0x007fc00000000000ull,
56};
57
58/* more values for the MIC */
59static u64 MIC_Slow_Next_Timer_table[] = {
60 0x0000240000000000ull,
61 0x0000268000000000ull,
62 0x000029C000000000ull,
63 0x00002D0000000000ull,
64 0x0000300000000000ull,
65 0x0000334000000000ull,
66 0x000039C000000000ull,
67 0x00003FC000000000ull,
68};
69
Christian Krafft1e21fd52007-07-20 21:39:21 +020070static u8 pmi_slow_mode_limit[MAX_BE];
Christian Krafft813f9072007-07-20 21:39:18 +020071
Christian Krafft36ca4ba2006-10-24 18:39:45 +020072/*
73 * hardware specific functions
74 */
75
Christian Krafft813f9072007-07-20 21:39:18 +020076static bool cbe_cpufreq_has_pmi;
Christian Krafft50500632007-04-23 21:35:42 +020077
Christian Krafftee5d1b72007-06-28 21:14:38 +100078#ifdef CONFIG_PPC_PMI
Christian Krafft50500632007-04-23 21:35:42 +020079static int set_pmode_pmi(int cpu, unsigned int pmode)
80{
81 int ret;
82 pmi_message_t pmi_msg;
83#ifdef DEBUG
Christian Kraffta964b9b2007-07-20 21:39:19 +020084 long time;
Christian Krafft50500632007-04-23 21:35:42 +020085#endif
86
87 pmi_msg.type = PMI_TYPE_FREQ_CHANGE;
88 pmi_msg.data1 = cbe_cpu_to_node(cpu);
89 pmi_msg.data2 = pmode;
90
91#ifdef DEBUG
Christian Kraffta964b9b2007-07-20 21:39:19 +020092 time = jiffies;
Christian Krafft50500632007-04-23 21:35:42 +020093#endif
94
Christian Krafft813f9072007-07-20 21:39:18 +020095 pmi_send_message(pmi_msg);
Christian Krafft50500632007-04-23 21:35:42 +020096 ret = pmi_msg.data2;
97
98 pr_debug("PMI returned slow mode %d\n", ret);
99
100#ifdef DEBUG
Christian Kraffta964b9b2007-07-20 21:39:19 +0200101 time = jiffies - time; /* actual cycles (not cpu cycles!) */
102 time = jiffies_to_msecs(time);
103 pr_debug("had to wait %lu ms for a transition using PMI.\n", time);
Christian Krafft50500632007-04-23 21:35:42 +0200104#endif
105 return ret;
106}
Christian Krafftee5d1b72007-06-28 21:14:38 +1000107#endif
Christian Krafft50500632007-04-23 21:35:42 +0200108
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200109static int get_pmode(int cpu)
110{
111 int ret;
112 struct cbe_pmd_regs __iomem *pmd_regs;
113
114 pmd_regs = cbe_get_cpu_pmd_regs(cpu);
115 ret = in_be64(&pmd_regs->pmsr) & 0x07;
116
117 return ret;
118}
119
Christian Krafft50500632007-04-23 21:35:42 +0200120static int set_pmode_reg(int cpu, unsigned int pmode)
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200121{
122 struct cbe_pmd_regs __iomem *pmd_regs;
123 struct cbe_mic_tm_regs __iomem *mic_tm_regs;
124 u64 flags;
125 u64 value;
Christian Kraffta964b9b2007-07-20 21:39:19 +0200126#ifdef DEBUG
127 long time;
128#endif
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200129
130 local_irq_save(flags);
131
132 mic_tm_regs = cbe_get_cpu_mic_tm_regs(cpu);
133 pmd_regs = cbe_get_cpu_pmd_regs(cpu);
134
Christian Kraffta964b9b2007-07-20 21:39:19 +0200135#ifdef DEBUG
136 time = jiffies;
137#endif
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200138 out_be64(&mic_tm_regs->slow_fast_timer_0, MIC_Slow_Fast_Timer_table[pmode]);
139 out_be64(&mic_tm_regs->slow_fast_timer_1, MIC_Slow_Fast_Timer_table[pmode]);
140
141 out_be64(&mic_tm_regs->slow_next_timer_0, MIC_Slow_Next_Timer_table[pmode]);
142 out_be64(&mic_tm_regs->slow_next_timer_1, MIC_Slow_Next_Timer_table[pmode]);
143
144 value = in_be64(&pmd_regs->pmcr);
145 /* set bits to zero */
146 value &= 0xFFFFFFFFFFFFFFF8ull;
147 /* set bits to next pmode */
148 value |= pmode;
149
150 out_be64(&pmd_regs->pmcr, value);
151
Christian Kraffta964b9b2007-07-20 21:39:19 +0200152#ifdef DEBUG
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200153 /* wait until new pmode appears in status register */
154 value = in_be64(&pmd_regs->pmsr) & 0x07;
155 while(value != pmode) {
156 cpu_relax();
157 value = in_be64(&pmd_regs->pmsr) & 0x07;
158 }
159
Christian Kraffta964b9b2007-07-20 21:39:19 +0200160 time = jiffies - time;
161 time = jiffies_to_msecs(time);
162 pr_debug("had to wait %lu ms for a transition using " \
163 "the pervasive unit.\n", time);
164#endif
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200165 local_irq_restore(flags);
166
167 return 0;
168}
169
Christian Krafft813f9072007-07-20 21:39:18 +0200170static int set_pmode(int cpu, unsigned int slow_mode)
171{
Christian Krafft1e21fd52007-07-20 21:39:21 +0200172 int rc;
Christian Krafftee5d1b72007-06-28 21:14:38 +1000173#ifdef CONFIG_PPC_PMI
Christian Krafft813f9072007-07-20 21:39:18 +0200174 if (cbe_cpufreq_has_pmi)
Christian Krafft1e21fd52007-07-20 21:39:21 +0200175 rc = set_pmode_pmi(cpu, slow_mode);
176 else
Christian Krafftee5d1b72007-06-28 21:14:38 +1000177#endif
Christian Krafft1e21fd52007-07-20 21:39:21 +0200178 rc = set_pmode_reg(cpu, slow_mode);
179
180 pr_debug("register contains slow mode %d\n", get_pmode(cpu));
181
182 return rc;
Christian Krafft50500632007-04-23 21:35:42 +0200183}
184
Christian Krafft813f9072007-07-20 21:39:18 +0200185static void cbe_cpufreq_handle_pmi(pmi_message_t pmi_msg)
Christian Krafft50500632007-04-23 21:35:42 +0200186{
Christian Krafft1e21fd52007-07-20 21:39:21 +0200187 u8 node; slow_mode;
Christian Krafft50500632007-04-23 21:35:42 +0200188
Olof Johansson4bd4aa12007-04-28 12:49:03 +1000189 BUG_ON(pmi_msg.type != PMI_TYPE_FREQ_CHANGE);
Christian Krafft50500632007-04-23 21:35:42 +0200190
Christian Krafft1e21fd52007-07-20 21:39:21 +0200191 node = pmi_msg.data1;
192 slow_mode = pmi_msg.data2;
Christian Krafft50500632007-04-23 21:35:42 +0200193
Christian Krafft1e21fd52007-07-20 21:39:21 +0200194 pmi_slow_mode_limit[node] = slow_mode;
Christian Krafft50500632007-04-23 21:35:42 +0200195
Christian Krafft1e21fd52007-07-20 21:39:21 +0200196 pr_debug("cbe_handle_pmi: node: %d, max slow_mode=%d\n", slow_mode);
Christian Krafft50500632007-04-23 21:35:42 +0200197}
198
Thomas Renninger1552cb92007-06-05 04:14:40 +1000199static int pmi_notifier(struct notifier_block *nb,
200 unsigned long event, void *data)
201{
202 struct cpufreq_policy *policy = data;
Christian Krafft1e21fd52007-07-20 21:39:21 +0200203 u8 node;
Thomas Renninger1552cb92007-06-05 04:14:40 +1000204
Christian Krafft1e21fd52007-07-20 21:39:21 +0200205 node = cbe_cpu_to_node(policy->cpu);
206
207 pr_debug("got notified, event=%lu, node=%u\n", event, node);
208
209 if (pmi_slow_mode_limit[node] != 0) {
210 pr_debug("limiting node %d to slow mode %d\n",
211 node, pmi_slow_mode_limit[node]);
212
213 cpufreq_verify_within_limits(policy, 0,
214 cbe_freqs[pmi_slow_mode_limit[node]].frequency);
215 }
Thomas Renninger1552cb92007-06-05 04:14:40 +1000216
Thomas Renninger1552cb92007-06-05 04:14:40 +1000217 return 0;
218}
219
220static struct notifier_block pmi_notifier_block = {
221 .notifier_call = pmi_notifier,
222};
223
Christian Krafft50500632007-04-23 21:35:42 +0200224static struct pmi_handler cbe_pmi_handler = {
225 .type = PMI_TYPE_FREQ_CHANGE,
226 .handle_pmi_message = cbe_cpufreq_handle_pmi,
227};
228
229
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200230/*
231 * cpufreq functions
232 */
233
Olof Johansson4bd4aa12007-04-28 12:49:03 +1000234static int cbe_cpufreq_cpu_init(struct cpufreq_policy *policy)
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200235{
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +1000236 const u32 *max_freqp;
237 u32 max_freq;
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200238 int i, cur_pmode;
239 struct device_node *cpu;
240
241 cpu = of_get_cpu_node(policy->cpu, NULL);
242
Olof Johansson4bd4aa12007-04-28 12:49:03 +1000243 if (!cpu)
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200244 return -ENODEV;
245
246 pr_debug("init cpufreq on CPU %d\n", policy->cpu);
247
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +1000248 max_freqp = of_get_property(cpu, "clock-frequency", NULL);
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200249
Christian Krafft1e21fd52007-07-20 21:39:21 +0200250 of_node_put(cpu);
251
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +1000252 if (!max_freqp)
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200253 return -EINVAL;
254
Olof Johansson4bd4aa12007-04-28 12:49:03 +1000255 /* we need the freq in kHz */
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +1000256 max_freq = *max_freqp / 1000;
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200257
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +1000258 pr_debug("max clock-frequency is at %u kHz\n", max_freq);
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200259 pr_debug("initializing frequency table\n");
260
Olof Johansson4bd4aa12007-04-28 12:49:03 +1000261 /* initialize frequency table */
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200262 for (i=0; cbe_freqs[i].frequency!=CPUFREQ_TABLE_END; i++) {
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +1000263 cbe_freqs[i].frequency = max_freq / cbe_freqs[i].index;
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200264 pr_debug("%d: %d\n", i, cbe_freqs[i].frequency);
265 }
266
267 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Christian Krafft1e21fd52007-07-20 21:39:21 +0200268
269 /* if DEBUG is enabled set_pmode() measures the latency
270 * of a transition */
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200271 policy->cpuinfo.transition_latency = 25000;
272
273 cur_pmode = get_pmode(policy->cpu);
274 pr_debug("current pmode is at %d\n",cur_pmode);
275
276 policy->cur = cbe_freqs[cur_pmode].frequency;
277
278#ifdef CONFIG_SMP
279 policy->cpus = cpu_sibling_map[policy->cpu];
280#endif
281
Olof Johansson4bd4aa12007-04-28 12:49:03 +1000282 cpufreq_frequency_table_get_attr(cbe_freqs, policy->cpu);
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200283
Christian Krafft1e21fd52007-07-20 21:39:21 +0200284 /* this ensures that policy->cpuinfo_min
285 * and policy->cpuinfo_max are set correctly */
Olof Johansson4bd4aa12007-04-28 12:49:03 +1000286 return cpufreq_frequency_table_cpuinfo(policy, cbe_freqs);
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200287}
288
289static int cbe_cpufreq_cpu_exit(struct cpufreq_policy *policy)
290{
291 cpufreq_frequency_table_put_attr(policy->cpu);
292 return 0;
293}
294
295static int cbe_cpufreq_verify(struct cpufreq_policy *policy)
296{
297 return cpufreq_frequency_table_verify(policy, cbe_freqs);
298}
299
300
Christian Krafft1e21fd52007-07-20 21:39:21 +0200301static int cbe_cpufreq_target(struct cpufreq_policy *policy,
302 unsigned int target_freq,
303 unsigned int relation)
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200304{
305 int rc;
306 struct cpufreq_freqs freqs;
Christian Krafft1e21fd52007-07-20 21:39:21 +0200307 unsigned int cbe_pmode_new;
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200308
309 cpufreq_frequency_table_target(policy,
310 cbe_freqs,
311 target_freq,
312 relation,
313 &cbe_pmode_new);
314
315 freqs.old = policy->cur;
316 freqs.new = cbe_freqs[cbe_pmode_new].frequency;
317 freqs.cpu = policy->cpu;
318
Olof Johansson4bd4aa12007-04-28 12:49:03 +1000319 mutex_lock(&cbe_switch_mutex);
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200320 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
321
Christian Krafft1e21fd52007-07-20 21:39:21 +0200322 pr_debug("setting frequency for cpu %d to %d kHz, " \
323 "1/%d of max frequency\n",
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200324 policy->cpu,
325 cbe_freqs[cbe_pmode_new].frequency,
326 cbe_freqs[cbe_pmode_new].index);
327
328 rc = set_pmode(policy->cpu, cbe_pmode_new);
Christian Krafft1e21fd52007-07-20 21:39:21 +0200329
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200330 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
331 mutex_unlock(&cbe_switch_mutex);
332
333 return rc;
334}
335
336static struct cpufreq_driver cbe_cpufreq_driver = {
337 .verify = cbe_cpufreq_verify,
338 .target = cbe_cpufreq_target,
339 .init = cbe_cpufreq_cpu_init,
340 .exit = cbe_cpufreq_cpu_exit,
341 .name = "cbe-cpufreq",
342 .owner = THIS_MODULE,
343 .flags = CPUFREQ_CONST_LOOPS,
344};
345
346/*
347 * module init and destoy
348 */
349
350static int __init cbe_cpufreq_init(void)
351{
Olof Johansson4bd4aa12007-04-28 12:49:03 +1000352 if (!machine_is(cell))
353 return -ENODEV;
Christian Krafft50500632007-04-23 21:35:42 +0200354
Christian Krafft813f9072007-07-20 21:39:18 +0200355 cbe_cpufreq_has_pmi = pmi_register_handler(&cbe_pmi_handler) == 0;
Christian Krafft50500632007-04-23 21:35:42 +0200356
Christian Kraffte5ecc872007-07-20 21:39:20 +0200357 if (cbe_cpufreq_has_pmi)
358 cpufreq_register_notifier(&pmi_notifier_block, CPUFREQ_POLICY_NOTIFIER);
359
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200360 return cpufreq_register_driver(&cbe_cpufreq_driver);
361}
362
363static void __exit cbe_cpufreq_exit(void)
364{
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200365 cpufreq_unregister_driver(&cbe_cpufreq_driver);
Christian Krafft813f9072007-07-20 21:39:18 +0200366
Christian Kraffte5ecc872007-07-20 21:39:20 +0200367 if (cbe_cpufreq_has_pmi) {
368 cpufreq_unregister_notifier(&pmi_notifier_block, CPUFREQ_POLICY_NOTIFIER);
Christian Krafft813f9072007-07-20 21:39:18 +0200369 pmi_unregister_handler(&cbe_pmi_handler);
Christian Kraffte5ecc872007-07-20 21:39:20 +0200370 }
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200371}
372
373module_init(cbe_cpufreq_init);
374module_exit(cbe_cpufreq_exit);
375
376MODULE_LICENSE("GPL");
377MODULE_AUTHOR("Christian Krafft <krafft@de.ibm.com>");