blob: 1def5b06fa4ab056ebe9d70e9935b319f9808ee6 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <linux/acpi.h>
38#include <acpi/processor.h>
39
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070040#include <asm/io.h>
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070041#include <asm/msr.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070042#include <asm/processor.h>
43#include <asm/cpufeature.h>
44#include <asm/delay.h>
45#include <asm/uaccess.h>
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "acpi-cpufreq", msg)
48
49MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
50MODULE_DESCRIPTION("ACPI Processor P-States Driver");
51MODULE_LICENSE("GPL");
52
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070053enum {
54 UNDEFINED_CAPABLE = 0,
55 SYSTEM_INTEL_MSR_CAPABLE,
56 SYSTEM_IO_CAPABLE,
57};
58
59#define INTEL_MSR_RANGE (0xffff)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -070060#define CPUID_6_ECX_APERFMPERF_CAPABILITY (0x1)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070061
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070062struct acpi_cpufreq_data {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070063 struct acpi_processor_performance *acpi_data;
64 struct cpufreq_frequency_table *freq_table;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -070065 unsigned int max_freq;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070066 unsigned int resume;
67 unsigned int cpu_feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
travis@sgi.comea348f32008-01-30 13:33:12 +010070static DEFINE_PER_CPU(struct acpi_cpufreq_data *, drv_data);
71
Fenghua Yu50109292007-08-07 18:40:30 -040072/* acpi_perf_data is a pointer to percpu data. */
73static struct acpi_processor_performance *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75static struct cpufreq_driver acpi_cpufreq_driver;
76
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040077static unsigned int acpi_pstate_strict;
78
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070079static int check_est_cpu(unsigned int cpuid)
80{
Mike Travis92cb7612007-10-19 20:35:04 +020081 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070082
83 if (cpu->x86_vendor != X86_VENDOR_INTEL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070084 !cpu_has(cpu, X86_FEATURE_EST))
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070085 return 0;
86
87 return 1;
88}
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 Jones95dd7222006-10-18 00:41:48 -040097 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 Jones95dd7222006-10-18 00:41:48 -0400112 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
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700140typedef union {
141 struct msr_addr msr;
142 struct io_addr io;
143} drv_addr_union;
144
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700145struct drv_cmd {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700146 unsigned int type;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700147 cpumask_t mask;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700148 drv_addr_union addr;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700149 u32 val;
150};
151
152static void do_drv_read(struct drv_cmd *cmd)
153{
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
170static void do_drv_write(struct drv_cmd *cmd)
171{
Venki Pallipadi13424f62007-05-23 15:42:13 -0700172 u32 lo, hi;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700173
174 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700175 case SYSTEM_INTEL_MSR_CAPABLE:
Venki Pallipadi13424f62007-05-23 15:42:13 -0700176 rdmsr(cmd->addr.msr.reg, lo, hi);
177 lo = (lo & ~INTEL_MSR_RANGE) | (cmd->val & INTEL_MSR_RANGE);
178 wrmsr(cmd->addr.msr.reg, lo, hi);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700179 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700180 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800181 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
182 cmd->val,
183 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700184 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700185 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700186 break;
187 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700188}
189
Dave Jones95dd7222006-10-18 00:41:48 -0400190static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700191{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700192 cpumask_t saved_mask = current->cpus_allowed;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700193 cmd->val = 0;
194
Mike Travisfc0e4742008-04-04 18:11:05 -0700195 set_cpus_allowed_ptr(current, &cmd->mask);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700196 do_drv_read(cmd);
Mike Travisfc0e4742008-04-04 18:11:05 -0700197 set_cpus_allowed_ptr(current, &saved_mask);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700198}
199
200static void drv_write(struct drv_cmd *cmd)
201{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700202 cpumask_t saved_mask = current->cpus_allowed;
203 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700204
Mike Travis334ef7a2008-05-12 21:21:13 +0200205 for_each_cpu_mask_nr(i, cmd->mask) {
Mike Travis0bc3cc02008-07-24 18:21:31 -0700206 set_cpus_allowed_ptr(current, &cpumask_of_cpu(i));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700207 do_drv_write(cmd);
208 }
209
Mike Travisfc0e4742008-04-04 18:11:05 -0700210 set_cpus_allowed_ptr(current, &saved_mask);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700211 return;
212}
213
Mike Travisfc0e4742008-04-04 18:11:05 -0700214static u32 get_cur_val(const cpumask_t *mask)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700215{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700216 struct acpi_processor_performance *perf;
217 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700218
Mike Travisfc0e4742008-04-04 18:11:05 -0700219 if (unlikely(cpus_empty(*mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700220 return 0;
221
Mike Travisfc0e4742008-04-04 18:11:05 -0700222 switch (per_cpu(drv_data, first_cpu(*mask))->cpu_feature) {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700223 case SYSTEM_INTEL_MSR_CAPABLE:
224 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
225 cmd.addr.msr.reg = MSR_IA32_PERF_STATUS;
226 break;
227 case SYSTEM_IO_CAPABLE:
228 cmd.type = SYSTEM_IO_CAPABLE;
Mike Travisfc0e4742008-04-04 18:11:05 -0700229 perf = per_cpu(drv_data, first_cpu(*mask))->acpi_data;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700230 cmd.addr.io.port = perf->control_register.address;
231 cmd.addr.io.bit_width = perf->control_register.bit_width;
232 break;
233 default:
234 return 0;
235 }
236
Mike Travisfc0e4742008-04-04 18:11:05 -0700237 cmd.mask = *mask;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700238
239 drv_read(&cmd);
240
241 dprintk("get_cur_val = %u\n", cmd.val);
242
243 return cmd.val;
244}
245
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700246/*
247 * Return the measured active (C0) frequency on this CPU since last call
248 * to this function.
249 * Input: cpu number
250 * Return: Average CPU frequency in terms of max frequency (zero on error)
251 *
252 * We use IA32_MPERF and IA32_APERF MSRs to get the measured performance
253 * over a period of time, while CPU is in C0 state.
254 * IA32_MPERF counts at the rate of max advertised frequency
255 * IA32_APERF counts at the rate of actual CPU frequency
256 * Only IA32_APERF/IA32_MPERF ratio is architecturally defined and
257 * no meaning should be associated with absolute values of these MSRs.
258 */
259static unsigned int get_measured_perf(unsigned int cpu)
260{
261 union {
262 struct {
263 u32 lo;
264 u32 hi;
265 } split;
266 u64 whole;
267 } aperf_cur, mperf_cur;
268
269 cpumask_t saved_mask;
270 unsigned int perf_percent;
271 unsigned int retval;
272
273 saved_mask = current->cpus_allowed;
Mike Travis0bc3cc02008-07-24 18:21:31 -0700274 set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu));
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700275 if (get_cpu() != cpu) {
276 /* We were not able to run on requested processor */
277 put_cpu();
278 return 0;
279 }
280
281 rdmsr(MSR_IA32_APERF, aperf_cur.split.lo, aperf_cur.split.hi);
282 rdmsr(MSR_IA32_MPERF, mperf_cur.split.lo, mperf_cur.split.hi);
283
284 wrmsr(MSR_IA32_APERF, 0,0);
285 wrmsr(MSR_IA32_MPERF, 0,0);
286
287#ifdef __i386__
288 /*
289 * We dont want to do 64 bit divide with 32 bit kernel
290 * Get an approximate value. Return failure in case we cannot get
291 * an approximate value.
292 */
293 if (unlikely(aperf_cur.split.hi || mperf_cur.split.hi)) {
294 int shift_count;
295 u32 h;
296
297 h = max_t(u32, aperf_cur.split.hi, mperf_cur.split.hi);
298 shift_count = fls(h);
299
300 aperf_cur.whole >>= shift_count;
301 mperf_cur.whole >>= shift_count;
302 }
303
304 if (((unsigned long)(-1) / 100) < aperf_cur.split.lo) {
305 int shift_count = 7;
306 aperf_cur.split.lo >>= shift_count;
307 mperf_cur.split.lo >>= shift_count;
308 }
309
Dave Jones95dd7222006-10-18 00:41:48 -0400310 if (aperf_cur.split.lo && mperf_cur.split.lo)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700311 perf_percent = (aperf_cur.split.lo * 100) / mperf_cur.split.lo;
Dave Jones95dd7222006-10-18 00:41:48 -0400312 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700313 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700314
315#else
316 if (unlikely(((unsigned long)(-1) / 100) < aperf_cur.whole)) {
317 int shift_count = 7;
318 aperf_cur.whole >>= shift_count;
319 mperf_cur.whole >>= shift_count;
320 }
321
Dave Jones95dd7222006-10-18 00:41:48 -0400322 if (aperf_cur.whole && mperf_cur.whole)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700323 perf_percent = (aperf_cur.whole * 100) / mperf_cur.whole;
Dave Jones95dd7222006-10-18 00:41:48 -0400324 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700325 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700326
327#endif
328
travis@sgi.comea348f32008-01-30 13:33:12 +0100329 retval = per_cpu(drv_data, cpu)->max_freq * perf_percent / 100;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700330
331 put_cpu();
Mike Travisfc0e4742008-04-04 18:11:05 -0700332 set_cpus_allowed_ptr(current, &saved_mask);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700333
334 dprintk("cpu %d: performance percent %d\n", cpu, perf_percent);
335 return retval;
336}
337
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700338static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
339{
travis@sgi.comea348f32008-01-30 13:33:12 +0100340 struct acpi_cpufreq_data *data = per_cpu(drv_data, cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700341 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400342 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700343
344 dprintk("get_cur_freq_on_cpu (%d)\n", cpu);
345
346 if (unlikely(data == NULL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700347 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700348 return 0;
349 }
350
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400351 cached_freq = data->freq_table[data->acpi_data->state].frequency;
Mike Travis0bc3cc02008-07-24 18:21:31 -0700352 freq = extract_freq(get_cur_val(&cpumask_of_cpu(cpu)), data);
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400353 if (freq != cached_freq) {
354 /*
355 * The dreaded BIOS frequency change behind our back.
356 * Force set the frequency on next target call.
357 */
358 data->resume = 1;
359 }
360
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700361 dprintk("cur freq = %u\n", freq);
362
363 return freq;
364}
365
Mike Travisfc0e4742008-04-04 18:11:05 -0700366static unsigned int check_freqs(const cpumask_t *mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700367 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700368{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700369 unsigned int cur_freq;
370 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700371
Dave Jones95dd7222006-10-18 00:41:48 -0400372 for (i=0; i<100; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700373 cur_freq = extract_freq(get_cur_val(mask), data);
374 if (cur_freq == freq)
375 return 1;
376 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378 return 0;
379}
380
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700381static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700382 unsigned int target_freq, unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
travis@sgi.comea348f32008-01-30 13:33:12 +0100384 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700385 struct acpi_processor_performance *perf;
386 struct cpufreq_freqs freqs;
387 cpumask_t online_policy_cpus;
388 struct drv_cmd cmd;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800389 unsigned int next_state = 0; /* Index into freq_table */
390 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700391 unsigned int i;
392 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700394 dprintk("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700396 if (unlikely(data == NULL ||
Dave Jones95dd7222006-10-18 00:41:48 -0400397 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700398 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500401 perf = data->acpi_data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700402 result = cpufreq_frequency_table_target(policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700403 data->freq_table,
404 target_freq,
405 relation, &next_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700406 if (unlikely(result))
407 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Andrew Morton7e1f19e2006-03-28 17:03:00 -0500409#ifdef CONFIG_HOTPLUG_CPU
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500410 /* cpufreq holds the hotplug lock, so we are safe from here on */
411 cpus_and(online_policy_cpus, cpu_online_map, policy->cpus);
Andrew Morton7e1f19e2006-03-28 17:03:00 -0500412#else
413 online_policy_cpus = policy->cpus;
414#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500415
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700416 next_perf_state = data->freq_table[next_state].index;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700417 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700418 if (unlikely(data->resume)) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700419 dprintk("Called after resume, resetting to P%d\n",
420 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700421 data->resume = 0;
422 } else {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700423 dprintk("Already at target state (P%d)\n",
424 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700425 return 0;
426 }
427 }
428
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700429 switch (data->cpu_feature) {
430 case SYSTEM_INTEL_MSR_CAPABLE:
431 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
432 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700433 cmd.val = (u32) perf->states[next_perf_state].control;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700434 break;
435 case SYSTEM_IO_CAPABLE:
436 cmd.type = SYSTEM_IO_CAPABLE;
437 cmd.addr.io.port = perf->control_register.address;
438 cmd.addr.io.bit_width = perf->control_register.bit_width;
439 cmd.val = (u32) perf->states[next_perf_state].control;
440 break;
441 default:
442 return -ENODEV;
443 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700444
445 cpus_clear(cmd.mask);
446
447 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
448 cmd.mask = online_policy_cpus;
449 else
450 cpu_set(policy->cpu, cmd.mask);
451
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800452 freqs.old = perf->states[perf->state].core_frequency * 1000;
453 freqs.new = data->freq_table[next_state].frequency;
Mike Travis334ef7a2008-05-12 21:21:13 +0200454 for_each_cpu_mask_nr(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700455 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500456 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
457 }
458
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700459 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500460
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700461 if (acpi_pstate_strict) {
Mike Travisfc0e4742008-04-04 18:11:05 -0700462 if (!check_freqs(&cmd.mask, freqs.new, data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700463 dprintk("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700464 policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700465 return -EAGAIN;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500466 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500467 }
468
Mike Travis334ef7a2008-05-12 21:21:13 +0200469 for_each_cpu_mask_nr(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700470 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500471 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
472 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700473 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500474
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700475 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700478static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
travis@sgi.comea348f32008-01-30 13:33:12 +0100480 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 dprintk("acpi_cpufreq_verify\n");
483
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700484 return cpufreq_frequency_table_verify(policy, data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700488acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700490 struct acpi_processor_performance *perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (cpu_khz) {
493 /* search the closest match to cpu_khz */
494 unsigned int i;
495 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500496 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Dave Jones95dd7222006-10-18 00:41:48 -0400498 for (i=0; i<(perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400500 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500502 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700503 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505 }
Dave Jones95dd7222006-10-18 00:41:48 -0400506 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700507 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500508 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500510 perf->state = 0;
511 return perf->states[0].core_frequency * 1000;
512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500515/*
516 * acpi_cpufreq_early_init - initialize ACPI P-States library
517 *
518 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
519 * in order to determine correct frequency and voltage pairings. We can
520 * do _PDC and _PSD and find out the processor dependency for the
521 * actual init that will happen later...
522 */
Fenghua Yu50109292007-08-07 18:40:30 -0400523static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500524{
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500525 dprintk("acpi_cpufreq_early_init\n");
526
Fenghua Yu50109292007-08-07 18:40:30 -0400527 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
528 if (!acpi_perf_data) {
529 dprintk("Memory allocation error for acpi_perf_data.\n");
530 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500531 }
532
533 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700534 acpi_processor_preregister_performance(acpi_perf_data);
535 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500536}
537
Dave Jones95625b82006-10-21 01:37:39 -0400538#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700539/*
540 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
541 * or do it in BIOS firmware and won't inform about it to OS. If not
542 * detected, this has a side effect of making CPU run at a different speed
543 * than OS intended it to run at. Detect it and handle it cleanly.
544 */
545static int bios_with_sw_any_bug;
546
Jeff Garzik18552562007-10-03 15:15:40 -0400547static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700548{
549 bios_with_sw_any_bug = 1;
550 return 0;
551}
552
Jeff Garzik18552562007-10-03 15:15:40 -0400553static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700554 {
555 .callback = sw_any_bug_found,
556 .ident = "Supermicro Server X6DLP",
557 .matches = {
558 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
559 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
560 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
561 },
562 },
563 { }
564};
Dave Jones95625b82006-10-21 01:37:39 -0400565#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700566
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700567static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700569 unsigned int i;
570 unsigned int valid_states = 0;
571 unsigned int cpu = policy->cpu;
572 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700573 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200574 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700575 struct acpi_processor_performance *perf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 dprintk("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700579 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700581 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Fenghua Yu50109292007-08-07 18:40:30 -0400583 data->acpi_data = percpu_ptr(acpi_perf_data, cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100584 per_cpu(drv_data, cpu) = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700585
Dave Jones95dd7222006-10-18 00:41:48 -0400586 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700587 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500589 result = acpi_processor_register_performance(data->acpi_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (result)
591 goto err_free;
592
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500593 perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500594 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400595
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400596 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400597 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400598 * coordination is required.
599 */
600 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700601 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400602 policy->cpus = perf->shared_cpu_map;
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700603 }
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700604 policy->related_cpus = perf->shared_cpu_map;
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700605
606#ifdef CONFIG_SMP
607 dmi_check_system(sw_any_bug_dmi_table);
608 if (bios_with_sw_any_bug && cpus_weight(policy->cpus) == 1) {
609 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Mike Travis08357612007-10-16 01:24:04 -0700610 policy->cpus = per_cpu(cpu_core_map, cpu);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700611 }
612#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500615 if (perf->state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 dprintk("No P-States\n");
617 result = -ENODEV;
618 goto err_unreg;
619 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500620
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700621 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 result = -ENODEV;
623 goto err_unreg;
624 }
625
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700626 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700627 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700628 dprintk("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700629 data->cpu_feature = SYSTEM_IO_CAPABLE;
630 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700631 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700632 dprintk("HARDWARE addr space\n");
633 if (!check_est_cpu(cpu)) {
634 result = -ENODEV;
635 goto err_unreg;
636 }
637 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700638 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700639 default:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700640 dprintk("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700641 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700642 result = -ENODEV;
643 goto err_unreg;
644 }
645
Dave Jones95dd7222006-10-18 00:41:48 -0400646 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
647 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (!data->freq_table) {
649 result = -ENOMEM;
650 goto err_unreg;
651 }
652
653 /* detect transition latency */
654 policy->cpuinfo.transition_latency = 0;
Dave Jones95dd7222006-10-18 00:41:48 -0400655 for (i=0; i<perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700656 if ((perf->states[i].transition_latency * 1000) >
657 policy->cpuinfo.transition_latency)
658 policy->cpuinfo.transition_latency =
659 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700662 data->max_freq = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 /* table init */
Dave Jones95dd7222006-10-18 00:41:48 -0400664 for (i=0; i<perf->state_count; i++) {
Zhang Rui3cdf5522007-06-13 21:24:02 -0400665 if (i>0 && perf->states[i].core_frequency >=
666 data->freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700667 continue;
668
669 data->freq_table[valid_states].index = i;
670 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700671 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700672 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Venkatesh Pallipadi3d4a7ef2006-11-13 17:47:44 -0800674 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800675 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400678 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Mattia Dongilia507ac42006-12-15 19:52:45 +0100681 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700682 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700683 /* Current speed is unknown and not detectable by IO port */
684 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
685 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700686 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700687 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Mattia Dongilia507ac42006-12-15 19:52:45 +0100688 policy->cur = get_cur_freq_on_cpu(cpu);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700689 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700690 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700691 break;
692 }
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* notify BIOS that we exist */
695 acpi_processor_notify_smm(THIS_MODULE);
696
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700697 /* Check for APERF/MPERF support in hardware */
698 if (c->x86_vendor == X86_VENDOR_INTEL && c->cpuid_level >= 6) {
699 unsigned int ecx;
700 ecx = cpuid_ecx(6);
Dave Jones95dd7222006-10-18 00:41:48 -0400701 if (ecx & CPUID_6_ECX_APERFMPERF_CAPABILITY)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700702 acpi_cpufreq_driver.getavg = get_measured_perf;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700703 }
704
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700705 dprintk("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500706 for (i = 0; i < perf->state_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700708 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500709 (u32) perf->states[i].core_frequency,
710 (u32) perf->states[i].power,
711 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700714
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400715 /*
716 * the first call to ->target() should result in us actually
717 * writing something to the appropriate registers.
718 */
719 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700720
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700721 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Dave Jones95dd7222006-10-18 00:41:48 -0400723err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400725err_unreg:
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500726 acpi_processor_unregister_performance(perf, cpu);
Dave Jones95dd7222006-10-18 00:41:48 -0400727err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 kfree(data);
travis@sgi.comea348f32008-01-30 13:33:12 +0100729 per_cpu(drv_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700731 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700734static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
travis@sgi.comea348f32008-01-30 13:33:12 +0100736 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 dprintk("acpi_cpufreq_cpu_exit\n");
739
740 if (data) {
741 cpufreq_frequency_table_put_attr(policy->cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100742 per_cpu(drv_data, policy->cpu) = NULL;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700743 acpi_processor_unregister_performance(data->acpi_data,
744 policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 kfree(data);
746 }
747
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700748 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700751static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
travis@sgi.comea348f32008-01-30 13:33:12 +0100753 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 dprintk("acpi_cpufreq_resume\n");
756
757 data->resume = 1;
758
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700759 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700762static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 &cpufreq_freq_attr_scaling_available_freqs,
764 NULL,
765};
766
767static struct cpufreq_driver acpi_cpufreq_driver = {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700768 .verify = acpi_cpufreq_verify,
769 .target = acpi_cpufreq_target,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700770 .init = acpi_cpufreq_cpu_init,
771 .exit = acpi_cpufreq_cpu_exit,
772 .resume = acpi_cpufreq_resume,
773 .name = "acpi-cpufreq",
774 .owner = THIS_MODULE,
775 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776};
777
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700778static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Fenghua Yu50109292007-08-07 18:40:30 -0400780 int ret;
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 dprintk("acpi_cpufreq_init\n");
783
Fenghua Yu50109292007-08-07 18:40:30 -0400784 ret = acpi_cpufreq_early_init();
785 if (ret)
786 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500787
Akinobu Mita847aef62008-07-14 11:59:44 +0900788 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
789 if (ret)
790 free_percpu(acpi_perf_data);
791
792 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700795static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
797 dprintk("acpi_cpufreq_exit\n");
798
799 cpufreq_unregister_driver(&acpi_cpufreq_driver);
800
Fenghua Yu50109292007-08-07 18:40:30 -0400801 free_percpu(acpi_perf_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400804module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700805MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -0400806 "value 0 or non-zero. non-zero -> strict ACPI checks are "
807 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809late_initcall(acpi_cpufreq_init);
810module_exit(acpi_cpufreq_exit);
811
812MODULE_ALIAS("acpi");