blob: c0e816468e300f242735f4825d09b9d291a9b522 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andreas Herrmannb2bd68e2012-01-06 15:59:33 +01002 * (c) 2003-2012 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 *
Andreas Herrmannb2bd68e2012-01-06 15:59:33 +01007 * Maintainer:
8 * Andreas Herrmann <andreas.herrmann3@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * Based on the powernow-k7.c module written by Dave Jones.
Dave Jonesf4432c52008-10-20 13:31:45 -040011 * (C) 2003 Dave Jones on behalf of SuSE Labs
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * (C) 2004 Dominik Brodowski <linux@brodo.de>
Pavel Macheka2531292010-07-18 14:27:13 +020013 * (C) 2004 Pavel Machek <pavel@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * Licensed under the terms of the GNU GPL License version 2.
15 * Based upon datasheets & sample CPUs kindly provided by AMD.
16 *
17 * Valuable input gratefully received from Dave Jones, Pavel Machek,
Dave Jones1f729e02006-06-04 19:37:58 -040018 * Dominik Brodowski, Jacob Shin, and others.
Dave Jones065b8072005-05-31 19:03:46 -070019 * Originally developed by Paul Devriendt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 *
Andreas Herrmannb2bd68e2012-01-06 15:59:33 +010021 * Processor information obtained from Chapter 9 (Power and Thermal
22 * Management) of the "BIOS and Kernel Developer's Guide (BKDG) for
23 * the AMD Athlon 64 and AMD Opteron Processors" and section "2.x
24 * Power Management" in BKDGs for newer AMD CPU families.
25 *
26 * Tables for specific CPUs can be inferred from AMD's processor
27 * power and thermal data sheets, (e.g. 30417.pdf, 30430.pdf, 43375.pdf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 */
29
30#include <linux/kernel.h>
31#include <linux/smp.h>
32#include <linux/module.h>
33#include <linux/init.h>
34#include <linux/cpufreq.h>
35#include <linux/slab.h>
36#include <linux/string.h>
Dave Jones065b8072005-05-31 19:03:46 -070037#include <linux/cpumask.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080038#include <linux/sched.h> /* for current / set_cpus_allowed() */
Dave Jones0e64a0c2009-02-04 14:37:50 -050039#include <linux/io.h>
40#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/msr.h>
Andi Kleenfa8031a2012-01-26 00:09:12 +010043#include <asm/cpu_device_id.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/acpi.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080046#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <acpi/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define PFX "powernow-k8: "
Mark Langsdorfc5829cd2007-10-17 16:52:08 -050050#define VERSION "version 2.20.00"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include "powernow-k8.h"
Mark Langsdorfa2fed572010-03-18 18:41:46 +010052#include "mperf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/* serialize freq changes */
Ingo Molnar14cc3e22006-03-26 01:37:14 -080055static DEFINE_MUTEX(fidvid_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
travis@sgi.com2c6b8c02008-01-30 13:33:11 +010057static DEFINE_PER_CPU(struct powernow_k8_data *, powernow_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Dave Jones1f729e02006-06-04 19:37:58 -040059static int cpu_family = CPU_OPTERON;
60
Andreas Herrmanna8eb2842012-01-06 15:57:55 +010061/* array to map SW pstate number to acpi state */
62static u32 ps_to_as[8];
63
Borislav Petkov73860c62010-03-31 21:56:42 +020064/* core performance boost */
65static bool cpb_capable, cpb_enabled;
66static struct msr __percpu *msrs;
67
Mark Langsdorfa2fed572010-03-18 18:41:46 +010068static struct cpufreq_driver cpufreq_amd64_driver;
69
Dave Jones065b8072005-05-31 19:03:46 -070070#ifndef CONFIG_SMP
Rusty Russell7ad728f2009-03-13 14:49:50 +103071static inline const struct cpumask *cpu_core_mask(int cpu)
72{
73 return cpumask_of(0);
74}
Dave Jones065b8072005-05-31 19:03:46 -070075#endif
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* Return a frequency in MHz, given an input fid */
78static u32 find_freq_from_fid(u32 fid)
79{
80 return 800 + (fid * 100);
81}
82
83/* Return a frequency in KHz, given an input fid */
84static u32 find_khz_freq_from_fid(u32 fid)
85{
86 return 1000 * find_freq_from_fid(fid);
87}
88
Dave Jones0e64a0c2009-02-04 14:37:50 -050089static u32 find_khz_freq_from_pstate(struct cpufreq_frequency_table *data,
Andreas Herrmanna8eb2842012-01-06 15:57:55 +010090 u32 pstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Andreas Herrmanna8eb2842012-01-06 15:57:55 +010092 return data[ps_to_as[pstate]].frequency;
Dave Jones1f729e02006-06-04 19:37:58 -040093}
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095/* Return the vco fid for an input fid
96 *
97 * Each "low" fid has corresponding "high" fid, and you can get to "low" fids
98 * only from corresponding high fids. This returns "high" fid corresponding to
99 * "low" one.
100 */
101static u32 convert_fid_to_vco_fid(u32 fid)
102{
Dave Jones32ee8c32006-02-28 00:43:23 -0500103 if (fid < HI_FID_TABLE_BOTTOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return 8 + (2 * fid);
Dave Jones32ee8c32006-02-28 00:43:23 -0500105 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109/*
110 * Return 1 if the pending bit is set. Unless we just instructed the processor
111 * to transition to a new state, seeing this bit set is really bad news.
112 */
113static int pending_bit_stuck(void)
114{
115 u32 lo, hi;
116
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500117 if (cpu_family == CPU_HW_PSTATE)
Dave Jones1f729e02006-06-04 19:37:58 -0400118 return 0;
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 rdmsr(MSR_FIDVID_STATUS, lo, hi);
121 return lo & MSR_S_LO_CHANGE_PENDING ? 1 : 0;
122}
123
124/*
125 * Update the global current fid / vid values from the status msr.
126 * Returns 1 on error.
127 */
128static int query_current_values_with_pending_wait(struct powernow_k8_data *data)
129{
130 u32 lo, hi;
131 u32 i = 0;
132
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500133 if (cpu_family == CPU_HW_PSTATE) {
Naga Chumbalkar532cfee2009-06-11 15:26:48 +0000134 rdmsr(MSR_PSTATE_STATUS, lo, hi);
135 i = lo & HW_PSTATE_MASK;
136 data->currpstate = i;
Andreas Herrmanna266d9f2008-11-21 14:49:25 +0100137
Naga Chumbalkar532cfee2009-06-11 15:26:48 +0000138 /*
139 * a workaround for family 11h erratum 311 might cause
140 * an "out-of-range Pstate if the core is in Pstate-0
141 */
142 if ((boot_cpu_data.x86 == 0x11) && (i >= data->numps))
143 data->currpstate = HW_PSTATE_0;
144
Dave Jones1f729e02006-06-04 19:37:58 -0400145 return 0;
146 }
Dave Jones7153d962005-07-28 09:45:10 -0700147 do {
Dave Jones0213df72005-10-21 17:21:03 -0400148 if (i++ > 10000) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200149 pr_debug("detected change pending stuck\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return 1;
151 }
152 rdmsr(MSR_FIDVID_STATUS, lo, hi);
Dave Jones7153d962005-07-28 09:45:10 -0700153 } while (lo & MSR_S_LO_CHANGE_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 data->currvid = hi & MSR_S_HI_CURRENT_VID;
156 data->currfid = lo & MSR_S_LO_CURRENT_FID;
157
158 return 0;
159}
160
161/* the isochronous relief time */
162static void count_off_irt(struct powernow_k8_data *data)
163{
164 udelay((1 << data->irt) * 10);
165 return;
166}
167
Simon Arlott27b46d72007-10-20 01:13:56 +0200168/* the voltage stabilization time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static void count_off_vst(struct powernow_k8_data *data)
170{
171 udelay(data->vstable * VST_UNITS_20US);
172 return;
173}
174
175/* need to init the control msr to a safe value (for each cpu) */
176static void fidvid_msr_init(void)
177{
178 u32 lo, hi;
179 u8 fid, vid;
180
181 rdmsr(MSR_FIDVID_STATUS, lo, hi);
182 vid = hi & MSR_S_HI_CURRENT_VID;
183 fid = lo & MSR_S_LO_CURRENT_FID;
184 lo = fid | (vid << MSR_C_LO_VID_SHIFT);
185 hi = MSR_C_HI_STP_GNT_BENIGN;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200186 pr_debug("cpu%d, init lo 0x%x, hi 0x%x\n", smp_processor_id(), lo, hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 wrmsr(MSR_FIDVID_CTL, lo, hi);
188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/* write the new fid value along with the other control fields to the msr */
191static int write_new_fid(struct powernow_k8_data *data, u32 fid)
192{
193 u32 lo;
194 u32 savevid = data->currvid;
Dave Jones0213df72005-10-21 17:21:03 -0400195 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 if ((fid & INVALID_FID_MASK) || (data->currvid & INVALID_VID_MASK)) {
198 printk(KERN_ERR PFX "internal error - overflow on fid write\n");
199 return 1;
200 }
201
Dave Jones0e64a0c2009-02-04 14:37:50 -0500202 lo = fid;
203 lo |= (data->currvid << MSR_C_LO_VID_SHIFT);
204 lo |= MSR_C_LO_INIT_FID_VID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200206 pr_debug("writing fid 0x%x, lo 0x%x, hi 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 fid, lo, data->plllock * PLL_LOCK_CONVERSION);
208
Dave Jones0213df72005-10-21 17:21:03 -0400209 do {
210 wrmsr(MSR_FIDVID_CTL, lo, data->plllock * PLL_LOCK_CONVERSION);
211 if (i++ > 100) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500212 printk(KERN_ERR PFX
213 "Hardware error - pending bit very stuck - "
214 "no further pstate changes possible\n");
Chris Wright63172cb2005-10-21 16:56:08 -0700215 return 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500216 }
Dave Jones0213df72005-10-21 17:21:03 -0400217 } while (query_current_values_with_pending_wait(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 count_off_irt(data);
220
221 if (savevid != data->currvid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500222 printk(KERN_ERR PFX
223 "vid change on fid trans, old 0x%x, new 0x%x\n",
224 savevid, data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return 1;
226 }
227
228 if (fid != data->currfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500229 printk(KERN_ERR PFX
230 "fid trans failed, fid 0x%x, curr 0x%x\n", fid,
231 data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return 1;
233 }
234
235 return 0;
236}
237
238/* Write a new vid to the hardware */
239static int write_new_vid(struct powernow_k8_data *data, u32 vid)
240{
241 u32 lo;
242 u32 savefid = data->currfid;
Dave Jones0213df72005-10-21 17:21:03 -0400243 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 if ((data->currfid & INVALID_FID_MASK) || (vid & INVALID_VID_MASK)) {
246 printk(KERN_ERR PFX "internal error - overflow on vid write\n");
247 return 1;
248 }
249
Dave Jones0e64a0c2009-02-04 14:37:50 -0500250 lo = data->currfid;
251 lo |= (vid << MSR_C_LO_VID_SHIFT);
252 lo |= MSR_C_LO_INIT_FID_VID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200254 pr_debug("writing vid 0x%x, lo 0x%x, hi 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 vid, lo, STOP_GRANT_5NS);
256
Dave Jones0213df72005-10-21 17:21:03 -0400257 do {
258 wrmsr(MSR_FIDVID_CTL, lo, STOP_GRANT_5NS);
Dave Jones6df89002005-11-30 13:33:30 -0800259 if (i++ > 100) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500260 printk(KERN_ERR PFX "internal error - pending bit "
261 "very stuck - no further pstate "
262 "changes possible\n");
Dave Jones6df89002005-11-30 13:33:30 -0800263 return 1;
264 }
Dave Jones0213df72005-10-21 17:21:03 -0400265 } while (query_current_values_with_pending_wait(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 if (savefid != data->currfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500268 printk(KERN_ERR PFX "fid changed on vid trans, old "
269 "0x%x new 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 savefid, data->currfid);
271 return 1;
272 }
273
274 if (vid != data->currvid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500275 printk(KERN_ERR PFX "vid trans failed, vid 0x%x, "
276 "curr 0x%x\n",
277 vid, data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return 1;
279 }
280
281 return 0;
282}
283
284/*
285 * Reduce the vid by the max of step or reqvid.
286 * Decreasing vid codes represent increasing voltages:
Dave Jones841e40b2005-07-28 09:40:04 -0700287 * 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 -0700288 */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500289static int decrease_vid_code_by_step(struct powernow_k8_data *data,
290 u32 reqvid, u32 step)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 if ((data->currvid - reqvid) > step)
293 reqvid = data->currvid - step;
294
295 if (write_new_vid(data, reqvid))
296 return 1;
297
298 count_off_vst(data);
299
300 return 0;
301}
302
Dave Jones1f729e02006-06-04 19:37:58 -0400303/* Change hardware pstate by single MSR write */
304static int transition_pstate(struct powernow_k8_data *data, u32 pstate)
305{
306 wrmsr(MSR_PSTATE_CTRL, pstate, 0);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500307 data->currpstate = pstate;
Dave Jones1f729e02006-06-04 19:37:58 -0400308 return 0;
309}
310
311/* Change Opteron/Athlon64 fid and vid, by the 3 phases. */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500312static int transition_fid_vid(struct powernow_k8_data *data,
313 u32 reqfid, u32 reqvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500315 if (core_voltage_pre_transition(data, reqvid, reqfid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return 1;
317
318 if (core_frequency_transition(data, reqfid))
319 return 1;
320
321 if (core_voltage_post_transition(data, reqvid))
322 return 1;
323
324 if (query_current_values_with_pending_wait(data))
325 return 1;
326
327 if ((reqfid != data->currfid) || (reqvid != data->currvid)) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500328 printk(KERN_ERR PFX "failed (cpu%d): req 0x%x 0x%x, "
329 "curr 0x%x 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 smp_processor_id(),
331 reqfid, reqvid, data->currfid, data->currvid);
332 return 1;
333 }
334
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200335 pr_debug("transitioned (cpu%d): new fid 0x%x, vid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 smp_processor_id(), data->currfid, data->currvid);
337
338 return 0;
339}
340
341/* Phase 1 - core voltage transition ... setup voltage */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500342static int core_voltage_pre_transition(struct powernow_k8_data *data,
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500343 u32 reqvid, u32 reqfid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 u32 rvosteps = data->rvo;
346 u32 savefid = data->currfid;
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500347 u32 maxvid, lo, rvomult = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200349 pr_debug("ph1 (cpu%d): start, currfid 0x%x, currvid 0x%x, "
Dave Jones0e64a0c2009-02-04 14:37:50 -0500350 "reqvid 0x%x, rvo 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 smp_processor_id(),
352 data->currfid, data->currvid, reqvid, data->rvo);
353
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500354 if ((savefid < LO_FID_TABLE_TOP) && (reqfid < LO_FID_TABLE_TOP))
355 rvomult = 2;
356 rvosteps *= rvomult;
Dave Jones065b8072005-05-31 19:03:46 -0700357 rdmsr(MSR_FIDVID_STATUS, lo, maxvid);
358 maxvid = 0x1f & (maxvid >> 16);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200359 pr_debug("ph1 maxvid=0x%x\n", maxvid);
Dave Jones065b8072005-05-31 19:03:46 -0700360 if (reqvid < maxvid) /* lower numbers are higher voltages */
361 reqvid = maxvid;
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 while (data->currvid > reqvid) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200364 pr_debug("ph1: curr 0x%x, req vid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 data->currvid, reqvid);
366 if (decrease_vid_code_by_step(data, reqvid, data->vidmvs))
367 return 1;
368 }
369
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500370 while ((rvosteps > 0) &&
371 ((rvomult * data->rvo + data->currvid) > reqvid)) {
Dave Jones065b8072005-05-31 19:03:46 -0700372 if (data->currvid == maxvid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 rvosteps = 0;
374 } else {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200375 pr_debug("ph1: changing vid for rvo, req 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 data->currvid - 1);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500377 if (decrease_vid_code_by_step(data, data->currvid-1, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return 1;
379 rvosteps--;
380 }
381 }
382
383 if (query_current_values_with_pending_wait(data))
384 return 1;
385
386 if (savefid != data->currfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500387 printk(KERN_ERR PFX "ph1 err, currfid changed 0x%x\n",
388 data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return 1;
390 }
391
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200392 pr_debug("ph1 complete, currfid 0x%x, currvid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 data->currfid, data->currvid);
394
395 return 0;
396}
397
398/* Phase 2 - core frequency transition */
399static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid)
400{
Dave Jones0e64a0c2009-02-04 14:37:50 -0500401 u32 vcoreqfid, vcocurrfid, vcofiddiff;
402 u32 fid_interval, savevid = data->currvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (data->currfid == reqfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500405 printk(KERN_ERR PFX "ph2 null fid transition 0x%x\n",
406 data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return 0;
408 }
409
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200410 pr_debug("ph2 (cpu%d): starting, currfid 0x%x, currvid 0x%x, "
Dave Jones0e64a0c2009-02-04 14:37:50 -0500411 "reqfid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 smp_processor_id(),
413 data->currfid, data->currvid, reqfid);
414
415 vcoreqfid = convert_fid_to_vco_fid(reqfid);
416 vcocurrfid = convert_fid_to_vco_fid(data->currfid);
417 vcofiddiff = vcocurrfid > vcoreqfid ? vcocurrfid - vcoreqfid
418 : vcoreqfid - vcocurrfid;
419
Mark Langsdorfa2e1b4c2009-07-26 10:55:25 -0500420 if ((reqfid <= LO_FID_TABLE_TOP) && (data->currfid <= LO_FID_TABLE_TOP))
421 vcofiddiff = 0;
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 while (vcofiddiff > 2) {
Langsdorf, Mark019a61b2005-11-29 14:18:03 -0600424 (data->currfid & 1) ? (fid_interval = 1) : (fid_interval = 2);
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (reqfid > data->currfid) {
427 if (data->currfid > LO_FID_TABLE_TOP) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500428 if (write_new_fid(data,
429 data->currfid + fid_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 } else {
432 if (write_new_fid
Dave Jones0e64a0c2009-02-04 14:37:50 -0500433 (data,
434 2 + convert_fid_to_vco_fid(data->currfid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437 } else {
Langsdorf, Mark019a61b2005-11-29 14:18:03 -0600438 if (write_new_fid(data, data->currfid - fid_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return 1;
440 }
441
442 vcocurrfid = convert_fid_to_vco_fid(data->currfid);
443 vcofiddiff = vcocurrfid > vcoreqfid ? vcocurrfid - vcoreqfid
444 : vcoreqfid - vcocurrfid;
445 }
446
447 if (write_new_fid(data, reqfid))
448 return 1;
449
450 if (query_current_values_with_pending_wait(data))
451 return 1;
452
453 if (data->currfid != reqfid) {
454 printk(KERN_ERR PFX
Dave Jones0e64a0c2009-02-04 14:37:50 -0500455 "ph2: mismatch, failed fid transition, "
456 "curr 0x%x, req 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 data->currfid, reqfid);
458 return 1;
459 }
460
461 if (savevid != data->currvid) {
462 printk(KERN_ERR PFX "ph2: vid changed, save 0x%x, curr 0x%x\n",
463 savevid, data->currvid);
464 return 1;
465 }
466
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200467 pr_debug("ph2 complete, currfid 0x%x, currvid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 data->currfid, data->currvid);
469
470 return 0;
471}
472
473/* Phase 3 - core voltage transition flow ... jump to the final vid. */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500474static int core_voltage_post_transition(struct powernow_k8_data *data,
475 u32 reqvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 u32 savefid = data->currfid;
478 u32 savereqvid = reqvid;
479
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200480 pr_debug("ph3 (cpu%d): starting, currfid 0x%x, currvid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 smp_processor_id(),
482 data->currfid, data->currvid);
483
484 if (reqvid != data->currvid) {
485 if (write_new_vid(data, reqvid))
486 return 1;
487
488 if (savefid != data->currfid) {
489 printk(KERN_ERR PFX
490 "ph3: bad fid change, save 0x%x, curr 0x%x\n",
491 savefid, data->currfid);
492 return 1;
493 }
494
495 if (data->currvid != reqvid) {
496 printk(KERN_ERR PFX
Dave Jones0e64a0c2009-02-04 14:37:50 -0500497 "ph3: failed vid transition\n, "
498 "req 0x%x, curr 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 reqvid, data->currvid);
500 return 1;
501 }
502 }
503
504 if (query_current_values_with_pending_wait(data))
505 return 1;
506
507 if (savereqvid != data->currvid) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200508 pr_debug("ph3 failed, currvid 0x%x\n", data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return 1;
510 }
511
512 if (savefid != data->currfid) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200513 pr_debug("ph3 failed, currfid changed 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 data->currfid);
515 return 1;
516 }
517
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200518 pr_debug("ph3 complete, currfid 0x%x, currvid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 data->currfid, data->currvid);
520
521 return 0;
522}
523
Andi Kleenfa8031a2012-01-26 00:09:12 +0100524static const struct x86_cpu_id powernow_k8_ids[] = {
525 /* IO based frequency switching */
526 { X86_VENDOR_AMD, 0xf },
527 /* MSR based frequency switching supported */
528 X86_FEATURE_MATCH(X86_FEATURE_HW_PSTATE),
529 {}
530};
531MODULE_DEVICE_TABLE(x86cpu, powernow_k8_ids);
532
Rusty Russell1ff6e972009-06-12 20:55:37 +0930533static void check_supported_cpu(void *_rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 u32 eax, ebx, ecx, edx;
Rusty Russell1ff6e972009-06-12 20:55:37 +0930536 int *rc = _rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Rusty Russell1ff6e972009-06-12 20:55:37 +0930538 *rc = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 eax = cpuid_eax(CPUID_PROCESSOR_SIGNATURE);
Dave Jones2c906ae2006-02-28 00:36:32 -0500541
Dave Jones1f729e02006-06-04 19:37:58 -0400542 if ((eax & CPUID_XFAM) == CPUID_XFAM_K8) {
543 if (((eax & CPUID_USE_XFAM_XMOD) != CPUID_USE_XFAM_XMOD) ||
Dave Jones99fbe1a2007-05-14 18:27:29 -0400544 ((eax & CPUID_XMOD) > CPUID_XMOD_REV_MASK)) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500545 printk(KERN_INFO PFX
546 "Processor cpuid %x not supported\n", eax);
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 eax = cpuid_eax(CPUID_GET_MAX_CAPABILITIES);
551 if (eax < CPUID_FREQ_VOLT_CAPABILITIES) {
552 printk(KERN_INFO PFX
553 "No frequency change capabilities detected\n");
Rusty Russell1ff6e972009-06-12 20:55:37 +0930554 return;
Dave Jones1f729e02006-06-04 19:37:58 -0400555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Dave Jones1f729e02006-06-04 19:37:58 -0400557 cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500558 if ((edx & P_STATE_TRANSITION_CAPABLE)
559 != P_STATE_TRANSITION_CAPABLE) {
560 printk(KERN_INFO PFX
561 "Power state transitions not supported\n");
Rusty Russell1ff6e972009-06-12 20:55:37 +0930562 return;
Dave Jones1f729e02006-06-04 19:37:58 -0400563 }
564 } else { /* must be a HW Pstate capable processor */
565 cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx);
566 if ((edx & USE_HW_PSTATE) == USE_HW_PSTATE)
567 cpu_family = CPU_HW_PSTATE;
568 else
Rusty Russell1ff6e972009-06-12 20:55:37 +0930569 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
Rusty Russell1ff6e972009-06-12 20:55:37 +0930572 *rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Dave Jones0e64a0c2009-02-04 14:37:50 -0500575static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst,
576 u8 maxvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 unsigned int j;
579 u8 lastfid = 0xff;
580
581 for (j = 0; j < data->numps; j++) {
582 if (pst[j].vid > LEAST_VID) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200583 printk(KERN_ERR FW_BUG PFX "vid %d invalid : 0x%x\n",
584 j, pst[j].vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return -EINVAL;
586 }
Dave Jones0e64a0c2009-02-04 14:37:50 -0500587 if (pst[j].vid < data->rvo) {
588 /* vid + rvo >= 0 */
Thomas Renninger2fd47092008-09-01 14:27:03 +0200589 printk(KERN_ERR FW_BUG PFX "0 vid exceeded with pstate"
590 " %d\n", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return -ENODEV;
592 }
Dave Jones0e64a0c2009-02-04 14:37:50 -0500593 if (pst[j].vid < maxvid + data->rvo) {
594 /* vid + rvo >= maxvid */
Thomas Renninger2fd47092008-09-01 14:27:03 +0200595 printk(KERN_ERR FW_BUG PFX "maxvid exceeded with pstate"
596 " %d\n", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return -ENODEV;
598 }
Jacob Shin8aae8282005-11-21 07:23:08 -0800599 if (pst[j].fid > MAX_FID) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200600 printk(KERN_ERR FW_BUG PFX "maxfid exceeded with pstate"
601 " %d\n", j);
Jacob Shin8aae8282005-11-21 07:23:08 -0800602 return -ENODEV;
603 }
Jacob Shin8aae8282005-11-21 07:23:08 -0800604 if (j && (pst[j].fid < HI_FID_TABLE_BOTTOM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /* Only first fid is allowed to be in "low" range */
Thomas Renninger2fd47092008-09-01 14:27:03 +0200606 printk(KERN_ERR FW_BUG PFX "two low fids - %d : "
607 "0x%x\n", j, pst[j].fid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return -EINVAL;
609 }
610 if (pst[j].fid < lastfid)
611 lastfid = pst[j].fid;
612 }
613 if (lastfid & 1) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200614 printk(KERN_ERR FW_BUG PFX "lastfid invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return -EINVAL;
616 }
617 if (lastfid > LO_FID_TABLE_TOP)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500618 printk(KERN_INFO FW_BUG PFX
619 "first fid not from lo freq table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 return 0;
622}
623
Kurt Roeckxf0adb132009-09-16 11:09:32 -0400624static void invalidate_entry(struct cpufreq_frequency_table *powernow_table,
625 unsigned int entry)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500626{
Kurt Roeckxf0adb132009-09-16 11:09:32 -0400627 powernow_table[entry].frequency = CPUFREQ_ENTRY_INVALID;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500628}
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630static void print_basics(struct powernow_k8_data *data)
631{
632 int j;
633 for (j = 0; j < data->numps; j++) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500634 if (data->powernow_table[j].frequency !=
635 CPUFREQ_ENTRY_INVALID) {
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500636 if (cpu_family == CPU_HW_PSTATE) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500637 printk(KERN_INFO PFX
638 " %d : pstate %d (%d MHz)\n", j,
Yinghai Lu4ae5c492007-11-20 19:38:27 -0800639 data->powernow_table[j].index,
Dave Jones9a60ddb2007-07-13 01:34:10 -0400640 data->powernow_table[j].frequency/1000);
Dave Jones1f729e02006-06-04 19:37:58 -0400641 } else {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500642 printk(KERN_INFO PFX
Thomas Renninger9e918692011-03-03 21:31:24 +0100643 "fid 0x%x (%d MHz), vid 0x%x\n",
Dave Jones9a60ddb2007-07-13 01:34:10 -0400644 data->powernow_table[j].index & 0xff,
645 data->powernow_table[j].frequency/1000,
646 data->powernow_table[j].index >> 8);
Dave Jones1f729e02006-06-04 19:37:58 -0400647 }
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650 if (data->batps)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500651 printk(KERN_INFO PFX "Only %d pstates on battery\n",
652 data->batps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Andreas Herrmannca446d02009-04-22 13:48:33 +0200655static u32 freq_from_fid_did(u32 fid, u32 did)
656{
657 u32 mhz = 0;
658
659 if (boot_cpu_data.x86 == 0x10)
660 mhz = (100 * (fid + 0x10)) >> did;
661 else if (boot_cpu_data.x86 == 0x11)
662 mhz = (100 * (fid + 8)) >> did;
663 else
664 BUG();
665
666 return mhz * 1000;
667}
668
Dave Jones0e64a0c2009-02-04 14:37:50 -0500669static int fill_powernow_table(struct powernow_k8_data *data,
670 struct pst_s *pst, u8 maxvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 struct cpufreq_frequency_table *powernow_table;
673 unsigned int j;
674
Dave Jones0e64a0c2009-02-04 14:37:50 -0500675 if (data->batps) {
676 /* use ACPI support to get full speed on mains power */
677 printk(KERN_WARNING PFX
678 "Only %d pstates usable (use ACPI driver for full "
679 "range\n", data->batps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 data->numps = data->batps;
681 }
682
Dave Jones0e64a0c2009-02-04 14:37:50 -0500683 for (j = 1; j < data->numps; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (pst[j-1].fid >= pst[j].fid) {
685 printk(KERN_ERR PFX "PST out of sequence\n");
686 return -EINVAL;
687 }
688 }
689
690 if (data->numps < 2) {
691 printk(KERN_ERR PFX "no p states to transition\n");
692 return -ENODEV;
693 }
694
695 if (check_pst_table(data, pst, maxvid))
696 return -EINVAL;
697
698 powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table)
699 * (data->numps + 1)), GFP_KERNEL);
700 if (!powernow_table) {
701 printk(KERN_ERR PFX "powernow_table memory alloc failure\n");
702 return -ENOMEM;
703 }
704
705 for (j = 0; j < data->numps; j++) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500706 int freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 powernow_table[j].index = pst[j].fid; /* lower 8 bits */
708 powernow_table[j].index |= (pst[j].vid << 8); /* upper 8 bits */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500709 freq = find_khz_freq_from_fid(pst[j].fid);
710 powernow_table[j].frequency = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712 powernow_table[data->numps].frequency = CPUFREQ_TABLE_END;
713 powernow_table[data->numps].index = 0;
714
715 if (query_current_values_with_pending_wait(data)) {
716 kfree(powernow_table);
717 return -EIO;
718 }
719
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200720 pr_debug("cfid 0x%x, cvid 0x%x\n", data->currfid, data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 data->powernow_table = powernow_table;
Rusty Russell7ad728f2009-03-13 14:49:50 +1030722 if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu)
Mark Langsdorf2e497622007-04-30 14:15:05 -0500723 print_basics(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 for (j = 0; j < data->numps; j++)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500726 if ((pst[j].fid == data->currfid) &&
727 (pst[j].vid == data->currvid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return 0;
729
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200730 pr_debug("currfid/vid do not match PST, ignoring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return 0;
732}
733
734/* Find and validate the PSB/PST table in BIOS. */
735static int find_psb_table(struct powernow_k8_data *data)
736{
737 struct psb_s *psb;
738 unsigned int i;
739 u32 mvs;
740 u8 maxvid;
741 u32 cpst = 0;
742 u32 thiscpuid;
743
744 for (i = 0xc0000; i < 0xffff0; i += 0x10) {
745 /* Scan BIOS looking for the signature. */
746 /* It can not be at ffff0 - it is too big. */
747
748 psb = phys_to_virt(i);
749 if (memcmp(psb, PSB_ID_STRING, PSB_ID_STRING_LEN) != 0)
750 continue;
751
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200752 pr_debug("found PSB header at 0x%p\n", psb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200754 pr_debug("table vers: 0x%x\n", psb->tableversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (psb->tableversion != PSB_VERSION_1_4) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200756 printk(KERN_ERR FW_BUG PFX "PSB table is not v1.4\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return -ENODEV;
758 }
759
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200760 pr_debug("flags: 0x%x\n", psb->flags1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (psb->flags1) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200762 printk(KERN_ERR FW_BUG PFX "unknown flags\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return -ENODEV;
764 }
765
766 data->vstable = psb->vstable;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200767 pr_debug("voltage stabilization time: %d(*20us)\n",
Dave Jones0e64a0c2009-02-04 14:37:50 -0500768 data->vstable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200770 pr_debug("flags2: 0x%x\n", psb->flags2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 data->rvo = psb->flags2 & 3;
772 data->irt = ((psb->flags2) >> 2) & 3;
773 mvs = ((psb->flags2) >> 4) & 3;
774 data->vidmvs = 1 << mvs;
775 data->batps = ((psb->flags2) >> 6) & 3;
776
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200777 pr_debug("ramp voltage offset: %d\n", data->rvo);
778 pr_debug("isochronous relief time: %d\n", data->irt);
779 pr_debug("maximum voltage step: %d - 0x%x\n", mvs, data->vidmvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200781 pr_debug("numpst: 0x%x\n", psb->num_tables);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 cpst = psb->num_tables;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500783 if ((psb->cpuid == 0x00000fc0) ||
784 (psb->cpuid == 0x00000fe0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 thiscpuid = cpuid_eax(CPUID_PROCESSOR_SIGNATURE);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500786 if ((thiscpuid == 0x00000fc0) ||
787 (thiscpuid == 0x00000fe0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 cpst = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790 if (cpst != 1) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200791 printk(KERN_ERR FW_BUG PFX "numpst must be 1\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return -ENODEV;
793 }
794
795 data->plllock = psb->plllocktime;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200796 pr_debug("plllocktime: 0x%x (units 1us)\n", psb->plllocktime);
797 pr_debug("maxfid: 0x%x\n", psb->maxfid);
798 pr_debug("maxvid: 0x%x\n", psb->maxvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 maxvid = psb->maxvid;
800
801 data->numps = psb->numps;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200802 pr_debug("numpstates: 0x%x\n", data->numps);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500803 return fill_powernow_table(data,
804 (struct pst_s *)(psb+1), maxvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806 /*
807 * If you see this message, complain to BIOS manufacturer. If
808 * he tells you "we do not support Linux" or some similar
809 * nonsense, remember that Windows 2000 uses the same legacy
810 * mechanism that the old Linux PSB driver uses. Tell them it
811 * is broken with Windows 2000.
812 *
813 * The reference to the AMD documentation is chapter 9 in the
814 * BIOS and Kernel Developer's Guide, which is available on
815 * www.amd.com
816 */
Thomas Renninger79cc56a2009-02-04 11:56:11 +0100817 printk(KERN_ERR FW_BUG PFX "No PSB or ACPI _PSS objects\n");
Marti Raudsepp298decf2010-01-20 19:19:33 +0200818 printk(KERN_ERR PFX "Make sure that your BIOS is up to date"
819 " and Cool'N'Quiet support is enabled in BIOS setup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return -ENODEV;
821}
822
Dave Jones0e64a0c2009-02-04 14:37:50 -0500823static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data,
824 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Lin Ming439913f2010-01-28 10:53:19 +0800826 u64 control;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500827
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700828 if (!data->acpi_data.state_count || (cpu_family == CPU_HW_PSTATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return;
830
Luis Henriques21335d02009-04-23 19:45:04 +0100831 control = data->acpi_data.states[index].control;
832 data->irt = (control >> IRT_SHIFT) & IRT_MASK;
833 data->rvo = (control >> RVO_SHIFT) & RVO_MASK;
834 data->exttype = (control >> EXT_TYPE_SHIFT) & EXT_TYPE_MASK;
835 data->plllock = (control >> PLL_L_SHIFT) & PLL_L_MASK;
836 data->vidmvs = 1 << ((control >> MVS_SHIFT) & MVS_MASK);
837 data->vstable = (control >> VST_SHIFT) & VST_MASK;
838}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data)
841{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 struct cpufreq_frequency_table *powernow_table;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800843 int ret_val = -ENODEV;
Lin Ming439913f2010-01-28 10:53:19 +0800844 u64 control, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700846 if (acpi_processor_register_performance(&data->acpi_data, data->cpu)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200847 pr_debug("register performance failed: bad ACPI data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return -EIO;
849 }
850
851 /* verify the data contained in the ACPI structures */
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700852 if (data->acpi_data.state_count <= 1) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200853 pr_debug("No ACPI P-States\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto err_out;
855 }
856
Dave Jones2c701b12009-06-05 12:37:07 -0400857 control = data->acpi_data.control_register.space_id;
858 status = data->acpi_data.status_register.space_id;
859
860 if ((control != ACPI_ADR_SPACE_FIXED_HARDWARE) ||
861 (status != ACPI_ADR_SPACE_FIXED_HARDWARE)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200862 pr_debug("Invalid control/status registers (%llx - %llx)\n",
Dave Jones2c701b12009-06-05 12:37:07 -0400863 control, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 goto err_out;
865 }
866
867 /* fill in data->powernow_table */
868 powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table)
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700869 * (data->acpi_data.state_count + 1)), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (!powernow_table) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200871 pr_debug("powernow_table memory alloc failure\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 goto err_out;
873 }
874
Mark Langsdorfdb39d552009-08-21 19:15:28 -0500875 /* fill in data */
876 data->numps = data->acpi_data.state_count;
877 powernow_k8_acpi_pst_values(data, 0);
878
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500879 if (cpu_family == CPU_HW_PSTATE)
Dave Jones1f729e02006-06-04 19:37:58 -0400880 ret_val = fill_powernow_table_pstate(data, powernow_table);
881 else
882 ret_val = fill_powernow_table_fidvid(data, powernow_table);
883 if (ret_val)
884 goto err_out_mem;
885
Dave Jones0e64a0c2009-02-04 14:37:50 -0500886 powernow_table[data->acpi_data.state_count].frequency =
887 CPUFREQ_TABLE_END;
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700888 powernow_table[data->acpi_data.state_count].index = 0;
Dave Jones1f729e02006-06-04 19:37:58 -0400889 data->powernow_table = powernow_table;
890
Rusty Russell7ad728f2009-03-13 14:49:50 +1030891 if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu)
Mark Langsdorf2e497622007-04-30 14:15:05 -0500892 print_basics(data);
Dave Jones1f729e02006-06-04 19:37:58 -0400893
894 /* notify BIOS that we exist */
895 acpi_processor_notify_smm(THIS_MODULE);
896
Yinghai Lueaa95842009-06-06 14:51:36 -0700897 if (!zalloc_cpumask_var(&data->acpi_data.shared_cpu_map, GFP_KERNEL)) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800898 printk(KERN_ERR PFX
899 "unable to alloc powernow_k8_data cpumask\n");
900 ret_val = -ENOMEM;
901 goto err_out_mem;
902 }
903
Dave Jones1f729e02006-06-04 19:37:58 -0400904 return 0;
905
906err_out_mem:
907 kfree(powernow_table);
908
909err_out:
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700910 acpi_processor_unregister_performance(&data->acpi_data, data->cpu);
Dave Jones1f729e02006-06-04 19:37:58 -0400911
Dave Jones0e64a0c2009-02-04 14:37:50 -0500912 /* data->acpi_data.state_count informs us at ->exit()
913 * whether ACPI was used */
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700914 data->acpi_data.state_count = 0;
Dave Jones1f729e02006-06-04 19:37:58 -0400915
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800916 return ret_val;
Dave Jones1f729e02006-06-04 19:37:58 -0400917}
918
Dave Jones0e64a0c2009-02-04 14:37:50 -0500919static int fill_powernow_table_pstate(struct powernow_k8_data *data,
920 struct cpufreq_frequency_table *powernow_table)
Dave Jones1f729e02006-06-04 19:37:58 -0400921{
922 int i;
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500923 u32 hi = 0, lo = 0;
Borislav Petkovb30d3302010-07-08 18:05:14 +0200924 rdmsr(MSR_PSTATE_CUR_LIMIT, lo, hi);
925 data->max_hw_pstate = (lo & HW_PSTATE_MAX_MASK) >> HW_PSTATE_MAX_SHIFT;
Dave Jones1f729e02006-06-04 19:37:58 -0400926
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700927 for (i = 0; i < data->acpi_data.state_count; i++) {
Dave Jones1f729e02006-06-04 19:37:58 -0400928 u32 index;
Dave Jones1f729e02006-06-04 19:37:58 -0400929
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700930 index = data->acpi_data.states[i].control & HW_PSTATE_MASK;
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500931 if (index > data->max_hw_pstate) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500932 printk(KERN_ERR PFX "invalid pstate %d - "
933 "bad value %d.\n", i, index);
934 printk(KERN_ERR PFX "Please report to BIOS "
935 "manufacturer\n");
Kurt Roeckxf0adb132009-09-16 11:09:32 -0400936 invalidate_entry(powernow_table, i);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500937 continue;
Dave Jones1f729e02006-06-04 19:37:58 -0400938 }
Andreas Herrmanna8eb2842012-01-06 15:57:55 +0100939
940 ps_to_as[index] = i;
941
Andreas Herrmannca446d02009-04-22 13:48:33 +0200942 /* Frequency may be rounded for these */
Mark Langsdorf67937062010-03-31 21:56:45 +0200943 if ((boot_cpu_data.x86 == 0x10 && boot_cpu_data.x86_model < 10)
944 || boot_cpu_data.x86 == 0x11) {
Andreas Herrmann201bf0f2012-01-06 15:56:31 +0100945
946 rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi);
947 if (!(hi & HW_PSTATE_VALID_MASK)) {
948 pr_debug("invalid pstate %d, ignoring\n", index);
949 invalidate_entry(powernow_table, i);
950 continue;
951 }
952
Andreas Herrmannca446d02009-04-22 13:48:33 +0200953 powernow_table[i].frequency =
954 freq_from_fid_did(lo & 0x3f, (lo >> 6) & 7);
955 } else
956 powernow_table[i].frequency =
957 data->acpi_data.states[i].core_frequency * 1000;
Andreas Herrmann201bf0f2012-01-06 15:56:31 +0100958
959 powernow_table[i].index = index;
Dave Jones1f729e02006-06-04 19:37:58 -0400960 }
961 return 0;
962}
963
Dave Jones0e64a0c2009-02-04 14:37:50 -0500964static int fill_powernow_table_fidvid(struct powernow_k8_data *data,
965 struct cpufreq_frequency_table *powernow_table)
Dave Jones1f729e02006-06-04 19:37:58 -0400966{
967 int i;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500968
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700969 for (i = 0; i < data->acpi_data.state_count; i++) {
Dave Jones094ce7f2005-07-29 12:55:40 -0700970 u32 fid;
971 u32 vid;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500972 u32 freq, index;
Lin Ming439913f2010-01-28 10:53:19 +0800973 u64 status, control;
Dave Jones094ce7f2005-07-29 12:55:40 -0700974
975 if (data->exttype) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500976 status = data->acpi_data.states[i].status;
977 fid = status & EXT_FID_MASK;
978 vid = (status >> VID_SHIFT) & EXT_VID_MASK;
Dave Jones841e40b2005-07-28 09:40:04 -0700979 } else {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500980 control = data->acpi_data.states[i].control;
981 fid = control & FID_MASK;
982 vid = (control >> VID_SHIFT) & VID_MASK;
Dave Jones841e40b2005-07-28 09:40:04 -0700983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200985 pr_debug(" %d : fid 0x%x, vid 0x%x\n", i, fid, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Dave Jones0e64a0c2009-02-04 14:37:50 -0500987 index = fid | (vid<<8);
988 powernow_table[i].index = index;
989
990 freq = find_khz_freq_from_fid(fid);
991 powernow_table[i].frequency = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 /* verify frequency is OK */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500994 if ((freq > (MAX_FREQ * 1000)) || (freq < (MIN_FREQ * 1000))) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200995 pr_debug("invalid freq %u kHz, ignoring\n", freq);
Kurt Roeckxf0adb132009-09-16 11:09:32 -0400996 invalidate_entry(powernow_table, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 continue;
998 }
999
Dave Jones0e64a0c2009-02-04 14:37:50 -05001000 /* verify voltage is OK -
1001 * BIOSs are using "off" to indicate invalid */
Dave Jones841e40b2005-07-28 09:40:04 -07001002 if (vid == VID_OFF) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001003 pr_debug("invalid vid %u, ignoring\n", vid);
Kurt Roeckxf0adb132009-09-16 11:09:32 -04001004 invalidate_entry(powernow_table, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 continue;
1006 }
1007
Dave Jones0e64a0c2009-02-04 14:37:50 -05001008 if (freq != (data->acpi_data.states[i].core_frequency * 1000)) {
1009 printk(KERN_INFO PFX "invalid freq entries "
1010 "%u kHz vs. %u kHz\n", freq,
1011 (unsigned int)
1012 (data->acpi_data.states[i].core_frequency
1013 * 1000));
Kurt Roeckxf0adb132009-09-16 11:09:32 -04001014 invalidate_entry(powernow_table, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 continue;
1016 }
1017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
1021static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data)
1022{
Linus Torvaldsf607e3a2008-08-19 13:34:59 -07001023 if (data->acpi_data.state_count)
Dave Jones0e64a0c2009-02-04 14:37:50 -05001024 acpi_processor_unregister_performance(&data->acpi_data,
1025 data->cpu);
Rusty Russell2fdf66b2008-12-31 18:08:47 -08001026 free_cpumask_var(data->acpi_data.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Mark Langsdorf732553e2009-02-03 17:46:43 +01001029static int get_transition_latency(struct powernow_k8_data *data)
1030{
1031 int max_latency = 0;
1032 int i;
1033 for (i = 0; i < data->acpi_data.state_count; i++) {
1034 int cur_latency = data->acpi_data.states[i].transition_latency
1035 + data->acpi_data.states[i].bus_master_latency;
1036 if (cur_latency > max_latency)
1037 max_latency = cur_latency;
1038 }
Thomas Renninger86e13682009-04-22 13:48:30 +02001039 if (max_latency == 0) {
1040 /*
Borislav Petkovc2f4a2c2010-07-08 17:55:30 +02001041 * Fam 11h and later may return 0 as transition latency. This
1042 * is intended and means "very fast". While cpufreq core and
1043 * governors currently can handle that gracefully, better set it
1044 * to 1 to avoid problems in the future.
Thomas Renninger86e13682009-04-22 13:48:30 +02001045 */
Borislav Petkovc2f4a2c2010-07-08 17:55:30 +02001046 if (boot_cpu_data.x86 < 0x11)
Thomas Renninger86e13682009-04-22 13:48:30 +02001047 printk(KERN_ERR FW_WARN PFX "Invalid zero transition "
1048 "latency\n");
1049 max_latency = 1;
1050 }
Mark Langsdorf732553e2009-02-03 17:46:43 +01001051 /* value in usecs, needs to be in nanoseconds */
1052 return 1000 * max_latency;
1053}
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055/* Take a frequency, and issue the fid/vid transition command */
Dave Jones0e64a0c2009-02-04 14:37:50 -05001056static int transition_frequency_fidvid(struct powernow_k8_data *data,
1057 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Dave Jones1f729e02006-06-04 19:37:58 -04001059 u32 fid = 0;
1060 u32 vid = 0;
Dave Jones065b8072005-05-31 19:03:46 -07001061 int res, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 struct cpufreq_freqs freqs;
1063
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001064 pr_debug("cpu %d transition to index %u\n", smp_processor_id(), index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Dave Jones1f729e02006-06-04 19:37:58 -04001066 /* fid/vid correctness check for k8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 /* fid are the lower 8 bits of the index we stored into
Dave Jones1f729e02006-06-04 19:37:58 -04001068 * the cpufreq frequency table in find_psb_table, vid
1069 * are the upper 8 bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 fid = data->powernow_table[index].index & 0xFF;
1072 vid = (data->powernow_table[index].index & 0xFF00) >> 8;
1073
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001074 pr_debug("table matched fid 0x%x, giving vid 0x%x\n", fid, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 if (query_current_values_with_pending_wait(data))
1077 return 1;
1078
1079 if ((data->currvid == vid) && (data->currfid == fid)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001080 pr_debug("target matches current values (fid 0x%x, vid 0x%x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 fid, vid);
1082 return 0;
1083 }
1084
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001085 pr_debug("cpu %d, changing to fid 0x%x, vid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 smp_processor_id(), fid, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 freqs.old = find_khz_freq_from_fid(data->currfid);
1088 freqs.new = find_khz_freq_from_fid(fid);
Dave Jones1f729e02006-06-04 19:37:58 -04001089
Rusty Russell8e7c2592009-06-12 20:58:37 +09301090 for_each_cpu(i, data->available_cores) {
Dave Jones065b8072005-05-31 19:03:46 -07001091 freqs.cpu = i;
1092 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 res = transition_fid_vid(data, fid, vid);
Konrad Rzeszutek Wilka9d3d202011-06-16 15:36:39 -04001096 if (res)
1097 return res;
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 freqs.new = find_khz_freq_from_fid(data->currfid);
Dave Jones1f729e02006-06-04 19:37:58 -04001100
Rusty Russell8e7c2592009-06-12 20:58:37 +09301101 for_each_cpu(i, data->available_cores) {
Dave Jones1f729e02006-06-04 19:37:58 -04001102 freqs.cpu = i;
1103 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
1104 }
1105 return res;
1106}
1107
1108/* Take a frequency, and issue the hardware pstate transition command */
Dave Jones0e64a0c2009-02-04 14:37:50 -05001109static int transition_frequency_pstate(struct powernow_k8_data *data,
1110 unsigned int index)
Dave Jones1f729e02006-06-04 19:37:58 -04001111{
Dave Jones1f729e02006-06-04 19:37:58 -04001112 u32 pstate = 0;
1113 int res, i;
1114 struct cpufreq_freqs freqs;
1115
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001116 pr_debug("cpu %d transition to index %u\n", smp_processor_id(), index);
Dave Jones1f729e02006-06-04 19:37:58 -04001117
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001118 /* get MSR index for hardware pstate transition */
Dave Jones1f729e02006-06-04 19:37:58 -04001119 pstate = index & HW_PSTATE_MASK;
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001120 if (pstate > data->max_hw_pstate)
Konrad Rzeszutek Wilkfbb5b892011-06-16 15:36:40 -04001121 return -EINVAL;
1122
Dave Jones0e64a0c2009-02-04 14:37:50 -05001123 freqs.old = find_khz_freq_from_pstate(data->powernow_table,
1124 data->currpstate);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001125 freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001126
Rusty Russell8e7c2592009-06-12 20:58:37 +09301127 for_each_cpu(i, data->available_cores) {
Dave Jones1f729e02006-06-04 19:37:58 -04001128 freqs.cpu = i;
1129 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1130 }
1131
1132 res = transition_pstate(data, pstate);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001133 freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001134
Rusty Russell8e7c2592009-06-12 20:58:37 +09301135 for_each_cpu(i, data->available_cores) {
Dave Jones065b8072005-05-31 19:03:46 -07001136 freqs.cpu = i;
1137 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
Dave Jones2e3f8fa2006-05-30 17:25:14 -04001138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return res;
1140}
1141
1142/* Driver entry point to switch to the target frequency */
Dave Jones0e64a0c2009-02-04 14:37:50 -05001143static int powernowk8_target(struct cpufreq_policy *pol,
1144 unsigned targfreq, unsigned relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Rusty Russellb8cbe7e2009-11-03 14:57:56 +10301146 cpumask_var_t oldmask;
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001147 struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
Adrian Bunk91800532006-04-19 00:07:28 +02001148 u32 checkfid;
1149 u32 checkvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 unsigned int newstate;
1151 int ret = -EIO;
1152
Jacob Shin4211a302006-04-07 19:49:51 +02001153 if (!data)
1154 return -EINVAL;
1155
Adrian Bunk91800532006-04-19 00:07:28 +02001156 checkfid = data->currfid;
1157 checkvid = data->currvid;
1158
Rusty Russellb8cbe7e2009-11-03 14:57:56 +10301159 /* only run on specific CPU from here on. */
1160 /* This is poor form: use a workqueue or smp_call_function_single */
1161 if (!alloc_cpumask_var(&oldmask, GFP_KERNEL))
1162 return -ENOMEM;
1163
Rusty Russella4636812009-12-17 11:43:29 -06001164 cpumask_copy(oldmask, tsk_cpus_allowed(current));
Rusty Russellb8cbe7e2009-11-03 14:57:56 +10301165 set_cpus_allowed_ptr(current, cpumask_of(pol->cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 if (smp_processor_id() != pol->cpu) {
Jacob Shin8aae8282005-11-21 07:23:08 -08001168 printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 goto err_out;
1170 }
1171
1172 if (pending_bit_stuck()) {
1173 printk(KERN_ERR PFX "failing targ, change pending bit set\n");
1174 goto err_out;
1175 }
1176
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001177 pr_debug("targ: cpu %d, %d kHz, min %d, max %d, relation %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 pol->cpu, targfreq, pol->min, pol->max, relation);
1179
Dave Jones83844512006-05-30 17:43:54 -04001180 if (query_current_values_with_pending_wait(data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001183 if (cpu_family != CPU_HW_PSTATE) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001184 pr_debug("targ: curr fid 0x%x, vid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 data->currfid, data->currvid);
1186
Dave Jones0e64a0c2009-02-04 14:37:50 -05001187 if ((checkvid != data->currvid) ||
1188 (checkfid != data->currfid)) {
Dave Jones1f729e02006-06-04 19:37:58 -04001189 printk(KERN_INFO PFX
Dave Jones0e64a0c2009-02-04 14:37:50 -05001190 "error - out of sync, fix 0x%x 0x%x, "
1191 "vid 0x%x 0x%x\n",
1192 checkfid, data->currfid,
1193 checkvid, data->currvid);
Dave Jones1f729e02006-06-04 19:37:58 -04001194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
1196
Dave Jones0e64a0c2009-02-04 14:37:50 -05001197 if (cpufreq_frequency_table_target(pol, data->powernow_table,
1198 targfreq, relation, &newstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 goto err_out;
1200
Ingo Molnar14cc3e22006-03-26 01:37:14 -08001201 mutex_lock(&fidvid_mutex);
Dave Jones065b8072005-05-31 19:03:46 -07001202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 powernow_k8_acpi_pst_values(data, newstate);
1204
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001205 if (cpu_family == CPU_HW_PSTATE)
Andreas Herrmanna8eb2842012-01-06 15:57:55 +01001206 ret = transition_frequency_pstate(data,
1207 data->powernow_table[newstate].index);
Dave Jones1f729e02006-06-04 19:37:58 -04001208 else
1209 ret = transition_frequency_fidvid(data, newstate);
1210 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 printk(KERN_ERR PFX "transition frequency failed\n");
1212 ret = 1;
Ingo Molnar14cc3e22006-03-26 01:37:14 -08001213 mutex_unlock(&fidvid_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 goto err_out;
1215 }
Ingo Molnar14cc3e22006-03-26 01:37:14 -08001216 mutex_unlock(&fidvid_mutex);
Dave Jones065b8072005-05-31 19:03:46 -07001217
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001218 if (cpu_family == CPU_HW_PSTATE)
Dave Jones0e64a0c2009-02-04 14:37:50 -05001219 pol->cur = find_khz_freq_from_pstate(data->powernow_table,
Andreas Herrmanna8eb2842012-01-06 15:57:55 +01001220 data->powernow_table[newstate].index);
Dave Jones1f729e02006-06-04 19:37:58 -04001221 else
1222 pol->cur = find_khz_freq_from_fid(data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 ret = 0;
1224
1225err_out:
Rusty Russellb8cbe7e2009-11-03 14:57:56 +10301226 set_cpus_allowed_ptr(current, oldmask);
1227 free_cpumask_var(oldmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return ret;
1229}
1230
1231/* Driver entry point to verify the policy and range of frequencies */
1232static int powernowk8_verify(struct cpufreq_policy *pol)
1233{
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001234 struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Jacob Shin4211a302006-04-07 19:49:51 +02001236 if (!data)
1237 return -EINVAL;
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return cpufreq_frequency_table_verify(pol, data->powernow_table);
1240}
1241
Rusty Russell1ff6e972009-06-12 20:55:37 +09301242struct init_on_cpu {
1243 struct powernow_k8_data *data;
1244 int rc;
1245};
1246
1247static void __cpuinit powernowk8_cpu_init_on_cpu(void *_init_on_cpu)
1248{
1249 struct init_on_cpu *init_on_cpu = _init_on_cpu;
1250
1251 if (pending_bit_stuck()) {
1252 printk(KERN_ERR PFX "failing init, change pending bit set\n");
1253 init_on_cpu->rc = -ENODEV;
1254 return;
1255 }
1256
1257 if (query_current_values_with_pending_wait(init_on_cpu->data)) {
1258 init_on_cpu->rc = -ENODEV;
1259 return;
1260 }
1261
1262 if (cpu_family == CPU_OPTERON)
1263 fidvid_msr_init();
1264
1265 init_on_cpu->rc = 0;
1266}
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268/* per CPU init entry point to the driver */
Andi Kleenaa41eb92006-01-16 01:56:36 +01001269static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Andrew Mortonb394f1d2009-06-10 12:41:37 -07001271 static const char ACPI_PSS_BIOS_BUG_MSG[] =
1272 KERN_ERR FW_BUG PFX "No compatible ACPI _PSS objects found.\n"
Joe Perchesad361c92009-07-06 13:05:40 -07001273 FW_BUG PFX "Try again with latest BIOS.\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 struct powernow_k8_data *data;
Rusty Russell1ff6e972009-06-12 20:55:37 +09301275 struct init_on_cpu init_on_cpu;
Andi Kleend7fa7062006-04-07 19:49:48 +02001276 int rc;
Mark Langsdorfa2fed572010-03-18 18:41:46 +01001277 struct cpuinfo_x86 *c = &cpu_data(pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Jacob Shin8aae8282005-11-21 07:23:08 -08001279 if (!cpu_online(pol->cpu))
1280 return -ENODEV;
1281
Rusty Russell1ff6e972009-06-12 20:55:37 +09301282 smp_call_function_single(pol->cpu, check_supported_cpu, &rc, 1);
1283 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 return -ENODEV;
1285
Dave Jonesbfdc7082005-10-20 15:16:15 -07001286 data = kzalloc(sizeof(struct powernow_k8_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (!data) {
1288 printk(KERN_ERR PFX "unable to alloc powernow_k8_data");
1289 return -ENOMEM;
1290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 data->cpu = pol->cpu;
Andreas Herrmanna266d9f2008-11-21 14:49:25 +01001293 data->currpstate = HW_PSTATE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Rusty Russella0abd522009-02-16 17:31:58 -06001295 if (powernow_k8_cpu_init_acpi(data)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 /*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03001297 * Use the PSB BIOS structure. This is only available on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 * an UP version, and is deprecated by AMD.
1299 */
Randy Dunlap9ed059e2006-06-20 22:32:56 -07001300 if (num_online_cpus() != 1) {
Thomas Renningerdf182972009-04-22 13:48:32 +02001301 printk_once(ACPI_PSS_BIOS_BUG_MSG);
Dave Jones0cb8bc22009-02-18 14:11:00 -05001302 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
1304 if (pol->cpu != 0) {
Thomas Renninger2fd47092008-09-01 14:27:03 +02001305 printk(KERN_ERR FW_BUG PFX "No ACPI _PSS objects for "
1306 "CPU other than CPU0. Complain to your BIOS "
1307 "vendor.\n");
Dave Jones0cb8bc22009-02-18 14:11:00 -05001308 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
1310 rc = find_psb_table(data);
Dave Jones0cb8bc22009-02-18 14:11:00 -05001311 if (rc)
1312 goto err_out;
1313
Mark Langsdorf732553e2009-02-03 17:46:43 +01001314 /* Take a crude guess here.
1315 * That guess was in microseconds, so multiply with 1000 */
1316 pol->cpuinfo.transition_latency = (
1317 ((data->rvo + 8) * data->vstable * VST_UNITS_20US) +
1318 ((1 << data->irt) * 30)) * 1000;
1319 } else /* ACPI _PSS objects available */
1320 pol->cpuinfo.transition_latency = get_transition_latency(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 /* only run on specific CPU from here on */
Rusty Russell1ff6e972009-06-12 20:55:37 +09301323 init_on_cpu.data = data;
1324 smp_call_function_single(data->cpu, powernowk8_cpu_init_on_cpu,
1325 &init_on_cpu, 1);
1326 rc = init_on_cpu.rc;
1327 if (rc != 0)
1328 goto err_out_exit_acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Linus Torvaldsf607e3a2008-08-19 13:34:59 -07001330 if (cpu_family == CPU_HW_PSTATE)
Rusty Russell835481d2009-01-04 05:18:06 -08001331 cpumask_copy(pol->cpus, cpumask_of(pol->cpu));
Linus Torvaldsf607e3a2008-08-19 13:34:59 -07001332 else
Rusty Russell7ad728f2009-03-13 14:49:50 +10301333 cpumask_copy(pol->cpus, cpu_core_mask(pol->cpu));
Rusty Russell835481d2009-01-04 05:18:06 -08001334 data->available_cores = pol->cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001336 if (cpu_family == CPU_HW_PSTATE)
Dave Jones0e64a0c2009-02-04 14:37:50 -05001337 pol->cur = find_khz_freq_from_pstate(data->powernow_table,
1338 data->currpstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001339 else
1340 pol->cur = find_khz_freq_from_fid(data->currfid);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001341 pr_debug("policy current frequency %d kHz\n", pol->cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 /* min/max the cpu is capable of */
1344 if (cpufreq_frequency_table_cpuinfo(pol, data->powernow_table)) {
Thomas Renninger2fd47092008-09-01 14:27:03 +02001345 printk(KERN_ERR FW_BUG PFX "invalid powernow_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 powernow_k8_cpu_exit_acpi(data);
1347 kfree(data->powernow_table);
1348 kfree(data);
1349 return -EINVAL;
1350 }
1351
Mark Langsdorfa2fed572010-03-18 18:41:46 +01001352 /* Check for APERF/MPERF support in hardware */
1353 if (cpu_has(c, X86_FEATURE_APERFMPERF))
1354 cpufreq_amd64_driver.getavg = cpufreq_get_measured_perf;
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 cpufreq_frequency_table_get_attr(data->powernow_table, pol->cpu);
1357
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001358 if (cpu_family == CPU_HW_PSTATE)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001359 pr_debug("cpu_init done, current pstate 0x%x\n",
Dave Jones0e64a0c2009-02-04 14:37:50 -05001360 data->currpstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001361 else
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001362 pr_debug("cpu_init done, current fid 0x%x, vid 0x%x\n",
Dave Jones1f729e02006-06-04 19:37:58 -04001363 data->currfid, data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001365 per_cpu(powernow_data, pol->cpu) = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 return 0;
1368
Rusty Russell1ff6e972009-06-12 20:55:37 +09301369err_out_exit_acpi:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 powernow_k8_cpu_exit_acpi(data);
1371
Dave Jones0cb8bc22009-02-18 14:11:00 -05001372err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 kfree(data);
1374 return -ENODEV;
1375}
1376
Dave Jones0e64a0c2009-02-04 14:37:50 -05001377static int __devexit powernowk8_cpu_exit(struct cpufreq_policy *pol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001379 struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 if (!data)
1382 return -EINVAL;
1383
1384 powernow_k8_cpu_exit_acpi(data);
1385
1386 cpufreq_frequency_table_put_attr(pol->cpu);
1387
1388 kfree(data->powernow_table);
1389 kfree(data);
Thomas Renninger557a7012009-12-14 11:44:15 +01001390 per_cpu(powernow_data, pol->cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 return 0;
1393}
1394
Rusty Russell1ff6e972009-06-12 20:55:37 +09301395static void query_values_on_cpu(void *_err)
1396{
1397 int *err = _err;
Tejun Heo0a3aee02010-12-18 16:28:55 +01001398 struct powernow_k8_data *data = __this_cpu_read(powernow_data);
Rusty Russell1ff6e972009-06-12 20:55:37 +09301399
1400 *err = query_current_values_with_pending_wait(data);
1401}
1402
Dave Jones0e64a0c2009-02-04 14:37:50 -05001403static unsigned int powernowk8_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Naga Chumbalkare15bc452009-06-11 15:26:54 +00001405 struct powernow_k8_data *data = per_cpu(powernow_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 unsigned int khz = 0;
Rusty Russell1ff6e972009-06-12 20:55:37 +09301407 int err;
shin, jacobeef51672006-03-27 09:57:20 -06001408
1409 if (!data)
Thomas Renninger557a7012009-12-14 11:44:15 +01001410 return 0;
shin, jacobeef51672006-03-27 09:57:20 -06001411
Rusty Russell1ff6e972009-06-12 20:55:37 +09301412 smp_call_function_single(cpu, query_values_on_cpu, &err, true);
1413 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 goto out;
1415
Joachim Deguara58389a82007-01-30 16:53:54 +01001416 if (cpu_family == CPU_HW_PSTATE)
Mike Travisfc0e4742008-04-04 18:11:05 -07001417 khz = find_khz_freq_from_pstate(data->powernow_table,
1418 data->currpstate);
Joachim Deguara58389a82007-01-30 16:53:54 +01001419 else
1420 khz = find_khz_freq_from_fid(data->currfid);
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Dave Jonesb9111b72005-09-23 11:10:42 -07001423out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return khz;
1425}
1426
Borislav Petkov73860c62010-03-31 21:56:42 +02001427static void _cpb_toggle_msrs(bool t)
1428{
1429 int cpu;
1430
1431 get_online_cpus();
1432
1433 rdmsr_on_cpus(cpu_online_mask, MSR_K7_HWCR, msrs);
1434
1435 for_each_cpu(cpu, cpu_online_mask) {
1436 struct msr *reg = per_cpu_ptr(msrs, cpu);
1437 if (t)
1438 reg->l &= ~BIT(25);
1439 else
1440 reg->l |= BIT(25);
1441 }
1442 wrmsr_on_cpus(cpu_online_mask, MSR_K7_HWCR, msrs);
1443
1444 put_online_cpus();
1445}
1446
1447/*
1448 * Switch on/off core performance boosting.
1449 *
1450 * 0=disable
1451 * 1=enable.
1452 */
1453static void cpb_toggle(bool t)
1454{
1455 if (!cpb_capable)
1456 return;
1457
1458 if (t && !cpb_enabled) {
1459 cpb_enabled = true;
1460 _cpb_toggle_msrs(t);
1461 printk(KERN_INFO PFX "Core Boosting enabled.\n");
1462 } else if (!t && cpb_enabled) {
1463 cpb_enabled = false;
1464 _cpb_toggle_msrs(t);
1465 printk(KERN_INFO PFX "Core Boosting disabled.\n");
1466 }
1467}
1468
1469static ssize_t store_cpb(struct cpufreq_policy *policy, const char *buf,
1470 size_t count)
1471{
1472 int ret = -EINVAL;
1473 unsigned long val = 0;
1474
1475 ret = strict_strtoul(buf, 10, &val);
1476 if (!ret && (val == 0 || val == 1) && cpb_capable)
1477 cpb_toggle(val);
1478 else
1479 return -EINVAL;
1480
1481 return count;
1482}
1483
1484static ssize_t show_cpb(struct cpufreq_policy *policy, char *buf)
1485{
1486 return sprintf(buf, "%u\n", cpb_enabled);
1487}
1488
1489#define define_one_rw(_name) \
1490static struct freq_attr _name = \
1491__ATTR(_name, 0644, show_##_name, store_##_name)
1492
1493define_one_rw(cpb);
1494
Dave Jones0e64a0c2009-02-04 14:37:50 -05001495static struct freq_attr *powernow_k8_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 &cpufreq_freq_attr_scaling_available_freqs,
Borislav Petkov73860c62010-03-31 21:56:42 +02001497 &cpb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 NULL,
1499};
1500
Linus Torvalds221dee22007-02-26 14:55:48 -08001501static struct cpufreq_driver cpufreq_amd64_driver = {
Thomas Renningere2f74f32009-11-19 12:31:01 +01001502 .verify = powernowk8_verify,
1503 .target = powernowk8_target,
1504 .bios_limit = acpi_processor_get_bios_limit,
1505 .init = powernowk8_cpu_init,
1506 .exit = __devexit_p(powernowk8_cpu_exit),
1507 .get = powernowk8_get,
1508 .name = "powernow-k8",
1509 .owner = THIS_MODULE,
1510 .attr = powernow_k8_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511};
1512
Borislav Petkov73860c62010-03-31 21:56:42 +02001513/*
1514 * Clear the boost-disable flag on the CPU_DOWN path so that this cpu
1515 * cannot block the remaining ones from boosting. On the CPU_UP path we
1516 * simply keep the boost-disable flag in sync with the current global
1517 * state.
1518 */
Borislav Petkovfe501f12010-05-25 15:28:58 +00001519static int cpb_notify(struct notifier_block *nb, unsigned long action,
1520 void *hcpu)
Borislav Petkov73860c62010-03-31 21:56:42 +02001521{
1522 unsigned cpu = (long)hcpu;
1523 u32 lo, hi;
1524
1525 switch (action) {
1526 case CPU_UP_PREPARE:
1527 case CPU_UP_PREPARE_FROZEN:
1528
1529 if (!cpb_enabled) {
1530 rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
1531 lo |= BIT(25);
1532 wrmsr_on_cpu(cpu, MSR_K7_HWCR, lo, hi);
1533 }
1534 break;
1535
1536 case CPU_DOWN_PREPARE:
1537 case CPU_DOWN_PREPARE_FROZEN:
1538 rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
1539 lo &= ~BIT(25);
1540 wrmsr_on_cpu(cpu, MSR_K7_HWCR, lo, hi);
1541 break;
1542
1543 default:
1544 break;
1545 }
1546
1547 return NOTIFY_OK;
1548}
1549
Borislav Petkovfe501f12010-05-25 15:28:58 +00001550static struct notifier_block cpb_nb = {
Borislav Petkov73860c62010-03-31 21:56:42 +02001551 .notifier_call = cpb_notify,
1552};
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554/* driver entry point for init */
Andi Kleenaa41eb92006-01-16 01:56:36 +01001555static int __cpuinit powernowk8_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Borislav Petkov73860c62010-03-31 21:56:42 +02001557 unsigned int i, supported_cpus = 0, cpu;
Neil Brownac818312010-11-24 11:28:01 +11001558 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Andi Kleenfa8031a2012-01-26 00:09:12 +01001560 if (!x86_match_cpu(powernow_k8_ids))
1561 return -ENODEV;
1562
Andrew Mortona7201152006-03-24 03:15:07 -08001563 for_each_online_cpu(i) {
Rusty Russell1ff6e972009-06-12 20:55:37 +09301564 int rc;
1565 smp_call_function_single(i, check_supported_cpu, &rc, 1);
1566 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 supported_cpus++;
1568 }
1569
Borislav Petkov73860c62010-03-31 21:56:42 +02001570 if (supported_cpus != num_online_cpus())
1571 return -ENODEV;
1572
1573 printk(KERN_INFO PFX "Found %d %s (%d cpu cores) (" VERSION ")\n",
1574 num_online_nodes(), boot_cpu_data.x86_model_id, supported_cpus);
1575
1576 if (boot_cpu_has(X86_FEATURE_CPB)) {
1577
1578 cpb_capable = true;
1579
Borislav Petkov73860c62010-03-31 21:56:42 +02001580 msrs = msrs_alloc();
1581 if (!msrs) {
1582 printk(KERN_ERR "%s: Error allocating msrs!\n", __func__);
1583 return -ENOMEM;
1584 }
1585
Dave Jonesa536b122010-11-23 21:29:31 -05001586 register_cpu_notifier(&cpb_nb);
1587
Borislav Petkov73860c62010-03-31 21:56:42 +02001588 rdmsr_on_cpus(cpu_online_mask, MSR_K7_HWCR, msrs);
1589
1590 for_each_cpu(cpu, cpu_online_mask) {
1591 struct msr *reg = per_cpu_ptr(msrs, cpu);
1592 cpb_enabled |= !(!!(reg->l & BIT(25)));
1593 }
1594
1595 printk(KERN_INFO PFX "Core Performance Boosting: %s.\n",
1596 (cpb_enabled ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 }
1598
Neil Brownac818312010-11-24 11:28:01 +11001599 rv = cpufreq_register_driver(&cpufreq_amd64_driver);
1600 if (rv < 0 && boot_cpu_has(X86_FEATURE_CPB)) {
1601 unregister_cpu_notifier(&cpb_nb);
1602 msrs_free(msrs);
1603 msrs = NULL;
1604 }
1605 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
1608/* driver entry point for term */
1609static void __exit powernowk8_exit(void)
1610{
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001611 pr_debug("exit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Borislav Petkov73860c62010-03-31 21:56:42 +02001613 if (boot_cpu_has(X86_FEATURE_CPB)) {
1614 msrs_free(msrs);
1615 msrs = NULL;
1616
1617 unregister_cpu_notifier(&cpb_nb);
1618 }
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 cpufreq_unregister_driver(&cpufreq_amd64_driver);
1621}
1622
Dave Jones0e64a0c2009-02-04 14:37:50 -05001623MODULE_AUTHOR("Paul Devriendt <paul.devriendt@amd.com> and "
1624 "Mark Langsdorf <mark.langsdorf@amd.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625MODULE_DESCRIPTION("AMD Athlon 64 and Opteron processor frequency driver.");
1626MODULE_LICENSE("GPL");
1627
1628late_initcall(powernowk8_init);
1629module_exit(powernowk8_exit);