Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 2 | * (c) 2003-2006 Advanced Micro Devices, Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Your use of this code is subject to the terms and conditions of the |
| 4 | * GNU general public license version 2. See "COPYING" or |
| 5 | * http://www.gnu.org/licenses/gpl.html |
| 6 | * |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 7 | * Support : mark.langsdorf@amd.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * Based on the powernow-k7.c module written by Dave Jones. |
Dave Jones | f4432c5 | 2008-10-20 13:31:45 -0400 | [diff] [blame] | 10 | * (C) 2003 Dave Jones on behalf of SuSE Labs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * (C) 2004 Dominik Brodowski <linux@brodo.de> |
| 12 | * (C) 2004 Pavel Machek <pavel@suse.cz> |
| 13 | * Licensed under the terms of the GNU GPL License version 2. |
| 14 | * Based upon datasheets & sample CPUs kindly provided by AMD. |
| 15 | * |
| 16 | * Valuable input gratefully received from Dave Jones, Pavel Machek, |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 17 | * Dominik Brodowski, Jacob Shin, and others. |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 18 | * Originally developed by Paul Devriendt. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * Processor information obtained from Chapter 9 (Power and Thermal Management) |
| 20 | * of the "BIOS and Kernel Developer's Guide for the AMD Athlon 64 and AMD |
| 21 | * Opteron Processors" available for download from www.amd.com |
| 22 | * |
Dave Jones | 2e3f8fa | 2006-05-30 17:25:14 -0400 | [diff] [blame] | 23 | * Tables for specific CPUs can be inferred from |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 24 | * http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/30430.pdf |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | */ |
| 26 | |
| 27 | #include <linux/kernel.h> |
| 28 | #include <linux/smp.h> |
| 29 | #include <linux/module.h> |
| 30 | #include <linux/init.h> |
| 31 | #include <linux/cpufreq.h> |
| 32 | #include <linux/slab.h> |
| 33 | #include <linux/string.h> |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 34 | #include <linux/cpumask.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 35 | #include <linux/sched.h> /* for current / set_cpus_allowed() */ |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 36 | #include <linux/io.h> |
| 37 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #include <asm/msr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/acpi.h> |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 42 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <acpi/processor.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | #define PFX "powernow-k8: " |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 46 | #define VERSION "version 2.20.00" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include "powernow-k8.h" |
| 48 | |
| 49 | /* serialize freq changes */ |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 50 | static DEFINE_MUTEX(fidvid_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
travis@sgi.com | 2c6b8c0 | 2008-01-30 13:33:11 +0100 | [diff] [blame] | 52 | static DEFINE_PER_CPU(struct powernow_k8_data *, powernow_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 54 | static int cpu_family = CPU_OPTERON; |
| 55 | |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 56 | #ifndef CONFIG_SMP |
Rusty Russell | 7ad728f | 2009-03-13 14:49:50 +1030 | [diff] [blame] | 57 | static inline const struct cpumask *cpu_core_mask(int cpu) |
| 58 | { |
| 59 | return cpumask_of(0); |
| 60 | } |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 61 | #endif |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | /* Return a frequency in MHz, given an input fid */ |
| 64 | static u32 find_freq_from_fid(u32 fid) |
| 65 | { |
| 66 | return 800 + (fid * 100); |
| 67 | } |
| 68 | |
| 69 | /* Return a frequency in KHz, given an input fid */ |
| 70 | static u32 find_khz_freq_from_fid(u32 fid) |
| 71 | { |
| 72 | return 1000 * find_freq_from_fid(fid); |
| 73 | } |
| 74 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 75 | static u32 find_khz_freq_from_pstate(struct cpufreq_frequency_table *data, |
| 76 | u32 pstate) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 78 | return data[pstate].frequency; |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 79 | } |
| 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | /* Return the vco fid for an input fid |
| 82 | * |
| 83 | * Each "low" fid has corresponding "high" fid, and you can get to "low" fids |
| 84 | * only from corresponding high fids. This returns "high" fid corresponding to |
| 85 | * "low" one. |
| 86 | */ |
| 87 | static u32 convert_fid_to_vco_fid(u32 fid) |
| 88 | { |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 89 | if (fid < HI_FID_TABLE_BOTTOM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | return 8 + (2 * fid); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 91 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | return fid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | /* |
| 96 | * Return 1 if the pending bit is set. Unless we just instructed the processor |
| 97 | * to transition to a new state, seeing this bit set is really bad news. |
| 98 | */ |
| 99 | static int pending_bit_stuck(void) |
| 100 | { |
| 101 | u32 lo, hi; |
| 102 | |
Langsdorf, Mark | e7bdd7a | 2006-06-08 10:30:17 -0500 | [diff] [blame] | 103 | if (cpu_family == CPU_HW_PSTATE) |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 104 | return 0; |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | rdmsr(MSR_FIDVID_STATUS, lo, hi); |
| 107 | return lo & MSR_S_LO_CHANGE_PENDING ? 1 : 0; |
| 108 | } |
| 109 | |
| 110 | /* |
| 111 | * Update the global current fid / vid values from the status msr. |
| 112 | * Returns 1 on error. |
| 113 | */ |
| 114 | static int query_current_values_with_pending_wait(struct powernow_k8_data *data) |
| 115 | { |
| 116 | u32 lo, hi; |
| 117 | u32 i = 0; |
| 118 | |
Langsdorf, Mark | e7bdd7a | 2006-06-08 10:30:17 -0500 | [diff] [blame] | 119 | if (cpu_family == CPU_HW_PSTATE) { |
Andreas Herrmann | a266d9f | 2008-11-21 14:49:25 +0100 | [diff] [blame] | 120 | if (data->currpstate == HW_PSTATE_INVALID) { |
| 121 | /* read (initial) hw pstate if not yet set */ |
| 122 | rdmsr(MSR_PSTATE_STATUS, lo, hi); |
| 123 | i = lo & HW_PSTATE_MASK; |
| 124 | |
| 125 | /* |
| 126 | * a workaround for family 11h erratum 311 might cause |
| 127 | * an "out-of-range Pstate if the core is in Pstate-0 |
| 128 | */ |
| 129 | if (i >= data->numps) |
| 130 | data->currpstate = HW_PSTATE_0; |
| 131 | else |
| 132 | data->currpstate = i; |
| 133 | } |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 134 | return 0; |
| 135 | } |
Dave Jones | 7153d96 | 2005-07-28 09:45:10 -0700 | [diff] [blame] | 136 | do { |
Dave Jones | 0213df7 | 2005-10-21 17:21:03 -0400 | [diff] [blame] | 137 | if (i++ > 10000) { |
| 138 | dprintk("detected change pending stuck\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | return 1; |
| 140 | } |
| 141 | rdmsr(MSR_FIDVID_STATUS, lo, hi); |
Dave Jones | 7153d96 | 2005-07-28 09:45:10 -0700 | [diff] [blame] | 142 | } while (lo & MSR_S_LO_CHANGE_PENDING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
| 144 | data->currvid = hi & MSR_S_HI_CURRENT_VID; |
| 145 | data->currfid = lo & MSR_S_LO_CURRENT_FID; |
| 146 | |
| 147 | return 0; |
| 148 | } |
| 149 | |
| 150 | /* the isochronous relief time */ |
| 151 | static void count_off_irt(struct powernow_k8_data *data) |
| 152 | { |
| 153 | udelay((1 << data->irt) * 10); |
| 154 | return; |
| 155 | } |
| 156 | |
Simon Arlott | 27b46d7 | 2007-10-20 01:13:56 +0200 | [diff] [blame] | 157 | /* the voltage stabilization time */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | static void count_off_vst(struct powernow_k8_data *data) |
| 159 | { |
| 160 | udelay(data->vstable * VST_UNITS_20US); |
| 161 | return; |
| 162 | } |
| 163 | |
| 164 | /* need to init the control msr to a safe value (for each cpu) */ |
| 165 | static void fidvid_msr_init(void) |
| 166 | { |
| 167 | u32 lo, hi; |
| 168 | u8 fid, vid; |
| 169 | |
| 170 | rdmsr(MSR_FIDVID_STATUS, lo, hi); |
| 171 | vid = hi & MSR_S_HI_CURRENT_VID; |
| 172 | fid = lo & MSR_S_LO_CURRENT_FID; |
| 173 | lo = fid | (vid << MSR_C_LO_VID_SHIFT); |
| 174 | hi = MSR_C_HI_STP_GNT_BENIGN; |
| 175 | dprintk("cpu%d, init lo 0x%x, hi 0x%x\n", smp_processor_id(), lo, hi); |
| 176 | wrmsr(MSR_FIDVID_CTL, lo, hi); |
| 177 | } |
| 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | /* write the new fid value along with the other control fields to the msr */ |
| 180 | static int write_new_fid(struct powernow_k8_data *data, u32 fid) |
| 181 | { |
| 182 | u32 lo; |
| 183 | u32 savevid = data->currvid; |
Dave Jones | 0213df7 | 2005-10-21 17:21:03 -0400 | [diff] [blame] | 184 | u32 i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
| 186 | if ((fid & INVALID_FID_MASK) || (data->currvid & INVALID_VID_MASK)) { |
| 187 | printk(KERN_ERR PFX "internal error - overflow on fid write\n"); |
| 188 | return 1; |
| 189 | } |
| 190 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 191 | lo = fid; |
| 192 | lo |= (data->currvid << MSR_C_LO_VID_SHIFT); |
| 193 | lo |= MSR_C_LO_INIT_FID_VID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
| 195 | dprintk("writing fid 0x%x, lo 0x%x, hi 0x%x\n", |
| 196 | fid, lo, data->plllock * PLL_LOCK_CONVERSION); |
| 197 | |
Dave Jones | 0213df7 | 2005-10-21 17:21:03 -0400 | [diff] [blame] | 198 | do { |
| 199 | wrmsr(MSR_FIDVID_CTL, lo, data->plllock * PLL_LOCK_CONVERSION); |
| 200 | if (i++ > 100) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 201 | printk(KERN_ERR PFX |
| 202 | "Hardware error - pending bit very stuck - " |
| 203 | "no further pstate changes possible\n"); |
Chris Wright | 63172cb | 2005-10-21 16:56:08 -0700 | [diff] [blame] | 204 | return 1; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 205 | } |
Dave Jones | 0213df7 | 2005-10-21 17:21:03 -0400 | [diff] [blame] | 206 | } while (query_current_values_with_pending_wait(data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
| 208 | count_off_irt(data); |
| 209 | |
| 210 | if (savevid != data->currvid) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 211 | printk(KERN_ERR PFX |
| 212 | "vid change on fid trans, old 0x%x, new 0x%x\n", |
| 213 | savevid, data->currvid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return 1; |
| 215 | } |
| 216 | |
| 217 | if (fid != data->currfid) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 218 | printk(KERN_ERR PFX |
| 219 | "fid trans failed, fid 0x%x, curr 0x%x\n", fid, |
| 220 | data->currfid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | return 1; |
| 222 | } |
| 223 | |
| 224 | return 0; |
| 225 | } |
| 226 | |
| 227 | /* Write a new vid to the hardware */ |
| 228 | static int write_new_vid(struct powernow_k8_data *data, u32 vid) |
| 229 | { |
| 230 | u32 lo; |
| 231 | u32 savefid = data->currfid; |
Dave Jones | 0213df7 | 2005-10-21 17:21:03 -0400 | [diff] [blame] | 232 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
| 234 | if ((data->currfid & INVALID_FID_MASK) || (vid & INVALID_VID_MASK)) { |
| 235 | printk(KERN_ERR PFX "internal error - overflow on vid write\n"); |
| 236 | return 1; |
| 237 | } |
| 238 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 239 | lo = data->currfid; |
| 240 | lo |= (vid << MSR_C_LO_VID_SHIFT); |
| 241 | lo |= MSR_C_LO_INIT_FID_VID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | |
| 243 | dprintk("writing vid 0x%x, lo 0x%x, hi 0x%x\n", |
| 244 | vid, lo, STOP_GRANT_5NS); |
| 245 | |
Dave Jones | 0213df7 | 2005-10-21 17:21:03 -0400 | [diff] [blame] | 246 | do { |
| 247 | wrmsr(MSR_FIDVID_CTL, lo, STOP_GRANT_5NS); |
Dave Jones | 6df8900 | 2005-11-30 13:33:30 -0800 | [diff] [blame] | 248 | if (i++ > 100) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 249 | printk(KERN_ERR PFX "internal error - pending bit " |
| 250 | "very stuck - no further pstate " |
| 251 | "changes possible\n"); |
Dave Jones | 6df8900 | 2005-11-30 13:33:30 -0800 | [diff] [blame] | 252 | return 1; |
| 253 | } |
Dave Jones | 0213df7 | 2005-10-21 17:21:03 -0400 | [diff] [blame] | 254 | } while (query_current_values_with_pending_wait(data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
| 256 | if (savefid != data->currfid) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 257 | printk(KERN_ERR PFX "fid changed on vid trans, old " |
| 258 | "0x%x new 0x%x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | savefid, data->currfid); |
| 260 | return 1; |
| 261 | } |
| 262 | |
| 263 | if (vid != data->currvid) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 264 | printk(KERN_ERR PFX "vid trans failed, vid 0x%x, " |
| 265 | "curr 0x%x\n", |
| 266 | vid, data->currvid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | return 1; |
| 268 | } |
| 269 | |
| 270 | return 0; |
| 271 | } |
| 272 | |
| 273 | /* |
| 274 | * Reduce the vid by the max of step or reqvid. |
| 275 | * Decreasing vid codes represent increasing voltages: |
Dave Jones | 841e40b | 2005-07-28 09:40:04 -0700 | [diff] [blame] | 276 | * vid of 0 is 1.550V, vid of 0x1e is 0.800V, vid of VID_OFF is off. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | */ |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 278 | static int decrease_vid_code_by_step(struct powernow_k8_data *data, |
| 279 | u32 reqvid, u32 step) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | { |
| 281 | if ((data->currvid - reqvid) > step) |
| 282 | reqvid = data->currvid - step; |
| 283 | |
| 284 | if (write_new_vid(data, reqvid)) |
| 285 | return 1; |
| 286 | |
| 287 | count_off_vst(data); |
| 288 | |
| 289 | return 0; |
| 290 | } |
| 291 | |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 292 | /* Change hardware pstate by single MSR write */ |
| 293 | static int transition_pstate(struct powernow_k8_data *data, u32 pstate) |
| 294 | { |
| 295 | wrmsr(MSR_PSTATE_CTRL, pstate, 0); |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 296 | data->currpstate = pstate; |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 297 | return 0; |
| 298 | } |
| 299 | |
| 300 | /* Change Opteron/Athlon64 fid and vid, by the 3 phases. */ |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 301 | static int transition_fid_vid(struct powernow_k8_data *data, |
| 302 | u32 reqfid, u32 reqvid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | { |
| 304 | if (core_voltage_pre_transition(data, reqvid)) |
| 305 | return 1; |
| 306 | |
| 307 | if (core_frequency_transition(data, reqfid)) |
| 308 | return 1; |
| 309 | |
| 310 | if (core_voltage_post_transition(data, reqvid)) |
| 311 | return 1; |
| 312 | |
| 313 | if (query_current_values_with_pending_wait(data)) |
| 314 | return 1; |
| 315 | |
| 316 | if ((reqfid != data->currfid) || (reqvid != data->currvid)) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 317 | printk(KERN_ERR PFX "failed (cpu%d): req 0x%x 0x%x, " |
| 318 | "curr 0x%x 0x%x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | smp_processor_id(), |
| 320 | reqfid, reqvid, data->currfid, data->currvid); |
| 321 | return 1; |
| 322 | } |
| 323 | |
| 324 | dprintk("transitioned (cpu%d): new fid 0x%x, vid 0x%x\n", |
| 325 | smp_processor_id(), data->currfid, data->currvid); |
| 326 | |
| 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | /* Phase 1 - core voltage transition ... setup voltage */ |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 331 | static int core_voltage_pre_transition(struct powernow_k8_data *data, |
| 332 | u32 reqvid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | { |
| 334 | u32 rvosteps = data->rvo; |
| 335 | u32 savefid = data->currfid; |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 336 | u32 maxvid, lo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 338 | dprintk("ph1 (cpu%d): start, currfid 0x%x, currvid 0x%x, " |
| 339 | "reqvid 0x%x, rvo 0x%x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | smp_processor_id(), |
| 341 | data->currfid, data->currvid, reqvid, data->rvo); |
| 342 | |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 343 | rdmsr(MSR_FIDVID_STATUS, lo, maxvid); |
| 344 | maxvid = 0x1f & (maxvid >> 16); |
| 345 | dprintk("ph1 maxvid=0x%x\n", maxvid); |
| 346 | if (reqvid < maxvid) /* lower numbers are higher voltages */ |
| 347 | reqvid = maxvid; |
| 348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | while (data->currvid > reqvid) { |
| 350 | dprintk("ph1: curr 0x%x, req vid 0x%x\n", |
| 351 | data->currvid, reqvid); |
| 352 | if (decrease_vid_code_by_step(data, reqvid, data->vidmvs)) |
| 353 | return 1; |
| 354 | } |
| 355 | |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 356 | while ((rvosteps > 0) && ((data->rvo + data->currvid) > reqvid)) { |
| 357 | if (data->currvid == maxvid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | rvosteps = 0; |
| 359 | } else { |
| 360 | dprintk("ph1: changing vid for rvo, req 0x%x\n", |
| 361 | data->currvid - 1); |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 362 | if (decrease_vid_code_by_step(data, data->currvid-1, 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | return 1; |
| 364 | rvosteps--; |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | if (query_current_values_with_pending_wait(data)) |
| 369 | return 1; |
| 370 | |
| 371 | if (savefid != data->currfid) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 372 | printk(KERN_ERR PFX "ph1 err, currfid changed 0x%x\n", |
| 373 | data->currfid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | return 1; |
| 375 | } |
| 376 | |
| 377 | dprintk("ph1 complete, currfid 0x%x, currvid 0x%x\n", |
| 378 | data->currfid, data->currvid); |
| 379 | |
| 380 | return 0; |
| 381 | } |
| 382 | |
| 383 | /* Phase 2 - core frequency transition */ |
| 384 | static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid) |
| 385 | { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 386 | u32 vcoreqfid, vcocurrfid, vcofiddiff; |
| 387 | u32 fid_interval, savevid = data->currvid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 389 | if ((reqfid < HI_FID_TABLE_BOTTOM) && |
| 390 | (data->currfid < HI_FID_TABLE_BOTTOM)) { |
| 391 | printk(KERN_ERR PFX "ph2: illegal lo-lo transition " |
| 392 | "0x%x 0x%x\n", reqfid, data->currfid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | return 1; |
| 394 | } |
| 395 | |
| 396 | if (data->currfid == reqfid) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 397 | printk(KERN_ERR PFX "ph2 null fid transition 0x%x\n", |
| 398 | data->currfid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | return 0; |
| 400 | } |
| 401 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 402 | dprintk("ph2 (cpu%d): starting, currfid 0x%x, currvid 0x%x, " |
| 403 | "reqfid 0x%x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | smp_processor_id(), |
| 405 | data->currfid, data->currvid, reqfid); |
| 406 | |
| 407 | vcoreqfid = convert_fid_to_vco_fid(reqfid); |
| 408 | vcocurrfid = convert_fid_to_vco_fid(data->currfid); |
| 409 | vcofiddiff = vcocurrfid > vcoreqfid ? vcocurrfid - vcoreqfid |
| 410 | : vcoreqfid - vcocurrfid; |
| 411 | |
| 412 | while (vcofiddiff > 2) { |
Langsdorf, Mark | 019a61b | 2005-11-29 14:18:03 -0600 | [diff] [blame] | 413 | (data->currfid & 1) ? (fid_interval = 1) : (fid_interval = 2); |
| 414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | if (reqfid > data->currfid) { |
| 416 | if (data->currfid > LO_FID_TABLE_TOP) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 417 | if (write_new_fid(data, |
| 418 | data->currfid + fid_interval)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | } else { |
| 421 | if (write_new_fid |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 422 | (data, |
| 423 | 2 + convert_fid_to_vco_fid(data->currfid))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | } |
| 426 | } else { |
Langsdorf, Mark | 019a61b | 2005-11-29 14:18:03 -0600 | [diff] [blame] | 427 | if (write_new_fid(data, data->currfid - fid_interval)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | return 1; |
| 429 | } |
| 430 | |
| 431 | vcocurrfid = convert_fid_to_vco_fid(data->currfid); |
| 432 | vcofiddiff = vcocurrfid > vcoreqfid ? vcocurrfid - vcoreqfid |
| 433 | : vcoreqfid - vcocurrfid; |
| 434 | } |
| 435 | |
| 436 | if (write_new_fid(data, reqfid)) |
| 437 | return 1; |
| 438 | |
| 439 | if (query_current_values_with_pending_wait(data)) |
| 440 | return 1; |
| 441 | |
| 442 | if (data->currfid != reqfid) { |
| 443 | printk(KERN_ERR PFX |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 444 | "ph2: mismatch, failed fid transition, " |
| 445 | "curr 0x%x, req 0x%x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | data->currfid, reqfid); |
| 447 | return 1; |
| 448 | } |
| 449 | |
| 450 | if (savevid != data->currvid) { |
| 451 | printk(KERN_ERR PFX "ph2: vid changed, save 0x%x, curr 0x%x\n", |
| 452 | savevid, data->currvid); |
| 453 | return 1; |
| 454 | } |
| 455 | |
| 456 | dprintk("ph2 complete, currfid 0x%x, currvid 0x%x\n", |
| 457 | data->currfid, data->currvid); |
| 458 | |
| 459 | return 0; |
| 460 | } |
| 461 | |
| 462 | /* Phase 3 - core voltage transition flow ... jump to the final vid. */ |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 463 | static int core_voltage_post_transition(struct powernow_k8_data *data, |
| 464 | u32 reqvid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
| 466 | u32 savefid = data->currfid; |
| 467 | u32 savereqvid = reqvid; |
| 468 | |
| 469 | dprintk("ph3 (cpu%d): starting, currfid 0x%x, currvid 0x%x\n", |
| 470 | smp_processor_id(), |
| 471 | data->currfid, data->currvid); |
| 472 | |
| 473 | if (reqvid != data->currvid) { |
| 474 | if (write_new_vid(data, reqvid)) |
| 475 | return 1; |
| 476 | |
| 477 | if (savefid != data->currfid) { |
| 478 | printk(KERN_ERR PFX |
| 479 | "ph3: bad fid change, save 0x%x, curr 0x%x\n", |
| 480 | savefid, data->currfid); |
| 481 | return 1; |
| 482 | } |
| 483 | |
| 484 | if (data->currvid != reqvid) { |
| 485 | printk(KERN_ERR PFX |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 486 | "ph3: failed vid transition\n, " |
| 487 | "req 0x%x, curr 0x%x", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | reqvid, data->currvid); |
| 489 | return 1; |
| 490 | } |
| 491 | } |
| 492 | |
| 493 | if (query_current_values_with_pending_wait(data)) |
| 494 | return 1; |
| 495 | |
| 496 | if (savereqvid != data->currvid) { |
| 497 | dprintk("ph3 failed, currvid 0x%x\n", data->currvid); |
| 498 | return 1; |
| 499 | } |
| 500 | |
| 501 | if (savefid != data->currfid) { |
| 502 | dprintk("ph3 failed, currfid changed 0x%x\n", |
| 503 | data->currfid); |
| 504 | return 1; |
| 505 | } |
| 506 | |
| 507 | dprintk("ph3 complete, currfid 0x%x, currvid 0x%x\n", |
| 508 | data->currfid, data->currvid); |
| 509 | |
| 510 | return 0; |
| 511 | } |
| 512 | |
| 513 | static int check_supported_cpu(unsigned int cpu) |
| 514 | { |
Mike Travis | fc0e474 | 2008-04-04 18:11:05 -0700 | [diff] [blame] | 515 | cpumask_t oldmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | u32 eax, ebx, ecx, edx; |
| 517 | unsigned int rc = 0; |
| 518 | |
| 519 | oldmask = current->cpus_allowed; |
Mike Travis | 0bc3cc0 | 2008-07-24 18:21:31 -0700 | [diff] [blame] | 520 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | |
| 522 | if (smp_processor_id() != cpu) { |
Jacob Shin | 8aae828 | 2005-11-21 07:23:08 -0800 | [diff] [blame] | 523 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | goto out; |
| 525 | } |
| 526 | |
| 527 | if (current_cpu_data.x86_vendor != X86_VENDOR_AMD) |
| 528 | goto out; |
| 529 | |
| 530 | eax = cpuid_eax(CPUID_PROCESSOR_SIGNATURE); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 531 | if (((eax & CPUID_XFAM) != CPUID_XFAM_K8) && |
| 532 | ((eax & CPUID_XFAM) < CPUID_XFAM_10H)) |
Dave Jones | 2c906ae | 2006-02-28 00:36:32 -0500 | [diff] [blame] | 533 | goto out; |
| 534 | |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 535 | if ((eax & CPUID_XFAM) == CPUID_XFAM_K8) { |
| 536 | if (((eax & CPUID_USE_XFAM_XMOD) != CPUID_USE_XFAM_XMOD) || |
Dave Jones | 99fbe1a | 2007-05-14 18:27:29 -0400 | [diff] [blame] | 537 | ((eax & CPUID_XMOD) > CPUID_XMOD_REV_MASK)) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 538 | printk(KERN_INFO PFX |
| 539 | "Processor cpuid %x not supported\n", eax); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 540 | goto out; |
| 541 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 543 | eax = cpuid_eax(CPUID_GET_MAX_CAPABILITIES); |
| 544 | if (eax < CPUID_FREQ_VOLT_CAPABILITIES) { |
| 545 | printk(KERN_INFO PFX |
| 546 | "No frequency change capabilities detected\n"); |
| 547 | goto out; |
| 548 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 550 | cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx); |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 551 | if ((edx & P_STATE_TRANSITION_CAPABLE) |
| 552 | != P_STATE_TRANSITION_CAPABLE) { |
| 553 | printk(KERN_INFO PFX |
| 554 | "Power state transitions not supported\n"); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 555 | goto out; |
| 556 | } |
| 557 | } else { /* must be a HW Pstate capable processor */ |
| 558 | cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx); |
| 559 | if ((edx & USE_HW_PSTATE) == USE_HW_PSTATE) |
| 560 | cpu_family = CPU_HW_PSTATE; |
| 561 | else |
| 562 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | rc = 1; |
| 566 | |
| 567 | out: |
Mike Travis | fc0e474 | 2008-04-04 18:11:05 -0700 | [diff] [blame] | 568 | set_cpus_allowed_ptr(current, &oldmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } |
| 571 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 572 | static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst, |
| 573 | u8 maxvid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | { |
| 575 | unsigned int j; |
| 576 | u8 lastfid = 0xff; |
| 577 | |
| 578 | for (j = 0; j < data->numps; j++) { |
| 579 | if (pst[j].vid > LEAST_VID) { |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 580 | printk(KERN_ERR FW_BUG PFX "vid %d invalid : 0x%x\n", |
| 581 | j, pst[j].vid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | return -EINVAL; |
| 583 | } |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 584 | if (pst[j].vid < data->rvo) { |
| 585 | /* vid + rvo >= 0 */ |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 586 | printk(KERN_ERR FW_BUG PFX "0 vid exceeded with pstate" |
| 587 | " %d\n", j); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | return -ENODEV; |
| 589 | } |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 590 | if (pst[j].vid < maxvid + data->rvo) { |
| 591 | /* vid + rvo >= maxvid */ |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 592 | printk(KERN_ERR FW_BUG PFX "maxvid exceeded with pstate" |
| 593 | " %d\n", j); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | return -ENODEV; |
| 595 | } |
Jacob Shin | 8aae828 | 2005-11-21 07:23:08 -0800 | [diff] [blame] | 596 | if (pst[j].fid > MAX_FID) { |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 597 | printk(KERN_ERR FW_BUG PFX "maxfid exceeded with pstate" |
| 598 | " %d\n", j); |
Jacob Shin | 8aae828 | 2005-11-21 07:23:08 -0800 | [diff] [blame] | 599 | return -ENODEV; |
| 600 | } |
Jacob Shin | 8aae828 | 2005-11-21 07:23:08 -0800 | [diff] [blame] | 601 | if (j && (pst[j].fid < HI_FID_TABLE_BOTTOM)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | /* Only first fid is allowed to be in "low" range */ |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 603 | printk(KERN_ERR FW_BUG PFX "two low fids - %d : " |
| 604 | "0x%x\n", j, pst[j].fid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | return -EINVAL; |
| 606 | } |
| 607 | if (pst[j].fid < lastfid) |
| 608 | lastfid = pst[j].fid; |
| 609 | } |
| 610 | if (lastfid & 1) { |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 611 | printk(KERN_ERR FW_BUG PFX "lastfid invalid\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | return -EINVAL; |
| 613 | } |
| 614 | if (lastfid > LO_FID_TABLE_TOP) |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 615 | printk(KERN_INFO FW_BUG PFX |
| 616 | "first fid not from lo freq table\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
| 618 | return 0; |
| 619 | } |
| 620 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 621 | static void invalidate_entry(struct powernow_k8_data *data, unsigned int entry) |
| 622 | { |
| 623 | data->powernow_table[entry].frequency = CPUFREQ_ENTRY_INVALID; |
| 624 | } |
| 625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | static void print_basics(struct powernow_k8_data *data) |
| 627 | { |
| 628 | int j; |
| 629 | for (j = 0; j < data->numps; j++) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 630 | if (data->powernow_table[j].frequency != |
| 631 | CPUFREQ_ENTRY_INVALID) { |
Langsdorf, Mark | e7bdd7a | 2006-06-08 10:30:17 -0500 | [diff] [blame] | 632 | if (cpu_family == CPU_HW_PSTATE) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 633 | printk(KERN_INFO PFX |
| 634 | " %d : pstate %d (%d MHz)\n", j, |
Yinghai Lu | 4ae5c49 | 2007-11-20 19:38:27 -0800 | [diff] [blame] | 635 | data->powernow_table[j].index, |
Dave Jones | 9a60ddb | 2007-07-13 01:34:10 -0400 | [diff] [blame] | 636 | data->powernow_table[j].frequency/1000); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 637 | } else { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 638 | printk(KERN_INFO PFX |
| 639 | " %d : fid 0x%x (%d MHz), vid 0x%x\n", |
Dave Jones | 9a60ddb | 2007-07-13 01:34:10 -0400 | [diff] [blame] | 640 | j, |
| 641 | data->powernow_table[j].index & 0xff, |
| 642 | data->powernow_table[j].frequency/1000, |
| 643 | data->powernow_table[j].index >> 8); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 644 | } |
| 645 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | } |
| 647 | if (data->batps) |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 648 | printk(KERN_INFO PFX "Only %d pstates on battery\n", |
| 649 | data->batps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | } |
| 651 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 652 | static int fill_powernow_table(struct powernow_k8_data *data, |
| 653 | struct pst_s *pst, u8 maxvid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | { |
| 655 | struct cpufreq_frequency_table *powernow_table; |
| 656 | unsigned int j; |
| 657 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 658 | if (data->batps) { |
| 659 | /* use ACPI support to get full speed on mains power */ |
| 660 | printk(KERN_WARNING PFX |
| 661 | "Only %d pstates usable (use ACPI driver for full " |
| 662 | "range\n", data->batps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | data->numps = data->batps; |
| 664 | } |
| 665 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 666 | for (j = 1; j < data->numps; j++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | if (pst[j-1].fid >= pst[j].fid) { |
| 668 | printk(KERN_ERR PFX "PST out of sequence\n"); |
| 669 | return -EINVAL; |
| 670 | } |
| 671 | } |
| 672 | |
| 673 | if (data->numps < 2) { |
| 674 | printk(KERN_ERR PFX "no p states to transition\n"); |
| 675 | return -ENODEV; |
| 676 | } |
| 677 | |
| 678 | if (check_pst_table(data, pst, maxvid)) |
| 679 | return -EINVAL; |
| 680 | |
| 681 | powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table) |
| 682 | * (data->numps + 1)), GFP_KERNEL); |
| 683 | if (!powernow_table) { |
| 684 | printk(KERN_ERR PFX "powernow_table memory alloc failure\n"); |
| 685 | return -ENOMEM; |
| 686 | } |
| 687 | |
| 688 | for (j = 0; j < data->numps; j++) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 689 | int freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | powernow_table[j].index = pst[j].fid; /* lower 8 bits */ |
| 691 | powernow_table[j].index |= (pst[j].vid << 8); /* upper 8 bits */ |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 692 | freq = find_khz_freq_from_fid(pst[j].fid); |
| 693 | powernow_table[j].frequency = freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | } |
| 695 | powernow_table[data->numps].frequency = CPUFREQ_TABLE_END; |
| 696 | powernow_table[data->numps].index = 0; |
| 697 | |
| 698 | if (query_current_values_with_pending_wait(data)) { |
| 699 | kfree(powernow_table); |
| 700 | return -EIO; |
| 701 | } |
| 702 | |
| 703 | dprintk("cfid 0x%x, cvid 0x%x\n", data->currfid, data->currvid); |
| 704 | data->powernow_table = powernow_table; |
Rusty Russell | 7ad728f | 2009-03-13 14:49:50 +1030 | [diff] [blame] | 705 | if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu) |
Mark Langsdorf | 2e49762 | 2007-04-30 14:15:05 -0500 | [diff] [blame] | 706 | print_basics(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | |
| 708 | for (j = 0; j < data->numps; j++) |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 709 | if ((pst[j].fid == data->currfid) && |
| 710 | (pst[j].vid == data->currvid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | return 0; |
| 712 | |
| 713 | dprintk("currfid/vid do not match PST, ignoring\n"); |
| 714 | return 0; |
| 715 | } |
| 716 | |
| 717 | /* Find and validate the PSB/PST table in BIOS. */ |
| 718 | static int find_psb_table(struct powernow_k8_data *data) |
| 719 | { |
| 720 | struct psb_s *psb; |
| 721 | unsigned int i; |
| 722 | u32 mvs; |
| 723 | u8 maxvid; |
| 724 | u32 cpst = 0; |
| 725 | u32 thiscpuid; |
| 726 | |
| 727 | for (i = 0xc0000; i < 0xffff0; i += 0x10) { |
| 728 | /* Scan BIOS looking for the signature. */ |
| 729 | /* It can not be at ffff0 - it is too big. */ |
| 730 | |
| 731 | psb = phys_to_virt(i); |
| 732 | if (memcmp(psb, PSB_ID_STRING, PSB_ID_STRING_LEN) != 0) |
| 733 | continue; |
| 734 | |
| 735 | dprintk("found PSB header at 0x%p\n", psb); |
| 736 | |
| 737 | dprintk("table vers: 0x%x\n", psb->tableversion); |
| 738 | if (psb->tableversion != PSB_VERSION_1_4) { |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 739 | printk(KERN_ERR FW_BUG PFX "PSB table is not v1.4\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | return -ENODEV; |
| 741 | } |
| 742 | |
| 743 | dprintk("flags: 0x%x\n", psb->flags1); |
| 744 | if (psb->flags1) { |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 745 | printk(KERN_ERR FW_BUG PFX "unknown flags\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | return -ENODEV; |
| 747 | } |
| 748 | |
| 749 | data->vstable = psb->vstable; |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 750 | dprintk("voltage stabilization time: %d(*20us)\n", |
| 751 | data->vstable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | |
| 753 | dprintk("flags2: 0x%x\n", psb->flags2); |
| 754 | data->rvo = psb->flags2 & 3; |
| 755 | data->irt = ((psb->flags2) >> 2) & 3; |
| 756 | mvs = ((psb->flags2) >> 4) & 3; |
| 757 | data->vidmvs = 1 << mvs; |
| 758 | data->batps = ((psb->flags2) >> 6) & 3; |
| 759 | |
| 760 | dprintk("ramp voltage offset: %d\n", data->rvo); |
| 761 | dprintk("isochronous relief time: %d\n", data->irt); |
| 762 | dprintk("maximum voltage step: %d - 0x%x\n", mvs, data->vidmvs); |
| 763 | |
| 764 | dprintk("numpst: 0x%x\n", psb->num_tables); |
| 765 | cpst = psb->num_tables; |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 766 | if ((psb->cpuid == 0x00000fc0) || |
| 767 | (psb->cpuid == 0x00000fe0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | thiscpuid = cpuid_eax(CPUID_PROCESSOR_SIGNATURE); |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 769 | if ((thiscpuid == 0x00000fc0) || |
| 770 | (thiscpuid == 0x00000fe0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | cpst = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | } |
| 773 | if (cpst != 1) { |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 774 | printk(KERN_ERR FW_BUG PFX "numpst must be 1\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | return -ENODEV; |
| 776 | } |
| 777 | |
| 778 | data->plllock = psb->plllocktime; |
| 779 | dprintk("plllocktime: 0x%x (units 1us)\n", psb->plllocktime); |
| 780 | dprintk("maxfid: 0x%x\n", psb->maxfid); |
| 781 | dprintk("maxvid: 0x%x\n", psb->maxvid); |
| 782 | maxvid = psb->maxvid; |
| 783 | |
| 784 | data->numps = psb->numps; |
| 785 | dprintk("numpstates: 0x%x\n", data->numps); |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 786 | return fill_powernow_table(data, |
| 787 | (struct pst_s *)(psb+1), maxvid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | } |
| 789 | /* |
| 790 | * If you see this message, complain to BIOS manufacturer. If |
| 791 | * he tells you "we do not support Linux" or some similar |
| 792 | * nonsense, remember that Windows 2000 uses the same legacy |
| 793 | * mechanism that the old Linux PSB driver uses. Tell them it |
| 794 | * is broken with Windows 2000. |
| 795 | * |
| 796 | * The reference to the AMD documentation is chapter 9 in the |
| 797 | * BIOS and Kernel Developer's Guide, which is available on |
| 798 | * www.amd.com |
| 799 | */ |
Thomas Renninger | 79cc56a | 2009-02-04 11:56:11 +0100 | [diff] [blame] | 800 | printk(KERN_ERR FW_BUG PFX "No PSB or ACPI _PSS objects\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | return -ENODEV; |
| 802 | } |
| 803 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 804 | static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data, |
| 805 | unsigned int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 807 | acpi_integer control; |
| 808 | |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 809 | if (!data->acpi_data.state_count || (cpu_family == CPU_HW_PSTATE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | return; |
| 811 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 812 | control = data->acpi_data.states[index].control; data->irt = (control |
| 813 | >> IRT_SHIFT) & IRT_MASK; data->rvo = (control >> |
| 814 | RVO_SHIFT) & RVO_MASK; data->exttype = (control |
| 815 | >> EXT_TYPE_SHIFT) & EXT_TYPE_MASK; |
| 816 | data->plllock = (control >> PLL_L_SHIFT) & PLL_L_MASK; data->vidmvs = 1 |
| 817 | << ((control >> MVS_SHIFT) & MVS_MASK); data->vstable = |
| 818 | (control >> VST_SHIFT) & VST_MASK; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
| 820 | static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data) |
| 821 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | struct cpufreq_frequency_table *powernow_table; |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 823 | int ret_val = -ENODEV; |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 824 | acpi_integer space_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 826 | if (acpi_processor_register_performance(&data->acpi_data, data->cpu)) { |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 827 | dprintk("register performance failed: bad ACPI data\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | return -EIO; |
| 829 | } |
| 830 | |
| 831 | /* verify the data contained in the ACPI structures */ |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 832 | if (data->acpi_data.state_count <= 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | dprintk("No ACPI P-States\n"); |
| 834 | goto err_out; |
| 835 | } |
| 836 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 837 | space_id = data->acpi_data.control_register.space_id; |
| 838 | if ((space_id != ACPI_ADR_SPACE_FIXED_HARDWARE) || |
| 839 | (space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | dprintk("Invalid control/status registers (%x - %x)\n", |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 841 | data->acpi_data.control_register.space_id, |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 842 | space_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | goto err_out; |
| 844 | } |
| 845 | |
| 846 | /* fill in data->powernow_table */ |
| 847 | powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table) |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 848 | * (data->acpi_data.state_count + 1)), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | if (!powernow_table) { |
| 850 | dprintk("powernow_table memory alloc failure\n"); |
| 851 | goto err_out; |
| 852 | } |
| 853 | |
Langsdorf, Mark | e7bdd7a | 2006-06-08 10:30:17 -0500 | [diff] [blame] | 854 | if (cpu_family == CPU_HW_PSTATE) |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 855 | ret_val = fill_powernow_table_pstate(data, powernow_table); |
| 856 | else |
| 857 | ret_val = fill_powernow_table_fidvid(data, powernow_table); |
| 858 | if (ret_val) |
| 859 | goto err_out_mem; |
| 860 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 861 | powernow_table[data->acpi_data.state_count].frequency = |
| 862 | CPUFREQ_TABLE_END; |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 863 | powernow_table[data->acpi_data.state_count].index = 0; |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 864 | data->powernow_table = powernow_table; |
| 865 | |
| 866 | /* fill in data */ |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 867 | data->numps = data->acpi_data.state_count; |
Rusty Russell | 7ad728f | 2009-03-13 14:49:50 +1030 | [diff] [blame] | 868 | if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu) |
Mark Langsdorf | 2e49762 | 2007-04-30 14:15:05 -0500 | [diff] [blame] | 869 | print_basics(data); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 870 | powernow_k8_acpi_pst_values(data, 0); |
| 871 | |
| 872 | /* notify BIOS that we exist */ |
| 873 | acpi_processor_notify_smm(THIS_MODULE); |
| 874 | |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 875 | if (!alloc_cpumask_var(&data->acpi_data.shared_cpu_map, GFP_KERNEL)) { |
| 876 | printk(KERN_ERR PFX |
| 877 | "unable to alloc powernow_k8_data cpumask\n"); |
| 878 | ret_val = -ENOMEM; |
| 879 | goto err_out_mem; |
| 880 | } |
| 881 | |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 882 | return 0; |
| 883 | |
| 884 | err_out_mem: |
| 885 | kfree(powernow_table); |
| 886 | |
| 887 | err_out: |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 888 | acpi_processor_unregister_performance(&data->acpi_data, data->cpu); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 889 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 890 | /* data->acpi_data.state_count informs us at ->exit() |
| 891 | * whether ACPI was used */ |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 892 | data->acpi_data.state_count = 0; |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 893 | |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 894 | return ret_val; |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 895 | } |
| 896 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 897 | static int fill_powernow_table_pstate(struct powernow_k8_data *data, |
| 898 | struct cpufreq_frequency_table *powernow_table) |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 899 | { |
| 900 | int i; |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 901 | u32 hi = 0, lo = 0; |
| 902 | rdmsr(MSR_PSTATE_CUR_LIMIT, hi, lo); |
| 903 | data->max_hw_pstate = (hi & HW_PSTATE_MAX_MASK) >> HW_PSTATE_MAX_SHIFT; |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 904 | |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 905 | for (i = 0; i < data->acpi_data.state_count; i++) { |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 906 | u32 index; |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 907 | |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 908 | index = data->acpi_data.states[i].control & HW_PSTATE_MASK; |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 909 | if (index > data->max_hw_pstate) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 910 | printk(KERN_ERR PFX "invalid pstate %d - " |
| 911 | "bad value %d.\n", i, index); |
| 912 | printk(KERN_ERR PFX "Please report to BIOS " |
| 913 | "manufacturer\n"); |
| 914 | invalidate_entry(data, i); |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 915 | continue; |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 916 | } |
| 917 | rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi); |
| 918 | if (!(hi & HW_PSTATE_VALID_MASK)) { |
| 919 | dprintk("invalid pstate %d, ignoring\n", index); |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 920 | invalidate_entry(data, i); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 921 | continue; |
| 922 | } |
| 923 | |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 924 | powernow_table[i].index = index; |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 925 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 926 | powernow_table[i].frequency = |
| 927 | data->acpi_data.states[i].core_frequency * 1000; |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 928 | } |
| 929 | return 0; |
| 930 | } |
| 931 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 932 | static int fill_powernow_table_fidvid(struct powernow_k8_data *data, |
| 933 | struct cpufreq_frequency_table *powernow_table) |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 934 | { |
| 935 | int i; |
| 936 | int cntlofreq = 0; |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 937 | |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 938 | for (i = 0; i < data->acpi_data.state_count; i++) { |
Dave Jones | 094ce7f | 2005-07-29 12:55:40 -0700 | [diff] [blame] | 939 | u32 fid; |
| 940 | u32 vid; |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 941 | u32 freq, index; |
| 942 | acpi_integer status, control; |
Dave Jones | 094ce7f | 2005-07-29 12:55:40 -0700 | [diff] [blame] | 943 | |
| 944 | if (data->exttype) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 945 | status = data->acpi_data.states[i].status; |
| 946 | fid = status & EXT_FID_MASK; |
| 947 | vid = (status >> VID_SHIFT) & EXT_VID_MASK; |
Dave Jones | 841e40b | 2005-07-28 09:40:04 -0700 | [diff] [blame] | 948 | } else { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 949 | control = data->acpi_data.states[i].control; |
| 950 | fid = control & FID_MASK; |
| 951 | vid = (control >> VID_SHIFT) & VID_MASK; |
Dave Jones | 841e40b | 2005-07-28 09:40:04 -0700 | [diff] [blame] | 952 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | |
| 954 | dprintk(" %d : fid 0x%x, vid 0x%x\n", i, fid, vid); |
| 955 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 956 | index = fid | (vid<<8); |
| 957 | powernow_table[i].index = index; |
| 958 | |
| 959 | freq = find_khz_freq_from_fid(fid); |
| 960 | powernow_table[i].frequency = freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | |
| 962 | /* verify frequency is OK */ |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 963 | if ((freq > (MAX_FREQ * 1000)) || (freq < (MIN_FREQ * 1000))) { |
| 964 | dprintk("invalid freq %u kHz, ignoring\n", freq); |
| 965 | invalidate_entry(data, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | continue; |
| 967 | } |
| 968 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 969 | /* verify voltage is OK - |
| 970 | * BIOSs are using "off" to indicate invalid */ |
Dave Jones | 841e40b | 2005-07-28 09:40:04 -0700 | [diff] [blame] | 971 | if (vid == VID_OFF) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | dprintk("invalid vid %u, ignoring\n", vid); |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 973 | invalidate_entry(data, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | continue; |
| 975 | } |
| 976 | |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 977 | /* verify only 1 entry from the lo frequency table */ |
| 978 | if (fid < HI_FID_TABLE_BOTTOM) { |
| 979 | if (cntlofreq) { |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 980 | /* if both entries are the same, |
| 981 | * ignore this one ... */ |
| 982 | if ((freq != powernow_table[cntlofreq].frequency) || |
| 983 | (index != powernow_table[cntlofreq].index)) { |
| 984 | printk(KERN_ERR PFX |
| 985 | "Too many lo freq table " |
| 986 | "entries\n"); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 987 | return 1; |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 988 | } |
| 989 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 990 | dprintk("double low frequency table entry, " |
| 991 | "ignoring it.\n"); |
| 992 | invalidate_entry(data, i); |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 993 | continue; |
| 994 | } else |
| 995 | cntlofreq = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | } |
| 997 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 998 | if (freq != (data->acpi_data.states[i].core_frequency * 1000)) { |
| 999 | printk(KERN_INFO PFX "invalid freq entries " |
| 1000 | "%u kHz vs. %u kHz\n", freq, |
| 1001 | (unsigned int) |
| 1002 | (data->acpi_data.states[i].core_frequency |
| 1003 | * 1000)); |
| 1004 | invalidate_entry(data, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | continue; |
| 1006 | } |
| 1007 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | } |
| 1010 | |
| 1011 | static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data) |
| 1012 | { |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 1013 | if (data->acpi_data.state_count) |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1014 | acpi_processor_unregister_performance(&data->acpi_data, |
| 1015 | data->cpu); |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 1016 | free_cpumask_var(data->acpi_data.shared_cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | } |
| 1018 | |
Mark Langsdorf | 732553e | 2009-02-03 17:46:43 +0100 | [diff] [blame] | 1019 | static int get_transition_latency(struct powernow_k8_data *data) |
| 1020 | { |
| 1021 | int max_latency = 0; |
| 1022 | int i; |
| 1023 | for (i = 0; i < data->acpi_data.state_count; i++) { |
| 1024 | int cur_latency = data->acpi_data.states[i].transition_latency |
| 1025 | + data->acpi_data.states[i].bus_master_latency; |
| 1026 | if (cur_latency > max_latency) |
| 1027 | max_latency = cur_latency; |
| 1028 | } |
| 1029 | /* value in usecs, needs to be in nanoseconds */ |
| 1030 | return 1000 * max_latency; |
| 1031 | } |
| 1032 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | /* Take a frequency, and issue the fid/vid transition command */ |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1034 | static int transition_frequency_fidvid(struct powernow_k8_data *data, |
| 1035 | unsigned int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | { |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1037 | u32 fid = 0; |
| 1038 | u32 vid = 0; |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 1039 | int res, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | struct cpufreq_freqs freqs; |
| 1041 | |
| 1042 | dprintk("cpu %d transition to index %u\n", smp_processor_id(), index); |
| 1043 | |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1044 | /* fid/vid correctness check for k8 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | /* fid are the lower 8 bits of the index we stored into |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1046 | * the cpufreq frequency table in find_psb_table, vid |
| 1047 | * are the upper 8 bits. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | fid = data->powernow_table[index].index & 0xFF; |
| 1050 | vid = (data->powernow_table[index].index & 0xFF00) >> 8; |
| 1051 | |
| 1052 | dprintk("table matched fid 0x%x, giving vid 0x%x\n", fid, vid); |
| 1053 | |
| 1054 | if (query_current_values_with_pending_wait(data)) |
| 1055 | return 1; |
| 1056 | |
| 1057 | if ((data->currvid == vid) && (data->currfid == fid)) { |
| 1058 | dprintk("target matches current values (fid 0x%x, vid 0x%x)\n", |
| 1059 | fid, vid); |
| 1060 | return 0; |
| 1061 | } |
| 1062 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1063 | if ((fid < HI_FID_TABLE_BOTTOM) && |
| 1064 | (data->currfid < HI_FID_TABLE_BOTTOM)) { |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 1065 | printk(KERN_ERR PFX |
| 1066 | "ignoring illegal change in lo freq table-%x to 0x%x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | data->currfid, fid); |
| 1068 | return 1; |
| 1069 | } |
| 1070 | |
| 1071 | dprintk("cpu %d, changing to fid 0x%x, vid 0x%x\n", |
| 1072 | smp_processor_id(), fid, vid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | freqs.old = find_khz_freq_from_fid(data->currfid); |
| 1074 | freqs.new = find_khz_freq_from_fid(fid); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1075 | |
Mike Travis | 334ef7a | 2008-05-12 21:21:13 +0200 | [diff] [blame] | 1076 | for_each_cpu_mask_nr(i, *(data->available_cores)) { |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 1077 | freqs.cpu = i; |
| 1078 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); |
| 1079 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | res = transition_fid_vid(data, fid, vid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | freqs.new = find_khz_freq_from_fid(data->currfid); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1083 | |
Mike Travis | 334ef7a | 2008-05-12 21:21:13 +0200 | [diff] [blame] | 1084 | for_each_cpu_mask_nr(i, *(data->available_cores)) { |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1085 | freqs.cpu = i; |
| 1086 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); |
| 1087 | } |
| 1088 | return res; |
| 1089 | } |
| 1090 | |
| 1091 | /* Take a frequency, and issue the hardware pstate transition command */ |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1092 | static int transition_frequency_pstate(struct powernow_k8_data *data, |
| 1093 | unsigned int index) |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1094 | { |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1095 | u32 pstate = 0; |
| 1096 | int res, i; |
| 1097 | struct cpufreq_freqs freqs; |
| 1098 | |
| 1099 | dprintk("cpu %d transition to index %u\n", smp_processor_id(), index); |
| 1100 | |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 1101 | /* get MSR index for hardware pstate transition */ |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1102 | pstate = index & HW_PSTATE_MASK; |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 1103 | if (pstate > data->max_hw_pstate) |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1104 | return 0; |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1105 | freqs.old = find_khz_freq_from_pstate(data->powernow_table, |
| 1106 | data->currpstate); |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 1107 | freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1108 | |
Mike Travis | 334ef7a | 2008-05-12 21:21:13 +0200 | [diff] [blame] | 1109 | for_each_cpu_mask_nr(i, *(data->available_cores)) { |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1110 | freqs.cpu = i; |
| 1111 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); |
| 1112 | } |
| 1113 | |
| 1114 | res = transition_pstate(data, pstate); |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 1115 | freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1116 | |
Mike Travis | 334ef7a | 2008-05-12 21:21:13 +0200 | [diff] [blame] | 1117 | for_each_cpu_mask_nr(i, *(data->available_cores)) { |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 1118 | freqs.cpu = i; |
| 1119 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); |
Dave Jones | 2e3f8fa | 2006-05-30 17:25:14 -0400 | [diff] [blame] | 1120 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | return res; |
| 1122 | } |
| 1123 | |
| 1124 | /* Driver entry point to switch to the target frequency */ |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1125 | static int powernowk8_target(struct cpufreq_policy *pol, |
| 1126 | unsigned targfreq, unsigned relation) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | { |
Mike Travis | fc0e474 | 2008-04-04 18:11:05 -0700 | [diff] [blame] | 1128 | cpumask_t oldmask; |
travis@sgi.com | 2c6b8c0 | 2008-01-30 13:33:11 +0100 | [diff] [blame] | 1129 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); |
Adrian Bunk | 9180053 | 2006-04-19 00:07:28 +0200 | [diff] [blame] | 1130 | u32 checkfid; |
| 1131 | u32 checkvid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | unsigned int newstate; |
| 1133 | int ret = -EIO; |
| 1134 | |
Jacob Shin | 4211a30 | 2006-04-07 19:49:51 +0200 | [diff] [blame] | 1135 | if (!data) |
| 1136 | return -EINVAL; |
| 1137 | |
Adrian Bunk | 9180053 | 2006-04-19 00:07:28 +0200 | [diff] [blame] | 1138 | checkfid = data->currfid; |
| 1139 | checkvid = data->currvid; |
| 1140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | /* only run on specific CPU from here on */ |
| 1142 | oldmask = current->cpus_allowed; |
Mike Travis | 0bc3cc0 | 2008-07-24 18:21:31 -0700 | [diff] [blame] | 1143 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(pol->cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | |
| 1145 | if (smp_processor_id() != pol->cpu) { |
Jacob Shin | 8aae828 | 2005-11-21 07:23:08 -0800 | [diff] [blame] | 1146 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | goto err_out; |
| 1148 | } |
| 1149 | |
| 1150 | if (pending_bit_stuck()) { |
| 1151 | printk(KERN_ERR PFX "failing targ, change pending bit set\n"); |
| 1152 | goto err_out; |
| 1153 | } |
| 1154 | |
| 1155 | dprintk("targ: cpu %d, %d kHz, min %d, max %d, relation %d\n", |
| 1156 | pol->cpu, targfreq, pol->min, pol->max, relation); |
| 1157 | |
Dave Jones | 8384451 | 2006-05-30 17:43:54 -0400 | [diff] [blame] | 1158 | if (query_current_values_with_pending_wait(data)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | |
Mark Langsdorf | c5829cd | 2007-10-17 16:52:08 -0500 | [diff] [blame] | 1161 | if (cpu_family != CPU_HW_PSTATE) { |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1162 | dprintk("targ: curr fid 0x%x, vid 0x%x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | data->currfid, data->currvid); |
| 1164 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1165 | if ((checkvid != data->currvid) || |
| 1166 | (checkfid != data->currfid)) { |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1167 | printk(KERN_INFO PFX |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1168 | "error - out of sync, fix 0x%x 0x%x, " |
| 1169 | "vid 0x%x 0x%x\n", |
| 1170 | checkfid, data->currfid, |
| 1171 | checkvid, data->currvid); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1172 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | } |
| 1174 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1175 | if (cpufreq_frequency_table_target(pol, data->powernow_table, |
| 1176 | targfreq, relation, &newstate)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | goto err_out; |
| 1178 | |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 1179 | mutex_lock(&fidvid_mutex); |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 1180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | powernow_k8_acpi_pst_values(data, newstate); |
| 1182 | |
Langsdorf, Mark | e7bdd7a | 2006-06-08 10:30:17 -0500 | [diff] [blame] | 1183 | if (cpu_family == CPU_HW_PSTATE) |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1184 | ret = transition_frequency_pstate(data, newstate); |
| 1185 | else |
| 1186 | ret = transition_frequency_fidvid(data, newstate); |
| 1187 | if (ret) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | printk(KERN_ERR PFX "transition frequency failed\n"); |
| 1189 | ret = 1; |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 1190 | mutex_unlock(&fidvid_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | goto err_out; |
| 1192 | } |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 1193 | mutex_unlock(&fidvid_mutex); |
Dave Jones | 065b807 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 1194 | |
Langsdorf, Mark | e7bdd7a | 2006-06-08 10:30:17 -0500 | [diff] [blame] | 1195 | if (cpu_family == CPU_HW_PSTATE) |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1196 | pol->cur = find_khz_freq_from_pstate(data->powernow_table, |
| 1197 | newstate); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1198 | else |
| 1199 | pol->cur = find_khz_freq_from_fid(data->currfid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | ret = 0; |
| 1201 | |
| 1202 | err_out: |
Mike Travis | fc0e474 | 2008-04-04 18:11:05 -0700 | [diff] [blame] | 1203 | set_cpus_allowed_ptr(current, &oldmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | return ret; |
| 1205 | } |
| 1206 | |
| 1207 | /* Driver entry point to verify the policy and range of frequencies */ |
| 1208 | static int powernowk8_verify(struct cpufreq_policy *pol) |
| 1209 | { |
travis@sgi.com | 2c6b8c0 | 2008-01-30 13:33:11 +0100 | [diff] [blame] | 1210 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | |
Jacob Shin | 4211a30 | 2006-04-07 19:49:51 +0200 | [diff] [blame] | 1212 | if (!data) |
| 1213 | return -EINVAL; |
| 1214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | return cpufreq_frequency_table_verify(pol, data->powernow_table); |
| 1216 | } |
| 1217 | |
Thomas Renninger | df18297 | 2009-04-22 13:48:32 +0200 | [diff] [blame^] | 1218 | static const char ACPI_PSS_BIOS_BUG_MSG[] = |
| 1219 | KERN_ERR FW_BUG PFX "No compatible ACPI _PSS objects found.\n" |
| 1220 | KERN_ERR FW_BUG PFX "Try again with latest BIOS.\n"; |
| 1221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | /* per CPU init entry point to the driver */ |
Andi Kleen | aa41eb9 | 2006-01-16 01:56:36 +0100 | [diff] [blame] | 1223 | static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | { |
| 1225 | struct powernow_k8_data *data; |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 1226 | cpumask_t oldmask; |
Andi Kleen | d7fa706 | 2006-04-07 19:49:48 +0200 | [diff] [blame] | 1227 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | |
Jacob Shin | 8aae828 | 2005-11-21 07:23:08 -0800 | [diff] [blame] | 1229 | if (!cpu_online(pol->cpu)) |
| 1230 | return -ENODEV; |
| 1231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | if (!check_supported_cpu(pol->cpu)) |
| 1233 | return -ENODEV; |
| 1234 | |
Dave Jones | bfdc708 | 2005-10-20 15:16:15 -0700 | [diff] [blame] | 1235 | data = kzalloc(sizeof(struct powernow_k8_data), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | if (!data) { |
| 1237 | printk(KERN_ERR PFX "unable to alloc powernow_k8_data"); |
| 1238 | return -ENOMEM; |
| 1239 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | |
| 1241 | data->cpu = pol->cpu; |
Andreas Herrmann | a266d9f | 2008-11-21 14:49:25 +0100 | [diff] [blame] | 1242 | data->currpstate = HW_PSTATE_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | |
Rusty Russell | a0abd52 | 2009-02-16 17:31:58 -0600 | [diff] [blame] | 1244 | if (powernow_k8_cpu_init_acpi(data)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | /* |
| 1246 | * Use the PSB BIOS structure. This is only availabe on |
| 1247 | * an UP version, and is deprecated by AMD. |
| 1248 | */ |
Randy Dunlap | 9ed059e | 2006-06-20 22:32:56 -0700 | [diff] [blame] | 1249 | if (num_online_cpus() != 1) { |
Thomas Renninger | df18297 | 2009-04-22 13:48:32 +0200 | [diff] [blame^] | 1250 | printk_once(ACPI_PSS_BIOS_BUG_MSG); |
Dave Jones | 0cb8bc2 | 2009-02-18 14:11:00 -0500 | [diff] [blame] | 1251 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | } |
| 1253 | if (pol->cpu != 0) { |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 1254 | printk(KERN_ERR FW_BUG PFX "No ACPI _PSS objects for " |
| 1255 | "CPU other than CPU0. Complain to your BIOS " |
| 1256 | "vendor.\n"); |
Dave Jones | 0cb8bc2 | 2009-02-18 14:11:00 -0500 | [diff] [blame] | 1257 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | } |
| 1259 | rc = find_psb_table(data); |
Dave Jones | 0cb8bc2 | 2009-02-18 14:11:00 -0500 | [diff] [blame] | 1260 | if (rc) |
| 1261 | goto err_out; |
| 1262 | |
Mark Langsdorf | 732553e | 2009-02-03 17:46:43 +0100 | [diff] [blame] | 1263 | /* Take a crude guess here. |
| 1264 | * That guess was in microseconds, so multiply with 1000 */ |
| 1265 | pol->cpuinfo.transition_latency = ( |
| 1266 | ((data->rvo + 8) * data->vstable * VST_UNITS_20US) + |
| 1267 | ((1 << data->irt) * 30)) * 1000; |
| 1268 | } else /* ACPI _PSS objects available */ |
| 1269 | pol->cpuinfo.transition_latency = get_transition_latency(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | |
| 1271 | /* only run on specific CPU from here on */ |
| 1272 | oldmask = current->cpus_allowed; |
Mike Travis | 0bc3cc0 | 2008-07-24 18:21:31 -0700 | [diff] [blame] | 1273 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(pol->cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | |
| 1275 | if (smp_processor_id() != pol->cpu) { |
Jacob Shin | 8aae828 | 2005-11-21 07:23:08 -0800 | [diff] [blame] | 1276 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu); |
Dave Jones | 0cb8bc2 | 2009-02-18 14:11:00 -0500 | [diff] [blame] | 1277 | goto err_out_unmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | } |
| 1279 | |
| 1280 | if (pending_bit_stuck()) { |
| 1281 | printk(KERN_ERR PFX "failing init, change pending bit set\n"); |
Dave Jones | 0cb8bc2 | 2009-02-18 14:11:00 -0500 | [diff] [blame] | 1282 | goto err_out_unmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | } |
| 1284 | |
| 1285 | if (query_current_values_with_pending_wait(data)) |
Dave Jones | 0cb8bc2 | 2009-02-18 14:11:00 -0500 | [diff] [blame] | 1286 | goto err_out_unmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | |
Langsdorf, Mark | e7bdd7a | 2006-06-08 10:30:17 -0500 | [diff] [blame] | 1288 | if (cpu_family == CPU_OPTERON) |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1289 | fidvid_msr_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | |
| 1291 | /* run on any CPU again */ |
Mike Travis | fc0e474 | 2008-04-04 18:11:05 -0700 | [diff] [blame] | 1292 | set_cpus_allowed_ptr(current, &oldmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 1294 | if (cpu_family == CPU_HW_PSTATE) |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 1295 | cpumask_copy(pol->cpus, cpumask_of(pol->cpu)); |
Linus Torvalds | f607e3a | 2008-08-19 13:34:59 -0700 | [diff] [blame] | 1296 | else |
Rusty Russell | 7ad728f | 2009-03-13 14:49:50 +1030 | [diff] [blame] | 1297 | cpumask_copy(pol->cpus, cpu_core_mask(pol->cpu)); |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 1298 | data->available_cores = pol->cpus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | |
Langsdorf, Mark | e7bdd7a | 2006-06-08 10:30:17 -0500 | [diff] [blame] | 1300 | if (cpu_family == CPU_HW_PSTATE) |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1301 | pol->cur = find_khz_freq_from_pstate(data->powernow_table, |
| 1302 | data->currpstate); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1303 | else |
| 1304 | pol->cur = find_khz_freq_from_fid(data->currfid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | dprintk("policy current frequency %d kHz\n", pol->cur); |
| 1306 | |
| 1307 | /* min/max the cpu is capable of */ |
| 1308 | if (cpufreq_frequency_table_cpuinfo(pol, data->powernow_table)) { |
Thomas Renninger | 2fd4709 | 2008-09-01 14:27:03 +0200 | [diff] [blame] | 1309 | printk(KERN_ERR FW_BUG PFX "invalid powernow_table\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | powernow_k8_cpu_exit_acpi(data); |
| 1311 | kfree(data->powernow_table); |
| 1312 | kfree(data); |
| 1313 | return -EINVAL; |
| 1314 | } |
| 1315 | |
| 1316 | cpufreq_frequency_table_get_attr(data->powernow_table, pol->cpu); |
| 1317 | |
Langsdorf, Mark | e7bdd7a | 2006-06-08 10:30:17 -0500 | [diff] [blame] | 1318 | if (cpu_family == CPU_HW_PSTATE) |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1319 | dprintk("cpu_init done, current pstate 0x%x\n", |
| 1320 | data->currpstate); |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1321 | else |
| 1322 | dprintk("cpu_init done, current fid 0x%x, vid 0x%x\n", |
| 1323 | data->currfid, data->currvid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | |
travis@sgi.com | 2c6b8c0 | 2008-01-30 13:33:11 +0100 | [diff] [blame] | 1325 | per_cpu(powernow_data, pol->cpu) = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | |
| 1327 | return 0; |
| 1328 | |
Dave Jones | 0cb8bc2 | 2009-02-18 14:11:00 -0500 | [diff] [blame] | 1329 | err_out_unmask: |
Mike Travis | fc0e474 | 2008-04-04 18:11:05 -0700 | [diff] [blame] | 1330 | set_cpus_allowed_ptr(current, &oldmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | powernow_k8_cpu_exit_acpi(data); |
| 1332 | |
Dave Jones | 0cb8bc2 | 2009-02-18 14:11:00 -0500 | [diff] [blame] | 1333 | err_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | kfree(data); |
| 1335 | return -ENODEV; |
| 1336 | } |
| 1337 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1338 | static int __devexit powernowk8_cpu_exit(struct cpufreq_policy *pol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | { |
travis@sgi.com | 2c6b8c0 | 2008-01-30 13:33:11 +0100 | [diff] [blame] | 1340 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | |
| 1342 | if (!data) |
| 1343 | return -EINVAL; |
| 1344 | |
| 1345 | powernow_k8_cpu_exit_acpi(data); |
| 1346 | |
| 1347 | cpufreq_frequency_table_put_attr(pol->cpu); |
| 1348 | |
| 1349 | kfree(data->powernow_table); |
| 1350 | kfree(data); |
| 1351 | |
| 1352 | return 0; |
| 1353 | } |
| 1354 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1355 | static unsigned int powernowk8_get(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | { |
shin, jacob | eef5167 | 2006-03-27 09:57:20 -0600 | [diff] [blame] | 1357 | struct powernow_k8_data *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | cpumask_t oldmask = current->cpus_allowed; |
| 1359 | unsigned int khz = 0; |
Dave Jones | 89c0484 | 2008-02-06 21:55:26 -0500 | [diff] [blame] | 1360 | unsigned int first; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | |
Rusty Russell | 7ad728f | 2009-03-13 14:49:50 +1030 | [diff] [blame] | 1362 | first = cpumask_first(cpu_core_mask(cpu)); |
Dave Jones | 89c0484 | 2008-02-06 21:55:26 -0500 | [diff] [blame] | 1363 | data = per_cpu(powernow_data, first); |
shin, jacob | eef5167 | 2006-03-27 09:57:20 -0600 | [diff] [blame] | 1364 | |
| 1365 | if (!data) |
| 1366 | return -EINVAL; |
| 1367 | |
Mike Travis | 0bc3cc0 | 2008-07-24 18:21:31 -0700 | [diff] [blame] | 1368 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | if (smp_processor_id() != cpu) { |
Mike Travis | fc0e474 | 2008-04-04 18:11:05 -0700 | [diff] [blame] | 1370 | printk(KERN_ERR PFX |
| 1371 | "limiting to CPU %d failed in powernowk8_get\n", cpu); |
| 1372 | set_cpus_allowed_ptr(current, &oldmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | return 0; |
| 1374 | } |
Dave Jones | b9111b7 | 2005-09-23 11:10:42 -0700 | [diff] [blame] | 1375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | if (query_current_values_with_pending_wait(data)) |
| 1377 | goto out; |
| 1378 | |
Joachim Deguara | 58389a8 | 2007-01-30 16:53:54 +0100 | [diff] [blame] | 1379 | if (cpu_family == CPU_HW_PSTATE) |
Mike Travis | fc0e474 | 2008-04-04 18:11:05 -0700 | [diff] [blame] | 1380 | khz = find_khz_freq_from_pstate(data->powernow_table, |
| 1381 | data->currpstate); |
Joachim Deguara | 58389a8 | 2007-01-30 16:53:54 +0100 | [diff] [blame] | 1382 | else |
| 1383 | khz = find_khz_freq_from_fid(data->currfid); |
| 1384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | |
Dave Jones | b9111b7 | 2005-09-23 11:10:42 -0700 | [diff] [blame] | 1386 | out: |
Mike Travis | fc0e474 | 2008-04-04 18:11:05 -0700 | [diff] [blame] | 1387 | set_cpus_allowed_ptr(current, &oldmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | return khz; |
| 1389 | } |
| 1390 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1391 | static struct freq_attr *powernow_k8_attr[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | &cpufreq_freq_attr_scaling_available_freqs, |
| 1393 | NULL, |
| 1394 | }; |
| 1395 | |
Linus Torvalds | 221dee2 | 2007-02-26 14:55:48 -0800 | [diff] [blame] | 1396 | static struct cpufreq_driver cpufreq_amd64_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | .verify = powernowk8_verify, |
| 1398 | .target = powernowk8_target, |
| 1399 | .init = powernowk8_cpu_init, |
| 1400 | .exit = __devexit_p(powernowk8_cpu_exit), |
| 1401 | .get = powernowk8_get, |
| 1402 | .name = "powernow-k8", |
| 1403 | .owner = THIS_MODULE, |
| 1404 | .attr = powernow_k8_attr, |
| 1405 | }; |
| 1406 | |
| 1407 | /* driver entry point for init */ |
Andi Kleen | aa41eb9 | 2006-01-16 01:56:36 +0100 | [diff] [blame] | 1408 | static int __cpuinit powernowk8_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | { |
| 1410 | unsigned int i, supported_cpus = 0; |
| 1411 | |
Andrew Morton | a720115 | 2006-03-24 03:15:07 -0800 | [diff] [blame] | 1412 | for_each_online_cpu(i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | if (check_supported_cpu(i)) |
| 1414 | supported_cpus++; |
| 1415 | } |
| 1416 | |
| 1417 | if (supported_cpus == num_online_cpus()) { |
Dave Jones | 1f729e0 | 2006-06-04 19:37:58 -0400 | [diff] [blame] | 1418 | printk(KERN_INFO PFX "Found %d %s " |
Dave Jones | 904f7a3 | 2007-05-18 13:22:28 -0400 | [diff] [blame] | 1419 | "processors (%d cpu cores) (" VERSION ")\n", |
Yinghai Lu | c925401 | 2007-08-22 18:44:20 -0700 | [diff] [blame] | 1420 | num_online_nodes(), |
Dave Jones | 904f7a3 | 2007-05-18 13:22:28 -0400 | [diff] [blame] | 1421 | boot_cpu_data.x86_model_id, supported_cpus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | return cpufreq_register_driver(&cpufreq_amd64_driver); |
| 1423 | } |
| 1424 | |
| 1425 | return -ENODEV; |
| 1426 | } |
| 1427 | |
| 1428 | /* driver entry point for term */ |
| 1429 | static void __exit powernowk8_exit(void) |
| 1430 | { |
| 1431 | dprintk("exit\n"); |
| 1432 | |
| 1433 | cpufreq_unregister_driver(&cpufreq_amd64_driver); |
| 1434 | } |
| 1435 | |
Dave Jones | 0e64a0c | 2009-02-04 14:37:50 -0500 | [diff] [blame] | 1436 | MODULE_AUTHOR("Paul Devriendt <paul.devriendt@amd.com> and " |
| 1437 | "Mark Langsdorf <mark.langsdorf@amd.com>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | MODULE_DESCRIPTION("AMD Athlon 64 and Opteron processor frequency driver."); |
| 1439 | MODULE_LICENSE("GPL"); |
| 1440 | |
| 1441 | late_initcall(powernowk8_init); |
| 1442 | module_exit(powernowk8_exit); |