blob: ad683ec2c57e45434b7458d30eb0b893aa5bdb94 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Borislav Petkov73860c62010-03-31 21:56:42 +02002 * (c) 2003-2010 Advanced Micro Devices, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Your use of this code is subject to the terms and conditions of the
4 * GNU general public license version 2. See "COPYING" or
5 * http://www.gnu.org/licenses/gpl.html
6 *
Dave Jones065b8072005-05-31 19:03:46 -07007 * Support : mark.langsdorf@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Based on the powernow-k7.c module written by Dave Jones.
Dave Jonesf4432c52008-10-20 13:31:45 -040010 * (C) 2003 Dave Jones on behalf of SuSE Labs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * (C) 2004 Dominik Brodowski <linux@brodo.de>
Pavel Macheka2531292010-07-18 14:27:13 +020012 * (C) 2004 Pavel Machek <pavel@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Licensed under the terms of the GNU GPL License version 2.
14 * Based upon datasheets & sample CPUs kindly provided by AMD.
15 *
16 * Valuable input gratefully received from Dave Jones, Pavel Machek,
Dave Jones1f729e02006-06-04 19:37:58 -040017 * Dominik Brodowski, Jacob Shin, and others.
Dave Jones065b8072005-05-31 19:03:46 -070018 * Originally developed by Paul Devriendt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Processor information obtained from Chapter 9 (Power and Thermal Management)
20 * of the "BIOS and Kernel Developer's Guide for the AMD Athlon 64 and AMD
21 * Opteron Processors" available for download from www.amd.com
22 *
Dave Jones2e3f8fa2006-05-30 17:25:14 -040023 * Tables for specific CPUs can be inferred from
Dave Jones065b8072005-05-31 19:03:46 -070024 * http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/30430.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
26
27#include <linux/kernel.h>
28#include <linux/smp.h>
29#include <linux/module.h>
30#include <linux/init.h>
31#include <linux/cpufreq.h>
32#include <linux/slab.h>
33#include <linux/string.h>
Dave Jones065b8072005-05-31 19:03:46 -070034#include <linux/cpumask.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080035#include <linux/sched.h> /* for current / set_cpus_allowed() */
Dave Jones0e64a0c2009-02-04 14:37:50 -050036#include <linux/io.h>
37#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/msr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/acpi.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080042#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <acpi/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define PFX "powernow-k8: "
Mark Langsdorfc5829cd2007-10-17 16:52:08 -050046#define VERSION "version 2.20.00"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include "powernow-k8.h"
Mark Langsdorfa2fed572010-03-18 18:41:46 +010048#include "mperf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/* serialize freq changes */
Ingo Molnar14cc3e22006-03-26 01:37:14 -080051static DEFINE_MUTEX(fidvid_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
travis@sgi.com2c6b8c02008-01-30 13:33:11 +010053static DEFINE_PER_CPU(struct powernow_k8_data *, powernow_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Dave Jones1f729e02006-06-04 19:37:58 -040055static int cpu_family = CPU_OPTERON;
56
Andreas Herrmanna8eb2842012-01-06 15:57:55 +010057/* array to map SW pstate number to acpi state */
58static u32 ps_to_as[8];
59
Borislav Petkov73860c62010-03-31 21:56:42 +020060/* core performance boost */
61static bool cpb_capable, cpb_enabled;
62static struct msr __percpu *msrs;
63
Mark Langsdorfa2fed572010-03-18 18:41:46 +010064static struct cpufreq_driver cpufreq_amd64_driver;
65
Dave Jones065b8072005-05-31 19:03:46 -070066#ifndef CONFIG_SMP
Rusty Russell7ad728f2009-03-13 14:49:50 +103067static inline const struct cpumask *cpu_core_mask(int cpu)
68{
69 return cpumask_of(0);
70}
Dave Jones065b8072005-05-31 19:03:46 -070071#endif
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/* Return a frequency in MHz, given an input fid */
74static u32 find_freq_from_fid(u32 fid)
75{
76 return 800 + (fid * 100);
77}
78
79/* Return a frequency in KHz, given an input fid */
80static u32 find_khz_freq_from_fid(u32 fid)
81{
82 return 1000 * find_freq_from_fid(fid);
83}
84
Dave Jones0e64a0c2009-02-04 14:37:50 -050085static u32 find_khz_freq_from_pstate(struct cpufreq_frequency_table *data,
Andreas Herrmanna8eb2842012-01-06 15:57:55 +010086 u32 pstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Andreas Herrmanna8eb2842012-01-06 15:57:55 +010088 return data[ps_to_as[pstate]].frequency;
Dave Jones1f729e02006-06-04 19:37:58 -040089}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* Return the vco fid for an input fid
92 *
93 * Each "low" fid has corresponding "high" fid, and you can get to "low" fids
94 * only from corresponding high fids. This returns "high" fid corresponding to
95 * "low" one.
96 */
97static u32 convert_fid_to_vco_fid(u32 fid)
98{
Dave Jones32ee8c32006-02-28 00:43:23 -050099 if (fid < HI_FID_TABLE_BOTTOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return 8 + (2 * fid);
Dave Jones32ee8c32006-02-28 00:43:23 -0500101 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
105/*
106 * Return 1 if the pending bit is set. Unless we just instructed the processor
107 * to transition to a new state, seeing this bit set is really bad news.
108 */
109static int pending_bit_stuck(void)
110{
111 u32 lo, hi;
112
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500113 if (cpu_family == CPU_HW_PSTATE)
Dave Jones1f729e02006-06-04 19:37:58 -0400114 return 0;
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 rdmsr(MSR_FIDVID_STATUS, lo, hi);
117 return lo & MSR_S_LO_CHANGE_PENDING ? 1 : 0;
118}
119
120/*
121 * Update the global current fid / vid values from the status msr.
122 * Returns 1 on error.
123 */
124static int query_current_values_with_pending_wait(struct powernow_k8_data *data)
125{
126 u32 lo, hi;
127 u32 i = 0;
128
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500129 if (cpu_family == CPU_HW_PSTATE) {
Naga Chumbalkar532cfee2009-06-11 15:26:48 +0000130 rdmsr(MSR_PSTATE_STATUS, lo, hi);
131 i = lo & HW_PSTATE_MASK;
132 data->currpstate = i;
Andreas Herrmanna266d9f2008-11-21 14:49:25 +0100133
Naga Chumbalkar532cfee2009-06-11 15:26:48 +0000134 /*
135 * a workaround for family 11h erratum 311 might cause
136 * an "out-of-range Pstate if the core is in Pstate-0
137 */
138 if ((boot_cpu_data.x86 == 0x11) && (i >= data->numps))
139 data->currpstate = HW_PSTATE_0;
140
Dave Jones1f729e02006-06-04 19:37:58 -0400141 return 0;
142 }
Dave Jones7153d962005-07-28 09:45:10 -0700143 do {
Dave Jones0213df72005-10-21 17:21:03 -0400144 if (i++ > 10000) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200145 pr_debug("detected change pending stuck\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 1;
147 }
148 rdmsr(MSR_FIDVID_STATUS, lo, hi);
Dave Jones7153d962005-07-28 09:45:10 -0700149 } while (lo & MSR_S_LO_CHANGE_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 data->currvid = hi & MSR_S_HI_CURRENT_VID;
152 data->currfid = lo & MSR_S_LO_CURRENT_FID;
153
154 return 0;
155}
156
157/* the isochronous relief time */
158static void count_off_irt(struct powernow_k8_data *data)
159{
160 udelay((1 << data->irt) * 10);
161 return;
162}
163
Simon Arlott27b46d72007-10-20 01:13:56 +0200164/* the voltage stabilization time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static void count_off_vst(struct powernow_k8_data *data)
166{
167 udelay(data->vstable * VST_UNITS_20US);
168 return;
169}
170
171/* need to init the control msr to a safe value (for each cpu) */
172static void fidvid_msr_init(void)
173{
174 u32 lo, hi;
175 u8 fid, vid;
176
177 rdmsr(MSR_FIDVID_STATUS, lo, hi);
178 vid = hi & MSR_S_HI_CURRENT_VID;
179 fid = lo & MSR_S_LO_CURRENT_FID;
180 lo = fid | (vid << MSR_C_LO_VID_SHIFT);
181 hi = MSR_C_HI_STP_GNT_BENIGN;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200182 pr_debug("cpu%d, init lo 0x%x, hi 0x%x\n", smp_processor_id(), lo, hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 wrmsr(MSR_FIDVID_CTL, lo, hi);
184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* write the new fid value along with the other control fields to the msr */
187static int write_new_fid(struct powernow_k8_data *data, u32 fid)
188{
189 u32 lo;
190 u32 savevid = data->currvid;
Dave Jones0213df72005-10-21 17:21:03 -0400191 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 if ((fid & INVALID_FID_MASK) || (data->currvid & INVALID_VID_MASK)) {
194 printk(KERN_ERR PFX "internal error - overflow on fid write\n");
195 return 1;
196 }
197
Dave Jones0e64a0c2009-02-04 14:37:50 -0500198 lo = fid;
199 lo |= (data->currvid << MSR_C_LO_VID_SHIFT);
200 lo |= MSR_C_LO_INIT_FID_VID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200202 pr_debug("writing fid 0x%x, lo 0x%x, hi 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 fid, lo, data->plllock * PLL_LOCK_CONVERSION);
204
Dave Jones0213df72005-10-21 17:21:03 -0400205 do {
206 wrmsr(MSR_FIDVID_CTL, lo, data->plllock * PLL_LOCK_CONVERSION);
207 if (i++ > 100) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500208 printk(KERN_ERR PFX
209 "Hardware error - pending bit very stuck - "
210 "no further pstate changes possible\n");
Chris Wright63172cb2005-10-21 16:56:08 -0700211 return 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500212 }
Dave Jones0213df72005-10-21 17:21:03 -0400213 } while (query_current_values_with_pending_wait(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 count_off_irt(data);
216
217 if (savevid != data->currvid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500218 printk(KERN_ERR PFX
219 "vid change on fid trans, old 0x%x, new 0x%x\n",
220 savevid, data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return 1;
222 }
223
224 if (fid != data->currfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500225 printk(KERN_ERR PFX
226 "fid trans failed, fid 0x%x, curr 0x%x\n", fid,
227 data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return 1;
229 }
230
231 return 0;
232}
233
234/* Write a new vid to the hardware */
235static int write_new_vid(struct powernow_k8_data *data, u32 vid)
236{
237 u32 lo;
238 u32 savefid = data->currfid;
Dave Jones0213df72005-10-21 17:21:03 -0400239 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 if ((data->currfid & INVALID_FID_MASK) || (vid & INVALID_VID_MASK)) {
242 printk(KERN_ERR PFX "internal error - overflow on vid write\n");
243 return 1;
244 }
245
Dave Jones0e64a0c2009-02-04 14:37:50 -0500246 lo = data->currfid;
247 lo |= (vid << MSR_C_LO_VID_SHIFT);
248 lo |= MSR_C_LO_INIT_FID_VID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200250 pr_debug("writing vid 0x%x, lo 0x%x, hi 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 vid, lo, STOP_GRANT_5NS);
252
Dave Jones0213df72005-10-21 17:21:03 -0400253 do {
254 wrmsr(MSR_FIDVID_CTL, lo, STOP_GRANT_5NS);
Dave Jones6df89002005-11-30 13:33:30 -0800255 if (i++ > 100) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500256 printk(KERN_ERR PFX "internal error - pending bit "
257 "very stuck - no further pstate "
258 "changes possible\n");
Dave Jones6df89002005-11-30 13:33:30 -0800259 return 1;
260 }
Dave Jones0213df72005-10-21 17:21:03 -0400261 } while (query_current_values_with_pending_wait(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 if (savefid != data->currfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500264 printk(KERN_ERR PFX "fid changed on vid trans, old "
265 "0x%x new 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 savefid, data->currfid);
267 return 1;
268 }
269
270 if (vid != data->currvid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500271 printk(KERN_ERR PFX "vid trans failed, vid 0x%x, "
272 "curr 0x%x\n",
273 vid, data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return 1;
275 }
276
277 return 0;
278}
279
280/*
281 * Reduce the vid by the max of step or reqvid.
282 * Decreasing vid codes represent increasing voltages:
Dave Jones841e40b2005-07-28 09:40:04 -0700283 * vid of 0 is 1.550V, vid of 0x1e is 0.800V, vid of VID_OFF is off.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500285static int decrease_vid_code_by_step(struct powernow_k8_data *data,
286 u32 reqvid, u32 step)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 if ((data->currvid - reqvid) > step)
289 reqvid = data->currvid - step;
290
291 if (write_new_vid(data, reqvid))
292 return 1;
293
294 count_off_vst(data);
295
296 return 0;
297}
298
Dave Jones1f729e02006-06-04 19:37:58 -0400299/* Change hardware pstate by single MSR write */
300static int transition_pstate(struct powernow_k8_data *data, u32 pstate)
301{
302 wrmsr(MSR_PSTATE_CTRL, pstate, 0);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500303 data->currpstate = pstate;
Dave Jones1f729e02006-06-04 19:37:58 -0400304 return 0;
305}
306
307/* Change Opteron/Athlon64 fid and vid, by the 3 phases. */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500308static int transition_fid_vid(struct powernow_k8_data *data,
309 u32 reqfid, u32 reqvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500311 if (core_voltage_pre_transition(data, reqvid, reqfid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return 1;
313
314 if (core_frequency_transition(data, reqfid))
315 return 1;
316
317 if (core_voltage_post_transition(data, reqvid))
318 return 1;
319
320 if (query_current_values_with_pending_wait(data))
321 return 1;
322
323 if ((reqfid != data->currfid) || (reqvid != data->currvid)) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500324 printk(KERN_ERR PFX "failed (cpu%d): req 0x%x 0x%x, "
325 "curr 0x%x 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 smp_processor_id(),
327 reqfid, reqvid, data->currfid, data->currvid);
328 return 1;
329 }
330
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200331 pr_debug("transitioned (cpu%d): new fid 0x%x, vid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 smp_processor_id(), data->currfid, data->currvid);
333
334 return 0;
335}
336
337/* Phase 1 - core voltage transition ... setup voltage */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500338static int core_voltage_pre_transition(struct powernow_k8_data *data,
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500339 u32 reqvid, u32 reqfid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 u32 rvosteps = data->rvo;
342 u32 savefid = data->currfid;
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500343 u32 maxvid, lo, rvomult = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200345 pr_debug("ph1 (cpu%d): start, currfid 0x%x, currvid 0x%x, "
Dave Jones0e64a0c2009-02-04 14:37:50 -0500346 "reqvid 0x%x, rvo 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 smp_processor_id(),
348 data->currfid, data->currvid, reqvid, data->rvo);
349
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500350 if ((savefid < LO_FID_TABLE_TOP) && (reqfid < LO_FID_TABLE_TOP))
351 rvomult = 2;
352 rvosteps *= rvomult;
Dave Jones065b8072005-05-31 19:03:46 -0700353 rdmsr(MSR_FIDVID_STATUS, lo, maxvid);
354 maxvid = 0x1f & (maxvid >> 16);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200355 pr_debug("ph1 maxvid=0x%x\n", maxvid);
Dave Jones065b8072005-05-31 19:03:46 -0700356 if (reqvid < maxvid) /* lower numbers are higher voltages */
357 reqvid = maxvid;
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 while (data->currvid > reqvid) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200360 pr_debug("ph1: curr 0x%x, req vid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 data->currvid, reqvid);
362 if (decrease_vid_code_by_step(data, reqvid, data->vidmvs))
363 return 1;
364 }
365
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500366 while ((rvosteps > 0) &&
367 ((rvomult * data->rvo + data->currvid) > reqvid)) {
Dave Jones065b8072005-05-31 19:03:46 -0700368 if (data->currvid == maxvid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 rvosteps = 0;
370 } else {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200371 pr_debug("ph1: changing vid for rvo, req 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 data->currvid - 1);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500373 if (decrease_vid_code_by_step(data, data->currvid-1, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return 1;
375 rvosteps--;
376 }
377 }
378
379 if (query_current_values_with_pending_wait(data))
380 return 1;
381
382 if (savefid != data->currfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500383 printk(KERN_ERR PFX "ph1 err, currfid changed 0x%x\n",
384 data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return 1;
386 }
387
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200388 pr_debug("ph1 complete, currfid 0x%x, currvid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 data->currfid, data->currvid);
390
391 return 0;
392}
393
394/* Phase 2 - core frequency transition */
395static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid)
396{
Dave Jones0e64a0c2009-02-04 14:37:50 -0500397 u32 vcoreqfid, vcocurrfid, vcofiddiff;
398 u32 fid_interval, savevid = data->currvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (data->currfid == reqfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500401 printk(KERN_ERR PFX "ph2 null fid transition 0x%x\n",
402 data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return 0;
404 }
405
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200406 pr_debug("ph2 (cpu%d): starting, currfid 0x%x, currvid 0x%x, "
Dave Jones0e64a0c2009-02-04 14:37:50 -0500407 "reqfid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 smp_processor_id(),
409 data->currfid, data->currvid, reqfid);
410
411 vcoreqfid = convert_fid_to_vco_fid(reqfid);
412 vcocurrfid = convert_fid_to_vco_fid(data->currfid);
413 vcofiddiff = vcocurrfid > vcoreqfid ? vcocurrfid - vcoreqfid
414 : vcoreqfid - vcocurrfid;
415
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500416 if ((reqfid <= LO_FID_TABLE_TOP) && (data->currfid <= LO_FID_TABLE_TOP))
417 vcofiddiff = 0;
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 while (vcofiddiff > 2) {
Langsdorf, Mark019a61b2005-11-29 14:18:03 -0600420 (data->currfid & 1) ? (fid_interval = 1) : (fid_interval = 2);
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (reqfid > data->currfid) {
423 if (data->currfid > LO_FID_TABLE_TOP) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500424 if (write_new_fid(data,
425 data->currfid + fid_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 } else {
428 if (write_new_fid
Dave Jones0e64a0c2009-02-04 14:37:50 -0500429 (data,
430 2 + convert_fid_to_vco_fid(data->currfid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433 } else {
Langsdorf, Mark019a61b2005-11-29 14:18:03 -0600434 if (write_new_fid(data, data->currfid - fid_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return 1;
436 }
437
438 vcocurrfid = convert_fid_to_vco_fid(data->currfid);
439 vcofiddiff = vcocurrfid > vcoreqfid ? vcocurrfid - vcoreqfid
440 : vcoreqfid - vcocurrfid;
441 }
442
443 if (write_new_fid(data, reqfid))
444 return 1;
445
446 if (query_current_values_with_pending_wait(data))
447 return 1;
448
449 if (data->currfid != reqfid) {
450 printk(KERN_ERR PFX
Dave Jones0e64a0c2009-02-04 14:37:50 -0500451 "ph2: mismatch, failed fid transition, "
452 "curr 0x%x, req 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 data->currfid, reqfid);
454 return 1;
455 }
456
457 if (savevid != data->currvid) {
458 printk(KERN_ERR PFX "ph2: vid changed, save 0x%x, curr 0x%x\n",
459 savevid, data->currvid);
460 return 1;
461 }
462
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200463 pr_debug("ph2 complete, currfid 0x%x, currvid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 data->currfid, data->currvid);
465
466 return 0;
467}
468
469/* Phase 3 - core voltage transition flow ... jump to the final vid. */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500470static int core_voltage_post_transition(struct powernow_k8_data *data,
471 u32 reqvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 u32 savefid = data->currfid;
474 u32 savereqvid = reqvid;
475
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200476 pr_debug("ph3 (cpu%d): starting, currfid 0x%x, currvid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 smp_processor_id(),
478 data->currfid, data->currvid);
479
480 if (reqvid != data->currvid) {
481 if (write_new_vid(data, reqvid))
482 return 1;
483
484 if (savefid != data->currfid) {
485 printk(KERN_ERR PFX
486 "ph3: bad fid change, save 0x%x, curr 0x%x\n",
487 savefid, data->currfid);
488 return 1;
489 }
490
491 if (data->currvid != reqvid) {
492 printk(KERN_ERR PFX
Dave Jones0e64a0c2009-02-04 14:37:50 -0500493 "ph3: failed vid transition\n, "
494 "req 0x%x, curr 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 reqvid, data->currvid);
496 return 1;
497 }
498 }
499
500 if (query_current_values_with_pending_wait(data))
501 return 1;
502
503 if (savereqvid != data->currvid) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200504 pr_debug("ph3 failed, currvid 0x%x\n", data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return 1;
506 }
507
508 if (savefid != data->currfid) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200509 pr_debug("ph3 failed, currfid changed 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 data->currfid);
511 return 1;
512 }
513
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200514 pr_debug("ph3 complete, currfid 0x%x, currvid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 data->currfid, data->currvid);
516
517 return 0;
518}
519
Rusty Russell1ff6e972009-06-12 20:55:37 +0930520static void check_supported_cpu(void *_rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 u32 eax, ebx, ecx, edx;
Rusty Russell1ff6e972009-06-12 20:55:37 +0930523 int *rc = _rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Rusty Russell1ff6e972009-06-12 20:55:37 +0930525 *rc = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Tejun Heo7b543a52010-12-18 16:30:05 +0100527 if (__this_cpu_read(cpu_info.x86_vendor) != X86_VENDOR_AMD)
Rusty Russell1ff6e972009-06-12 20:55:37 +0930528 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 eax = cpuid_eax(CPUID_PROCESSOR_SIGNATURE);
Dave Jones1f729e02006-06-04 19:37:58 -0400531 if (((eax & CPUID_XFAM) != CPUID_XFAM_K8) &&
532 ((eax & CPUID_XFAM) < CPUID_XFAM_10H))
Rusty Russell1ff6e972009-06-12 20:55:37 +0930533 return;
Dave Jones2c906ae2006-02-28 00:36:32 -0500534
Dave Jones1f729e02006-06-04 19:37:58 -0400535 if ((eax & CPUID_XFAM) == CPUID_XFAM_K8) {
536 if (((eax & CPUID_USE_XFAM_XMOD) != CPUID_USE_XFAM_XMOD) ||
Dave Jones99fbe1a2007-05-14 18:27:29 -0400537 ((eax & CPUID_XMOD) > CPUID_XMOD_REV_MASK)) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500538 printk(KERN_INFO PFX
539 "Processor cpuid %x not supported\n", eax);
Rusty Russell1ff6e972009-06-12 20:55:37 +0930540 return;
Dave Jones1f729e02006-06-04 19:37:58 -0400541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Dave Jones1f729e02006-06-04 19:37:58 -0400543 eax = cpuid_eax(CPUID_GET_MAX_CAPABILITIES);
544 if (eax < CPUID_FREQ_VOLT_CAPABILITIES) {
545 printk(KERN_INFO PFX
546 "No frequency change capabilities detected\n");
Rusty Russell1ff6e972009-06-12 20:55:37 +0930547 return;
Dave Jones1f729e02006-06-04 19:37:58 -0400548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Dave Jones1f729e02006-06-04 19:37:58 -0400550 cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500551 if ((edx & P_STATE_TRANSITION_CAPABLE)
552 != P_STATE_TRANSITION_CAPABLE) {
553 printk(KERN_INFO PFX
554 "Power state transitions not supported\n");
Rusty Russell1ff6e972009-06-12 20:55:37 +0930555 return;
Dave Jones1f729e02006-06-04 19:37:58 -0400556 }
557 } else { /* must be a HW Pstate capable processor */
558 cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx);
559 if ((edx & USE_HW_PSTATE) == USE_HW_PSTATE)
560 cpu_family = CPU_HW_PSTATE;
561 else
Rusty Russell1ff6e972009-06-12 20:55:37 +0930562 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564
Rusty Russell1ff6e972009-06-12 20:55:37 +0930565 *rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Dave Jones0e64a0c2009-02-04 14:37:50 -0500568static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst,
569 u8 maxvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
571 unsigned int j;
572 u8 lastfid = 0xff;
573
574 for (j = 0; j < data->numps; j++) {
575 if (pst[j].vid > LEAST_VID) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200576 printk(KERN_ERR FW_BUG PFX "vid %d invalid : 0x%x\n",
577 j, pst[j].vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return -EINVAL;
579 }
Dave Jones0e64a0c2009-02-04 14:37:50 -0500580 if (pst[j].vid < data->rvo) {
581 /* vid + rvo >= 0 */
Thomas Renninger2fd47092008-09-01 14:27:03 +0200582 printk(KERN_ERR FW_BUG PFX "0 vid exceeded with pstate"
583 " %d\n", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return -ENODEV;
585 }
Dave Jones0e64a0c2009-02-04 14:37:50 -0500586 if (pst[j].vid < maxvid + data->rvo) {
587 /* vid + rvo >= maxvid */
Thomas Renninger2fd47092008-09-01 14:27:03 +0200588 printk(KERN_ERR FW_BUG PFX "maxvid exceeded with pstate"
589 " %d\n", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return -ENODEV;
591 }
Jacob Shin8aae8282005-11-21 07:23:08 -0800592 if (pst[j].fid > MAX_FID) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200593 printk(KERN_ERR FW_BUG PFX "maxfid exceeded with pstate"
594 " %d\n", j);
Jacob Shin8aae8282005-11-21 07:23:08 -0800595 return -ENODEV;
596 }
Jacob Shin8aae8282005-11-21 07:23:08 -0800597 if (j && (pst[j].fid < HI_FID_TABLE_BOTTOM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /* Only first fid is allowed to be in "low" range */
Thomas Renninger2fd47092008-09-01 14:27:03 +0200599 printk(KERN_ERR FW_BUG PFX "two low fids - %d : "
600 "0x%x\n", j, pst[j].fid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return -EINVAL;
602 }
603 if (pst[j].fid < lastfid)
604 lastfid = pst[j].fid;
605 }
606 if (lastfid & 1) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200607 printk(KERN_ERR FW_BUG PFX "lastfid invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return -EINVAL;
609 }
610 if (lastfid > LO_FID_TABLE_TOP)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500611 printk(KERN_INFO FW_BUG PFX
612 "first fid not from lo freq table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 return 0;
615}
616
Kurt Roeckxf0adb132009-09-16 11:09:32 -0400617static void invalidate_entry(struct cpufreq_frequency_table *powernow_table,
618 unsigned int entry)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500619{
Kurt Roeckxf0adb132009-09-16 11:09:32 -0400620 powernow_table[entry].frequency = CPUFREQ_ENTRY_INVALID;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500621}
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623static void print_basics(struct powernow_k8_data *data)
624{
625 int j;
626 for (j = 0; j < data->numps; j++) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500627 if (data->powernow_table[j].frequency !=
628 CPUFREQ_ENTRY_INVALID) {
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500629 if (cpu_family == CPU_HW_PSTATE) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500630 printk(KERN_INFO PFX
631 " %d : pstate %d (%d MHz)\n", j,
Yinghai Lu4ae5c492007-11-20 19:38:27 -0800632 data->powernow_table[j].index,
Dave Jones9a60ddb2007-07-13 01:34:10 -0400633 data->powernow_table[j].frequency/1000);
Dave Jones1f729e02006-06-04 19:37:58 -0400634 } else {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500635 printk(KERN_INFO PFX
Thomas Renninger9e918692011-03-03 21:31:24 +0100636 "fid 0x%x (%d MHz), vid 0x%x\n",
Dave Jones9a60ddb2007-07-13 01:34:10 -0400637 data->powernow_table[j].index & 0xff,
638 data->powernow_table[j].frequency/1000,
639 data->powernow_table[j].index >> 8);
Dave Jones1f729e02006-06-04 19:37:58 -0400640 }
641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643 if (data->batps)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500644 printk(KERN_INFO PFX "Only %d pstates on battery\n",
645 data->batps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
Andreas Herrmannca446d02009-04-22 13:48:33 +0200648static u32 freq_from_fid_did(u32 fid, u32 did)
649{
650 u32 mhz = 0;
651
652 if (boot_cpu_data.x86 == 0x10)
653 mhz = (100 * (fid + 0x10)) >> did;
654 else if (boot_cpu_data.x86 == 0x11)
655 mhz = (100 * (fid + 8)) >> did;
656 else
657 BUG();
658
659 return mhz * 1000;
660}
661
Dave Jones0e64a0c2009-02-04 14:37:50 -0500662static int fill_powernow_table(struct powernow_k8_data *data,
663 struct pst_s *pst, u8 maxvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 struct cpufreq_frequency_table *powernow_table;
666 unsigned int j;
667
Dave Jones0e64a0c2009-02-04 14:37:50 -0500668 if (data->batps) {
669 /* use ACPI support to get full speed on mains power */
670 printk(KERN_WARNING PFX
671 "Only %d pstates usable (use ACPI driver for full "
672 "range\n", data->batps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 data->numps = data->batps;
674 }
675
Dave Jones0e64a0c2009-02-04 14:37:50 -0500676 for (j = 1; j < data->numps; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (pst[j-1].fid >= pst[j].fid) {
678 printk(KERN_ERR PFX "PST out of sequence\n");
679 return -EINVAL;
680 }
681 }
682
683 if (data->numps < 2) {
684 printk(KERN_ERR PFX "no p states to transition\n");
685 return -ENODEV;
686 }
687
688 if (check_pst_table(data, pst, maxvid))
689 return -EINVAL;
690
691 powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table)
692 * (data->numps + 1)), GFP_KERNEL);
693 if (!powernow_table) {
694 printk(KERN_ERR PFX "powernow_table memory alloc failure\n");
695 return -ENOMEM;
696 }
697
698 for (j = 0; j < data->numps; j++) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500699 int freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 powernow_table[j].index = pst[j].fid; /* lower 8 bits */
701 powernow_table[j].index |= (pst[j].vid << 8); /* upper 8 bits */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500702 freq = find_khz_freq_from_fid(pst[j].fid);
703 powernow_table[j].frequency = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705 powernow_table[data->numps].frequency = CPUFREQ_TABLE_END;
706 powernow_table[data->numps].index = 0;
707
708 if (query_current_values_with_pending_wait(data)) {
709 kfree(powernow_table);
710 return -EIO;
711 }
712
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200713 pr_debug("cfid 0x%x, cvid 0x%x\n", data->currfid, data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 data->powernow_table = powernow_table;
Rusty Russell7ad728f2009-03-13 14:49:50 +1030715 if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu)
Mark Langsdorf2e497622007-04-30 14:15:05 -0500716 print_basics(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 for (j = 0; j < data->numps; j++)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500719 if ((pst[j].fid == data->currfid) &&
720 (pst[j].vid == data->currvid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return 0;
722
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200723 pr_debug("currfid/vid do not match PST, ignoring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return 0;
725}
726
727/* Find and validate the PSB/PST table in BIOS. */
728static int find_psb_table(struct powernow_k8_data *data)
729{
730 struct psb_s *psb;
731 unsigned int i;
732 u32 mvs;
733 u8 maxvid;
734 u32 cpst = 0;
735 u32 thiscpuid;
736
737 for (i = 0xc0000; i < 0xffff0; i += 0x10) {
738 /* Scan BIOS looking for the signature. */
739 /* It can not be at ffff0 - it is too big. */
740
741 psb = phys_to_virt(i);
742 if (memcmp(psb, PSB_ID_STRING, PSB_ID_STRING_LEN) != 0)
743 continue;
744
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200745 pr_debug("found PSB header at 0x%p\n", psb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200747 pr_debug("table vers: 0x%x\n", psb->tableversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (psb->tableversion != PSB_VERSION_1_4) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200749 printk(KERN_ERR FW_BUG PFX "PSB table is not v1.4\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return -ENODEV;
751 }
752
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200753 pr_debug("flags: 0x%x\n", psb->flags1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (psb->flags1) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200755 printk(KERN_ERR FW_BUG PFX "unknown flags\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return -ENODEV;
757 }
758
759 data->vstable = psb->vstable;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200760 pr_debug("voltage stabilization time: %d(*20us)\n",
Dave Jones0e64a0c2009-02-04 14:37:50 -0500761 data->vstable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200763 pr_debug("flags2: 0x%x\n", psb->flags2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 data->rvo = psb->flags2 & 3;
765 data->irt = ((psb->flags2) >> 2) & 3;
766 mvs = ((psb->flags2) >> 4) & 3;
767 data->vidmvs = 1 << mvs;
768 data->batps = ((psb->flags2) >> 6) & 3;
769
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200770 pr_debug("ramp voltage offset: %d\n", data->rvo);
771 pr_debug("isochronous relief time: %d\n", data->irt);
772 pr_debug("maximum voltage step: %d - 0x%x\n", mvs, data->vidmvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200774 pr_debug("numpst: 0x%x\n", psb->num_tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 cpst = psb->num_tables;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500776 if ((psb->cpuid == 0x00000fc0) ||
777 (psb->cpuid == 0x00000fe0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 thiscpuid = cpuid_eax(CPUID_PROCESSOR_SIGNATURE);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500779 if ((thiscpuid == 0x00000fc0) ||
780 (thiscpuid == 0x00000fe0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 cpst = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783 if (cpst != 1) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200784 printk(KERN_ERR FW_BUG PFX "numpst must be 1\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return -ENODEV;
786 }
787
788 data->plllock = psb->plllocktime;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200789 pr_debug("plllocktime: 0x%x (units 1us)\n", psb->plllocktime);
790 pr_debug("maxfid: 0x%x\n", psb->maxfid);
791 pr_debug("maxvid: 0x%x\n", psb->maxvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 maxvid = psb->maxvid;
793
794 data->numps = psb->numps;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200795 pr_debug("numpstates: 0x%x\n", data->numps);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500796 return fill_powernow_table(data,
797 (struct pst_s *)(psb+1), maxvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799 /*
800 * If you see this message, complain to BIOS manufacturer. If
801 * he tells you "we do not support Linux" or some similar
802 * nonsense, remember that Windows 2000 uses the same legacy
803 * mechanism that the old Linux PSB driver uses. Tell them it
804 * is broken with Windows 2000.
805 *
806 * The reference to the AMD documentation is chapter 9 in the
807 * BIOS and Kernel Developer's Guide, which is available on
808 * www.amd.com
809 */
Thomas Renninger79cc56a2009-02-04 11:56:11 +0100810 printk(KERN_ERR FW_BUG PFX "No PSB or ACPI _PSS objects\n");
Marti Raudsepp298decf2010-01-20 19:19:33 +0200811 printk(KERN_ERR PFX "Make sure that your BIOS is up to date"
812 " and Cool'N'Quiet support is enabled in BIOS setup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return -ENODEV;
814}
815
Dave Jones0e64a0c2009-02-04 14:37:50 -0500816static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data,
817 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Lin Ming439913f2010-01-28 10:53:19 +0800819 u64 control;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500820
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700821 if (!data->acpi_data.state_count || (cpu_family == CPU_HW_PSTATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return;
823
Luis Henriques21335d02009-04-23 19:45:04 +0100824 control = data->acpi_data.states[index].control;
825 data->irt = (control >> IRT_SHIFT) & IRT_MASK;
826 data->rvo = (control >> RVO_SHIFT) & RVO_MASK;
827 data->exttype = (control >> EXT_TYPE_SHIFT) & EXT_TYPE_MASK;
828 data->plllock = (control >> PLL_L_SHIFT) & PLL_L_MASK;
829 data->vidmvs = 1 << ((control >> MVS_SHIFT) & MVS_MASK);
830 data->vstable = (control >> VST_SHIFT) & VST_MASK;
831}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data)
834{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 struct cpufreq_frequency_table *powernow_table;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800836 int ret_val = -ENODEV;
Lin Ming439913f2010-01-28 10:53:19 +0800837 u64 control, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700839 if (acpi_processor_register_performance(&data->acpi_data, data->cpu)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200840 pr_debug("register performance failed: bad ACPI data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return -EIO;
842 }
843
844 /* verify the data contained in the ACPI structures */
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700845 if (data->acpi_data.state_count <= 1) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200846 pr_debug("No ACPI P-States\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 goto err_out;
848 }
849
Dave Jones2c701b12009-06-05 12:37:07 -0400850 control = data->acpi_data.control_register.space_id;
851 status = data->acpi_data.status_register.space_id;
852
853 if ((control != ACPI_ADR_SPACE_FIXED_HARDWARE) ||
854 (status != ACPI_ADR_SPACE_FIXED_HARDWARE)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200855 pr_debug("Invalid control/status registers (%llx - %llx)\n",
Dave Jones2c701b12009-06-05 12:37:07 -0400856 control, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 goto err_out;
858 }
859
860 /* fill in data->powernow_table */
861 powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table)
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700862 * (data->acpi_data.state_count + 1)), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (!powernow_table) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200864 pr_debug("powernow_table memory alloc failure\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 goto err_out;
866 }
867
Mark Langsdorfdb39d552009-08-21 19:15:28 -0500868 /* fill in data */
869 data->numps = data->acpi_data.state_count;
870 powernow_k8_acpi_pst_values(data, 0);
871
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500872 if (cpu_family == CPU_HW_PSTATE)
Dave Jones1f729e02006-06-04 19:37:58 -0400873 ret_val = fill_powernow_table_pstate(data, powernow_table);
874 else
875 ret_val = fill_powernow_table_fidvid(data, powernow_table);
876 if (ret_val)
877 goto err_out_mem;
878
Dave Jones0e64a0c2009-02-04 14:37:50 -0500879 powernow_table[data->acpi_data.state_count].frequency =
880 CPUFREQ_TABLE_END;
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700881 powernow_table[data->acpi_data.state_count].index = 0;
Dave Jones1f729e02006-06-04 19:37:58 -0400882 data->powernow_table = powernow_table;
883
Rusty Russell7ad728f2009-03-13 14:49:50 +1030884 if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu)
Mark Langsdorf2e497622007-04-30 14:15:05 -0500885 print_basics(data);
Dave Jones1f729e02006-06-04 19:37:58 -0400886
887 /* notify BIOS that we exist */
888 acpi_processor_notify_smm(THIS_MODULE);
889
Yinghai Lueaa958402009-06-06 14:51:36 -0700890 if (!zalloc_cpumask_var(&data->acpi_data.shared_cpu_map, GFP_KERNEL)) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800891 printk(KERN_ERR PFX
892 "unable to alloc powernow_k8_data cpumask\n");
893 ret_val = -ENOMEM;
894 goto err_out_mem;
895 }
896
Dave Jones1f729e02006-06-04 19:37:58 -0400897 return 0;
898
899err_out_mem:
900 kfree(powernow_table);
901
902err_out:
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700903 acpi_processor_unregister_performance(&data->acpi_data, data->cpu);
Dave Jones1f729e02006-06-04 19:37:58 -0400904
Dave Jones0e64a0c2009-02-04 14:37:50 -0500905 /* data->acpi_data.state_count informs us at ->exit()
906 * whether ACPI was used */
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700907 data->acpi_data.state_count = 0;
Dave Jones1f729e02006-06-04 19:37:58 -0400908
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800909 return ret_val;
Dave Jones1f729e02006-06-04 19:37:58 -0400910}
911
Dave Jones0e64a0c2009-02-04 14:37:50 -0500912static int fill_powernow_table_pstate(struct powernow_k8_data *data,
913 struct cpufreq_frequency_table *powernow_table)
Dave Jones1f729e02006-06-04 19:37:58 -0400914{
915 int i;
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500916 u32 hi = 0, lo = 0;
Borislav Petkovb30d3302010-07-08 18:05:14 +0200917 rdmsr(MSR_PSTATE_CUR_LIMIT, lo, hi);
918 data->max_hw_pstate = (lo & HW_PSTATE_MAX_MASK) >> HW_PSTATE_MAX_SHIFT;
Dave Jones1f729e02006-06-04 19:37:58 -0400919
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700920 for (i = 0; i < data->acpi_data.state_count; i++) {
Dave Jones1f729e02006-06-04 19:37:58 -0400921 u32 index;
Dave Jones1f729e02006-06-04 19:37:58 -0400922
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700923 index = data->acpi_data.states[i].control & HW_PSTATE_MASK;
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500924 if (index > data->max_hw_pstate) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500925 printk(KERN_ERR PFX "invalid pstate %d - "
926 "bad value %d.\n", i, index);
927 printk(KERN_ERR PFX "Please report to BIOS "
928 "manufacturer\n");
Kurt Roeckxf0adb132009-09-16 11:09:32 -0400929 invalidate_entry(powernow_table, i);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500930 continue;
Dave Jones1f729e02006-06-04 19:37:58 -0400931 }
Andreas Herrmanna8eb2842012-01-06 15:57:55 +0100932
933 ps_to_as[index] = i;
934
Andreas Herrmannca446d02009-04-22 13:48:33 +0200935 /* Frequency may be rounded for these */
Mark Langsdorf67937062010-03-31 21:56:45 +0200936 if ((boot_cpu_data.x86 == 0x10 && boot_cpu_data.x86_model < 10)
937 || boot_cpu_data.x86 == 0x11) {
Andreas Herrmann201bf0f2012-01-06 15:56:31 +0100938
939 rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi);
940 if (!(hi & HW_PSTATE_VALID_MASK)) {
941 pr_debug("invalid pstate %d, ignoring\n", index);
942 invalidate_entry(powernow_table, i);
943 continue;
944 }
945
Andreas Herrmannca446d02009-04-22 13:48:33 +0200946 powernow_table[i].frequency =
947 freq_from_fid_did(lo & 0x3f, (lo >> 6) & 7);
948 } else
949 powernow_table[i].frequency =
950 data->acpi_data.states[i].core_frequency * 1000;
Andreas Herrmann201bf0f2012-01-06 15:56:31 +0100951
952 powernow_table[i].index = index;
Dave Jones1f729e02006-06-04 19:37:58 -0400953 }
954 return 0;
955}
956
Dave Jones0e64a0c2009-02-04 14:37:50 -0500957static int fill_powernow_table_fidvid(struct powernow_k8_data *data,
958 struct cpufreq_frequency_table *powernow_table)
Dave Jones1f729e02006-06-04 19:37:58 -0400959{
960 int i;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500961
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700962 for (i = 0; i < data->acpi_data.state_count; i++) {
Dave Jones094ce7f2005-07-29 12:55:40 -0700963 u32 fid;
964 u32 vid;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500965 u32 freq, index;
Lin Ming439913f2010-01-28 10:53:19 +0800966 u64 status, control;
Dave Jones094ce7f2005-07-29 12:55:40 -0700967
968 if (data->exttype) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500969 status = data->acpi_data.states[i].status;
970 fid = status & EXT_FID_MASK;
971 vid = (status >> VID_SHIFT) & EXT_VID_MASK;
Dave Jones841e40b2005-07-28 09:40:04 -0700972 } else {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500973 control = data->acpi_data.states[i].control;
974 fid = control & FID_MASK;
975 vid = (control >> VID_SHIFT) & VID_MASK;
Dave Jones841e40b2005-07-28 09:40:04 -0700976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200978 pr_debug(" %d : fid 0x%x, vid 0x%x\n", i, fid, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Dave Jones0e64a0c2009-02-04 14:37:50 -0500980 index = fid | (vid<<8);
981 powernow_table[i].index = index;
982
983 freq = find_khz_freq_from_fid(fid);
984 powernow_table[i].frequency = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 /* verify frequency is OK */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500987 if ((freq > (MAX_FREQ * 1000)) || (freq < (MIN_FREQ * 1000))) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200988 pr_debug("invalid freq %u kHz, ignoring\n", freq);
Kurt Roeckxf0adb132009-09-16 11:09:32 -0400989 invalidate_entry(powernow_table, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 continue;
991 }
992
Dave Jones0e64a0c2009-02-04 14:37:50 -0500993 /* verify voltage is OK -
994 * BIOSs are using "off" to indicate invalid */
Dave Jones841e40b2005-07-28 09:40:04 -0700995 if (vid == VID_OFF) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200996 pr_debug("invalid vid %u, ignoring\n", vid);
Kurt Roeckxf0adb132009-09-16 11:09:32 -0400997 invalidate_entry(powernow_table, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 continue;
999 }
1000
Dave Jones0e64a0c2009-02-04 14:37:50 -05001001 if (freq != (data->acpi_data.states[i].core_frequency * 1000)) {
1002 printk(KERN_INFO PFX "invalid freq entries "
1003 "%u kHz vs. %u kHz\n", freq,
1004 (unsigned int)
1005 (data->acpi_data.states[i].core_frequency
1006 * 1000));
Kurt Roeckxf0adb132009-09-16 11:09:32 -04001007 invalidate_entry(powernow_table, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 continue;
1009 }
1010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
1014static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data)
1015{
Linus Torvaldsf607e3a2008-08-19 13:34:59 -07001016 if (data->acpi_data.state_count)
Dave Jones0e64a0c2009-02-04 14:37:50 -05001017 acpi_processor_unregister_performance(&data->acpi_data,
1018 data->cpu);
Rusty Russell2fdf66b2008-12-31 18:08:47 -08001019 free_cpumask_var(data->acpi_data.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Mark Langsdorf732553e2009-02-03 17:46:43 +01001022static int get_transition_latency(struct powernow_k8_data *data)
1023{
1024 int max_latency = 0;
1025 int i;
1026 for (i = 0; i < data->acpi_data.state_count; i++) {
1027 int cur_latency = data->acpi_data.states[i].transition_latency
1028 + data->acpi_data.states[i].bus_master_latency;
1029 if (cur_latency > max_latency)
1030 max_latency = cur_latency;
1031 }
Thomas Renninger86e13682009-04-22 13:48:30 +02001032 if (max_latency == 0) {
1033 /*
Borislav Petkovc2f4a2c2010-07-08 17:55:30 +02001034 * Fam 11h and later may return 0 as transition latency. This
1035 * is intended and means "very fast". While cpufreq core and
1036 * governors currently can handle that gracefully, better set it
1037 * to 1 to avoid problems in the future.
Thomas Renninger86e13682009-04-22 13:48:30 +02001038 */
Borislav Petkovc2f4a2c2010-07-08 17:55:30 +02001039 if (boot_cpu_data.x86 < 0x11)
Thomas Renninger86e13682009-04-22 13:48:30 +02001040 printk(KERN_ERR FW_WARN PFX "Invalid zero transition "
1041 "latency\n");
1042 max_latency = 1;
1043 }
Mark Langsdorf732553e2009-02-03 17:46:43 +01001044 /* value in usecs, needs to be in nanoseconds */
1045 return 1000 * max_latency;
1046}
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048/* Take a frequency, and issue the fid/vid transition command */
Dave Jones0e64a0c2009-02-04 14:37:50 -05001049static int transition_frequency_fidvid(struct powernow_k8_data *data,
1050 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Dave Jones1f729e02006-06-04 19:37:58 -04001052 u32 fid = 0;
1053 u32 vid = 0;
Dave Jones065b8072005-05-31 19:03:46 -07001054 int res, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 struct cpufreq_freqs freqs;
1056
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001057 pr_debug("cpu %d transition to index %u\n", smp_processor_id(), index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Dave Jones1f729e02006-06-04 19:37:58 -04001059 /* fid/vid correctness check for k8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /* fid are the lower 8 bits of the index we stored into
Dave Jones1f729e02006-06-04 19:37:58 -04001061 * the cpufreq frequency table in find_psb_table, vid
1062 * are the upper 8 bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 fid = data->powernow_table[index].index & 0xFF;
1065 vid = (data->powernow_table[index].index & 0xFF00) >> 8;
1066
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001067 pr_debug("table matched fid 0x%x, giving vid 0x%x\n", fid, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 if (query_current_values_with_pending_wait(data))
1070 return 1;
1071
1072 if ((data->currvid == vid) && (data->currfid == fid)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001073 pr_debug("target matches current values (fid 0x%x, vid 0x%x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 fid, vid);
1075 return 0;
1076 }
1077
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001078 pr_debug("cpu %d, changing to fid 0x%x, vid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 smp_processor_id(), fid, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 freqs.old = find_khz_freq_from_fid(data->currfid);
1081 freqs.new = find_khz_freq_from_fid(fid);
Dave Jones1f729e02006-06-04 19:37:58 -04001082
Rusty Russell8e7c2592009-06-12 20:58:37 +09301083 for_each_cpu(i, data->available_cores) {
Dave Jones065b8072005-05-31 19:03:46 -07001084 freqs.cpu = i;
1085 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 res = transition_fid_vid(data, fid, vid);
Konrad Rzeszutek Wilka9d3d202011-06-16 15:36:39 -04001089 if (res)
1090 return res;
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 freqs.new = find_khz_freq_from_fid(data->currfid);
Dave Jones1f729e02006-06-04 19:37:58 -04001093
Rusty Russell8e7c2592009-06-12 20:58:37 +09301094 for_each_cpu(i, data->available_cores) {
Dave Jones1f729e02006-06-04 19:37:58 -04001095 freqs.cpu = i;
1096 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
1097 }
1098 return res;
1099}
1100
1101/* Take a frequency, and issue the hardware pstate transition command */
Dave Jones0e64a0c2009-02-04 14:37:50 -05001102static int transition_frequency_pstate(struct powernow_k8_data *data,
1103 unsigned int index)
Dave Jones1f729e02006-06-04 19:37:58 -04001104{
Dave Jones1f729e02006-06-04 19:37:58 -04001105 u32 pstate = 0;
1106 int res, i;
1107 struct cpufreq_freqs freqs;
1108
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001109 pr_debug("cpu %d transition to index %u\n", smp_processor_id(), index);
Dave Jones1f729e02006-06-04 19:37:58 -04001110
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001111 /* get MSR index for hardware pstate transition */
Dave Jones1f729e02006-06-04 19:37:58 -04001112 pstate = index & HW_PSTATE_MASK;
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001113 if (pstate > data->max_hw_pstate)
Konrad Rzeszutek Wilkfbb5b892011-06-16 15:36:40 -04001114 return -EINVAL;
1115
Dave Jones0e64a0c2009-02-04 14:37:50 -05001116 freqs.old = find_khz_freq_from_pstate(data->powernow_table,
1117 data->currpstate);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001118 freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001119
Rusty Russell8e7c2592009-06-12 20:58:37 +09301120 for_each_cpu(i, data->available_cores) {
Dave Jones1f729e02006-06-04 19:37:58 -04001121 freqs.cpu = i;
1122 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1123 }
1124
1125 res = transition_pstate(data, pstate);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001126 freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001127
Rusty Russell8e7c2592009-06-12 20:58:37 +09301128 for_each_cpu(i, data->available_cores) {
Dave Jones065b8072005-05-31 19:03:46 -07001129 freqs.cpu = i;
1130 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
Dave Jones2e3f8fa2006-05-30 17:25:14 -04001131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return res;
1133}
1134
1135/* Driver entry point to switch to the target frequency */
Dave Jones0e64a0c2009-02-04 14:37:50 -05001136static int powernowk8_target(struct cpufreq_policy *pol,
1137 unsigned targfreq, unsigned relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
Rusty Russellb8cbe7e2009-11-03 14:57:56 +10301139 cpumask_var_t oldmask;
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001140 struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
Adrian Bunk91800532006-04-19 00:07:28 +02001141 u32 checkfid;
1142 u32 checkvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 unsigned int newstate;
1144 int ret = -EIO;
1145
Jacob Shin4211a302006-04-07 19:49:51 +02001146 if (!data)
1147 return -EINVAL;
1148
Adrian Bunk91800532006-04-19 00:07:28 +02001149 checkfid = data->currfid;
1150 checkvid = data->currvid;
1151
Rusty Russellb8cbe7e2009-11-03 14:57:56 +10301152 /* only run on specific CPU from here on. */
1153 /* This is poor form: use a workqueue or smp_call_function_single */
1154 if (!alloc_cpumask_var(&oldmask, GFP_KERNEL))
1155 return -ENOMEM;
1156
Rusty Russella4636812009-12-17 11:43:29 -06001157 cpumask_copy(oldmask, tsk_cpus_allowed(current));
Rusty Russellb8cbe7e2009-11-03 14:57:56 +10301158 set_cpus_allowed_ptr(current, cpumask_of(pol->cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 if (smp_processor_id() != pol->cpu) {
Jacob Shin8aae8282005-11-21 07:23:08 -08001161 printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 goto err_out;
1163 }
1164
1165 if (pending_bit_stuck()) {
1166 printk(KERN_ERR PFX "failing targ, change pending bit set\n");
1167 goto err_out;
1168 }
1169
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001170 pr_debug("targ: cpu %d, %d kHz, min %d, max %d, relation %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 pol->cpu, targfreq, pol->min, pol->max, relation);
1172
Dave Jones83844512006-05-30 17:43:54 -04001173 if (query_current_values_with_pending_wait(data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001176 if (cpu_family != CPU_HW_PSTATE) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001177 pr_debug("targ: curr fid 0x%x, vid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 data->currfid, data->currvid);
1179
Dave Jones0e64a0c2009-02-04 14:37:50 -05001180 if ((checkvid != data->currvid) ||
1181 (checkfid != data->currfid)) {
Dave Jones1f729e02006-06-04 19:37:58 -04001182 printk(KERN_INFO PFX
Dave Jones0e64a0c2009-02-04 14:37:50 -05001183 "error - out of sync, fix 0x%x 0x%x, "
1184 "vid 0x%x 0x%x\n",
1185 checkfid, data->currfid,
1186 checkvid, data->currvid);
Dave Jones1f729e02006-06-04 19:37:58 -04001187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 }
1189
Dave Jones0e64a0c2009-02-04 14:37:50 -05001190 if (cpufreq_frequency_table_target(pol, data->powernow_table,
1191 targfreq, relation, &newstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 goto err_out;
1193
Ingo Molnar14cc3e22006-03-26 01:37:14 -08001194 mutex_lock(&fidvid_mutex);
Dave Jones065b8072005-05-31 19:03:46 -07001195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 powernow_k8_acpi_pst_values(data, newstate);
1197
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001198 if (cpu_family == CPU_HW_PSTATE)
Andreas Herrmanna8eb2842012-01-06 15:57:55 +01001199 ret = transition_frequency_pstate(data,
1200 data->powernow_table[newstate].index);
Dave Jones1f729e02006-06-04 19:37:58 -04001201 else
1202 ret = transition_frequency_fidvid(data, newstate);
1203 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 printk(KERN_ERR PFX "transition frequency failed\n");
1205 ret = 1;
Ingo Molnar14cc3e22006-03-26 01:37:14 -08001206 mutex_unlock(&fidvid_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 goto err_out;
1208 }
Ingo Molnar14cc3e22006-03-26 01:37:14 -08001209 mutex_unlock(&fidvid_mutex);
Dave Jones065b8072005-05-31 19:03:46 -07001210
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001211 if (cpu_family == CPU_HW_PSTATE)
Dave Jones0e64a0c2009-02-04 14:37:50 -05001212 pol->cur = find_khz_freq_from_pstate(data->powernow_table,
Andreas Herrmanna8eb2842012-01-06 15:57:55 +01001213 data->powernow_table[newstate].index);
Dave Jones1f729e02006-06-04 19:37:58 -04001214 else
1215 pol->cur = find_khz_freq_from_fid(data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 ret = 0;
1217
1218err_out:
Rusty Russellb8cbe7e2009-11-03 14:57:56 +10301219 set_cpus_allowed_ptr(current, oldmask);
1220 free_cpumask_var(oldmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return ret;
1222}
1223
1224/* Driver entry point to verify the policy and range of frequencies */
1225static int powernowk8_verify(struct cpufreq_policy *pol)
1226{
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001227 struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Jacob Shin4211a302006-04-07 19:49:51 +02001229 if (!data)
1230 return -EINVAL;
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return cpufreq_frequency_table_verify(pol, data->powernow_table);
1233}
1234
Rusty Russell1ff6e972009-06-12 20:55:37 +09301235struct init_on_cpu {
1236 struct powernow_k8_data *data;
1237 int rc;
1238};
1239
1240static void __cpuinit powernowk8_cpu_init_on_cpu(void *_init_on_cpu)
1241{
1242 struct init_on_cpu *init_on_cpu = _init_on_cpu;
1243
1244 if (pending_bit_stuck()) {
1245 printk(KERN_ERR PFX "failing init, change pending bit set\n");
1246 init_on_cpu->rc = -ENODEV;
1247 return;
1248 }
1249
1250 if (query_current_values_with_pending_wait(init_on_cpu->data)) {
1251 init_on_cpu->rc = -ENODEV;
1252 return;
1253 }
1254
1255 if (cpu_family == CPU_OPTERON)
1256 fidvid_msr_init();
1257
1258 init_on_cpu->rc = 0;
1259}
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261/* per CPU init entry point to the driver */
Andi Kleenaa41eb92006-01-16 01:56:36 +01001262static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
Andrew Mortonb394f1d2009-06-10 12:41:37 -07001264 static const char ACPI_PSS_BIOS_BUG_MSG[] =
1265 KERN_ERR FW_BUG PFX "No compatible ACPI _PSS objects found.\n"
Joe Perchesad361c92009-07-06 13:05:40 -07001266 FW_BUG PFX "Try again with latest BIOS.\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 struct powernow_k8_data *data;
Rusty Russell1ff6e972009-06-12 20:55:37 +09301268 struct init_on_cpu init_on_cpu;
Andi Kleend7fa7062006-04-07 19:49:48 +02001269 int rc;
Mark Langsdorfa2fed572010-03-18 18:41:46 +01001270 struct cpuinfo_x86 *c = &cpu_data(pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Jacob Shin8aae8282005-11-21 07:23:08 -08001272 if (!cpu_online(pol->cpu))
1273 return -ENODEV;
1274
Rusty Russell1ff6e972009-06-12 20:55:37 +09301275 smp_call_function_single(pol->cpu, check_supported_cpu, &rc, 1);
1276 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return -ENODEV;
1278
Dave Jonesbfdc7082005-10-20 15:16:15 -07001279 data = kzalloc(sizeof(struct powernow_k8_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (!data) {
1281 printk(KERN_ERR PFX "unable to alloc powernow_k8_data");
1282 return -ENOMEM;
1283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 data->cpu = pol->cpu;
Andreas Herrmanna266d9f2008-11-21 14:49:25 +01001286 data->currpstate = HW_PSTATE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Rusty Russella0abd522009-02-16 17:31:58 -06001288 if (powernow_k8_cpu_init_acpi(data)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 /*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03001290 * Use the PSB BIOS structure. This is only available on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 * an UP version, and is deprecated by AMD.
1292 */
Randy Dunlap9ed059e2006-06-20 22:32:56 -07001293 if (num_online_cpus() != 1) {
Thomas Renningerdf182972009-04-22 13:48:32 +02001294 printk_once(ACPI_PSS_BIOS_BUG_MSG);
Dave Jones0cb8bc22009-02-18 14:11:00 -05001295 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
1297 if (pol->cpu != 0) {
Thomas Renninger2fd47092008-09-01 14:27:03 +02001298 printk(KERN_ERR FW_BUG PFX "No ACPI _PSS objects for "
1299 "CPU other than CPU0. Complain to your BIOS "
1300 "vendor.\n");
Dave Jones0cb8bc22009-02-18 14:11:00 -05001301 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
1303 rc = find_psb_table(data);
Dave Jones0cb8bc22009-02-18 14:11:00 -05001304 if (rc)
1305 goto err_out;
1306
Mark Langsdorf732553e2009-02-03 17:46:43 +01001307 /* Take a crude guess here.
1308 * That guess was in microseconds, so multiply with 1000 */
1309 pol->cpuinfo.transition_latency = (
1310 ((data->rvo + 8) * data->vstable * VST_UNITS_20US) +
1311 ((1 << data->irt) * 30)) * 1000;
1312 } else /* ACPI _PSS objects available */
1313 pol->cpuinfo.transition_latency = get_transition_latency(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 /* only run on specific CPU from here on */
Rusty Russell1ff6e972009-06-12 20:55:37 +09301316 init_on_cpu.data = data;
1317 smp_call_function_single(data->cpu, powernowk8_cpu_init_on_cpu,
1318 &init_on_cpu, 1);
1319 rc = init_on_cpu.rc;
1320 if (rc != 0)
1321 goto err_out_exit_acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Linus Torvaldsf607e3a2008-08-19 13:34:59 -07001323 if (cpu_family == CPU_HW_PSTATE)
Rusty Russell835481d2009-01-04 05:18:06 -08001324 cpumask_copy(pol->cpus, cpumask_of(pol->cpu));
Linus Torvaldsf607e3a2008-08-19 13:34:59 -07001325 else
Rusty Russell7ad728f2009-03-13 14:49:50 +10301326 cpumask_copy(pol->cpus, cpu_core_mask(pol->cpu));
Rusty Russell835481d2009-01-04 05:18:06 -08001327 data->available_cores = pol->cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001329 if (cpu_family == CPU_HW_PSTATE)
Dave Jones0e64a0c2009-02-04 14:37:50 -05001330 pol->cur = find_khz_freq_from_pstate(data->powernow_table,
1331 data->currpstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001332 else
1333 pol->cur = find_khz_freq_from_fid(data->currfid);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001334 pr_debug("policy current frequency %d kHz\n", pol->cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 /* min/max the cpu is capable of */
1337 if (cpufreq_frequency_table_cpuinfo(pol, data->powernow_table)) {
Thomas Renninger2fd47092008-09-01 14:27:03 +02001338 printk(KERN_ERR FW_BUG PFX "invalid powernow_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 powernow_k8_cpu_exit_acpi(data);
1340 kfree(data->powernow_table);
1341 kfree(data);
1342 return -EINVAL;
1343 }
1344
Mark Langsdorfa2fed572010-03-18 18:41:46 +01001345 /* Check for APERF/MPERF support in hardware */
1346 if (cpu_has(c, X86_FEATURE_APERFMPERF))
1347 cpufreq_amd64_driver.getavg = cpufreq_get_measured_perf;
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 cpufreq_frequency_table_get_attr(data->powernow_table, pol->cpu);
1350
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001351 if (cpu_family == CPU_HW_PSTATE)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001352 pr_debug("cpu_init done, current pstate 0x%x\n",
Dave Jones0e64a0c2009-02-04 14:37:50 -05001353 data->currpstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001354 else
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001355 pr_debug("cpu_init done, current fid 0x%x, vid 0x%x\n",
Dave Jones1f729e02006-06-04 19:37:58 -04001356 data->currfid, data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001358 per_cpu(powernow_data, pol->cpu) = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 return 0;
1361
Rusty Russell1ff6e972009-06-12 20:55:37 +09301362err_out_exit_acpi:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 powernow_k8_cpu_exit_acpi(data);
1364
Dave Jones0cb8bc22009-02-18 14:11:00 -05001365err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 kfree(data);
1367 return -ENODEV;
1368}
1369
Dave Jones0e64a0c2009-02-04 14:37:50 -05001370static int __devexit powernowk8_cpu_exit(struct cpufreq_policy *pol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001372 struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 if (!data)
1375 return -EINVAL;
1376
1377 powernow_k8_cpu_exit_acpi(data);
1378
1379 cpufreq_frequency_table_put_attr(pol->cpu);
1380
1381 kfree(data->powernow_table);
1382 kfree(data);
Thomas Renninger557a7012009-12-14 11:44:15 +01001383 per_cpu(powernow_data, pol->cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 return 0;
1386}
1387
Rusty Russell1ff6e972009-06-12 20:55:37 +09301388static void query_values_on_cpu(void *_err)
1389{
1390 int *err = _err;
Tejun Heo0a3aee02010-12-18 16:28:55 +01001391 struct powernow_k8_data *data = __this_cpu_read(powernow_data);
Rusty Russell1ff6e972009-06-12 20:55:37 +09301392
1393 *err = query_current_values_with_pending_wait(data);
1394}
1395
Dave Jones0e64a0c2009-02-04 14:37:50 -05001396static unsigned int powernowk8_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
Naga Chumbalkare15bc452009-06-11 15:26:54 +00001398 struct powernow_k8_data *data = per_cpu(powernow_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 unsigned int khz = 0;
Rusty Russell1ff6e972009-06-12 20:55:37 +09301400 int err;
shin, jacobeef51672006-03-27 09:57:20 -06001401
1402 if (!data)
Thomas Renninger557a7012009-12-14 11:44:15 +01001403 return 0;
shin, jacobeef51672006-03-27 09:57:20 -06001404
Rusty Russell1ff6e972009-06-12 20:55:37 +09301405 smp_call_function_single(cpu, query_values_on_cpu, &err, true);
1406 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 goto out;
1408
Joachim Deguara58389a82007-01-30 16:53:54 +01001409 if (cpu_family == CPU_HW_PSTATE)
Mike Travisfc0e4742008-04-04 18:11:05 -07001410 khz = find_khz_freq_from_pstate(data->powernow_table,
1411 data->currpstate);
Joachim Deguara58389a82007-01-30 16:53:54 +01001412 else
1413 khz = find_khz_freq_from_fid(data->currfid);
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Dave Jonesb9111b72005-09-23 11:10:42 -07001416out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 return khz;
1418}
1419
Borislav Petkov73860c62010-03-31 21:56:42 +02001420static void _cpb_toggle_msrs(bool t)
1421{
1422 int cpu;
1423
1424 get_online_cpus();
1425
1426 rdmsr_on_cpus(cpu_online_mask, MSR_K7_HWCR, msrs);
1427
1428 for_each_cpu(cpu, cpu_online_mask) {
1429 struct msr *reg = per_cpu_ptr(msrs, cpu);
1430 if (t)
1431 reg->l &= ~BIT(25);
1432 else
1433 reg->l |= BIT(25);
1434 }
1435 wrmsr_on_cpus(cpu_online_mask, MSR_K7_HWCR, msrs);
1436
1437 put_online_cpus();
1438}
1439
1440/*
1441 * Switch on/off core performance boosting.
1442 *
1443 * 0=disable
1444 * 1=enable.
1445 */
1446static void cpb_toggle(bool t)
1447{
1448 if (!cpb_capable)
1449 return;
1450
1451 if (t && !cpb_enabled) {
1452 cpb_enabled = true;
1453 _cpb_toggle_msrs(t);
1454 printk(KERN_INFO PFX "Core Boosting enabled.\n");
1455 } else if (!t && cpb_enabled) {
1456 cpb_enabled = false;
1457 _cpb_toggle_msrs(t);
1458 printk(KERN_INFO PFX "Core Boosting disabled.\n");
1459 }
1460}
1461
1462static ssize_t store_cpb(struct cpufreq_policy *policy, const char *buf,
1463 size_t count)
1464{
1465 int ret = -EINVAL;
1466 unsigned long val = 0;
1467
1468 ret = strict_strtoul(buf, 10, &val);
1469 if (!ret && (val == 0 || val == 1) && cpb_capable)
1470 cpb_toggle(val);
1471 else
1472 return -EINVAL;
1473
1474 return count;
1475}
1476
1477static ssize_t show_cpb(struct cpufreq_policy *policy, char *buf)
1478{
1479 return sprintf(buf, "%u\n", cpb_enabled);
1480}
1481
1482#define define_one_rw(_name) \
1483static struct freq_attr _name = \
1484__ATTR(_name, 0644, show_##_name, store_##_name)
1485
1486define_one_rw(cpb);
1487
Dave Jones0e64a0c2009-02-04 14:37:50 -05001488static struct freq_attr *powernow_k8_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 &cpufreq_freq_attr_scaling_available_freqs,
Borislav Petkov73860c62010-03-31 21:56:42 +02001490 &cpb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 NULL,
1492};
1493
Linus Torvalds221dee22007-02-26 14:55:48 -08001494static struct cpufreq_driver cpufreq_amd64_driver = {
Thomas Renningere2f74f32009-11-19 12:31:01 +01001495 .verify = powernowk8_verify,
1496 .target = powernowk8_target,
1497 .bios_limit = acpi_processor_get_bios_limit,
1498 .init = powernowk8_cpu_init,
1499 .exit = __devexit_p(powernowk8_cpu_exit),
1500 .get = powernowk8_get,
1501 .name = "powernow-k8",
1502 .owner = THIS_MODULE,
1503 .attr = powernow_k8_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504};
1505
Borislav Petkov73860c62010-03-31 21:56:42 +02001506/*
1507 * Clear the boost-disable flag on the CPU_DOWN path so that this cpu
1508 * cannot block the remaining ones from boosting. On the CPU_UP path we
1509 * simply keep the boost-disable flag in sync with the current global
1510 * state.
1511 */
Borislav Petkovfe501f12010-05-25 15:28:58 +00001512static int cpb_notify(struct notifier_block *nb, unsigned long action,
1513 void *hcpu)
Borislav Petkov73860c62010-03-31 21:56:42 +02001514{
1515 unsigned cpu = (long)hcpu;
1516 u32 lo, hi;
1517
1518 switch (action) {
1519 case CPU_UP_PREPARE:
1520 case CPU_UP_PREPARE_FROZEN:
1521
1522 if (!cpb_enabled) {
1523 rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
1524 lo |= BIT(25);
1525 wrmsr_on_cpu(cpu, MSR_K7_HWCR, lo, hi);
1526 }
1527 break;
1528
1529 case CPU_DOWN_PREPARE:
1530 case CPU_DOWN_PREPARE_FROZEN:
1531 rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
1532 lo &= ~BIT(25);
1533 wrmsr_on_cpu(cpu, MSR_K7_HWCR, lo, hi);
1534 break;
1535
1536 default:
1537 break;
1538 }
1539
1540 return NOTIFY_OK;
1541}
1542
Borislav Petkovfe501f12010-05-25 15:28:58 +00001543static struct notifier_block cpb_nb = {
Borislav Petkov73860c62010-03-31 21:56:42 +02001544 .notifier_call = cpb_notify,
1545};
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547/* driver entry point for init */
Andi Kleenaa41eb92006-01-16 01:56:36 +01001548static int __cpuinit powernowk8_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Borislav Petkov73860c62010-03-31 21:56:42 +02001550 unsigned int i, supported_cpus = 0, cpu;
Neil Brownac818312010-11-24 11:28:01 +11001551 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Andrew Mortona7201152006-03-24 03:15:07 -08001553 for_each_online_cpu(i) {
Rusty Russell1ff6e972009-06-12 20:55:37 +09301554 int rc;
1555 smp_call_function_single(i, check_supported_cpu, &rc, 1);
1556 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 supported_cpus++;
1558 }
1559
Borislav Petkov73860c62010-03-31 21:56:42 +02001560 if (supported_cpus != num_online_cpus())
1561 return -ENODEV;
1562
1563 printk(KERN_INFO PFX "Found %d %s (%d cpu cores) (" VERSION ")\n",
1564 num_online_nodes(), boot_cpu_data.x86_model_id, supported_cpus);
1565
1566 if (boot_cpu_has(X86_FEATURE_CPB)) {
1567
1568 cpb_capable = true;
1569
Borislav Petkov73860c62010-03-31 21:56:42 +02001570 msrs = msrs_alloc();
1571 if (!msrs) {
1572 printk(KERN_ERR "%s: Error allocating msrs!\n", __func__);
1573 return -ENOMEM;
1574 }
1575
Dave Jonesa536b122010-11-23 21:29:31 -05001576 register_cpu_notifier(&cpb_nb);
1577
Borislav Petkov73860c62010-03-31 21:56:42 +02001578 rdmsr_on_cpus(cpu_online_mask, MSR_K7_HWCR, msrs);
1579
1580 for_each_cpu(cpu, cpu_online_mask) {
1581 struct msr *reg = per_cpu_ptr(msrs, cpu);
1582 cpb_enabled |= !(!!(reg->l & BIT(25)));
1583 }
1584
1585 printk(KERN_INFO PFX "Core Performance Boosting: %s.\n",
1586 (cpb_enabled ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 }
1588
Neil Brownac818312010-11-24 11:28:01 +11001589 rv = cpufreq_register_driver(&cpufreq_amd64_driver);
1590 if (rv < 0 && boot_cpu_has(X86_FEATURE_CPB)) {
1591 unregister_cpu_notifier(&cpb_nb);
1592 msrs_free(msrs);
1593 msrs = NULL;
1594 }
1595 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
1598/* driver entry point for term */
1599static void __exit powernowk8_exit(void)
1600{
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001601 pr_debug("exit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Borislav Petkov73860c62010-03-31 21:56:42 +02001603 if (boot_cpu_has(X86_FEATURE_CPB)) {
1604 msrs_free(msrs);
1605 msrs = NULL;
1606
1607 unregister_cpu_notifier(&cpb_nb);
1608 }
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 cpufreq_unregister_driver(&cpufreq_amd64_driver);
1611}
1612
Dave Jones0e64a0c2009-02-04 14:37:50 -05001613MODULE_AUTHOR("Paul Devriendt <paul.devriendt@amd.com> and "
1614 "Mark Langsdorf <mark.langsdorf@amd.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615MODULE_DESCRIPTION("AMD Athlon 64 and Opteron processor frequency driver.");
1616MODULE_LICENSE("GPL");
1617
1618late_initcall(powernowk8_init);
1619module_exit(powernowk8_exit);