cpufreq: pmac64-cpufreq: remove device tree parsing for cpu nodes
[deliverable/linux.git] / drivers / cpufreq / pmac64-cpufreq.c
CommitLineData
4350147a
BH
1/*
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
7ed14c21
BH
13#undef DEBUG
14
4350147a
BH
15#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>
4350147a
BH
21#include <linux/cpufreq.h>
22#include <linux/init.h>
23#include <linux/completion.h>
14cc3e2b 24#include <linux/mutex.h>
760287ab 25#include <linux/of_device.h>
4350147a
BH
26#include <asm/prom.h>
27#include <asm/machdep.h>
28#include <asm/irq.h>
29#include <asm/sections.h>
30#include <asm/cputable.h>
31#include <asm/time.h>
32#include <asm/smu.h>
9a699aef 33#include <asm/pmac_pfunc.h>
4350147a 34
7ed14c21 35#define DBG(fmt...) pr_debug(fmt)
4350147a
BH
36
37/* see 970FX user manual */
38
39#define SCOM_PCR 0x0aa001 /* PCR scom addr */
40
41#define PCR_HILO_SELECT 0x80000000U /* 1 = PCR, 0 = PCRH */
42#define PCR_SPEED_FULL 0x00000000U /* 1:1 speed value */
43#define PCR_SPEED_HALF 0x00020000U /* 1:2 speed value */
44#define PCR_SPEED_QUARTER 0x00040000U /* 1:4 speed value */
45#define PCR_SPEED_MASK 0x000e0000U /* speed mask */
46#define PCR_SPEED_SHIFT 17
47#define PCR_FREQ_REQ_VALID 0x00010000U /* freq request valid */
48#define PCR_VOLT_REQ_VALID 0x00008000U /* volt request valid */
49#define PCR_TARGET_TIME_MASK 0x00006000U /* target time */
50#define PCR_STATLAT_MASK 0x00001f00U /* STATLAT value */
51#define PCR_SNOOPLAT_MASK 0x000000f0U /* SNOOPLAT value */
52#define PCR_SNOOPACC_MASK 0x0000000fU /* SNOOPACC value */
53
54#define SCOM_PSR 0x408001 /* PSR scom addr */
55/* warning: PSR is a 64 bits register */
56#define PSR_CMD_RECEIVED 0x2000000000000000U /* command received */
57#define PSR_CMD_COMPLETED 0x1000000000000000U /* command completed */
58#define PSR_CUR_SPEED_MASK 0x0300000000000000U /* current speed */
59#define PSR_CUR_SPEED_SHIFT (56)
60
61/*
62 * The G5 only supports two frequencies (Quarter speed is not supported)
63 */
64#define CPUFREQ_HIGH 0
65#define CPUFREQ_LOW 1
66
67static struct cpufreq_frequency_table g5_cpu_freqs[] = {
68 {CPUFREQ_HIGH, 0},
69 {CPUFREQ_LOW, 0},
70 {0, CPUFREQ_TABLE_END},
71};
72
73static struct freq_attr* g5_cpu_freqs_attr[] = {
74 &cpufreq_freq_attr_scaling_available_freqs,
75 NULL,
76};
77
78/* Power mode data is an array of the 32 bits PCR values to use for
943ffb58 79 * the various frequencies, retrieved from the device-tree
4350147a 80 */
4350147a
BH
81static int g5_pmode_cur;
82
9a699aef
BH
83static void (*g5_switch_volt)(int speed_mode);
84static int (*g5_switch_freq)(int speed_mode);
85static int (*g5_query_freq)(void);
86
14cc3e2b 87static DEFINE_MUTEX(g5_switch_mutex);
4350147a 88
16962e7c 89static unsigned long transition_latency;
4350147a 90
e272a285 91#ifdef CONFIG_PMAC_SMU
7ed14c21 92
9ca91e0f 93static const u32 *g5_pmode_data;
7ed14c21
BH
94static int g5_pmode_max;
95
4350147a
BH
96static struct smu_sdbp_fvt *g5_fvt_table; /* table of op. points */
97static int g5_fvt_count; /* number of op. points */
98static int g5_fvt_cur; /* current op. point */
99
9a699aef
BH
100/*
101 * SMU based voltage switching for Neo2 platforms
102 */
4350147a 103
9a699aef 104static void g5_smu_switch_volt(int speed_mode)
4350147a
BH
105{
106 struct smu_simple_cmd cmd;
107
6e9a4738 108 DECLARE_COMPLETION_ONSTACK(comp);
4350147a
BH
109 smu_queue_simple(&cmd, SMU_CMD_POWER_COMMAND, 8, smu_done_complete,
110 &comp, 'V', 'S', 'L', 'E', 'W',
111 0xff, g5_fvt_cur+1, speed_mode);
112 wait_for_completion(&comp);
113}
114
9a699aef
BH
115/*
116 * Platform function based voltage/vdnap switching for Neo2
117 */
118
119static struct pmf_function *pfunc_set_vdnap0;
120static struct pmf_function *pfunc_vdnap0_complete;
121
122static void g5_vdnap_switch_volt(int speed_mode)
4350147a 123{
9a699aef
BH
124 struct pmf_args args;
125 u32 slew, done = 0;
126 unsigned long timeout;
4350147a 127
9a699aef
BH
128 slew = (speed_mode == CPUFREQ_LOW) ? 1 : 0;
129 args.count = 1;
130 args.u[0].p = &slew;
4350147a 131
9a699aef 132 pmf_call_one(pfunc_set_vdnap0, &args);
4350147a 133
9a699aef
BH
134 /* It's an irq GPIO so we should be able to just block here,
135 * I'll do that later after I've properly tested the IRQ code for
136 * platform functions
137 */
138 timeout = jiffies + HZ/10;
139 while(!time_after(jiffies, timeout)) {
140 args.count = 1;
141 args.u[0].p = &done;
142 pmf_call_one(pfunc_vdnap0_complete, &args);
143 if (done)
144 break;
145 msleep(1);
146 }
147 if (done == 0)
148 printk(KERN_WARNING "cpufreq: Timeout in clock slewing !\n");
149}
4350147a 150
9a699aef
BH
151
152/*
153 * SCOM based frequency switching for 970FX rev3
154 */
155static int g5_scom_switch_freq(int speed_mode)
156{
157 unsigned long flags;
158 int to;
4350147a
BH
159
160 /* If frequency is going up, first ramp up the voltage */
161 if (speed_mode < g5_pmode_cur)
162 g5_switch_volt(speed_mode);
163
9a699aef
BH
164 local_irq_save(flags);
165
4350147a
BH
166 /* Clear PCR high */
167 scom970_write(SCOM_PCR, 0);
168 /* Clear PCR low */
169 scom970_write(SCOM_PCR, PCR_HILO_SELECT | 0);
170 /* Set PCR low */
171 scom970_write(SCOM_PCR, PCR_HILO_SELECT |
172 g5_pmode_data[speed_mode]);
173
174 /* Wait for completion */
175 for (to = 0; to < 10; to++) {
176 unsigned long psr = scom970_read(SCOM_PSR);
177
178 if ((psr & PSR_CMD_RECEIVED) == 0 &&
179 (((psr >> PSR_CUR_SPEED_SHIFT) ^
180 (g5_pmode_data[speed_mode] >> PCR_SPEED_SHIFT)) & 0x3)
181 == 0)
182 break;
183 if (psr & PSR_CMD_COMPLETED)
184 break;
185 udelay(100);
186 }
187
9a699aef
BH
188 local_irq_restore(flags);
189
4350147a
BH
190 /* If frequency is going down, last ramp the voltage */
191 if (speed_mode > g5_pmode_cur)
192 g5_switch_volt(speed_mode);
193
194 g5_pmode_cur = speed_mode;
195 ppc_proc_freq = g5_cpu_freqs[speed_mode].frequency * 1000ul;
196
4350147a
BH
197 return 0;
198}
199
9a699aef 200static int g5_scom_query_freq(void)
4350147a
BH
201{
202 unsigned long psr = scom970_read(SCOM_PSR);
203 int i;
204
205 for (i = 0; i <= g5_pmode_max; i++)
206 if ((((psr >> PSR_CUR_SPEED_SHIFT) ^
207 (g5_pmode_data[i] >> PCR_SPEED_SHIFT)) & 0x3) == 0)
208 break;
209 return i;
210}
211
7ed14c21
BH
212/*
213 * Fake voltage switching for platforms with missing support
214 */
215
216static void g5_dummy_switch_volt(int speed_mode)
217{
218}
219
e272a285 220#endif /* CONFIG_PMAC_SMU */
7ed14c21 221
9a699aef
BH
222/*
223 * Platform function based voltage switching for PowerMac7,2 & 7,3
224 */
225
226static struct pmf_function *pfunc_cpu0_volt_high;
227static struct pmf_function *pfunc_cpu0_volt_low;
228static struct pmf_function *pfunc_cpu1_volt_high;
229static struct pmf_function *pfunc_cpu1_volt_low;
230
231static void g5_pfunc_switch_volt(int speed_mode)
232{
233 if (speed_mode == CPUFREQ_HIGH) {
234 if (pfunc_cpu0_volt_high)
235 pmf_call_one(pfunc_cpu0_volt_high, NULL);
236 if (pfunc_cpu1_volt_high)
237 pmf_call_one(pfunc_cpu1_volt_high, NULL);
238 } else {
239 if (pfunc_cpu0_volt_low)
240 pmf_call_one(pfunc_cpu0_volt_low, NULL);
241 if (pfunc_cpu1_volt_low)
242 pmf_call_one(pfunc_cpu1_volt_low, NULL);
243 }
244 msleep(10); /* should be faster , to fix */
245}
246
247/*
248 * Platform function based frequency switching for PowerMac7,2 & 7,3
249 */
250
251static struct pmf_function *pfunc_cpu_setfreq_high;
252static struct pmf_function *pfunc_cpu_setfreq_low;
253static struct pmf_function *pfunc_cpu_getfreq;
d258e64e 254static struct pmf_function *pfunc_slewing_done;
9a699aef
BH
255
256static int g5_pfunc_switch_freq(int speed_mode)
257{
258 struct pmf_args args;
259 u32 done = 0;
260 unsigned long timeout;
7ed14c21
BH
261 int rc;
262
263 DBG("g5_pfunc_switch_freq(%d)\n", speed_mode);
9a699aef
BH
264
265 /* If frequency is going up, first ramp up the voltage */
266 if (speed_mode < g5_pmode_cur)
267 g5_switch_volt(speed_mode);
268
269 /* Do it */
270 if (speed_mode == CPUFREQ_HIGH)
7ed14c21 271 rc = pmf_call_one(pfunc_cpu_setfreq_high, NULL);
9a699aef 272 else
7ed14c21
BH
273 rc = pmf_call_one(pfunc_cpu_setfreq_low, NULL);
274
275 if (rc)
276 printk(KERN_WARNING "cpufreq: pfunc switch error %d\n", rc);
9a699aef
BH
277
278 /* It's an irq GPIO so we should be able to just block here,
279 * I'll do that later after I've properly tested the IRQ code for
280 * platform functions
281 */
282 timeout = jiffies + HZ/10;
283 while(!time_after(jiffies, timeout)) {
284 args.count = 1;
285 args.u[0].p = &done;
286 pmf_call_one(pfunc_slewing_done, &args);
287 if (done)
288 break;
289 msleep(1);
290 }
291 if (done == 0)
292 printk(KERN_WARNING "cpufreq: Timeout in clock slewing !\n");
293
294 /* If frequency is going down, last ramp the voltage */
295 if (speed_mode > g5_pmode_cur)
296 g5_switch_volt(speed_mode);
297
298 g5_pmode_cur = speed_mode;
299 ppc_proc_freq = g5_cpu_freqs[speed_mode].frequency * 1000ul;
300
301 return 0;
302}
303
304static int g5_pfunc_query_freq(void)
305{
306 struct pmf_args args;
307 u32 val = 0;
308
309 args.count = 1;
310 args.u[0].p = &val;
311 pmf_call_one(pfunc_cpu_getfreq, &args);
312 return val ? CPUFREQ_HIGH : CPUFREQ_LOW;
313}
314
9a699aef
BH
315
316/*
317 * Common interface to the cpufreq core
318 */
4350147a
BH
319
320static int g5_cpufreq_verify(struct cpufreq_policy *policy)
321{
322 return cpufreq_frequency_table_verify(policy, g5_cpu_freqs);
323}
324
325static int g5_cpufreq_target(struct cpufreq_policy *policy,
326 unsigned int target_freq, unsigned int relation)
327{
9a699aef
BH
328 unsigned int newstate = 0;
329 struct cpufreq_freqs freqs;
330 int rc;
4350147a
BH
331
332 if (cpufreq_frequency_table_target(policy, g5_cpu_freqs,
333 target_freq, relation, &newstate))
334 return -EINVAL;
335
9a699aef
BH
336 if (g5_pmode_cur == newstate)
337 return 0;
338
14cc3e2b 339 mutex_lock(&g5_switch_mutex);
9a699aef
BH
340
341 freqs.old = g5_cpu_freqs[g5_pmode_cur].frequency;
342 freqs.new = g5_cpu_freqs[newstate].frequency;
9a699aef 343
b43a7ffb 344 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
9a699aef 345 rc = g5_switch_freq(newstate);
b43a7ffb 346 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
9a699aef 347
14cc3e2b 348 mutex_unlock(&g5_switch_mutex);
9a699aef
BH
349
350 return rc;
4350147a
BH
351}
352
353static unsigned int g5_cpufreq_get_speed(unsigned int cpu)
354{
355 return g5_cpu_freqs[g5_pmode_cur].frequency;
356}
357
358static int g5_cpufreq_cpu_init(struct cpufreq_policy *policy)
359{
16962e7c 360 policy->cpuinfo.transition_latency = transition_latency;
4350147a 361 policy->cur = g5_cpu_freqs[g5_query_freq()].frequency;
8fce6dd2
JB
362 /* secondary CPUs are tied to the primary one by the
363 * cpufreq core if in the secondary policy we tell it that
364 * it actually must be one policy together with all others. */
1b095cf4 365 cpumask_copy(policy->cpus, cpu_online_mask);
4350147a
BH
366 cpufreq_frequency_table_get_attr(g5_cpu_freqs, policy->cpu);
367
368 return cpufreq_frequency_table_cpuinfo(policy,
369 g5_cpu_freqs);
370}
371
372
373static struct cpufreq_driver g5_cpufreq_driver = {
374 .name = "powermac",
375 .owner = THIS_MODULE,
376 .flags = CPUFREQ_CONST_LOOPS,
377 .init = g5_cpufreq_cpu_init,
378 .verify = g5_cpufreq_verify,
379 .target = g5_cpufreq_target,
380 .get = g5_cpufreq_get_speed,
381 .attr = g5_cpu_freqs_attr,
382};
383
384
e272a285 385#ifdef CONFIG_PMAC_SMU
7ed14c21 386
760287ab 387static int __init g5_neo2_cpufreq_init(struct device_node *cpunode)
4350147a 388{
4350147a 389 unsigned int psize, ssize;
4350147a 390 unsigned long max_freq;
9a699aef 391 char *freq_method, *volt_method;
018a3d1d
JK
392 const u32 *valp;
393 u32 pvr_hi;
9a699aef
BH
394 int use_volts_vdnap = 0;
395 int use_volts_smu = 0;
4350147a
BH
396 int rc = -ENODEV;
397
9a699aef 398 /* Check supported platforms */
71a157e8
GL
399 if (of_machine_is_compatible("PowerMac8,1") ||
400 of_machine_is_compatible("PowerMac8,2") ||
401 of_machine_is_compatible("PowerMac9,1"))
9a699aef 402 use_volts_smu = 1;
71a157e8 403 else if (of_machine_is_compatible("PowerMac11,2"))
9a699aef
BH
404 use_volts_vdnap = 1;
405 else
406 return -ENODEV;
407
4350147a 408 /* Check 970FX for now */
e2eb6392 409 valp = of_get_property(cpunode, "cpu-version", NULL);
4350147a
BH
410 if (!valp) {
411 DBG("No cpu-version property !\n");
412 goto bail_noprops;
413 }
9a699aef
BH
414 pvr_hi = (*valp) >> 16;
415 if (pvr_hi != 0x3c && pvr_hi != 0x44) {
416 printk(KERN_ERR "cpufreq: Unsupported CPU version\n");
4350147a
BH
417 goto bail_noprops;
418 }
419
420 /* Look for the powertune data in the device-tree */
e2eb6392 421 g5_pmode_data = of_get_property(cpunode, "power-mode-data",&psize);
4350147a
BH
422 if (!g5_pmode_data) {
423 DBG("No power-mode-data !\n");
424 goto bail_noprops;
425 }
426 g5_pmode_max = psize / sizeof(u32) - 1;
427
9a699aef 428 if (use_volts_smu) {
018a3d1d 429 const struct smu_sdbp_header *shdr;
9a699aef
BH
430
431 /* Look for the FVT table */
432 shdr = smu_get_sdb_partition(SMU_SDB_FVT_ID, NULL);
433 if (!shdr)
434 goto bail_noprops;
435 g5_fvt_table = (struct smu_sdbp_fvt *)&shdr[1];
436 ssize = (shdr->len * sizeof(u32)) -
437 sizeof(struct smu_sdbp_header);
438 g5_fvt_count = ssize / sizeof(struct smu_sdbp_fvt);
439 g5_fvt_cur = 0;
440
441 /* Sanity checking */
442 if (g5_fvt_count < 1 || g5_pmode_max < 1)
443 goto bail_noprops;
444
445 g5_switch_volt = g5_smu_switch_volt;
446 volt_method = "SMU";
447 } else if (use_volts_vdnap) {
448 struct device_node *root;
449
450 root = of_find_node_by_path("/");
451 if (root == NULL) {
452 printk(KERN_ERR "cpufreq: Can't find root of "
453 "device tree\n");
454 goto bail_noprops;
455 }
456 pfunc_set_vdnap0 = pmf_find_function(root, "set-vdnap0");
457 pfunc_vdnap0_complete =
458 pmf_find_function(root, "slewing-done");
459 if (pfunc_set_vdnap0 == NULL ||
460 pfunc_vdnap0_complete == NULL) {
461 printk(KERN_ERR "cpufreq: Can't find required "
462 "platform function\n");
463 goto bail_noprops;
464 }
465
466 g5_switch_volt = g5_vdnap_switch_volt;
467 volt_method = "GPIO";
468 } else {
469 g5_switch_volt = g5_dummy_switch_volt;
470 volt_method = "none";
471 }
4350147a
BH
472
473 /*
474 * From what I see, clock-frequency is always the maximal frequency.
475 * The current driver can not slew sysclk yet, so we really only deal
476 * with powertune steps for now. We also only implement full freq and
477 * half freq in this version. So far, I haven't yet seen a machine
478 * supporting anything else.
479 */
e2eb6392 480 valp = of_get_property(cpunode, "clock-frequency", NULL);
4350147a
BH
481 if (!valp)
482 return -ENODEV;
483 max_freq = (*valp)/1000;
484 g5_cpu_freqs[0].frequency = max_freq;
485 g5_cpu_freqs[1].frequency = max_freq/2;
486
9a699aef 487 /* Set callbacks */
16962e7c 488 transition_latency = 12000;
9a699aef
BH
489 g5_switch_freq = g5_scom_switch_freq;
490 g5_query_freq = g5_scom_query_freq;
491 freq_method = "SCOM";
4350147a
BH
492
493 /* Force apply current frequency to make sure everything is in
494 * sync (voltage is right for example). Firmware may leave us with
495 * a strange setting ...
496 */
9a699aef
BH
497 g5_switch_volt(CPUFREQ_HIGH);
498 msleep(10);
499 g5_pmode_cur = -1;
500 g5_switch_freq(g5_query_freq());
4350147a
BH
501
502 printk(KERN_INFO "Registering G5 CPU frequency driver\n");
9a699aef
BH
503 printk(KERN_INFO "Frequency method: %s, Voltage method: %s\n",
504 freq_method, volt_method);
4350147a
BH
505 printk(KERN_INFO "Low: %d Mhz, High: %d Mhz, Cur: %d MHz\n",
506 g5_cpu_freqs[1].frequency/1000,
507 g5_cpu_freqs[0].frequency/1000,
508 g5_cpu_freqs[g5_pmode_cur].frequency/1000);
509
510 rc = cpufreq_register_driver(&g5_cpufreq_driver);
511
512 /* We keep the CPU node on hold... hopefully, Apple G5 don't have
513 * hotplug CPU with a dynamic device-tree ...
514 */
515 return rc;
516
517 bail_noprops:
518 of_node_put(cpunode);
519
520 return rc;
521}
522
e272a285 523#endif /* CONFIG_PMAC_SMU */
7ed14c21
BH
524
525
760287ab 526static int __init g5_pm72_cpufreq_init(struct device_node *cpunode)
9a699aef 527{
760287ab 528 struct device_node *cpuid = NULL, *hwclock = NULL;
018a3d1d
JK
529 const u8 *eeprom = NULL;
530 const u32 *valp;
9a699aef
BH
531 u64 max_freq, min_freq, ih, il;
532 int has_volt = 1, rc = 0;
533
7ed14c21
BH
534 DBG("cpufreq: Initializing for PowerMac7,2, PowerMac7,3 and"
535 " RackMac3,1...\n");
536
9a699aef
BH
537 /* Lookup the cpuid eeprom node */
538 cpuid = of_find_node_by_path("/u3@0,f8000000/i2c@f8001000/cpuid@a0");
539 if (cpuid != NULL)
e2eb6392 540 eeprom = of_get_property(cpuid, "cpuid", NULL);
9a699aef
BH
541 if (eeprom == NULL) {
542 printk(KERN_ERR "cpufreq: Can't find cpuid EEPROM !\n");
543 rc = -ENODEV;
544 goto bail;
545 }
546
547 /* Lookup the i2c hwclock */
548 for (hwclock = NULL;
549 (hwclock = of_find_node_by_name(hwclock, "i2c-hwclock")) != NULL;){
e2eb6392 550 const char *loc = of_get_property(hwclock,
018a3d1d 551 "hwctrl-location", NULL);
9a699aef
BH
552 if (loc == NULL)
553 continue;
554 if (strcmp(loc, "CPU CLOCK"))
555 continue;
e2eb6392 556 if (!of_get_property(hwclock, "platform-get-frequency", NULL))
9a699aef
BH
557 continue;
558 break;
559 }
560 if (hwclock == NULL) {
561 printk(KERN_ERR "cpufreq: Can't find i2c clock chip !\n");
562 rc = -ENODEV;
563 goto bail;
564 }
565
566 DBG("cpufreq: i2c clock chip found: %s\n", hwclock->full_name);
567
568 /* Now get all the platform functions */
569 pfunc_cpu_getfreq =
570 pmf_find_function(hwclock, "get-frequency");
571 pfunc_cpu_setfreq_high =
572 pmf_find_function(hwclock, "set-frequency-high");
573 pfunc_cpu_setfreq_low =
574 pmf_find_function(hwclock, "set-frequency-low");
575 pfunc_slewing_done =
576 pmf_find_function(hwclock, "slewing-done");
577 pfunc_cpu0_volt_high =
578 pmf_find_function(hwclock, "set-voltage-high-0");
579 pfunc_cpu0_volt_low =
580 pmf_find_function(hwclock, "set-voltage-low-0");
581 pfunc_cpu1_volt_high =
582 pmf_find_function(hwclock, "set-voltage-high-1");
583 pfunc_cpu1_volt_low =
584 pmf_find_function(hwclock, "set-voltage-low-1");
585
586 /* Check we have minimum requirements */
587 if (pfunc_cpu_getfreq == NULL || pfunc_cpu_setfreq_high == NULL ||
588 pfunc_cpu_setfreq_low == NULL || pfunc_slewing_done == NULL) {
589 printk(KERN_ERR "cpufreq: Can't find platform functions !\n");
590 rc = -ENODEV;
591 goto bail;
592 }
593
594 /* Check that we have complete sets */
595 if (pfunc_cpu0_volt_high == NULL || pfunc_cpu0_volt_low == NULL) {
596 pmf_put_function(pfunc_cpu0_volt_high);
597 pmf_put_function(pfunc_cpu0_volt_low);
598 pfunc_cpu0_volt_high = pfunc_cpu0_volt_low = NULL;
599 has_volt = 0;
600 }
601 if (!has_volt ||
602 pfunc_cpu1_volt_high == NULL || pfunc_cpu1_volt_low == NULL) {
603 pmf_put_function(pfunc_cpu1_volt_high);
604 pmf_put_function(pfunc_cpu1_volt_low);
605 pfunc_cpu1_volt_high = pfunc_cpu1_volt_low = NULL;
606 }
607
608 /* Note: The device tree also contains a "platform-set-values"
609 * function for which I haven't quite figured out the usage. It
610 * might have to be called on init and/or wakeup, I'm not too sure
611 * but things seem to work fine without it so far ...
612 */
613
614 /* Get max frequency from device-tree */
e2eb6392 615 valp = of_get_property(cpunode, "clock-frequency", NULL);
9a699aef
BH
616 if (!valp) {
617 printk(KERN_ERR "cpufreq: Can't find CPU frequency !\n");
618 rc = -ENODEV;
619 goto bail;
620 }
621
622 max_freq = (*valp)/1000;
623
624 /* Now calculate reduced frequency by using the cpuid input freq
625 * ratio. This requires 64 bits math unless we are willing to lose
626 * some precision
627 */
628 ih = *((u32 *)(eeprom + 0x10));
629 il = *((u32 *)(eeprom + 0x20));
7ed14c21
BH
630
631 /* Check for machines with no useful settings */
632 if (il == ih) {
633 printk(KERN_WARNING "cpufreq: No low frequency mode available"
634 " on this model !\n");
635 rc = -ENODEV;
636 goto bail;
637 }
638
9a699aef
BH
639 min_freq = 0;
640 if (ih != 0 && il != 0)
641 min_freq = (max_freq * il) / ih;
642
643 /* Sanity check */
644 if (min_freq >= max_freq || min_freq < 1000) {
645 printk(KERN_ERR "cpufreq: Can't calculate low frequency !\n");
7ed14c21 646 rc = -ENXIO;
9a699aef
BH
647 goto bail;
648 }
649 g5_cpu_freqs[0].frequency = max_freq;
650 g5_cpu_freqs[1].frequency = min_freq;
651
652 /* Set callbacks */
16962e7c 653 transition_latency = CPUFREQ_ETERNAL;
9a699aef
BH
654 g5_switch_volt = g5_pfunc_switch_volt;
655 g5_switch_freq = g5_pfunc_switch_freq;
656 g5_query_freq = g5_pfunc_query_freq;
657
658 /* Force apply current frequency to make sure everything is in
659 * sync (voltage is right for example). Firmware may leave us with
660 * a strange setting ...
661 */
662 g5_switch_volt(CPUFREQ_HIGH);
663 msleep(10);
664 g5_pmode_cur = -1;
665 g5_switch_freq(g5_query_freq());
666
667 printk(KERN_INFO "Registering G5 CPU frequency driver\n");
668 printk(KERN_INFO "Frequency method: i2c/pfunc, "
669 "Voltage method: %s\n", has_volt ? "i2c/pfunc" : "none");
670 printk(KERN_INFO "Low: %d Mhz, High: %d Mhz, Cur: %d MHz\n",
671 g5_cpu_freqs[1].frequency/1000,
672 g5_cpu_freqs[0].frequency/1000,
673 g5_cpu_freqs[g5_pmode_cur].frequency/1000);
674
675 rc = cpufreq_register_driver(&g5_cpufreq_driver);
676 bail:
677 if (rc != 0) {
678 pmf_put_function(pfunc_cpu_getfreq);
679 pmf_put_function(pfunc_cpu_setfreq_high);
680 pmf_put_function(pfunc_cpu_setfreq_low);
681 pmf_put_function(pfunc_slewing_done);
682 pmf_put_function(pfunc_cpu0_volt_high);
683 pmf_put_function(pfunc_cpu0_volt_low);
684 pmf_put_function(pfunc_cpu1_volt_high);
685 pmf_put_function(pfunc_cpu1_volt_low);
686 }
687 of_node_put(hwclock);
688 of_node_put(cpuid);
689 of_node_put(cpunode);
690
691 return rc;
692}
693
9a699aef
BH
694static int __init g5_cpufreq_init(void)
695{
760287ab 696 struct device_node *cpunode;
7ed14c21 697 int rc = 0;
9a699aef 698
760287ab
SK
699 /* Get first CPU node */
700 cpunode = of_cpu_device_node_get(0);
701 if (cpunode == NULL) {
702 pr_err("cpufreq: Can't find any CPU node\n");
9a699aef
BH
703 return -ENODEV;
704 }
705
71a157e8
GL
706 if (of_machine_is_compatible("PowerMac7,2") ||
707 of_machine_is_compatible("PowerMac7,3") ||
708 of_machine_is_compatible("RackMac3,1"))
760287ab 709 rc = g5_pm72_cpufreq_init(cpunode);
e272a285 710#ifdef CONFIG_PMAC_SMU
9a699aef 711 else
760287ab 712 rc = g5_neo2_cpufreq_init(cpunode);
e272a285 713#endif /* CONFIG_PMAC_SMU */
9a699aef 714
9a699aef
BH
715 return rc;
716}
717
4350147a
BH
718module_init(g5_cpufreq_init);
719
720
721MODULE_LICENSE("GPL");
This page took 0.5642 seconds and 5 git commands to generate.