blob: 3e3cd3db7a0cb33d583f3214e781396e1aa601e4 [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>
Frederic Weisbecker12922112009-02-07 22:16:12 +010036#include <trace/power.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <linux/acpi.h>
Dave Jones3a58df32009-01-17 22:36:14 -050039#include <linux/io.h>
40#include <linux/delay.h>
41#include <linux/uaccess.h>
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <acpi/processor.h>
44
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070045#include <asm/msr.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070046#include <asm/processor.h>
47#include <asm/cpufeature.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070048
Dave Jones3a58df32009-01-17 22:36:14 -050049#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, \
50 "acpi-cpufreq", msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
53MODULE_DESCRIPTION("ACPI Processor P-States Driver");
54MODULE_LICENSE("GPL");
55
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070056enum {
57 UNDEFINED_CAPABLE = 0,
58 SYSTEM_INTEL_MSR_CAPABLE,
59 SYSTEM_IO_CAPABLE,
60};
61
62#define INTEL_MSR_RANGE (0xffff)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -070063#define CPUID_6_ECX_APERFMPERF_CAPABILITY (0x1)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070064
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;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -070068 unsigned int max_freq;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070069 unsigned int resume;
70 unsigned int cpu_feature;
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -070071 u64 saved_aperf, saved_mperf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
travis@sgi.comea348f32008-01-30 13:33:12 +010074static DEFINE_PER_CPU(struct acpi_cpufreq_data *, drv_data);
75
Jason Baronb5f9fd02009-02-11 13:57:25 -050076DEFINE_TRACE(power_mark);
77
Fenghua Yu50109292007-08-07 18:40:30 -040078/* acpi_perf_data is a pointer to percpu data. */
79static struct acpi_processor_performance *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81static struct cpufreq_driver acpi_cpufreq_driver;
82
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040083static unsigned int acpi_pstate_strict;
84
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070085static int check_est_cpu(unsigned int cpuid)
86{
Mike Travis92cb7612007-10-19 20:35:04 +020087 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070088
89 if (cpu->x86_vendor != X86_VENDOR_INTEL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070090 !cpu_has(cpu, X86_FEATURE_EST))
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070091 return 0;
92
93 return 1;
94}
95
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070096static unsigned extract_io(u32 value, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070097{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070098 struct acpi_processor_performance *perf;
99 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700100
101 perf = data->acpi_data;
102
Dave Jones3a58df32009-01-17 22:36:14 -0500103 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700104 if (value == perf->states[i].status)
105 return data->freq_table[i].frequency;
106 }
107 return 0;
108}
109
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700110static unsigned extract_msr(u32 msr, struct acpi_cpufreq_data *data)
111{
112 int i;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700113 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700114
115 msr &= INTEL_MSR_RANGE;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700116 perf = data->acpi_data;
117
Dave Jones3a58df32009-01-17 22:36:14 -0500118 for (i = 0; data->freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700119 if (msr == perf->states[data->freq_table[i].index].status)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700120 return data->freq_table[i].frequency;
121 }
122 return data->freq_table[0].frequency;
123}
124
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700125static unsigned extract_freq(u32 val, struct acpi_cpufreq_data *data)
126{
127 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700128 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700129 return extract_msr(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700130 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700131 return extract_io(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700132 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700133 return 0;
134 }
135}
136
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700137struct msr_addr {
138 u32 reg;
139};
140
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700141struct io_addr {
142 u16 port;
143 u8 bit_width;
144};
145
146struct drv_cmd {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700147 unsigned int type;
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100148 const struct cpumask *mask;
Dave Jones3a58df32009-01-17 22:36:14 -0500149 union {
150 struct msr_addr msr;
151 struct io_addr io;
152 } addr;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700153 u32 val;
154};
155
Andrew Morton01599fc2009-04-13 10:27:49 -0700156/* Called via smp_call_function_single(), on the target CPU */
157static void do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700158{
Mike Travis72859082009-01-16 15:31:15 -0800159 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700160 u32 h;
161
162 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700163 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700164 rdmsr(cmd->addr.msr.reg, cmd->val, h);
165 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700166 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800167 acpi_os_read_port((acpi_io_address)cmd->addr.io.port,
168 &cmd->val,
169 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700170 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700171 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700172 break;
173 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700174}
175
Andrew Morton01599fc2009-04-13 10:27:49 -0700176/* Called via smp_call_function_many(), on the target CPUs */
177static void do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700178{
Mike Travis72859082009-01-16 15:31:15 -0800179 struct drv_cmd *cmd = _cmd;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700180 u32 lo, hi;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700181
182 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700183 case SYSTEM_INTEL_MSR_CAPABLE:
Venki Pallipadi13424f62007-05-23 15:42:13 -0700184 rdmsr(cmd->addr.msr.reg, lo, hi);
185 lo = (lo & ~INTEL_MSR_RANGE) | (cmd->val & INTEL_MSR_RANGE);
186 wrmsr(cmd->addr.msr.reg, lo, hi);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700187 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700188 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800189 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
190 cmd->val,
191 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700192 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700193 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700194 break;
195 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700196}
197
Dave Jones95dd7222006-10-18 00:41:48 -0400198static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700199{
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700200 cmd->val = 0;
201
Andrew Morton01599fc2009-04-13 10:27:49 -0700202 smp_call_function_single(cpumask_any(cmd->mask), do_drv_read, cmd, 1);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700203}
204
205static void drv_write(struct drv_cmd *cmd)
206{
Andrew Morton01599fc2009-04-13 10:27:49 -0700207 smp_call_function_many(cmd->mask, do_drv_write, cmd, 1);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700208}
209
Mike Travis4d8bb532009-01-04 05:18:08 -0800210static u32 get_cur_val(const struct cpumask *mask)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700211{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700212 struct acpi_processor_performance *perf;
213 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700214
Mike Travis4d8bb532009-01-04 05:18:08 -0800215 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700216 return 0;
217
Mike Travis4d8bb532009-01-04 05:18:08 -0800218 switch (per_cpu(drv_data, cpumask_first(mask))->cpu_feature) {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700219 case SYSTEM_INTEL_MSR_CAPABLE:
220 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
221 cmd.addr.msr.reg = MSR_IA32_PERF_STATUS;
222 break;
223 case SYSTEM_IO_CAPABLE:
224 cmd.type = SYSTEM_IO_CAPABLE;
Mike Travis4d8bb532009-01-04 05:18:08 -0800225 perf = per_cpu(drv_data, cpumask_first(mask))->acpi_data;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700226 cmd.addr.io.port = perf->control_register.address;
227 cmd.addr.io.bit_width = perf->control_register.bit_width;
228 break;
229 default:
230 return 0;
231 }
232
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100233 cmd.mask = mask;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700234 drv_read(&cmd);
235
236 dprintk("get_cur_val = %u\n", cmd.val);
237
238 return cmd.val;
239}
240
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700241struct perf_pair {
Mike Travise39ad412009-01-04 05:18:10 -0800242 union {
243 struct {
244 u32 lo;
245 u32 hi;
246 } split;
247 u64 whole;
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700248 } aperf, mperf;
Mike Travise39ad412009-01-04 05:18:10 -0800249};
250
Andrew Morton01599fc2009-04-13 10:27:49 -0700251/* Called via smp_call_function_single(), on the target CPU */
252static void read_measured_perf_ctrs(void *_cur)
Mike Travise39ad412009-01-04 05:18:10 -0800253{
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700254 struct perf_pair *cur = _cur;
Mike Travise39ad412009-01-04 05:18:10 -0800255
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700256 rdmsr(MSR_IA32_APERF, cur->aperf.split.lo, cur->aperf.split.hi);
257 rdmsr(MSR_IA32_MPERF, cur->mperf.split.lo, cur->mperf.split.hi);
Mike Travise39ad412009-01-04 05:18:10 -0800258}
259
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700260/*
261 * Return the measured active (C0) frequency on this CPU since last call
262 * to this function.
263 * Input: cpu number
264 * Return: Average CPU frequency in terms of max frequency (zero on error)
265 *
266 * We use IA32_MPERF and IA32_APERF MSRs to get the measured performance
267 * over a period of time, while CPU is in C0 state.
268 * IA32_MPERF counts at the rate of max advertised frequency
269 * IA32_APERF counts at the rate of actual CPU frequency
270 * Only IA32_APERF/IA32_MPERF ratio is architecturally defined and
271 * no meaning should be associated with absolute values of these MSRs.
272 */
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -0700273static unsigned int get_measured_perf(struct cpufreq_policy *policy,
274 unsigned int cpu)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700275{
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700276 struct perf_pair readin, cur;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700277 unsigned int perf_percent;
278 unsigned int retval;
279
Andrew Morton01599fc2009-04-13 10:27:49 -0700280 if (smp_call_function_single(cpu, read_measured_perf_ctrs, &cur, 1))
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700281 return 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700282
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700283 cur.aperf.whole = readin.aperf.whole -
284 per_cpu(drv_data, cpu)->saved_aperf;
285 cur.mperf.whole = readin.mperf.whole -
286 per_cpu(drv_data, cpu)->saved_mperf;
287 per_cpu(drv_data, cpu)->saved_aperf = readin.aperf.whole;
288 per_cpu(drv_data, cpu)->saved_mperf = readin.mperf.whole;
289
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700290#ifdef __i386__
291 /*
292 * We dont want to do 64 bit divide with 32 bit kernel
293 * Get an approximate value. Return failure in case we cannot get
294 * an approximate value.
295 */
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700296 if (unlikely(cur.aperf.split.hi || cur.mperf.split.hi)) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700297 int shift_count;
298 u32 h;
299
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700300 h = max_t(u32, cur.aperf.split.hi, cur.mperf.split.hi);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700301 shift_count = fls(h);
302
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700303 cur.aperf.whole >>= shift_count;
304 cur.mperf.whole >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700305 }
306
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700307 if (((unsigned long)(-1) / 100) < cur.aperf.split.lo) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700308 int shift_count = 7;
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700309 cur.aperf.split.lo >>= shift_count;
310 cur.mperf.split.lo >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700311 }
312
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700313 if (cur.aperf.split.lo && cur.mperf.split.lo)
314 perf_percent = (cur.aperf.split.lo * 100) / cur.mperf.split.lo;
Dave Jones95dd7222006-10-18 00:41:48 -0400315 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700316 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700317
318#else
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700319 if (unlikely(((unsigned long)(-1) / 100) < cur.aperf.whole)) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700320 int shift_count = 7;
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700321 cur.aperf.whole >>= shift_count;
322 cur.mperf.whole >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700323 }
324
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700325 if (cur.aperf.whole && cur.mperf.whole)
326 perf_percent = (cur.aperf.whole * 100) / cur.mperf.whole;
Dave Jones95dd7222006-10-18 00:41:48 -0400327 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700328 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700329
330#endif
331
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -0700332 retval = per_cpu(drv_data, policy->cpu)->max_freq * perf_percent / 100;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700333
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700334 return retval;
335}
336
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700337static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
338{
travis@sgi.comea348f32008-01-30 13:33:12 +0100339 struct acpi_cpufreq_data *data = per_cpu(drv_data, cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700340 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400341 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700342
343 dprintk("get_cur_freq_on_cpu (%d)\n", cpu);
344
345 if (unlikely(data == NULL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700346 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700347 return 0;
348 }
349
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400350 cached_freq = data->freq_table[data->acpi_data->state].frequency;
Mike Travise39ad412009-01-04 05:18:10 -0800351 freq = extract_freq(get_cur_val(cpumask_of(cpu)), data);
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400352 if (freq != cached_freq) {
353 /*
354 * The dreaded BIOS frequency change behind our back.
355 * Force set the frequency on next target call.
356 */
357 data->resume = 1;
358 }
359
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700360 dprintk("cur freq = %u\n", freq);
361
362 return freq;
363}
364
Mike Travis72859082009-01-16 15:31:15 -0800365static unsigned int check_freqs(const struct cpumask *mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700366 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700367{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700368 unsigned int cur_freq;
369 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700370
Dave Jones3a58df32009-01-17 22:36:14 -0500371 for (i = 0; i < 100; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700372 cur_freq = extract_freq(get_cur_val(mask), data);
373 if (cur_freq == freq)
374 return 1;
375 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 return 0;
378}
379
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700380static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700381 unsigned int target_freq, unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
travis@sgi.comea348f32008-01-30 13:33:12 +0100383 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700384 struct acpi_processor_performance *perf;
385 struct cpufreq_freqs freqs;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700386 struct drv_cmd cmd;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800387 unsigned int next_state = 0; /* Index into freq_table */
388 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700389 unsigned int i;
390 int result = 0;
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800391 struct power_trace it;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700393 dprintk("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700395 if (unlikely(data == NULL ||
Dave Jones95dd7222006-10-18 00:41:48 -0400396 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700397 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500400 perf = data->acpi_data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700401 result = cpufreq_frequency_table_target(policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700402 data->freq_table,
403 target_freq,
404 relation, &next_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800405 if (unlikely(result)) {
406 result = -ENODEV;
407 goto out;
408 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500409
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700410 next_perf_state = data->freq_table[next_state].index;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700411 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700412 if (unlikely(data->resume)) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700413 dprintk("Called after resume, resetting to P%d\n",
414 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700415 data->resume = 0;
416 } else {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700417 dprintk("Already at target state (P%d)\n",
418 next_perf_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800419 goto out;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700420 }
421 }
422
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800423 trace_power_mark(&it, POWER_PSTATE, next_perf_state);
424
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700425 switch (data->cpu_feature) {
426 case SYSTEM_INTEL_MSR_CAPABLE:
427 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
428 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700429 cmd.val = (u32) perf->states[next_perf_state].control;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700430 break;
431 case SYSTEM_IO_CAPABLE:
432 cmd.type = SYSTEM_IO_CAPABLE;
433 cmd.addr.io.port = perf->control_register.address;
434 cmd.addr.io.bit_width = perf->control_register.bit_width;
435 cmd.val = (u32) perf->states[next_perf_state].control;
436 break;
437 default:
Mike Travis4d8bb532009-01-04 05:18:08 -0800438 result = -ENODEV;
439 goto out;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700440 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700441
Mike Travis4d8bb532009-01-04 05:18:08 -0800442 /* cpufreq holds the hotplug lock, so we are safe from here on */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700443 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100444 cmd.mask = policy->cpus;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700445 else
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100446 cmd.mask = cpumask_of(policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700447
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800448 freqs.old = perf->states[perf->state].core_frequency * 1000;
449 freqs.new = data->freq_table[next_state].frequency;
Mike Travis4d8bb532009-01-04 05:18:08 -0800450 for_each_cpu(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700451 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500452 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
453 }
454
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700455 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500456
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700457 if (acpi_pstate_strict) {
Mike Travis4d8bb532009-01-04 05:18:08 -0800458 if (!check_freqs(cmd.mask, freqs.new, data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700459 dprintk("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700460 policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800461 result = -EAGAIN;
462 goto out;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500463 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500464 }
465
Mike Travis4d8bb532009-01-04 05:18:08 -0800466 for_each_cpu(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700467 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500468 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
469 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700470 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500471
Mike Travis4d8bb532009-01-04 05:18:08 -0800472out:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700473 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700476static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
travis@sgi.comea348f32008-01-30 13:33:12 +0100478 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 dprintk("acpi_cpufreq_verify\n");
481
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700482 return cpufreq_frequency_table_verify(policy, data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700486acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700488 struct acpi_processor_performance *perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (cpu_khz) {
491 /* search the closest match to cpu_khz */
492 unsigned int i;
493 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500494 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Dave Jones3a58df32009-01-17 22:36:14 -0500496 for (i = 0; i < (perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400498 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500500 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700501 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503 }
Dave Jones95dd7222006-10-18 00:41:48 -0400504 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700505 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500506 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500508 perf->state = 0;
509 return perf->states[0].core_frequency * 1000;
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800513static void free_acpi_perf_data(void)
514{
515 unsigned int i;
516
517 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
518 for_each_possible_cpu(i)
519 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
520 ->shared_cpu_map);
521 free_percpu(acpi_perf_data);
522}
523
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500524/*
525 * acpi_cpufreq_early_init - initialize ACPI P-States library
526 *
527 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
528 * in order to determine correct frequency and voltage pairings. We can
529 * do _PDC and _PSD and find out the processor dependency for the
530 * actual init that will happen later...
531 */
Fenghua Yu50109292007-08-07 18:40:30 -0400532static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500533{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800534 unsigned int i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500535 dprintk("acpi_cpufreq_early_init\n");
536
Fenghua Yu50109292007-08-07 18:40:30 -0400537 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
538 if (!acpi_perf_data) {
539 dprintk("Memory allocation error for acpi_perf_data.\n");
540 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500541 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800542 for_each_possible_cpu(i) {
Mike Travis80855f72008-12-31 18:08:47 -0800543 if (!alloc_cpumask_var_node(
544 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
545 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800546
547 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
548 free_acpi_perf_data();
549 return -ENOMEM;
550 }
551 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500552
553 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700554 acpi_processor_preregister_performance(acpi_perf_data);
555 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500556}
557
Dave Jones95625b82006-10-21 01:37:39 -0400558#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700559/*
560 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
561 * or do it in BIOS firmware and won't inform about it to OS. If not
562 * detected, this has a side effect of making CPU run at a different speed
563 * than OS intended it to run at. Detect it and handle it cleanly.
564 */
565static int bios_with_sw_any_bug;
566
Jeff Garzik18552562007-10-03 15:15:40 -0400567static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700568{
569 bios_with_sw_any_bug = 1;
570 return 0;
571}
572
Jeff Garzik18552562007-10-03 15:15:40 -0400573static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700574 {
575 .callback = sw_any_bug_found,
576 .ident = "Supermicro Server X6DLP",
577 .matches = {
578 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
579 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
580 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
581 },
582 },
583 { }
584};
Dave Jones95625b82006-10-21 01:37:39 -0400585#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700586
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700587static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700589 unsigned int i;
590 unsigned int valid_states = 0;
591 unsigned int cpu = policy->cpu;
592 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700593 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200594 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700595 struct acpi_processor_performance *perf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 dprintk("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700599 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700601 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Rusty Russellb36128c2009-02-20 16:29:08 +0900603 data->acpi_data = per_cpu_ptr(acpi_perf_data, cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100604 per_cpu(drv_data, cpu) = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700605
Dave Jones95dd7222006-10-18 00:41:48 -0400606 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700607 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500609 result = acpi_processor_register_performance(data->acpi_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (result)
611 goto err_free;
612
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500613 perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500614 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400615
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400616 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400617 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400618 * coordination is required.
619 */
620 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700621 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800622 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700623 }
Rusty Russell835481d2009-01-04 05:18:06 -0800624 cpumask_copy(policy->related_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700625
626#ifdef CONFIG_SMP
627 dmi_check_system(sw_any_bug_dmi_table);
Rusty Russell835481d2009-01-04 05:18:06 -0800628 if (bios_with_sw_any_bug && cpumask_weight(policy->cpus) == 1) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700629 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Rusty Russell835481d2009-01-04 05:18:06 -0800630 cpumask_copy(policy->cpus, cpu_core_mask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700631 }
632#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500635 if (perf->state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 dprintk("No P-States\n");
637 result = -ENODEV;
638 goto err_unreg;
639 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500640
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700641 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 result = -ENODEV;
643 goto err_unreg;
644 }
645
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700646 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700647 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700648 dprintk("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700649 data->cpu_feature = SYSTEM_IO_CAPABLE;
650 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700651 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700652 dprintk("HARDWARE addr space\n");
653 if (!check_est_cpu(cpu)) {
654 result = -ENODEV;
655 goto err_unreg;
656 }
657 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700658 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700659 default:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700660 dprintk("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700661 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700662 result = -ENODEV;
663 goto err_unreg;
664 }
665
Dave Jones95dd7222006-10-18 00:41:48 -0400666 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
667 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (!data->freq_table) {
669 result = -ENOMEM;
670 goto err_unreg;
671 }
672
673 /* detect transition latency */
674 policy->cpuinfo.transition_latency = 0;
Dave Jones3a58df32009-01-17 22:36:14 -0500675 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700676 if ((perf->states[i].transition_latency * 1000) >
677 policy->cpuinfo.transition_latency)
678 policy->cpuinfo.transition_latency =
679 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700682 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
683 if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE &&
684 policy->cpuinfo.transition_latency > 20 * 1000) {
685 static int print_once;
686 policy->cpuinfo.transition_latency = 20 * 1000;
687 if (!print_once) {
688 print_once = 1;
689 printk(KERN_INFO "Capping off P-state tranision latency"
690 " at 20 uS\n");
691 }
692 }
693
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700694 data->max_freq = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /* table init */
Dave Jones3a58df32009-01-17 22:36:14 -0500696 for (i = 0; i < perf->state_count; i++) {
697 if (i > 0 && perf->states[i].core_frequency >=
Zhang Rui3cdf5522007-06-13 21:24:02 -0400698 data->freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700699 continue;
700
701 data->freq_table[valid_states].index = i;
702 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700703 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700704 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Venkatesh Pallipadi3d4a7ef2006-11-13 17:47:44 -0800706 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800707 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400710 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Mattia Dongilia507ac42006-12-15 19:52:45 +0100713 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700714 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700715 /* Current speed is unknown and not detectable by IO port */
716 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
717 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700718 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700719 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Mattia Dongilia507ac42006-12-15 19:52:45 +0100720 policy->cur = get_cur_freq_on_cpu(cpu);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700721 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700722 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700723 break;
724 }
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /* notify BIOS that we exist */
727 acpi_processor_notify_smm(THIS_MODULE);
728
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700729 /* Check for APERF/MPERF support in hardware */
730 if (c->x86_vendor == X86_VENDOR_INTEL && c->cpuid_level >= 6) {
731 unsigned int ecx;
732 ecx = cpuid_ecx(6);
Dave Jones95dd7222006-10-18 00:41:48 -0400733 if (ecx & CPUID_6_ECX_APERFMPERF_CAPABILITY)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700734 acpi_cpufreq_driver.getavg = get_measured_perf;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700735 }
736
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700737 dprintk("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500738 for (i = 0; i < perf->state_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700740 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500741 (u32) perf->states[i].core_frequency,
742 (u32) perf->states[i].power,
743 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700746
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400747 /*
748 * the first call to ->target() should result in us actually
749 * writing something to the appropriate registers.
750 */
751 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700752
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700753 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Dave Jones95dd7222006-10-18 00:41:48 -0400755err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400757err_unreg:
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500758 acpi_processor_unregister_performance(perf, cpu);
Dave Jones95dd7222006-10-18 00:41:48 -0400759err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 kfree(data);
travis@sgi.comea348f32008-01-30 13:33:12 +0100761 per_cpu(drv_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700763 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700766static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
travis@sgi.comea348f32008-01-30 13:33:12 +0100768 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 dprintk("acpi_cpufreq_cpu_exit\n");
771
772 if (data) {
773 cpufreq_frequency_table_put_attr(policy->cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100774 per_cpu(drv_data, policy->cpu) = NULL;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700775 acpi_processor_unregister_performance(data->acpi_data,
776 policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 kfree(data);
778 }
779
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700780 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700783static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
travis@sgi.comea348f32008-01-30 13:33:12 +0100785 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 dprintk("acpi_cpufreq_resume\n");
788
789 data->resume = 1;
790
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700791 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700794static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 &cpufreq_freq_attr_scaling_available_freqs,
796 NULL,
797};
798
799static struct cpufreq_driver acpi_cpufreq_driver = {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700800 .verify = acpi_cpufreq_verify,
801 .target = acpi_cpufreq_target,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700802 .init = acpi_cpufreq_cpu_init,
803 .exit = acpi_cpufreq_cpu_exit,
804 .resume = acpi_cpufreq_resume,
805 .name = "acpi-cpufreq",
806 .owner = THIS_MODULE,
807 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808};
809
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700810static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Fenghua Yu50109292007-08-07 18:40:30 -0400812 int ret;
813
Yinghai Luee297532008-09-24 19:04:31 -0700814 if (acpi_disabled)
815 return 0;
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 dprintk("acpi_cpufreq_init\n");
818
Fenghua Yu50109292007-08-07 18:40:30 -0400819 ret = acpi_cpufreq_early_init();
820 if (ret)
821 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500822
Akinobu Mita847aef62008-07-14 11:59:44 +0900823 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
824 if (ret)
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800825 free_acpi_perf_data();
Akinobu Mita847aef62008-07-14 11:59:44 +0900826
827 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700830static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 dprintk("acpi_cpufreq_exit\n");
833
834 cpufreq_unregister_driver(&acpi_cpufreq_driver);
835
Fenghua Yu50109292007-08-07 18:40:30 -0400836 free_percpu(acpi_perf_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400839module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700840MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -0400841 "value 0 or non-zero. non-zero -> strict ACPI checks are "
842 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844late_initcall(acpi_cpufreq_init);
845module_exit(acpi_cpufreq_exit);
846
847MODULE_ALIAS("acpi");