blob: 459168083b770ee14cd5b314c4a735187edd2c01 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Dave Jones3a58df32009-01-17 22:36:14 -05002 * acpi-cpufreq.c - ACPI Processor P-States Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -07007 * Copyright (C) 2006 Denis Sadykov <denis.m.sadykov@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/init.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070031#include <linux/smp.h>
32#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/cpufreq.h>
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040034#include <linux/compiler.h>
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -070035#include <linux/dmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Arjan van de Ven61613522009-09-17 16:11:28 +020037#include <trace/events/power.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <linux/acpi.h>
Dave Jones3a58df32009-01-17 22:36:14 -050040#include <linux/io.h>
41#include <linux/delay.h>
42#include <linux/uaccess.h>
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/processor.h>
45
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070046#include <asm/msr.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070047#include <asm/processor.h>
48#include <asm/cpufeature.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070049
Dave Jones3a58df32009-01-17 22:36:14 -050050#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, \
51 "acpi-cpufreq", msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
54MODULE_DESCRIPTION("ACPI Processor P-States Driver");
55MODULE_LICENSE("GPL");
56
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070057enum {
58 UNDEFINED_CAPABLE = 0,
59 SYSTEM_INTEL_MSR_CAPABLE,
60 SYSTEM_IO_CAPABLE,
61};
62
63#define INTEL_MSR_RANGE (0xffff)
64
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070065struct acpi_cpufreq_data {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070066 struct acpi_processor_performance *acpi_data;
67 struct cpufreq_frequency_table *freq_table;
68 unsigned int resume;
69 unsigned int cpu_feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
Tejun Heof1625062009-10-29 22:34:13 +090072static DEFINE_PER_CPU(struct acpi_cpufreq_data *, acfreq_data);
travis@sgi.comea348f32008-01-30 13:33:12 +010073
Tejun Heof1625062009-10-29 22:34:13 +090074static DEFINE_PER_CPU(struct aperfmperf, acfreq_old_perf);
Pallipadi, Venkatesh093f13e2009-04-15 10:37:33 -070075
Fenghua Yu50109292007-08-07 18:40:30 -040076/* acpi_perf_data is a pointer to percpu data. */
77static struct acpi_processor_performance *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79static struct cpufreq_driver acpi_cpufreq_driver;
80
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040081static unsigned int acpi_pstate_strict;
82
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070083static int check_est_cpu(unsigned int cpuid)
84{
Mike Travis92cb7612007-10-19 20:35:04 +020085 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070086
Harald Welte0de51082009-06-08 18:27:54 +080087 return cpu_has(cpu, X86_FEATURE_EST);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070088}
89
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070090static unsigned extract_io(u32 value, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070091{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070092 struct acpi_processor_performance *perf;
93 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070094
95 perf = data->acpi_data;
96
Dave Jones3a58df32009-01-17 22:36:14 -050097 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070098 if (value == perf->states[i].status)
99 return data->freq_table[i].frequency;
100 }
101 return 0;
102}
103
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700104static unsigned extract_msr(u32 msr, struct acpi_cpufreq_data *data)
105{
106 int i;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700107 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700108
109 msr &= INTEL_MSR_RANGE;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700110 perf = data->acpi_data;
111
Dave Jones3a58df32009-01-17 22:36:14 -0500112 for (i = 0; data->freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700113 if (msr == perf->states[data->freq_table[i].index].status)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700114 return data->freq_table[i].frequency;
115 }
116 return data->freq_table[0].frequency;
117}
118
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700119static unsigned extract_freq(u32 val, struct acpi_cpufreq_data *data)
120{
121 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700122 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700123 return extract_msr(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700124 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700125 return extract_io(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700126 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700127 return 0;
128 }
129}
130
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700131struct msr_addr {
132 u32 reg;
133};
134
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700135struct io_addr {
136 u16 port;
137 u8 bit_width;
138};
139
140struct drv_cmd {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700141 unsigned int type;
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100142 const struct cpumask *mask;
Dave Jones3a58df32009-01-17 22:36:14 -0500143 union {
144 struct msr_addr msr;
145 struct io_addr io;
146 } addr;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700147 u32 val;
148};
149
Andrew Morton01599fc2009-04-13 10:27:49 -0700150/* Called via smp_call_function_single(), on the target CPU */
151static void do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700152{
Mike Travis72859082009-01-16 15:31:15 -0800153 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700154 u32 h;
155
156 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700157 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700158 rdmsr(cmd->addr.msr.reg, cmd->val, h);
159 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700160 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800161 acpi_os_read_port((acpi_io_address)cmd->addr.io.port,
162 &cmd->val,
163 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700164 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700165 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700166 break;
167 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700168}
169
Andrew Morton01599fc2009-04-13 10:27:49 -0700170/* Called via smp_call_function_many(), on the target CPUs */
171static void do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700172{
Mike Travis72859082009-01-16 15:31:15 -0800173 struct drv_cmd *cmd = _cmd;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700174 u32 lo, hi;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700175
176 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700177 case SYSTEM_INTEL_MSR_CAPABLE:
Venki Pallipadi13424f62007-05-23 15:42:13 -0700178 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);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700181 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700182 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800183 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
184 cmd->val,
185 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700186 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700187 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700188 break;
189 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700190}
191
Dave Jones95dd7222006-10-18 00:41:48 -0400192static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700193{
Andrew Morton4a283952009-12-21 16:19:58 -0800194 int err;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700195 cmd->val = 0;
196
Andrew Morton4a283952009-12-21 16:19:58 -0800197 err = smp_call_function_any(cmd->mask, do_drv_read, cmd, 1);
198 WARN_ON_ONCE(err); /* smp_call_function_any() was buggy? */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700199}
200
201static void drv_write(struct drv_cmd *cmd)
202{
Linus Torvaldsea34f432009-04-15 08:05:13 -0700203 int this_cpu;
204
205 this_cpu = get_cpu();
206 if (cpumask_test_cpu(this_cpu, cmd->mask))
207 do_drv_write(cmd);
Andrew Morton01599fc2009-04-13 10:27:49 -0700208 smp_call_function_many(cmd->mask, do_drv_write, cmd, 1);
Linus Torvaldsea34f432009-04-15 08:05:13 -0700209 put_cpu();
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700210}
211
Mike Travis4d8bb532009-01-04 05:18:08 -0800212static u32 get_cur_val(const struct cpumask *mask)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700213{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700214 struct acpi_processor_performance *perf;
215 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700216
Mike Travis4d8bb532009-01-04 05:18:08 -0800217 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700218 return 0;
219
Tejun Heof1625062009-10-29 22:34:13 +0900220 switch (per_cpu(acfreq_data, cpumask_first(mask))->cpu_feature) {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700221 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;
Tejun Heof1625062009-10-29 22:34:13 +0900227 perf = per_cpu(acfreq_data, cpumask_first(mask))->acpi_data;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700228 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
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100235 cmd.mask = mask;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700236 drv_read(&cmd);
237
238 dprintk("get_cur_val = %u\n", cmd.val);
239
240 return cmd.val;
241}
242
Andrew Morton01599fc2009-04-13 10:27:49 -0700243/* Called via smp_call_function_single(), on the target CPU */
244static void read_measured_perf_ctrs(void *_cur)
Mike Travise39ad412009-01-04 05:18:10 -0800245{
Peter Zijlstra5cbc19a2009-09-02 11:49:52 +0200246 struct aperfmperf *am = _cur;
Mike Travise39ad412009-01-04 05:18:10 -0800247
Peter Zijlstra5cbc19a2009-09-02 11:49:52 +0200248 get_aperfmperf(am);
Mike Travise39ad412009-01-04 05:18:10 -0800249}
250
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700251/*
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 */
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -0700264static unsigned int get_measured_perf(struct cpufreq_policy *policy,
265 unsigned int cpu)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700266{
Peter Zijlstra5cbc19a2009-09-02 11:49:52 +0200267 struct aperfmperf perf;
268 unsigned long ratio;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700269 unsigned int retval;
270
Peter Zijlstra5cbc19a2009-09-02 11:49:52 +0200271 if (smp_call_function_single(cpu, read_measured_perf_ctrs, &perf, 1))
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700272 return 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700273
Tejun Heof1625062009-10-29 22:34:13 +0900274 ratio = calc_aperfmperf_ratio(&per_cpu(acfreq_old_perf, cpu), &perf);
275 per_cpu(acfreq_old_perf, cpu) = perf;
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700276
Peter Zijlstra5cbc19a2009-09-02 11:49:52 +0200277 retval = (policy->cpuinfo.max_freq * ratio) >> APERFMPERF_SHIFT;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700278
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700279 return retval;
280}
281
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700282static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
283{
Tejun Heof1625062009-10-29 22:34:13 +0900284 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700285 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400286 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700287
288 dprintk("get_cur_freq_on_cpu (%d)\n", cpu);
289
290 if (unlikely(data == NULL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700291 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700292 return 0;
293 }
294
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400295 cached_freq = data->freq_table[data->acpi_data->state].frequency;
Mike Travise39ad412009-01-04 05:18:10 -0800296 freq = extract_freq(get_cur_val(cpumask_of(cpu)), data);
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400297 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
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700305 dprintk("cur freq = %u\n", freq);
306
307 return freq;
308}
309
Mike Travis72859082009-01-16 15:31:15 -0800310static unsigned int check_freqs(const struct cpumask *mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700311 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700312{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700313 unsigned int cur_freq;
314 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700315
Dave Jones3a58df32009-01-17 22:36:14 -0500316 for (i = 0; i < 100; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700317 cur_freq = extract_freq(get_cur_val(mask), data);
318 if (cur_freq == freq)
319 return 1;
320 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322 return 0;
323}
324
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700325static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700326 unsigned int target_freq, unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Tejun Heof1625062009-10-29 22:34:13 +0900328 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700329 struct acpi_processor_performance *perf;
330 struct cpufreq_freqs freqs;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700331 struct drv_cmd cmd;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800332 unsigned int next_state = 0; /* Index into freq_table */
333 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700334 unsigned int i;
335 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700337 dprintk("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700339 if (unlikely(data == NULL ||
Dave Jones95dd7222006-10-18 00:41:48 -0400340 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700341 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500344 perf = data->acpi_data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700345 result = cpufreq_frequency_table_target(policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700346 data->freq_table,
347 target_freq,
348 relation, &next_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800349 if (unlikely(result)) {
350 result = -ENODEV;
351 goto out;
352 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500353
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700354 next_perf_state = data->freq_table[next_state].index;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700355 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700356 if (unlikely(data->resume)) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700357 dprintk("Called after resume, resetting to P%d\n",
358 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700359 data->resume = 0;
360 } else {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700361 dprintk("Already at target state (P%d)\n",
362 next_perf_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800363 goto out;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700364 }
365 }
366
Arjan van de Ven61613522009-09-17 16:11:28 +0200367 trace_power_frequency(POWER_PSTATE, data->freq_table[next_state].frequency);
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800368
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700369 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;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700373 cmd.val = (u32) perf->states[next_perf_state].control;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700374 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:
Mike Travis4d8bb532009-01-04 05:18:08 -0800382 result = -ENODEV;
383 goto out;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700384 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700385
Mike Travis4d8bb532009-01-04 05:18:08 -0800386 /* cpufreq holds the hotplug lock, so we are safe from here on */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700387 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100388 cmd.mask = policy->cpus;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700389 else
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100390 cmd.mask = cpumask_of(policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700391
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800392 freqs.old = perf->states[perf->state].core_frequency * 1000;
393 freqs.new = data->freq_table[next_state].frequency;
Mike Travis4d8bb532009-01-04 05:18:08 -0800394 for_each_cpu(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700395 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500396 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
397 }
398
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700399 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500400
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700401 if (acpi_pstate_strict) {
Mike Travis4d8bb532009-01-04 05:18:08 -0800402 if (!check_freqs(cmd.mask, freqs.new, data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700403 dprintk("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700404 policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800405 result = -EAGAIN;
406 goto out;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500407 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500408 }
409
Mike Travis4d8bb532009-01-04 05:18:08 -0800410 for_each_cpu(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700411 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500412 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
413 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700414 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500415
Mike Travis4d8bb532009-01-04 05:18:08 -0800416out:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700417 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700420static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Tejun Heof1625062009-10-29 22:34:13 +0900422 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 dprintk("acpi_cpufreq_verify\n");
425
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700426 return cpufreq_frequency_table_verify(policy, data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700430acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700432 struct acpi_processor_performance *perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (cpu_khz) {
435 /* search the closest match to cpu_khz */
436 unsigned int i;
437 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500438 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Dave Jones3a58df32009-01-17 22:36:14 -0500440 for (i = 0; i < (perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400442 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500444 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700445 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447 }
Dave Jones95dd7222006-10-18 00:41:48 -0400448 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700449 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500450 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500452 perf->state = 0;
453 return perf->states[0].core_frequency * 1000;
454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800457static 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
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500468/*
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 */
Fenghua Yu50109292007-08-07 18:40:30 -0400476static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500477{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800478 unsigned int i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500479 dprintk("acpi_cpufreq_early_init\n");
480
Fenghua Yu50109292007-08-07 18:40:30 -0400481 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;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500485 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800486 for_each_possible_cpu(i) {
Yinghai Lueaa95842009-06-06 14:51:36 -0700487 if (!zalloc_cpumask_var_node(
Mike Travis80855f72008-12-31 18:08:47 -0800488 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
489 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800490
491 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
492 free_acpi_perf_data();
493 return -ENOMEM;
494 }
495 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500496
497 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700498 acpi_processor_preregister_performance(acpi_perf_data);
499 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500500}
501
Dave Jones95625b82006-10-21 01:37:39 -0400502#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700503/*
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
Jeff Garzik18552562007-10-03 15:15:40 -0400511static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700512{
513 bios_with_sw_any_bug = 1;
514 return 0;
515}
516
Jeff Garzik18552562007-10-03 15:15:40 -0400517static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700518 {
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};
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400529
530static int acpi_cpufreq_blacklist(struct cpuinfo_x86 *c)
531{
John Villalovos293afe42009-09-25 13:30:08 -0400532 /* Intel Xeon Processor 7100 Series Specification Update
533 * http://www.intel.com/Assets/PDF/specupdate/314554.pdf
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400534 * AL30: A Machine Check Exception (MCE) Occurring during an
535 * Enhanced Intel SpeedStep Technology Ratio Change May Cause
John Villalovos293afe42009-09-25 13:30:08 -0400536 * Both Processor Cores to Lock Up. */
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400537 if (c->x86_vendor == X86_VENDOR_INTEL) {
538 if ((c->x86 == 15) &&
539 (c->x86_model == 6) &&
John Villalovos293afe42009-09-25 13:30:08 -0400540 (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");
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400545 return -ENODEV;
John Villalovos293afe42009-09-25 13:30:08 -0400546 }
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400547 }
548 return 0;
549}
Dave Jones95625b82006-10-21 01:37:39 -0400550#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700551
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700552static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700554 unsigned int i;
555 unsigned int valid_states = 0;
556 unsigned int cpu = policy->cpu;
557 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700558 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200559 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700560 struct acpi_processor_performance *perf;
John Villalovos293afe42009-09-25 13:30:08 -0400561#ifdef CONFIG_SMP
562 static int blacklisted;
563#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 dprintk("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400567#ifdef CONFIG_SMP
John Villalovos293afe42009-09-25 13:30:08 -0400568 if (blacklisted)
569 return blacklisted;
570 blacklisted = acpi_cpufreq_blacklist(c);
571 if (blacklisted)
572 return blacklisted;
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400573#endif
574
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700575 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700577 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Rusty Russellb36128c2009-02-20 16:29:08 +0900579 data->acpi_data = per_cpu_ptr(acpi_perf_data, cpu);
Tejun Heof1625062009-10-29 22:34:13 +0900580 per_cpu(acfreq_data, cpu) = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700581
Dave Jones95dd7222006-10-18 00:41:48 -0400582 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700583 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500585 result = acpi_processor_register_performance(data->acpi_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (result)
587 goto err_free;
588
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500589 perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500590 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400591
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400592 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400593 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400594 * coordination is required.
595 */
596 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700597 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800598 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700599 }
Rusty Russell835481d2009-01-04 05:18:06 -0800600 cpumask_copy(policy->related_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700601
602#ifdef CONFIG_SMP
603 dmi_check_system(sw_any_bug_dmi_table);
Rusty Russell835481d2009-01-04 05:18:06 -0800604 if (bios_with_sw_any_bug && cpumask_weight(policy->cpus) == 1) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700605 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Rusty Russell835481d2009-01-04 05:18:06 -0800606 cpumask_copy(policy->cpus, cpu_core_mask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700607 }
608#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500611 if (perf->state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 dprintk("No P-States\n");
613 result = -ENODEV;
614 goto err_unreg;
615 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500616
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700617 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 result = -ENODEV;
619 goto err_unreg;
620 }
621
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700622 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700623 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700624 dprintk("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700625 data->cpu_feature = SYSTEM_IO_CAPABLE;
626 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700627 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700628 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;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700634 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700635 default:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700636 dprintk("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700637 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700638 result = -ENODEV;
639 goto err_unreg;
640 }
641
Dave Jones95dd7222006-10-18 00:41:48 -0400642 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
643 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (!data->freq_table) {
645 result = -ENOMEM;
646 goto err_unreg;
647 }
648
649 /* detect transition latency */
650 policy->cpuinfo.transition_latency = 0;
Dave Jones3a58df32009-01-17 22:36:14 -0500651 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700652 if ((perf->states[i].transition_latency * 1000) >
653 policy->cpuinfo.transition_latency)
654 policy->cpuinfo.transition_latency =
655 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700658 /* 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) {
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700661 policy->cpuinfo.transition_latency = 20 * 1000;
Joe Perches61c8c672009-05-26 14:58:39 -0700662 printk_once(KERN_INFO
663 "P-state transition latency capped at 20 uS\n");
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700664 }
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* table init */
Dave Jones3a58df32009-01-17 22:36:14 -0500667 for (i = 0; i < perf->state_count; i++) {
668 if (i > 0 && perf->states[i].core_frequency >=
Zhang Rui3cdf5522007-06-13 21:24:02 -0400669 data->freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700670 continue;
671
672 data->freq_table[valid_states].index = i;
673 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700674 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700675 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
Venkatesh Pallipadi3d4a7ef2006-11-13 17:47:44 -0800677 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800678 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400681 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Thomas Renningerd876dfb2009-04-17 16:22:08 +0200684 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
Mattia Dongilia507ac42006-12-15 19:52:45 +0100687 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700688 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700689 /* Current speed is unknown and not detectable by IO port */
690 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
691 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700692 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700693 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Mattia Dongilia507ac42006-12-15 19:52:45 +0100694 policy->cur = get_cur_freq_on_cpu(cpu);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700695 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700696 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700697 break;
698 }
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /* notify BIOS that we exist */
701 acpi_processor_notify_smm(THIS_MODULE);
702
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700703 /* Check for APERF/MPERF support in hardware */
Peter Zijlstraa8303aa2009-09-02 10:56:56 +0200704 if (cpu_has(c, X86_FEATURE_APERFMPERF))
705 acpi_cpufreq_driver.getavg = get_measured_perf;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700706
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700707 dprintk("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500708 for (i = 0; i < perf->state_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700710 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500711 (u32) perf->states[i].core_frequency,
712 (u32) perf->states[i].power,
713 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700716
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400717 /*
718 * the first call to ->target() should result in us actually
719 * writing something to the appropriate registers.
720 */
721 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700722
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700723 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Dave Jones95dd7222006-10-18 00:41:48 -0400725err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400727err_unreg:
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500728 acpi_processor_unregister_performance(perf, cpu);
Dave Jones95dd7222006-10-18 00:41:48 -0400729err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 kfree(data);
Tejun Heof1625062009-10-29 22:34:13 +0900731 per_cpu(acfreq_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700733 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700736static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Tejun Heof1625062009-10-29 22:34:13 +0900738 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 dprintk("acpi_cpufreq_cpu_exit\n");
741
742 if (data) {
743 cpufreq_frequency_table_put_attr(policy->cpu);
Tejun Heof1625062009-10-29 22:34:13 +0900744 per_cpu(acfreq_data, policy->cpu) = NULL;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700745 acpi_processor_unregister_performance(data->acpi_data,
746 policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 kfree(data);
748 }
749
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700750 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700753static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Tejun Heof1625062009-10-29 22:34:13 +0900755 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 dprintk("acpi_cpufreq_resume\n");
758
759 data->resume = 1;
760
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700761 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700764static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 &cpufreq_freq_attr_scaling_available_freqs,
766 NULL,
767};
768
769static struct cpufreq_driver acpi_cpufreq_driver = {
Thomas Renningere2f74f32009-11-19 12:31:01 +0100770 .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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779};
780
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700781static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Fenghua Yu50109292007-08-07 18:40:30 -0400783 int ret;
784
Yinghai Luee297532008-09-24 19:04:31 -0700785 if (acpi_disabled)
786 return 0;
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 dprintk("acpi_cpufreq_init\n");
789
Fenghua Yu50109292007-08-07 18:40:30 -0400790 ret = acpi_cpufreq_early_init();
791 if (ret)
792 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500793
Akinobu Mita847aef62008-07-14 11:59:44 +0900794 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
795 if (ret)
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800796 free_acpi_perf_data();
Akinobu Mita847aef62008-07-14 11:59:44 +0900797
798 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700801static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
803 dprintk("acpi_cpufreq_exit\n");
804
805 cpufreq_unregister_driver(&acpi_cpufreq_driver);
806
Fenghua Yu50109292007-08-07 18:40:30 -0400807 free_percpu(acpi_perf_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400810module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700811MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -0400812 "value 0 or non-zero. non-zero -> strict ACPI checks are "
813 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815late_initcall(acpi_cpufreq_init);
816module_exit(acpi_cpufreq_exit);
817
818MODULE_ALIAS("acpi");