diff options
Diffstat (limited to 'arch/x86/kernel/cpu/cpufreq/powernow-k8.c')
| -rw-r--r-- | arch/x86/kernel/cpu/cpufreq/powernow-k8.c | 399 |
1 files changed, 241 insertions, 158 deletions
diff --git a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c index 6428aa17b40e..4709ead2db52 100644 --- a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c +++ b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c | |||
| @@ -33,16 +33,14 @@ | |||
| 33 | #include <linux/string.h> | 33 | #include <linux/string.h> |
| 34 | #include <linux/cpumask.h> | 34 | #include <linux/cpumask.h> |
| 35 | #include <linux/sched.h> /* for current / set_cpus_allowed() */ | 35 | #include <linux/sched.h> /* for current / set_cpus_allowed() */ |
| 36 | #include <linux/io.h> | ||
| 37 | #include <linux/delay.h> | ||
| 36 | 38 | ||
| 37 | #include <asm/msr.h> | 39 | #include <asm/msr.h> |
| 38 | #include <asm/io.h> | ||
| 39 | #include <asm/delay.h> | ||
| 40 | 40 | ||
| 41 | #ifdef CONFIG_X86_POWERNOW_K8_ACPI | ||
| 42 | #include <linux/acpi.h> | 41 | #include <linux/acpi.h> |
| 43 | #include <linux/mutex.h> | 42 | #include <linux/mutex.h> |
| 44 | #include <acpi/processor.h> | 43 | #include <acpi/processor.h> |
| 45 | #endif | ||
| 46 | 44 | ||
| 47 | #define PFX "powernow-k8: " | 45 | #define PFX "powernow-k8: " |
| 48 | #define VERSION "version 2.20.00" | 46 | #define VERSION "version 2.20.00" |
| @@ -56,7 +54,10 @@ static DEFINE_PER_CPU(struct powernow_k8_data *, powernow_data); | |||
| 56 | static int cpu_family = CPU_OPTERON; | 54 | static int cpu_family = CPU_OPTERON; |
| 57 | 55 | ||
| 58 | #ifndef CONFIG_SMP | 56 | #ifndef CONFIG_SMP |
| 59 | DEFINE_PER_CPU(cpumask_t, cpu_core_map); | 57 | static inline const struct cpumask *cpu_core_mask(int cpu) |
| 58 | { | ||
| 59 | return cpumask_of(0); | ||
| 60 | } | ||
| 60 | #endif | 61 | #endif |
| 61 | 62 | ||
| 62 | /* Return a frequency in MHz, given an input fid */ | 63 | /* Return a frequency in MHz, given an input fid */ |
| @@ -71,7 +72,8 @@ static u32 find_khz_freq_from_fid(u32 fid) | |||
| 71 | return 1000 * find_freq_from_fid(fid); | 72 | return 1000 * find_freq_from_fid(fid); |
| 72 | } | 73 | } |
| 73 | 74 | ||
| 74 | static u32 find_khz_freq_from_pstate(struct cpufreq_frequency_table *data, u32 pstate) | 75 | static u32 find_khz_freq_from_pstate(struct cpufreq_frequency_table *data, |
| 76 | u32 pstate) | ||
| 75 | { | 77 | { |
| 76 | return data[pstate].frequency; | 78 | return data[pstate].frequency; |
| 77 | } | 79 | } |
| @@ -186,7 +188,9 @@ static int write_new_fid(struct powernow_k8_data *data, u32 fid) | |||
| 186 | return 1; | 188 | return 1; |
| 187 | } | 189 | } |
| 188 | 190 | ||
| 189 | lo = fid | (data->currvid << MSR_C_LO_VID_SHIFT) | MSR_C_LO_INIT_FID_VID; | 191 | lo = fid; |
| 192 | lo |= (data->currvid << MSR_C_LO_VID_SHIFT); | ||
| 193 | lo |= MSR_C_LO_INIT_FID_VID; | ||
| 190 | 194 | ||
| 191 | dprintk("writing fid 0x%x, lo 0x%x, hi 0x%x\n", | 195 | dprintk("writing fid 0x%x, lo 0x%x, hi 0x%x\n", |
| 192 | fid, lo, data->plllock * PLL_LOCK_CONVERSION); | 196 | fid, lo, data->plllock * PLL_LOCK_CONVERSION); |
| @@ -194,7 +198,9 @@ static int write_new_fid(struct powernow_k8_data *data, u32 fid) | |||
| 194 | do { | 198 | do { |
| 195 | wrmsr(MSR_FIDVID_CTL, lo, data->plllock * PLL_LOCK_CONVERSION); | 199 | wrmsr(MSR_FIDVID_CTL, lo, data->plllock * PLL_LOCK_CONVERSION); |
| 196 | if (i++ > 100) { | 200 | if (i++ > 100) { |
| 197 | printk(KERN_ERR PFX "Hardware error - pending bit very stuck - no further pstate changes possible\n"); | 201 | printk(KERN_ERR PFX |
| 202 | "Hardware error - pending bit very stuck - " | ||
| 203 | "no further pstate changes possible\n"); | ||
| 198 | return 1; | 204 | return 1; |
| 199 | } | 205 | } |
| 200 | } while (query_current_values_with_pending_wait(data)); | 206 | } while (query_current_values_with_pending_wait(data)); |
| @@ -202,14 +208,16 @@ static int write_new_fid(struct powernow_k8_data *data, u32 fid) | |||
| 202 | count_off_irt(data); | 208 | count_off_irt(data); |
| 203 | 209 | ||
| 204 | if (savevid != data->currvid) { | 210 | if (savevid != data->currvid) { |
| 205 | printk(KERN_ERR PFX "vid change on fid trans, old 0x%x, new 0x%x\n", | 211 | printk(KERN_ERR PFX |
| 206 | savevid, data->currvid); | 212 | "vid change on fid trans, old 0x%x, new 0x%x\n", |
| 213 | savevid, data->currvid); | ||
| 207 | return 1; | 214 | return 1; |
| 208 | } | 215 | } |
| 209 | 216 | ||
| 210 | if (fid != data->currfid) { | 217 | if (fid != data->currfid) { |
| 211 | printk(KERN_ERR PFX "fid trans failed, fid 0x%x, curr 0x%x\n", fid, | 218 | printk(KERN_ERR PFX |
| 212 | data->currfid); | 219 | "fid trans failed, fid 0x%x, curr 0x%x\n", fid, |
| 220 | data->currfid); | ||
| 213 | return 1; | 221 | return 1; |
| 214 | } | 222 | } |
| 215 | 223 | ||
| @@ -228,7 +236,9 @@ static int write_new_vid(struct powernow_k8_data *data, u32 vid) | |||
| 228 | return 1; | 236 | return 1; |
| 229 | } | 237 | } |
| 230 | 238 | ||
| 231 | lo = data->currfid | (vid << MSR_C_LO_VID_SHIFT) | MSR_C_LO_INIT_FID_VID; | 239 | lo = data->currfid; |
| 240 | lo |= (vid << MSR_C_LO_VID_SHIFT); | ||
| 241 | lo |= MSR_C_LO_INIT_FID_VID; | ||
| 232 | 242 | ||
| 233 | dprintk("writing vid 0x%x, lo 0x%x, hi 0x%x\n", | 243 | dprintk("writing vid 0x%x, lo 0x%x, hi 0x%x\n", |
| 234 | vid, lo, STOP_GRANT_5NS); | 244 | vid, lo, STOP_GRANT_5NS); |
| @@ -236,20 +246,24 @@ static int write_new_vid(struct powernow_k8_data *data, u32 vid) | |||
| 236 | do { | 246 | do { |
| 237 | wrmsr(MSR_FIDVID_CTL, lo, STOP_GRANT_5NS); | 247 | wrmsr(MSR_FIDVID_CTL, lo, STOP_GRANT_5NS); |
| 238 | if (i++ > 100) { | 248 | if (i++ > 100) { |
| 239 | printk(KERN_ERR PFX "internal error - pending bit very stuck - no further pstate changes possible\n"); | 249 | printk(KERN_ERR PFX "internal error - pending bit " |
| 250 | "very stuck - no further pstate " | ||
| 251 | "changes possible\n"); | ||
| 240 | return 1; | 252 | return 1; |
| 241 | } | 253 | } |
| 242 | } while (query_current_values_with_pending_wait(data)); | 254 | } while (query_current_values_with_pending_wait(data)); |
| 243 | 255 | ||
| 244 | if (savefid != data->currfid) { | 256 | if (savefid != data->currfid) { |
| 245 | printk(KERN_ERR PFX "fid changed on vid trans, old 0x%x new 0x%x\n", | 257 | printk(KERN_ERR PFX "fid changed on vid trans, old " |
| 258 | "0x%x new 0x%x\n", | ||
| 246 | savefid, data->currfid); | 259 | savefid, data->currfid); |
| 247 | return 1; | 260 | return 1; |
| 248 | } | 261 | } |
| 249 | 262 | ||
| 250 | if (vid != data->currvid) { | 263 | if (vid != data->currvid) { |
| 251 | printk(KERN_ERR PFX "vid trans failed, vid 0x%x, curr 0x%x\n", vid, | 264 | printk(KERN_ERR PFX "vid trans failed, vid 0x%x, " |
| 252 | data->currvid); | 265 | "curr 0x%x\n", |
| 266 | vid, data->currvid); | ||
| 253 | return 1; | 267 | return 1; |
| 254 | } | 268 | } |
| 255 | 269 | ||
| @@ -261,7 +275,8 @@ static int write_new_vid(struct powernow_k8_data *data, u32 vid) | |||
| 261 | * Decreasing vid codes represent increasing voltages: | 275 | * Decreasing vid codes represent increasing voltages: |
| 262 | * vid of 0 is 1.550V, vid of 0x1e is 0.800V, vid of VID_OFF is off. | 276 | * vid of 0 is 1.550V, vid of 0x1e is 0.800V, vid of VID_OFF is off. |
| 263 | */ | 277 | */ |
| 264 | static int decrease_vid_code_by_step(struct powernow_k8_data *data, u32 reqvid, u32 step) | 278 | static int decrease_vid_code_by_step(struct powernow_k8_data *data, |
| 279 | u32 reqvid, u32 step) | ||
| 265 | { | 280 | { |
| 266 | if ((data->currvid - reqvid) > step) | 281 | if ((data->currvid - reqvid) > step) |
| 267 | reqvid = data->currvid - step; | 282 | reqvid = data->currvid - step; |
| @@ -283,7 +298,8 @@ static int transition_pstate(struct powernow_k8_data *data, u32 pstate) | |||
| 283 | } | 298 | } |
| 284 | 299 | ||
| 285 | /* Change Opteron/Athlon64 fid and vid, by the 3 phases. */ | 300 | /* Change Opteron/Athlon64 fid and vid, by the 3 phases. */ |
| 286 | static int transition_fid_vid(struct powernow_k8_data *data, u32 reqfid, u32 reqvid) | 301 | static int transition_fid_vid(struct powernow_k8_data *data, |
| 302 | u32 reqfid, u32 reqvid) | ||
| 287 | { | 303 | { |
| 288 | if (core_voltage_pre_transition(data, reqvid)) | 304 | if (core_voltage_pre_transition(data, reqvid)) |
| 289 | return 1; | 305 | return 1; |
| @@ -298,7 +314,8 @@ static int transition_fid_vid(struct powernow_k8_data *data, u32 reqfid, u32 req | |||
| 298 | return 1; | 314 | return 1; |
| 299 | 315 | ||
| 300 | if ((reqfid != data->currfid) || (reqvid != data->currvid)) { | 316 | if ((reqfid != data->currfid) || (reqvid != data->currvid)) { |
| 301 | printk(KERN_ERR PFX "failed (cpu%d): req 0x%x 0x%x, curr 0x%x 0x%x\n", | 317 | printk(KERN_ERR PFX "failed (cpu%d): req 0x%x 0x%x, " |
| 318 | "curr 0x%x 0x%x\n", | ||
| 302 | smp_processor_id(), | 319 | smp_processor_id(), |
| 303 | reqfid, reqvid, data->currfid, data->currvid); | 320 | reqfid, reqvid, data->currfid, data->currvid); |
| 304 | return 1; | 321 | return 1; |
| @@ -311,13 +328,15 @@ static int transition_fid_vid(struct powernow_k8_data *data, u32 reqfid, u32 req | |||
| 311 | } | 328 | } |
| 312 | 329 | ||
| 313 | /* Phase 1 - core voltage transition ... setup voltage */ | 330 | /* Phase 1 - core voltage transition ... setup voltage */ |
| 314 | static int core_voltage_pre_transition(struct powernow_k8_data *data, u32 reqvid) | 331 | static int core_voltage_pre_transition(struct powernow_k8_data *data, |
| 332 | u32 reqvid) | ||
| 315 | { | 333 | { |
| 316 | u32 rvosteps = data->rvo; | 334 | u32 rvosteps = data->rvo; |
| 317 | u32 savefid = data->currfid; | 335 | u32 savefid = data->currfid; |
| 318 | u32 maxvid, lo; | 336 | u32 maxvid, lo; |
| 319 | 337 | ||
| 320 | dprintk("ph1 (cpu%d): start, currfid 0x%x, currvid 0x%x, reqvid 0x%x, rvo 0x%x\n", | 338 | dprintk("ph1 (cpu%d): start, currfid 0x%x, currvid 0x%x, " |
| 339 | "reqvid 0x%x, rvo 0x%x\n", | ||
| 321 | smp_processor_id(), | 340 | smp_processor_id(), |
| 322 | data->currfid, data->currvid, reqvid, data->rvo); | 341 | data->currfid, data->currvid, reqvid, data->rvo); |
| 323 | 342 | ||
| @@ -340,7 +359,7 @@ static int core_voltage_pre_transition(struct powernow_k8_data *data, u32 reqvid | |||
| 340 | } else { | 359 | } else { |
| 341 | dprintk("ph1: changing vid for rvo, req 0x%x\n", | 360 | dprintk("ph1: changing vid for rvo, req 0x%x\n", |
| 342 | data->currvid - 1); | 361 | data->currvid - 1); |
| 343 | if (decrease_vid_code_by_step(data, data->currvid - 1, 1)) | 362 | if (decrease_vid_code_by_step(data, data->currvid-1, 1)) |
| 344 | return 1; | 363 | return 1; |
| 345 | rvosteps--; | 364 | rvosteps--; |
| 346 | } | 365 | } |
| @@ -350,7 +369,8 @@ static int core_voltage_pre_transition(struct powernow_k8_data *data, u32 reqvid | |||
| 350 | return 1; | 369 | return 1; |
| 351 | 370 | ||
| 352 | if (savefid != data->currfid) { | 371 | if (savefid != data->currfid) { |
| 353 | printk(KERN_ERR PFX "ph1 err, currfid changed 0x%x\n", data->currfid); | 372 | printk(KERN_ERR PFX "ph1 err, currfid changed 0x%x\n", |
| 373 | data->currfid); | ||
| 354 | return 1; | 374 | return 1; |
| 355 | } | 375 | } |
| 356 | 376 | ||
| @@ -363,20 +383,24 @@ static int core_voltage_pre_transition(struct powernow_k8_data *data, u32 reqvid | |||
| 363 | /* Phase 2 - core frequency transition */ | 383 | /* Phase 2 - core frequency transition */ |
| 364 | static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid) | 384 | static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid) |
| 365 | { | 385 | { |
| 366 | u32 vcoreqfid, vcocurrfid, vcofiddiff, fid_interval, savevid = data->currvid; | 386 | u32 vcoreqfid, vcocurrfid, vcofiddiff; |
| 387 | u32 fid_interval, savevid = data->currvid; | ||
| 367 | 388 | ||
| 368 | if ((reqfid < HI_FID_TABLE_BOTTOM) && (data->currfid < HI_FID_TABLE_BOTTOM)) { | 389 | if ((reqfid < HI_FID_TABLE_BOTTOM) && |
| 369 | printk(KERN_ERR PFX "ph2: illegal lo-lo transition 0x%x 0x%x\n", | 390 | (data->currfid < HI_FID_TABLE_BOTTOM)) { |
| 370 | reqfid, data->currfid); | 391 | printk(KERN_ERR PFX "ph2: illegal lo-lo transition " |
| 392 | "0x%x 0x%x\n", reqfid, data->currfid); | ||
| 371 | return 1; | 393 | return 1; |
| 372 | } | 394 | } |
| 373 | 395 | ||
| 374 | if (data->currfid == reqfid) { | 396 | if (data->currfid == reqfid) { |
| 375 | printk(KERN_ERR PFX "ph2 null fid transition 0x%x\n", data->currfid); | 397 | printk(KERN_ERR PFX "ph2 null fid transition 0x%x\n", |
| 398 | data->currfid); | ||
| 376 | return 0; | 399 | return 0; |
| 377 | } | 400 | } |
| 378 | 401 | ||
| 379 | dprintk("ph2 (cpu%d): starting, currfid 0x%x, currvid 0x%x, reqfid 0x%x\n", | 402 | dprintk("ph2 (cpu%d): starting, currfid 0x%x, currvid 0x%x, " |
| 403 | "reqfid 0x%x\n", | ||
| 380 | smp_processor_id(), | 404 | smp_processor_id(), |
| 381 | data->currfid, data->currvid, reqfid); | 405 | data->currfid, data->currvid, reqfid); |
| 382 | 406 | ||
| @@ -390,14 +414,14 @@ static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid) | |||
| 390 | 414 | ||
| 391 | if (reqfid > data->currfid) { | 415 | if (reqfid > data->currfid) { |
| 392 | if (data->currfid > LO_FID_TABLE_TOP) { | 416 | if (data->currfid > LO_FID_TABLE_TOP) { |
| 393 | if (write_new_fid(data, data->currfid + fid_interval)) { | 417 | if (write_new_fid(data, |
| 418 | data->currfid + fid_interval)) | ||
| 394 | return 1; | 419 | return 1; |
| 395 | } | ||
| 396 | } else { | 420 | } else { |
| 397 | if (write_new_fid | 421 | if (write_new_fid |
| 398 | (data, 2 + convert_fid_to_vco_fid(data->currfid))) { | 422 | (data, |
| 423 | 2 + convert_fid_to_vco_fid(data->currfid))) | ||
| 399 | return 1; | 424 | return 1; |
| 400 | } | ||
| 401 | } | 425 | } |
| 402 | } else { | 426 | } else { |
| 403 | if (write_new_fid(data, data->currfid - fid_interval)) | 427 | if (write_new_fid(data, data->currfid - fid_interval)) |
| @@ -417,7 +441,8 @@ static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid) | |||
| 417 | 441 | ||
| 418 | if (data->currfid != reqfid) { | 442 | if (data->currfid != reqfid) { |
| 419 | printk(KERN_ERR PFX | 443 | printk(KERN_ERR PFX |
| 420 | "ph2: mismatch, failed fid transition, curr 0x%x, req 0x%x\n", | 444 | "ph2: mismatch, failed fid transition, " |
| 445 | "curr 0x%x, req 0x%x\n", | ||
| 421 | data->currfid, reqfid); | 446 | data->currfid, reqfid); |
| 422 | return 1; | 447 | return 1; |
| 423 | } | 448 | } |
| @@ -435,7 +460,8 @@ static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid) | |||
| 435 | } | 460 | } |
| 436 | 461 | ||
| 437 | /* Phase 3 - core voltage transition flow ... jump to the final vid. */ | 462 | /* Phase 3 - core voltage transition flow ... jump to the final vid. */ |
| 438 | static int core_voltage_post_transition(struct powernow_k8_data *data, u32 reqvid) | 463 | static int core_voltage_post_transition(struct powernow_k8_data *data, |
| 464 | u32 reqvid) | ||
| 439 | { | 465 | { |
| 440 | u32 savefid = data->currfid; | 466 | u32 savefid = data->currfid; |
| 441 | u32 savereqvid = reqvid; | 467 | u32 savereqvid = reqvid; |
| @@ -457,7 +483,8 @@ static int core_voltage_post_transition(struct powernow_k8_data *data, u32 reqvi | |||
| 457 | 483 | ||
| 458 | if (data->currvid != reqvid) { | 484 | if (data->currvid != reqvid) { |
| 459 | printk(KERN_ERR PFX | 485 | printk(KERN_ERR PFX |
| 460 | "ph3: failed vid transition\n, req 0x%x, curr 0x%x", | 486 | "ph3: failed vid transition\n, " |
| 487 | "req 0x%x, curr 0x%x", | ||
| 461 | reqvid, data->currvid); | 488 | reqvid, data->currvid); |
| 462 | return 1; | 489 | return 1; |
| 463 | } | 490 | } |
| @@ -508,7 +535,8 @@ static int check_supported_cpu(unsigned int cpu) | |||
| 508 | if ((eax & CPUID_XFAM) == CPUID_XFAM_K8) { | 535 | if ((eax & CPUID_XFAM) == CPUID_XFAM_K8) { |
| 509 | if (((eax & CPUID_USE_XFAM_XMOD) != CPUID_USE_XFAM_XMOD) || | 536 | if (((eax & CPUID_USE_XFAM_XMOD) != CPUID_USE_XFAM_XMOD) || |
| 510 | ((eax & CPUID_XMOD) > CPUID_XMOD_REV_MASK)) { | 537 | ((eax & CPUID_XMOD) > CPUID_XMOD_REV_MASK)) { |
| 511 | printk(KERN_INFO PFX "Processor cpuid %x not supported\n", eax); | 538 | printk(KERN_INFO PFX |
| 539 | "Processor cpuid %x not supported\n", eax); | ||
| 512 | goto out; | 540 | goto out; |
| 513 | } | 541 | } |
| 514 | 542 | ||
| @@ -520,8 +548,10 @@ static int check_supported_cpu(unsigned int cpu) | |||
| 520 | } | 548 | } |
| 521 | 549 | ||
| 522 | cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx); | 550 | cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx); |
| 523 | if ((edx & P_STATE_TRANSITION_CAPABLE) != P_STATE_TRANSITION_CAPABLE) { | 551 | if ((edx & P_STATE_TRANSITION_CAPABLE) |
| 524 | printk(KERN_INFO PFX "Power state transitions not supported\n"); | 552 | != P_STATE_TRANSITION_CAPABLE) { |
| 553 | printk(KERN_INFO PFX | ||
| 554 | "Power state transitions not supported\n"); | ||
| 525 | goto out; | 555 | goto out; |
| 526 | } | 556 | } |
| 527 | } else { /* must be a HW Pstate capable processor */ | 557 | } else { /* must be a HW Pstate capable processor */ |
| @@ -539,7 +569,8 @@ out: | |||
| 539 | return rc; | 569 | return rc; |
| 540 | } | 570 | } |
| 541 | 571 | ||
| 542 | static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst, u8 maxvid) | 572 | static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst, |
| 573 | u8 maxvid) | ||
| 543 | { | 574 | { |
| 544 | unsigned int j; | 575 | unsigned int j; |
| 545 | u8 lastfid = 0xff; | 576 | u8 lastfid = 0xff; |
| @@ -550,12 +581,14 @@ static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst, u8 | |||
| 550 | j, pst[j].vid); | 581 | j, pst[j].vid); |
| 551 | return -EINVAL; | 582 | return -EINVAL; |
| 552 | } | 583 | } |
| 553 | if (pst[j].vid < data->rvo) { /* vid + rvo >= 0 */ | 584 | if (pst[j].vid < data->rvo) { |
| 585 | /* vid + rvo >= 0 */ | ||
| 554 | printk(KERN_ERR FW_BUG PFX "0 vid exceeded with pstate" | 586 | printk(KERN_ERR FW_BUG PFX "0 vid exceeded with pstate" |
| 555 | " %d\n", j); | 587 | " %d\n", j); |
| 556 | return -ENODEV; | 588 | return -ENODEV; |
| 557 | } | 589 | } |
| 558 | if (pst[j].vid < maxvid + data->rvo) { /* vid + rvo >= maxvid */ | 590 | if (pst[j].vid < maxvid + data->rvo) { |
| 591 | /* vid + rvo >= maxvid */ | ||
| 559 | printk(KERN_ERR FW_BUG PFX "maxvid exceeded with pstate" | 592 | printk(KERN_ERR FW_BUG PFX "maxvid exceeded with pstate" |
| 560 | " %d\n", j); | 593 | " %d\n", j); |
| 561 | return -ENODEV; | 594 | return -ENODEV; |
| @@ -579,23 +612,31 @@ static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst, u8 | |||
| 579 | return -EINVAL; | 612 | return -EINVAL; |
| 580 | } | 613 | } |
| 581 | if (lastfid > LO_FID_TABLE_TOP) | 614 | if (lastfid > LO_FID_TABLE_TOP) |
| 582 | printk(KERN_INFO FW_BUG PFX "first fid not from lo freq table\n"); | 615 | printk(KERN_INFO FW_BUG PFX |
| 616 | "first fid not from lo freq table\n"); | ||
| 583 | 617 | ||
| 584 | return 0; | 618 | return 0; |
| 585 | } | 619 | } |
| 586 | 620 | ||
| 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 | |||
| 587 | static void print_basics(struct powernow_k8_data *data) | 626 | static void print_basics(struct powernow_k8_data *data) |
| 588 | { | 627 | { |
| 589 | int j; | 628 | int j; |
| 590 | for (j = 0; j < data->numps; j++) { | 629 | for (j = 0; j < data->numps; j++) { |
| 591 | if (data->powernow_table[j].frequency != CPUFREQ_ENTRY_INVALID) { | 630 | if (data->powernow_table[j].frequency != |
| 631 | CPUFREQ_ENTRY_INVALID) { | ||
| 592 | if (cpu_family == CPU_HW_PSTATE) { | 632 | if (cpu_family == CPU_HW_PSTATE) { |
| 593 | printk(KERN_INFO PFX " %d : pstate %d (%d MHz)\n", | 633 | printk(KERN_INFO PFX |
| 594 | j, | 634 | " %d : pstate %d (%d MHz)\n", j, |
| 595 | data->powernow_table[j].index, | 635 | data->powernow_table[j].index, |
| 596 | data->powernow_table[j].frequency/1000); | 636 | data->powernow_table[j].frequency/1000); |
| 597 | } else { | 637 | } else { |
| 598 | printk(KERN_INFO PFX " %d : fid 0x%x (%d MHz), vid 0x%x\n", | 638 | printk(KERN_INFO PFX |
| 639 | " %d : fid 0x%x (%d MHz), vid 0x%x\n", | ||
| 599 | j, | 640 | j, |
| 600 | data->powernow_table[j].index & 0xff, | 641 | data->powernow_table[j].index & 0xff, |
| 601 | data->powernow_table[j].frequency/1000, | 642 | data->powernow_table[j].frequency/1000, |
| @@ -604,20 +645,25 @@ static void print_basics(struct powernow_k8_data *data) | |||
| 604 | } | 645 | } |
| 605 | } | 646 | } |
| 606 | if (data->batps) | 647 | if (data->batps) |
| 607 | printk(KERN_INFO PFX "Only %d pstates on battery\n", data->batps); | 648 | printk(KERN_INFO PFX "Only %d pstates on battery\n", |
| 649 | data->batps); | ||
| 608 | } | 650 | } |
| 609 | 651 | ||
| 610 | static int fill_powernow_table(struct powernow_k8_data *data, struct pst_s *pst, u8 maxvid) | 652 | static int fill_powernow_table(struct powernow_k8_data *data, |
| 653 | struct pst_s *pst, u8 maxvid) | ||
| 611 | { | 654 | { |
| 612 | struct cpufreq_frequency_table *powernow_table; | 655 | struct cpufreq_frequency_table *powernow_table; |
| 613 | unsigned int j; | 656 | unsigned int j; |
| 614 | 657 | ||
| 615 | if (data->batps) { /* use ACPI support to get full speed on mains power */ | 658 | if (data->batps) { |
| 616 | printk(KERN_WARNING PFX "Only %d pstates usable (use ACPI driver for full range\n", 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); | ||
| 617 | data->numps = data->batps; | 663 | data->numps = data->batps; |
| 618 | } | 664 | } |
| 619 | 665 | ||
| 620 | for ( j=1; j<data->numps; j++ ) { | 666 | for (j = 1; j < data->numps; j++) { |
| 621 | if (pst[j-1].fid >= pst[j].fid) { | 667 | if (pst[j-1].fid >= pst[j].fid) { |
| 622 | printk(KERN_ERR PFX "PST out of sequence\n"); | 668 | printk(KERN_ERR PFX "PST out of sequence\n"); |
| 623 | return -EINVAL; | 669 | return -EINVAL; |
| @@ -640,9 +686,11 @@ static int fill_powernow_table(struct powernow_k8_data *data, struct pst_s *pst, | |||
| 640 | } | 686 | } |
| 641 | 687 | ||
| 642 | for (j = 0; j < data->numps; j++) { | 688 | for (j = 0; j < data->numps; j++) { |
| 689 | int freq; | ||
| 643 | powernow_table[j].index = pst[j].fid; /* lower 8 bits */ | 690 | powernow_table[j].index = pst[j].fid; /* lower 8 bits */ |
| 644 | powernow_table[j].index |= (pst[j].vid << 8); /* upper 8 bits */ | 691 | powernow_table[j].index |= (pst[j].vid << 8); /* upper 8 bits */ |
| 645 | powernow_table[j].frequency = find_khz_freq_from_fid(pst[j].fid); | 692 | freq = find_khz_freq_from_fid(pst[j].fid); |
| 693 | powernow_table[j].frequency = freq; | ||
| 646 | } | 694 | } |
| 647 | powernow_table[data->numps].frequency = CPUFREQ_TABLE_END; | 695 | powernow_table[data->numps].frequency = CPUFREQ_TABLE_END; |
| 648 | powernow_table[data->numps].index = 0; | 696 | powernow_table[data->numps].index = 0; |
| @@ -654,11 +702,12 @@ static int fill_powernow_table(struct powernow_k8_data *data, struct pst_s *pst, | |||
| 654 | 702 | ||
| 655 | dprintk("cfid 0x%x, cvid 0x%x\n", data->currfid, data->currvid); | 703 | dprintk("cfid 0x%x, cvid 0x%x\n", data->currfid, data->currvid); |
| 656 | data->powernow_table = powernow_table; | 704 | data->powernow_table = powernow_table; |
| 657 | if (first_cpu(per_cpu(cpu_core_map, data->cpu)) == data->cpu) | 705 | if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu) |
| 658 | print_basics(data); | 706 | print_basics(data); |
| 659 | 707 | ||
| 660 | for (j = 0; j < data->numps; j++) | 708 | for (j = 0; j < data->numps; j++) |
| 661 | if ((pst[j].fid==data->currfid) && (pst[j].vid==data->currvid)) | 709 | if ((pst[j].fid == data->currfid) && |
| 710 | (pst[j].vid == data->currvid)) | ||
| 662 | return 0; | 711 | return 0; |
| 663 | 712 | ||
| 664 | dprintk("currfid/vid do not match PST, ignoring\n"); | 713 | dprintk("currfid/vid do not match PST, ignoring\n"); |
| @@ -698,7 +747,8 @@ static int find_psb_table(struct powernow_k8_data *data) | |||
| 698 | } | 747 | } |
| 699 | 748 | ||
| 700 | data->vstable = psb->vstable; | 749 | data->vstable = psb->vstable; |
| 701 | dprintk("voltage stabilization time: %d(*20us)\n", data->vstable); | 750 | dprintk("voltage stabilization time: %d(*20us)\n", |
| 751 | data->vstable); | ||
| 702 | 752 | ||
| 703 | dprintk("flags2: 0x%x\n", psb->flags2); | 753 | dprintk("flags2: 0x%x\n", psb->flags2); |
| 704 | data->rvo = psb->flags2 & 3; | 754 | data->rvo = psb->flags2 & 3; |
| @@ -713,11 +763,12 @@ static int find_psb_table(struct powernow_k8_data *data) | |||
| 713 | 763 | ||
| 714 | dprintk("numpst: 0x%x\n", psb->num_tables); | 764 | dprintk("numpst: 0x%x\n", psb->num_tables); |
| 715 | cpst = psb->num_tables; | 765 | cpst = psb->num_tables; |
| 716 | if ((psb->cpuid == 0x00000fc0) || (psb->cpuid == 0x00000fe0) ){ | 766 | if ((psb->cpuid == 0x00000fc0) || |
| 767 | (psb->cpuid == 0x00000fe0)) { | ||
| 717 | thiscpuid = cpuid_eax(CPUID_PROCESSOR_SIGNATURE); | 768 | thiscpuid = cpuid_eax(CPUID_PROCESSOR_SIGNATURE); |
| 718 | if ((thiscpuid == 0x00000fc0) || (thiscpuid == 0x00000fe0) ) { | 769 | if ((thiscpuid == 0x00000fc0) || |
| 770 | (thiscpuid == 0x00000fe0)) | ||
| 719 | cpst = 1; | 771 | cpst = 1; |
| 720 | } | ||
| 721 | } | 772 | } |
| 722 | if (cpst != 1) { | 773 | if (cpst != 1) { |
| 723 | printk(KERN_ERR FW_BUG PFX "numpst must be 1\n"); | 774 | printk(KERN_ERR FW_BUG PFX "numpst must be 1\n"); |
| @@ -732,7 +783,8 @@ static int find_psb_table(struct powernow_k8_data *data) | |||
| 732 | 783 | ||
| 733 | data->numps = psb->numps; | 784 | data->numps = psb->numps; |
| 734 | dprintk("numpstates: 0x%x\n", data->numps); | 785 | dprintk("numpstates: 0x%x\n", data->numps); |
| 735 | return fill_powernow_table(data, (struct pst_s *)(psb+1), maxvid); | 786 | return fill_powernow_table(data, |
| 787 | (struct pst_s *)(psb+1), maxvid); | ||
| 736 | } | 788 | } |
| 737 | /* | 789 | /* |
| 738 | * If you see this message, complain to BIOS manufacturer. If | 790 | * If you see this message, complain to BIOS manufacturer. If |
| @@ -745,28 +797,31 @@ static int find_psb_table(struct powernow_k8_data *data) | |||
| 745 | * BIOS and Kernel Developer's Guide, which is available on | 797 | * BIOS and Kernel Developer's Guide, which is available on |
| 746 | * www.amd.com | 798 | * www.amd.com |
| 747 | */ | 799 | */ |
| 748 | printk(KERN_ERR PFX "BIOS error - no PSB or ACPI _PSS objects\n"); | 800 | printk(KERN_ERR FW_BUG PFX "No PSB or ACPI _PSS objects\n"); |
| 749 | return -ENODEV; | 801 | return -ENODEV; |
| 750 | } | 802 | } |
| 751 | 803 | ||
| 752 | #ifdef CONFIG_X86_POWERNOW_K8_ACPI | 804 | static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data, |
| 753 | static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data, unsigned int index) | 805 | unsigned int index) |
| 754 | { | 806 | { |
| 807 | acpi_integer control; | ||
| 808 | |||
| 755 | if (!data->acpi_data.state_count || (cpu_family == CPU_HW_PSTATE)) | 809 | if (!data->acpi_data.state_count || (cpu_family == CPU_HW_PSTATE)) |
| 756 | return; | 810 | return; |
| 757 | 811 | ||
| 758 | data->irt = (data->acpi_data.states[index].control >> IRT_SHIFT) & IRT_MASK; | 812 | control = data->acpi_data.states[index].control; data->irt = (control |
| 759 | data->rvo = (data->acpi_data.states[index].control >> RVO_SHIFT) & RVO_MASK; | 813 | >> IRT_SHIFT) & IRT_MASK; data->rvo = (control >> |
| 760 | data->exttype = (data->acpi_data.states[index].control >> EXT_TYPE_SHIFT) & EXT_TYPE_MASK; | 814 | RVO_SHIFT) & RVO_MASK; data->exttype = (control |
| 761 | data->plllock = (data->acpi_data.states[index].control >> PLL_L_SHIFT) & PLL_L_MASK; | 815 | >> EXT_TYPE_SHIFT) & EXT_TYPE_MASK; |
| 762 | data->vidmvs = 1 << ((data->acpi_data.states[index].control >> MVS_SHIFT) & MVS_MASK); | 816 | data->plllock = (control >> PLL_L_SHIFT) & PLL_L_MASK; data->vidmvs = 1 |
| 763 | data->vstable = (data->acpi_data.states[index].control >> VST_SHIFT) & VST_MASK; | 817 | << ((control >> MVS_SHIFT) & MVS_MASK); data->vstable = |
| 764 | } | 818 | (control >> VST_SHIFT) & VST_MASK; } |
| 765 | 819 | ||
| 766 | static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data) | 820 | static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data) |
| 767 | { | 821 | { |
| 768 | struct cpufreq_frequency_table *powernow_table; | 822 | struct cpufreq_frequency_table *powernow_table; |
| 769 | int ret_val = -ENODEV; | 823 | int ret_val = -ENODEV; |
| 824 | acpi_integer space_id; | ||
| 770 | 825 | ||
| 771 | if (acpi_processor_register_performance(&data->acpi_data, data->cpu)) { | 826 | if (acpi_processor_register_performance(&data->acpi_data, data->cpu)) { |
| 772 | dprintk("register performance failed: bad ACPI data\n"); | 827 | dprintk("register performance failed: bad ACPI data\n"); |
| @@ -779,11 +834,12 @@ static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data) | |||
| 779 | goto err_out; | 834 | goto err_out; |
| 780 | } | 835 | } |
| 781 | 836 | ||
| 782 | if ((data->acpi_data.control_register.space_id != ACPI_ADR_SPACE_FIXED_HARDWARE) || | 837 | space_id = data->acpi_data.control_register.space_id; |
| 783 | (data->acpi_data.status_register.space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) { | 838 | if ((space_id != ACPI_ADR_SPACE_FIXED_HARDWARE) || |
| 839 | (space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) { | ||
| 784 | dprintk("Invalid control/status registers (%x - %x)\n", | 840 | dprintk("Invalid control/status registers (%x - %x)\n", |
| 785 | data->acpi_data.control_register.space_id, | 841 | data->acpi_data.control_register.space_id, |
| 786 | data->acpi_data.status_register.space_id); | 842 | space_id); |
| 787 | goto err_out; | 843 | goto err_out; |
| 788 | } | 844 | } |
| 789 | 845 | ||
| @@ -802,13 +858,14 @@ static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data) | |||
| 802 | if (ret_val) | 858 | if (ret_val) |
| 803 | goto err_out_mem; | 859 | goto err_out_mem; |
| 804 | 860 | ||
| 805 | powernow_table[data->acpi_data.state_count].frequency = CPUFREQ_TABLE_END; | 861 | powernow_table[data->acpi_data.state_count].frequency = |
| 862 | CPUFREQ_TABLE_END; | ||
| 806 | powernow_table[data->acpi_data.state_count].index = 0; | 863 | powernow_table[data->acpi_data.state_count].index = 0; |
| 807 | data->powernow_table = powernow_table; | 864 | data->powernow_table = powernow_table; |
| 808 | 865 | ||
| 809 | /* fill in data */ | 866 | /* fill in data */ |
| 810 | data->numps = data->acpi_data.state_count; | 867 | data->numps = data->acpi_data.state_count; |
| 811 | if (first_cpu(per_cpu(cpu_core_map, data->cpu)) == data->cpu) | 868 | if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu) |
| 812 | print_basics(data); | 869 | print_basics(data); |
| 813 | powernow_k8_acpi_pst_values(data, 0); | 870 | powernow_k8_acpi_pst_values(data, 0); |
| 814 | 871 | ||
| @@ -830,13 +887,15 @@ err_out_mem: | |||
| 830 | err_out: | 887 | err_out: |
| 831 | acpi_processor_unregister_performance(&data->acpi_data, data->cpu); | 888 | acpi_processor_unregister_performance(&data->acpi_data, data->cpu); |
| 832 | 889 | ||
| 833 | /* data->acpi_data.state_count informs us at ->exit() whether ACPI was used */ | 890 | /* data->acpi_data.state_count informs us at ->exit() |
| 891 | * whether ACPI was used */ | ||
| 834 | data->acpi_data.state_count = 0; | 892 | data->acpi_data.state_count = 0; |
| 835 | 893 | ||
| 836 | return ret_val; | 894 | return ret_val; |
| 837 | } | 895 | } |
| 838 | 896 | ||
| 839 | static int fill_powernow_table_pstate(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table) | 897 | static int fill_powernow_table_pstate(struct powernow_k8_data *data, |
| 898 | struct cpufreq_frequency_table *powernow_table) | ||
| 840 | { | 899 | { |
| 841 | int i; | 900 | int i; |
| 842 | u32 hi = 0, lo = 0; | 901 | u32 hi = 0, lo = 0; |
| @@ -848,84 +907,101 @@ static int fill_powernow_table_pstate(struct powernow_k8_data *data, struct cpuf | |||
| 848 | 907 | ||
| 849 | index = data->acpi_data.states[i].control & HW_PSTATE_MASK; | 908 | index = data->acpi_data.states[i].control & HW_PSTATE_MASK; |
| 850 | if (index > data->max_hw_pstate) { | 909 | if (index > data->max_hw_pstate) { |
| 851 | printk(KERN_ERR PFX "invalid pstate %d - bad value %d.\n", i, index); | 910 | printk(KERN_ERR PFX "invalid pstate %d - " |
| 852 | printk(KERN_ERR PFX "Please report to BIOS manufacturer\n"); | 911 | "bad value %d.\n", i, index); |
| 853 | powernow_table[i].frequency = CPUFREQ_ENTRY_INVALID; | 912 | printk(KERN_ERR PFX "Please report to BIOS " |
| 913 | "manufacturer\n"); | ||
| 914 | invalidate_entry(data, i); | ||
| 854 | continue; | 915 | continue; |
| 855 | } | 916 | } |
| 856 | rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi); | 917 | rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi); |
| 857 | if (!(hi & HW_PSTATE_VALID_MASK)) { | 918 | if (!(hi & HW_PSTATE_VALID_MASK)) { |
| 858 | dprintk("invalid pstate %d, ignoring\n", index); | 919 | dprintk("invalid pstate %d, ignoring\n", index); |
| 859 | powernow_table[i].frequency = CPUFREQ_ENTRY_INVALID; | 920 | invalidate_entry(data, i); |
| 860 | continue; | 921 | continue; |
| 861 | } | 922 | } |
| 862 | 923 | ||
| 863 | powernow_table[i].index = index; | 924 | powernow_table[i].index = index; |
| 864 | 925 | ||
| 865 | powernow_table[i].frequency = data->acpi_data.states[i].core_frequency * 1000; | 926 | powernow_table[i].frequency = |
| 927 | data->acpi_data.states[i].core_frequency * 1000; | ||
| 866 | } | 928 | } |
| 867 | return 0; | 929 | return 0; |
| 868 | } | 930 | } |
| 869 | 931 | ||
| 870 | static int fill_powernow_table_fidvid(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table) | 932 | static int fill_powernow_table_fidvid(struct powernow_k8_data *data, |
| 933 | struct cpufreq_frequency_table *powernow_table) | ||
| 871 | { | 934 | { |
| 872 | int i; | 935 | int i; |
| 873 | int cntlofreq = 0; | 936 | int cntlofreq = 0; |
| 937 | |||
| 874 | for (i = 0; i < data->acpi_data.state_count; i++) { | 938 | for (i = 0; i < data->acpi_data.state_count; i++) { |
| 875 | u32 fid; | 939 | u32 fid; |
| 876 | u32 vid; | 940 | u32 vid; |
| 941 | u32 freq, index; | ||
| 942 | acpi_integer status, control; | ||
| 877 | 943 | ||
| 878 | if (data->exttype) { | 944 | if (data->exttype) { |
| 879 | fid = data->acpi_data.states[i].status & EXT_FID_MASK; | 945 | status = data->acpi_data.states[i].status; |
| 880 | vid = (data->acpi_data.states[i].status >> VID_SHIFT) & EXT_VID_MASK; | 946 | fid = status & EXT_FID_MASK; |
| 947 | vid = (status >> VID_SHIFT) & EXT_VID_MASK; | ||
| 881 | } else { | 948 | } else { |
| 882 | fid = data->acpi_data.states[i].control & FID_MASK; | 949 | control = data->acpi_data.states[i].control; |
| 883 | vid = (data->acpi_data.states[i].control >> VID_SHIFT) & VID_MASK; | 950 | fid = control & FID_MASK; |
| 951 | vid = (control >> VID_SHIFT) & VID_MASK; | ||
| 884 | } | 952 | } |
| 885 | 953 | ||
| 886 | dprintk(" %d : fid 0x%x, vid 0x%x\n", i, fid, vid); | 954 | dprintk(" %d : fid 0x%x, vid 0x%x\n", i, fid, vid); |
| 887 | 955 | ||
| 888 | powernow_table[i].index = fid; /* lower 8 bits */ | 956 | index = fid | (vid<<8); |
| 889 | powernow_table[i].index |= (vid << 8); /* upper 8 bits */ | 957 | powernow_table[i].index = index; |
| 890 | powernow_table[i].frequency = find_khz_freq_from_fid(fid); | 958 | |
| 959 | freq = find_khz_freq_from_fid(fid); | ||
| 960 | powernow_table[i].frequency = freq; | ||
| 891 | 961 | ||
| 892 | /* verify frequency is OK */ | 962 | /* verify frequency is OK */ |
| 893 | if ((powernow_table[i].frequency > (MAX_FREQ * 1000)) || | 963 | if ((freq > (MAX_FREQ * 1000)) || (freq < (MIN_FREQ * 1000))) { |
| 894 | (powernow_table[i].frequency < (MIN_FREQ * 1000))) { | 964 | dprintk("invalid freq %u kHz, ignoring\n", freq); |
| 895 | dprintk("invalid freq %u kHz, ignoring\n", powernow_table[i].frequency); | 965 | invalidate_entry(data, i); |
| 896 | powernow_table[i].frequency = CPUFREQ_ENTRY_INVALID; | ||
| 897 | continue; | 966 | continue; |
| 898 | } | 967 | } |
| 899 | 968 | ||
| 900 | /* verify voltage is OK - BIOSs are using "off" to indicate invalid */ | 969 | /* verify voltage is OK - |
| 970 | * BIOSs are using "off" to indicate invalid */ | ||
| 901 | if (vid == VID_OFF) { | 971 | if (vid == VID_OFF) { |
| 902 | dprintk("invalid vid %u, ignoring\n", vid); | 972 | dprintk("invalid vid %u, ignoring\n", vid); |
| 903 | powernow_table[i].frequency = CPUFREQ_ENTRY_INVALID; | 973 | invalidate_entry(data, i); |
| 904 | continue; | 974 | continue; |
| 905 | } | 975 | } |
| 906 | 976 | ||
| 907 | /* verify only 1 entry from the lo frequency table */ | 977 | /* verify only 1 entry from the lo frequency table */ |
| 908 | if (fid < HI_FID_TABLE_BOTTOM) { | 978 | if (fid < HI_FID_TABLE_BOTTOM) { |
| 909 | if (cntlofreq) { | 979 | if (cntlofreq) { |
| 910 | /* if both entries are the same, ignore this one ... */ | 980 | /* if both entries are the same, |
| 911 | if ((powernow_table[i].frequency != powernow_table[cntlofreq].frequency) || | 981 | * ignore this one ... */ |
| 912 | (powernow_table[i].index != powernow_table[cntlofreq].index)) { | 982 | if ((freq != powernow_table[cntlofreq].frequency) || |
| 913 | printk(KERN_ERR PFX "Too many lo freq table entries\n"); | 983 | (index != powernow_table[cntlofreq].index)) { |
| 984 | printk(KERN_ERR PFX | ||
| 985 | "Too many lo freq table " | ||
| 986 | "entries\n"); | ||
| 914 | return 1; | 987 | return 1; |
| 915 | } | 988 | } |
| 916 | 989 | ||
| 917 | dprintk("double low frequency table entry, ignoring it.\n"); | 990 | dprintk("double low frequency table entry, " |
| 918 | powernow_table[i].frequency = CPUFREQ_ENTRY_INVALID; | 991 | "ignoring it.\n"); |
| 992 | invalidate_entry(data, i); | ||
| 919 | continue; | 993 | continue; |
| 920 | } else | 994 | } else |
| 921 | cntlofreq = i; | 995 | cntlofreq = i; |
| 922 | } | 996 | } |
| 923 | 997 | ||
| 924 | if (powernow_table[i].frequency != (data->acpi_data.states[i].core_frequency * 1000)) { | 998 | if (freq != (data->acpi_data.states[i].core_frequency * 1000)) { |
| 925 | printk(KERN_INFO PFX "invalid freq entries %u kHz vs. %u kHz\n", | 999 | printk(KERN_INFO PFX "invalid freq entries " |
| 926 | powernow_table[i].frequency, | 1000 | "%u kHz vs. %u kHz\n", freq, |
| 927 | (unsigned int) (data->acpi_data.states[i].core_frequency * 1000)); | 1001 | (unsigned int) |
| 928 | powernow_table[i].frequency = CPUFREQ_ENTRY_INVALID; | 1002 | (data->acpi_data.states[i].core_frequency |
| 1003 | * 1000)); | ||
| 1004 | invalidate_entry(data, i); | ||
| 929 | continue; | 1005 | continue; |
| 930 | } | 1006 | } |
| 931 | } | 1007 | } |
| @@ -935,7 +1011,8 @@ static int fill_powernow_table_fidvid(struct powernow_k8_data *data, struct cpuf | |||
| 935 | static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data) | 1011 | static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data) |
| 936 | { | 1012 | { |
| 937 | if (data->acpi_data.state_count) | 1013 | if (data->acpi_data.state_count) |
| 938 | acpi_processor_unregister_performance(&data->acpi_data, data->cpu); | 1014 | acpi_processor_unregister_performance(&data->acpi_data, |
| 1015 | data->cpu); | ||
| 939 | free_cpumask_var(data->acpi_data.shared_cpu_map); | 1016 | free_cpumask_var(data->acpi_data.shared_cpu_map); |
| 940 | } | 1017 | } |
| 941 | 1018 | ||
| @@ -953,15 +1030,9 @@ static int get_transition_latency(struct powernow_k8_data *data) | |||
| 953 | return 1000 * max_latency; | 1030 | return 1000 * max_latency; |
| 954 | } | 1031 | } |
| 955 | 1032 | ||
| 956 | #else | ||
| 957 | static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data) { return -ENODEV; } | ||
| 958 | static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data) { return; } | ||
| 959 | static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data, unsigned int index) { return; } | ||
| 960 | static int get_transition_latency(struct powernow_k8_data *data) { return 0; } | ||
| 961 | #endif /* CONFIG_X86_POWERNOW_K8_ACPI */ | ||
| 962 | |||
| 963 | /* Take a frequency, and issue the fid/vid transition command */ | 1033 | /* Take a frequency, and issue the fid/vid transition command */ |
| 964 | static int transition_frequency_fidvid(struct powernow_k8_data *data, unsigned int index) | 1034 | static int transition_frequency_fidvid(struct powernow_k8_data *data, |
| 1035 | unsigned int index) | ||
| 965 | { | 1036 | { |
| 966 | u32 fid = 0; | 1037 | u32 fid = 0; |
| 967 | u32 vid = 0; | 1038 | u32 vid = 0; |
| @@ -989,7 +1060,8 @@ static int transition_frequency_fidvid(struct powernow_k8_data *data, unsigned i | |||
| 989 | return 0; | 1060 | return 0; |
| 990 | } | 1061 | } |
| 991 | 1062 | ||
| 992 | if ((fid < HI_FID_TABLE_BOTTOM) && (data->currfid < HI_FID_TABLE_BOTTOM)) { | 1063 | if ((fid < HI_FID_TABLE_BOTTOM) && |
| 1064 | (data->currfid < HI_FID_TABLE_BOTTOM)) { | ||
| 993 | printk(KERN_ERR PFX | 1065 | printk(KERN_ERR PFX |
| 994 | "ignoring illegal change in lo freq table-%x to 0x%x\n", | 1066 | "ignoring illegal change in lo freq table-%x to 0x%x\n", |
| 995 | data->currfid, fid); | 1067 | data->currfid, fid); |
| @@ -1017,7 +1089,8 @@ static int transition_frequency_fidvid(struct powernow_k8_data *data, unsigned i | |||
| 1017 | } | 1089 | } |
| 1018 | 1090 | ||
| 1019 | /* Take a frequency, and issue the hardware pstate transition command */ | 1091 | /* Take a frequency, and issue the hardware pstate transition command */ |
| 1020 | static int transition_frequency_pstate(struct powernow_k8_data *data, unsigned int index) | 1092 | static int transition_frequency_pstate(struct powernow_k8_data *data, |
| 1093 | unsigned int index) | ||
| 1021 | { | 1094 | { |
| 1022 | u32 pstate = 0; | 1095 | u32 pstate = 0; |
| 1023 | int res, i; | 1096 | int res, i; |
| @@ -1029,7 +1102,8 @@ static int transition_frequency_pstate(struct powernow_k8_data *data, unsigned i | |||
| 1029 | pstate = index & HW_PSTATE_MASK; | 1102 | pstate = index & HW_PSTATE_MASK; |
| 1030 | if (pstate > data->max_hw_pstate) | 1103 | if (pstate > data->max_hw_pstate) |
| 1031 | return 0; | 1104 | return 0; |
| 1032 | freqs.old = find_khz_freq_from_pstate(data->powernow_table, data->currpstate); | 1105 | freqs.old = find_khz_freq_from_pstate(data->powernow_table, |
| 1106 | data->currpstate); | ||
| 1033 | freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate); | 1107 | freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate); |
| 1034 | 1108 | ||
| 1035 | for_each_cpu_mask_nr(i, *(data->available_cores)) { | 1109 | for_each_cpu_mask_nr(i, *(data->available_cores)) { |
| @@ -1048,7 +1122,8 @@ static int transition_frequency_pstate(struct powernow_k8_data *data, unsigned i | |||
| 1048 | } | 1122 | } |
| 1049 | 1123 | ||
| 1050 | /* Driver entry point to switch to the target frequency */ | 1124 | /* Driver entry point to switch to the target frequency */ |
| 1051 | static int powernowk8_target(struct cpufreq_policy *pol, unsigned targfreq, unsigned relation) | 1125 | static int powernowk8_target(struct cpufreq_policy *pol, |
| 1126 | unsigned targfreq, unsigned relation) | ||
| 1052 | { | 1127 | { |
| 1053 | cpumask_t oldmask; | 1128 | cpumask_t oldmask; |
| 1054 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); | 1129 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); |
| @@ -1087,14 +1162,18 @@ static int powernowk8_target(struct cpufreq_policy *pol, unsigned targfreq, unsi | |||
| 1087 | dprintk("targ: curr fid 0x%x, vid 0x%x\n", | 1162 | dprintk("targ: curr fid 0x%x, vid 0x%x\n", |
| 1088 | data->currfid, data->currvid); | 1163 | data->currfid, data->currvid); |
| 1089 | 1164 | ||
| 1090 | if ((checkvid != data->currvid) || (checkfid != data->currfid)) { | 1165 | if ((checkvid != data->currvid) || |
| 1166 | (checkfid != data->currfid)) { | ||
| 1091 | printk(KERN_INFO PFX | 1167 | printk(KERN_INFO PFX |
| 1092 | "error - out of sync, fix 0x%x 0x%x, vid 0x%x 0x%x\n", | 1168 | "error - out of sync, fix 0x%x 0x%x, " |
| 1093 | checkfid, data->currfid, checkvid, data->currvid); | 1169 | "vid 0x%x 0x%x\n", |
| 1170 | checkfid, data->currfid, | ||
| 1171 | checkvid, data->currvid); | ||
| 1094 | } | 1172 | } |
| 1095 | } | 1173 | } |
| 1096 | 1174 | ||
| 1097 | if (cpufreq_frequency_table_target(pol, data->powernow_table, targfreq, relation, &newstate)) | 1175 | if (cpufreq_frequency_table_target(pol, data->powernow_table, |
| 1176 | targfreq, relation, &newstate)) | ||
| 1098 | goto err_out; | 1177 | goto err_out; |
| 1099 | 1178 | ||
| 1100 | mutex_lock(&fidvid_mutex); | 1179 | mutex_lock(&fidvid_mutex); |
| @@ -1114,7 +1193,8 @@ static int powernowk8_target(struct cpufreq_policy *pol, unsigned targfreq, unsi | |||
| 1114 | mutex_unlock(&fidvid_mutex); | 1193 | mutex_unlock(&fidvid_mutex); |
| 1115 | 1194 | ||
| 1116 | if (cpu_family == CPU_HW_PSTATE) | 1195 | if (cpu_family == CPU_HW_PSTATE) |
| 1117 | pol->cur = find_khz_freq_from_pstate(data->powernow_table, newstate); | 1196 | pol->cur = find_khz_freq_from_pstate(data->powernow_table, |
| 1197 | newstate); | ||
| 1118 | else | 1198 | else |
| 1119 | pol->cur = find_khz_freq_from_fid(data->currfid); | 1199 | pol->cur = find_khz_freq_from_fid(data->currfid); |
| 1120 | ret = 0; | 1200 | ret = 0; |
| @@ -1141,6 +1221,7 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1141 | struct powernow_k8_data *data; | 1221 | struct powernow_k8_data *data; |
| 1142 | cpumask_t oldmask; | 1222 | cpumask_t oldmask; |
| 1143 | int rc; | 1223 | int rc; |
| 1224 | static int print_once; | ||
| 1144 | 1225 | ||
| 1145 | if (!cpu_online(pol->cpu)) | 1226 | if (!cpu_online(pol->cpu)) |
| 1146 | return -ENODEV; | 1227 | return -ENODEV; |
| @@ -1163,33 +1244,31 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1163 | * an UP version, and is deprecated by AMD. | 1244 | * an UP version, and is deprecated by AMD. |
| 1164 | */ | 1245 | */ |
| 1165 | if (num_online_cpus() != 1) { | 1246 | if (num_online_cpus() != 1) { |
| 1166 | #ifndef CONFIG_ACPI_PROCESSOR | 1247 | /* |
| 1167 | printk(KERN_ERR PFX "ACPI Processor support is required " | 1248 | * Replace this one with print_once as soon as such a |
| 1168 | "for SMP systems but is absent. Please load the " | 1249 | * thing gets introduced |
| 1169 | "ACPI Processor module before starting this " | 1250 | */ |
| 1170 | "driver.\n"); | 1251 | if (!print_once) { |
| 1171 | #else | 1252 | WARN_ONCE(1, KERN_ERR FW_BUG PFX "Your BIOS " |
| 1172 | printk(KERN_ERR FW_BUG PFX "Your BIOS does not provide" | 1253 | "does not provide ACPI _PSS objects " |
| 1173 | " ACPI _PSS objects in a way that Linux " | 1254 | "in a way that Linux understands. " |
| 1174 | "understands. Please report this to the Linux " | 1255 | "Please report this to the Linux ACPI" |
| 1175 | "ACPI maintainers and complain to your BIOS " | 1256 | " maintainers and complain to your " |
| 1176 | "vendor.\n"); | 1257 | "BIOS vendor.\n"); |
| 1177 | #endif | 1258 | print_once++; |
| 1178 | kfree(data); | 1259 | } |
| 1179 | return -ENODEV; | 1260 | goto err_out; |
| 1180 | } | 1261 | } |
| 1181 | if (pol->cpu != 0) { | 1262 | if (pol->cpu != 0) { |
| 1182 | printk(KERN_ERR FW_BUG PFX "No ACPI _PSS objects for " | 1263 | printk(KERN_ERR FW_BUG PFX "No ACPI _PSS objects for " |
| 1183 | "CPU other than CPU0. Complain to your BIOS " | 1264 | "CPU other than CPU0. Complain to your BIOS " |
| 1184 | "vendor.\n"); | 1265 | "vendor.\n"); |
| 1185 | kfree(data); | 1266 | goto err_out; |
| 1186 | return -ENODEV; | ||
| 1187 | } | 1267 | } |
| 1188 | rc = find_psb_table(data); | 1268 | rc = find_psb_table(data); |
| 1189 | if (rc) { | 1269 | if (rc) |
| 1190 | kfree(data); | 1270 | goto err_out; |
| 1191 | return -ENODEV; | 1271 | |
| 1192 | } | ||
| 1193 | /* Take a crude guess here. | 1272 | /* Take a crude guess here. |
| 1194 | * That guess was in microseconds, so multiply with 1000 */ | 1273 | * That guess was in microseconds, so multiply with 1000 */ |
| 1195 | pol->cpuinfo.transition_latency = ( | 1274 | pol->cpuinfo.transition_latency = ( |
| @@ -1204,16 +1283,16 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1204 | 1283 | ||
| 1205 | if (smp_processor_id() != pol->cpu) { | 1284 | if (smp_processor_id() != pol->cpu) { |
| 1206 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu); | 1285 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu); |
| 1207 | goto err_out; | 1286 | goto err_out_unmask; |
| 1208 | } | 1287 | } |
| 1209 | 1288 | ||
| 1210 | if (pending_bit_stuck()) { | 1289 | if (pending_bit_stuck()) { |
| 1211 | printk(KERN_ERR PFX "failing init, change pending bit set\n"); | 1290 | printk(KERN_ERR PFX "failing init, change pending bit set\n"); |
| 1212 | goto err_out; | 1291 | goto err_out_unmask; |
| 1213 | } | 1292 | } |
| 1214 | 1293 | ||
| 1215 | if (query_current_values_with_pending_wait(data)) | 1294 | if (query_current_values_with_pending_wait(data)) |
| 1216 | goto err_out; | 1295 | goto err_out_unmask; |
| 1217 | 1296 | ||
| 1218 | if (cpu_family == CPU_OPTERON) | 1297 | if (cpu_family == CPU_OPTERON) |
| 1219 | fidvid_msr_init(); | 1298 | fidvid_msr_init(); |
| @@ -1224,11 +1303,12 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1224 | if (cpu_family == CPU_HW_PSTATE) | 1303 | if (cpu_family == CPU_HW_PSTATE) |
| 1225 | cpumask_copy(pol->cpus, cpumask_of(pol->cpu)); | 1304 | cpumask_copy(pol->cpus, cpumask_of(pol->cpu)); |
| 1226 | else | 1305 | else |
| 1227 | cpumask_copy(pol->cpus, &per_cpu(cpu_core_map, pol->cpu)); | 1306 | cpumask_copy(pol->cpus, cpu_core_mask(pol->cpu)); |
| 1228 | data->available_cores = pol->cpus; | 1307 | data->available_cores = pol->cpus; |
| 1229 | 1308 | ||
| 1230 | if (cpu_family == CPU_HW_PSTATE) | 1309 | if (cpu_family == CPU_HW_PSTATE) |
| 1231 | pol->cur = find_khz_freq_from_pstate(data->powernow_table, data->currpstate); | 1310 | pol->cur = find_khz_freq_from_pstate(data->powernow_table, |
| 1311 | data->currpstate); | ||
| 1232 | else | 1312 | else |
| 1233 | pol->cur = find_khz_freq_from_fid(data->currfid); | 1313 | pol->cur = find_khz_freq_from_fid(data->currfid); |
| 1234 | dprintk("policy current frequency %d kHz\n", pol->cur); | 1314 | dprintk("policy current frequency %d kHz\n", pol->cur); |
| @@ -1245,7 +1325,8 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1245 | cpufreq_frequency_table_get_attr(data->powernow_table, pol->cpu); | 1325 | cpufreq_frequency_table_get_attr(data->powernow_table, pol->cpu); |
| 1246 | 1326 | ||
| 1247 | if (cpu_family == CPU_HW_PSTATE) | 1327 | if (cpu_family == CPU_HW_PSTATE) |
| 1248 | dprintk("cpu_init done, current pstate 0x%x\n", data->currpstate); | 1328 | dprintk("cpu_init done, current pstate 0x%x\n", |
| 1329 | data->currpstate); | ||
| 1249 | else | 1330 | else |
| 1250 | dprintk("cpu_init done, current fid 0x%x, vid 0x%x\n", | 1331 | dprintk("cpu_init done, current fid 0x%x, vid 0x%x\n", |
| 1251 | data->currfid, data->currvid); | 1332 | data->currfid, data->currvid); |
| @@ -1254,15 +1335,16 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1254 | 1335 | ||
| 1255 | return 0; | 1336 | return 0; |
| 1256 | 1337 | ||
| 1257 | err_out: | 1338 | err_out_unmask: |
| 1258 | set_cpus_allowed_ptr(current, &oldmask); | 1339 | set_cpus_allowed_ptr(current, &oldmask); |
| 1259 | powernow_k8_cpu_exit_acpi(data); | 1340 | powernow_k8_cpu_exit_acpi(data); |
| 1260 | 1341 | ||
| 1342 | err_out: | ||
| 1261 | kfree(data); | 1343 | kfree(data); |
| 1262 | return -ENODEV; | 1344 | return -ENODEV; |
| 1263 | } | 1345 | } |
| 1264 | 1346 | ||
| 1265 | static int __devexit powernowk8_cpu_exit (struct cpufreq_policy *pol) | 1347 | static int __devexit powernowk8_cpu_exit(struct cpufreq_policy *pol) |
| 1266 | { | 1348 | { |
| 1267 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); | 1349 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); |
| 1268 | 1350 | ||
| @@ -1279,14 +1361,14 @@ static int __devexit powernowk8_cpu_exit (struct cpufreq_policy *pol) | |||
| 1279 | return 0; | 1361 | return 0; |
| 1280 | } | 1362 | } |
| 1281 | 1363 | ||
| 1282 | static unsigned int powernowk8_get (unsigned int cpu) | 1364 | static unsigned int powernowk8_get(unsigned int cpu) |
| 1283 | { | 1365 | { |
| 1284 | struct powernow_k8_data *data; | 1366 | struct powernow_k8_data *data; |
| 1285 | cpumask_t oldmask = current->cpus_allowed; | 1367 | cpumask_t oldmask = current->cpus_allowed; |
| 1286 | unsigned int khz = 0; | 1368 | unsigned int khz = 0; |
| 1287 | unsigned int first; | 1369 | unsigned int first; |
| 1288 | 1370 | ||
| 1289 | first = first_cpu(per_cpu(cpu_core_map, cpu)); | 1371 | first = cpumask_first(cpu_core_mask(cpu)); |
| 1290 | data = per_cpu(powernow_data, first); | 1372 | data = per_cpu(powernow_data, first); |
| 1291 | 1373 | ||
| 1292 | if (!data) | 1374 | if (!data) |
| @@ -1315,7 +1397,7 @@ out: | |||
| 1315 | return khz; | 1397 | return khz; |
| 1316 | } | 1398 | } |
| 1317 | 1399 | ||
| 1318 | static struct freq_attr* powernow_k8_attr[] = { | 1400 | static struct freq_attr *powernow_k8_attr[] = { |
| 1319 | &cpufreq_freq_attr_scaling_available_freqs, | 1401 | &cpufreq_freq_attr_scaling_available_freqs, |
| 1320 | NULL, | 1402 | NULL, |
| 1321 | }; | 1403 | }; |
| @@ -1360,7 +1442,8 @@ static void __exit powernowk8_exit(void) | |||
| 1360 | cpufreq_unregister_driver(&cpufreq_amd64_driver); | 1442 | cpufreq_unregister_driver(&cpufreq_amd64_driver); |
| 1361 | } | 1443 | } |
| 1362 | 1444 | ||
| 1363 | MODULE_AUTHOR("Paul Devriendt <paul.devriendt@amd.com> and Mark Langsdorf <mark.langsdorf@amd.com>"); | 1445 | MODULE_AUTHOR("Paul Devriendt <paul.devriendt@amd.com> and " |
| 1446 | "Mark Langsdorf <mark.langsdorf@amd.com>"); | ||
| 1364 | MODULE_DESCRIPTION("AMD Athlon 64 and Opteron processor frequency driver."); | 1447 | MODULE_DESCRIPTION("AMD Athlon 64 and Opteron processor frequency driver."); |
| 1365 | MODULE_LICENSE("GPL"); | 1448 | MODULE_LICENSE("GPL"); |
| 1366 | 1449 | ||
