Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 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 | |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 13 | #undef DEBUG |
| 14 | |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 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> |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 21 | #include <linux/cpufreq.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/completion.h> |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 24 | #include <linux/mutex.h> |
Sudeep KarkadaNagesha | 760287a | 2013-07-17 13:42:56 +0100 | [diff] [blame] | 25 | #include <linux/of_device.h> |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 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> |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 33 | #include <asm/pmac_pfunc.h> |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 34 | |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 35 | #define DBG(fmt...) pr_debug(fmt) |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 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 | |
| 67 | static struct cpufreq_frequency_table g5_cpu_freqs[] = { |
Viresh Kumar | 7f4b046 | 2014-03-28 19:11:47 +0530 | [diff] [blame] | 68 | {0, CPUFREQ_HIGH, 0}, |
| 69 | {0, CPUFREQ_LOW, 0}, |
| 70 | {0, 0, CPUFREQ_TABLE_END}, |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 71 | }; |
| 72 | |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 73 | /* Power mode data is an array of the 32 bits PCR values to use for |
Adrian Bunk | 943ffb5 | 2006-01-10 00:10:13 +0100 | [diff] [blame] | 74 | * the various frequencies, retrieved from the device-tree |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 75 | */ |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 76 | static int g5_pmode_cur; |
| 77 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 78 | static void (*g5_switch_volt)(int speed_mode); |
| 79 | static int (*g5_switch_freq)(int speed_mode); |
| 80 | static int (*g5_query_freq)(void); |
| 81 | |
Nick Piggin | 16962e7 | 2009-02-19 07:07:41 +0000 | [diff] [blame] | 82 | static unsigned long transition_latency; |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 83 | |
Benjamin Herrenschmidt | e272a28 | 2006-07-10 16:44:54 +1000 | [diff] [blame] | 84 | #ifdef CONFIG_PMAC_SMU |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 85 | |
Stephen Rothwell | 9ca91e0 | 2006-09-14 16:59:31 +1000 | [diff] [blame] | 86 | static const u32 *g5_pmode_data; |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 87 | static int g5_pmode_max; |
| 88 | |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 89 | static struct smu_sdbp_fvt *g5_fvt_table; /* table of op. points */ |
| 90 | static int g5_fvt_count; /* number of op. points */ |
| 91 | static int g5_fvt_cur; /* current op. point */ |
| 92 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 93 | /* |
| 94 | * SMU based voltage switching for Neo2 platforms |
| 95 | */ |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 96 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 97 | static void g5_smu_switch_volt(int speed_mode) |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 98 | { |
| 99 | struct smu_simple_cmd cmd; |
| 100 | |
Peter Zijlstra | 6e9a473 | 2006-09-30 23:28:10 -0700 | [diff] [blame] | 101 | DECLARE_COMPLETION_ONSTACK(comp); |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 102 | smu_queue_simple(&cmd, SMU_CMD_POWER_COMMAND, 8, smu_done_complete, |
| 103 | &comp, 'V', 'S', 'L', 'E', 'W', |
| 104 | 0xff, g5_fvt_cur+1, speed_mode); |
| 105 | wait_for_completion(&comp); |
| 106 | } |
| 107 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 108 | /* |
| 109 | * Platform function based voltage/vdnap switching for Neo2 |
| 110 | */ |
| 111 | |
| 112 | static struct pmf_function *pfunc_set_vdnap0; |
| 113 | static struct pmf_function *pfunc_vdnap0_complete; |
| 114 | |
| 115 | static void g5_vdnap_switch_volt(int speed_mode) |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 116 | { |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 117 | struct pmf_args args; |
| 118 | u32 slew, done = 0; |
| 119 | unsigned long timeout; |
| 120 | |
| 121 | slew = (speed_mode == CPUFREQ_LOW) ? 1 : 0; |
| 122 | args.count = 1; |
| 123 | args.u[0].p = &slew; |
| 124 | |
| 125 | pmf_call_one(pfunc_set_vdnap0, &args); |
| 126 | |
| 127 | /* It's an irq GPIO so we should be able to just block here, |
| 128 | * I'll do that later after I've properly tested the IRQ code for |
| 129 | * platform functions |
| 130 | */ |
| 131 | timeout = jiffies + HZ/10; |
| 132 | while(!time_after(jiffies, timeout)) { |
| 133 | args.count = 1; |
| 134 | args.u[0].p = &done; |
| 135 | pmf_call_one(pfunc_vdnap0_complete, &args); |
| 136 | if (done) |
| 137 | break; |
Aaro Koskinen | 45a428e | 2013-09-30 23:44:31 +0300 | [diff] [blame] | 138 | usleep_range(1000, 1000); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 139 | } |
| 140 | if (done == 0) |
| 141 | printk(KERN_WARNING "cpufreq: Timeout in clock slewing !\n"); |
| 142 | } |
| 143 | |
| 144 | |
| 145 | /* |
| 146 | * SCOM based frequency switching for 970FX rev3 |
| 147 | */ |
| 148 | static int g5_scom_switch_freq(int speed_mode) |
| 149 | { |
| 150 | unsigned long flags; |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 151 | int to; |
| 152 | |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 153 | /* If frequency is going up, first ramp up the voltage */ |
| 154 | if (speed_mode < g5_pmode_cur) |
| 155 | g5_switch_volt(speed_mode); |
| 156 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 157 | local_irq_save(flags); |
| 158 | |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 159 | /* Clear PCR high */ |
| 160 | scom970_write(SCOM_PCR, 0); |
| 161 | /* Clear PCR low */ |
| 162 | scom970_write(SCOM_PCR, PCR_HILO_SELECT | 0); |
| 163 | /* Set PCR low */ |
| 164 | scom970_write(SCOM_PCR, PCR_HILO_SELECT | |
| 165 | g5_pmode_data[speed_mode]); |
| 166 | |
| 167 | /* Wait for completion */ |
| 168 | for (to = 0; to < 10; to++) { |
| 169 | unsigned long psr = scom970_read(SCOM_PSR); |
| 170 | |
| 171 | if ((psr & PSR_CMD_RECEIVED) == 0 && |
| 172 | (((psr >> PSR_CUR_SPEED_SHIFT) ^ |
| 173 | (g5_pmode_data[speed_mode] >> PCR_SPEED_SHIFT)) & 0x3) |
| 174 | == 0) |
| 175 | break; |
| 176 | if (psr & PSR_CMD_COMPLETED) |
| 177 | break; |
| 178 | udelay(100); |
| 179 | } |
| 180 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 181 | local_irq_restore(flags); |
| 182 | |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 183 | /* If frequency is going down, last ramp the voltage */ |
| 184 | if (speed_mode > g5_pmode_cur) |
| 185 | g5_switch_volt(speed_mode); |
| 186 | |
| 187 | g5_pmode_cur = speed_mode; |
| 188 | ppc_proc_freq = g5_cpu_freqs[speed_mode].frequency * 1000ul; |
| 189 | |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 190 | return 0; |
| 191 | } |
| 192 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 193 | static int g5_scom_query_freq(void) |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 194 | { |
| 195 | unsigned long psr = scom970_read(SCOM_PSR); |
| 196 | int i; |
| 197 | |
| 198 | for (i = 0; i <= g5_pmode_max; i++) |
| 199 | if ((((psr >> PSR_CUR_SPEED_SHIFT) ^ |
| 200 | (g5_pmode_data[i] >> PCR_SPEED_SHIFT)) & 0x3) == 0) |
| 201 | break; |
| 202 | return i; |
| 203 | } |
| 204 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 205 | /* |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 206 | * Fake voltage switching for platforms with missing support |
| 207 | */ |
| 208 | |
| 209 | static void g5_dummy_switch_volt(int speed_mode) |
| 210 | { |
| 211 | } |
| 212 | |
Benjamin Herrenschmidt | e272a28 | 2006-07-10 16:44:54 +1000 | [diff] [blame] | 213 | #endif /* CONFIG_PMAC_SMU */ |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 214 | |
| 215 | /* |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 216 | * Platform function based voltage switching for PowerMac7,2 & 7,3 |
| 217 | */ |
| 218 | |
| 219 | static struct pmf_function *pfunc_cpu0_volt_high; |
| 220 | static struct pmf_function *pfunc_cpu0_volt_low; |
| 221 | static struct pmf_function *pfunc_cpu1_volt_high; |
| 222 | static struct pmf_function *pfunc_cpu1_volt_low; |
| 223 | |
| 224 | static void g5_pfunc_switch_volt(int speed_mode) |
| 225 | { |
| 226 | if (speed_mode == CPUFREQ_HIGH) { |
| 227 | if (pfunc_cpu0_volt_high) |
| 228 | pmf_call_one(pfunc_cpu0_volt_high, NULL); |
| 229 | if (pfunc_cpu1_volt_high) |
| 230 | pmf_call_one(pfunc_cpu1_volt_high, NULL); |
| 231 | } else { |
| 232 | if (pfunc_cpu0_volt_low) |
| 233 | pmf_call_one(pfunc_cpu0_volt_low, NULL); |
| 234 | if (pfunc_cpu1_volt_low) |
| 235 | pmf_call_one(pfunc_cpu1_volt_low, NULL); |
| 236 | } |
Aaro Koskinen | 45a428e | 2013-09-30 23:44:31 +0300 | [diff] [blame] | 237 | usleep_range(10000, 10000); /* should be faster , to fix */ |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | /* |
| 241 | * Platform function based frequency switching for PowerMac7,2 & 7,3 |
| 242 | */ |
| 243 | |
| 244 | static struct pmf_function *pfunc_cpu_setfreq_high; |
| 245 | static struct pmf_function *pfunc_cpu_setfreq_low; |
| 246 | static struct pmf_function *pfunc_cpu_getfreq; |
Joe Perches | d258e64 | 2009-06-28 06:26:10 +0000 | [diff] [blame] | 247 | static struct pmf_function *pfunc_slewing_done; |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 248 | |
| 249 | static int g5_pfunc_switch_freq(int speed_mode) |
| 250 | { |
| 251 | struct pmf_args args; |
| 252 | u32 done = 0; |
| 253 | unsigned long timeout; |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 254 | int rc; |
| 255 | |
| 256 | DBG("g5_pfunc_switch_freq(%d)\n", speed_mode); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 257 | |
| 258 | /* If frequency is going up, first ramp up the voltage */ |
| 259 | if (speed_mode < g5_pmode_cur) |
| 260 | g5_switch_volt(speed_mode); |
| 261 | |
| 262 | /* Do it */ |
| 263 | if (speed_mode == CPUFREQ_HIGH) |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 264 | rc = pmf_call_one(pfunc_cpu_setfreq_high, NULL); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 265 | else |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 266 | rc = pmf_call_one(pfunc_cpu_setfreq_low, NULL); |
| 267 | |
| 268 | if (rc) |
| 269 | printk(KERN_WARNING "cpufreq: pfunc switch error %d\n", rc); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 270 | |
| 271 | /* It's an irq GPIO so we should be able to just block here, |
| 272 | * I'll do that later after I've properly tested the IRQ code for |
| 273 | * platform functions |
| 274 | */ |
| 275 | timeout = jiffies + HZ/10; |
| 276 | while(!time_after(jiffies, timeout)) { |
| 277 | args.count = 1; |
| 278 | args.u[0].p = &done; |
| 279 | pmf_call_one(pfunc_slewing_done, &args); |
| 280 | if (done) |
| 281 | break; |
Aaro Koskinen | 45a428e | 2013-09-30 23:44:31 +0300 | [diff] [blame] | 282 | usleep_range(500, 500); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 283 | } |
| 284 | if (done == 0) |
| 285 | printk(KERN_WARNING "cpufreq: Timeout in clock slewing !\n"); |
| 286 | |
| 287 | /* If frequency is going down, last ramp the voltage */ |
| 288 | if (speed_mode > g5_pmode_cur) |
| 289 | g5_switch_volt(speed_mode); |
| 290 | |
| 291 | g5_pmode_cur = speed_mode; |
| 292 | ppc_proc_freq = g5_cpu_freqs[speed_mode].frequency * 1000ul; |
| 293 | |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | static int g5_pfunc_query_freq(void) |
| 298 | { |
| 299 | struct pmf_args args; |
| 300 | u32 val = 0; |
| 301 | |
| 302 | args.count = 1; |
| 303 | args.u[0].p = &val; |
| 304 | pmf_call_one(pfunc_cpu_getfreq, &args); |
| 305 | return val ? CPUFREQ_HIGH : CPUFREQ_LOW; |
| 306 | } |
| 307 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 308 | |
| 309 | /* |
| 310 | * Common interface to the cpufreq core |
| 311 | */ |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 312 | |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 313 | static int g5_cpufreq_target(struct cpufreq_policy *policy, unsigned int index) |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 314 | { |
Viresh Kumar | d4019f0 | 2013-08-14 19:38:24 +0530 | [diff] [blame] | 315 | return g5_switch_freq(index); |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | static unsigned int g5_cpufreq_get_speed(unsigned int cpu) |
| 319 | { |
| 320 | return g5_cpu_freqs[g5_pmode_cur].frequency; |
| 321 | } |
| 322 | |
| 323 | static int g5_cpufreq_cpu_init(struct cpufreq_policy *policy) |
| 324 | { |
Viresh Kumar | 8ce6f9d | 2013-10-03 20:29:21 +0530 | [diff] [blame] | 325 | return cpufreq_generic_init(policy, g5_cpu_freqs, transition_latency); |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 326 | } |
| 327 | |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 328 | static struct cpufreq_driver g5_cpufreq_driver = { |
| 329 | .name = "powermac", |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 330 | .flags = CPUFREQ_CONST_LOOPS, |
| 331 | .init = g5_cpufreq_cpu_init, |
Viresh Kumar | 2633a46 | 2013-10-03 20:28:16 +0530 | [diff] [blame] | 332 | .verify = cpufreq_generic_frequency_table_verify, |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 333 | .target_index = g5_cpufreq_target, |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 334 | .get = g5_cpufreq_get_speed, |
Viresh Kumar | 2633a46 | 2013-10-03 20:28:16 +0530 | [diff] [blame] | 335 | .attr = cpufreq_generic_attr, |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 336 | }; |
| 337 | |
| 338 | |
Benjamin Herrenschmidt | e272a28 | 2006-07-10 16:44:54 +1000 | [diff] [blame] | 339 | #ifdef CONFIG_PMAC_SMU |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 340 | |
Sudeep KarkadaNagesha | 760287a | 2013-07-17 13:42:56 +0100 | [diff] [blame] | 341 | static int __init g5_neo2_cpufreq_init(struct device_node *cpunode) |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 342 | { |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 343 | unsigned int psize, ssize; |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 344 | unsigned long max_freq; |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 345 | char *freq_method, *volt_method; |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 346 | const u32 *valp; |
| 347 | u32 pvr_hi; |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 348 | int use_volts_vdnap = 0; |
| 349 | int use_volts_smu = 0; |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 350 | int rc = -ENODEV; |
| 351 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 352 | /* Check supported platforms */ |
Grant Likely | 71a157e | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 353 | if (of_machine_is_compatible("PowerMac8,1") || |
| 354 | of_machine_is_compatible("PowerMac8,2") || |
Aaro Koskinen | 8910836 | 2013-09-30 23:44:33 +0300 | [diff] [blame] | 355 | of_machine_is_compatible("PowerMac9,1") || |
| 356 | of_machine_is_compatible("PowerMac12,1")) |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 357 | use_volts_smu = 1; |
Grant Likely | 71a157e | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 358 | else if (of_machine_is_compatible("PowerMac11,2")) |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 359 | use_volts_vdnap = 1; |
| 360 | else |
| 361 | return -ENODEV; |
| 362 | |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 363 | /* Check 970FX for now */ |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 364 | valp = of_get_property(cpunode, "cpu-version", NULL); |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 365 | if (!valp) { |
| 366 | DBG("No cpu-version property !\n"); |
| 367 | goto bail_noprops; |
| 368 | } |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 369 | pvr_hi = (*valp) >> 16; |
| 370 | if (pvr_hi != 0x3c && pvr_hi != 0x44) { |
| 371 | printk(KERN_ERR "cpufreq: Unsupported CPU version\n"); |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 372 | goto bail_noprops; |
| 373 | } |
| 374 | |
| 375 | /* Look for the powertune data in the device-tree */ |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 376 | g5_pmode_data = of_get_property(cpunode, "power-mode-data",&psize); |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 377 | if (!g5_pmode_data) { |
| 378 | DBG("No power-mode-data !\n"); |
| 379 | goto bail_noprops; |
| 380 | } |
| 381 | g5_pmode_max = psize / sizeof(u32) - 1; |
| 382 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 383 | if (use_volts_smu) { |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 384 | const struct smu_sdbp_header *shdr; |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 385 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 386 | /* Look for the FVT table */ |
| 387 | shdr = smu_get_sdb_partition(SMU_SDB_FVT_ID, NULL); |
| 388 | if (!shdr) |
| 389 | goto bail_noprops; |
| 390 | g5_fvt_table = (struct smu_sdbp_fvt *)&shdr[1]; |
Viresh Kumar | d5b73cd | 2013-08-06 22:53:06 +0530 | [diff] [blame] | 391 | ssize = (shdr->len * sizeof(u32)) - sizeof(*shdr); |
| 392 | g5_fvt_count = ssize / sizeof(*g5_fvt_table); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 393 | g5_fvt_cur = 0; |
| 394 | |
| 395 | /* Sanity checking */ |
| 396 | if (g5_fvt_count < 1 || g5_pmode_max < 1) |
| 397 | goto bail_noprops; |
| 398 | |
| 399 | g5_switch_volt = g5_smu_switch_volt; |
| 400 | volt_method = "SMU"; |
| 401 | } else if (use_volts_vdnap) { |
| 402 | struct device_node *root; |
| 403 | |
| 404 | root = of_find_node_by_path("/"); |
| 405 | if (root == NULL) { |
| 406 | printk(KERN_ERR "cpufreq: Can't find root of " |
| 407 | "device tree\n"); |
| 408 | goto bail_noprops; |
| 409 | } |
| 410 | pfunc_set_vdnap0 = pmf_find_function(root, "set-vdnap0"); |
| 411 | pfunc_vdnap0_complete = |
| 412 | pmf_find_function(root, "slewing-done"); |
| 413 | if (pfunc_set_vdnap0 == NULL || |
| 414 | pfunc_vdnap0_complete == NULL) { |
| 415 | printk(KERN_ERR "cpufreq: Can't find required " |
| 416 | "platform function\n"); |
| 417 | goto bail_noprops; |
| 418 | } |
| 419 | |
| 420 | g5_switch_volt = g5_vdnap_switch_volt; |
| 421 | volt_method = "GPIO"; |
| 422 | } else { |
| 423 | g5_switch_volt = g5_dummy_switch_volt; |
| 424 | volt_method = "none"; |
| 425 | } |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 426 | |
| 427 | /* |
| 428 | * From what I see, clock-frequency is always the maximal frequency. |
| 429 | * The current driver can not slew sysclk yet, so we really only deal |
| 430 | * with powertune steps for now. We also only implement full freq and |
| 431 | * half freq in this version. So far, I haven't yet seen a machine |
| 432 | * supporting anything else. |
| 433 | */ |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 434 | valp = of_get_property(cpunode, "clock-frequency", NULL); |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 435 | if (!valp) |
| 436 | return -ENODEV; |
| 437 | max_freq = (*valp)/1000; |
| 438 | g5_cpu_freqs[0].frequency = max_freq; |
| 439 | g5_cpu_freqs[1].frequency = max_freq/2; |
| 440 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 441 | /* Set callbacks */ |
Nick Piggin | 16962e7 | 2009-02-19 07:07:41 +0000 | [diff] [blame] | 442 | transition_latency = 12000; |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 443 | g5_switch_freq = g5_scom_switch_freq; |
| 444 | g5_query_freq = g5_scom_query_freq; |
| 445 | freq_method = "SCOM"; |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 446 | |
| 447 | /* Force apply current frequency to make sure everything is in |
| 448 | * sync (voltage is right for example). Firmware may leave us with |
| 449 | * a strange setting ... |
| 450 | */ |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 451 | g5_switch_volt(CPUFREQ_HIGH); |
| 452 | msleep(10); |
| 453 | g5_pmode_cur = -1; |
| 454 | g5_switch_freq(g5_query_freq()); |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 455 | |
| 456 | printk(KERN_INFO "Registering G5 CPU frequency driver\n"); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 457 | printk(KERN_INFO "Frequency method: %s, Voltage method: %s\n", |
| 458 | freq_method, volt_method); |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 459 | printk(KERN_INFO "Low: %d Mhz, High: %d Mhz, Cur: %d MHz\n", |
| 460 | g5_cpu_freqs[1].frequency/1000, |
| 461 | g5_cpu_freqs[0].frequency/1000, |
| 462 | g5_cpu_freqs[g5_pmode_cur].frequency/1000); |
| 463 | |
| 464 | rc = cpufreq_register_driver(&g5_cpufreq_driver); |
| 465 | |
| 466 | /* We keep the CPU node on hold... hopefully, Apple G5 don't have |
| 467 | * hotplug CPU with a dynamic device-tree ... |
| 468 | */ |
| 469 | return rc; |
| 470 | |
| 471 | bail_noprops: |
| 472 | of_node_put(cpunode); |
| 473 | |
| 474 | return rc; |
| 475 | } |
| 476 | |
Benjamin Herrenschmidt | e272a28 | 2006-07-10 16:44:54 +1000 | [diff] [blame] | 477 | #endif /* CONFIG_PMAC_SMU */ |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 478 | |
| 479 | |
Sudeep KarkadaNagesha | 760287a | 2013-07-17 13:42:56 +0100 | [diff] [blame] | 480 | static int __init g5_pm72_cpufreq_init(struct device_node *cpunode) |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 481 | { |
Sudeep KarkadaNagesha | 760287a | 2013-07-17 13:42:56 +0100 | [diff] [blame] | 482 | struct device_node *cpuid = NULL, *hwclock = NULL; |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 483 | const u8 *eeprom = NULL; |
| 484 | const u32 *valp; |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 485 | u64 max_freq, min_freq, ih, il; |
| 486 | int has_volt = 1, rc = 0; |
| 487 | |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 488 | DBG("cpufreq: Initializing for PowerMac7,2, PowerMac7,3 and" |
| 489 | " RackMac3,1...\n"); |
| 490 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 491 | /* Lookup the cpuid eeprom node */ |
| 492 | cpuid = of_find_node_by_path("/u3@0,f8000000/i2c@f8001000/cpuid@a0"); |
| 493 | if (cpuid != NULL) |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 494 | eeprom = of_get_property(cpuid, "cpuid", NULL); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 495 | if (eeprom == NULL) { |
| 496 | printk(KERN_ERR "cpufreq: Can't find cpuid EEPROM !\n"); |
| 497 | rc = -ENODEV; |
| 498 | goto bail; |
| 499 | } |
| 500 | |
| 501 | /* Lookup the i2c hwclock */ |
Grant Likely | ccdb8ed | 2014-06-04 16:42:26 +0100 | [diff] [blame] | 502 | for_each_node_by_name(hwclock, "i2c-hwclock") { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 503 | const char *loc = of_get_property(hwclock, |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 504 | "hwctrl-location", NULL); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 505 | if (loc == NULL) |
| 506 | continue; |
| 507 | if (strcmp(loc, "CPU CLOCK")) |
| 508 | continue; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 509 | if (!of_get_property(hwclock, "platform-get-frequency", NULL)) |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 510 | continue; |
| 511 | break; |
| 512 | } |
| 513 | if (hwclock == NULL) { |
| 514 | printk(KERN_ERR "cpufreq: Can't find i2c clock chip !\n"); |
| 515 | rc = -ENODEV; |
| 516 | goto bail; |
| 517 | } |
| 518 | |
| 519 | DBG("cpufreq: i2c clock chip found: %s\n", hwclock->full_name); |
| 520 | |
| 521 | /* Now get all the platform functions */ |
| 522 | pfunc_cpu_getfreq = |
| 523 | pmf_find_function(hwclock, "get-frequency"); |
| 524 | pfunc_cpu_setfreq_high = |
| 525 | pmf_find_function(hwclock, "set-frequency-high"); |
| 526 | pfunc_cpu_setfreq_low = |
| 527 | pmf_find_function(hwclock, "set-frequency-low"); |
| 528 | pfunc_slewing_done = |
| 529 | pmf_find_function(hwclock, "slewing-done"); |
| 530 | pfunc_cpu0_volt_high = |
| 531 | pmf_find_function(hwclock, "set-voltage-high-0"); |
| 532 | pfunc_cpu0_volt_low = |
| 533 | pmf_find_function(hwclock, "set-voltage-low-0"); |
| 534 | pfunc_cpu1_volt_high = |
| 535 | pmf_find_function(hwclock, "set-voltage-high-1"); |
| 536 | pfunc_cpu1_volt_low = |
| 537 | pmf_find_function(hwclock, "set-voltage-low-1"); |
| 538 | |
| 539 | /* Check we have minimum requirements */ |
| 540 | if (pfunc_cpu_getfreq == NULL || pfunc_cpu_setfreq_high == NULL || |
| 541 | pfunc_cpu_setfreq_low == NULL || pfunc_slewing_done == NULL) { |
| 542 | printk(KERN_ERR "cpufreq: Can't find platform functions !\n"); |
| 543 | rc = -ENODEV; |
| 544 | goto bail; |
| 545 | } |
| 546 | |
| 547 | /* Check that we have complete sets */ |
| 548 | if (pfunc_cpu0_volt_high == NULL || pfunc_cpu0_volt_low == NULL) { |
| 549 | pmf_put_function(pfunc_cpu0_volt_high); |
| 550 | pmf_put_function(pfunc_cpu0_volt_low); |
| 551 | pfunc_cpu0_volt_high = pfunc_cpu0_volt_low = NULL; |
| 552 | has_volt = 0; |
| 553 | } |
| 554 | if (!has_volt || |
| 555 | pfunc_cpu1_volt_high == NULL || pfunc_cpu1_volt_low == NULL) { |
| 556 | pmf_put_function(pfunc_cpu1_volt_high); |
| 557 | pmf_put_function(pfunc_cpu1_volt_low); |
| 558 | pfunc_cpu1_volt_high = pfunc_cpu1_volt_low = NULL; |
| 559 | } |
| 560 | |
| 561 | /* Note: The device tree also contains a "platform-set-values" |
| 562 | * function for which I haven't quite figured out the usage. It |
| 563 | * might have to be called on init and/or wakeup, I'm not too sure |
| 564 | * but things seem to work fine without it so far ... |
| 565 | */ |
| 566 | |
| 567 | /* Get max frequency from device-tree */ |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 568 | valp = of_get_property(cpunode, "clock-frequency", NULL); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 569 | if (!valp) { |
| 570 | printk(KERN_ERR "cpufreq: Can't find CPU frequency !\n"); |
| 571 | rc = -ENODEV; |
| 572 | goto bail; |
| 573 | } |
| 574 | |
| 575 | max_freq = (*valp)/1000; |
| 576 | |
| 577 | /* Now calculate reduced frequency by using the cpuid input freq |
| 578 | * ratio. This requires 64 bits math unless we are willing to lose |
| 579 | * some precision |
| 580 | */ |
| 581 | ih = *((u32 *)(eeprom + 0x10)); |
| 582 | il = *((u32 *)(eeprom + 0x20)); |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 583 | |
| 584 | /* Check for machines with no useful settings */ |
| 585 | if (il == ih) { |
| 586 | printk(KERN_WARNING "cpufreq: No low frequency mode available" |
| 587 | " on this model !\n"); |
| 588 | rc = -ENODEV; |
| 589 | goto bail; |
| 590 | } |
| 591 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 592 | min_freq = 0; |
| 593 | if (ih != 0 && il != 0) |
| 594 | min_freq = (max_freq * il) / ih; |
| 595 | |
| 596 | /* Sanity check */ |
| 597 | if (min_freq >= max_freq || min_freq < 1000) { |
| 598 | printk(KERN_ERR "cpufreq: Can't calculate low frequency !\n"); |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 599 | rc = -ENXIO; |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 600 | goto bail; |
| 601 | } |
| 602 | g5_cpu_freqs[0].frequency = max_freq; |
| 603 | g5_cpu_freqs[1].frequency = min_freq; |
| 604 | |
Aaro Koskinen | af671d8 | 2013-09-30 23:44:32 +0300 | [diff] [blame] | 605 | /* Based on a measurement on Xserve G5, rounded up. */ |
| 606 | transition_latency = 10 * NSEC_PER_MSEC; |
| 607 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 608 | /* Set callbacks */ |
| 609 | g5_switch_volt = g5_pfunc_switch_volt; |
| 610 | g5_switch_freq = g5_pfunc_switch_freq; |
| 611 | g5_query_freq = g5_pfunc_query_freq; |
| 612 | |
| 613 | /* Force apply current frequency to make sure everything is in |
| 614 | * sync (voltage is right for example). Firmware may leave us with |
| 615 | * a strange setting ... |
| 616 | */ |
| 617 | g5_switch_volt(CPUFREQ_HIGH); |
| 618 | msleep(10); |
| 619 | g5_pmode_cur = -1; |
| 620 | g5_switch_freq(g5_query_freq()); |
| 621 | |
| 622 | printk(KERN_INFO "Registering G5 CPU frequency driver\n"); |
| 623 | printk(KERN_INFO "Frequency method: i2c/pfunc, " |
| 624 | "Voltage method: %s\n", has_volt ? "i2c/pfunc" : "none"); |
| 625 | printk(KERN_INFO "Low: %d Mhz, High: %d Mhz, Cur: %d MHz\n", |
| 626 | g5_cpu_freqs[1].frequency/1000, |
| 627 | g5_cpu_freqs[0].frequency/1000, |
| 628 | g5_cpu_freqs[g5_pmode_cur].frequency/1000); |
| 629 | |
| 630 | rc = cpufreq_register_driver(&g5_cpufreq_driver); |
| 631 | bail: |
| 632 | if (rc != 0) { |
| 633 | pmf_put_function(pfunc_cpu_getfreq); |
| 634 | pmf_put_function(pfunc_cpu_setfreq_high); |
| 635 | pmf_put_function(pfunc_cpu_setfreq_low); |
| 636 | pmf_put_function(pfunc_slewing_done); |
| 637 | pmf_put_function(pfunc_cpu0_volt_high); |
| 638 | pmf_put_function(pfunc_cpu0_volt_low); |
| 639 | pmf_put_function(pfunc_cpu1_volt_high); |
| 640 | pmf_put_function(pfunc_cpu1_volt_low); |
| 641 | } |
| 642 | of_node_put(hwclock); |
| 643 | of_node_put(cpuid); |
| 644 | of_node_put(cpunode); |
| 645 | |
| 646 | return rc; |
| 647 | } |
| 648 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 649 | static int __init g5_cpufreq_init(void) |
| 650 | { |
Sudeep KarkadaNagesha | 760287a | 2013-07-17 13:42:56 +0100 | [diff] [blame] | 651 | struct device_node *cpunode; |
Benjamin Herrenschmidt | 7ed14c2 | 2006-07-06 15:09:19 +1000 | [diff] [blame] | 652 | int rc = 0; |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 653 | |
Sudeep KarkadaNagesha | 760287a | 2013-07-17 13:42:56 +0100 | [diff] [blame] | 654 | /* Get first CPU node */ |
| 655 | cpunode = of_cpu_device_node_get(0); |
| 656 | if (cpunode == NULL) { |
| 657 | pr_err("cpufreq: Can't find any CPU node\n"); |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 658 | return -ENODEV; |
| 659 | } |
| 660 | |
Grant Likely | 71a157e | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 661 | if (of_machine_is_compatible("PowerMac7,2") || |
| 662 | of_machine_is_compatible("PowerMac7,3") || |
| 663 | of_machine_is_compatible("RackMac3,1")) |
Sudeep KarkadaNagesha | 760287a | 2013-07-17 13:42:56 +0100 | [diff] [blame] | 664 | rc = g5_pm72_cpufreq_init(cpunode); |
Benjamin Herrenschmidt | e272a28 | 2006-07-10 16:44:54 +1000 | [diff] [blame] | 665 | #ifdef CONFIG_PMAC_SMU |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 666 | else |
Sudeep KarkadaNagesha | 760287a | 2013-07-17 13:42:56 +0100 | [diff] [blame] | 667 | rc = g5_neo2_cpufreq_init(cpunode); |
Benjamin Herrenschmidt | e272a28 | 2006-07-10 16:44:54 +1000 | [diff] [blame] | 668 | #endif /* CONFIG_PMAC_SMU */ |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 669 | |
Benjamin Herrenschmidt | 9a699ae | 2006-01-07 11:45:28 +1100 | [diff] [blame] | 670 | return rc; |
| 671 | } |
| 672 | |
Benjamin Herrenschmidt | 4350147 | 2005-11-07 14:27:33 +1100 | [diff] [blame] | 673 | module_init(g5_cpufreq_init); |
| 674 | |
| 675 | |
| 676 | MODULE_LICENSE("GPL"); |