blob: 935989693a649a44d701712be51886545b9f2ff1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Dave Jones1f729e02006-06-04 19:37:58 -04002 * (c) 2003-2006 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>
12 * (C) 2004 Pavel Machek <pavel@suse.cz>
13 * Licensed under the terms of the GNU GPL License version 2.
14 * Based upon datasheets & sample CPUs kindly provided by AMD.
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"
48
49/* serialize freq changes */
Ingo Molnar14cc3e22006-03-26 01:37:14 -080050static DEFINE_MUTEX(fidvid_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
travis@sgi.com2c6b8c02008-01-30 13:33:11 +010052static DEFINE_PER_CPU(struct powernow_k8_data *, powernow_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Dave Jones1f729e02006-06-04 19:37:58 -040054static int cpu_family = CPU_OPTERON;
55
Dave Jones065b8072005-05-31 19:03:46 -070056#ifndef CONFIG_SMP
Rusty Russell7ad728f2009-03-13 14:49:50 +103057static inline const struct cpumask *cpu_core_mask(int cpu)
58{
59 return cpumask_of(0);
60}
Dave Jones065b8072005-05-31 19:03:46 -070061#endif
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/* Return a frequency in MHz, given an input fid */
64static u32 find_freq_from_fid(u32 fid)
65{
66 return 800 + (fid * 100);
67}
68
69/* Return a frequency in KHz, given an input fid */
70static u32 find_khz_freq_from_fid(u32 fid)
71{
72 return 1000 * find_freq_from_fid(fid);
73}
74
Dave Jones0e64a0c2009-02-04 14:37:50 -050075static u32 find_khz_freq_from_pstate(struct cpufreq_frequency_table *data,
76 u32 pstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Mark Langsdorfc5829cd2007-10-17 16:52:08 -050078 return data[pstate].frequency;
Dave Jones1f729e02006-06-04 19:37:58 -040079}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* Return the vco fid for an input fid
82 *
83 * Each "low" fid has corresponding "high" fid, and you can get to "low" fids
84 * only from corresponding high fids. This returns "high" fid corresponding to
85 * "low" one.
86 */
87static u32 convert_fid_to_vco_fid(u32 fid)
88{
Dave Jones32ee8c32006-02-28 00:43:23 -050089 if (fid < HI_FID_TABLE_BOTTOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return 8 + (2 * fid);
Dave Jones32ee8c32006-02-28 00:43:23 -050091 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95/*
96 * Return 1 if the pending bit is set. Unless we just instructed the processor
97 * to transition to a new state, seeing this bit set is really bad news.
98 */
99static int pending_bit_stuck(void)
100{
101 u32 lo, hi;
102
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500103 if (cpu_family == CPU_HW_PSTATE)
Dave Jones1f729e02006-06-04 19:37:58 -0400104 return 0;
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 rdmsr(MSR_FIDVID_STATUS, lo, hi);
107 return lo & MSR_S_LO_CHANGE_PENDING ? 1 : 0;
108}
109
110/*
111 * Update the global current fid / vid values from the status msr.
112 * Returns 1 on error.
113 */
114static int query_current_values_with_pending_wait(struct powernow_k8_data *data)
115{
116 u32 lo, hi;
117 u32 i = 0;
118
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500119 if (cpu_family == CPU_HW_PSTATE) {
Andreas Herrmanna266d9f2008-11-21 14:49:25 +0100120 if (data->currpstate == HW_PSTATE_INVALID) {
121 /* read (initial) hw pstate if not yet set */
122 rdmsr(MSR_PSTATE_STATUS, lo, hi);
123 i = lo & HW_PSTATE_MASK;
124
125 /*
126 * a workaround for family 11h erratum 311 might cause
127 * an "out-of-range Pstate if the core is in Pstate-0
128 */
129 if (i >= data->numps)
130 data->currpstate = HW_PSTATE_0;
131 else
132 data->currpstate = i;
133 }
Dave Jones1f729e02006-06-04 19:37:58 -0400134 return 0;
135 }
Dave Jones7153d962005-07-28 09:45:10 -0700136 do {
Dave Jones0213df72005-10-21 17:21:03 -0400137 if (i++ > 10000) {
138 dprintk("detected change pending stuck\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return 1;
140 }
141 rdmsr(MSR_FIDVID_STATUS, lo, hi);
Dave Jones7153d962005-07-28 09:45:10 -0700142 } while (lo & MSR_S_LO_CHANGE_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 data->currvid = hi & MSR_S_HI_CURRENT_VID;
145 data->currfid = lo & MSR_S_LO_CURRENT_FID;
146
147 return 0;
148}
149
150/* the isochronous relief time */
151static void count_off_irt(struct powernow_k8_data *data)
152{
153 udelay((1 << data->irt) * 10);
154 return;
155}
156
Simon Arlott27b46d72007-10-20 01:13:56 +0200157/* the voltage stabilization time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static void count_off_vst(struct powernow_k8_data *data)
159{
160 udelay(data->vstable * VST_UNITS_20US);
161 return;
162}
163
164/* need to init the control msr to a safe value (for each cpu) */
165static void fidvid_msr_init(void)
166{
167 u32 lo, hi;
168 u8 fid, vid;
169
170 rdmsr(MSR_FIDVID_STATUS, lo, hi);
171 vid = hi & MSR_S_HI_CURRENT_VID;
172 fid = lo & MSR_S_LO_CURRENT_FID;
173 lo = fid | (vid << MSR_C_LO_VID_SHIFT);
174 hi = MSR_C_HI_STP_GNT_BENIGN;
175 dprintk("cpu%d, init lo 0x%x, hi 0x%x\n", smp_processor_id(), lo, hi);
176 wrmsr(MSR_FIDVID_CTL, lo, hi);
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/* write the new fid value along with the other control fields to the msr */
180static int write_new_fid(struct powernow_k8_data *data, u32 fid)
181{
182 u32 lo;
183 u32 savevid = data->currvid;
Dave Jones0213df72005-10-21 17:21:03 -0400184 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 if ((fid & INVALID_FID_MASK) || (data->currvid & INVALID_VID_MASK)) {
187 printk(KERN_ERR PFX "internal error - overflow on fid write\n");
188 return 1;
189 }
190
Dave Jones0e64a0c2009-02-04 14:37:50 -0500191 lo = fid;
192 lo |= (data->currvid << MSR_C_LO_VID_SHIFT);
193 lo |= MSR_C_LO_INIT_FID_VID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 dprintk("writing fid 0x%x, lo 0x%x, hi 0x%x\n",
196 fid, lo, data->plllock * PLL_LOCK_CONVERSION);
197
Dave Jones0213df72005-10-21 17:21:03 -0400198 do {
199 wrmsr(MSR_FIDVID_CTL, lo, data->plllock * PLL_LOCK_CONVERSION);
200 if (i++ > 100) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500201 printk(KERN_ERR PFX
202 "Hardware error - pending bit very stuck - "
203 "no further pstate changes possible\n");
Chris Wright63172cb2005-10-21 16:56:08 -0700204 return 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500205 }
Dave Jones0213df72005-10-21 17:21:03 -0400206 } while (query_current_values_with_pending_wait(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 count_off_irt(data);
209
210 if (savevid != data->currvid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500211 printk(KERN_ERR PFX
212 "vid change on fid trans, old 0x%x, new 0x%x\n",
213 savevid, data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 1;
215 }
216
217 if (fid != data->currfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500218 printk(KERN_ERR PFX
219 "fid trans failed, fid 0x%x, curr 0x%x\n", fid,
220 data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return 1;
222 }
223
224 return 0;
225}
226
227/* Write a new vid to the hardware */
228static int write_new_vid(struct powernow_k8_data *data, u32 vid)
229{
230 u32 lo;
231 u32 savefid = data->currfid;
Dave Jones0213df72005-10-21 17:21:03 -0400232 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 if ((data->currfid & INVALID_FID_MASK) || (vid & INVALID_VID_MASK)) {
235 printk(KERN_ERR PFX "internal error - overflow on vid write\n");
236 return 1;
237 }
238
Dave Jones0e64a0c2009-02-04 14:37:50 -0500239 lo = data->currfid;
240 lo |= (vid << MSR_C_LO_VID_SHIFT);
241 lo |= MSR_C_LO_INIT_FID_VID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 dprintk("writing vid 0x%x, lo 0x%x, hi 0x%x\n",
244 vid, lo, STOP_GRANT_5NS);
245
Dave Jones0213df72005-10-21 17:21:03 -0400246 do {
247 wrmsr(MSR_FIDVID_CTL, lo, STOP_GRANT_5NS);
Dave Jones6df89002005-11-30 13:33:30 -0800248 if (i++ > 100) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500249 printk(KERN_ERR PFX "internal error - pending bit "
250 "very stuck - no further pstate "
251 "changes possible\n");
Dave Jones6df89002005-11-30 13:33:30 -0800252 return 1;
253 }
Dave Jones0213df72005-10-21 17:21:03 -0400254 } while (query_current_values_with_pending_wait(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 if (savefid != data->currfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500257 printk(KERN_ERR PFX "fid changed on vid trans, old "
258 "0x%x new 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 savefid, data->currfid);
260 return 1;
261 }
262
263 if (vid != data->currvid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500264 printk(KERN_ERR PFX "vid trans failed, vid 0x%x, "
265 "curr 0x%x\n",
266 vid, data->currvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return 1;
268 }
269
270 return 0;
271}
272
273/*
274 * Reduce the vid by the max of step or reqvid.
275 * Decreasing vid codes represent increasing voltages:
Dave Jones841e40b2005-07-28 09:40:04 -0700276 * 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 -0700277 */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500278static int decrease_vid_code_by_step(struct powernow_k8_data *data,
279 u32 reqvid, u32 step)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 if ((data->currvid - reqvid) > step)
282 reqvid = data->currvid - step;
283
284 if (write_new_vid(data, reqvid))
285 return 1;
286
287 count_off_vst(data);
288
289 return 0;
290}
291
Dave Jones1f729e02006-06-04 19:37:58 -0400292/* Change hardware pstate by single MSR write */
293static int transition_pstate(struct powernow_k8_data *data, u32 pstate)
294{
295 wrmsr(MSR_PSTATE_CTRL, pstate, 0);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500296 data->currpstate = pstate;
Dave Jones1f729e02006-06-04 19:37:58 -0400297 return 0;
298}
299
300/* Change Opteron/Athlon64 fid and vid, by the 3 phases. */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500301static int transition_fid_vid(struct powernow_k8_data *data,
302 u32 reqfid, u32 reqvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 if (core_voltage_pre_transition(data, reqvid))
305 return 1;
306
307 if (core_frequency_transition(data, reqfid))
308 return 1;
309
310 if (core_voltage_post_transition(data, reqvid))
311 return 1;
312
313 if (query_current_values_with_pending_wait(data))
314 return 1;
315
316 if ((reqfid != data->currfid) || (reqvid != data->currvid)) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500317 printk(KERN_ERR PFX "failed (cpu%d): req 0x%x 0x%x, "
318 "curr 0x%x 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 smp_processor_id(),
320 reqfid, reqvid, data->currfid, data->currvid);
321 return 1;
322 }
323
324 dprintk("transitioned (cpu%d): new fid 0x%x, vid 0x%x\n",
325 smp_processor_id(), data->currfid, data->currvid);
326
327 return 0;
328}
329
330/* Phase 1 - core voltage transition ... setup voltage */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500331static int core_voltage_pre_transition(struct powernow_k8_data *data,
332 u32 reqvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 u32 rvosteps = data->rvo;
335 u32 savefid = data->currfid;
Dave Jones065b8072005-05-31 19:03:46 -0700336 u32 maxvid, lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Dave Jones0e64a0c2009-02-04 14:37:50 -0500338 dprintk("ph1 (cpu%d): start, currfid 0x%x, currvid 0x%x, "
339 "reqvid 0x%x, rvo 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 smp_processor_id(),
341 data->currfid, data->currvid, reqvid, data->rvo);
342
Dave Jones065b8072005-05-31 19:03:46 -0700343 rdmsr(MSR_FIDVID_STATUS, lo, maxvid);
344 maxvid = 0x1f & (maxvid >> 16);
345 dprintk("ph1 maxvid=0x%x\n", maxvid);
346 if (reqvid < maxvid) /* lower numbers are higher voltages */
347 reqvid = maxvid;
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 while (data->currvid > reqvid) {
350 dprintk("ph1: curr 0x%x, req vid 0x%x\n",
351 data->currvid, reqvid);
352 if (decrease_vid_code_by_step(data, reqvid, data->vidmvs))
353 return 1;
354 }
355
Dave Jones065b8072005-05-31 19:03:46 -0700356 while ((rvosteps > 0) && ((data->rvo + data->currvid) > reqvid)) {
357 if (data->currvid == maxvid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 rvosteps = 0;
359 } else {
360 dprintk("ph1: changing vid for rvo, req 0x%x\n",
361 data->currvid - 1);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500362 if (decrease_vid_code_by_step(data, data->currvid-1, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return 1;
364 rvosteps--;
365 }
366 }
367
368 if (query_current_values_with_pending_wait(data))
369 return 1;
370
371 if (savefid != data->currfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500372 printk(KERN_ERR PFX "ph1 err, currfid changed 0x%x\n",
373 data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return 1;
375 }
376
377 dprintk("ph1 complete, currfid 0x%x, currvid 0x%x\n",
378 data->currfid, data->currvid);
379
380 return 0;
381}
382
383/* Phase 2 - core frequency transition */
384static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid)
385{
Dave Jones0e64a0c2009-02-04 14:37:50 -0500386 u32 vcoreqfid, vcocurrfid, vcofiddiff;
387 u32 fid_interval, savevid = data->currvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Dave Jones0e64a0c2009-02-04 14:37:50 -0500389 if ((reqfid < HI_FID_TABLE_BOTTOM) &&
390 (data->currfid < HI_FID_TABLE_BOTTOM)) {
391 printk(KERN_ERR PFX "ph2: illegal lo-lo transition "
392 "0x%x 0x%x\n", reqfid, data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return 1;
394 }
395
396 if (data->currfid == reqfid) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500397 printk(KERN_ERR PFX "ph2 null fid transition 0x%x\n",
398 data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return 0;
400 }
401
Dave Jones0e64a0c2009-02-04 14:37:50 -0500402 dprintk("ph2 (cpu%d): starting, currfid 0x%x, currvid 0x%x, "
403 "reqfid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 smp_processor_id(),
405 data->currfid, data->currvid, reqfid);
406
407 vcoreqfid = convert_fid_to_vco_fid(reqfid);
408 vcocurrfid = convert_fid_to_vco_fid(data->currfid);
409 vcofiddiff = vcocurrfid > vcoreqfid ? vcocurrfid - vcoreqfid
410 : vcoreqfid - vcocurrfid;
411
412 while (vcofiddiff > 2) {
Langsdorf, Mark019a61b2005-11-29 14:18:03 -0600413 (data->currfid & 1) ? (fid_interval = 1) : (fid_interval = 2);
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (reqfid > data->currfid) {
416 if (data->currfid > LO_FID_TABLE_TOP) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500417 if (write_new_fid(data,
418 data->currfid + fid_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 } else {
421 if (write_new_fid
Dave Jones0e64a0c2009-02-04 14:37:50 -0500422 (data,
423 2 + convert_fid_to_vco_fid(data->currfid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426 } else {
Langsdorf, Mark019a61b2005-11-29 14:18:03 -0600427 if (write_new_fid(data, data->currfid - fid_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return 1;
429 }
430
431 vcocurrfid = convert_fid_to_vco_fid(data->currfid);
432 vcofiddiff = vcocurrfid > vcoreqfid ? vcocurrfid - vcoreqfid
433 : vcoreqfid - vcocurrfid;
434 }
435
436 if (write_new_fid(data, reqfid))
437 return 1;
438
439 if (query_current_values_with_pending_wait(data))
440 return 1;
441
442 if (data->currfid != reqfid) {
443 printk(KERN_ERR PFX
Dave Jones0e64a0c2009-02-04 14:37:50 -0500444 "ph2: mismatch, failed fid transition, "
445 "curr 0x%x, req 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 data->currfid, reqfid);
447 return 1;
448 }
449
450 if (savevid != data->currvid) {
451 printk(KERN_ERR PFX "ph2: vid changed, save 0x%x, curr 0x%x\n",
452 savevid, data->currvid);
453 return 1;
454 }
455
456 dprintk("ph2 complete, currfid 0x%x, currvid 0x%x\n",
457 data->currfid, data->currvid);
458
459 return 0;
460}
461
462/* Phase 3 - core voltage transition flow ... jump to the final vid. */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500463static int core_voltage_post_transition(struct powernow_k8_data *data,
464 u32 reqvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 u32 savefid = data->currfid;
467 u32 savereqvid = reqvid;
468
469 dprintk("ph3 (cpu%d): starting, currfid 0x%x, currvid 0x%x\n",
470 smp_processor_id(),
471 data->currfid, data->currvid);
472
473 if (reqvid != data->currvid) {
474 if (write_new_vid(data, reqvid))
475 return 1;
476
477 if (savefid != data->currfid) {
478 printk(KERN_ERR PFX
479 "ph3: bad fid change, save 0x%x, curr 0x%x\n",
480 savefid, data->currfid);
481 return 1;
482 }
483
484 if (data->currvid != reqvid) {
485 printk(KERN_ERR PFX
Dave Jones0e64a0c2009-02-04 14:37:50 -0500486 "ph3: failed vid transition\n, "
487 "req 0x%x, curr 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 reqvid, data->currvid);
489 return 1;
490 }
491 }
492
493 if (query_current_values_with_pending_wait(data))
494 return 1;
495
496 if (savereqvid != data->currvid) {
497 dprintk("ph3 failed, currvid 0x%x\n", data->currvid);
498 return 1;
499 }
500
501 if (savefid != data->currfid) {
502 dprintk("ph3 failed, currfid changed 0x%x\n",
503 data->currfid);
504 return 1;
505 }
506
507 dprintk("ph3 complete, currfid 0x%x, currvid 0x%x\n",
508 data->currfid, data->currvid);
509
510 return 0;
511}
512
513static int check_supported_cpu(unsigned int cpu)
514{
Mike Travisfc0e4742008-04-04 18:11:05 -0700515 cpumask_t oldmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 u32 eax, ebx, ecx, edx;
517 unsigned int rc = 0;
518
519 oldmask = current->cpus_allowed;
Mike Travis0bc3cc02008-07-24 18:21:31 -0700520 set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 if (smp_processor_id() != cpu) {
Jacob Shin8aae8282005-11-21 07:23:08 -0800523 printk(KERN_ERR PFX "limiting to cpu %u failed\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 goto out;
525 }
526
527 if (current_cpu_data.x86_vendor != X86_VENDOR_AMD)
528 goto out;
529
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))
Dave Jones2c906ae2006-02-28 00:36:32 -0500533 goto out;
534
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);
Dave Jones1f729e02006-06-04 19:37:58 -0400540 goto out;
541 }
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");
547 goto out;
548 }
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");
Dave Jones1f729e02006-06-04 19:37:58 -0400555 goto out;
556 }
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
562 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564
565 rc = 1;
566
567out:
Mike Travisfc0e4742008-04-04 18:11:05 -0700568 set_cpus_allowed_ptr(current, &oldmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
571
Dave Jones0e64a0c2009-02-04 14:37:50 -0500572static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst,
573 u8 maxvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 unsigned int j;
576 u8 lastfid = 0xff;
577
578 for (j = 0; j < data->numps; j++) {
579 if (pst[j].vid > LEAST_VID) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200580 printk(KERN_ERR FW_BUG PFX "vid %d invalid : 0x%x\n",
581 j, pst[j].vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return -EINVAL;
583 }
Dave Jones0e64a0c2009-02-04 14:37:50 -0500584 if (pst[j].vid < data->rvo) {
585 /* vid + rvo >= 0 */
Thomas Renninger2fd47092008-09-01 14:27:03 +0200586 printk(KERN_ERR FW_BUG PFX "0 vid exceeded with pstate"
587 " %d\n", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return -ENODEV;
589 }
Dave Jones0e64a0c2009-02-04 14:37:50 -0500590 if (pst[j].vid < maxvid + data->rvo) {
591 /* vid + rvo >= maxvid */
Thomas Renninger2fd47092008-09-01 14:27:03 +0200592 printk(KERN_ERR FW_BUG PFX "maxvid exceeded with pstate"
593 " %d\n", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return -ENODEV;
595 }
Jacob Shin8aae8282005-11-21 07:23:08 -0800596 if (pst[j].fid > MAX_FID) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200597 printk(KERN_ERR FW_BUG PFX "maxfid exceeded with pstate"
598 " %d\n", j);
Jacob Shin8aae8282005-11-21 07:23:08 -0800599 return -ENODEV;
600 }
Jacob Shin8aae8282005-11-21 07:23:08 -0800601 if (j && (pst[j].fid < HI_FID_TABLE_BOTTOM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /* Only first fid is allowed to be in "low" range */
Thomas Renninger2fd47092008-09-01 14:27:03 +0200603 printk(KERN_ERR FW_BUG PFX "two low fids - %d : "
604 "0x%x\n", j, pst[j].fid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return -EINVAL;
606 }
607 if (pst[j].fid < lastfid)
608 lastfid = pst[j].fid;
609 }
610 if (lastfid & 1) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200611 printk(KERN_ERR FW_BUG PFX "lastfid invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return -EINVAL;
613 }
614 if (lastfid > LO_FID_TABLE_TOP)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500615 printk(KERN_INFO FW_BUG PFX
616 "first fid not from lo freq table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 return 0;
619}
620
Dave Jones0e64a0c2009-02-04 14:37:50 -0500621static void invalidate_entry(struct powernow_k8_data *data, unsigned int entry)
622{
623 data->powernow_table[entry].frequency = CPUFREQ_ENTRY_INVALID;
624}
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626static void print_basics(struct powernow_k8_data *data)
627{
628 int j;
629 for (j = 0; j < data->numps; j++) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500630 if (data->powernow_table[j].frequency !=
631 CPUFREQ_ENTRY_INVALID) {
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500632 if (cpu_family == CPU_HW_PSTATE) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500633 printk(KERN_INFO PFX
634 " %d : pstate %d (%d MHz)\n", j,
Yinghai Lu4ae5c492007-11-20 19:38:27 -0800635 data->powernow_table[j].index,
Dave Jones9a60ddb2007-07-13 01:34:10 -0400636 data->powernow_table[j].frequency/1000);
Dave Jones1f729e02006-06-04 19:37:58 -0400637 } else {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500638 printk(KERN_INFO PFX
639 " %d : fid 0x%x (%d MHz), vid 0x%x\n",
Dave Jones9a60ddb2007-07-13 01:34:10 -0400640 j,
641 data->powernow_table[j].index & 0xff,
642 data->powernow_table[j].frequency/1000,
643 data->powernow_table[j].index >> 8);
Dave Jones1f729e02006-06-04 19:37:58 -0400644 }
645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647 if (data->batps)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500648 printk(KERN_INFO PFX "Only %d pstates on battery\n",
649 data->batps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
Andreas Herrmannca446d02009-04-22 13:48:33 +0200652static u32 freq_from_fid_did(u32 fid, u32 did)
653{
654 u32 mhz = 0;
655
656 if (boot_cpu_data.x86 == 0x10)
657 mhz = (100 * (fid + 0x10)) >> did;
658 else if (boot_cpu_data.x86 == 0x11)
659 mhz = (100 * (fid + 8)) >> did;
660 else
661 BUG();
662
663 return mhz * 1000;
664}
665
Dave Jones0e64a0c2009-02-04 14:37:50 -0500666static int fill_powernow_table(struct powernow_k8_data *data,
667 struct pst_s *pst, u8 maxvid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct cpufreq_frequency_table *powernow_table;
670 unsigned int j;
671
Dave Jones0e64a0c2009-02-04 14:37:50 -0500672 if (data->batps) {
673 /* use ACPI support to get full speed on mains power */
674 printk(KERN_WARNING PFX
675 "Only %d pstates usable (use ACPI driver for full "
676 "range\n", data->batps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 data->numps = data->batps;
678 }
679
Dave Jones0e64a0c2009-02-04 14:37:50 -0500680 for (j = 1; j < data->numps; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (pst[j-1].fid >= pst[j].fid) {
682 printk(KERN_ERR PFX "PST out of sequence\n");
683 return -EINVAL;
684 }
685 }
686
687 if (data->numps < 2) {
688 printk(KERN_ERR PFX "no p states to transition\n");
689 return -ENODEV;
690 }
691
692 if (check_pst_table(data, pst, maxvid))
693 return -EINVAL;
694
695 powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table)
696 * (data->numps + 1)), GFP_KERNEL);
697 if (!powernow_table) {
698 printk(KERN_ERR PFX "powernow_table memory alloc failure\n");
699 return -ENOMEM;
700 }
701
702 for (j = 0; j < data->numps; j++) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500703 int freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 powernow_table[j].index = pst[j].fid; /* lower 8 bits */
705 powernow_table[j].index |= (pst[j].vid << 8); /* upper 8 bits */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500706 freq = find_khz_freq_from_fid(pst[j].fid);
707 powernow_table[j].frequency = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 powernow_table[data->numps].frequency = CPUFREQ_TABLE_END;
710 powernow_table[data->numps].index = 0;
711
712 if (query_current_values_with_pending_wait(data)) {
713 kfree(powernow_table);
714 return -EIO;
715 }
716
717 dprintk("cfid 0x%x, cvid 0x%x\n", data->currfid, data->currvid);
718 data->powernow_table = powernow_table;
Rusty Russell7ad728f2009-03-13 14:49:50 +1030719 if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu)
Mark Langsdorf2e497622007-04-30 14:15:05 -0500720 print_basics(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 for (j = 0; j < data->numps; j++)
Dave Jones0e64a0c2009-02-04 14:37:50 -0500723 if ((pst[j].fid == data->currfid) &&
724 (pst[j].vid == data->currvid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return 0;
726
727 dprintk("currfid/vid do not match PST, ignoring\n");
728 return 0;
729}
730
731/* Find and validate the PSB/PST table in BIOS. */
732static int find_psb_table(struct powernow_k8_data *data)
733{
734 struct psb_s *psb;
735 unsigned int i;
736 u32 mvs;
737 u8 maxvid;
738 u32 cpst = 0;
739 u32 thiscpuid;
740
741 for (i = 0xc0000; i < 0xffff0; i += 0x10) {
742 /* Scan BIOS looking for the signature. */
743 /* It can not be at ffff0 - it is too big. */
744
745 psb = phys_to_virt(i);
746 if (memcmp(psb, PSB_ID_STRING, PSB_ID_STRING_LEN) != 0)
747 continue;
748
749 dprintk("found PSB header at 0x%p\n", psb);
750
751 dprintk("table vers: 0x%x\n", psb->tableversion);
752 if (psb->tableversion != PSB_VERSION_1_4) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200753 printk(KERN_ERR FW_BUG PFX "PSB table is not v1.4\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return -ENODEV;
755 }
756
757 dprintk("flags: 0x%x\n", psb->flags1);
758 if (psb->flags1) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200759 printk(KERN_ERR FW_BUG PFX "unknown flags\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return -ENODEV;
761 }
762
763 data->vstable = psb->vstable;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500764 dprintk("voltage stabilization time: %d(*20us)\n",
765 data->vstable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 dprintk("flags2: 0x%x\n", psb->flags2);
768 data->rvo = psb->flags2 & 3;
769 data->irt = ((psb->flags2) >> 2) & 3;
770 mvs = ((psb->flags2) >> 4) & 3;
771 data->vidmvs = 1 << mvs;
772 data->batps = ((psb->flags2) >> 6) & 3;
773
774 dprintk("ramp voltage offset: %d\n", data->rvo);
775 dprintk("isochronous relief time: %d\n", data->irt);
776 dprintk("maximum voltage step: %d - 0x%x\n", mvs, data->vidmvs);
777
778 dprintk("numpst: 0x%x\n", psb->num_tables);
779 cpst = psb->num_tables;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500780 if ((psb->cpuid == 0x00000fc0) ||
781 (psb->cpuid == 0x00000fe0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 thiscpuid = cpuid_eax(CPUID_PROCESSOR_SIGNATURE);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500783 if ((thiscpuid == 0x00000fc0) ||
784 (thiscpuid == 0x00000fe0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 cpst = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787 if (cpst != 1) {
Thomas Renninger2fd47092008-09-01 14:27:03 +0200788 printk(KERN_ERR FW_BUG PFX "numpst must be 1\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return -ENODEV;
790 }
791
792 data->plllock = psb->plllocktime;
793 dprintk("plllocktime: 0x%x (units 1us)\n", psb->plllocktime);
794 dprintk("maxfid: 0x%x\n", psb->maxfid);
795 dprintk("maxvid: 0x%x\n", psb->maxvid);
796 maxvid = psb->maxvid;
797
798 data->numps = psb->numps;
799 dprintk("numpstates: 0x%x\n", data->numps);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500800 return fill_powernow_table(data,
801 (struct pst_s *)(psb+1), maxvid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803 /*
804 * If you see this message, complain to BIOS manufacturer. If
805 * he tells you "we do not support Linux" or some similar
806 * nonsense, remember that Windows 2000 uses the same legacy
807 * mechanism that the old Linux PSB driver uses. Tell them it
808 * is broken with Windows 2000.
809 *
810 * The reference to the AMD documentation is chapter 9 in the
811 * BIOS and Kernel Developer's Guide, which is available on
812 * www.amd.com
813 */
Thomas Renninger79cc56a2009-02-04 11:56:11 +0100814 printk(KERN_ERR FW_BUG PFX "No PSB or ACPI _PSS objects\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return -ENODEV;
816}
817
Dave Jones0e64a0c2009-02-04 14:37:50 -0500818static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data,
819 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Dave Jones0e64a0c2009-02-04 14:37:50 -0500821 acpi_integer control;
822
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700823 if (!data->acpi_data.state_count || (cpu_family == CPU_HW_PSTATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return;
825
Dave Jones0e64a0c2009-02-04 14:37:50 -0500826 control = data->acpi_data.states[index].control; data->irt = (control
827 >> IRT_SHIFT) & IRT_MASK; data->rvo = (control >>
828 RVO_SHIFT) & RVO_MASK; data->exttype = (control
829 >> EXT_TYPE_SHIFT) & EXT_TYPE_MASK;
830 data->plllock = (control >> PLL_L_SHIFT) & PLL_L_MASK; data->vidmvs = 1
831 << ((control >> MVS_SHIFT) & MVS_MASK); data->vstable =
832 (control >> VST_SHIFT) & VST_MASK; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data)
835{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct cpufreq_frequency_table *powernow_table;
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800837 int ret_val = -ENODEV;
Dave Jones2c701b12009-06-05 12:37:07 -0400838 acpi_integer control, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700840 if (acpi_processor_register_performance(&data->acpi_data, data->cpu)) {
Dave Jones065b8072005-05-31 19:03:46 -0700841 dprintk("register performance failed: bad ACPI data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return -EIO;
843 }
844
845 /* verify the data contained in the ACPI structures */
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700846 if (data->acpi_data.state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 dprintk("No ACPI P-States\n");
848 goto err_out;
849 }
850
Dave Jones2c701b12009-06-05 12:37:07 -0400851 control = data->acpi_data.control_register.space_id;
852 status = data->acpi_data.status_register.space_id;
853
854 if ((control != ACPI_ADR_SPACE_FIXED_HARDWARE) ||
855 (status != ACPI_ADR_SPACE_FIXED_HARDWARE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 dprintk("Invalid control/status registers (%x - %x)\n",
Dave Jones2c701b12009-06-05 12:37:07 -0400857 control, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 goto err_out;
859 }
860
861 /* fill in data->powernow_table */
862 powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table)
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700863 * (data->acpi_data.state_count + 1)), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (!powernow_table) {
865 dprintk("powernow_table memory alloc failure\n");
866 goto err_out;
867 }
868
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -0500869 if (cpu_family == CPU_HW_PSTATE)
Dave Jones1f729e02006-06-04 19:37:58 -0400870 ret_val = fill_powernow_table_pstate(data, powernow_table);
871 else
872 ret_val = fill_powernow_table_fidvid(data, powernow_table);
873 if (ret_val)
874 goto err_out_mem;
875
Dave Jones0e64a0c2009-02-04 14:37:50 -0500876 powernow_table[data->acpi_data.state_count].frequency =
877 CPUFREQ_TABLE_END;
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700878 powernow_table[data->acpi_data.state_count].index = 0;
Dave Jones1f729e02006-06-04 19:37:58 -0400879 data->powernow_table = powernow_table;
880
881 /* fill in data */
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700882 data->numps = data->acpi_data.state_count;
Rusty Russell7ad728f2009-03-13 14:49:50 +1030883 if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu)
Mark Langsdorf2e497622007-04-30 14:15:05 -0500884 print_basics(data);
Dave Jones1f729e02006-06-04 19:37:58 -0400885 powernow_k8_acpi_pst_values(data, 0);
886
887 /* notify BIOS that we exist */
888 acpi_processor_notify_smm(THIS_MODULE);
889
Yinghai Lueaa95842009-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;
917 rdmsr(MSR_PSTATE_CUR_LIMIT, hi, lo);
918 data->max_hw_pstate = (hi & 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");
929 invalidate_entry(data, i);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500930 continue;
Dave Jones1f729e02006-06-04 19:37:58 -0400931 }
932 rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi);
933 if (!(hi & HW_PSTATE_VALID_MASK)) {
934 dprintk("invalid pstate %d, ignoring\n", index);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500935 invalidate_entry(data, i);
Dave Jones1f729e02006-06-04 19:37:58 -0400936 continue;
937 }
938
Mark Langsdorfc5829cd2007-10-17 16:52:08 -0500939 powernow_table[i].index = index;
Dave Jones1f729e02006-06-04 19:37:58 -0400940
Andreas Herrmannca446d02009-04-22 13:48:33 +0200941 /* Frequency may be rounded for these */
942 if (boot_cpu_data.x86 == 0x10 || boot_cpu_data.x86 == 0x11) {
943 powernow_table[i].frequency =
944 freq_from_fid_did(lo & 0x3f, (lo >> 6) & 7);
945 } else
946 powernow_table[i].frequency =
947 data->acpi_data.states[i].core_frequency * 1000;
Dave Jones1f729e02006-06-04 19:37:58 -0400948 }
949 return 0;
950}
951
Dave Jones0e64a0c2009-02-04 14:37:50 -0500952static int fill_powernow_table_fidvid(struct powernow_k8_data *data,
953 struct cpufreq_frequency_table *powernow_table)
Dave Jones1f729e02006-06-04 19:37:58 -0400954{
955 int i;
956 int cntlofreq = 0;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500957
Linus Torvaldsf607e3a2008-08-19 13:34:59 -0700958 for (i = 0; i < data->acpi_data.state_count; i++) {
Dave Jones094ce7f2005-07-29 12:55:40 -0700959 u32 fid;
960 u32 vid;
Dave Jones0e64a0c2009-02-04 14:37:50 -0500961 u32 freq, index;
962 acpi_integer status, control;
Dave Jones094ce7f2005-07-29 12:55:40 -0700963
964 if (data->exttype) {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500965 status = data->acpi_data.states[i].status;
966 fid = status & EXT_FID_MASK;
967 vid = (status >> VID_SHIFT) & EXT_VID_MASK;
Dave Jones841e40b2005-07-28 09:40:04 -0700968 } else {
Dave Jones0e64a0c2009-02-04 14:37:50 -0500969 control = data->acpi_data.states[i].control;
970 fid = control & FID_MASK;
971 vid = (control >> VID_SHIFT) & VID_MASK;
Dave Jones841e40b2005-07-28 09:40:04 -0700972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 dprintk(" %d : fid 0x%x, vid 0x%x\n", i, fid, vid);
975
Dave Jones0e64a0c2009-02-04 14:37:50 -0500976 index = fid | (vid<<8);
977 powernow_table[i].index = index;
978
979 freq = find_khz_freq_from_fid(fid);
980 powernow_table[i].frequency = freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 /* verify frequency is OK */
Dave Jones0e64a0c2009-02-04 14:37:50 -0500983 if ((freq > (MAX_FREQ * 1000)) || (freq < (MIN_FREQ * 1000))) {
984 dprintk("invalid freq %u kHz, ignoring\n", freq);
985 invalidate_entry(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 continue;
987 }
988
Dave Jones0e64a0c2009-02-04 14:37:50 -0500989 /* verify voltage is OK -
990 * BIOSs are using "off" to indicate invalid */
Dave Jones841e40b2005-07-28 09:40:04 -0700991 if (vid == VID_OFF) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 dprintk("invalid vid %u, ignoring\n", vid);
Dave Jones0e64a0c2009-02-04 14:37:50 -0500993 invalidate_entry(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 continue;
995 }
996
Dave Jones065b8072005-05-31 19:03:46 -0700997 /* verify only 1 entry from the lo frequency table */
998 if (fid < HI_FID_TABLE_BOTTOM) {
999 if (cntlofreq) {
Dave Jones0e64a0c2009-02-04 14:37:50 -05001000 /* if both entries are the same,
1001 * ignore this one ... */
1002 if ((freq != powernow_table[cntlofreq].frequency) ||
1003 (index != powernow_table[cntlofreq].index)) {
1004 printk(KERN_ERR PFX
1005 "Too many lo freq table "
1006 "entries\n");
Dave Jones1f729e02006-06-04 19:37:58 -04001007 return 1;
Dave Jones065b8072005-05-31 19:03:46 -07001008 }
1009
Dave Jones0e64a0c2009-02-04 14:37:50 -05001010 dprintk("double low frequency table entry, "
1011 "ignoring it.\n");
1012 invalidate_entry(data, i);
Dave Jones065b8072005-05-31 19:03:46 -07001013 continue;
1014 } else
1015 cntlofreq = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017
Dave Jones0e64a0c2009-02-04 14:37:50 -05001018 if (freq != (data->acpi_data.states[i].core_frequency * 1000)) {
1019 printk(KERN_INFO PFX "invalid freq entries "
1020 "%u kHz vs. %u kHz\n", freq,
1021 (unsigned int)
1022 (data->acpi_data.states[i].core_frequency
1023 * 1000));
1024 invalidate_entry(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 continue;
1026 }
1027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
1031static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data)
1032{
Linus Torvaldsf607e3a2008-08-19 13:34:59 -07001033 if (data->acpi_data.state_count)
Dave Jones0e64a0c2009-02-04 14:37:50 -05001034 acpi_processor_unregister_performance(&data->acpi_data,
1035 data->cpu);
Rusty Russell2fdf66b2008-12-31 18:08:47 -08001036 free_cpumask_var(data->acpi_data.shared_cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
Mark Langsdorf732553e2009-02-03 17:46:43 +01001039static int get_transition_latency(struct powernow_k8_data *data)
1040{
1041 int max_latency = 0;
1042 int i;
1043 for (i = 0; i < data->acpi_data.state_count; i++) {
1044 int cur_latency = data->acpi_data.states[i].transition_latency
1045 + data->acpi_data.states[i].bus_master_latency;
1046 if (cur_latency > max_latency)
1047 max_latency = cur_latency;
1048 }
Thomas Renninger86e13682009-04-22 13:48:30 +02001049 if (max_latency == 0) {
1050 /*
1051 * Fam 11h always returns 0 as transition latency.
1052 * This is intended and means "very fast". While cpufreq core
1053 * and governors currently can handle that gracefully, better
1054 * set it to 1 to avoid problems in the future.
1055 * For all others it's a BIOS bug.
1056 */
1057 if (!boot_cpu_data.x86 == 0x11)
1058 printk(KERN_ERR FW_WARN PFX "Invalid zero transition "
1059 "latency\n");
1060 max_latency = 1;
1061 }
Mark Langsdorf732553e2009-02-03 17:46:43 +01001062 /* value in usecs, needs to be in nanoseconds */
1063 return 1000 * max_latency;
1064}
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066/* Take a frequency, and issue the fid/vid transition command */
Dave Jones0e64a0c2009-02-04 14:37:50 -05001067static int transition_frequency_fidvid(struct powernow_k8_data *data,
1068 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Dave Jones1f729e02006-06-04 19:37:58 -04001070 u32 fid = 0;
1071 u32 vid = 0;
Dave Jones065b8072005-05-31 19:03:46 -07001072 int res, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 struct cpufreq_freqs freqs;
1074
1075 dprintk("cpu %d transition to index %u\n", smp_processor_id(), index);
1076
Dave Jones1f729e02006-06-04 19:37:58 -04001077 /* fid/vid correctness check for k8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 /* fid are the lower 8 bits of the index we stored into
Dave Jones1f729e02006-06-04 19:37:58 -04001079 * the cpufreq frequency table in find_psb_table, vid
1080 * are the upper 8 bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 fid = data->powernow_table[index].index & 0xFF;
1083 vid = (data->powernow_table[index].index & 0xFF00) >> 8;
1084
1085 dprintk("table matched fid 0x%x, giving vid 0x%x\n", fid, vid);
1086
1087 if (query_current_values_with_pending_wait(data))
1088 return 1;
1089
1090 if ((data->currvid == vid) && (data->currfid == fid)) {
1091 dprintk("target matches current values (fid 0x%x, vid 0x%x)\n",
1092 fid, vid);
1093 return 0;
1094 }
1095
Dave Jones0e64a0c2009-02-04 14:37:50 -05001096 if ((fid < HI_FID_TABLE_BOTTOM) &&
1097 (data->currfid < HI_FID_TABLE_BOTTOM)) {
Dave Jones065b8072005-05-31 19:03:46 -07001098 printk(KERN_ERR PFX
1099 "ignoring illegal change in lo freq table-%x to 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 data->currfid, fid);
1101 return 1;
1102 }
1103
1104 dprintk("cpu %d, changing to fid 0x%x, vid 0x%x\n",
1105 smp_processor_id(), fid, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 freqs.old = find_khz_freq_from_fid(data->currfid);
1107 freqs.new = find_khz_freq_from_fid(fid);
Dave Jones1f729e02006-06-04 19:37:58 -04001108
Mike Travis334ef7a2008-05-12 21:21:13 +02001109 for_each_cpu_mask_nr(i, *(data->available_cores)) {
Dave Jones065b8072005-05-31 19:03:46 -07001110 freqs.cpu = i;
1111 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 res = transition_fid_vid(data, fid, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 freqs.new = find_khz_freq_from_fid(data->currfid);
Dave Jones1f729e02006-06-04 19:37:58 -04001116
Mike Travis334ef7a2008-05-12 21:21:13 +02001117 for_each_cpu_mask_nr(i, *(data->available_cores)) {
Dave Jones1f729e02006-06-04 19:37:58 -04001118 freqs.cpu = i;
1119 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
1120 }
1121 return res;
1122}
1123
1124/* Take a frequency, and issue the hardware pstate transition command */
Dave Jones0e64a0c2009-02-04 14:37:50 -05001125static int transition_frequency_pstate(struct powernow_k8_data *data,
1126 unsigned int index)
Dave Jones1f729e02006-06-04 19:37:58 -04001127{
Dave Jones1f729e02006-06-04 19:37:58 -04001128 u32 pstate = 0;
1129 int res, i;
1130 struct cpufreq_freqs freqs;
1131
1132 dprintk("cpu %d transition to index %u\n", smp_processor_id(), index);
1133
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001134 /* get MSR index for hardware pstate transition */
Dave Jones1f729e02006-06-04 19:37:58 -04001135 pstate = index & HW_PSTATE_MASK;
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001136 if (pstate > data->max_hw_pstate)
Dave Jones1f729e02006-06-04 19:37:58 -04001137 return 0;
Dave Jones0e64a0c2009-02-04 14:37:50 -05001138 freqs.old = find_khz_freq_from_pstate(data->powernow_table,
1139 data->currpstate);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001140 freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001141
Mike Travis334ef7a2008-05-12 21:21:13 +02001142 for_each_cpu_mask_nr(i, *(data->available_cores)) {
Dave Jones1f729e02006-06-04 19:37:58 -04001143 freqs.cpu = i;
1144 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1145 }
1146
1147 res = transition_pstate(data, pstate);
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001148 freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001149
Mike Travis334ef7a2008-05-12 21:21:13 +02001150 for_each_cpu_mask_nr(i, *(data->available_cores)) {
Dave Jones065b8072005-05-31 19:03:46 -07001151 freqs.cpu = i;
1152 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
Dave Jones2e3f8fa2006-05-30 17:25:14 -04001153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 return res;
1155}
1156
1157/* Driver entry point to switch to the target frequency */
Dave Jones0e64a0c2009-02-04 14:37:50 -05001158static int powernowk8_target(struct cpufreq_policy *pol,
1159 unsigned targfreq, unsigned relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Mike Travisfc0e4742008-04-04 18:11:05 -07001161 cpumask_t oldmask;
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001162 struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
Adrian Bunk91800532006-04-19 00:07:28 +02001163 u32 checkfid;
1164 u32 checkvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 unsigned int newstate;
1166 int ret = -EIO;
1167
Jacob Shin4211a302006-04-07 19:49:51 +02001168 if (!data)
1169 return -EINVAL;
1170
Adrian Bunk91800532006-04-19 00:07:28 +02001171 checkfid = data->currfid;
1172 checkvid = data->currvid;
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 /* only run on specific CPU from here on */
1175 oldmask = current->cpus_allowed;
Mike Travis0bc3cc02008-07-24 18:21:31 -07001176 set_cpus_allowed_ptr(current, &cpumask_of_cpu(pol->cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 if (smp_processor_id() != pol->cpu) {
Jacob Shin8aae8282005-11-21 07:23:08 -08001179 printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 goto err_out;
1181 }
1182
1183 if (pending_bit_stuck()) {
1184 printk(KERN_ERR PFX "failing targ, change pending bit set\n");
1185 goto err_out;
1186 }
1187
1188 dprintk("targ: cpu %d, %d kHz, min %d, max %d, relation %d\n",
1189 pol->cpu, targfreq, pol->min, pol->max, relation);
1190
Dave Jones83844512006-05-30 17:43:54 -04001191 if (query_current_values_with_pending_wait(data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Mark Langsdorfc5829cd2007-10-17 16:52:08 -05001194 if (cpu_family != CPU_HW_PSTATE) {
Dave Jones1f729e02006-06-04 19:37:58 -04001195 dprintk("targ: curr fid 0x%x, vid 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 data->currfid, data->currvid);
1197
Dave Jones0e64a0c2009-02-04 14:37:50 -05001198 if ((checkvid != data->currvid) ||
1199 (checkfid != data->currfid)) {
Dave Jones1f729e02006-06-04 19:37:58 -04001200 printk(KERN_INFO PFX
Dave Jones0e64a0c2009-02-04 14:37:50 -05001201 "error - out of sync, fix 0x%x 0x%x, "
1202 "vid 0x%x 0x%x\n",
1203 checkfid, data->currfid,
1204 checkvid, data->currvid);
Dave Jones1f729e02006-06-04 19:37:58 -04001205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 }
1207
Dave Jones0e64a0c2009-02-04 14:37:50 -05001208 if (cpufreq_frequency_table_target(pol, data->powernow_table,
1209 targfreq, relation, &newstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 goto err_out;
1211
Ingo Molnar14cc3e22006-03-26 01:37:14 -08001212 mutex_lock(&fidvid_mutex);
Dave Jones065b8072005-05-31 19:03:46 -07001213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 powernow_k8_acpi_pst_values(data, newstate);
1215
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001216 if (cpu_family == CPU_HW_PSTATE)
Dave Jones1f729e02006-06-04 19:37:58 -04001217 ret = transition_frequency_pstate(data, newstate);
1218 else
1219 ret = transition_frequency_fidvid(data, newstate);
1220 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 printk(KERN_ERR PFX "transition frequency failed\n");
1222 ret = 1;
Ingo Molnar14cc3e22006-03-26 01:37:14 -08001223 mutex_unlock(&fidvid_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 goto err_out;
1225 }
Ingo Molnar14cc3e22006-03-26 01:37:14 -08001226 mutex_unlock(&fidvid_mutex);
Dave Jones065b8072005-05-31 19:03:46 -07001227
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001228 if (cpu_family == CPU_HW_PSTATE)
Dave Jones0e64a0c2009-02-04 14:37:50 -05001229 pol->cur = find_khz_freq_from_pstate(data->powernow_table,
1230 newstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001231 else
1232 pol->cur = find_khz_freq_from_fid(data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 ret = 0;
1234
1235err_out:
Mike Travisfc0e4742008-04-04 18:11:05 -07001236 set_cpus_allowed_ptr(current, &oldmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return ret;
1238}
1239
1240/* Driver entry point to verify the policy and range of frequencies */
1241static int powernowk8_verify(struct cpufreq_policy *pol)
1242{
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001243 struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Jacob Shin4211a302006-04-07 19:49:51 +02001245 if (!data)
1246 return -EINVAL;
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return cpufreq_frequency_table_verify(pol, data->powernow_table);
1249}
1250
Thomas Renningerdf182972009-04-22 13:48:32 +02001251static const char ACPI_PSS_BIOS_BUG_MSG[] =
1252 KERN_ERR FW_BUG PFX "No compatible ACPI _PSS objects found.\n"
1253 KERN_ERR FW_BUG PFX "Try again with latest BIOS.\n";
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255/* per CPU init entry point to the driver */
Andi Kleenaa41eb92006-01-16 01:56:36 +01001256static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
1258 struct powernow_k8_data *data;
Linus Torvaldsf607e3a2008-08-19 13:34:59 -07001259 cpumask_t oldmask;
Andi Kleend7fa7062006-04-07 19:49:48 +02001260 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Jacob Shin8aae8282005-11-21 07:23:08 -08001262 if (!cpu_online(pol->cpu))
1263 return -ENODEV;
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if (!check_supported_cpu(pol->cpu))
1266 return -ENODEV;
1267
Dave Jonesbfdc7082005-10-20 15:16:15 -07001268 data = kzalloc(sizeof(struct powernow_k8_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (!data) {
1270 printk(KERN_ERR PFX "unable to alloc powernow_k8_data");
1271 return -ENOMEM;
1272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 data->cpu = pol->cpu;
Andreas Herrmanna266d9f2008-11-21 14:49:25 +01001275 data->currpstate = HW_PSTATE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Rusty Russella0abd522009-02-16 17:31:58 -06001277 if (powernow_k8_cpu_init_acpi(data)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 /*
1279 * Use the PSB BIOS structure. This is only availabe on
1280 * an UP version, and is deprecated by AMD.
1281 */
Randy Dunlap9ed059e2006-06-20 22:32:56 -07001282 if (num_online_cpus() != 1) {
Thomas Renningerdf182972009-04-22 13:48:32 +02001283 printk_once(ACPI_PSS_BIOS_BUG_MSG);
Dave Jones0cb8bc22009-02-18 14:11:00 -05001284 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286 if (pol->cpu != 0) {
Thomas Renninger2fd47092008-09-01 14:27:03 +02001287 printk(KERN_ERR FW_BUG PFX "No ACPI _PSS objects for "
1288 "CPU other than CPU0. Complain to your BIOS "
1289 "vendor.\n");
Dave Jones0cb8bc22009-02-18 14:11:00 -05001290 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292 rc = find_psb_table(data);
Dave Jones0cb8bc22009-02-18 14:11:00 -05001293 if (rc)
1294 goto err_out;
1295
Mark Langsdorf732553e2009-02-03 17:46:43 +01001296 /* Take a crude guess here.
1297 * That guess was in microseconds, so multiply with 1000 */
1298 pol->cpuinfo.transition_latency = (
1299 ((data->rvo + 8) * data->vstable * VST_UNITS_20US) +
1300 ((1 << data->irt) * 30)) * 1000;
1301 } else /* ACPI _PSS objects available */
1302 pol->cpuinfo.transition_latency = get_transition_latency(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 /* only run on specific CPU from here on */
1305 oldmask = current->cpus_allowed;
Mike Travis0bc3cc02008-07-24 18:21:31 -07001306 set_cpus_allowed_ptr(current, &cpumask_of_cpu(pol->cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 if (smp_processor_id() != pol->cpu) {
Jacob Shin8aae8282005-11-21 07:23:08 -08001309 printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu);
Dave Jones0cb8bc22009-02-18 14:11:00 -05001310 goto err_out_unmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312
1313 if (pending_bit_stuck()) {
1314 printk(KERN_ERR PFX "failing init, change pending bit set\n");
Dave Jones0cb8bc22009-02-18 14:11:00 -05001315 goto err_out_unmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
1317
1318 if (query_current_values_with_pending_wait(data))
Dave Jones0cb8bc22009-02-18 14:11:00 -05001319 goto err_out_unmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001321 if (cpu_family == CPU_OPTERON)
Dave Jones1f729e02006-06-04 19:37:58 -04001322 fidvid_msr_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 /* run on any CPU again */
Mike Travisfc0e4742008-04-04 18:11:05 -07001325 set_cpus_allowed_ptr(current, &oldmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Linus Torvaldsf607e3a2008-08-19 13:34:59 -07001327 if (cpu_family == CPU_HW_PSTATE)
Rusty Russell835481d2009-01-04 05:18:06 -08001328 cpumask_copy(pol->cpus, cpumask_of(pol->cpu));
Linus Torvaldsf607e3a2008-08-19 13:34:59 -07001329 else
Rusty Russell7ad728f2009-03-13 14:49:50 +10301330 cpumask_copy(pol->cpus, cpu_core_mask(pol->cpu));
Rusty Russell835481d2009-01-04 05:18:06 -08001331 data->available_cores = pol->cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Langsdorf, Marke7bdd7a2006-06-08 10:30:17 -05001333 if (cpu_family == CPU_HW_PSTATE)
Dave Jones0e64a0c2009-02-04 14:37:50 -05001334 pol->cur = find_khz_freq_from_pstate(data->powernow_table,
1335 data->currpstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001336 else
1337 pol->cur = find_khz_freq_from_fid(data->currfid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 dprintk("policy current frequency %d kHz\n", pol->cur);
1339
1340 /* min/max the cpu is capable of */
1341 if (cpufreq_frequency_table_cpuinfo(pol, data->powernow_table)) {
Thomas Renninger2fd47092008-09-01 14:27:03 +02001342 printk(KERN_ERR FW_BUG PFX "invalid powernow_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 powernow_k8_cpu_exit_acpi(data);
1344 kfree(data->powernow_table);
1345 kfree(data);
1346 return -EINVAL;
1347 }
1348
1349 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)
Dave Jones0e64a0c2009-02-04 14:37:50 -05001352 dprintk("cpu_init done, current pstate 0x%x\n",
1353 data->currpstate);
Dave Jones1f729e02006-06-04 19:37:58 -04001354 else
1355 dprintk("cpu_init done, current fid 0x%x, vid 0x%x\n",
1356 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
Dave Jones0cb8bc22009-02-18 14:11:00 -05001362err_out_unmask:
Mike Travisfc0e4742008-04-04 18:11:05 -07001363 set_cpus_allowed_ptr(current, &oldmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 powernow_k8_cpu_exit_acpi(data);
1365
Dave Jones0cb8bc22009-02-18 14:11:00 -05001366err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 kfree(data);
1368 return -ENODEV;
1369}
1370
Dave Jones0e64a0c2009-02-04 14:37:50 -05001371static int __devexit powernowk8_cpu_exit(struct cpufreq_policy *pol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
travis@sgi.com2c6b8c02008-01-30 13:33:11 +01001373 struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 if (!data)
1376 return -EINVAL;
1377
1378 powernow_k8_cpu_exit_acpi(data);
1379
1380 cpufreq_frequency_table_put_attr(pol->cpu);
1381
1382 kfree(data->powernow_table);
1383 kfree(data);
1384
1385 return 0;
1386}
1387
Dave Jones0e64a0c2009-02-04 14:37:50 -05001388static unsigned int powernowk8_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
shin, jacobeef51672006-03-27 09:57:20 -06001390 struct powernow_k8_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 cpumask_t oldmask = current->cpus_allowed;
1392 unsigned int khz = 0;
Dave Jones89c04842008-02-06 21:55:26 -05001393 unsigned int first;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Rusty Russell7ad728f2009-03-13 14:49:50 +10301395 first = cpumask_first(cpu_core_mask(cpu));
Dave Jones89c04842008-02-06 21:55:26 -05001396 data = per_cpu(powernow_data, first);
shin, jacobeef51672006-03-27 09:57:20 -06001397
1398 if (!data)
1399 return -EINVAL;
1400
Mike Travis0bc3cc02008-07-24 18:21:31 -07001401 set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (smp_processor_id() != cpu) {
Mike Travisfc0e4742008-04-04 18:11:05 -07001403 printk(KERN_ERR PFX
1404 "limiting to CPU %d failed in powernowk8_get\n", cpu);
1405 set_cpus_allowed_ptr(current, &oldmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return 0;
1407 }
Dave Jonesb9111b72005-09-23 11:10:42 -07001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (query_current_values_with_pending_wait(data))
1410 goto out;
1411
Joachim Deguara58389a82007-01-30 16:53:54 +01001412 if (cpu_family == CPU_HW_PSTATE)
Mike Travisfc0e4742008-04-04 18:11:05 -07001413 khz = find_khz_freq_from_pstate(data->powernow_table,
1414 data->currpstate);
Joachim Deguara58389a82007-01-30 16:53:54 +01001415 else
1416 khz = find_khz_freq_from_fid(data->currfid);
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Dave Jonesb9111b72005-09-23 11:10:42 -07001419out:
Mike Travisfc0e4742008-04-04 18:11:05 -07001420 set_cpus_allowed_ptr(current, &oldmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 return khz;
1422}
1423
Dave Jones0e64a0c2009-02-04 14:37:50 -05001424static struct freq_attr *powernow_k8_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 &cpufreq_freq_attr_scaling_available_freqs,
1426 NULL,
1427};
1428
Linus Torvalds221dee22007-02-26 14:55:48 -08001429static struct cpufreq_driver cpufreq_amd64_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 .verify = powernowk8_verify,
1431 .target = powernowk8_target,
1432 .init = powernowk8_cpu_init,
1433 .exit = __devexit_p(powernowk8_cpu_exit),
1434 .get = powernowk8_get,
1435 .name = "powernow-k8",
1436 .owner = THIS_MODULE,
1437 .attr = powernow_k8_attr,
1438};
1439
1440/* driver entry point for init */
Andi Kleenaa41eb92006-01-16 01:56:36 +01001441static int __cpuinit powernowk8_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
1443 unsigned int i, supported_cpus = 0;
1444
Andrew Mortona7201152006-03-24 03:15:07 -08001445 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (check_supported_cpu(i))
1447 supported_cpus++;
1448 }
1449
1450 if (supported_cpus == num_online_cpus()) {
Dave Jones1f729e02006-06-04 19:37:58 -04001451 printk(KERN_INFO PFX "Found %d %s "
Dave Jones904f7a32007-05-18 13:22:28 -04001452 "processors (%d cpu cores) (" VERSION ")\n",
Yinghai Luc9254012007-08-22 18:44:20 -07001453 num_online_nodes(),
Dave Jones904f7a32007-05-18 13:22:28 -04001454 boot_cpu_data.x86_model_id, supported_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 return cpufreq_register_driver(&cpufreq_amd64_driver);
1456 }
1457
1458 return -ENODEV;
1459}
1460
1461/* driver entry point for term */
1462static void __exit powernowk8_exit(void)
1463{
1464 dprintk("exit\n");
1465
1466 cpufreq_unregister_driver(&cpufreq_amd64_driver);
1467}
1468
Dave Jones0e64a0c2009-02-04 14:37:50 -05001469MODULE_AUTHOR("Paul Devriendt <paul.devriendt@amd.com> and "
1470 "Mark Langsdorf <mark.langsdorf@amd.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471MODULE_DESCRIPTION("AMD Athlon 64 and Opteron processor frequency driver.");
1472MODULE_LICENSE("GPL");
1473
1474late_initcall(powernowk8_init);
1475module_exit(powernowk8_exit);