blob: 06fcd8f9323cccda93a40f0dfc87cce1c9ea68c7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -07002 * acpi-cpufreq.c - ACPI Processor P-States Driver ($Revision: 1.4 $)
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>
Arjan van de Venf3f47a62008-11-23 16:49:58 -080036#include <linux/ftrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <linux/acpi.h>
39#include <acpi/processor.h>
40
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070041#include <asm/io.h>
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070042#include <asm/msr.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070043#include <asm/processor.h>
44#include <asm/cpufeature.h>
45#include <asm/delay.h>
46#include <asm/uaccess.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "acpi-cpufreq", msg)
49
50MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
51MODULE_DESCRIPTION("ACPI Processor P-States Driver");
52MODULE_LICENSE("GPL");
53
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070054enum {
55 UNDEFINED_CAPABLE = 0,
56 SYSTEM_INTEL_MSR_CAPABLE,
57 SYSTEM_IO_CAPABLE,
58};
59
60#define INTEL_MSR_RANGE (0xffff)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -070061#define CPUID_6_ECX_APERFMPERF_CAPABILITY (0x1)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070062
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070063struct acpi_cpufreq_data {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070064 struct acpi_processor_performance *acpi_data;
65 struct cpufreq_frequency_table *freq_table;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -070066 unsigned int max_freq;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070067 unsigned int resume;
68 unsigned int cpu_feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
travis@sgi.comea348f32008-01-30 13:33:12 +010071static DEFINE_PER_CPU(struct acpi_cpufreq_data *, drv_data);
72
Fenghua Yu50109292007-08-07 18:40:30 -040073/* acpi_perf_data is a pointer to percpu data. */
74static struct acpi_processor_performance *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76static struct cpufreq_driver acpi_cpufreq_driver;
77
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040078static unsigned int acpi_pstate_strict;
79
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070080static int check_est_cpu(unsigned int cpuid)
81{
Mike Travis92cb7612007-10-19 20:35:04 +020082 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070083
84 if (cpu->x86_vendor != X86_VENDOR_INTEL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070085 !cpu_has(cpu, X86_FEATURE_EST))
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070086 return 0;
87
88 return 1;
89}
90
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070091static unsigned extract_io(u32 value, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070092{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070093 struct acpi_processor_performance *perf;
94 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070095
96 perf = data->acpi_data;
97
Dave Jones95dd7222006-10-18 00:41:48 -040098 for (i=0; i<perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070099 if (value == perf->states[i].status)
100 return data->freq_table[i].frequency;
101 }
102 return 0;
103}
104
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700105static unsigned extract_msr(u32 msr, struct acpi_cpufreq_data *data)
106{
107 int i;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700108 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700109
110 msr &= INTEL_MSR_RANGE;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700111 perf = data->acpi_data;
112
Dave Jones95dd7222006-10-18 00:41:48 -0400113 for (i=0; data->freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700114 if (msr == perf->states[data->freq_table[i].index].status)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700115 return data->freq_table[i].frequency;
116 }
117 return data->freq_table[0].frequency;
118}
119
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700120static unsigned extract_freq(u32 val, struct acpi_cpufreq_data *data)
121{
122 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700123 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700124 return extract_msr(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700125 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700126 return extract_io(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700127 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700128 return 0;
129 }
130}
131
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700132struct msr_addr {
133 u32 reg;
134};
135
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700136struct io_addr {
137 u16 port;
138 u8 bit_width;
139};
140
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700141typedef union {
142 struct msr_addr msr;
143 struct io_addr io;
144} drv_addr_union;
145
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700146struct drv_cmd {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700147 unsigned int type;
Mike Travis4d8bb532009-01-04 05:18:08 -0800148 cpumask_var_t mask;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700149 drv_addr_union addr;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700150 u32 val;
151};
152
Mike Travis7503bfb2009-01-04 05:18:09 -0800153static long do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700154{
Mike Travis7503bfb2009-01-04 05:18:09 -0800155 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700156 u32 h;
157
158 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700159 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700160 rdmsr(cmd->addr.msr.reg, cmd->val, h);
161 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700162 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800163 acpi_os_read_port((acpi_io_address)cmd->addr.io.port,
164 &cmd->val,
165 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700166 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700167 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700168 break;
169 }
Mike Travis7503bfb2009-01-04 05:18:09 -0800170 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700171}
172
Mike Travis7503bfb2009-01-04 05:18:09 -0800173static long do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700174{
Mike Travis7503bfb2009-01-04 05:18:09 -0800175 struct drv_cmd *cmd = _cmd;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700176 u32 lo, hi;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700177
178 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700179 case SYSTEM_INTEL_MSR_CAPABLE:
Venki Pallipadi13424f62007-05-23 15:42:13 -0700180 rdmsr(cmd->addr.msr.reg, lo, hi);
181 lo = (lo & ~INTEL_MSR_RANGE) | (cmd->val & INTEL_MSR_RANGE);
182 wrmsr(cmd->addr.msr.reg, lo, hi);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700183 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700184 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800185 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
186 cmd->val,
187 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700188 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700189 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700190 break;
191 }
Mike Travis7503bfb2009-01-04 05:18:09 -0800192 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700193}
194
Dave Jones95dd7222006-10-18 00:41:48 -0400195static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700196{
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700197 cmd->val = 0;
198
Mike Travis7503bfb2009-01-04 05:18:09 -0800199 work_on_cpu(cpumask_any(cmd->mask), do_drv_read, cmd);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700200}
201
202static void drv_write(struct drv_cmd *cmd)
203{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700204 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700205
Mike Travis4d8bb532009-01-04 05:18:08 -0800206 for_each_cpu(i, cmd->mask) {
Mike Travis7503bfb2009-01-04 05:18:09 -0800207 work_on_cpu(i, do_drv_write, cmd);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700208 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700209}
210
Mike Travis4d8bb532009-01-04 05:18:08 -0800211static u32 get_cur_val(const struct cpumask *mask)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700212{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700213 struct acpi_processor_performance *perf;
214 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700215
Mike Travis4d8bb532009-01-04 05:18:08 -0800216 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700217 return 0;
218
Mike Travis4d8bb532009-01-04 05:18:08 -0800219 switch (per_cpu(drv_data, cpumask_first(mask))->cpu_feature) {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700220 case SYSTEM_INTEL_MSR_CAPABLE:
221 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
222 cmd.addr.msr.reg = MSR_IA32_PERF_STATUS;
223 break;
224 case SYSTEM_IO_CAPABLE:
225 cmd.type = SYSTEM_IO_CAPABLE;
Mike Travis4d8bb532009-01-04 05:18:08 -0800226 perf = per_cpu(drv_data, cpumask_first(mask))->acpi_data;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700227 cmd.addr.io.port = perf->control_register.address;
228 cmd.addr.io.bit_width = perf->control_register.bit_width;
229 break;
230 default:
231 return 0;
232 }
233
Mike Travis7503bfb2009-01-04 05:18:09 -0800234 if (unlikely(!alloc_cpumask_var(&cmd.mask, GFP_KERNEL)))
235 return 0;
236
Mike Travis4d8bb532009-01-04 05:18:08 -0800237 cpumask_copy(cmd.mask, mask);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700238
239 drv_read(&cmd);
240
Mike Travis7503bfb2009-01-04 05:18:09 -0800241 free_cpumask_var(cmd.mask);
242
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700243 dprintk("get_cur_val = %u\n", cmd.val);
244
245 return cmd.val;
246}
247
Mike Travise39ad412009-01-04 05:18:10 -0800248struct perf_cur {
249 union {
250 struct {
251 u32 lo;
252 u32 hi;
253 } split;
254 u64 whole;
255 } aperf_cur, mperf_cur;
256};
257
258
259static long read_measured_perf_ctrs(void *_cur)
260{
261 struct perf_cur *cur = _cur;
262
263 rdmsr(MSR_IA32_APERF, cur->aperf_cur.split.lo, cur->aperf_cur.split.hi);
264 rdmsr(MSR_IA32_MPERF, cur->mperf_cur.split.lo, cur->mperf_cur.split.hi);
265
266 wrmsr(MSR_IA32_APERF, 0, 0);
267 wrmsr(MSR_IA32_MPERF, 0, 0);
268
269 return 0;
270}
271
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700272/*
273 * Return the measured active (C0) frequency on this CPU since last call
274 * to this function.
275 * Input: cpu number
276 * Return: Average CPU frequency in terms of max frequency (zero on error)
277 *
278 * We use IA32_MPERF and IA32_APERF MSRs to get the measured performance
279 * over a period of time, while CPU is in C0 state.
280 * IA32_MPERF counts at the rate of max advertised frequency
281 * IA32_APERF counts at the rate of actual CPU frequency
282 * Only IA32_APERF/IA32_MPERF ratio is architecturally defined and
283 * no meaning should be associated with absolute values of these MSRs.
284 */
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -0700285static unsigned int get_measured_perf(struct cpufreq_policy *policy,
286 unsigned int cpu)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700287{
Mike Travise39ad412009-01-04 05:18:10 -0800288 struct perf_cur cur;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700289 unsigned int perf_percent;
290 unsigned int retval;
291
Mike Travise39ad412009-01-04 05:18:10 -0800292 if (!work_on_cpu(cpu, read_measured_perf_ctrs, &cur))
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700293 return 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700294
295#ifdef __i386__
296 /*
297 * We dont want to do 64 bit divide with 32 bit kernel
298 * Get an approximate value. Return failure in case we cannot get
299 * an approximate value.
300 */
Mike Travise39ad412009-01-04 05:18:10 -0800301 if (unlikely(cur.aperf_cur.split.hi || cur.mperf_cur.split.hi)) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700302 int shift_count;
303 u32 h;
304
Mike Travise39ad412009-01-04 05:18:10 -0800305 h = max_t(u32, cur.aperf_cur.split.hi, cur.mperf_cur.split.hi);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700306 shift_count = fls(h);
307
Mike Travise39ad412009-01-04 05:18:10 -0800308 cur.aperf_cur.whole >>= shift_count;
309 cur.mperf_cur.whole >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700310 }
311
Mike Travise39ad412009-01-04 05:18:10 -0800312 if (((unsigned long)(-1) / 100) < cur.aperf_cur.split.lo) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700313 int shift_count = 7;
Mike Travise39ad412009-01-04 05:18:10 -0800314 cur.aperf_cur.split.lo >>= shift_count;
315 cur.mperf_cur.split.lo >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700316 }
317
Mike Travise39ad412009-01-04 05:18:10 -0800318 if (cur.aperf_cur.split.lo && cur.mperf_cur.split.lo)
319 perf_percent = (cur.aperf_cur.split.lo * 100) /
320 cur.mperf_cur.split.lo;
Dave Jones95dd7222006-10-18 00:41:48 -0400321 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700322 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700323
324#else
Mike Travise39ad412009-01-04 05:18:10 -0800325 if (unlikely(((unsigned long)(-1) / 100) < cur.aperf_cur.whole)) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700326 int shift_count = 7;
Mike Travise39ad412009-01-04 05:18:10 -0800327 cur.aperf_cur.whole >>= shift_count;
328 cur.mperf_cur.whole >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700329 }
330
Mike Travise39ad412009-01-04 05:18:10 -0800331 if (cur.aperf_cur.whole && cur.mperf_cur.whole)
332 perf_percent = (cur.aperf_cur.whole * 100) /
333 cur.mperf_cur.whole;
Dave Jones95dd7222006-10-18 00:41:48 -0400334 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700335 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700336
337#endif
338
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -0700339 retval = per_cpu(drv_data, policy->cpu)->max_freq * perf_percent / 100;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700340
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700341 return retval;
342}
343
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700344static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
345{
travis@sgi.comea348f32008-01-30 13:33:12 +0100346 struct acpi_cpufreq_data *data = per_cpu(drv_data, cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700347 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400348 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700349
350 dprintk("get_cur_freq_on_cpu (%d)\n", cpu);
351
352 if (unlikely(data == NULL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700353 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700354 return 0;
355 }
356
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400357 cached_freq = data->freq_table[data->acpi_data->state].frequency;
Mike Travise39ad412009-01-04 05:18:10 -0800358 freq = extract_freq(get_cur_val(cpumask_of(cpu)), data);
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400359 if (freq != cached_freq) {
360 /*
361 * The dreaded BIOS frequency change behind our back.
362 * Force set the frequency on next target call.
363 */
364 data->resume = 1;
365 }
366
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700367 dprintk("cur freq = %u\n", freq);
368
369 return freq;
370}
371
Mike Travisfc0e4742008-04-04 18:11:05 -0700372static unsigned int check_freqs(const cpumask_t *mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700373 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700374{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700375 unsigned int cur_freq;
376 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700377
Dave Jones95dd7222006-10-18 00:41:48 -0400378 for (i=0; i<100; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700379 cur_freq = extract_freq(get_cur_val(mask), data);
380 if (cur_freq == freq)
381 return 1;
382 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384 return 0;
385}
386
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700387static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700388 unsigned int target_freq, unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
travis@sgi.comea348f32008-01-30 13:33:12 +0100390 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700391 struct acpi_processor_performance *perf;
392 struct cpufreq_freqs freqs;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700393 struct drv_cmd cmd;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800394 unsigned int next_state = 0; /* Index into freq_table */
395 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700396 unsigned int i;
397 int result = 0;
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800398 struct power_trace it;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700400 dprintk("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700402 if (unlikely(data == NULL ||
Dave Jones95dd7222006-10-18 00:41:48 -0400403 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700404 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406
Mike Travis4d8bb532009-01-04 05:18:08 -0800407 if (unlikely(!alloc_cpumask_var(&cmd.mask, GFP_KERNEL)))
408 return -ENOMEM;
409
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500410 perf = data->acpi_data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700411 result = cpufreq_frequency_table_target(policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700412 data->freq_table,
413 target_freq,
414 relation, &next_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800415 if (unlikely(result)) {
416 result = -ENODEV;
417 goto out;
418 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500419
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700420 next_perf_state = data->freq_table[next_state].index;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700421 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700422 if (unlikely(data->resume)) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700423 dprintk("Called after resume, resetting to P%d\n",
424 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700425 data->resume = 0;
426 } else {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700427 dprintk("Already at target state (P%d)\n",
428 next_perf_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800429 goto out;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700430 }
431 }
432
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800433 trace_power_mark(&it, POWER_PSTATE, next_perf_state);
434
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700435 switch (data->cpu_feature) {
436 case SYSTEM_INTEL_MSR_CAPABLE:
437 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
438 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700439 cmd.val = (u32) perf->states[next_perf_state].control;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700440 break;
441 case SYSTEM_IO_CAPABLE:
442 cmd.type = SYSTEM_IO_CAPABLE;
443 cmd.addr.io.port = perf->control_register.address;
444 cmd.addr.io.bit_width = perf->control_register.bit_width;
445 cmd.val = (u32) perf->states[next_perf_state].control;
446 break;
447 default:
Mike Travis4d8bb532009-01-04 05:18:08 -0800448 result = -ENODEV;
449 goto out;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700450 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700451
Mike Travis4d8bb532009-01-04 05:18:08 -0800452 /* cpufreq holds the hotplug lock, so we are safe from here on */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700453 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
Mike Travis4d8bb532009-01-04 05:18:08 -0800454 cpumask_and(cmd.mask, cpu_online_mask, policy->cpus);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700455 else
Mike Travis4d8bb532009-01-04 05:18:08 -0800456 cpumask_copy(cmd.mask, cpumask_of(policy->cpu));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700457
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800458 freqs.old = perf->states[perf->state].core_frequency * 1000;
459 freqs.new = data->freq_table[next_state].frequency;
Mike Travis4d8bb532009-01-04 05:18:08 -0800460 for_each_cpu(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700461 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500462 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
463 }
464
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700465 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500466
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700467 if (acpi_pstate_strict) {
Mike Travis4d8bb532009-01-04 05:18:08 -0800468 if (!check_freqs(cmd.mask, freqs.new, data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700469 dprintk("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700470 policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800471 result = -EAGAIN;
472 goto out;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500473 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500474 }
475
Mike Travis4d8bb532009-01-04 05:18:08 -0800476 for_each_cpu(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700477 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500478 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
479 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700480 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500481
Mike Travis4d8bb532009-01-04 05:18:08 -0800482out:
483 free_cpumask_var(cmd.mask);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700484 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700487static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
travis@sgi.comea348f32008-01-30 13:33:12 +0100489 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 dprintk("acpi_cpufreq_verify\n");
492
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700493 return cpufreq_frequency_table_verify(policy, data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700497acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700499 struct acpi_processor_performance *perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (cpu_khz) {
502 /* search the closest match to cpu_khz */
503 unsigned int i;
504 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500505 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Dave Jones95dd7222006-10-18 00:41:48 -0400507 for (i=0; i<(perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400509 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500511 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700512 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514 }
Dave Jones95dd7222006-10-18 00:41:48 -0400515 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700516 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500517 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500519 perf->state = 0;
520 return perf->states[0].core_frequency * 1000;
521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800524static void free_acpi_perf_data(void)
525{
526 unsigned int i;
527
528 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
529 for_each_possible_cpu(i)
530 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
531 ->shared_cpu_map);
532 free_percpu(acpi_perf_data);
533}
534
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500535/*
536 * acpi_cpufreq_early_init - initialize ACPI P-States library
537 *
538 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
539 * in order to determine correct frequency and voltage pairings. We can
540 * do _PDC and _PSD and find out the processor dependency for the
541 * actual init that will happen later...
542 */
Fenghua Yu50109292007-08-07 18:40:30 -0400543static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500544{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800545 unsigned int i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500546 dprintk("acpi_cpufreq_early_init\n");
547
Fenghua Yu50109292007-08-07 18:40:30 -0400548 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
549 if (!acpi_perf_data) {
550 dprintk("Memory allocation error for acpi_perf_data.\n");
551 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500552 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800553 for_each_possible_cpu(i) {
Mike Travis80855f72008-12-31 18:08:47 -0800554 if (!alloc_cpumask_var_node(
555 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
556 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800557
558 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
559 free_acpi_perf_data();
560 return -ENOMEM;
561 }
562 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500563
564 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700565 acpi_processor_preregister_performance(acpi_perf_data);
566 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500567}
568
Dave Jones95625b82006-10-21 01:37:39 -0400569#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700570/*
571 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
572 * or do it in BIOS firmware and won't inform about it to OS. If not
573 * detected, this has a side effect of making CPU run at a different speed
574 * than OS intended it to run at. Detect it and handle it cleanly.
575 */
576static int bios_with_sw_any_bug;
577
Jeff Garzik18552562007-10-03 15:15:40 -0400578static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700579{
580 bios_with_sw_any_bug = 1;
581 return 0;
582}
583
Jeff Garzik18552562007-10-03 15:15:40 -0400584static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700585 {
586 .callback = sw_any_bug_found,
587 .ident = "Supermicro Server X6DLP",
588 .matches = {
589 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
590 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
591 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
592 },
593 },
594 { }
595};
Dave Jones95625b82006-10-21 01:37:39 -0400596#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700597
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700598static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700600 unsigned int i;
601 unsigned int valid_states = 0;
602 unsigned int cpu = policy->cpu;
603 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700604 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200605 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700606 struct acpi_processor_performance *perf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 dprintk("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700610 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700612 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Fenghua Yu50109292007-08-07 18:40:30 -0400614 data->acpi_data = percpu_ptr(acpi_perf_data, cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100615 per_cpu(drv_data, cpu) = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700616
Dave Jones95dd7222006-10-18 00:41:48 -0400617 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700618 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500620 result = acpi_processor_register_performance(data->acpi_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (result)
622 goto err_free;
623
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500624 perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500625 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400626
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400627 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400628 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400629 * coordination is required.
630 */
631 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700632 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800633 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700634 }
Rusty Russell835481d2009-01-04 05:18:06 -0800635 cpumask_copy(policy->related_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700636
637#ifdef CONFIG_SMP
638 dmi_check_system(sw_any_bug_dmi_table);
Rusty Russell835481d2009-01-04 05:18:06 -0800639 if (bios_with_sw_any_bug && cpumask_weight(policy->cpus) == 1) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700640 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Rusty Russell835481d2009-01-04 05:18:06 -0800641 cpumask_copy(policy->cpus, cpu_core_mask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700642 }
643#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500646 if (perf->state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 dprintk("No P-States\n");
648 result = -ENODEV;
649 goto err_unreg;
650 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500651
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700652 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 result = -ENODEV;
654 goto err_unreg;
655 }
656
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700657 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700658 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700659 dprintk("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700660 data->cpu_feature = SYSTEM_IO_CAPABLE;
661 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700662 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700663 dprintk("HARDWARE addr space\n");
664 if (!check_est_cpu(cpu)) {
665 result = -ENODEV;
666 goto err_unreg;
667 }
668 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700669 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700670 default:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700671 dprintk("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700672 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700673 result = -ENODEV;
674 goto err_unreg;
675 }
676
Dave Jones95dd7222006-10-18 00:41:48 -0400677 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
678 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (!data->freq_table) {
680 result = -ENOMEM;
681 goto err_unreg;
682 }
683
684 /* detect transition latency */
685 policy->cpuinfo.transition_latency = 0;
Dave Jones95dd7222006-10-18 00:41:48 -0400686 for (i=0; i<perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700687 if ((perf->states[i].transition_latency * 1000) >
688 policy->cpuinfo.transition_latency)
689 policy->cpuinfo.transition_latency =
690 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700693 data->max_freq = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* table init */
Dave Jones95dd7222006-10-18 00:41:48 -0400695 for (i=0; i<perf->state_count; i++) {
Zhang Rui3cdf5522007-06-13 21:24:02 -0400696 if (i>0 && perf->states[i].core_frequency >=
697 data->freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700698 continue;
699
700 data->freq_table[valid_states].index = i;
701 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700702 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700703 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
Venkatesh Pallipadi3d4a7ef2006-11-13 17:47:44 -0800705 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800706 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400709 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Mattia Dongilia507ac42006-12-15 19:52:45 +0100712 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700713 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700714 /* Current speed is unknown and not detectable by IO port */
715 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
716 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700717 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700718 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Mattia Dongilia507ac42006-12-15 19:52:45 +0100719 policy->cur = get_cur_freq_on_cpu(cpu);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700720 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700721 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700722 break;
723 }
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /* notify BIOS that we exist */
726 acpi_processor_notify_smm(THIS_MODULE);
727
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700728 /* Check for APERF/MPERF support in hardware */
729 if (c->x86_vendor == X86_VENDOR_INTEL && c->cpuid_level >= 6) {
730 unsigned int ecx;
731 ecx = cpuid_ecx(6);
Dave Jones95dd7222006-10-18 00:41:48 -0400732 if (ecx & CPUID_6_ECX_APERFMPERF_CAPABILITY)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700733 acpi_cpufreq_driver.getavg = get_measured_perf;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700734 }
735
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700736 dprintk("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500737 for (i = 0; i < perf->state_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700739 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500740 (u32) perf->states[i].core_frequency,
741 (u32) perf->states[i].power,
742 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700745
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400746 /*
747 * the first call to ->target() should result in us actually
748 * writing something to the appropriate registers.
749 */
750 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700751
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700752 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Dave Jones95dd7222006-10-18 00:41:48 -0400754err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400756err_unreg:
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500757 acpi_processor_unregister_performance(perf, cpu);
Dave Jones95dd7222006-10-18 00:41:48 -0400758err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 kfree(data);
travis@sgi.comea348f32008-01-30 13:33:12 +0100760 per_cpu(drv_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700762 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700765static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
travis@sgi.comea348f32008-01-30 13:33:12 +0100767 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 dprintk("acpi_cpufreq_cpu_exit\n");
770
771 if (data) {
772 cpufreq_frequency_table_put_attr(policy->cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100773 per_cpu(drv_data, policy->cpu) = NULL;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700774 acpi_processor_unregister_performance(data->acpi_data,
775 policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 kfree(data);
777 }
778
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700782static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
travis@sgi.comea348f32008-01-30 13:33:12 +0100784 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 dprintk("acpi_cpufreq_resume\n");
787
788 data->resume = 1;
789
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700793static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 &cpufreq_freq_attr_scaling_available_freqs,
795 NULL,
796};
797
798static struct cpufreq_driver acpi_cpufreq_driver = {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700799 .verify = acpi_cpufreq_verify,
800 .target = acpi_cpufreq_target,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700801 .init = acpi_cpufreq_cpu_init,
802 .exit = acpi_cpufreq_cpu_exit,
803 .resume = acpi_cpufreq_resume,
804 .name = "acpi-cpufreq",
805 .owner = THIS_MODULE,
806 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807};
808
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700809static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Fenghua Yu50109292007-08-07 18:40:30 -0400811 int ret;
812
Yinghai Luee297532008-09-24 19:04:31 -0700813 if (acpi_disabled)
814 return 0;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 dprintk("acpi_cpufreq_init\n");
817
Fenghua Yu50109292007-08-07 18:40:30 -0400818 ret = acpi_cpufreq_early_init();
819 if (ret)
820 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500821
Akinobu Mita847aef62008-07-14 11:59:44 +0900822 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
823 if (ret)
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800824 free_acpi_perf_data();
Akinobu Mita847aef62008-07-14 11:59:44 +0900825
826 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700829static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
831 dprintk("acpi_cpufreq_exit\n");
832
833 cpufreq_unregister_driver(&acpi_cpufreq_driver);
834
Fenghua Yu50109292007-08-07 18:40:30 -0400835 free_percpu(acpi_perf_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400838module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700839MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -0400840 "value 0 or non-zero. non-zero -> strict ACPI checks are "
841 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843late_initcall(acpi_cpufreq_init);
844module_exit(acpi_cpufreq_exit);
845
846MODULE_ALIAS("acpi");