2 * (c) 2003, 2004 Advanced Micro Devices, Inc.
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
7 * Support : paul.devriendt@amd.com
9 * Based on the powernow-k7.c module written by Dave Jones.
10 * (C) 2003 Dave Jones <davej@codemonkey.org.uk> on behalf of SuSE Labs
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.
16 * Valuable input gratefully received from Dave Jones, Pavel Machek,
17 * Dominik Brodowski, and others.
18 * Processor information obtained from Chapter 9 (Power and Thermal Management)
19 * of the "BIOS and Kernel Developer's Guide for the AMD Athlon 64 and AMD
20 * Opteron Processors" available for download from www.amd.com
22 * Tables for specific CPUs can be infrerred from
23 * http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/30430.pdf
26 #include <linux/kernel.h>
27 #include <linux/smp.h>
28 #include <linux/module.h>
29 #include <linux/init.h>
30 #include <linux/cpufreq.h>
31 #include <linux/slab.h>
32 #include <linux/string.h>
36 #include <asm/delay.h>
38 #ifdef CONFIG_X86_POWERNOW_K8_ACPI
39 #include <linux/acpi.h>
40 #include <acpi/processor.h>
43 #define PFX "powernow-k8: "
44 #define BFX PFX "BIOS error: "
45 #define VERSION "version 1.00.09e"
46 #include "powernow-k8.h"
48 /* serialize freq changes */
49 static DECLARE_MUTEX(fidvid_sem
);
51 static struct powernow_k8_data
*powernow_data
[NR_CPUS
];
53 /* Return a frequency in MHz, given an input fid */
54 static u32
find_freq_from_fid(u32 fid
)
56 return 800 + (fid
* 100);
59 /* Return a frequency in KHz, given an input fid */
60 static u32
find_khz_freq_from_fid(u32 fid
)
62 return 1000 * find_freq_from_fid(fid
);
65 /* Return a voltage in miliVolts, given an input vid */
66 static u32
find_millivolts_from_vid(struct powernow_k8_data
*data
, u32 vid
)
71 /* Return the vco fid for an input fid
73 * Each "low" fid has corresponding "high" fid, and you can get to "low" fids
74 * only from corresponding high fids. This returns "high" fid corresponding to
77 static u32
convert_fid_to_vco_fid(u32 fid
)
79 if (fid
< HI_FID_TABLE_BOTTOM
) {
87 * Return 1 if the pending bit is set. Unless we just instructed the processor
88 * to transition to a new state, seeing this bit set is really bad news.
90 static int pending_bit_stuck(void)
94 rdmsr(MSR_FIDVID_STATUS
, lo
, hi
);
95 return lo
& MSR_S_LO_CHANGE_PENDING
? 1 : 0;
99 * Update the global current fid / vid values from the status msr.
100 * Returns 1 on error.
102 static int query_current_values_with_pending_wait(struct powernow_k8_data
*data
)
107 lo
= MSR_S_LO_CHANGE_PENDING
;
108 while (lo
& MSR_S_LO_CHANGE_PENDING
) {
109 if (i
++ > 0x1000000) {
110 printk(KERN_ERR PFX
"detected change pending stuck\n");
113 rdmsr(MSR_FIDVID_STATUS
, lo
, hi
);
116 data
->currvid
= hi
& MSR_S_HI_CURRENT_VID
;
117 data
->currfid
= lo
& MSR_S_LO_CURRENT_FID
;
122 /* the isochronous relief time */
123 static void count_off_irt(struct powernow_k8_data
*data
)
125 udelay((1 << data
->irt
) * 10);
129 /* the voltage stabalization time */
130 static void count_off_vst(struct powernow_k8_data
*data
)
132 udelay(data
->vstable
* VST_UNITS_20US
);
136 /* need to init the control msr to a safe value (for each cpu) */
137 static void fidvid_msr_init(void)
142 rdmsr(MSR_FIDVID_STATUS
, lo
, hi
);
143 vid
= hi
& MSR_S_HI_CURRENT_VID
;
144 fid
= lo
& MSR_S_LO_CURRENT_FID
;
145 lo
= fid
| (vid
<< MSR_C_LO_VID_SHIFT
);
146 hi
= MSR_C_HI_STP_GNT_BENIGN
;
147 dprintk("cpu%d, init lo 0x%x, hi 0x%x\n", smp_processor_id(), lo
, hi
);
148 wrmsr(MSR_FIDVID_CTL
, lo
, hi
);
152 /* write the new fid value along with the other control fields to the msr */
153 static int write_new_fid(struct powernow_k8_data
*data
, u32 fid
)
156 u32 savevid
= data
->currvid
;
158 if ((fid
& INVALID_FID_MASK
) || (data
->currvid
& INVALID_VID_MASK
)) {
159 printk(KERN_ERR PFX
"internal error - overflow on fid write\n");
163 lo
= fid
| (data
->currvid
<< MSR_C_LO_VID_SHIFT
) | MSR_C_LO_INIT_FID_VID
;
165 dprintk("writing fid 0x%x, lo 0x%x, hi 0x%x\n",
166 fid
, lo
, data
->plllock
* PLL_LOCK_CONVERSION
);
168 wrmsr(MSR_FIDVID_CTL
, lo
, data
->plllock
* PLL_LOCK_CONVERSION
);
170 if (query_current_values_with_pending_wait(data
))
175 if (savevid
!= data
->currvid
) {
176 printk(KERN_ERR PFX
"vid change on fid trans, old 0x%x, new 0x%x\n",
177 savevid
, data
->currvid
);
181 if (fid
!= data
->currfid
) {
182 printk(KERN_ERR PFX
"fid trans failed, fid 0x%x, curr 0x%x\n", fid
,
190 /* Write a new vid to the hardware */
191 static int write_new_vid(struct powernow_k8_data
*data
, u32 vid
)
194 u32 savefid
= data
->currfid
;
196 if ((data
->currfid
& INVALID_FID_MASK
) || (vid
& INVALID_VID_MASK
)) {
197 printk(KERN_ERR PFX
"internal error - overflow on vid write\n");
201 lo
= data
->currfid
| (vid
<< MSR_C_LO_VID_SHIFT
) | MSR_C_LO_INIT_FID_VID
;
203 dprintk("writing vid 0x%x, lo 0x%x, hi 0x%x\n",
204 vid
, lo
, STOP_GRANT_5NS
);
206 wrmsr(MSR_FIDVID_CTL
, lo
, STOP_GRANT_5NS
);
208 if (query_current_values_with_pending_wait(data
))
211 if (savefid
!= data
->currfid
) {
212 printk(KERN_ERR PFX
"fid changed on vid trans, old 0x%x new 0x%x\n",
213 savefid
, data
->currfid
);
217 if (vid
!= data
->currvid
) {
218 printk(KERN_ERR PFX
"vid trans failed, vid 0x%x, curr 0x%x\n", vid
,
227 * Reduce the vid by the max of step or reqvid.
228 * Decreasing vid codes represent increasing voltages:
229 * vid of 0 is 1.550V, vid of 0x1e is 0.800V, vid of 0x1f is off.
231 static int decrease_vid_code_by_step(struct powernow_k8_data
*data
, u32 reqvid
, u32 step
)
233 if ((data
->currvid
- reqvid
) > step
)
234 reqvid
= data
->currvid
- step
;
236 if (write_new_vid(data
, reqvid
))
244 /* Change the fid and vid, by the 3 phases. */
245 static int transition_fid_vid(struct powernow_k8_data
*data
, u32 reqfid
, u32 reqvid
)
247 if (core_voltage_pre_transition(data
, reqvid
))
250 if (core_frequency_transition(data
, reqfid
))
253 if (core_voltage_post_transition(data
, reqvid
))
256 if (query_current_values_with_pending_wait(data
))
259 if ((reqfid
!= data
->currfid
) || (reqvid
!= data
->currvid
)) {
260 printk(KERN_ERR PFX
"failed (cpu%d): req 0x%x 0x%x, curr 0x%x 0x%x\n",
262 reqfid
, reqvid
, data
->currfid
, data
->currvid
);
266 dprintk("transitioned (cpu%d): new fid 0x%x, vid 0x%x\n",
267 smp_processor_id(), data
->currfid
, data
->currvid
);
272 /* Phase 1 - core voltage transition ... setup voltage */
273 static int core_voltage_pre_transition(struct powernow_k8_data
*data
, u32 reqvid
)
275 u32 rvosteps
= data
->rvo
;
276 u32 savefid
= data
->currfid
;
278 dprintk("ph1 (cpu%d): start, currfid 0x%x, currvid 0x%x, reqvid 0x%x, rvo 0x%x\n",
280 data
->currfid
, data
->currvid
, reqvid
, data
->rvo
);
282 while (data
->currvid
> reqvid
) {
283 dprintk("ph1: curr 0x%x, req vid 0x%x\n",
284 data
->currvid
, reqvid
);
285 if (decrease_vid_code_by_step(data
, reqvid
, data
->vidmvs
))
289 while ((rvosteps
> 0) && ((data
->rvo
+ data
->currvid
) > reqvid
)) {
290 if (data
->currvid
== 0) {
293 dprintk("ph1: changing vid for rvo, req 0x%x\n",
295 if (decrease_vid_code_by_step(data
, data
->currvid
- 1, 1))
301 if (query_current_values_with_pending_wait(data
))
304 if (savefid
!= data
->currfid
) {
305 printk(KERN_ERR PFX
"ph1 err, currfid changed 0x%x\n", data
->currfid
);
309 dprintk("ph1 complete, currfid 0x%x, currvid 0x%x\n",
310 data
->currfid
, data
->currvid
);
315 /* Phase 2 - core frequency transition */
316 static int core_frequency_transition(struct powernow_k8_data
*data
, u32 reqfid
)
318 u32 vcoreqfid
, vcocurrfid
, vcofiddiff
, savevid
= data
->currvid
;
320 if ((reqfid
< HI_FID_TABLE_BOTTOM
) && (data
->currfid
< HI_FID_TABLE_BOTTOM
)) {
321 printk(KERN_ERR PFX
"ph2: illegal lo-lo transition 0x%x 0x%x\n",
322 reqfid
, data
->currfid
);
326 if (data
->currfid
== reqfid
) {
327 printk(KERN_ERR PFX
"ph2 null fid transition 0x%x\n", data
->currfid
);
331 dprintk("ph2 (cpu%d): starting, currfid 0x%x, currvid 0x%x, reqfid 0x%x\n",
333 data
->currfid
, data
->currvid
, reqfid
);
335 vcoreqfid
= convert_fid_to_vco_fid(reqfid
);
336 vcocurrfid
= convert_fid_to_vco_fid(data
->currfid
);
337 vcofiddiff
= vcocurrfid
> vcoreqfid
? vcocurrfid
- vcoreqfid
338 : vcoreqfid
- vcocurrfid
;
340 while (vcofiddiff
> 2) {
341 if (reqfid
> data
->currfid
) {
342 if (data
->currfid
> LO_FID_TABLE_TOP
) {
343 if (write_new_fid(data
, data
->currfid
+ 2)) {
348 (data
, 2 + convert_fid_to_vco_fid(data
->currfid
))) {
353 if (write_new_fid(data
, data
->currfid
- 2))
357 vcocurrfid
= convert_fid_to_vco_fid(data
->currfid
);
358 vcofiddiff
= vcocurrfid
> vcoreqfid
? vcocurrfid
- vcoreqfid
359 : vcoreqfid
- vcocurrfid
;
362 if (write_new_fid(data
, reqfid
))
365 if (query_current_values_with_pending_wait(data
))
368 if (data
->currfid
!= reqfid
) {
370 "ph2: mismatch, failed fid transition, curr 0x%x, req 0x%x\n",
371 data
->currfid
, reqfid
);
375 if (savevid
!= data
->currvid
) {
376 printk(KERN_ERR PFX
"ph2: vid changed, save 0x%x, curr 0x%x\n",
377 savevid
, data
->currvid
);
381 dprintk("ph2 complete, currfid 0x%x, currvid 0x%x\n",
382 data
->currfid
, data
->currvid
);
387 /* Phase 3 - core voltage transition flow ... jump to the final vid. */
388 static int core_voltage_post_transition(struct powernow_k8_data
*data
, u32 reqvid
)
390 u32 savefid
= data
->currfid
;
391 u32 savereqvid
= reqvid
;
393 dprintk("ph3 (cpu%d): starting, currfid 0x%x, currvid 0x%x\n",
395 data
->currfid
, data
->currvid
);
397 if (reqvid
!= data
->currvid
) {
398 if (write_new_vid(data
, reqvid
))
401 if (savefid
!= data
->currfid
) {
403 "ph3: bad fid change, save 0x%x, curr 0x%x\n",
404 savefid
, data
->currfid
);
408 if (data
->currvid
!= reqvid
) {
410 "ph3: failed vid transition\n, req 0x%x, curr 0x%x",
411 reqvid
, data
->currvid
);
416 if (query_current_values_with_pending_wait(data
))
419 if (savereqvid
!= data
->currvid
) {
420 dprintk("ph3 failed, currvid 0x%x\n", data
->currvid
);
424 if (savefid
!= data
->currfid
) {
425 dprintk("ph3 failed, currfid changed 0x%x\n",
430 dprintk("ph3 complete, currfid 0x%x, currvid 0x%x\n",
431 data
->currfid
, data
->currvid
);
436 static int check_supported_cpu(unsigned int cpu
)
438 cpumask_t oldmask
= CPU_MASK_ALL
;
439 u32 eax
, ebx
, ecx
, edx
;
442 oldmask
= current
->cpus_allowed
;
443 set_cpus_allowed(current
, cpumask_of_cpu(cpu
));
446 if (smp_processor_id() != cpu
) {
447 printk(KERN_ERR
"limiting to cpu %u failed\n", cpu
);
451 if (current_cpu_data
.x86_vendor
!= X86_VENDOR_AMD
)
454 eax
= cpuid_eax(CPUID_PROCESSOR_SIGNATURE
);
455 if (((eax
& CPUID_USE_XFAM_XMOD
) != CPUID_USE_XFAM_XMOD
) ||
456 ((eax
& CPUID_XFAM
) != CPUID_XFAM_K8
) ||
457 ((eax
& CPUID_XMOD
) > CPUID_XMOD_REV_E
)) {
458 printk(KERN_INFO PFX
"Processor cpuid %x not supported\n", eax
);
462 eax
= cpuid_eax(CPUID_GET_MAX_CAPABILITIES
);
463 if (eax
< CPUID_FREQ_VOLT_CAPABILITIES
) {
465 "No frequency change capabilities detected\n");
469 cpuid(CPUID_FREQ_VOLT_CAPABILITIES
, &eax
, &ebx
, &ecx
, &edx
);
470 if ((edx
& P_STATE_TRANSITION_CAPABLE
) != P_STATE_TRANSITION_CAPABLE
) {
471 printk(KERN_INFO PFX
"Power state transitions not supported\n");
478 set_cpus_allowed(current
, oldmask
);
484 static int check_pst_table(struct powernow_k8_data
*data
, struct pst_s
*pst
, u8 maxvid
)
489 for (j
= 0; j
< data
->numps
; j
++) {
490 if (pst
[j
].vid
> LEAST_VID
) {
491 printk(KERN_ERR PFX
"vid %d invalid : 0x%x\n", j
, pst
[j
].vid
);
494 if (pst
[j
].vid
< data
->rvo
) { /* vid + rvo >= 0 */
495 printk(KERN_ERR BFX
"0 vid exceeded with pstate %d\n", j
);
498 if (pst
[j
].vid
< maxvid
+ data
->rvo
) { /* vid + rvo >= maxvid */
499 printk(KERN_ERR BFX
"maxvid exceeded with pstate %d\n", j
);
502 if ((pst
[j
].fid
> MAX_FID
)
504 || (j
&& (pst
[j
].fid
< HI_FID_TABLE_BOTTOM
))) {
505 /* Only first fid is allowed to be in "low" range */
506 printk(KERN_ERR PFX
"two low fids - %d : 0x%x\n", j
, pst
[j
].fid
);
509 if (pst
[j
].fid
< lastfid
)
510 lastfid
= pst
[j
].fid
;
513 printk(KERN_ERR PFX
"lastfid invalid\n");
516 if (lastfid
> LO_FID_TABLE_TOP
)
517 printk(KERN_INFO PFX
"first fid not from lo freq table\n");
522 static void print_basics(struct powernow_k8_data
*data
)
525 for (j
= 0; j
< data
->numps
; j
++) {
526 if (data
->powernow_table
[j
].frequency
!= CPUFREQ_ENTRY_INVALID
)
527 printk(KERN_INFO PFX
" %d : fid 0x%x (%d MHz), vid 0x%x (%d mV)\n", j
,
528 data
->powernow_table
[j
].index
& 0xff,
529 data
->powernow_table
[j
].frequency
/1000,
530 data
->powernow_table
[j
].index
>> 8,
531 find_millivolts_from_vid(data
, data
->powernow_table
[j
].index
>> 8));
534 printk(KERN_INFO PFX
"Only %d pstates on battery\n", data
->batps
);
537 static int fill_powernow_table(struct powernow_k8_data
*data
, struct pst_s
*pst
, u8 maxvid
)
539 struct cpufreq_frequency_table
*powernow_table
;
542 if (data
->batps
) { /* use ACPI support to get full speed on mains power */
543 printk(KERN_WARNING PFX
"Only %d pstates usable (use ACPI driver for full range\n", data
->batps
);
544 data
->numps
= data
->batps
;
547 for ( j
=1; j
<data
->numps
; j
++ ) {
548 if (pst
[j
-1].fid
>= pst
[j
].fid
) {
549 printk(KERN_ERR PFX
"PST out of sequence\n");
554 if (data
->numps
< 2) {
555 printk(KERN_ERR PFX
"no p states to transition\n");
559 if (check_pst_table(data
, pst
, maxvid
))
562 powernow_table
= kmalloc((sizeof(struct cpufreq_frequency_table
)
563 * (data
->numps
+ 1)), GFP_KERNEL
);
564 if (!powernow_table
) {
565 printk(KERN_ERR PFX
"powernow_table memory alloc failure\n");
569 for (j
= 0; j
< data
->numps
; j
++) {
570 powernow_table
[j
].index
= pst
[j
].fid
; /* lower 8 bits */
571 powernow_table
[j
].index
|= (pst
[j
].vid
<< 8); /* upper 8 bits */
572 powernow_table
[j
].frequency
= find_khz_freq_from_fid(pst
[j
].fid
);
574 powernow_table
[data
->numps
].frequency
= CPUFREQ_TABLE_END
;
575 powernow_table
[data
->numps
].index
= 0;
577 if (query_current_values_with_pending_wait(data
)) {
578 kfree(powernow_table
);
582 dprintk("cfid 0x%x, cvid 0x%x\n", data
->currfid
, data
->currvid
);
583 data
->powernow_table
= powernow_table
;
586 for (j
= 0; j
< data
->numps
; j
++)
587 if ((pst
[j
].fid
==data
->currfid
) && (pst
[j
].vid
==data
->currvid
))
590 dprintk("currfid/vid do not match PST, ignoring\n");
594 /* Find and validate the PSB/PST table in BIOS. */
595 static int find_psb_table(struct powernow_k8_data
*data
)
604 for (i
= 0xc0000; i
< 0xffff0; i
+= 0x10) {
605 /* Scan BIOS looking for the signature. */
606 /* It can not be at ffff0 - it is too big. */
608 psb
= phys_to_virt(i
);
609 if (memcmp(psb
, PSB_ID_STRING
, PSB_ID_STRING_LEN
) != 0)
612 dprintk("found PSB header at 0x%p\n", psb
);
614 dprintk("table vers: 0x%x\n", psb
->tableversion
);
615 if (psb
->tableversion
!= PSB_VERSION_1_4
) {
616 printk(KERN_INFO BFX
"PSB table is not v1.4\n");
620 dprintk("flags: 0x%x\n", psb
->flags1
);
622 printk(KERN_ERR BFX
"unknown flags\n");
626 data
->vstable
= psb
->vstable
;
627 dprintk("voltage stabilization time: %d(*20us)\n", data
->vstable
);
629 dprintk("flags2: 0x%x\n", psb
->flags2
);
630 data
->rvo
= psb
->flags2
& 3;
631 data
->irt
= ((psb
->flags2
) >> 2) & 3;
632 mvs
= ((psb
->flags2
) >> 4) & 3;
633 data
->vidmvs
= 1 << mvs
;
634 data
->batps
= ((psb
->flags2
) >> 6) & 3;
636 dprintk("ramp voltage offset: %d\n", data
->rvo
);
637 dprintk("isochronous relief time: %d\n", data
->irt
);
638 dprintk("maximum voltage step: %d - 0x%x\n", mvs
, data
->vidmvs
);
640 dprintk("numpst: 0x%x\n", psb
->num_tables
);
641 cpst
= psb
->num_tables
;
642 if ((psb
->cpuid
== 0x00000fc0) || (psb
->cpuid
== 0x00000fe0) ){
643 thiscpuid
= cpuid_eax(CPUID_PROCESSOR_SIGNATURE
);
644 if ((thiscpuid
== 0x00000fc0) || (thiscpuid
== 0x00000fe0) ) {
649 printk(KERN_ERR BFX
"numpst must be 1\n");
653 data
->plllock
= psb
->plllocktime
;
654 dprintk("plllocktime: 0x%x (units 1us)\n", psb
->plllocktime
);
655 dprintk("maxfid: 0x%x\n", psb
->maxfid
);
656 dprintk("maxvid: 0x%x\n", psb
->maxvid
);
657 maxvid
= psb
->maxvid
;
659 data
->numps
= psb
->numps
;
660 dprintk("numpstates: 0x%x\n", data
->numps
);
661 return fill_powernow_table(data
, (struct pst_s
*)(psb
+1), maxvid
);
664 * If you see this message, complain to BIOS manufacturer. If
665 * he tells you "we do not support Linux" or some similar
666 * nonsense, remember that Windows 2000 uses the same legacy
667 * mechanism that the old Linux PSB driver uses. Tell them it
668 * is broken with Windows 2000.
670 * The reference to the AMD documentation is chapter 9 in the
671 * BIOS and Kernel Developer's Guide, which is available on
674 printk(KERN_ERR PFX
"BIOS error - no PSB\n");
678 #ifdef CONFIG_X86_POWERNOW_K8_ACPI
679 static void powernow_k8_acpi_pst_values(struct powernow_k8_data
*data
, unsigned int index
)
681 if (!data
->acpi_data
.state_count
)
684 data
->irt
= (data
->acpi_data
.states
[index
].control
>> IRT_SHIFT
) & IRT_MASK
;
685 data
->rvo
= (data
->acpi_data
.states
[index
].control
>> RVO_SHIFT
) & RVO_MASK
;
686 data
->plllock
= (data
->acpi_data
.states
[index
].control
>> PLL_L_SHIFT
) & PLL_L_MASK
;
687 data
->vidmvs
= 1 << ((data
->acpi_data
.states
[index
].control
>> MVS_SHIFT
) & MVS_MASK
);
688 data
->vstable
= (data
->acpi_data
.states
[index
].control
>> VST_SHIFT
) & VST_MASK
;
691 static int powernow_k8_cpu_init_acpi(struct powernow_k8_data
*data
)
695 struct cpufreq_frequency_table
*powernow_table
;
697 if (acpi_processor_register_performance(&data
->acpi_data
, data
->cpu
)) {
698 dprintk("register performance failed\n");
702 /* verify the data contained in the ACPI structures */
703 if (data
->acpi_data
.state_count
<= 1) {
704 dprintk("No ACPI P-States\n");
708 if ((data
->acpi_data
.control_register
.space_id
!= ACPI_ADR_SPACE_FIXED_HARDWARE
) ||
709 (data
->acpi_data
.status_register
.space_id
!= ACPI_ADR_SPACE_FIXED_HARDWARE
)) {
710 dprintk("Invalid control/status registers (%x - %x)\n",
711 data
->acpi_data
.control_register
.space_id
,
712 data
->acpi_data
.status_register
.space_id
);
716 /* fill in data->powernow_table */
717 powernow_table
= kmalloc((sizeof(struct cpufreq_frequency_table
)
718 * (data
->acpi_data
.state_count
+ 1)), GFP_KERNEL
);
719 if (!powernow_table
) {
720 dprintk("powernow_table memory alloc failure\n");
724 for (i
= 0; i
< data
->acpi_data
.state_count
; i
++) {
725 u32 fid
= data
->acpi_data
.states
[i
].control
& FID_MASK
;
726 u32 vid
= (data
->acpi_data
.states
[i
].control
>> VID_SHIFT
) & VID_MASK
;
728 dprintk(" %d : fid 0x%x, vid 0x%x\n", i
, fid
, vid
);
730 powernow_table
[i
].index
= fid
; /* lower 8 bits */
731 powernow_table
[i
].index
|= (vid
<< 8); /* upper 8 bits */
732 powernow_table
[i
].frequency
= find_khz_freq_from_fid(fid
);
734 /* verify frequency is OK */
735 if ((powernow_table
[i
].frequency
> (MAX_FREQ
* 1000)) ||
736 (powernow_table
[i
].frequency
< (MIN_FREQ
* 1000))) {
737 dprintk("invalid freq %u kHz, ignoring\n", powernow_table
[i
].frequency
);
738 powernow_table
[i
].frequency
= CPUFREQ_ENTRY_INVALID
;
742 /* verify voltage is OK - BIOSs are using "off" to indicate invalid */
744 dprintk("invalid vid %u, ignoring\n", vid
);
745 powernow_table
[i
].frequency
= CPUFREQ_ENTRY_INVALID
;
749 if (fid
< HI_FID_TABLE_BOTTOM
) {
751 /* if both entries are the same, ignore this
754 if ((powernow_table
[i
].frequency
!= powernow_table
[cntlofreq
].frequency
) ||
755 (powernow_table
[i
].index
!= powernow_table
[cntlofreq
].index
)) {
756 printk(KERN_ERR PFX
"Too many lo freq table entries\n");
760 dprintk("double low frequency table entry, ignoring it.\n");
761 powernow_table
[i
].frequency
= CPUFREQ_ENTRY_INVALID
;
767 if (powernow_table
[i
].frequency
!= (data
->acpi_data
.states
[i
].core_frequency
* 1000)) {
768 printk(KERN_INFO PFX
"invalid freq entries %u kHz vs. %u kHz\n",
769 powernow_table
[i
].frequency
,
770 (unsigned int) (data
->acpi_data
.states
[i
].core_frequency
* 1000));
771 powernow_table
[i
].frequency
= CPUFREQ_ENTRY_INVALID
;
776 powernow_table
[data
->acpi_data
.state_count
].frequency
= CPUFREQ_TABLE_END
;
777 powernow_table
[data
->acpi_data
.state_count
].index
= 0;
778 data
->powernow_table
= powernow_table
;
781 data
->numps
= data
->acpi_data
.state_count
;
783 powernow_k8_acpi_pst_values(data
, 0);
785 /* notify BIOS that we exist */
786 acpi_processor_notify_smm(THIS_MODULE
);
791 kfree(powernow_table
);
794 acpi_processor_unregister_performance(&data
->acpi_data
, data
->cpu
);
796 /* data->acpi_data.state_count informs us at ->exit() whether ACPI was used */
797 data
->acpi_data
.state_count
= 0;
802 static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data
*data
)
804 if (data
->acpi_data
.state_count
)
805 acpi_processor_unregister_performance(&data
->acpi_data
, data
->cpu
);
809 static int powernow_k8_cpu_init_acpi(struct powernow_k8_data
*data
) { return -ENODEV
; }
810 static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data
*data
) { return; }
811 static void powernow_k8_acpi_pst_values(struct powernow_k8_data
*data
, unsigned int index
) { return; }
812 #endif /* CONFIG_X86_POWERNOW_K8_ACPI */
814 /* Take a frequency, and issue the fid/vid transition command */
815 static int transition_frequency(struct powernow_k8_data
*data
, unsigned int index
)
820 struct cpufreq_freqs freqs
;
822 dprintk("cpu %d transition to index %u\n", smp_processor_id(), index
);
824 /* fid are the lower 8 bits of the index we stored into
825 * the cpufreq frequency table in find_psb_table, vid are
829 fid
= data
->powernow_table
[index
].index
& 0xFF;
830 vid
= (data
->powernow_table
[index
].index
& 0xFF00) >> 8;
832 dprintk("table matched fid 0x%x, giving vid 0x%x\n", fid
, vid
);
834 if (query_current_values_with_pending_wait(data
))
837 if ((data
->currvid
== vid
) && (data
->currfid
== fid
)) {
838 dprintk("target matches current values (fid 0x%x, vid 0x%x)\n",
843 if ((fid
< HI_FID_TABLE_BOTTOM
) && (data
->currfid
< HI_FID_TABLE_BOTTOM
)) {
844 printk("ignoring illegal change in lo freq table-%x to 0x%x\n",
849 dprintk("cpu %d, changing to fid 0x%x, vid 0x%x\n",
850 smp_processor_id(), fid
, vid
);
852 freqs
.cpu
= data
->cpu
;
854 freqs
.old
= find_khz_freq_from_fid(data
->currfid
);
855 freqs
.new = find_khz_freq_from_fid(fid
);
856 cpufreq_notify_transition(&freqs
, CPUFREQ_PRECHANGE
);
859 res
= transition_fid_vid(data
, fid
, vid
);
862 freqs
.new = find_khz_freq_from_fid(data
->currfid
);
863 cpufreq_notify_transition(&freqs
, CPUFREQ_POSTCHANGE
);
868 /* Driver entry point to switch to the target frequency */
869 static int powernowk8_target(struct cpufreq_policy
*pol
, unsigned targfreq
, unsigned relation
)
871 cpumask_t oldmask
= CPU_MASK_ALL
;
872 struct powernow_k8_data
*data
= powernow_data
[pol
->cpu
];
873 u32 checkfid
= data
->currfid
;
874 u32 checkvid
= data
->currvid
;
875 unsigned int newstate
;
878 /* only run on specific CPU from here on */
879 oldmask
= current
->cpus_allowed
;
880 set_cpus_allowed(current
, cpumask_of_cpu(pol
->cpu
));
883 if (smp_processor_id() != pol
->cpu
) {
884 printk(KERN_ERR
"limiting to cpu %u failed\n", pol
->cpu
);
888 if (pending_bit_stuck()) {
889 printk(KERN_ERR PFX
"failing targ, change pending bit set\n");
893 dprintk("targ: cpu %d, %d kHz, min %d, max %d, relation %d\n",
894 pol
->cpu
, targfreq
, pol
->min
, pol
->max
, relation
);
896 if (query_current_values_with_pending_wait(data
)) {
901 dprintk("targ: curr fid 0x%x, vid 0x%x\n",
902 data
->currfid
, data
->currvid
);
904 if ((checkvid
!= data
->currvid
) || (checkfid
!= data
->currfid
)) {
906 "error - out of sync, fid 0x%x 0x%x, vid 0x%x 0x%x\n",
907 checkfid
, data
->currfid
, checkvid
, data
->currvid
);
910 if (cpufreq_frequency_table_target(pol
, data
->powernow_table
, targfreq
, relation
, &newstate
))
913 powernow_k8_acpi_pst_values(data
, newstate
);
915 if (transition_frequency(data
, newstate
)) {
916 printk(KERN_ERR PFX
"transition frequency failed\n");
921 pol
->cur
= find_khz_freq_from_fid(data
->currfid
);
925 set_cpus_allowed(current
, oldmask
);
931 /* Driver entry point to verify the policy and range of frequencies */
932 static int powernowk8_verify(struct cpufreq_policy
*pol
)
934 struct powernow_k8_data
*data
= powernow_data
[pol
->cpu
];
936 return cpufreq_frequency_table_verify(pol
, data
->powernow_table
);
939 /* per CPU init entry point to the driver */
940 static int __init
powernowk8_cpu_init(struct cpufreq_policy
*pol
)
942 struct powernow_k8_data
*data
;
943 cpumask_t oldmask
= CPU_MASK_ALL
;
946 if (!check_supported_cpu(pol
->cpu
))
949 data
= kmalloc(sizeof(struct powernow_k8_data
), GFP_KERNEL
);
951 printk(KERN_ERR PFX
"unable to alloc powernow_k8_data");
954 memset(data
,0,sizeof(struct powernow_k8_data
));
956 data
->cpu
= pol
->cpu
;
958 if (powernow_k8_cpu_init_acpi(data
)) {
960 * Use the PSB BIOS structure. This is only availabe on
961 * an UP version, and is deprecated by AMD.
964 if ((num_online_cpus() != 1) || (num_possible_cpus() != 1)) {
965 printk(KERN_INFO PFX
"MP systems not supported by PSB BIOS structure\n");
970 printk(KERN_ERR PFX
"init not cpu 0\n");
974 rc
= find_psb_table(data
);
981 /* only run on specific CPU from here on */
982 oldmask
= current
->cpus_allowed
;
983 set_cpus_allowed(current
, cpumask_of_cpu(pol
->cpu
));
986 if (smp_processor_id() != pol
->cpu
) {
987 printk(KERN_ERR
"limiting to cpu %u failed\n", pol
->cpu
);
991 if (pending_bit_stuck()) {
992 printk(KERN_ERR PFX
"failing init, change pending bit set\n");
996 if (query_current_values_with_pending_wait(data
))
1001 /* run on any CPU again */
1002 set_cpus_allowed(current
, oldmask
);
1005 pol
->governor
= CPUFREQ_DEFAULT_GOVERNOR
;
1007 /* Take a crude guess here.
1008 * That guess was in microseconds, so multiply with 1000 */
1009 pol
->cpuinfo
.transition_latency
= (((data
->rvo
+ 8) * data
->vstable
* VST_UNITS_20US
)
1010 + (3 * (1 << data
->irt
) * 10)) * 1000;
1012 pol
->cur
= find_khz_freq_from_fid(data
->currfid
);
1013 dprintk("policy current frequency %d kHz\n", pol
->cur
);
1015 /* min/max the cpu is capable of */
1016 if (cpufreq_frequency_table_cpuinfo(pol
, data
->powernow_table
)) {
1017 printk(KERN_ERR PFX
"invalid powernow_table\n");
1018 powernow_k8_cpu_exit_acpi(data
);
1019 kfree(data
->powernow_table
);
1024 cpufreq_frequency_table_get_attr(data
->powernow_table
, pol
->cpu
);
1026 printk("cpu_init done, current fid 0x%x, vid 0x%x\n",
1027 data
->currfid
, data
->currvid
);
1029 powernow_data
[pol
->cpu
] = data
;
1034 set_cpus_allowed(current
, oldmask
);
1036 powernow_k8_cpu_exit_acpi(data
);
1042 static int __devexit
powernowk8_cpu_exit (struct cpufreq_policy
*pol
)
1044 struct powernow_k8_data
*data
= powernow_data
[pol
->cpu
];
1049 powernow_k8_cpu_exit_acpi(data
);
1051 cpufreq_frequency_table_put_attr(pol
->cpu
);
1053 kfree(data
->powernow_table
);
1059 static unsigned int powernowk8_get (unsigned int cpu
)
1061 struct powernow_k8_data
*data
= powernow_data
[cpu
];
1062 cpumask_t oldmask
= current
->cpus_allowed
;
1063 unsigned int khz
= 0;
1065 set_cpus_allowed(current
, cpumask_of_cpu(cpu
));
1066 if (smp_processor_id() != cpu
) {
1067 printk(KERN_ERR PFX
"limiting to CPU %d failed in powernowk8_get\n", cpu
);
1068 set_cpus_allowed(current
, oldmask
);
1073 if (query_current_values_with_pending_wait(data
))
1076 khz
= find_khz_freq_from_fid(data
->currfid
);
1079 preempt_enable_no_resched();
1080 set_cpus_allowed(current
, oldmask
);
1085 static struct freq_attr
* powernow_k8_attr
[] = {
1086 &cpufreq_freq_attr_scaling_available_freqs
,
1090 static struct cpufreq_driver cpufreq_amd64_driver
= {
1091 .verify
= powernowk8_verify
,
1092 .target
= powernowk8_target
,
1093 .init
= powernowk8_cpu_init
,
1094 .exit
= __devexit_p(powernowk8_cpu_exit
),
1095 .get
= powernowk8_get
,
1096 .name
= "powernow-k8",
1097 .owner
= THIS_MODULE
,
1098 .attr
= powernow_k8_attr
,
1101 /* driver entry point for init */
1102 static int __init
powernowk8_init(void)
1104 unsigned int i
, supported_cpus
= 0;
1106 for (i
=0; i
<NR_CPUS
; i
++) {
1109 if (check_supported_cpu(i
))
1113 if (supported_cpus
== num_online_cpus()) {
1114 printk(KERN_INFO PFX
"Found %d AMD Athlon 64 / Opteron processors (" VERSION
")\n",
1116 return cpufreq_register_driver(&cpufreq_amd64_driver
);
1122 /* driver entry point for term */
1123 static void __exit
powernowk8_exit(void)
1127 cpufreq_unregister_driver(&cpufreq_amd64_driver
);
1130 MODULE_AUTHOR("Paul Devriendt <paul.devriendt@amd.com>");
1131 MODULE_DESCRIPTION("AMD Athlon 64 and Opteron processor frequency driver.");
1132 MODULE_LICENSE("GPL");
1134 late_initcall(powernowk8_init
);
1135 module_exit(powernowk8_exit
);