powernow-k8.c 40.5 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *   (c) 2003-2012 Advanced Micro Devices, Inc.
L
Linus Torvalds 已提交
3 4 5 6
 *  Your use of this code is subject to the terms and conditions of the
 *  GNU general public license version 2. See "COPYING" or
 *  http://www.gnu.org/licenses/gpl.html
 *
7 8
 *  Maintainer:
 *  Andreas Herrmann <andreas.herrmann3@amd.com>
L
Linus Torvalds 已提交
9 10
 *
 *  Based on the powernow-k7.c module written by Dave Jones.
D
Dave Jones 已提交
11
 *  (C) 2003 Dave Jones on behalf of SuSE Labs
L
Linus Torvalds 已提交
12
 *  (C) 2004 Dominik Brodowski <linux@brodo.de>
P
Pavel Machek 已提交
13
 *  (C) 2004 Pavel Machek <pavel@ucw.cz>
L
Linus Torvalds 已提交
14 15 16 17
 *  Licensed under the terms of the GNU GPL License version 2.
 *  Based upon datasheets & sample CPUs kindly provided by AMD.
 *
 *  Valuable input gratefully received from Dave Jones, Pavel Machek,
18
 *  Dominik Brodowski, Jacob Shin, and others.
D
Dave Jones 已提交
19
 *  Originally developed by Paul Devriendt.
L
Linus Torvalds 已提交
20
 *
21 22 23 24 25 26 27
 *  Processor information obtained from Chapter 9 (Power and Thermal
 *  Management) of the "BIOS and Kernel Developer's Guide (BKDG) for
 *  the AMD Athlon 64 and AMD Opteron Processors" and section "2.x
 *  Power Management" in BKDGs for newer AMD CPU families.
 *
 *  Tables for specific CPUs can be inferred from AMD's processor
 *  power and thermal data sheets, (e.g. 30417.pdf, 30430.pdf, 43375.pdf)
L
Linus Torvalds 已提交
28 29 30 31 32 33 34 35 36
 */

#include <linux/kernel.h>
#include <linux/smp.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/cpufreq.h>
#include <linux/slab.h>
#include <linux/string.h>
D
Dave Jones 已提交
37
#include <linux/cpumask.h>
T
Tim Schmielau 已提交
38
#include <linux/sched.h>	/* for current / set_cpus_allowed() */
39 40
#include <linux/io.h>
#include <linux/delay.h>
L
Linus Torvalds 已提交
41 42

#include <asm/msr.h>
43
#include <asm/cpu_device_id.h>
L
Linus Torvalds 已提交
44 45

#include <linux/acpi.h>
46
#include <linux/mutex.h>
L
Linus Torvalds 已提交
47 48 49
#include <acpi/processor.h>

#define PFX "powernow-k8: "
50
#define VERSION "version 2.20.00"
L
Linus Torvalds 已提交
51
#include "powernow-k8.h"
52
#include "mperf.h"
L
Linus Torvalds 已提交
53 54

/* serialize freq changes  */
55
static DEFINE_MUTEX(fidvid_mutex);
L
Linus Torvalds 已提交
56

57
static DEFINE_PER_CPU(struct powernow_k8_data *, powernow_data);
L
Linus Torvalds 已提交
58

59 60
static int cpu_family = CPU_OPTERON;

61 62 63
/* array to map SW pstate number to acpi state */
static u32 ps_to_as[8];

64 65 66 67
/* core performance boost */
static bool cpb_capable, cpb_enabled;
static struct msr __percpu *msrs;

68 69
static struct cpufreq_driver cpufreq_amd64_driver;

D
Dave Jones 已提交
70
#ifndef CONFIG_SMP
71 72 73 74
static inline const struct cpumask *cpu_core_mask(int cpu)
{
	return cpumask_of(0);
}
D
Dave Jones 已提交
75 76
#endif

L
Linus Torvalds 已提交
77 78 79 80 81 82 83 84 85 86 87 88
/* Return a frequency in MHz, given an input fid */
static u32 find_freq_from_fid(u32 fid)
{
	return 800 + (fid * 100);
}

/* Return a frequency in KHz, given an input fid */
static u32 find_khz_freq_from_fid(u32 fid)
{
	return 1000 * find_freq_from_fid(fid);
}

89
static u32 find_khz_freq_from_pstate(struct cpufreq_frequency_table *data,
90
				     u32 pstate)
91
{
92
	return data[ps_to_as[pstate]].frequency;
93 94
}

L
Linus Torvalds 已提交
95 96 97 98 99 100 101 102
/* Return the vco fid for an input fid
 *
 * Each "low" fid has corresponding "high" fid, and you can get to "low" fids
 * only from corresponding high fids. This returns "high" fid corresponding to
 * "low" one.
 */
static u32 convert_fid_to_vco_fid(u32 fid)
{
103
	if (fid < HI_FID_TABLE_BOTTOM)
L
Linus Torvalds 已提交
104
		return 8 + (2 * fid);
105
	else
L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113 114 115 116
		return fid;
}

/*
 * Return 1 if the pending bit is set. Unless we just instructed the processor
 * to transition to a new state, seeing this bit set is really bad news.
 */
static int pending_bit_stuck(void)
{
	u32 lo, hi;

117
	if (cpu_family == CPU_HW_PSTATE)
118 119
		return 0;

L
Linus Torvalds 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132
	rdmsr(MSR_FIDVID_STATUS, lo, hi);
	return lo & MSR_S_LO_CHANGE_PENDING ? 1 : 0;
}

/*
 * Update the global current fid / vid values from the status msr.
 * Returns 1 on error.
 */
static int query_current_values_with_pending_wait(struct powernow_k8_data *data)
{
	u32 lo, hi;
	u32 i = 0;

133
	if (cpu_family == CPU_HW_PSTATE) {
134 135 136 137 138 139 140 141 142 143 144
		rdmsr(MSR_PSTATE_STATUS, lo, hi);
		i = lo & HW_PSTATE_MASK;
		data->currpstate = i;

		/*
		 * a workaround for family 11h erratum 311 might cause
		 * an "out-of-range Pstate if the core is in Pstate-0
		 */
		if ((boot_cpu_data.x86 == 0x11) && (i >= data->numps))
			data->currpstate = HW_PSTATE_0;

145 146
		return 0;
	}
147
	do {
148
		if (i++ > 10000) {
149
			pr_debug("detected change pending stuck\n");
L
Linus Torvalds 已提交
150 151 152
			return 1;
		}
		rdmsr(MSR_FIDVID_STATUS, lo, hi);
153
	} while (lo & MSR_S_LO_CHANGE_PENDING);
L
Linus Torvalds 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166 167

	data->currvid = hi & MSR_S_HI_CURRENT_VID;
	data->currfid = lo & MSR_S_LO_CURRENT_FID;

	return 0;
}

/* the isochronous relief time */
static void count_off_irt(struct powernow_k8_data *data)
{
	udelay((1 << data->irt) * 10);
	return;
}

S
Simon Arlott 已提交
168
/* the voltage stabilization time */
L
Linus Torvalds 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
static void count_off_vst(struct powernow_k8_data *data)
{
	udelay(data->vstable * VST_UNITS_20US);
	return;
}

/* need to init the control msr to a safe value (for each cpu) */
static void fidvid_msr_init(void)
{
	u32 lo, hi;
	u8 fid, vid;

	rdmsr(MSR_FIDVID_STATUS, lo, hi);
	vid = hi & MSR_S_HI_CURRENT_VID;
	fid = lo & MSR_S_LO_CURRENT_FID;
	lo = fid | (vid << MSR_C_LO_VID_SHIFT);
	hi = MSR_C_HI_STP_GNT_BENIGN;
186
	pr_debug("cpu%d, init lo 0x%x, hi 0x%x\n", smp_processor_id(), lo, hi);
L
Linus Torvalds 已提交
187 188 189 190 191 192 193 194
	wrmsr(MSR_FIDVID_CTL, lo, hi);
}

/* write the new fid value along with the other control fields to the msr */
static int write_new_fid(struct powernow_k8_data *data, u32 fid)
{
	u32 lo;
	u32 savevid = data->currvid;
195
	u32 i = 0;
L
Linus Torvalds 已提交
196 197 198 199 200 201

	if ((fid & INVALID_FID_MASK) || (data->currvid & INVALID_VID_MASK)) {
		printk(KERN_ERR PFX "internal error - overflow on fid write\n");
		return 1;
	}

202 203 204
	lo = fid;
	lo |= (data->currvid << MSR_C_LO_VID_SHIFT);
	lo |= MSR_C_LO_INIT_FID_VID;
L
Linus Torvalds 已提交
205

206
	pr_debug("writing fid 0x%x, lo 0x%x, hi 0x%x\n",
L
Linus Torvalds 已提交
207 208
		fid, lo, data->plllock * PLL_LOCK_CONVERSION);

209 210 211
	do {
		wrmsr(MSR_FIDVID_CTL, lo, data->plllock * PLL_LOCK_CONVERSION);
		if (i++ > 100) {
212 213 214
			printk(KERN_ERR PFX
				"Hardware error - pending bit very stuck - "
				"no further pstate changes possible\n");
215
			return 1;
216
		}
217
	} while (query_current_values_with_pending_wait(data));
L
Linus Torvalds 已提交
218 219 220 221

	count_off_irt(data);

	if (savevid != data->currvid) {
222 223 224
		printk(KERN_ERR PFX
			"vid change on fid trans, old 0x%x, new 0x%x\n",
			savevid, data->currvid);
L
Linus Torvalds 已提交
225 226 227 228
		return 1;
	}

	if (fid != data->currfid) {
229 230 231
		printk(KERN_ERR PFX
			"fid trans failed, fid 0x%x, curr 0x%x\n", fid,
			data->currfid);
L
Linus Torvalds 已提交
232 233 234 235 236 237 238 239 240 241 242
		return 1;
	}

	return 0;
}

/* Write a new vid to the hardware */
static int write_new_vid(struct powernow_k8_data *data, u32 vid)
{
	u32 lo;
	u32 savefid = data->currfid;
243
	int i = 0;
L
Linus Torvalds 已提交
244 245 246 247 248 249

	if ((data->currfid & INVALID_FID_MASK) || (vid & INVALID_VID_MASK)) {
		printk(KERN_ERR PFX "internal error - overflow on vid write\n");
		return 1;
	}

250 251 252
	lo = data->currfid;
	lo |= (vid << MSR_C_LO_VID_SHIFT);
	lo |= MSR_C_LO_INIT_FID_VID;
L
Linus Torvalds 已提交
253

254
	pr_debug("writing vid 0x%x, lo 0x%x, hi 0x%x\n",
L
Linus Torvalds 已提交
255 256
		vid, lo, STOP_GRANT_5NS);

257 258
	do {
		wrmsr(MSR_FIDVID_CTL, lo, STOP_GRANT_5NS);
259
		if (i++ > 100) {
260 261 262
			printk(KERN_ERR PFX "internal error - pending bit "
					"very stuck - no further pstate "
					"changes possible\n");
263 264
			return 1;
		}
265
	} while (query_current_values_with_pending_wait(data));
L
Linus Torvalds 已提交
266 267

	if (savefid != data->currfid) {
268 269
		printk(KERN_ERR PFX "fid changed on vid trans, old "
			"0x%x new 0x%x\n",
L
Linus Torvalds 已提交
270 271 272 273 274
		       savefid, data->currfid);
		return 1;
	}

	if (vid != data->currvid) {
275 276 277
		printk(KERN_ERR PFX "vid trans failed, vid 0x%x, "
				"curr 0x%x\n",
				vid, data->currvid);
L
Linus Torvalds 已提交
278 279 280 281 282 283 284 285 286
		return 1;
	}

	return 0;
}

/*
 * Reduce the vid by the max of step or reqvid.
 * Decreasing vid codes represent increasing voltages:
287
 * vid of 0 is 1.550V, vid of 0x1e is 0.800V, vid of VID_OFF is off.
L
Linus Torvalds 已提交
288
 */
289 290
static int decrease_vid_code_by_step(struct powernow_k8_data *data,
		u32 reqvid, u32 step)
L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298 299 300 301 302
{
	if ((data->currvid - reqvid) > step)
		reqvid = data->currvid - step;

	if (write_new_vid(data, reqvid))
		return 1;

	count_off_vst(data);

	return 0;
}

303 304 305 306
/* Change hardware pstate by single MSR write */
static int transition_pstate(struct powernow_k8_data *data, u32 pstate)
{
	wrmsr(MSR_PSTATE_CTRL, pstate, 0);
307
	data->currpstate = pstate;
308 309 310 311
	return 0;
}

/* Change Opteron/Athlon64 fid and vid, by the 3 phases. */
312 313
static int transition_fid_vid(struct powernow_k8_data *data,
		u32 reqfid, u32 reqvid)
L
Linus Torvalds 已提交
314
{
315
	if (core_voltage_pre_transition(data, reqvid, reqfid))
L
Linus Torvalds 已提交
316 317 318 319 320 321 322 323 324 325 326 327
		return 1;

	if (core_frequency_transition(data, reqfid))
		return 1;

	if (core_voltage_post_transition(data, reqvid))
		return 1;

	if (query_current_values_with_pending_wait(data))
		return 1;

	if ((reqfid != data->currfid) || (reqvid != data->currvid)) {
328 329
		printk(KERN_ERR PFX "failed (cpu%d): req 0x%x 0x%x, "
				"curr 0x%x 0x%x\n",
L
Linus Torvalds 已提交
330 331 332 333 334
				smp_processor_id(),
				reqfid, reqvid, data->currfid, data->currvid);
		return 1;
	}

335
	pr_debug("transitioned (cpu%d): new fid 0x%x, vid 0x%x\n",
L
Linus Torvalds 已提交
336 337 338 339 340 341
		smp_processor_id(), data->currfid, data->currvid);

	return 0;
}

/* Phase 1 - core voltage transition ... setup voltage */
342
static int core_voltage_pre_transition(struct powernow_k8_data *data,
343
		u32 reqvid, u32 reqfid)
L
Linus Torvalds 已提交
344 345 346
{
	u32 rvosteps = data->rvo;
	u32 savefid = data->currfid;
347
	u32 maxvid, lo, rvomult = 1;
L
Linus Torvalds 已提交
348

349
	pr_debug("ph1 (cpu%d): start, currfid 0x%x, currvid 0x%x, "
350
		"reqvid 0x%x, rvo 0x%x\n",
L
Linus Torvalds 已提交
351 352 353
		smp_processor_id(),
		data->currfid, data->currvid, reqvid, data->rvo);

354 355 356
	if ((savefid < LO_FID_TABLE_TOP) && (reqfid < LO_FID_TABLE_TOP))
		rvomult = 2;
	rvosteps *= rvomult;
D
Dave Jones 已提交
357 358
	rdmsr(MSR_FIDVID_STATUS, lo, maxvid);
	maxvid = 0x1f & (maxvid >> 16);
359
	pr_debug("ph1 maxvid=0x%x\n", maxvid);
D
Dave Jones 已提交
360 361 362
	if (reqvid < maxvid) /* lower numbers are higher voltages */
		reqvid = maxvid;

L
Linus Torvalds 已提交
363
	while (data->currvid > reqvid) {
364
		pr_debug("ph1: curr 0x%x, req vid 0x%x\n",
L
Linus Torvalds 已提交
365 366 367 368 369
			data->currvid, reqvid);
		if (decrease_vid_code_by_step(data, reqvid, data->vidmvs))
			return 1;
	}

370 371
	while ((rvosteps > 0) &&
			((rvomult * data->rvo + data->currvid) > reqvid)) {
D
Dave Jones 已提交
372
		if (data->currvid == maxvid) {
L
Linus Torvalds 已提交
373 374
			rvosteps = 0;
		} else {
375
			pr_debug("ph1: changing vid for rvo, req 0x%x\n",
L
Linus Torvalds 已提交
376
				data->currvid - 1);
377
			if (decrease_vid_code_by_step(data, data->currvid-1, 1))
L
Linus Torvalds 已提交
378 379 380 381 382 383 384 385 386
				return 1;
			rvosteps--;
		}
	}

	if (query_current_values_with_pending_wait(data))
		return 1;

	if (savefid != data->currfid) {
387 388
		printk(KERN_ERR PFX "ph1 err, currfid changed 0x%x\n",
				data->currfid);
L
Linus Torvalds 已提交
389 390 391
		return 1;
	}

392
	pr_debug("ph1 complete, currfid 0x%x, currvid 0x%x\n",
L
Linus Torvalds 已提交
393 394 395 396 397 398 399 400
		data->currfid, data->currvid);

	return 0;
}

/* Phase 2 - core frequency transition */
static int core_frequency_transition(struct powernow_k8_data *data, u32 reqfid)
{
401 402
	u32 vcoreqfid, vcocurrfid, vcofiddiff;
	u32 fid_interval, savevid = data->currvid;
L
Linus Torvalds 已提交
403 404

	if (data->currfid == reqfid) {
405 406
		printk(KERN_ERR PFX "ph2 null fid transition 0x%x\n",
				data->currfid);
L
Linus Torvalds 已提交
407 408 409
		return 0;
	}

410
	pr_debug("ph2 (cpu%d): starting, currfid 0x%x, currvid 0x%x, "
411
		"reqfid 0x%x\n",
L
Linus Torvalds 已提交
412 413 414 415 416 417 418 419
		smp_processor_id(),
		data->currfid, data->currvid, reqfid);

	vcoreqfid = convert_fid_to_vco_fid(reqfid);
	vcocurrfid = convert_fid_to_vco_fid(data->currfid);
	vcofiddiff = vcocurrfid > vcoreqfid ? vcocurrfid - vcoreqfid
	    : vcoreqfid - vcocurrfid;

420 421 422
	if ((reqfid <= LO_FID_TABLE_TOP) && (data->currfid <= LO_FID_TABLE_TOP))
		vcofiddiff = 0;

L
Linus Torvalds 已提交
423
	while (vcofiddiff > 2) {
424 425
		(data->currfid & 1) ? (fid_interval = 1) : (fid_interval = 2);

L
Linus Torvalds 已提交
426 427
		if (reqfid > data->currfid) {
			if (data->currfid > LO_FID_TABLE_TOP) {
428 429
				if (write_new_fid(data,
						data->currfid + fid_interval))
L
Linus Torvalds 已提交
430 431 432
					return 1;
			} else {
				if (write_new_fid
433 434
				    (data,
				     2 + convert_fid_to_vco_fid(data->currfid)))
L
Linus Torvalds 已提交
435 436 437
					return 1;
			}
		} else {
438
			if (write_new_fid(data, data->currfid - fid_interval))
L
Linus Torvalds 已提交
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
				return 1;
		}

		vcocurrfid = convert_fid_to_vco_fid(data->currfid);
		vcofiddiff = vcocurrfid > vcoreqfid ? vcocurrfid - vcoreqfid
		    : vcoreqfid - vcocurrfid;
	}

	if (write_new_fid(data, reqfid))
		return 1;

	if (query_current_values_with_pending_wait(data))
		return 1;

	if (data->currfid != reqfid) {
		printk(KERN_ERR PFX
455 456
			"ph2: mismatch, failed fid transition, "
			"curr 0x%x, req 0x%x\n",
L
Linus Torvalds 已提交
457 458 459 460 461 462 463 464 465 466
			data->currfid, reqfid);
		return 1;
	}

	if (savevid != data->currvid) {
		printk(KERN_ERR PFX "ph2: vid changed, save 0x%x, curr 0x%x\n",
			savevid, data->currvid);
		return 1;
	}

467
	pr_debug("ph2 complete, currfid 0x%x, currvid 0x%x\n",
L
Linus Torvalds 已提交
468 469 470 471 472 473
		data->currfid, data->currvid);

	return 0;
}

/* Phase 3 - core voltage transition flow ... jump to the final vid. */
474 475
static int core_voltage_post_transition(struct powernow_k8_data *data,
		u32 reqvid)
L
Linus Torvalds 已提交
476 477 478 479
{
	u32 savefid = data->currfid;
	u32 savereqvid = reqvid;

480
	pr_debug("ph3 (cpu%d): starting, currfid 0x%x, currvid 0x%x\n",
L
Linus Torvalds 已提交
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
		smp_processor_id(),
		data->currfid, data->currvid);

	if (reqvid != data->currvid) {
		if (write_new_vid(data, reqvid))
			return 1;

		if (savefid != data->currfid) {
			printk(KERN_ERR PFX
			       "ph3: bad fid change, save 0x%x, curr 0x%x\n",
			       savefid, data->currfid);
			return 1;
		}

		if (data->currvid != reqvid) {
			printk(KERN_ERR PFX
497 498
			       "ph3: failed vid transition\n, "
			       "req 0x%x, curr 0x%x",
L
Linus Torvalds 已提交
499 500 501 502 503 504 505 506 507
			       reqvid, data->currvid);
			return 1;
		}
	}

	if (query_current_values_with_pending_wait(data))
		return 1;

	if (savereqvid != data->currvid) {
508
		pr_debug("ph3 failed, currvid 0x%x\n", data->currvid);
L
Linus Torvalds 已提交
509 510 511 512
		return 1;
	}

	if (savefid != data->currfid) {
513
		pr_debug("ph3 failed, currfid changed 0x%x\n",
L
Linus Torvalds 已提交
514 515 516 517
			data->currfid);
		return 1;
	}

518
	pr_debug("ph3 complete, currfid 0x%x, currvid 0x%x\n",
L
Linus Torvalds 已提交
519 520 521 522 523
		data->currfid, data->currvid);

	return 0;
}

524 525 526 527 528 529 530 531 532
static const struct x86_cpu_id powernow_k8_ids[] = {
	/* IO based frequency switching */
	{ X86_VENDOR_AMD, 0xf },
	/* MSR based frequency switching supported */
	X86_FEATURE_MATCH(X86_FEATURE_HW_PSTATE),
	{}
};
MODULE_DEVICE_TABLE(x86cpu, powernow_k8_ids);

533
static void check_supported_cpu(void *_rc)
L
Linus Torvalds 已提交
534 535
{
	u32 eax, ebx, ecx, edx;
536
	int *rc = _rc;
L
Linus Torvalds 已提交
537

538
	*rc = -ENODEV;
L
Linus Torvalds 已提交
539 540

	eax = cpuid_eax(CPUID_PROCESSOR_SIGNATURE);
541

542 543
	if ((eax & CPUID_XFAM) == CPUID_XFAM_K8) {
		if (((eax & CPUID_USE_XFAM_XMOD) != CPUID_USE_XFAM_XMOD) ||
544
		    ((eax & CPUID_XMOD) > CPUID_XMOD_REV_MASK)) {
545 546
			printk(KERN_INFO PFX
				"Processor cpuid %x not supported\n", eax);
547
			return;
548
		}
L
Linus Torvalds 已提交
549

550 551 552 553
		eax = cpuid_eax(CPUID_GET_MAX_CAPABILITIES);
		if (eax < CPUID_FREQ_VOLT_CAPABILITIES) {
			printk(KERN_INFO PFX
			       "No frequency change capabilities detected\n");
554
			return;
555
		}
L
Linus Torvalds 已提交
556

557
		cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx);
558 559 560 561
		if ((edx & P_STATE_TRANSITION_CAPABLE)
			!= P_STATE_TRANSITION_CAPABLE) {
			printk(KERN_INFO PFX
				"Power state transitions not supported\n");
562
			return;
563 564 565 566 567 568
		}
	} else { /* must be a HW Pstate capable processor */
		cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx);
		if ((edx & USE_HW_PSTATE) == USE_HW_PSTATE)
			cpu_family = CPU_HW_PSTATE;
		else
569
			return;
L
Linus Torvalds 已提交
570 571
	}

572
	*rc = 0;
L
Linus Torvalds 已提交
573 574
}

575 576
static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst,
		u8 maxvid)
L
Linus Torvalds 已提交
577 578 579 580 581 582
{
	unsigned int j;
	u8 lastfid = 0xff;

	for (j = 0; j < data->numps; j++) {
		if (pst[j].vid > LEAST_VID) {
583 584
			printk(KERN_ERR FW_BUG PFX "vid %d invalid : 0x%x\n",
			       j, pst[j].vid);
L
Linus Torvalds 已提交
585 586
			return -EINVAL;
		}
587 588
		if (pst[j].vid < data->rvo) {
			/* vid + rvo >= 0 */
589 590
			printk(KERN_ERR FW_BUG PFX "0 vid exceeded with pstate"
			       " %d\n", j);
L
Linus Torvalds 已提交
591 592
			return -ENODEV;
		}
593 594
		if (pst[j].vid < maxvid + data->rvo) {
			/* vid + rvo >= maxvid */
595 596
			printk(KERN_ERR FW_BUG PFX "maxvid exceeded with pstate"
			       " %d\n", j);
L
Linus Torvalds 已提交
597 598
			return -ENODEV;
		}
599
		if (pst[j].fid > MAX_FID) {
600 601
			printk(KERN_ERR FW_BUG PFX "maxfid exceeded with pstate"
			       " %d\n", j);
602 603 604
			return -ENODEV;
		}
		if (j && (pst[j].fid < HI_FID_TABLE_BOTTOM)) {
L
Linus Torvalds 已提交
605
			/* Only first fid is allowed to be in "low" range */
606 607
			printk(KERN_ERR FW_BUG PFX "two low fids - %d : "
			       "0x%x\n", j, pst[j].fid);
L
Linus Torvalds 已提交
608 609 610 611 612 613
			return -EINVAL;
		}
		if (pst[j].fid < lastfid)
			lastfid = pst[j].fid;
	}
	if (lastfid & 1) {
614
		printk(KERN_ERR FW_BUG PFX "lastfid invalid\n");
L
Linus Torvalds 已提交
615 616 617
		return -EINVAL;
	}
	if (lastfid > LO_FID_TABLE_TOP)
618 619
		printk(KERN_INFO FW_BUG PFX
			"first fid not from lo freq table\n");
L
Linus Torvalds 已提交
620 621 622 623

	return 0;
}

624 625
static void invalidate_entry(struct cpufreq_frequency_table *powernow_table,
		unsigned int entry)
626
{
627
	powernow_table[entry].frequency = CPUFREQ_ENTRY_INVALID;
628 629
}

L
Linus Torvalds 已提交
630 631 632 633
static void print_basics(struct powernow_k8_data *data)
{
	int j;
	for (j = 0; j < data->numps; j++) {
634 635
		if (data->powernow_table[j].frequency !=
				CPUFREQ_ENTRY_INVALID) {
636
			if (cpu_family == CPU_HW_PSTATE) {
637 638
				printk(KERN_INFO PFX
					"   %d : pstate %d (%d MHz)\n", j,
639
					data->powernow_table[j].index,
640
					data->powernow_table[j].frequency/1000);
641
			} else {
642
				printk(KERN_INFO PFX
643
					"fid 0x%x (%d MHz), vid 0x%x\n",
644 645 646
					data->powernow_table[j].index & 0xff,
					data->powernow_table[j].frequency/1000,
					data->powernow_table[j].index >> 8);
647 648
			}
		}
L
Linus Torvalds 已提交
649 650
	}
	if (data->batps)
651 652
		printk(KERN_INFO PFX "Only %d pstates on battery\n",
				data->batps);
L
Linus Torvalds 已提交
653 654
}

655 656 657 658 659 660 661 662 663 664 665 666 667 668
static u32 freq_from_fid_did(u32 fid, u32 did)
{
	u32 mhz = 0;

	if (boot_cpu_data.x86 == 0x10)
		mhz = (100 * (fid + 0x10)) >> did;
	else if (boot_cpu_data.x86 == 0x11)
		mhz = (100 * (fid + 8)) >> did;
	else
		BUG();

	return mhz * 1000;
}

669 670
static int fill_powernow_table(struct powernow_k8_data *data,
		struct pst_s *pst, u8 maxvid)
L
Linus Torvalds 已提交
671 672 673 674
{
	struct cpufreq_frequency_table *powernow_table;
	unsigned int j;

675 676 677 678 679
	if (data->batps) {
		/* use ACPI support to get full speed on mains power */
		printk(KERN_WARNING PFX
			"Only %d pstates usable (use ACPI driver for full "
			"range\n", data->batps);
L
Linus Torvalds 已提交
680 681 682
		data->numps = data->batps;
	}

683
	for (j = 1; j < data->numps; j++) {
L
Linus Torvalds 已提交
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
		if (pst[j-1].fid >= pst[j].fid) {
			printk(KERN_ERR PFX "PST out of sequence\n");
			return -EINVAL;
		}
	}

	if (data->numps < 2) {
		printk(KERN_ERR PFX "no p states to transition\n");
		return -ENODEV;
	}

	if (check_pst_table(data, pst, maxvid))
		return -EINVAL;

	powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table)
		* (data->numps + 1)), GFP_KERNEL);
	if (!powernow_table) {
		printk(KERN_ERR PFX "powernow_table memory alloc failure\n");
		return -ENOMEM;
	}

	for (j = 0; j < data->numps; j++) {
706
		int freq;
L
Linus Torvalds 已提交
707 708
		powernow_table[j].index = pst[j].fid; /* lower 8 bits */
		powernow_table[j].index |= (pst[j].vid << 8); /* upper 8 bits */
709 710
		freq = find_khz_freq_from_fid(pst[j].fid);
		powernow_table[j].frequency = freq;
L
Linus Torvalds 已提交
711 712 713 714 715 716 717 718 719
	}
	powernow_table[data->numps].frequency = CPUFREQ_TABLE_END;
	powernow_table[data->numps].index = 0;

	if (query_current_values_with_pending_wait(data)) {
		kfree(powernow_table);
		return -EIO;
	}

720
	pr_debug("cfid 0x%x, cvid 0x%x\n", data->currfid, data->currvid);
L
Linus Torvalds 已提交
721
	data->powernow_table = powernow_table;
722
	if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu)
723
		print_basics(data);
L
Linus Torvalds 已提交
724 725

	for (j = 0; j < data->numps; j++)
726 727
		if ((pst[j].fid == data->currfid) &&
		    (pst[j].vid == data->currvid))
L
Linus Torvalds 已提交
728 729
			return 0;

730
	pr_debug("currfid/vid do not match PST, ignoring\n");
L
Linus Torvalds 已提交
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
	return 0;
}

/* Find and validate the PSB/PST table in BIOS. */
static int find_psb_table(struct powernow_k8_data *data)
{
	struct psb_s *psb;
	unsigned int i;
	u32 mvs;
	u8 maxvid;
	u32 cpst = 0;
	u32 thiscpuid;

	for (i = 0xc0000; i < 0xffff0; i += 0x10) {
		/* Scan BIOS looking for the signature. */
		/* It can not be at ffff0 - it is too big. */

		psb = phys_to_virt(i);
		if (memcmp(psb, PSB_ID_STRING, PSB_ID_STRING_LEN) != 0)
			continue;

752
		pr_debug("found PSB header at 0x%p\n", psb);
L
Linus Torvalds 已提交
753

754
		pr_debug("table vers: 0x%x\n", psb->tableversion);
L
Linus Torvalds 已提交
755
		if (psb->tableversion != PSB_VERSION_1_4) {
756
			printk(KERN_ERR FW_BUG PFX "PSB table is not v1.4\n");
L
Linus Torvalds 已提交
757 758 759
			return -ENODEV;
		}

760
		pr_debug("flags: 0x%x\n", psb->flags1);
L
Linus Torvalds 已提交
761
		if (psb->flags1) {
762
			printk(KERN_ERR FW_BUG PFX "unknown flags\n");
L
Linus Torvalds 已提交
763 764 765 766
			return -ENODEV;
		}

		data->vstable = psb->vstable;
767
		pr_debug("voltage stabilization time: %d(*20us)\n",
768
				data->vstable);
L
Linus Torvalds 已提交
769

770
		pr_debug("flags2: 0x%x\n", psb->flags2);
L
Linus Torvalds 已提交
771 772 773 774 775 776
		data->rvo = psb->flags2 & 3;
		data->irt = ((psb->flags2) >> 2) & 3;
		mvs = ((psb->flags2) >> 4) & 3;
		data->vidmvs = 1 << mvs;
		data->batps = ((psb->flags2) >> 6) & 3;

777 778 779
		pr_debug("ramp voltage offset: %d\n", data->rvo);
		pr_debug("isochronous relief time: %d\n", data->irt);
		pr_debug("maximum voltage step: %d - 0x%x\n", mvs, data->vidmvs);
L
Linus Torvalds 已提交
780

781
		pr_debug("numpst: 0x%x\n", psb->num_tables);
L
Linus Torvalds 已提交
782
		cpst = psb->num_tables;
783 784
		if ((psb->cpuid == 0x00000fc0) ||
		    (psb->cpuid == 0x00000fe0)) {
L
Linus Torvalds 已提交
785
			thiscpuid = cpuid_eax(CPUID_PROCESSOR_SIGNATURE);
786 787
			if ((thiscpuid == 0x00000fc0) ||
			    (thiscpuid == 0x00000fe0))
L
Linus Torvalds 已提交
788 789 790
				cpst = 1;
		}
		if (cpst != 1) {
791
			printk(KERN_ERR FW_BUG PFX "numpst must be 1\n");
L
Linus Torvalds 已提交
792 793 794 795
			return -ENODEV;
		}

		data->plllock = psb->plllocktime;
796 797 798
		pr_debug("plllocktime: 0x%x (units 1us)\n", psb->plllocktime);
		pr_debug("maxfid: 0x%x\n", psb->maxfid);
		pr_debug("maxvid: 0x%x\n", psb->maxvid);
L
Linus Torvalds 已提交
799 800 801
		maxvid = psb->maxvid;

		data->numps = psb->numps;
802
		pr_debug("numpstates: 0x%x\n", data->numps);
803 804
		return fill_powernow_table(data,
				(struct pst_s *)(psb+1), maxvid);
L
Linus Torvalds 已提交
805 806 807 808 809 810 811 812 813 814 815 816
	}
	/*
	 * If you see this message, complain to BIOS manufacturer. If
	 * he tells you "we do not support Linux" or some similar
	 * nonsense, remember that Windows 2000 uses the same legacy
	 * mechanism that the old Linux PSB driver uses. Tell them it
	 * is broken with Windows 2000.
	 *
	 * The reference to the AMD documentation is chapter 9 in the
	 * BIOS and Kernel Developer's Guide, which is available on
	 * www.amd.com
	 */
817
	printk(KERN_ERR FW_BUG PFX "No PSB or ACPI _PSS objects\n");
818 819
	printk(KERN_ERR PFX "Make sure that your BIOS is up to date"
		" and Cool'N'Quiet support is enabled in BIOS setup\n");
L
Linus Torvalds 已提交
820 821 822
	return -ENODEV;
}

823 824
static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data,
		unsigned int index)
L
Linus Torvalds 已提交
825
{
L
Lin Ming 已提交
826
	u64 control;
827

828
	if (!data->acpi_data.state_count || (cpu_family == CPU_HW_PSTATE))
L
Linus Torvalds 已提交
829 830
		return;

831 832 833 834 835 836 837 838
	control = data->acpi_data.states[index].control;
	data->irt = (control >> IRT_SHIFT) & IRT_MASK;
	data->rvo = (control >> RVO_SHIFT) & RVO_MASK;
	data->exttype = (control >> EXT_TYPE_SHIFT) & EXT_TYPE_MASK;
	data->plllock = (control >> PLL_L_SHIFT) & PLL_L_MASK;
	data->vidmvs = 1 << ((control >> MVS_SHIFT) & MVS_MASK);
	data->vstable = (control >> VST_SHIFT) & VST_MASK;
}
L
Linus Torvalds 已提交
839 840 841 842

static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data)
{
	struct cpufreq_frequency_table *powernow_table;
843
	int ret_val = -ENODEV;
L
Lin Ming 已提交
844
	u64 control, status;
L
Linus Torvalds 已提交
845

846
	if (acpi_processor_register_performance(&data->acpi_data, data->cpu)) {
847
		pr_debug("register performance failed: bad ACPI data\n");
L
Linus Torvalds 已提交
848 849 850 851
		return -EIO;
	}

	/* verify the data contained in the ACPI structures */
852
	if (data->acpi_data.state_count <= 1) {
853
		pr_debug("No ACPI P-States\n");
L
Linus Torvalds 已提交
854 855 856
		goto err_out;
	}

857 858 859 860 861
	control = data->acpi_data.control_register.space_id;
	status = data->acpi_data.status_register.space_id;

	if ((control != ACPI_ADR_SPACE_FIXED_HARDWARE) ||
	    (status != ACPI_ADR_SPACE_FIXED_HARDWARE)) {
862
		pr_debug("Invalid control/status registers (%llx - %llx)\n",
863
			control, status);
L
Linus Torvalds 已提交
864 865 866 867 868
		goto err_out;
	}

	/* fill in data->powernow_table */
	powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table)
869
		* (data->acpi_data.state_count + 1)), GFP_KERNEL);
L
Linus Torvalds 已提交
870
	if (!powernow_table) {
871
		pr_debug("powernow_table memory alloc failure\n");
L
Linus Torvalds 已提交
872 873 874
		goto err_out;
	}

875 876 877 878
	/* fill in data */
	data->numps = data->acpi_data.state_count;
	powernow_k8_acpi_pst_values(data, 0);

879
	if (cpu_family == CPU_HW_PSTATE)
880 881 882 883 884 885
		ret_val = fill_powernow_table_pstate(data, powernow_table);
	else
		ret_val = fill_powernow_table_fidvid(data, powernow_table);
	if (ret_val)
		goto err_out_mem;

886 887
	powernow_table[data->acpi_data.state_count].frequency =
		CPUFREQ_TABLE_END;
888
	powernow_table[data->acpi_data.state_count].index = 0;
889 890
	data->powernow_table = powernow_table;

891
	if (cpumask_first(cpu_core_mask(data->cpu)) == data->cpu)
892
		print_basics(data);
893 894 895 896

	/* notify BIOS that we exist */
	acpi_processor_notify_smm(THIS_MODULE);

897
	if (!zalloc_cpumask_var(&data->acpi_data.shared_cpu_map, GFP_KERNEL)) {
898 899 900 901 902 903
		printk(KERN_ERR PFX
				"unable to alloc powernow_k8_data cpumask\n");
		ret_val = -ENOMEM;
		goto err_out_mem;
	}

904 905 906 907 908 909
	return 0;

err_out_mem:
	kfree(powernow_table);

err_out:
910
	acpi_processor_unregister_performance(&data->acpi_data, data->cpu);
911

912 913
	/* data->acpi_data.state_count informs us at ->exit()
	 * whether ACPI was used */
914
	data->acpi_data.state_count = 0;
915

916
	return ret_val;
917 918
}

919 920
static int fill_powernow_table_pstate(struct powernow_k8_data *data,
		struct cpufreq_frequency_table *powernow_table)
921 922
{
	int i;
923
	u32 hi = 0, lo = 0;
924 925
	rdmsr(MSR_PSTATE_CUR_LIMIT, lo, hi);
	data->max_hw_pstate = (lo & HW_PSTATE_MAX_MASK) >> HW_PSTATE_MAX_SHIFT;
926

927
	for (i = 0; i < data->acpi_data.state_count; i++) {
928 929
		u32 index;

930
		index = data->acpi_data.states[i].control & HW_PSTATE_MASK;
931
		if (index > data->max_hw_pstate) {
932 933 934 935
			printk(KERN_ERR PFX "invalid pstate %d - "
					"bad value %d.\n", i, index);
			printk(KERN_ERR PFX "Please report to BIOS "
					"manufacturer\n");
936
			invalidate_entry(powernow_table, i);
937
			continue;
938
		}
939 940 941

		ps_to_as[index] = i;

942
		/* Frequency may be rounded for these */
943 944
		if ((boot_cpu_data.x86 == 0x10 && boot_cpu_data.x86_model < 10)
				 || boot_cpu_data.x86 == 0x11) {
945 946 947 948 949 950 951 952

			rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi);
			if (!(hi & HW_PSTATE_VALID_MASK)) {
				pr_debug("invalid pstate %d, ignoring\n", index);
				invalidate_entry(powernow_table, i);
				continue;
			}

953 954 955 956 957
			powernow_table[i].frequency =
				freq_from_fid_did(lo & 0x3f, (lo >> 6) & 7);
		} else
			powernow_table[i].frequency =
				data->acpi_data.states[i].core_frequency * 1000;
958 959

		powernow_table[i].index = index;
960 961 962 963
	}
	return 0;
}

964 965
static int fill_powernow_table_fidvid(struct powernow_k8_data *data,
		struct cpufreq_frequency_table *powernow_table)
966 967
{
	int i;
968

969
	for (i = 0; i < data->acpi_data.state_count; i++) {
970 971
		u32 fid;
		u32 vid;
972
		u32 freq, index;
L
Lin Ming 已提交
973
		u64 status, control;
974 975

		if (data->exttype) {
976 977 978
			status =  data->acpi_data.states[i].status;
			fid = status & EXT_FID_MASK;
			vid = (status >> VID_SHIFT) & EXT_VID_MASK;
979
		} else {
980 981 982
			control =  data->acpi_data.states[i].control;
			fid = control & FID_MASK;
			vid = (control >> VID_SHIFT) & VID_MASK;
983
		}
L
Linus Torvalds 已提交
984

985
		pr_debug("   %d : fid 0x%x, vid 0x%x\n", i, fid, vid);
L
Linus Torvalds 已提交
986

987 988 989 990 991
		index = fid | (vid<<8);
		powernow_table[i].index = index;

		freq = find_khz_freq_from_fid(fid);
		powernow_table[i].frequency = freq;
L
Linus Torvalds 已提交
992 993

		/* verify frequency is OK */
994
		if ((freq > (MAX_FREQ * 1000)) || (freq < (MIN_FREQ * 1000))) {
995
			pr_debug("invalid freq %u kHz, ignoring\n", freq);
996
			invalidate_entry(powernow_table, i);
L
Linus Torvalds 已提交
997 998 999
			continue;
		}

1000 1001
		/* verify voltage is OK -
		 * BIOSs are using "off" to indicate invalid */
1002
		if (vid == VID_OFF) {
1003
			pr_debug("invalid vid %u, ignoring\n", vid);
1004
			invalidate_entry(powernow_table, i);
L
Linus Torvalds 已提交
1005 1006 1007
			continue;
		}

1008 1009 1010 1011 1012 1013
		if (freq != (data->acpi_data.states[i].core_frequency * 1000)) {
			printk(KERN_INFO PFX "invalid freq entries "
				"%u kHz vs. %u kHz\n", freq,
				(unsigned int)
				(data->acpi_data.states[i].core_frequency
				 * 1000));
1014
			invalidate_entry(powernow_table, i);
L
Linus Torvalds 已提交
1015 1016 1017 1018 1019 1020 1021 1022
			continue;
		}
	}
	return 0;
}

static void powernow_k8_cpu_exit_acpi(struct powernow_k8_data *data)
{
1023
	if (data->acpi_data.state_count)
1024 1025
		acpi_processor_unregister_performance(&data->acpi_data,
				data->cpu);
1026
	free_cpumask_var(data->acpi_data.shared_cpu_map);
L
Linus Torvalds 已提交
1027 1028
}

1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
static int get_transition_latency(struct powernow_k8_data *data)
{
	int max_latency = 0;
	int i;
	for (i = 0; i < data->acpi_data.state_count; i++) {
		int cur_latency = data->acpi_data.states[i].transition_latency
			+ data->acpi_data.states[i].bus_master_latency;
		if (cur_latency > max_latency)
			max_latency = cur_latency;
	}
1039 1040
	if (max_latency == 0) {
		/*
1041 1042 1043 1044
		 * Fam 11h and later may return 0 as transition latency. This
		 * is intended and means "very fast". While cpufreq core and
		 * governors currently can handle that gracefully, better set it
		 * to 1 to avoid problems in the future.
1045
		 */
1046
		if (boot_cpu_data.x86 < 0x11)
1047 1048 1049 1050
			printk(KERN_ERR FW_WARN PFX "Invalid zero transition "
				"latency\n");
		max_latency = 1;
	}
1051 1052 1053 1054
	/* value in usecs, needs to be in nanoseconds */
	return 1000 * max_latency;
}

L
Linus Torvalds 已提交
1055
/* Take a frequency, and issue the fid/vid transition command */
1056 1057
static int transition_frequency_fidvid(struct powernow_k8_data *data,
		unsigned int index)
L
Linus Torvalds 已提交
1058
{
1059 1060
	u32 fid = 0;
	u32 vid = 0;
D
Dave Jones 已提交
1061
	int res, i;
L
Linus Torvalds 已提交
1062 1063
	struct cpufreq_freqs freqs;

1064
	pr_debug("cpu %d transition to index %u\n", smp_processor_id(), index);
L
Linus Torvalds 已提交
1065

1066
	/* fid/vid correctness check for k8 */
L
Linus Torvalds 已提交
1067
	/* fid are the lower 8 bits of the index we stored into
1068 1069
	 * the cpufreq frequency table in find_psb_table, vid
	 * are the upper 8 bits.
L
Linus Torvalds 已提交
1070 1071 1072 1073
	 */
	fid = data->powernow_table[index].index & 0xFF;
	vid = (data->powernow_table[index].index & 0xFF00) >> 8;

1074
	pr_debug("table matched fid 0x%x, giving vid 0x%x\n", fid, vid);
L
Linus Torvalds 已提交
1075 1076 1077 1078 1079

	if (query_current_values_with_pending_wait(data))
		return 1;

	if ((data->currvid == vid) && (data->currfid == fid)) {
1080
		pr_debug("target matches current values (fid 0x%x, vid 0x%x)\n",
L
Linus Torvalds 已提交
1081 1082 1083 1084
			fid, vid);
		return 0;
	}

1085
	pr_debug("cpu %d, changing to fid 0x%x, vid 0x%x\n",
L
Linus Torvalds 已提交
1086 1087 1088
		smp_processor_id(), fid, vid);
	freqs.old = find_khz_freq_from_fid(data->currfid);
	freqs.new = find_khz_freq_from_fid(fid);
1089

1090
	for_each_cpu(i, data->available_cores) {
D
Dave Jones 已提交
1091 1092 1093
		freqs.cpu = i;
		cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
	}
L
Linus Torvalds 已提交
1094 1095

	res = transition_fid_vid(data, fid, vid);
1096 1097 1098
	if (res)
		return res;

L
Linus Torvalds 已提交
1099
	freqs.new = find_khz_freq_from_fid(data->currfid);
1100

1101
	for_each_cpu(i, data->available_cores) {
1102 1103 1104 1105 1106 1107 1108
		freqs.cpu = i;
		cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
	}
	return res;
}

/* Take a frequency, and issue the hardware pstate transition command */
1109 1110
static int transition_frequency_pstate(struct powernow_k8_data *data,
		unsigned int index)
1111 1112 1113 1114 1115
{
	u32 pstate = 0;
	int res, i;
	struct cpufreq_freqs freqs;

1116
	pr_debug("cpu %d transition to index %u\n", smp_processor_id(), index);
1117

1118
	/* get MSR index for hardware pstate transition */
1119
	pstate = index & HW_PSTATE_MASK;
1120
	if (pstate > data->max_hw_pstate)
1121 1122
		return -EINVAL;

1123 1124
	freqs.old = find_khz_freq_from_pstate(data->powernow_table,
			data->currpstate);
1125
	freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate);
1126

1127
	for_each_cpu(i, data->available_cores) {
1128 1129 1130 1131 1132
		freqs.cpu = i;
		cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
	}

	res = transition_pstate(data, pstate);
1133
	freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate);
1134

1135
	for_each_cpu(i, data->available_cores) {
D
Dave Jones 已提交
1136 1137
		freqs.cpu = i;
		cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
D
Dave Jones 已提交
1138
	}
L
Linus Torvalds 已提交
1139 1140 1141 1142
	return res;
}

/* Driver entry point to switch to the target frequency */
1143 1144
static int powernowk8_target(struct cpufreq_policy *pol,
		unsigned targfreq, unsigned relation)
L
Linus Torvalds 已提交
1145
{
1146
	cpumask_var_t oldmask;
1147
	struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
1148 1149
	u32 checkfid;
	u32 checkvid;
L
Linus Torvalds 已提交
1150 1151 1152
	unsigned int newstate;
	int ret = -EIO;

1153 1154 1155
	if (!data)
		return -EINVAL;

1156 1157 1158
	checkfid = data->currfid;
	checkvid = data->currvid;

1159 1160 1161 1162 1163
	/* only run on specific CPU from here on. */
	/* This is poor form: use a workqueue or smp_call_function_single */
	if (!alloc_cpumask_var(&oldmask, GFP_KERNEL))
		return -ENOMEM;

1164
	cpumask_copy(oldmask, tsk_cpus_allowed(current));
1165
	set_cpus_allowed_ptr(current, cpumask_of(pol->cpu));
L
Linus Torvalds 已提交
1166 1167

	if (smp_processor_id() != pol->cpu) {
1168
		printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu);
L
Linus Torvalds 已提交
1169 1170 1171 1172 1173 1174 1175 1176
		goto err_out;
	}

	if (pending_bit_stuck()) {
		printk(KERN_ERR PFX "failing targ, change pending bit set\n");
		goto err_out;
	}

1177
	pr_debug("targ: cpu %d, %d kHz, min %d, max %d, relation %d\n",
L
Linus Torvalds 已提交
1178 1179
		pol->cpu, targfreq, pol->min, pol->max, relation);

1180
	if (query_current_values_with_pending_wait(data))
L
Linus Torvalds 已提交
1181 1182
		goto err_out;

1183
	if (cpu_family != CPU_HW_PSTATE) {
1184
		pr_debug("targ: curr fid 0x%x, vid 0x%x\n",
L
Linus Torvalds 已提交
1185 1186
		data->currfid, data->currvid);

1187 1188
		if ((checkvid != data->currvid) ||
		    (checkfid != data->currfid)) {
1189
			printk(KERN_INFO PFX
1190 1191 1192 1193
				"error - out of sync, fix 0x%x 0x%x, "
				"vid 0x%x 0x%x\n",
				checkfid, data->currfid,
				checkvid, data->currvid);
1194
		}
L
Linus Torvalds 已提交
1195 1196
	}

1197 1198
	if (cpufreq_frequency_table_target(pol, data->powernow_table,
				targfreq, relation, &newstate))
L
Linus Torvalds 已提交
1199 1200
		goto err_out;

1201
	mutex_lock(&fidvid_mutex);
D
Dave Jones 已提交
1202

L
Linus Torvalds 已提交
1203 1204
	powernow_k8_acpi_pst_values(data, newstate);

1205
	if (cpu_family == CPU_HW_PSTATE)
1206 1207
		ret = transition_frequency_pstate(data,
			data->powernow_table[newstate].index);
1208 1209 1210
	else
		ret = transition_frequency_fidvid(data, newstate);
	if (ret) {
L
Linus Torvalds 已提交
1211 1212
		printk(KERN_ERR PFX "transition frequency failed\n");
		ret = 1;
1213
		mutex_unlock(&fidvid_mutex);
L
Linus Torvalds 已提交
1214 1215
		goto err_out;
	}
1216
	mutex_unlock(&fidvid_mutex);
D
Dave Jones 已提交
1217

1218
	if (cpu_family == CPU_HW_PSTATE)
1219
		pol->cur = find_khz_freq_from_pstate(data->powernow_table,
1220
				data->powernow_table[newstate].index);
1221 1222
	else
		pol->cur = find_khz_freq_from_fid(data->currfid);
L
Linus Torvalds 已提交
1223 1224 1225
	ret = 0;

err_out:
1226 1227
	set_cpus_allowed_ptr(current, oldmask);
	free_cpumask_var(oldmask);
L
Linus Torvalds 已提交
1228 1229 1230 1231 1232 1233
	return ret;
}

/* Driver entry point to verify the policy and range of frequencies */
static int powernowk8_verify(struct cpufreq_policy *pol)
{
1234
	struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
L
Linus Torvalds 已提交
1235

1236 1237 1238
	if (!data)
		return -EINVAL;

L
Linus Torvalds 已提交
1239 1240 1241
	return cpufreq_frequency_table_verify(pol, data->powernow_table);
}

1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
struct init_on_cpu {
	struct powernow_k8_data *data;
	int rc;
};

static void __cpuinit powernowk8_cpu_init_on_cpu(void *_init_on_cpu)
{
	struct init_on_cpu *init_on_cpu = _init_on_cpu;

	if (pending_bit_stuck()) {
		printk(KERN_ERR PFX "failing init, change pending bit set\n");
		init_on_cpu->rc = -ENODEV;
		return;
	}

	if (query_current_values_with_pending_wait(init_on_cpu->data)) {
		init_on_cpu->rc = -ENODEV;
		return;
	}

	if (cpu_family == CPU_OPTERON)
		fidvid_msr_init();

	init_on_cpu->rc = 0;
}

L
Linus Torvalds 已提交
1268
/* per CPU init entry point to the driver */
1269
static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol)
L
Linus Torvalds 已提交
1270
{
1271 1272
	static const char ACPI_PSS_BIOS_BUG_MSG[] =
		KERN_ERR FW_BUG PFX "No compatible ACPI _PSS objects found.\n"
1273
		FW_BUG PFX "Try again with latest BIOS.\n";
L
Linus Torvalds 已提交
1274
	struct powernow_k8_data *data;
1275
	struct init_on_cpu init_on_cpu;
1276
	int rc;
1277
	struct cpuinfo_x86 *c = &cpu_data(pol->cpu);
L
Linus Torvalds 已提交
1278

1279 1280 1281
	if (!cpu_online(pol->cpu))
		return -ENODEV;

1282 1283
	smp_call_function_single(pol->cpu, check_supported_cpu, &rc, 1);
	if (rc)
L
Linus Torvalds 已提交
1284 1285
		return -ENODEV;

1286
	data = kzalloc(sizeof(struct powernow_k8_data), GFP_KERNEL);
L
Linus Torvalds 已提交
1287 1288 1289 1290 1291 1292
	if (!data) {
		printk(KERN_ERR PFX "unable to alloc powernow_k8_data");
		return -ENOMEM;
	}

	data->cpu = pol->cpu;
1293
	data->currpstate = HW_PSTATE_INVALID;
L
Linus Torvalds 已提交
1294

1295
	if (powernow_k8_cpu_init_acpi(data)) {
L
Linus Torvalds 已提交
1296
		/*
L
Lucas De Marchi 已提交
1297
		 * Use the PSB BIOS structure. This is only available on
L
Linus Torvalds 已提交
1298 1299
		 * an UP version, and is deprecated by AMD.
		 */
1300
		if (num_online_cpus() != 1) {
1301
			printk_once(ACPI_PSS_BIOS_BUG_MSG);
1302
			goto err_out;
L
Linus Torvalds 已提交
1303 1304
		}
		if (pol->cpu != 0) {
1305 1306 1307
			printk(KERN_ERR FW_BUG PFX "No ACPI _PSS objects for "
			       "CPU other than CPU0. Complain to your BIOS "
			       "vendor.\n");
1308
			goto err_out;
L
Linus Torvalds 已提交
1309 1310
		}
		rc = find_psb_table(data);
1311 1312 1313
		if (rc)
			goto err_out;

1314 1315 1316 1317 1318 1319 1320
		/* Take a crude guess here.
		 * That guess was in microseconds, so multiply with 1000 */
		pol->cpuinfo.transition_latency = (
			 ((data->rvo + 8) * data->vstable * VST_UNITS_20US) +
			 ((1 << data->irt) * 30)) * 1000;
	} else /* ACPI _PSS objects available */
		pol->cpuinfo.transition_latency = get_transition_latency(data);
L
Linus Torvalds 已提交
1321 1322

	/* only run on specific CPU from here on */
1323 1324 1325 1326 1327 1328
	init_on_cpu.data = data;
	smp_call_function_single(data->cpu, powernowk8_cpu_init_on_cpu,
				 &init_on_cpu, 1);
	rc = init_on_cpu.rc;
	if (rc != 0)
		goto err_out_exit_acpi;
L
Linus Torvalds 已提交
1329

1330
	if (cpu_family == CPU_HW_PSTATE)
1331
		cpumask_copy(pol->cpus, cpumask_of(pol->cpu));
1332
	else
1333
		cpumask_copy(pol->cpus, cpu_core_mask(pol->cpu));
1334
	data->available_cores = pol->cpus;
L
Linus Torvalds 已提交
1335

1336
	if (cpu_family == CPU_HW_PSTATE)
1337 1338
		pol->cur = find_khz_freq_from_pstate(data->powernow_table,
				data->currpstate);
1339 1340
	else
		pol->cur = find_khz_freq_from_fid(data->currfid);
1341
	pr_debug("policy current frequency %d kHz\n", pol->cur);
L
Linus Torvalds 已提交
1342 1343 1344

	/* min/max the cpu is capable of */
	if (cpufreq_frequency_table_cpuinfo(pol, data->powernow_table)) {
1345
		printk(KERN_ERR FW_BUG PFX "invalid powernow_table\n");
L
Linus Torvalds 已提交
1346 1347 1348 1349 1350 1351
		powernow_k8_cpu_exit_acpi(data);
		kfree(data->powernow_table);
		kfree(data);
		return -EINVAL;
	}

1352 1353 1354 1355
	/* Check for APERF/MPERF support in hardware */
	if (cpu_has(c, X86_FEATURE_APERFMPERF))
		cpufreq_amd64_driver.getavg = cpufreq_get_measured_perf;

L
Linus Torvalds 已提交
1356 1357
	cpufreq_frequency_table_get_attr(data->powernow_table, pol->cpu);

1358
	if (cpu_family == CPU_HW_PSTATE)
1359
		pr_debug("cpu_init done, current pstate 0x%x\n",
1360
				data->currpstate);
1361
	else
1362
		pr_debug("cpu_init done, current fid 0x%x, vid 0x%x\n",
1363
			data->currfid, data->currvid);
L
Linus Torvalds 已提交
1364

1365
	per_cpu(powernow_data, pol->cpu) = data;
L
Linus Torvalds 已提交
1366 1367 1368

	return 0;

1369
err_out_exit_acpi:
L
Linus Torvalds 已提交
1370 1371
	powernow_k8_cpu_exit_acpi(data);

1372
err_out:
L
Linus Torvalds 已提交
1373 1374 1375 1376
	kfree(data);
	return -ENODEV;
}

1377
static int __devexit powernowk8_cpu_exit(struct cpufreq_policy *pol)
L
Linus Torvalds 已提交
1378
{
1379
	struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu);
L
Linus Torvalds 已提交
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389

	if (!data)
		return -EINVAL;

	powernow_k8_cpu_exit_acpi(data);

	cpufreq_frequency_table_put_attr(pol->cpu);

	kfree(data->powernow_table);
	kfree(data);
1390
	per_cpu(powernow_data, pol->cpu) = NULL;
L
Linus Torvalds 已提交
1391 1392 1393 1394

	return 0;
}

1395 1396 1397
static void query_values_on_cpu(void *_err)
{
	int *err = _err;
T
Tejun Heo 已提交
1398
	struct powernow_k8_data *data = __this_cpu_read(powernow_data);
1399 1400 1401 1402

	*err = query_current_values_with_pending_wait(data);
}

1403
static unsigned int powernowk8_get(unsigned int cpu)
L
Linus Torvalds 已提交
1404
{
1405
	struct powernow_k8_data *data = per_cpu(powernow_data, cpu);
L
Linus Torvalds 已提交
1406
	unsigned int khz = 0;
1407
	int err;
1408 1409

	if (!data)
1410
		return 0;
1411

1412 1413
	smp_call_function_single(cpu, query_values_on_cpu, &err, true);
	if (err)
L
Linus Torvalds 已提交
1414 1415
		goto out;

1416
	if (cpu_family == CPU_HW_PSTATE)
1417 1418
		khz = find_khz_freq_from_pstate(data->powernow_table,
						data->currpstate);
1419 1420 1421
	else
		khz = find_khz_freq_from_fid(data->currfid);

L
Linus Torvalds 已提交
1422

1423
out:
L
Linus Torvalds 已提交
1424 1425 1426
	return khz;
}

1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
static void _cpb_toggle_msrs(bool t)
{
	int cpu;

	get_online_cpus();

	rdmsr_on_cpus(cpu_online_mask, MSR_K7_HWCR, msrs);

	for_each_cpu(cpu, cpu_online_mask) {
		struct msr *reg = per_cpu_ptr(msrs, cpu);
		if (t)
			reg->l &= ~BIT(25);
		else
			reg->l |= BIT(25);
	}
	wrmsr_on_cpus(cpu_online_mask, MSR_K7_HWCR, msrs);

	put_online_cpus();
}

/*
 * Switch on/off core performance boosting.
 *
 * 0=disable
 * 1=enable.
 */
static void cpb_toggle(bool t)
{
	if (!cpb_capable)
		return;

	if (t && !cpb_enabled) {
		cpb_enabled = true;
		_cpb_toggle_msrs(t);
		printk(KERN_INFO PFX "Core Boosting enabled.\n");
	} else if (!t && cpb_enabled) {
		cpb_enabled = false;
		_cpb_toggle_msrs(t);
		printk(KERN_INFO PFX "Core Boosting disabled.\n");
	}
}

static ssize_t store_cpb(struct cpufreq_policy *policy, const char *buf,
				 size_t count)
{
	int ret = -EINVAL;
	unsigned long val = 0;

	ret = strict_strtoul(buf, 10, &val);
	if (!ret && (val == 0 || val == 1) && cpb_capable)
		cpb_toggle(val);
	else
		return -EINVAL;

	return count;
}

static ssize_t show_cpb(struct cpufreq_policy *policy, char *buf)
{
	return sprintf(buf, "%u\n", cpb_enabled);
}

#define define_one_rw(_name) \
static struct freq_attr _name = \
__ATTR(_name, 0644, show_##_name, store_##_name)

define_one_rw(cpb);

1495
static struct freq_attr *powernow_k8_attr[] = {
L
Linus Torvalds 已提交
1496
	&cpufreq_freq_attr_scaling_available_freqs,
1497
	&cpb,
L
Linus Torvalds 已提交
1498 1499 1500
	NULL,
};

1501
static struct cpufreq_driver cpufreq_amd64_driver = {
1502 1503 1504 1505 1506 1507 1508 1509 1510
	.verify		= powernowk8_verify,
	.target		= powernowk8_target,
	.bios_limit	= acpi_processor_get_bios_limit,
	.init		= powernowk8_cpu_init,
	.exit		= __devexit_p(powernowk8_cpu_exit),
	.get		= powernowk8_get,
	.name		= "powernow-k8",
	.owner		= THIS_MODULE,
	.attr		= powernow_k8_attr,
L
Linus Torvalds 已提交
1511 1512
};

1513 1514 1515 1516 1517 1518
/*
 * Clear the boost-disable flag on the CPU_DOWN path so that this cpu
 * cannot block the remaining ones from boosting. On the CPU_UP path we
 * simply keep the boost-disable flag in sync with the current global
 * state.
 */
1519 1520
static int cpb_notify(struct notifier_block *nb, unsigned long action,
		      void *hcpu)
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549
{
	unsigned cpu = (long)hcpu;
	u32 lo, hi;

	switch (action) {
	case CPU_UP_PREPARE:
	case CPU_UP_PREPARE_FROZEN:

		if (!cpb_enabled) {
			rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
			lo |= BIT(25);
			wrmsr_on_cpu(cpu, MSR_K7_HWCR, lo, hi);
		}
		break;

	case CPU_DOWN_PREPARE:
	case CPU_DOWN_PREPARE_FROZEN:
		rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
		lo &= ~BIT(25);
		wrmsr_on_cpu(cpu, MSR_K7_HWCR, lo, hi);
		break;

	default:
		break;
	}

	return NOTIFY_OK;
}

1550
static struct notifier_block cpb_nb = {
1551 1552 1553
	.notifier_call		= cpb_notify,
};

L
Linus Torvalds 已提交
1554
/* driver entry point for init */
1555
static int __cpuinit powernowk8_init(void)
L
Linus Torvalds 已提交
1556
{
1557
	unsigned int i, supported_cpus = 0, cpu;
1558
	int rv;
L
Linus Torvalds 已提交
1559

1560 1561 1562
	if (!x86_match_cpu(powernow_k8_ids))
		return -ENODEV;

1563
	for_each_online_cpu(i) {
1564 1565 1566
		int rc;
		smp_call_function_single(i, check_supported_cpu, &rc, 1);
		if (rc == 0)
L
Linus Torvalds 已提交
1567 1568 1569
			supported_cpus++;
	}

1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585
	if (supported_cpus != num_online_cpus())
		return -ENODEV;

	printk(KERN_INFO PFX "Found %d %s (%d cpu cores) (" VERSION ")\n",
		num_online_nodes(), boot_cpu_data.x86_model_id, supported_cpus);

	if (boot_cpu_has(X86_FEATURE_CPB)) {

		cpb_capable = true;

		msrs = msrs_alloc();
		if (!msrs) {
			printk(KERN_ERR "%s: Error allocating msrs!\n", __func__);
			return -ENOMEM;
		}

1586 1587
		register_cpu_notifier(&cpb_nb);

1588 1589 1590 1591 1592 1593 1594 1595 1596
		rdmsr_on_cpus(cpu_online_mask, MSR_K7_HWCR, msrs);

		for_each_cpu(cpu, cpu_online_mask) {
			struct msr *reg = per_cpu_ptr(msrs, cpu);
			cpb_enabled |= !(!!(reg->l & BIT(25)));
		}

		printk(KERN_INFO PFX "Core Performance Boosting: %s.\n",
			(cpb_enabled ? "on" : "off"));
L
Linus Torvalds 已提交
1597 1598
	}

1599 1600 1601 1602 1603 1604 1605
	rv = cpufreq_register_driver(&cpufreq_amd64_driver);
	if (rv < 0 && boot_cpu_has(X86_FEATURE_CPB)) {
		unregister_cpu_notifier(&cpb_nb);
		msrs_free(msrs);
		msrs = NULL;
	}
	return rv;
L
Linus Torvalds 已提交
1606 1607 1608 1609 1610
}

/* driver entry point for term */
static void __exit powernowk8_exit(void)
{
1611
	pr_debug("exit\n");
L
Linus Torvalds 已提交
1612

1613 1614 1615 1616 1617 1618 1619
	if (boot_cpu_has(X86_FEATURE_CPB)) {
		msrs_free(msrs);
		msrs = NULL;

		unregister_cpu_notifier(&cpb_nb);
	}

L
Linus Torvalds 已提交
1620 1621 1622
	cpufreq_unregister_driver(&cpufreq_amd64_driver);
}

1623 1624
MODULE_AUTHOR("Paul Devriendt <paul.devriendt@amd.com> and "
		"Mark Langsdorf <mark.langsdorf@amd.com>");
L
Linus Torvalds 已提交
1625 1626 1627 1628 1629
MODULE_DESCRIPTION("AMD Athlon 64 and Opteron processor frequency driver.");
MODULE_LICENSE("GPL");

late_initcall(powernowk8_init);
module_exit(powernowk8_exit);