blob: 4d7799b7af8666bcc8108b9c8c654005867a054c [file] [log] [blame]
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +11001/*
2 * Copyright (C) 2002 - 2005 Benjamin Herrenschmidt <benh@kernel.crashing.org>
3 * and Markus Demleitner <msdemlei@cl.uni-heidelberg.de>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This driver adds basic cpufreq support for SMU & 970FX based G5 Macs,
10 * that is iMac G5 and latest single CPU desktop.
11 */
12
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +100013#undef DEBUG
14
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110015#include <linux/module.h>
16#include <linux/types.h>
17#include <linux/errno.h>
18#include <linux/kernel.h>
19#include <linux/delay.h>
20#include <linux/sched.h>
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110021#include <linux/cpufreq.h>
22#include <linux/init.h>
23#include <linux/completion.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080024#include <linux/mutex.h>
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110025#include <asm/prom.h>
26#include <asm/machdep.h>
27#include <asm/irq.h>
28#include <asm/sections.h>
29#include <asm/cputable.h>
30#include <asm/time.h>
31#include <asm/smu.h>
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +110032#include <asm/pmac_pfunc.h>
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110033
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +100034#define DBG(fmt...) pr_debug(fmt)
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110035
36/* see 970FX user manual */
37
38#define SCOM_PCR 0x0aa001 /* PCR scom addr */
39
40#define PCR_HILO_SELECT 0x80000000U /* 1 = PCR, 0 = PCRH */
41#define PCR_SPEED_FULL 0x00000000U /* 1:1 speed value */
42#define PCR_SPEED_HALF 0x00020000U /* 1:2 speed value */
43#define PCR_SPEED_QUARTER 0x00040000U /* 1:4 speed value */
44#define PCR_SPEED_MASK 0x000e0000U /* speed mask */
45#define PCR_SPEED_SHIFT 17
46#define PCR_FREQ_REQ_VALID 0x00010000U /* freq request valid */
47#define PCR_VOLT_REQ_VALID 0x00008000U /* volt request valid */
48#define PCR_TARGET_TIME_MASK 0x00006000U /* target time */
49#define PCR_STATLAT_MASK 0x00001f00U /* STATLAT value */
50#define PCR_SNOOPLAT_MASK 0x000000f0U /* SNOOPLAT value */
51#define PCR_SNOOPACC_MASK 0x0000000fU /* SNOOPACC value */
52
53#define SCOM_PSR 0x408001 /* PSR scom addr */
54/* warning: PSR is a 64 bits register */
55#define PSR_CMD_RECEIVED 0x2000000000000000U /* command received */
56#define PSR_CMD_COMPLETED 0x1000000000000000U /* command completed */
57#define PSR_CUR_SPEED_MASK 0x0300000000000000U /* current speed */
58#define PSR_CUR_SPEED_SHIFT (56)
59
60/*
61 * The G5 only supports two frequencies (Quarter speed is not supported)
62 */
63#define CPUFREQ_HIGH 0
64#define CPUFREQ_LOW 1
65
66static struct cpufreq_frequency_table g5_cpu_freqs[] = {
67 {CPUFREQ_HIGH, 0},
68 {CPUFREQ_LOW, 0},
69 {0, CPUFREQ_TABLE_END},
70};
71
72static struct freq_attr* g5_cpu_freqs_attr[] = {
73 &cpufreq_freq_attr_scaling_available_freqs,
74 NULL,
75};
76
77/* Power mode data is an array of the 32 bits PCR values to use for
Adrian Bunk943ffb52006-01-10 00:10:13 +010078 * the various frequencies, retrieved from the device-tree
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110079 */
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110080static int g5_pmode_cur;
81
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +110082static void (*g5_switch_volt)(int speed_mode);
83static int (*g5_switch_freq)(int speed_mode);
84static int (*g5_query_freq)(void);
85
Ingo Molnar14cc3e22006-03-26 01:37:14 -080086static DEFINE_MUTEX(g5_switch_mutex);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110087
Nick Piggin16962e72009-02-19 07:07:41 +000088static unsigned long transition_latency;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110089
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +100090#ifdef CONFIG_PMAC_SMU
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +100091
Stephen Rothwell9ca91e02006-09-14 16:59:31 +100092static const u32 *g5_pmode_data;
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +100093static int g5_pmode_max;
94
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110095static struct smu_sdbp_fvt *g5_fvt_table; /* table of op. points */
96static int g5_fvt_count; /* number of op. points */
97static int g5_fvt_cur; /* current op. point */
98
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +110099/*
100 * SMU based voltage switching for Neo2 platforms
101 */
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100102
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100103static void g5_smu_switch_volt(int speed_mode)
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100104{
105 struct smu_simple_cmd cmd;
106
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700107 DECLARE_COMPLETION_ONSTACK(comp);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100108 smu_queue_simple(&cmd, SMU_CMD_POWER_COMMAND, 8, smu_done_complete,
109 &comp, 'V', 'S', 'L', 'E', 'W',
110 0xff, g5_fvt_cur+1, speed_mode);
111 wait_for_completion(&comp);
112}
113
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100114/*
115 * Platform function based voltage/vdnap switching for Neo2
116 */
117
118static struct pmf_function *pfunc_set_vdnap0;
119static struct pmf_function *pfunc_vdnap0_complete;
120
121static void g5_vdnap_switch_volt(int speed_mode)
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100122{
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100123 struct pmf_args args;
124 u32 slew, done = 0;
125 unsigned long timeout;
126
127 slew = (speed_mode == CPUFREQ_LOW) ? 1 : 0;
128 args.count = 1;
129 args.u[0].p = &slew;
130
131 pmf_call_one(pfunc_set_vdnap0, &args);
132
133 /* It's an irq GPIO so we should be able to just block here,
134 * I'll do that later after I've properly tested the IRQ code for
135 * platform functions
136 */
137 timeout = jiffies + HZ/10;
138 while(!time_after(jiffies, timeout)) {
139 args.count = 1;
140 args.u[0].p = &done;
141 pmf_call_one(pfunc_vdnap0_complete, &args);
142 if (done)
143 break;
144 msleep(1);
145 }
146 if (done == 0)
147 printk(KERN_WARNING "cpufreq: Timeout in clock slewing !\n");
148}
149
150
151/*
152 * SCOM based frequency switching for 970FX rev3
153 */
154static int g5_scom_switch_freq(int speed_mode)
155{
156 unsigned long flags;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100157 int to;
158
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100159 /* If frequency is going up, first ramp up the voltage */
160 if (speed_mode < g5_pmode_cur)
161 g5_switch_volt(speed_mode);
162
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100163 local_irq_save(flags);
164
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100165 /* Clear PCR high */
166 scom970_write(SCOM_PCR, 0);
167 /* Clear PCR low */
168 scom970_write(SCOM_PCR, PCR_HILO_SELECT | 0);
169 /* Set PCR low */
170 scom970_write(SCOM_PCR, PCR_HILO_SELECT |
171 g5_pmode_data[speed_mode]);
172
173 /* Wait for completion */
174 for (to = 0; to < 10; to++) {
175 unsigned long psr = scom970_read(SCOM_PSR);
176
177 if ((psr & PSR_CMD_RECEIVED) == 0 &&
178 (((psr >> PSR_CUR_SPEED_SHIFT) ^
179 (g5_pmode_data[speed_mode] >> PCR_SPEED_SHIFT)) & 0x3)
180 == 0)
181 break;
182 if (psr & PSR_CMD_COMPLETED)
183 break;
184 udelay(100);
185 }
186
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100187 local_irq_restore(flags);
188
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100189 /* If frequency is going down, last ramp the voltage */
190 if (speed_mode > g5_pmode_cur)
191 g5_switch_volt(speed_mode);
192
193 g5_pmode_cur = speed_mode;
194 ppc_proc_freq = g5_cpu_freqs[speed_mode].frequency * 1000ul;
195
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100196 return 0;
197}
198
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100199static int g5_scom_query_freq(void)
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100200{
201 unsigned long psr = scom970_read(SCOM_PSR);
202 int i;
203
204 for (i = 0; i <= g5_pmode_max; i++)
205 if ((((psr >> PSR_CUR_SPEED_SHIFT) ^
206 (g5_pmode_data[i] >> PCR_SPEED_SHIFT)) & 0x3) == 0)
207 break;
208 return i;
209}
210
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100211/*
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000212 * Fake voltage switching for platforms with missing support
213 */
214
215static void g5_dummy_switch_volt(int speed_mode)
216{
217}
218
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +1000219#endif /* CONFIG_PMAC_SMU */
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000220
221/*
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100222 * Platform function based voltage switching for PowerMac7,2 & 7,3
223 */
224
225static struct pmf_function *pfunc_cpu0_volt_high;
226static struct pmf_function *pfunc_cpu0_volt_low;
227static struct pmf_function *pfunc_cpu1_volt_high;
228static struct pmf_function *pfunc_cpu1_volt_low;
229
230static void g5_pfunc_switch_volt(int speed_mode)
231{
232 if (speed_mode == CPUFREQ_HIGH) {
233 if (pfunc_cpu0_volt_high)
234 pmf_call_one(pfunc_cpu0_volt_high, NULL);
235 if (pfunc_cpu1_volt_high)
236 pmf_call_one(pfunc_cpu1_volt_high, NULL);
237 } else {
238 if (pfunc_cpu0_volt_low)
239 pmf_call_one(pfunc_cpu0_volt_low, NULL);
240 if (pfunc_cpu1_volt_low)
241 pmf_call_one(pfunc_cpu1_volt_low, NULL);
242 }
243 msleep(10); /* should be faster , to fix */
244}
245
246/*
247 * Platform function based frequency switching for PowerMac7,2 & 7,3
248 */
249
250static struct pmf_function *pfunc_cpu_setfreq_high;
251static struct pmf_function *pfunc_cpu_setfreq_low;
252static struct pmf_function *pfunc_cpu_getfreq;
Joe Perchesd258e642009-06-28 06:26:10 +0000253static struct pmf_function *pfunc_slewing_done;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100254
255static int g5_pfunc_switch_freq(int speed_mode)
256{
257 struct pmf_args args;
258 u32 done = 0;
259 unsigned long timeout;
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000260 int rc;
261
262 DBG("g5_pfunc_switch_freq(%d)\n", speed_mode);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100263
264 /* If frequency is going up, first ramp up the voltage */
265 if (speed_mode < g5_pmode_cur)
266 g5_switch_volt(speed_mode);
267
268 /* Do it */
269 if (speed_mode == CPUFREQ_HIGH)
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000270 rc = pmf_call_one(pfunc_cpu_setfreq_high, NULL);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100271 else
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000272 rc = pmf_call_one(pfunc_cpu_setfreq_low, NULL);
273
274 if (rc)
275 printk(KERN_WARNING "cpufreq: pfunc switch error %d\n", rc);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100276
277 /* It's an irq GPIO so we should be able to just block here,
278 * I'll do that later after I've properly tested the IRQ code for
279 * platform functions
280 */
281 timeout = jiffies + HZ/10;
282 while(!time_after(jiffies, timeout)) {
283 args.count = 1;
284 args.u[0].p = &done;
285 pmf_call_one(pfunc_slewing_done, &args);
286 if (done)
287 break;
288 msleep(1);
289 }
290 if (done == 0)
291 printk(KERN_WARNING "cpufreq: Timeout in clock slewing !\n");
292
293 /* If frequency is going down, last ramp the voltage */
294 if (speed_mode > g5_pmode_cur)
295 g5_switch_volt(speed_mode);
296
297 g5_pmode_cur = speed_mode;
298 ppc_proc_freq = g5_cpu_freqs[speed_mode].frequency * 1000ul;
299
300 return 0;
301}
302
303static int g5_pfunc_query_freq(void)
304{
305 struct pmf_args args;
306 u32 val = 0;
307
308 args.count = 1;
309 args.u[0].p = &val;
310 pmf_call_one(pfunc_cpu_getfreq, &args);
311 return val ? CPUFREQ_HIGH : CPUFREQ_LOW;
312}
313
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100314
315/*
316 * Common interface to the cpufreq core
317 */
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100318
319static int g5_cpufreq_verify(struct cpufreq_policy *policy)
320{
321 return cpufreq_frequency_table_verify(policy, g5_cpu_freqs);
322}
323
324static int g5_cpufreq_target(struct cpufreq_policy *policy,
325 unsigned int target_freq, unsigned int relation)
326{
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100327 unsigned int newstate = 0;
328 struct cpufreq_freqs freqs;
329 int rc;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100330
331 if (cpufreq_frequency_table_target(policy, g5_cpu_freqs,
332 target_freq, relation, &newstate))
333 return -EINVAL;
334
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100335 if (g5_pmode_cur == newstate)
336 return 0;
337
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800338 mutex_lock(&g5_switch_mutex);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100339
340 freqs.old = g5_cpu_freqs[g5_pmode_cur].frequency;
341 freqs.new = g5_cpu_freqs[newstate].frequency;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100342
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530343 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100344 rc = g5_switch_freq(newstate);
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530345 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100346
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800347 mutex_unlock(&g5_switch_mutex);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100348
349 return rc;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100350}
351
352static unsigned int g5_cpufreq_get_speed(unsigned int cpu)
353{
354 return g5_cpu_freqs[g5_pmode_cur].frequency;
355}
356
357static int g5_cpufreq_cpu_init(struct cpufreq_policy *policy)
358{
Nick Piggin16962e72009-02-19 07:07:41 +0000359 policy->cpuinfo.transition_latency = transition_latency;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100360 policy->cur = g5_cpu_freqs[g5_query_freq()].frequency;
Johannes Berg8fce6dd2007-03-21 21:40:42 +1100361 /* secondary CPUs are tied to the primary one by the
362 * cpufreq core if in the secondary policy we tell it that
363 * it actually must be one policy together with all others. */
Anton Blanchard1b095cf2010-04-26 15:32:32 +0000364 cpumask_copy(policy->cpus, cpu_online_mask);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100365 cpufreq_frequency_table_get_attr(g5_cpu_freqs, policy->cpu);
366
367 return cpufreq_frequency_table_cpuinfo(policy,
368 g5_cpu_freqs);
369}
370
371
372static struct cpufreq_driver g5_cpufreq_driver = {
373 .name = "powermac",
374 .owner = THIS_MODULE,
375 .flags = CPUFREQ_CONST_LOOPS,
376 .init = g5_cpufreq_cpu_init,
377 .verify = g5_cpufreq_verify,
378 .target = g5_cpufreq_target,
379 .get = g5_cpufreq_get_speed,
380 .attr = g5_cpu_freqs_attr,
381};
382
383
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +1000384#ifdef CONFIG_PMAC_SMU
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000385
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100386static int __init g5_neo2_cpufreq_init(struct device_node *cpus)
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100387{
388 struct device_node *cpunode;
389 unsigned int psize, ssize;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100390 unsigned long max_freq;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100391 char *freq_method, *volt_method;
Jeremy Kerr018a3d12006-07-12 15:40:29 +1000392 const u32 *valp;
393 u32 pvr_hi;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100394 int use_volts_vdnap = 0;
395 int use_volts_smu = 0;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100396 int rc = -ENODEV;
397
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100398 /* Check supported platforms */
Grant Likely71a157e2010-02-01 21:34:14 -0700399 if (of_machine_is_compatible("PowerMac8,1") ||
400 of_machine_is_compatible("PowerMac8,2") ||
401 of_machine_is_compatible("PowerMac9,1"))
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100402 use_volts_smu = 1;
Grant Likely71a157e2010-02-01 21:34:14 -0700403 else if (of_machine_is_compatible("PowerMac11,2"))
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100404 use_volts_vdnap = 1;
405 else
406 return -ENODEV;
407
408 /* Get first CPU node */
409 for (cpunode = NULL;
410 (cpunode = of_get_next_child(cpus, cpunode)) != NULL;) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000411 const u32 *reg = of_get_property(cpunode, "reg", NULL);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100412 if (reg == NULL || (*reg) != 0)
413 continue;
414 if (!strcmp(cpunode->type, "cpu"))
415 break;
416 }
417 if (cpunode == NULL) {
418 printk(KERN_ERR "cpufreq: Can't find any CPU 0 node\n");
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100419 return -ENODEV;
420 }
421
422 /* Check 970FX for now */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000423 valp = of_get_property(cpunode, "cpu-version", NULL);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100424 if (!valp) {
425 DBG("No cpu-version property !\n");
426 goto bail_noprops;
427 }
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100428 pvr_hi = (*valp) >> 16;
429 if (pvr_hi != 0x3c && pvr_hi != 0x44) {
430 printk(KERN_ERR "cpufreq: Unsupported CPU version\n");
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100431 goto bail_noprops;
432 }
433
434 /* Look for the powertune data in the device-tree */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000435 g5_pmode_data = of_get_property(cpunode, "power-mode-data",&psize);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100436 if (!g5_pmode_data) {
437 DBG("No power-mode-data !\n");
438 goto bail_noprops;
439 }
440 g5_pmode_max = psize / sizeof(u32) - 1;
441
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100442 if (use_volts_smu) {
Jeremy Kerr018a3d12006-07-12 15:40:29 +1000443 const struct smu_sdbp_header *shdr;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100444
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100445 /* Look for the FVT table */
446 shdr = smu_get_sdb_partition(SMU_SDB_FVT_ID, NULL);
447 if (!shdr)
448 goto bail_noprops;
449 g5_fvt_table = (struct smu_sdbp_fvt *)&shdr[1];
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530450 ssize = (shdr->len * sizeof(u32)) - sizeof(*shdr);
451 g5_fvt_count = ssize / sizeof(*g5_fvt_table);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100452 g5_fvt_cur = 0;
453
454 /* Sanity checking */
455 if (g5_fvt_count < 1 || g5_pmode_max < 1)
456 goto bail_noprops;
457
458 g5_switch_volt = g5_smu_switch_volt;
459 volt_method = "SMU";
460 } else if (use_volts_vdnap) {
461 struct device_node *root;
462
463 root = of_find_node_by_path("/");
464 if (root == NULL) {
465 printk(KERN_ERR "cpufreq: Can't find root of "
466 "device tree\n");
467 goto bail_noprops;
468 }
469 pfunc_set_vdnap0 = pmf_find_function(root, "set-vdnap0");
470 pfunc_vdnap0_complete =
471 pmf_find_function(root, "slewing-done");
472 if (pfunc_set_vdnap0 == NULL ||
473 pfunc_vdnap0_complete == NULL) {
474 printk(KERN_ERR "cpufreq: Can't find required "
475 "platform function\n");
476 goto bail_noprops;
477 }
478
479 g5_switch_volt = g5_vdnap_switch_volt;
480 volt_method = "GPIO";
481 } else {
482 g5_switch_volt = g5_dummy_switch_volt;
483 volt_method = "none";
484 }
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100485
486 /*
487 * From what I see, clock-frequency is always the maximal frequency.
488 * The current driver can not slew sysclk yet, so we really only deal
489 * with powertune steps for now. We also only implement full freq and
490 * half freq in this version. So far, I haven't yet seen a machine
491 * supporting anything else.
492 */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000493 valp = of_get_property(cpunode, "clock-frequency", NULL);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100494 if (!valp)
495 return -ENODEV;
496 max_freq = (*valp)/1000;
497 g5_cpu_freqs[0].frequency = max_freq;
498 g5_cpu_freqs[1].frequency = max_freq/2;
499
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100500 /* Set callbacks */
Nick Piggin16962e72009-02-19 07:07:41 +0000501 transition_latency = 12000;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100502 g5_switch_freq = g5_scom_switch_freq;
503 g5_query_freq = g5_scom_query_freq;
504 freq_method = "SCOM";
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100505
506 /* Force apply current frequency to make sure everything is in
507 * sync (voltage is right for example). Firmware may leave us with
508 * a strange setting ...
509 */
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100510 g5_switch_volt(CPUFREQ_HIGH);
511 msleep(10);
512 g5_pmode_cur = -1;
513 g5_switch_freq(g5_query_freq());
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100514
515 printk(KERN_INFO "Registering G5 CPU frequency driver\n");
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100516 printk(KERN_INFO "Frequency method: %s, Voltage method: %s\n",
517 freq_method, volt_method);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100518 printk(KERN_INFO "Low: %d Mhz, High: %d Mhz, Cur: %d MHz\n",
519 g5_cpu_freqs[1].frequency/1000,
520 g5_cpu_freqs[0].frequency/1000,
521 g5_cpu_freqs[g5_pmode_cur].frequency/1000);
522
523 rc = cpufreq_register_driver(&g5_cpufreq_driver);
524
525 /* We keep the CPU node on hold... hopefully, Apple G5 don't have
526 * hotplug CPU with a dynamic device-tree ...
527 */
528 return rc;
529
530 bail_noprops:
531 of_node_put(cpunode);
532
533 return rc;
534}
535
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +1000536#endif /* CONFIG_PMAC_SMU */
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000537
538
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100539static int __init g5_pm72_cpufreq_init(struct device_node *cpus)
540{
541 struct device_node *cpuid = NULL, *hwclock = NULL, *cpunode = NULL;
Jeremy Kerr018a3d12006-07-12 15:40:29 +1000542 const u8 *eeprom = NULL;
543 const u32 *valp;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100544 u64 max_freq, min_freq, ih, il;
545 int has_volt = 1, rc = 0;
546
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000547 DBG("cpufreq: Initializing for PowerMac7,2, PowerMac7,3 and"
548 " RackMac3,1...\n");
549
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100550 /* Get first CPU node */
551 for (cpunode = NULL;
552 (cpunode = of_get_next_child(cpus, cpunode)) != NULL;) {
553 if (!strcmp(cpunode->type, "cpu"))
554 break;
555 }
556 if (cpunode == NULL) {
557 printk(KERN_ERR "cpufreq: Can't find any CPU node\n");
558 return -ENODEV;
559 }
560
561 /* Lookup the cpuid eeprom node */
562 cpuid = of_find_node_by_path("/u3@0,f8000000/i2c@f8001000/cpuid@a0");
563 if (cpuid != NULL)
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000564 eeprom = of_get_property(cpuid, "cpuid", NULL);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100565 if (eeprom == NULL) {
566 printk(KERN_ERR "cpufreq: Can't find cpuid EEPROM !\n");
567 rc = -ENODEV;
568 goto bail;
569 }
570
571 /* Lookup the i2c hwclock */
572 for (hwclock = NULL;
573 (hwclock = of_find_node_by_name(hwclock, "i2c-hwclock")) != NULL;){
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000574 const char *loc = of_get_property(hwclock,
Jeremy Kerr018a3d12006-07-12 15:40:29 +1000575 "hwctrl-location", NULL);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100576 if (loc == NULL)
577 continue;
578 if (strcmp(loc, "CPU CLOCK"))
579 continue;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000580 if (!of_get_property(hwclock, "platform-get-frequency", NULL))
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100581 continue;
582 break;
583 }
584 if (hwclock == NULL) {
585 printk(KERN_ERR "cpufreq: Can't find i2c clock chip !\n");
586 rc = -ENODEV;
587 goto bail;
588 }
589
590 DBG("cpufreq: i2c clock chip found: %s\n", hwclock->full_name);
591
592 /* Now get all the platform functions */
593 pfunc_cpu_getfreq =
594 pmf_find_function(hwclock, "get-frequency");
595 pfunc_cpu_setfreq_high =
596 pmf_find_function(hwclock, "set-frequency-high");
597 pfunc_cpu_setfreq_low =
598 pmf_find_function(hwclock, "set-frequency-low");
599 pfunc_slewing_done =
600 pmf_find_function(hwclock, "slewing-done");
601 pfunc_cpu0_volt_high =
602 pmf_find_function(hwclock, "set-voltage-high-0");
603 pfunc_cpu0_volt_low =
604 pmf_find_function(hwclock, "set-voltage-low-0");
605 pfunc_cpu1_volt_high =
606 pmf_find_function(hwclock, "set-voltage-high-1");
607 pfunc_cpu1_volt_low =
608 pmf_find_function(hwclock, "set-voltage-low-1");
609
610 /* Check we have minimum requirements */
611 if (pfunc_cpu_getfreq == NULL || pfunc_cpu_setfreq_high == NULL ||
612 pfunc_cpu_setfreq_low == NULL || pfunc_slewing_done == NULL) {
613 printk(KERN_ERR "cpufreq: Can't find platform functions !\n");
614 rc = -ENODEV;
615 goto bail;
616 }
617
618 /* Check that we have complete sets */
619 if (pfunc_cpu0_volt_high == NULL || pfunc_cpu0_volt_low == NULL) {
620 pmf_put_function(pfunc_cpu0_volt_high);
621 pmf_put_function(pfunc_cpu0_volt_low);
622 pfunc_cpu0_volt_high = pfunc_cpu0_volt_low = NULL;
623 has_volt = 0;
624 }
625 if (!has_volt ||
626 pfunc_cpu1_volt_high == NULL || pfunc_cpu1_volt_low == NULL) {
627 pmf_put_function(pfunc_cpu1_volt_high);
628 pmf_put_function(pfunc_cpu1_volt_low);
629 pfunc_cpu1_volt_high = pfunc_cpu1_volt_low = NULL;
630 }
631
632 /* Note: The device tree also contains a "platform-set-values"
633 * function for which I haven't quite figured out the usage. It
634 * might have to be called on init and/or wakeup, I'm not too sure
635 * but things seem to work fine without it so far ...
636 */
637
638 /* Get max frequency from device-tree */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000639 valp = of_get_property(cpunode, "clock-frequency", NULL);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100640 if (!valp) {
641 printk(KERN_ERR "cpufreq: Can't find CPU frequency !\n");
642 rc = -ENODEV;
643 goto bail;
644 }
645
646 max_freq = (*valp)/1000;
647
648 /* Now calculate reduced frequency by using the cpuid input freq
649 * ratio. This requires 64 bits math unless we are willing to lose
650 * some precision
651 */
652 ih = *((u32 *)(eeprom + 0x10));
653 il = *((u32 *)(eeprom + 0x20));
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000654
655 /* Check for machines with no useful settings */
656 if (il == ih) {
657 printk(KERN_WARNING "cpufreq: No low frequency mode available"
658 " on this model !\n");
659 rc = -ENODEV;
660 goto bail;
661 }
662
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100663 min_freq = 0;
664 if (ih != 0 && il != 0)
665 min_freq = (max_freq * il) / ih;
666
667 /* Sanity check */
668 if (min_freq >= max_freq || min_freq < 1000) {
669 printk(KERN_ERR "cpufreq: Can't calculate low frequency !\n");
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000670 rc = -ENXIO;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100671 goto bail;
672 }
673 g5_cpu_freqs[0].frequency = max_freq;
674 g5_cpu_freqs[1].frequency = min_freq;
675
676 /* Set callbacks */
Nick Piggin16962e72009-02-19 07:07:41 +0000677 transition_latency = CPUFREQ_ETERNAL;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100678 g5_switch_volt = g5_pfunc_switch_volt;
679 g5_switch_freq = g5_pfunc_switch_freq;
680 g5_query_freq = g5_pfunc_query_freq;
681
682 /* Force apply current frequency to make sure everything is in
683 * sync (voltage is right for example). Firmware may leave us with
684 * a strange setting ...
685 */
686 g5_switch_volt(CPUFREQ_HIGH);
687 msleep(10);
688 g5_pmode_cur = -1;
689 g5_switch_freq(g5_query_freq());
690
691 printk(KERN_INFO "Registering G5 CPU frequency driver\n");
692 printk(KERN_INFO "Frequency method: i2c/pfunc, "
693 "Voltage method: %s\n", has_volt ? "i2c/pfunc" : "none");
694 printk(KERN_INFO "Low: %d Mhz, High: %d Mhz, Cur: %d MHz\n",
695 g5_cpu_freqs[1].frequency/1000,
696 g5_cpu_freqs[0].frequency/1000,
697 g5_cpu_freqs[g5_pmode_cur].frequency/1000);
698
699 rc = cpufreq_register_driver(&g5_cpufreq_driver);
700 bail:
701 if (rc != 0) {
702 pmf_put_function(pfunc_cpu_getfreq);
703 pmf_put_function(pfunc_cpu_setfreq_high);
704 pmf_put_function(pfunc_cpu_setfreq_low);
705 pmf_put_function(pfunc_slewing_done);
706 pmf_put_function(pfunc_cpu0_volt_high);
707 pmf_put_function(pfunc_cpu0_volt_low);
708 pmf_put_function(pfunc_cpu1_volt_high);
709 pmf_put_function(pfunc_cpu1_volt_low);
710 }
711 of_node_put(hwclock);
712 of_node_put(cpuid);
713 of_node_put(cpunode);
714
715 return rc;
716}
717
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100718static int __init g5_cpufreq_init(void)
719{
720 struct device_node *cpus;
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000721 int rc = 0;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100722
723 cpus = of_find_node_by_path("/cpus");
724 if (cpus == NULL) {
725 DBG("No /cpus node !\n");
726 return -ENODEV;
727 }
728
Grant Likely71a157e2010-02-01 21:34:14 -0700729 if (of_machine_is_compatible("PowerMac7,2") ||
730 of_machine_is_compatible("PowerMac7,3") ||
731 of_machine_is_compatible("RackMac3,1"))
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100732 rc = g5_pm72_cpufreq_init(cpus);
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +1000733#ifdef CONFIG_PMAC_SMU
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100734 else
735 rc = g5_neo2_cpufreq_init(cpus);
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +1000736#endif /* CONFIG_PMAC_SMU */
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100737
738 of_node_put(cpus);
739 return rc;
740}
741
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100742module_init(g5_cpufreq_init);
743
744
745MODULE_LICENSE("GPL");