]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[net-next-2.6.git] / arch / x86 / kernel / cpu / cpufreq / acpi-cpufreq.c
CommitLineData
1da177e4 1/*
3a58df35 2 * acpi-cpufreq.c - ACPI Processor P-States Driver
1da177e4
LT
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2002 - 2004 Dominik Brodowski <linux@brodo.de>
fe27cb35 7 * Copyright (C) 2006 Denis Sadykov <denis.m.sadykov@intel.com>
1da177e4
LT
8 *
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 *
25 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 */
27
1da177e4
LT
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/init.h>
fe27cb35
VP
31#include <linux/smp.h>
32#include <linux/sched.h>
1da177e4 33#include <linux/cpufreq.h>
d395bf12 34#include <linux/compiler.h>
8adcc0c6 35#include <linux/dmi.h>
5a0e3ad6 36#include <linux/slab.h>
61613521 37#include <trace/events/power.h>
1da177e4
LT
38
39#include <linux/acpi.h>
3a58df35
DJ
40#include <linux/io.h>
41#include <linux/delay.h>
42#include <linux/uaccess.h>
43
1da177e4
LT
44#include <acpi/processor.h>
45
dde9f7ba 46#include <asm/msr.h>
fe27cb35
VP
47#include <asm/processor.h>
48#include <asm/cpufeature.h>
fe27cb35 49
3a58df35
DJ
50#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, \
51 "acpi-cpufreq", msg)
1da177e4
LT
52
53MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
54MODULE_DESCRIPTION("ACPI Processor P-States Driver");
55MODULE_LICENSE("GPL");
56
dde9f7ba
VP
57enum {
58 UNDEFINED_CAPABLE = 0,
59 SYSTEM_INTEL_MSR_CAPABLE,
60 SYSTEM_IO_CAPABLE,
61};
62
63#define INTEL_MSR_RANGE (0xffff)
64
fe27cb35 65struct acpi_cpufreq_data {
64be7eed
VP
66 struct acpi_processor_performance *acpi_data;
67 struct cpufreq_frequency_table *freq_table;
68 unsigned int resume;
69 unsigned int cpu_feature;
1da177e4
LT
70};
71
f1625066 72static DEFINE_PER_CPU(struct acpi_cpufreq_data *, acfreq_data);
ea348f3e 73
f1625066 74static DEFINE_PER_CPU(struct aperfmperf, acfreq_old_perf);
093f13e2 75
50109292
FY
76/* acpi_perf_data is a pointer to percpu data. */
77static struct acpi_processor_performance *acpi_perf_data;
1da177e4
LT
78
79static struct cpufreq_driver acpi_cpufreq_driver;
80
d395bf12
VP
81static unsigned int acpi_pstate_strict;
82
dde9f7ba
VP
83static int check_est_cpu(unsigned int cpuid)
84{
92cb7612 85 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
dde9f7ba 86
0de51088 87 return cpu_has(cpu, X86_FEATURE_EST);
dde9f7ba
VP
88}
89
dde9f7ba 90static unsigned extract_io(u32 value, struct acpi_cpufreq_data *data)
fe27cb35 91{
64be7eed
VP
92 struct acpi_processor_performance *perf;
93 int i;
fe27cb35
VP
94
95 perf = data->acpi_data;
96
3a58df35 97 for (i = 0; i < perf->state_count; i++) {
fe27cb35
VP
98 if (value == perf->states[i].status)
99 return data->freq_table[i].frequency;
100 }
101 return 0;
102}
103
dde9f7ba
VP
104static unsigned extract_msr(u32 msr, struct acpi_cpufreq_data *data)
105{
106 int i;
a6f6e6e6 107 struct acpi_processor_performance *perf;
dde9f7ba
VP
108
109 msr &= INTEL_MSR_RANGE;
a6f6e6e6
VP
110 perf = data->acpi_data;
111
3a58df35 112 for (i = 0; data->freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
a6f6e6e6 113 if (msr == perf->states[data->freq_table[i].index].status)
dde9f7ba
VP
114 return data->freq_table[i].frequency;
115 }
116 return data->freq_table[0].frequency;
117}
118
dde9f7ba
VP
119static unsigned extract_freq(u32 val, struct acpi_cpufreq_data *data)
120{
121 switch (data->cpu_feature) {
64be7eed 122 case SYSTEM_INTEL_MSR_CAPABLE:
dde9f7ba 123 return extract_msr(val, data);
64be7eed 124 case SYSTEM_IO_CAPABLE:
dde9f7ba 125 return extract_io(val, data);
64be7eed 126 default:
dde9f7ba
VP
127 return 0;
128 }
129}
130
dde9f7ba
VP
131struct msr_addr {
132 u32 reg;
133};
134
fe27cb35
VP
135struct io_addr {
136 u16 port;
137 u8 bit_width;
138};
139
140struct drv_cmd {
dde9f7ba 141 unsigned int type;
bfa318ad 142 const struct cpumask *mask;
3a58df35
DJ
143 union {
144 struct msr_addr msr;
145 struct io_addr io;
146 } addr;
fe27cb35
VP
147 u32 val;
148};
149
01599fca
AM
150/* Called via smp_call_function_single(), on the target CPU */
151static void do_drv_read(void *_cmd)
1da177e4 152{
72859081 153 struct drv_cmd *cmd = _cmd;
dde9f7ba
VP
154 u32 h;
155
156 switch (cmd->type) {
64be7eed 157 case SYSTEM_INTEL_MSR_CAPABLE:
dde9f7ba
VP
158 rdmsr(cmd->addr.msr.reg, cmd->val, h);
159 break;
64be7eed 160 case SYSTEM_IO_CAPABLE:
4e581ff1
VP
161 acpi_os_read_port((acpi_io_address)cmd->addr.io.port,
162 &cmd->val,
163 (u32)cmd->addr.io.bit_width);
dde9f7ba 164 break;
64be7eed 165 default:
dde9f7ba
VP
166 break;
167 }
fe27cb35 168}
1da177e4 169
01599fca
AM
170/* Called via smp_call_function_many(), on the target CPUs */
171static void do_drv_write(void *_cmd)
fe27cb35 172{
72859081 173 struct drv_cmd *cmd = _cmd;
13424f65 174 u32 lo, hi;
dde9f7ba
VP
175
176 switch (cmd->type) {
64be7eed 177 case SYSTEM_INTEL_MSR_CAPABLE:
13424f65
VP
178 rdmsr(cmd->addr.msr.reg, lo, hi);
179 lo = (lo & ~INTEL_MSR_RANGE) | (cmd->val & INTEL_MSR_RANGE);
180 wrmsr(cmd->addr.msr.reg, lo, hi);
dde9f7ba 181 break;
64be7eed 182 case SYSTEM_IO_CAPABLE:
4e581ff1
VP
183 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
184 cmd->val,
185 (u32)cmd->addr.io.bit_width);
dde9f7ba 186 break;
64be7eed 187 default:
dde9f7ba
VP
188 break;
189 }
fe27cb35 190}
1da177e4 191
95dd7227 192static void drv_read(struct drv_cmd *cmd)
fe27cb35 193{
4a28395d 194 int err;
fe27cb35
VP
195 cmd->val = 0;
196
4a28395d
AM
197 err = smp_call_function_any(cmd->mask, do_drv_read, cmd, 1);
198 WARN_ON_ONCE(err); /* smp_call_function_any() was buggy? */
fe27cb35
VP
199}
200
201static void drv_write(struct drv_cmd *cmd)
202{
ea34f43a
LT
203 int this_cpu;
204
205 this_cpu = get_cpu();
206 if (cpumask_test_cpu(this_cpu, cmd->mask))
207 do_drv_write(cmd);
01599fca 208 smp_call_function_many(cmd->mask, do_drv_write, cmd, 1);
ea34f43a 209 put_cpu();
fe27cb35 210}
1da177e4 211
4d8bb537 212static u32 get_cur_val(const struct cpumask *mask)
fe27cb35 213{
64be7eed
VP
214 struct acpi_processor_performance *perf;
215 struct drv_cmd cmd;
1da177e4 216
4d8bb537 217 if (unlikely(cpumask_empty(mask)))
fe27cb35 218 return 0;
1da177e4 219
f1625066 220 switch (per_cpu(acfreq_data, cpumask_first(mask))->cpu_feature) {
dde9f7ba
VP
221 case SYSTEM_INTEL_MSR_CAPABLE:
222 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
223 cmd.addr.msr.reg = MSR_IA32_PERF_STATUS;
224 break;
225 case SYSTEM_IO_CAPABLE:
226 cmd.type = SYSTEM_IO_CAPABLE;
f1625066 227 perf = per_cpu(acfreq_data, cpumask_first(mask))->acpi_data;
dde9f7ba
VP
228 cmd.addr.io.port = perf->control_register.address;
229 cmd.addr.io.bit_width = perf->control_register.bit_width;
230 break;
231 default:
232 return 0;
233 }
234
bfa318ad 235 cmd.mask = mask;
fe27cb35 236 drv_read(&cmd);
1da177e4 237
fe27cb35
VP
238 dprintk("get_cur_val = %u\n", cmd.val);
239
240 return cmd.val;
241}
1da177e4 242
01599fca
AM
243/* Called via smp_call_function_single(), on the target CPU */
244static void read_measured_perf_ctrs(void *_cur)
e39ad415 245{
5cbc19a9 246 struct aperfmperf *am = _cur;
e39ad415 247
5cbc19a9 248 get_aperfmperf(am);
e39ad415
MT
249}
250
dfde5d62
VP
251/*
252 * Return the measured active (C0) frequency on this CPU since last call
253 * to this function.
254 * Input: cpu number
255 * Return: Average CPU frequency in terms of max frequency (zero on error)
256 *
257 * We use IA32_MPERF and IA32_APERF MSRs to get the measured performance
258 * over a period of time, while CPU is in C0 state.
259 * IA32_MPERF counts at the rate of max advertised frequency
260 * IA32_APERF counts at the rate of actual CPU frequency
261 * Only IA32_APERF/IA32_MPERF ratio is architecturally defined and
262 * no meaning should be associated with absolute values of these MSRs.
263 */
bf0b90e3 264static unsigned int get_measured_perf(struct cpufreq_policy *policy,
265 unsigned int cpu)
dfde5d62 266{
5cbc19a9
PZ
267 struct aperfmperf perf;
268 unsigned long ratio;
dfde5d62
VP
269 unsigned int retval;
270
5cbc19a9 271 if (smp_call_function_single(cpu, read_measured_perf_ctrs, &perf, 1))
dfde5d62 272 return 0;
dfde5d62 273
f1625066
TH
274 ratio = calc_aperfmperf_ratio(&per_cpu(acfreq_old_perf, cpu), &perf);
275 per_cpu(acfreq_old_perf, cpu) = perf;
dfde5d62 276
5cbc19a9 277 retval = (policy->cpuinfo.max_freq * ratio) >> APERFMPERF_SHIFT;
dfde5d62 278
dfde5d62
VP
279 return retval;
280}
281
fe27cb35
VP
282static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
283{
f1625066 284 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, cpu);
64be7eed 285 unsigned int freq;
e56a727b 286 unsigned int cached_freq;
fe27cb35
VP
287
288 dprintk("get_cur_freq_on_cpu (%d)\n", cpu);
289
290 if (unlikely(data == NULL ||
64be7eed 291 data->acpi_data == NULL || data->freq_table == NULL)) {
fe27cb35 292 return 0;
1da177e4
LT
293 }
294
e56a727b 295 cached_freq = data->freq_table[data->acpi_data->state].frequency;
e39ad415 296 freq = extract_freq(get_cur_val(cpumask_of(cpu)), data);
e56a727b
VP
297 if (freq != cached_freq) {
298 /*
299 * The dreaded BIOS frequency change behind our back.
300 * Force set the frequency on next target call.
301 */
302 data->resume = 1;
303 }
304
fe27cb35 305 dprintk("cur freq = %u\n", freq);
1da177e4 306
fe27cb35 307 return freq;
1da177e4
LT
308}
309
72859081 310static unsigned int check_freqs(const struct cpumask *mask, unsigned int freq,
64be7eed 311 struct acpi_cpufreq_data *data)
fe27cb35 312{
64be7eed
VP
313 unsigned int cur_freq;
314 unsigned int i;
1da177e4 315
3a58df35 316 for (i = 0; i < 100; i++) {
fe27cb35
VP
317 cur_freq = extract_freq(get_cur_val(mask), data);
318 if (cur_freq == freq)
319 return 1;
320 udelay(10);
321 }
322 return 0;
323}
324
325static int acpi_cpufreq_target(struct cpufreq_policy *policy,
64be7eed 326 unsigned int target_freq, unsigned int relation)
1da177e4 327{
f1625066 328 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
64be7eed
VP
329 struct acpi_processor_performance *perf;
330 struct cpufreq_freqs freqs;
64be7eed 331 struct drv_cmd cmd;
8edc59d9
VP
332 unsigned int next_state = 0; /* Index into freq_table */
333 unsigned int next_perf_state = 0; /* Index into perf table */
64be7eed
VP
334 unsigned int i;
335 int result = 0;
fe27cb35
VP
336
337 dprintk("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu);
338
339 if (unlikely(data == NULL ||
95dd7227 340 data->acpi_data == NULL || data->freq_table == NULL)) {
fe27cb35
VP
341 return -ENODEV;
342 }
1da177e4 343
fe27cb35 344 perf = data->acpi_data;
1da177e4 345 result = cpufreq_frequency_table_target(policy,
64be7eed
VP
346 data->freq_table,
347 target_freq,
348 relation, &next_state);
4d8bb537
MT
349 if (unlikely(result)) {
350 result = -ENODEV;
351 goto out;
352 }
1da177e4 353
fe27cb35 354 next_perf_state = data->freq_table[next_state].index;
7650b281 355 if (perf->state == next_perf_state) {
fe27cb35 356 if (unlikely(data->resume)) {
64be7eed
VP
357 dprintk("Called after resume, resetting to P%d\n",
358 next_perf_state);
fe27cb35
VP
359 data->resume = 0;
360 } else {
64be7eed
VP
361 dprintk("Already at target state (P%d)\n",
362 next_perf_state);
4d8bb537 363 goto out;
fe27cb35 364 }
09b4d1ee
VP
365 }
366
61613521 367 trace_power_frequency(POWER_PSTATE, data->freq_table[next_state].frequency);
f3f47a67 368
64be7eed
VP
369 switch (data->cpu_feature) {
370 case SYSTEM_INTEL_MSR_CAPABLE:
371 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
372 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
13424f65 373 cmd.val = (u32) perf->states[next_perf_state].control;
64be7eed
VP
374 break;
375 case SYSTEM_IO_CAPABLE:
376 cmd.type = SYSTEM_IO_CAPABLE;
377 cmd.addr.io.port = perf->control_register.address;
378 cmd.addr.io.bit_width = perf->control_register.bit_width;
379 cmd.val = (u32) perf->states[next_perf_state].control;
380 break;
381 default:
4d8bb537
MT
382 result = -ENODEV;
383 goto out;
64be7eed 384 }
09b4d1ee 385
4d8bb537 386 /* cpufreq holds the hotplug lock, so we are safe from here on */
fe27cb35 387 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
bfa318ad 388 cmd.mask = policy->cpus;
fe27cb35 389 else
bfa318ad 390 cmd.mask = cpumask_of(policy->cpu);
09b4d1ee 391
8edc59d9
VP
392 freqs.old = perf->states[perf->state].core_frequency * 1000;
393 freqs.new = data->freq_table[next_state].frequency;
4d8bb537 394 for_each_cpu(i, cmd.mask) {
fe27cb35
VP
395 freqs.cpu = i;
396 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
09b4d1ee 397 }
1da177e4 398
fe27cb35 399 drv_write(&cmd);
09b4d1ee 400
fe27cb35 401 if (acpi_pstate_strict) {
4d8bb537 402 if (!check_freqs(cmd.mask, freqs.new, data)) {
fe27cb35 403 dprintk("acpi_cpufreq_target failed (%d)\n",
64be7eed 404 policy->cpu);
4d8bb537
MT
405 result = -EAGAIN;
406 goto out;
09b4d1ee
VP
407 }
408 }
409
4d8bb537 410 for_each_cpu(i, cmd.mask) {
fe27cb35
VP
411 freqs.cpu = i;
412 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
413 }
414 perf->state = next_perf_state;
415
4d8bb537 416out:
fe27cb35 417 return result;
1da177e4
LT
418}
419
64be7eed 420static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
1da177e4 421{
f1625066 422 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
1da177e4
LT
423
424 dprintk("acpi_cpufreq_verify\n");
425
fe27cb35 426 return cpufreq_frequency_table_verify(policy, data->freq_table);
1da177e4
LT
427}
428
1da177e4 429static unsigned long
64be7eed 430acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
1da177e4 431{
64be7eed 432 struct acpi_processor_performance *perf = data->acpi_data;
09b4d1ee 433
1da177e4
LT
434 if (cpu_khz) {
435 /* search the closest match to cpu_khz */
436 unsigned int i;
437 unsigned long freq;
09b4d1ee 438 unsigned long freqn = perf->states[0].core_frequency * 1000;
1da177e4 439
3a58df35 440 for (i = 0; i < (perf->state_count-1); i++) {
1da177e4 441 freq = freqn;
95dd7227 442 freqn = perf->states[i+1].core_frequency * 1000;
1da177e4 443 if ((2 * cpu_khz) > (freqn + freq)) {
09b4d1ee 444 perf->state = i;
64be7eed 445 return freq;
1da177e4
LT
446 }
447 }
95dd7227 448 perf->state = perf->state_count-1;
64be7eed 449 return freqn;
09b4d1ee 450 } else {
1da177e4 451 /* assume CPU is at P0... */
09b4d1ee
VP
452 perf->state = 0;
453 return perf->states[0].core_frequency * 1000;
454 }
1da177e4
LT
455}
456
2fdf66b4
RR
457static void free_acpi_perf_data(void)
458{
459 unsigned int i;
460
461 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
462 for_each_possible_cpu(i)
463 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
464 ->shared_cpu_map);
465 free_percpu(acpi_perf_data);
466}
467
09b4d1ee
VP
468/*
469 * acpi_cpufreq_early_init - initialize ACPI P-States library
470 *
471 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
472 * in order to determine correct frequency and voltage pairings. We can
473 * do _PDC and _PSD and find out the processor dependency for the
474 * actual init that will happen later...
475 */
50109292 476static int __init acpi_cpufreq_early_init(void)
09b4d1ee 477{
2fdf66b4 478 unsigned int i;
09b4d1ee
VP
479 dprintk("acpi_cpufreq_early_init\n");
480
50109292
FY
481 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
482 if (!acpi_perf_data) {
483 dprintk("Memory allocation error for acpi_perf_data.\n");
484 return -ENOMEM;
09b4d1ee 485 }
2fdf66b4 486 for_each_possible_cpu(i) {
eaa95840 487 if (!zalloc_cpumask_var_node(
80855f73
MT
488 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
489 GFP_KERNEL, cpu_to_node(i))) {
2fdf66b4
RR
490
491 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
492 free_acpi_perf_data();
493 return -ENOMEM;
494 }
495 }
09b4d1ee
VP
496
497 /* Do initialization in ACPI core */
fe27cb35
VP
498 acpi_processor_preregister_performance(acpi_perf_data);
499 return 0;
09b4d1ee
VP
500}
501
95625b8f 502#ifdef CONFIG_SMP
8adcc0c6
VP
503/*
504 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
505 * or do it in BIOS firmware and won't inform about it to OS. If not
506 * detected, this has a side effect of making CPU run at a different speed
507 * than OS intended it to run at. Detect it and handle it cleanly.
508 */
509static int bios_with_sw_any_bug;
510
1855256c 511static int sw_any_bug_found(const struct dmi_system_id *d)
8adcc0c6
VP
512{
513 bios_with_sw_any_bug = 1;
514 return 0;
515}
516
1855256c 517static const struct dmi_system_id sw_any_bug_dmi_table[] = {
8adcc0c6
VP
518 {
519 .callback = sw_any_bug_found,
520 .ident = "Supermicro Server X6DLP",
521 .matches = {
522 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
523 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
524 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
525 },
526 },
527 { }
528};
1a8e42fa
PB
529
530static int acpi_cpufreq_blacklist(struct cpuinfo_x86 *c)
531{
293afe44
JV
532 /* Intel Xeon Processor 7100 Series Specification Update
533 * http://www.intel.com/Assets/PDF/specupdate/314554.pdf
1a8e42fa
PB
534 * AL30: A Machine Check Exception (MCE) Occurring during an
535 * Enhanced Intel SpeedStep Technology Ratio Change May Cause
293afe44 536 * Both Processor Cores to Lock Up. */
1a8e42fa
PB
537 if (c->x86_vendor == X86_VENDOR_INTEL) {
538 if ((c->x86 == 15) &&
539 (c->x86_model == 6) &&
293afe44
JV
540 (c->x86_mask == 8)) {
541 printk(KERN_INFO "acpi-cpufreq: Intel(R) "
542 "Xeon(R) 7100 Errata AL30, processors may "
543 "lock up on frequency changes: disabling "
544 "acpi-cpufreq.\n");
1a8e42fa 545 return -ENODEV;
293afe44 546 }
1a8e42fa
PB
547 }
548 return 0;
549}
95625b8f 550#endif
8adcc0c6 551
64be7eed 552static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
1da177e4 553{
64be7eed
VP
554 unsigned int i;
555 unsigned int valid_states = 0;
556 unsigned int cpu = policy->cpu;
557 struct acpi_cpufreq_data *data;
64be7eed 558 unsigned int result = 0;
92cb7612 559 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
64be7eed 560 struct acpi_processor_performance *perf;
293afe44
JV
561#ifdef CONFIG_SMP
562 static int blacklisted;
563#endif
1da177e4 564
1da177e4 565 dprintk("acpi_cpufreq_cpu_init\n");
1da177e4 566
1a8e42fa 567#ifdef CONFIG_SMP
293afe44
JV
568 if (blacklisted)
569 return blacklisted;
570 blacklisted = acpi_cpufreq_blacklist(c);
571 if (blacklisted)
572 return blacklisted;
1a8e42fa
PB
573#endif
574
fe27cb35 575 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
1da177e4 576 if (!data)
64be7eed 577 return -ENOMEM;
1da177e4 578
b36128c8 579 data->acpi_data = per_cpu_ptr(acpi_perf_data, cpu);
f1625066 580 per_cpu(acfreq_data, cpu) = data;
1da177e4 581
95dd7227 582 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
fe27cb35 583 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
1da177e4 584
fe27cb35 585 result = acpi_processor_register_performance(data->acpi_data, cpu);
1da177e4
LT
586 if (result)
587 goto err_free;
588
09b4d1ee 589 perf = data->acpi_data;
09b4d1ee 590 policy->shared_type = perf->shared_type;
95dd7227 591
46f18e3a 592 /*
95dd7227 593 * Will let policy->cpus know about dependency only when software
46f18e3a
VP
594 * coordination is required.
595 */
596 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
8adcc0c6 597 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
835481d9 598 cpumask_copy(policy->cpus, perf->shared_cpu_map);
8adcc0c6 599 }
835481d9 600 cpumask_copy(policy->related_cpus, perf->shared_cpu_map);
8adcc0c6
VP
601
602#ifdef CONFIG_SMP
603 dmi_check_system(sw_any_bug_dmi_table);
835481d9 604 if (bios_with_sw_any_bug && cpumask_weight(policy->cpus) == 1) {
8adcc0c6 605 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
835481d9 606 cpumask_copy(policy->cpus, cpu_core_mask(cpu));
8adcc0c6
VP
607 }
608#endif
09b4d1ee 609
1da177e4 610 /* capability check */
09b4d1ee 611 if (perf->state_count <= 1) {
1da177e4
LT
612 dprintk("No P-States\n");
613 result = -ENODEV;
614 goto err_unreg;
615 }
09b4d1ee 616
fe27cb35
VP
617 if (perf->control_register.space_id != perf->status_register.space_id) {
618 result = -ENODEV;
619 goto err_unreg;
620 }
621
622 switch (perf->control_register.space_id) {
64be7eed 623 case ACPI_ADR_SPACE_SYSTEM_IO:
fe27cb35 624 dprintk("SYSTEM IO addr space\n");
dde9f7ba
VP
625 data->cpu_feature = SYSTEM_IO_CAPABLE;
626 break;
64be7eed 627 case ACPI_ADR_SPACE_FIXED_HARDWARE:
dde9f7ba
VP
628 dprintk("HARDWARE addr space\n");
629 if (!check_est_cpu(cpu)) {
630 result = -ENODEV;
631 goto err_unreg;
632 }
633 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
fe27cb35 634 break;
64be7eed 635 default:
fe27cb35 636 dprintk("Unknown addr space %d\n",
64be7eed 637 (u32) (perf->control_register.space_id));
1da177e4
LT
638 result = -ENODEV;
639 goto err_unreg;
640 }
641
95dd7227
DJ
642 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
643 (perf->state_count+1), GFP_KERNEL);
1da177e4
LT
644 if (!data->freq_table) {
645 result = -ENOMEM;
646 goto err_unreg;
647 }
648
649 /* detect transition latency */
650 policy->cpuinfo.transition_latency = 0;
3a58df35 651 for (i = 0; i < perf->state_count; i++) {
64be7eed
VP
652 if ((perf->states[i].transition_latency * 1000) >
653 policy->cpuinfo.transition_latency)
654 policy->cpuinfo.transition_latency =
655 perf->states[i].transition_latency * 1000;
1da177e4 656 }
1da177e4 657
a59d1637
PV
658 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
659 if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE &&
660 policy->cpuinfo.transition_latency > 20 * 1000) {
a59d1637 661 policy->cpuinfo.transition_latency = 20 * 1000;
61c8c67e
JP
662 printk_once(KERN_INFO
663 "P-state transition latency capped at 20 uS\n");
a59d1637
PV
664 }
665
1da177e4 666 /* table init */
3a58df35
DJ
667 for (i = 0; i < perf->state_count; i++) {
668 if (i > 0 && perf->states[i].core_frequency >=
3cdf552b 669 data->freq_table[valid_states-1].frequency / 1000)
fe27cb35
VP
670 continue;
671
672 data->freq_table[valid_states].index = i;
673 data->freq_table[valid_states].frequency =
64be7eed 674 perf->states[i].core_frequency * 1000;
fe27cb35 675 valid_states++;
1da177e4 676 }
3d4a7ef3 677 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
8edc59d9 678 perf->state = 0;
1da177e4
LT
679
680 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
95dd7227 681 if (result)
1da177e4 682 goto err_freqfree;
1da177e4 683
d876dfbb
TR
684 if (perf->states[0].core_frequency * 1000 != policy->cpuinfo.max_freq)
685 printk(KERN_WARNING FW_WARN "P-state 0 is not max freq\n");
686
a507ac4b 687 switch (perf->control_register.space_id) {
64be7eed 688 case ACPI_ADR_SPACE_SYSTEM_IO:
dde9f7ba
VP
689 /* Current speed is unknown and not detectable by IO port */
690 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
691 break;
64be7eed 692 case ACPI_ADR_SPACE_FIXED_HARDWARE:
7650b281 693 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
a507ac4b 694 policy->cur = get_cur_freq_on_cpu(cpu);
dde9f7ba 695 break;
64be7eed 696 default:
dde9f7ba
VP
697 break;
698 }
699
1da177e4
LT
700 /* notify BIOS that we exist */
701 acpi_processor_notify_smm(THIS_MODULE);
702
dfde5d62 703 /* Check for APERF/MPERF support in hardware */
a8303aaf
PZ
704 if (cpu_has(c, X86_FEATURE_APERFMPERF))
705 acpi_cpufreq_driver.getavg = get_measured_perf;
dfde5d62 706
fe27cb35 707 dprintk("CPU%u - ACPI performance management activated.\n", cpu);
09b4d1ee 708 for (i = 0; i < perf->state_count; i++)
1da177e4 709 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
64be7eed 710 (i == perf->state ? '*' : ' '), i,
09b4d1ee
VP
711 (u32) perf->states[i].core_frequency,
712 (u32) perf->states[i].power,
713 (u32) perf->states[i].transition_latency);
1da177e4
LT
714
715 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
64be7eed 716
4b31e774
DB
717 /*
718 * the first call to ->target() should result in us actually
719 * writing something to the appropriate registers.
720 */
721 data->resume = 1;
64be7eed 722
fe27cb35 723 return result;
1da177e4 724
95dd7227 725err_freqfree:
1da177e4 726 kfree(data->freq_table);
95dd7227 727err_unreg:
09b4d1ee 728 acpi_processor_unregister_performance(perf, cpu);
95dd7227 729err_free:
1da177e4 730 kfree(data);
f1625066 731 per_cpu(acfreq_data, cpu) = NULL;
1da177e4 732
64be7eed 733 return result;
1da177e4
LT
734}
735
64be7eed 736static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
1da177e4 737{
f1625066 738 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
1da177e4 739
1da177e4
LT
740 dprintk("acpi_cpufreq_cpu_exit\n");
741
742 if (data) {
743 cpufreq_frequency_table_put_attr(policy->cpu);
f1625066 744 per_cpu(acfreq_data, policy->cpu) = NULL;
64be7eed
VP
745 acpi_processor_unregister_performance(data->acpi_data,
746 policy->cpu);
1da177e4
LT
747 kfree(data);
748 }
749
64be7eed 750 return 0;
1da177e4
LT
751}
752
64be7eed 753static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
1da177e4 754{
f1625066 755 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
1da177e4 756
1da177e4
LT
757 dprintk("acpi_cpufreq_resume\n");
758
759 data->resume = 1;
760
64be7eed 761 return 0;
1da177e4
LT
762}
763
64be7eed 764static struct freq_attr *acpi_cpufreq_attr[] = {
1da177e4
LT
765 &cpufreq_freq_attr_scaling_available_freqs,
766 NULL,
767};
768
769static struct cpufreq_driver acpi_cpufreq_driver = {
e2f74f35
TR
770 .verify = acpi_cpufreq_verify,
771 .target = acpi_cpufreq_target,
772 .bios_limit = acpi_processor_get_bios_limit,
773 .init = acpi_cpufreq_cpu_init,
774 .exit = acpi_cpufreq_cpu_exit,
775 .resume = acpi_cpufreq_resume,
776 .name = "acpi-cpufreq",
777 .owner = THIS_MODULE,
778 .attr = acpi_cpufreq_attr,
1da177e4
LT
779};
780
64be7eed 781static int __init acpi_cpufreq_init(void)
1da177e4 782{
50109292
FY
783 int ret;
784
ee297533
YL
785 if (acpi_disabled)
786 return 0;
787
1da177e4
LT
788 dprintk("acpi_cpufreq_init\n");
789
50109292
FY
790 ret = acpi_cpufreq_early_init();
791 if (ret)
792 return ret;
09b4d1ee 793
847aef6f
AM
794 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
795 if (ret)
2fdf66b4 796 free_acpi_perf_data();
847aef6f
AM
797
798 return ret;
1da177e4
LT
799}
800
64be7eed 801static void __exit acpi_cpufreq_exit(void)
1da177e4
LT
802{
803 dprintk("acpi_cpufreq_exit\n");
804
805 cpufreq_unregister_driver(&acpi_cpufreq_driver);
806
50109292 807 free_percpu(acpi_perf_data);
1da177e4
LT
808}
809
d395bf12 810module_param(acpi_pstate_strict, uint, 0644);
64be7eed 811MODULE_PARM_DESC(acpi_pstate_strict,
95dd7227
DJ
812 "value 0 or non-zero. non-zero -> strict ACPI checks are "
813 "performed during frequency changes.");
1da177e4
LT
814
815late_initcall(acpi_cpufreq_init);
816module_exit(acpi_cpufreq_exit);
817
818MODULE_ALIAS("acpi");