2 * AMD K7 Powernow driver.
3 * (C) 2003 Dave Jones <davej@codemonkey.org.uk> on behalf of SuSE Labs.
4 * (C) 2003-2004 Dave Jones <davej@redhat.com>
6 * Licensed under the terms of the GNU GPL License version 2.
7 * Based upon datasheets & sample CPUs kindly provided by AMD.
9 * Errata 5: Processor may fail to execute a FID/VID change in presence of interrupt.
10 * - We cli/sti on stepping A0 CPUs around the FID/VID transition.
11 * Errata 15: Processors with half frequency multipliers may hang upon wakeup from disconnect.
12 * - We disable half multipliers if ACPI is used on A0 stepping CPUs.
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/moduleparam.h>
18 #include <linux/init.h>
19 #include <linux/cpufreq.h>
20 #include <linux/slab.h>
21 #include <linux/string.h>
22 #include <linux/dmi.h>
25 #include <asm/timer.h>
26 #include <asm/timex.h>
28 #include <asm/system.h>
30 #ifdef CONFIG_X86_POWERNOW_K7_ACPI
31 #include <linux/acpi.h>
32 #include <acpi/processor.h>
35 #include "powernow-k7.h"
37 #define PFX "powernow: "
57 #ifdef CONFIG_X86_POWERNOW_K7_ACPI
58 union powernow_acpi_control_t {
69 #ifdef CONFIG_CPU_FREQ_DEBUG
70 /* divide by 1000 to get VCore voltage in V. */
71 static int mobile_vid_table[32] = {
72 2000, 1950, 1900, 1850, 1800, 1750, 1700, 1650,
73 1600, 1550, 1500, 1450, 1400, 1350, 1300, 0,
74 1275, 1250, 1225, 1200, 1175, 1150, 1125, 1100,
75 1075, 1050, 1025, 1000, 975, 950, 925, 0,
79 /* divide by 10 to get FID. */
80 static int fid_codes[32] = {
81 110, 115, 120, 125, 50, 55, 60, 65,
82 70, 75, 80, 85, 90, 95, 100, 105,
83 30, 190, 40, 200, 130, 135, 140, 210,
84 150, 225, 160, 165, 170, 180, -1, -1,
87 /* This parameter is used in order to force ACPI instead of legacy method for
88 * configuration purpose.
91 static int acpi_force;
93 static struct cpufreq_frequency_table *powernow_table;
95 static unsigned int can_scale_bus;
96 static unsigned int can_scale_vid;
97 static unsigned int minimum_speed=-1;
98 static unsigned int maximum_speed;
99 static unsigned int number_scales;
100 static unsigned int fsb;
101 static unsigned int latency;
104 #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "powernow-k7", msg)
106 static int check_fsb(unsigned int fsbspeed)
109 unsigned int f = fsb / 1000;
111 delta = (fsbspeed > f) ? fsbspeed - f : f - fsbspeed;
115 static int check_powernow(void)
117 struct cpuinfo_x86 *c = cpu_data;
118 unsigned int maxei, eax, ebx, ecx, edx;
120 if ((c->x86_vendor != X86_VENDOR_AMD) || (c->x86 !=6)) {
122 printk (KERN_INFO PFX "This module only works with AMD K7 CPUs\n");
127 /* Get maximum capabilities */
128 maxei = cpuid_eax (0x80000000);
129 if (maxei < 0x80000007) { /* Any powernow info ? */
131 printk (KERN_INFO PFX "No powernow capabilities detected\n");
136 if ((c->x86_model == 6) && (c->x86_mask == 0)) {
137 printk (KERN_INFO PFX "K7 660[A0] core detected, enabling errata workarounds\n");
141 cpuid(0x80000007, &eax, &ebx, &ecx, &edx);
143 /* Check we can actually do something before we say anything.*/
144 if (!(edx & (1 << 1 | 1 << 2)))
147 printk (KERN_INFO PFX "PowerNOW! Technology present. Can scale: ");
150 printk ("frequency");
154 if ((edx & (1 << 1 | 1 << 2)) == 0x6)
167 static int get_ranges (unsigned char *pst)
173 powernow_table = kzalloc((sizeof(struct cpufreq_frequency_table) * (number_scales + 1)), GFP_KERNEL);
177 for (j=0 ; j < number_scales; j++) {
180 powernow_table[j].frequency = (fsb * fid_codes[fid]) / 10;
181 powernow_table[j].index = fid; /* lower 8 bits */
183 speed = powernow_table[j].frequency;
185 if ((fid_codes[fid] % 10)==5) {
186 #ifdef CONFIG_X86_POWERNOW_K7_ACPI
188 powernow_table[j].frequency = CPUFREQ_ENTRY_INVALID;
192 if (speed < minimum_speed)
193 minimum_speed = speed;
194 if (speed > maximum_speed)
195 maximum_speed = speed;
198 powernow_table[j].index |= (vid << 8); /* upper 8 bits */
200 dprintk (" FID: 0x%x (%d.%dx [%dMHz]) "
201 "VID: 0x%x (%d.%03dV)\n", fid, fid_codes[fid] / 10,
202 fid_codes[fid] % 10, speed/1000, vid,
203 mobile_vid_table[vid]/1000,
204 mobile_vid_table[vid]%1000);
206 powernow_table[number_scales].frequency = CPUFREQ_TABLE_END;
207 powernow_table[number_scales].index = 0;
213 static void change_FID(int fid)
215 union msr_fidvidctl fidvidctl;
217 rdmsrl (MSR_K7_FID_VID_CTL, fidvidctl.val);
218 if (fidvidctl.bits.FID != fid) {
219 fidvidctl.bits.SGTC = latency;
220 fidvidctl.bits.FID = fid;
221 fidvidctl.bits.VIDC = 0;
222 fidvidctl.bits.FIDC = 1;
223 wrmsrl (MSR_K7_FID_VID_CTL, fidvidctl.val);
228 static void change_VID(int vid)
230 union msr_fidvidctl fidvidctl;
232 rdmsrl (MSR_K7_FID_VID_CTL, fidvidctl.val);
233 if (fidvidctl.bits.VID != vid) {
234 fidvidctl.bits.SGTC = latency;
235 fidvidctl.bits.VID = vid;
236 fidvidctl.bits.FIDC = 0;
237 fidvidctl.bits.VIDC = 1;
238 wrmsrl (MSR_K7_FID_VID_CTL, fidvidctl.val);
243 static void change_speed (unsigned int index)
246 struct cpufreq_freqs freqs;
247 union msr_fidvidstatus fidvidstatus;
250 /* fid are the lower 8 bits of the index we stored into
251 * the cpufreq frequency table in powernow_decode_bios,
252 * vid are the upper 8 bits.
255 fid = powernow_table[index].index & 0xFF;
256 vid = (powernow_table[index].index & 0xFF00) >> 8;
260 rdmsrl (MSR_K7_FID_VID_STATUS, fidvidstatus.val);
261 cfid = fidvidstatus.bits.CFID;
262 freqs.old = fsb * fid_codes[cfid] / 10;
264 freqs.new = powernow_table[index].frequency;
266 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
268 /* Now do the magic poking into the MSRs. */
270 if (have_a0 == 1) /* A0 errata 5 */
273 if (freqs.old > freqs.new) {
274 /* Going down, so change FID first */
278 /* Going up, so change VID first */
287 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
291 #ifdef CONFIG_X86_POWERNOW_K7_ACPI
293 static struct acpi_processor_performance *acpi_processor_perf;
295 static int powernow_acpi_init(void)
299 union powernow_acpi_control_t pc;
301 if (acpi_processor_perf != NULL && powernow_table != NULL) {
306 acpi_processor_perf = kzalloc(sizeof(struct acpi_processor_performance),
308 if (!acpi_processor_perf) {
313 if (acpi_processor_register_performance(acpi_processor_perf, 0)) {
318 if (acpi_processor_perf->control_register.space_id != ACPI_ADR_SPACE_FIXED_HARDWARE) {
323 if (acpi_processor_perf->status_register.space_id != ACPI_ADR_SPACE_FIXED_HARDWARE) {
328 number_scales = acpi_processor_perf->state_count;
330 if (number_scales < 2) {
335 powernow_table = kzalloc((number_scales + 1) * (sizeof(struct cpufreq_frequency_table)), GFP_KERNEL);
336 if (!powernow_table) {
341 pc.val = (unsigned long) acpi_processor_perf->states[0].control;
342 for (i = 0; i < number_scales; i++) {
346 pc.val = (unsigned long) acpi_processor_perf->states[i].control;
347 dprintk ("acpi: P%d: %d MHz %d mW %d uS control %08x SGTC %d\n",
349 (u32) acpi_processor_perf->states[i].core_frequency,
350 (u32) acpi_processor_perf->states[i].power,
351 (u32) acpi_processor_perf->states[i].transition_latency,
352 (u32) acpi_processor_perf->states[i].control,
358 powernow_table[i].frequency = fsb * fid_codes[fid] / 10;
359 powernow_table[i].index = fid; /* lower 8 bits */
360 powernow_table[i].index |= (vid << 8); /* upper 8 bits */
362 speed = powernow_table[i].frequency;
364 if ((fid_codes[fid] % 10)==5) {
366 powernow_table[i].frequency = CPUFREQ_ENTRY_INVALID;
369 dprintk (" FID: 0x%x (%d.%dx [%dMHz]) "
370 "VID: 0x%x (%d.%03dV)\n", fid, fid_codes[fid] / 10,
371 fid_codes[fid] % 10, speed/1000, vid,
372 mobile_vid_table[vid]/1000,
373 mobile_vid_table[vid]%1000);
375 if (latency < pc.bits.sgtc)
376 latency = pc.bits.sgtc;
378 if (speed < minimum_speed)
379 minimum_speed = speed;
380 if (speed > maximum_speed)
381 maximum_speed = speed;
384 powernow_table[i].frequency = CPUFREQ_TABLE_END;
385 powernow_table[i].index = 0;
387 /* notify BIOS that we exist */
388 acpi_processor_notify_smm(THIS_MODULE);
393 acpi_processor_unregister_performance(acpi_processor_perf, 0);
395 kfree(acpi_processor_perf);
397 printk(KERN_WARNING PFX "ACPI perflib can not be used in this platform\n");
398 acpi_processor_perf = NULL;
402 static int powernow_acpi_init(void)
404 printk(KERN_INFO PFX "no support for ACPI processor found."
405 " Please recompile your kernel with ACPI processor\n");
410 static int powernow_decode_bios (int maxfid, int startvid)
419 etuple = cpuid_eax(0x80000001);
421 for (i=0xC0000; i < 0xffff0 ; i+=16) {
425 if (memcmp(p, "AMDK7PNOW!", 10) == 0){
426 dprintk ("Found PSB header at %p\n", p);
427 psb = (struct psb_s *) p;
428 dprintk ("Table version: 0x%x\n", psb->tableversion);
429 if (psb->tableversion != 0x12) {
430 printk (KERN_INFO PFX "Sorry, only v1.2 tables supported right now\n");
434 dprintk ("Flags: 0x%x\n", psb->flags);
435 if ((psb->flags & 1)==0) {
436 dprintk ("Mobile voltage regulator\n");
438 dprintk ("Desktop voltage regulator\n");
441 latency = psb->settlingtime;
443 printk (KERN_INFO PFX "BIOS set settling time to %d microseconds."
444 "Should be at least 100. Correcting.\n", latency);
447 dprintk ("Settling Time: %d microseconds.\n", psb->settlingtime);
448 dprintk ("Has %d PST tables. (Only dumping ones relevant to this CPU).\n", psb->numpst);
450 p += sizeof (struct psb_s);
452 pst = (struct pst_s *) p;
454 for (j=0; j<psb->numpst; j++) {
455 pst = (struct pst_s *) p;
456 number_scales = pst->numpstates;
458 if ((etuple == pst->cpuid) && check_fsb(pst->fsbspeed) &&
459 (maxfid==pst->maxfid) && (startvid==pst->startvid))
461 dprintk ("PST:%d (@%p)\n", j, pst);
462 dprintk (" cpuid: 0x%x fsb: %d maxFID: 0x%x startvid: 0x%x\n",
463 pst->cpuid, pst->fsbspeed, pst->maxfid, pst->startvid);
465 ret = get_ranges ((char *) pst + sizeof (struct pst_s));
469 p = (char *) pst + sizeof (struct pst_s);
470 for (k=0; k<number_scales; k++)
474 printk (KERN_INFO PFX "No PST tables match this cpuid (0x%x)\n", etuple);
475 printk (KERN_INFO PFX "This is indicative of a broken BIOS.\n");
486 static int powernow_target (struct cpufreq_policy *policy,
487 unsigned int target_freq,
488 unsigned int relation)
490 unsigned int newstate;
492 if (cpufreq_frequency_table_target(policy, powernow_table, target_freq, relation, &newstate))
495 change_speed(newstate);
501 static int powernow_verify (struct cpufreq_policy *policy)
503 return cpufreq_frequency_table_verify(policy, powernow_table);
507 * We use the fact that the bus frequency is somehow
508 * a multiple of 100000/3 khz, then we compute sgtc according
510 * That way, we match more how AMD thinks all of that work.
511 * We will then get the same kind of behaviour already tested under
512 * the "well-known" other OS.
514 static int __init fixup_sgtc(void)
525 sgtc = 100 * m * latency;
527 if (sgtc > 0xfffff) {
528 printk(KERN_WARNING PFX "SGTC too large %d\n", sgtc);
534 static unsigned int powernow_get(unsigned int cpu)
536 union msr_fidvidstatus fidvidstatus;
541 rdmsrl (MSR_K7_FID_VID_STATUS, fidvidstatus.val);
542 cfid = fidvidstatus.bits.CFID;
544 return (fsb * fid_codes[cfid] / 10);
548 static int __init acer_cpufreq_pst(struct dmi_system_id *d)
550 printk(KERN_WARNING "%s laptop with broken PST tables in BIOS detected.\n", d->ident);
551 printk(KERN_WARNING "You need to downgrade to 3A21 (09/09/2002), or try a newer BIOS than 3A71 (01/20/2003)\n");
552 printk(KERN_WARNING "cpufreq scaling has been disabled as a result of this.\n");
557 * Some Athlon laptops have really fucked PST tables.
558 * A BIOS update is all that can save them.
559 * Mention this, and disable cpufreq.
561 static struct dmi_system_id __initdata powernow_dmi_table[] = {
563 .callback = acer_cpufreq_pst,
564 .ident = "Acer Aspire",
566 DMI_MATCH(DMI_SYS_VENDOR, "Insyde Software"),
567 DMI_MATCH(DMI_BIOS_VERSION, "3A71"),
573 static int __init powernow_cpu_init (struct cpufreq_policy *policy)
575 union msr_fidvidstatus fidvidstatus;
578 if (policy->cpu != 0)
581 rdmsrl (MSR_K7_FID_VID_STATUS, fidvidstatus.val);
583 recalibrate_cpu_khz();
585 fsb = (10 * cpu_khz) / fid_codes[fidvidstatus.bits.CFID];
587 printk(KERN_WARNING PFX "can not determine bus frequency\n");
590 dprintk("FSB: %3dMHz\n", fsb/1000);
592 if (dmi_check_system(powernow_dmi_table) || acpi_force) {
593 printk (KERN_INFO PFX "PSB/PST known to be broken. Trying ACPI instead\n");
594 result = powernow_acpi_init();
596 result = powernow_decode_bios(fidvidstatus.bits.MFID, fidvidstatus.bits.SVID);
598 printk (KERN_INFO PFX "Trying ACPI perflib\n");
602 result = powernow_acpi_init();
604 printk (KERN_INFO PFX "ACPI and legacy methods failed\n");
605 printk (KERN_INFO PFX "See http://www.codemonkey.org.uk/projects/cpufreq/powernow-k7.shtml\n");
608 /* SGTC use the bus clock as timer */
609 latency = fixup_sgtc();
610 printk(KERN_INFO PFX "SGTC: %d\n", latency);
617 printk (KERN_INFO PFX "Minimum speed %d MHz. Maximum speed %d MHz.\n",
618 minimum_speed/1000, maximum_speed/1000);
620 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
622 policy->cpuinfo.transition_latency = cpufreq_scale(2000000UL, fsb, latency);
624 policy->cur = powernow_get(0);
626 cpufreq_frequency_table_get_attr(powernow_table, policy->cpu);
628 return cpufreq_frequency_table_cpuinfo(policy, powernow_table);
631 static int powernow_cpu_exit (struct cpufreq_policy *policy) {
632 cpufreq_frequency_table_put_attr(policy->cpu);
634 #ifdef CONFIG_X86_POWERNOW_K7_ACPI
635 if (acpi_processor_perf) {
636 acpi_processor_unregister_performance(acpi_processor_perf, 0);
637 kfree(acpi_processor_perf);
641 kfree(powernow_table);
645 static struct freq_attr* powernow_table_attr[] = {
646 &cpufreq_freq_attr_scaling_available_freqs,
650 static struct cpufreq_driver powernow_driver = {
651 .verify = powernow_verify,
652 .target = powernow_target,
654 .init = powernow_cpu_init,
655 .exit = powernow_cpu_exit,
656 .name = "powernow-k7",
657 .owner = THIS_MODULE,
658 .attr = powernow_table_attr,
661 static int __init powernow_init (void)
663 if (check_powernow()==0)
665 return cpufreq_register_driver(&powernow_driver);
669 static void __exit powernow_exit (void)
671 cpufreq_unregister_driver(&powernow_driver);
674 module_param(acpi_force, int, 0444);
675 MODULE_PARM_DESC(acpi_force, "Force ACPI to be used.");
677 MODULE_AUTHOR ("Dave Jones <davej@codemonkey.org.uk>");
678 MODULE_DESCRIPTION ("Powernow driver for AMD K7 processors.");
679 MODULE_LICENSE ("GPL");
681 late_initcall(powernow_init);
682 module_exit(powernow_exit);