blob: 41fa89e4d9d88d7bdc9ba8ba3ed30b694fab4c53 [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>
Sudeep KarkadaNagesha760287a2013-07-17 13:42:56 +010025#include <linux/of_device.h>
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110026#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>
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +110033#include <asm/pmac_pfunc.h>
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110034
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +100035#define DBG(fmt...) pr_debug(fmt)
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110036
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
Adrian Bunk943ffb52006-01-10 00:10:13 +010079 * the various frequencies, retrieved from the device-tree
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110080 */
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110081static int g5_pmode_cur;
82
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +110083static void (*g5_switch_volt)(int speed_mode);
84static int (*g5_switch_freq)(int speed_mode);
85static int (*g5_query_freq)(void);
86
Ingo Molnar14cc3e22006-03-26 01:37:14 -080087static DEFINE_MUTEX(g5_switch_mutex);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110088
Nick Piggin16962e72009-02-19 07:07:41 +000089static unsigned long transition_latency;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110090
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +100091#ifdef CONFIG_PMAC_SMU
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +100092
Stephen Rothwell9ca91e02006-09-14 16:59:31 +100093static const u32 *g5_pmode_data;
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +100094static int g5_pmode_max;
95
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +110096static 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
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100100/*
101 * SMU based voltage switching for Neo2 platforms
102 */
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100103
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100104static void g5_smu_switch_volt(int speed_mode)
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100105{
106 struct smu_simple_cmd cmd;
107
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700108 DECLARE_COMPLETION_ONSTACK(comp);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100109 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
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100115/*
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)
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100123{
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100124 struct pmf_args args;
125 u32 slew, done = 0;
126 unsigned long timeout;
127
128 slew = (speed_mode == CPUFREQ_LOW) ? 1 : 0;
129 args.count = 1;
130 args.u[0].p = &slew;
131
132 pmf_call_one(pfunc_set_vdnap0, &args);
133
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}
150
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;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100158 int to;
159
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100160 /* If frequency is going up, first ramp up the voltage */
161 if (speed_mode < g5_pmode_cur)
162 g5_switch_volt(speed_mode);
163
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100164 local_irq_save(flags);
165
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100166 /* 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
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100188 local_irq_restore(flags);
189
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100190 /* 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
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100197 return 0;
198}
199
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100200static int g5_scom_query_freq(void)
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100201{
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
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100212/*
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000213 * Fake voltage switching for platforms with missing support
214 */
215
216static void g5_dummy_switch_volt(int speed_mode)
217{
218}
219
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +1000220#endif /* CONFIG_PMAC_SMU */
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000221
222/*
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100223 * 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;
Joe Perchesd258e642009-06-28 06:26:10 +0000254static struct pmf_function *pfunc_slewing_done;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100255
256static int g5_pfunc_switch_freq(int speed_mode)
257{
258 struct pmf_args args;
259 u32 done = 0;
260 unsigned long timeout;
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000261 int rc;
262
263 DBG("g5_pfunc_switch_freq(%d)\n", speed_mode);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100264
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)
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000271 rc = pmf_call_one(pfunc_cpu_setfreq_high, NULL);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100272 else
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000273 rc = pmf_call_one(pfunc_cpu_setfreq_low, NULL);
274
275 if (rc)
276 printk(KERN_WARNING "cpufreq: pfunc switch error %d\n", rc);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100277
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
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100315
316/*
317 * Common interface to the cpufreq core
318 */
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100319
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{
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100328 unsigned int newstate = 0;
329 struct cpufreq_freqs freqs;
330 int rc;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100331
332 if (cpufreq_frequency_table_target(policy, g5_cpu_freqs,
333 target_freq, relation, &newstate))
334 return -EINVAL;
335
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100336 if (g5_pmode_cur == newstate)
337 return 0;
338
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800339 mutex_lock(&g5_switch_mutex);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100340
341 freqs.old = g5_cpu_freqs[g5_pmode_cur].frequency;
342 freqs.new = g5_cpu_freqs[newstate].frequency;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100343
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530344 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100345 rc = g5_switch_freq(newstate);
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530346 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100347
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800348 mutex_unlock(&g5_switch_mutex);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100349
350 return rc;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100351}
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{
Nick Piggin16962e72009-02-19 07:07:41 +0000360 policy->cpuinfo.transition_latency = transition_latency;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100361 policy->cur = g5_cpu_freqs[g5_query_freq()].frequency;
Johannes Berg8fce6dd2007-03-21 21:40:42 +1100362 /* 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. */
Anton Blanchard1b095cf2010-04-26 15:32:32 +0000365 cpumask_copy(policy->cpus, cpu_online_mask);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100366
Viresh Kumar0e645df92013-09-16 18:56:26 +0530367 return cpufreq_table_validate_and_show(policy, g5_cpu_freqs);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100368}
369
370
371static struct cpufreq_driver g5_cpufreq_driver = {
372 .name = "powermac",
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100373 .flags = CPUFREQ_CONST_LOOPS,
374 .init = g5_cpufreq_cpu_init,
375 .verify = g5_cpufreq_verify,
376 .target = g5_cpufreq_target,
377 .get = g5_cpufreq_get_speed,
378 .attr = g5_cpu_freqs_attr,
379};
380
381
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +1000382#ifdef CONFIG_PMAC_SMU
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000383
Sudeep KarkadaNagesha760287a2013-07-17 13:42:56 +0100384static int __init g5_neo2_cpufreq_init(struct device_node *cpunode)
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100385{
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100386 unsigned int psize, ssize;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100387 unsigned long max_freq;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100388 char *freq_method, *volt_method;
Jeremy Kerr018a3d12006-07-12 15:40:29 +1000389 const u32 *valp;
390 u32 pvr_hi;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100391 int use_volts_vdnap = 0;
392 int use_volts_smu = 0;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100393 int rc = -ENODEV;
394
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100395 /* Check supported platforms */
Grant Likely71a157e2010-02-01 21:34:14 -0700396 if (of_machine_is_compatible("PowerMac8,1") ||
397 of_machine_is_compatible("PowerMac8,2") ||
398 of_machine_is_compatible("PowerMac9,1"))
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100399 use_volts_smu = 1;
Grant Likely71a157e2010-02-01 21:34:14 -0700400 else if (of_machine_is_compatible("PowerMac11,2"))
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100401 use_volts_vdnap = 1;
402 else
403 return -ENODEV;
404
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100405 /* Check 970FX for now */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000406 valp = of_get_property(cpunode, "cpu-version", NULL);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100407 if (!valp) {
408 DBG("No cpu-version property !\n");
409 goto bail_noprops;
410 }
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100411 pvr_hi = (*valp) >> 16;
412 if (pvr_hi != 0x3c && pvr_hi != 0x44) {
413 printk(KERN_ERR "cpufreq: Unsupported CPU version\n");
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100414 goto bail_noprops;
415 }
416
417 /* Look for the powertune data in the device-tree */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000418 g5_pmode_data = of_get_property(cpunode, "power-mode-data",&psize);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100419 if (!g5_pmode_data) {
420 DBG("No power-mode-data !\n");
421 goto bail_noprops;
422 }
423 g5_pmode_max = psize / sizeof(u32) - 1;
424
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100425 if (use_volts_smu) {
Jeremy Kerr018a3d12006-07-12 15:40:29 +1000426 const struct smu_sdbp_header *shdr;
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100427
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100428 /* Look for the FVT table */
429 shdr = smu_get_sdb_partition(SMU_SDB_FVT_ID, NULL);
430 if (!shdr)
431 goto bail_noprops;
432 g5_fvt_table = (struct smu_sdbp_fvt *)&shdr[1];
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530433 ssize = (shdr->len * sizeof(u32)) - sizeof(*shdr);
434 g5_fvt_count = ssize / sizeof(*g5_fvt_table);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100435 g5_fvt_cur = 0;
436
437 /* Sanity checking */
438 if (g5_fvt_count < 1 || g5_pmode_max < 1)
439 goto bail_noprops;
440
441 g5_switch_volt = g5_smu_switch_volt;
442 volt_method = "SMU";
443 } else if (use_volts_vdnap) {
444 struct device_node *root;
445
446 root = of_find_node_by_path("/");
447 if (root == NULL) {
448 printk(KERN_ERR "cpufreq: Can't find root of "
449 "device tree\n");
450 goto bail_noprops;
451 }
452 pfunc_set_vdnap0 = pmf_find_function(root, "set-vdnap0");
453 pfunc_vdnap0_complete =
454 pmf_find_function(root, "slewing-done");
455 if (pfunc_set_vdnap0 == NULL ||
456 pfunc_vdnap0_complete == NULL) {
457 printk(KERN_ERR "cpufreq: Can't find required "
458 "platform function\n");
459 goto bail_noprops;
460 }
461
462 g5_switch_volt = g5_vdnap_switch_volt;
463 volt_method = "GPIO";
464 } else {
465 g5_switch_volt = g5_dummy_switch_volt;
466 volt_method = "none";
467 }
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100468
469 /*
470 * From what I see, clock-frequency is always the maximal frequency.
471 * The current driver can not slew sysclk yet, so we really only deal
472 * with powertune steps for now. We also only implement full freq and
473 * half freq in this version. So far, I haven't yet seen a machine
474 * supporting anything else.
475 */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000476 valp = of_get_property(cpunode, "clock-frequency", NULL);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100477 if (!valp)
478 return -ENODEV;
479 max_freq = (*valp)/1000;
480 g5_cpu_freqs[0].frequency = max_freq;
481 g5_cpu_freqs[1].frequency = max_freq/2;
482
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100483 /* Set callbacks */
Nick Piggin16962e72009-02-19 07:07:41 +0000484 transition_latency = 12000;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100485 g5_switch_freq = g5_scom_switch_freq;
486 g5_query_freq = g5_scom_query_freq;
487 freq_method = "SCOM";
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100488
489 /* Force apply current frequency to make sure everything is in
490 * sync (voltage is right for example). Firmware may leave us with
491 * a strange setting ...
492 */
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100493 g5_switch_volt(CPUFREQ_HIGH);
494 msleep(10);
495 g5_pmode_cur = -1;
496 g5_switch_freq(g5_query_freq());
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100497
498 printk(KERN_INFO "Registering G5 CPU frequency driver\n");
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100499 printk(KERN_INFO "Frequency method: %s, Voltage method: %s\n",
500 freq_method, volt_method);
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100501 printk(KERN_INFO "Low: %d Mhz, High: %d Mhz, Cur: %d MHz\n",
502 g5_cpu_freqs[1].frequency/1000,
503 g5_cpu_freqs[0].frequency/1000,
504 g5_cpu_freqs[g5_pmode_cur].frequency/1000);
505
506 rc = cpufreq_register_driver(&g5_cpufreq_driver);
507
508 /* We keep the CPU node on hold... hopefully, Apple G5 don't have
509 * hotplug CPU with a dynamic device-tree ...
510 */
511 return rc;
512
513 bail_noprops:
514 of_node_put(cpunode);
515
516 return rc;
517}
518
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +1000519#endif /* CONFIG_PMAC_SMU */
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000520
521
Sudeep KarkadaNagesha760287a2013-07-17 13:42:56 +0100522static int __init g5_pm72_cpufreq_init(struct device_node *cpunode)
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100523{
Sudeep KarkadaNagesha760287a2013-07-17 13:42:56 +0100524 struct device_node *cpuid = NULL, *hwclock = NULL;
Jeremy Kerr018a3d12006-07-12 15:40:29 +1000525 const u8 *eeprom = NULL;
526 const u32 *valp;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100527 u64 max_freq, min_freq, ih, il;
528 int has_volt = 1, rc = 0;
529
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000530 DBG("cpufreq: Initializing for PowerMac7,2, PowerMac7,3 and"
531 " RackMac3,1...\n");
532
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100533 /* Lookup the cpuid eeprom node */
534 cpuid = of_find_node_by_path("/u3@0,f8000000/i2c@f8001000/cpuid@a0");
535 if (cpuid != NULL)
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000536 eeprom = of_get_property(cpuid, "cpuid", NULL);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100537 if (eeprom == NULL) {
538 printk(KERN_ERR "cpufreq: Can't find cpuid EEPROM !\n");
539 rc = -ENODEV;
540 goto bail;
541 }
542
543 /* Lookup the i2c hwclock */
544 for (hwclock = NULL;
545 (hwclock = of_find_node_by_name(hwclock, "i2c-hwclock")) != NULL;){
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000546 const char *loc = of_get_property(hwclock,
Jeremy Kerr018a3d12006-07-12 15:40:29 +1000547 "hwctrl-location", NULL);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100548 if (loc == NULL)
549 continue;
550 if (strcmp(loc, "CPU CLOCK"))
551 continue;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000552 if (!of_get_property(hwclock, "platform-get-frequency", NULL))
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100553 continue;
554 break;
555 }
556 if (hwclock == NULL) {
557 printk(KERN_ERR "cpufreq: Can't find i2c clock chip !\n");
558 rc = -ENODEV;
559 goto bail;
560 }
561
562 DBG("cpufreq: i2c clock chip found: %s\n", hwclock->full_name);
563
564 /* Now get all the platform functions */
565 pfunc_cpu_getfreq =
566 pmf_find_function(hwclock, "get-frequency");
567 pfunc_cpu_setfreq_high =
568 pmf_find_function(hwclock, "set-frequency-high");
569 pfunc_cpu_setfreq_low =
570 pmf_find_function(hwclock, "set-frequency-low");
571 pfunc_slewing_done =
572 pmf_find_function(hwclock, "slewing-done");
573 pfunc_cpu0_volt_high =
574 pmf_find_function(hwclock, "set-voltage-high-0");
575 pfunc_cpu0_volt_low =
576 pmf_find_function(hwclock, "set-voltage-low-0");
577 pfunc_cpu1_volt_high =
578 pmf_find_function(hwclock, "set-voltage-high-1");
579 pfunc_cpu1_volt_low =
580 pmf_find_function(hwclock, "set-voltage-low-1");
581
582 /* Check we have minimum requirements */
583 if (pfunc_cpu_getfreq == NULL || pfunc_cpu_setfreq_high == NULL ||
584 pfunc_cpu_setfreq_low == NULL || pfunc_slewing_done == NULL) {
585 printk(KERN_ERR "cpufreq: Can't find platform functions !\n");
586 rc = -ENODEV;
587 goto bail;
588 }
589
590 /* Check that we have complete sets */
591 if (pfunc_cpu0_volt_high == NULL || pfunc_cpu0_volt_low == NULL) {
592 pmf_put_function(pfunc_cpu0_volt_high);
593 pmf_put_function(pfunc_cpu0_volt_low);
594 pfunc_cpu0_volt_high = pfunc_cpu0_volt_low = NULL;
595 has_volt = 0;
596 }
597 if (!has_volt ||
598 pfunc_cpu1_volt_high == NULL || pfunc_cpu1_volt_low == NULL) {
599 pmf_put_function(pfunc_cpu1_volt_high);
600 pmf_put_function(pfunc_cpu1_volt_low);
601 pfunc_cpu1_volt_high = pfunc_cpu1_volt_low = NULL;
602 }
603
604 /* Note: The device tree also contains a "platform-set-values"
605 * function for which I haven't quite figured out the usage. It
606 * might have to be called on init and/or wakeup, I'm not too sure
607 * but things seem to work fine without it so far ...
608 */
609
610 /* Get max frequency from device-tree */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000611 valp = of_get_property(cpunode, "clock-frequency", NULL);
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100612 if (!valp) {
613 printk(KERN_ERR "cpufreq: Can't find CPU frequency !\n");
614 rc = -ENODEV;
615 goto bail;
616 }
617
618 max_freq = (*valp)/1000;
619
620 /* Now calculate reduced frequency by using the cpuid input freq
621 * ratio. This requires 64 bits math unless we are willing to lose
622 * some precision
623 */
624 ih = *((u32 *)(eeprom + 0x10));
625 il = *((u32 *)(eeprom + 0x20));
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000626
627 /* Check for machines with no useful settings */
628 if (il == ih) {
629 printk(KERN_WARNING "cpufreq: No low frequency mode available"
630 " on this model !\n");
631 rc = -ENODEV;
632 goto bail;
633 }
634
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100635 min_freq = 0;
636 if (ih != 0 && il != 0)
637 min_freq = (max_freq * il) / ih;
638
639 /* Sanity check */
640 if (min_freq >= max_freq || min_freq < 1000) {
641 printk(KERN_ERR "cpufreq: Can't calculate low frequency !\n");
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000642 rc = -ENXIO;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100643 goto bail;
644 }
645 g5_cpu_freqs[0].frequency = max_freq;
646 g5_cpu_freqs[1].frequency = min_freq;
647
648 /* Set callbacks */
Nick Piggin16962e72009-02-19 07:07:41 +0000649 transition_latency = CPUFREQ_ETERNAL;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100650 g5_switch_volt = g5_pfunc_switch_volt;
651 g5_switch_freq = g5_pfunc_switch_freq;
652 g5_query_freq = g5_pfunc_query_freq;
653
654 /* Force apply current frequency to make sure everything is in
655 * sync (voltage is right for example). Firmware may leave us with
656 * a strange setting ...
657 */
658 g5_switch_volt(CPUFREQ_HIGH);
659 msleep(10);
660 g5_pmode_cur = -1;
661 g5_switch_freq(g5_query_freq());
662
663 printk(KERN_INFO "Registering G5 CPU frequency driver\n");
664 printk(KERN_INFO "Frequency method: i2c/pfunc, "
665 "Voltage method: %s\n", has_volt ? "i2c/pfunc" : "none");
666 printk(KERN_INFO "Low: %d Mhz, High: %d Mhz, Cur: %d MHz\n",
667 g5_cpu_freqs[1].frequency/1000,
668 g5_cpu_freqs[0].frequency/1000,
669 g5_cpu_freqs[g5_pmode_cur].frequency/1000);
670
671 rc = cpufreq_register_driver(&g5_cpufreq_driver);
672 bail:
673 if (rc != 0) {
674 pmf_put_function(pfunc_cpu_getfreq);
675 pmf_put_function(pfunc_cpu_setfreq_high);
676 pmf_put_function(pfunc_cpu_setfreq_low);
677 pmf_put_function(pfunc_slewing_done);
678 pmf_put_function(pfunc_cpu0_volt_high);
679 pmf_put_function(pfunc_cpu0_volt_low);
680 pmf_put_function(pfunc_cpu1_volt_high);
681 pmf_put_function(pfunc_cpu1_volt_low);
682 }
683 of_node_put(hwclock);
684 of_node_put(cpuid);
685 of_node_put(cpunode);
686
687 return rc;
688}
689
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100690static int __init g5_cpufreq_init(void)
691{
Sudeep KarkadaNagesha760287a2013-07-17 13:42:56 +0100692 struct device_node *cpunode;
Benjamin Herrenschmidt7ed14c22006-07-06 15:09:19 +1000693 int rc = 0;
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100694
Sudeep KarkadaNagesha760287a2013-07-17 13:42:56 +0100695 /* Get first CPU node */
696 cpunode = of_cpu_device_node_get(0);
697 if (cpunode == NULL) {
698 pr_err("cpufreq: Can't find any CPU node\n");
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100699 return -ENODEV;
700 }
701
Grant Likely71a157e2010-02-01 21:34:14 -0700702 if (of_machine_is_compatible("PowerMac7,2") ||
703 of_machine_is_compatible("PowerMac7,3") ||
704 of_machine_is_compatible("RackMac3,1"))
Sudeep KarkadaNagesha760287a2013-07-17 13:42:56 +0100705 rc = g5_pm72_cpufreq_init(cpunode);
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +1000706#ifdef CONFIG_PMAC_SMU
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100707 else
Sudeep KarkadaNagesha760287a2013-07-17 13:42:56 +0100708 rc = g5_neo2_cpufreq_init(cpunode);
Benjamin Herrenschmidte272a282006-07-10 16:44:54 +1000709#endif /* CONFIG_PMAC_SMU */
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100710
Benjamin Herrenschmidt9a699ae2006-01-07 11:45:28 +1100711 return rc;
712}
713
Benjamin Herrenschmidt43501472005-11-07 14:27:33 +1100714module_init(g5_cpufreq_init);
715
716
717MODULE_LICENSE("GPL");