blob: 0b31939862d623f23d128a0e7edf082a50b4d227 [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;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700148 cpumask_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
153static void do_drv_read(struct drv_cmd *cmd)
154{
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700155 u32 h;
156
157 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700158 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700159 rdmsr(cmd->addr.msr.reg, cmd->val, h);
160 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700161 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800162 acpi_os_read_port((acpi_io_address)cmd->addr.io.port,
163 &cmd->val,
164 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700165 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700166 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700167 break;
168 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700169}
170
171static void do_drv_write(struct drv_cmd *cmd)
172{
Venki Pallipadi13424f62007-05-23 15:42:13 -0700173 u32 lo, hi;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700174
175 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700176 case SYSTEM_INTEL_MSR_CAPABLE:
Venki Pallipadi13424f62007-05-23 15:42:13 -0700177 rdmsr(cmd->addr.msr.reg, lo, hi);
178 lo = (lo & ~INTEL_MSR_RANGE) | (cmd->val & INTEL_MSR_RANGE);
179 wrmsr(cmd->addr.msr.reg, lo, hi);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700180 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700181 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800182 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
183 cmd->val,
184 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700185 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700186 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700187 break;
188 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700189}
190
Dave Jones95dd7222006-10-18 00:41:48 -0400191static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700192{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700193 cpumask_t saved_mask = current->cpus_allowed;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700194 cmd->val = 0;
195
Mike Travisfc0e4742008-04-04 18:11:05 -0700196 set_cpus_allowed_ptr(current, &cmd->mask);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700197 do_drv_read(cmd);
Mike Travisfc0e4742008-04-04 18:11:05 -0700198 set_cpus_allowed_ptr(current, &saved_mask);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700199}
200
201static void drv_write(struct drv_cmd *cmd)
202{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700203 cpumask_t saved_mask = current->cpus_allowed;
204 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700205
Mike Travis334ef7a2008-05-12 21:21:13 +0200206 for_each_cpu_mask_nr(i, cmd->mask) {
Mike Travis0bc3cc02008-07-24 18:21:31 -0700207 set_cpus_allowed_ptr(current, &cpumask_of_cpu(i));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700208 do_drv_write(cmd);
209 }
210
Mike Travisfc0e4742008-04-04 18:11:05 -0700211 set_cpus_allowed_ptr(current, &saved_mask);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700212 return;
213}
214
Mike Travisfc0e4742008-04-04 18:11:05 -0700215static u32 get_cur_val(const cpumask_t *mask)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700216{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700217 struct acpi_processor_performance *perf;
218 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700219
Mike Travisfc0e4742008-04-04 18:11:05 -0700220 if (unlikely(cpus_empty(*mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700221 return 0;
222
Mike Travisfc0e4742008-04-04 18:11:05 -0700223 switch (per_cpu(drv_data, first_cpu(*mask))->cpu_feature) {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700224 case SYSTEM_INTEL_MSR_CAPABLE:
225 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
226 cmd.addr.msr.reg = MSR_IA32_PERF_STATUS;
227 break;
228 case SYSTEM_IO_CAPABLE:
229 cmd.type = SYSTEM_IO_CAPABLE;
Mike Travisfc0e4742008-04-04 18:11:05 -0700230 perf = per_cpu(drv_data, first_cpu(*mask))->acpi_data;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700231 cmd.addr.io.port = perf->control_register.address;
232 cmd.addr.io.bit_width = perf->control_register.bit_width;
233 break;
234 default:
235 return 0;
236 }
237
Mike Travisfc0e4742008-04-04 18:11:05 -0700238 cmd.mask = *mask;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700239
240 drv_read(&cmd);
241
242 dprintk("get_cur_val = %u\n", cmd.val);
243
244 return cmd.val;
245}
246
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700247/*
248 * Return the measured active (C0) frequency on this CPU since last call
249 * to this function.
250 * Input: cpu number
251 * Return: Average CPU frequency in terms of max frequency (zero on error)
252 *
253 * We use IA32_MPERF and IA32_APERF MSRs to get the measured performance
254 * over a period of time, while CPU is in C0 state.
255 * IA32_MPERF counts at the rate of max advertised frequency
256 * IA32_APERF counts at the rate of actual CPU frequency
257 * Only IA32_APERF/IA32_MPERF ratio is architecturally defined and
258 * no meaning should be associated with absolute values of these MSRs.
259 */
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -0700260static unsigned int get_measured_perf(struct cpufreq_policy *policy,
261 unsigned int cpu)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700262{
263 union {
264 struct {
265 u32 lo;
266 u32 hi;
267 } split;
268 u64 whole;
269 } aperf_cur, mperf_cur;
270
271 cpumask_t saved_mask;
272 unsigned int perf_percent;
273 unsigned int retval;
274
275 saved_mask = current->cpus_allowed;
Mike Travis0bc3cc02008-07-24 18:21:31 -0700276 set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu));
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700277 if (get_cpu() != cpu) {
278 /* We were not able to run on requested processor */
279 put_cpu();
280 return 0;
281 }
282
283 rdmsr(MSR_IA32_APERF, aperf_cur.split.lo, aperf_cur.split.hi);
284 rdmsr(MSR_IA32_MPERF, mperf_cur.split.lo, mperf_cur.split.hi);
285
286 wrmsr(MSR_IA32_APERF, 0,0);
287 wrmsr(MSR_IA32_MPERF, 0,0);
288
289#ifdef __i386__
290 /*
291 * We dont want to do 64 bit divide with 32 bit kernel
292 * Get an approximate value. Return failure in case we cannot get
293 * an approximate value.
294 */
295 if (unlikely(aperf_cur.split.hi || mperf_cur.split.hi)) {
296 int shift_count;
297 u32 h;
298
299 h = max_t(u32, aperf_cur.split.hi, mperf_cur.split.hi);
300 shift_count = fls(h);
301
302 aperf_cur.whole >>= shift_count;
303 mperf_cur.whole >>= shift_count;
304 }
305
306 if (((unsigned long)(-1) / 100) < aperf_cur.split.lo) {
307 int shift_count = 7;
308 aperf_cur.split.lo >>= shift_count;
309 mperf_cur.split.lo >>= shift_count;
310 }
311
Dave Jones95dd7222006-10-18 00:41:48 -0400312 if (aperf_cur.split.lo && mperf_cur.split.lo)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700313 perf_percent = (aperf_cur.split.lo * 100) / mperf_cur.split.lo;
Dave Jones95dd7222006-10-18 00:41:48 -0400314 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700315 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700316
317#else
318 if (unlikely(((unsigned long)(-1) / 100) < aperf_cur.whole)) {
319 int shift_count = 7;
320 aperf_cur.whole >>= shift_count;
321 mperf_cur.whole >>= shift_count;
322 }
323
Dave Jones95dd7222006-10-18 00:41:48 -0400324 if (aperf_cur.whole && mperf_cur.whole)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700325 perf_percent = (aperf_cur.whole * 100) / mperf_cur.whole;
Dave Jones95dd7222006-10-18 00:41:48 -0400326 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700327 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700328
329#endif
330
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -0700331 retval = per_cpu(drv_data, policy->cpu)->max_freq * perf_percent / 100;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700332
333 put_cpu();
Mike Travisfc0e4742008-04-04 18:11:05 -0700334 set_cpus_allowed_ptr(current, &saved_mask);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700335
336 dprintk("cpu %d: performance percent %d\n", cpu, perf_percent);
337 return retval;
338}
339
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700340static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
341{
travis@sgi.comea348f32008-01-30 13:33:12 +0100342 struct acpi_cpufreq_data *data = per_cpu(drv_data, cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700343 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400344 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700345
346 dprintk("get_cur_freq_on_cpu (%d)\n", cpu);
347
348 if (unlikely(data == NULL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700349 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700350 return 0;
351 }
352
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400353 cached_freq = data->freq_table[data->acpi_data->state].frequency;
Mike Travis0bc3cc02008-07-24 18:21:31 -0700354 freq = extract_freq(get_cur_val(&cpumask_of_cpu(cpu)), data);
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400355 if (freq != cached_freq) {
356 /*
357 * The dreaded BIOS frequency change behind our back.
358 * Force set the frequency on next target call.
359 */
360 data->resume = 1;
361 }
362
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700363 dprintk("cur freq = %u\n", freq);
364
365 return freq;
366}
367
Mike Travisfc0e4742008-04-04 18:11:05 -0700368static unsigned int check_freqs(const cpumask_t *mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700369 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700370{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700371 unsigned int cur_freq;
372 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700373
Dave Jones95dd7222006-10-18 00:41:48 -0400374 for (i=0; i<100; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700375 cur_freq = extract_freq(get_cur_val(mask), data);
376 if (cur_freq == freq)
377 return 1;
378 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380 return 0;
381}
382
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700383static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700384 unsigned int target_freq, unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
travis@sgi.comea348f32008-01-30 13:33:12 +0100386 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700387 struct acpi_processor_performance *perf;
388 struct cpufreq_freqs freqs;
389 cpumask_t online_policy_cpus;
390 struct drv_cmd cmd;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800391 unsigned int next_state = 0; /* Index into freq_table */
392 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700393 unsigned int i;
394 int result = 0;
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800395 struct power_trace it;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700397 dprintk("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700399 if (unlikely(data == NULL ||
Dave Jones95dd7222006-10-18 00:41:48 -0400400 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700401 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500404 perf = data->acpi_data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700405 result = cpufreq_frequency_table_target(policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700406 data->freq_table,
407 target_freq,
408 relation, &next_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700409 if (unlikely(result))
410 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Andrew Morton7e1f19e2006-03-28 17:03:00 -0500412#ifdef CONFIG_HOTPLUG_CPU
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500413 /* cpufreq holds the hotplug lock, so we are safe from here on */
Rusty Russell835481d2009-01-04 05:18:06 -0800414 cpumask_and(&online_policy_cpus, cpu_online_mask, policy->cpus);
Andrew Morton7e1f19e2006-03-28 17:03:00 -0500415#else
416 online_policy_cpus = policy->cpus;
417#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500418
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700419 next_perf_state = data->freq_table[next_state].index;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700420 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700421 if (unlikely(data->resume)) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700422 dprintk("Called after resume, resetting to P%d\n",
423 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700424 data->resume = 0;
425 } else {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700426 dprintk("Already at target state (P%d)\n",
427 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700428 return 0;
429 }
430 }
431
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800432 trace_power_mark(&it, POWER_PSTATE, next_perf_state);
433
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700434 switch (data->cpu_feature) {
435 case SYSTEM_INTEL_MSR_CAPABLE:
436 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
437 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700438 cmd.val = (u32) perf->states[next_perf_state].control;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700439 break;
440 case SYSTEM_IO_CAPABLE:
441 cmd.type = SYSTEM_IO_CAPABLE;
442 cmd.addr.io.port = perf->control_register.address;
443 cmd.addr.io.bit_width = perf->control_register.bit_width;
444 cmd.val = (u32) perf->states[next_perf_state].control;
445 break;
446 default:
447 return -ENODEV;
448 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700449
450 cpus_clear(cmd.mask);
451
452 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
453 cmd.mask = online_policy_cpus;
454 else
455 cpu_set(policy->cpu, cmd.mask);
456
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800457 freqs.old = perf->states[perf->state].core_frequency * 1000;
458 freqs.new = data->freq_table[next_state].frequency;
Mike Travis334ef7a2008-05-12 21:21:13 +0200459 for_each_cpu_mask_nr(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700460 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500461 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
462 }
463
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700464 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500465
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700466 if (acpi_pstate_strict) {
Mike Travisfc0e4742008-04-04 18:11:05 -0700467 if (!check_freqs(&cmd.mask, freqs.new, data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700468 dprintk("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700469 policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700470 return -EAGAIN;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500471 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500472 }
473
Mike Travis334ef7a2008-05-12 21:21:13 +0200474 for_each_cpu_mask_nr(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700475 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500476 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
477 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700478 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500479
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700480 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700483static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
travis@sgi.comea348f32008-01-30 13:33:12 +0100485 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 dprintk("acpi_cpufreq_verify\n");
488
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700489 return cpufreq_frequency_table_verify(policy, data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700493acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700495 struct acpi_processor_performance *perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (cpu_khz) {
498 /* search the closest match to cpu_khz */
499 unsigned int i;
500 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500501 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Dave Jones95dd7222006-10-18 00:41:48 -0400503 for (i=0; i<(perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400505 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500507 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700508 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510 }
Dave Jones95dd7222006-10-18 00:41:48 -0400511 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700512 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500513 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500515 perf->state = 0;
516 return perf->states[0].core_frequency * 1000;
517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800520static void free_acpi_perf_data(void)
521{
522 unsigned int i;
523
524 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
525 for_each_possible_cpu(i)
526 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
527 ->shared_cpu_map);
528 free_percpu(acpi_perf_data);
529}
530
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500531/*
532 * acpi_cpufreq_early_init - initialize ACPI P-States library
533 *
534 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
535 * in order to determine correct frequency and voltage pairings. We can
536 * do _PDC and _PSD and find out the processor dependency for the
537 * actual init that will happen later...
538 */
Fenghua Yu50109292007-08-07 18:40:30 -0400539static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500540{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800541 unsigned int i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500542 dprintk("acpi_cpufreq_early_init\n");
543
Fenghua Yu50109292007-08-07 18:40:30 -0400544 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
545 if (!acpi_perf_data) {
546 dprintk("Memory allocation error for acpi_perf_data.\n");
547 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500548 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800549 for_each_possible_cpu(i) {
Mike Travis80855f72008-12-31 18:08:47 -0800550 if (!alloc_cpumask_var_node(
551 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
552 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800553
554 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
555 free_acpi_perf_data();
556 return -ENOMEM;
557 }
558 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500559
560 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700561 acpi_processor_preregister_performance(acpi_perf_data);
562 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500563}
564
Dave Jones95625b82006-10-21 01:37:39 -0400565#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700566/*
567 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
568 * or do it in BIOS firmware and won't inform about it to OS. If not
569 * detected, this has a side effect of making CPU run at a different speed
570 * than OS intended it to run at. Detect it and handle it cleanly.
571 */
572static int bios_with_sw_any_bug;
573
Jeff Garzik18552562007-10-03 15:15:40 -0400574static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700575{
576 bios_with_sw_any_bug = 1;
577 return 0;
578}
579
Jeff Garzik18552562007-10-03 15:15:40 -0400580static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700581 {
582 .callback = sw_any_bug_found,
583 .ident = "Supermicro Server X6DLP",
584 .matches = {
585 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
586 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
587 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
588 },
589 },
590 { }
591};
Dave Jones95625b82006-10-21 01:37:39 -0400592#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700593
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700594static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700596 unsigned int i;
597 unsigned int valid_states = 0;
598 unsigned int cpu = policy->cpu;
599 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700600 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200601 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700602 struct acpi_processor_performance *perf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 dprintk("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700606 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700608 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Fenghua Yu50109292007-08-07 18:40:30 -0400610 data->acpi_data = percpu_ptr(acpi_perf_data, cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100611 per_cpu(drv_data, cpu) = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700612
Dave Jones95dd7222006-10-18 00:41:48 -0400613 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700614 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500616 result = acpi_processor_register_performance(data->acpi_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (result)
618 goto err_free;
619
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500620 perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500621 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400622
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400623 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400624 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400625 * coordination is required.
626 */
627 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700628 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800629 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700630 }
Rusty Russell835481d2009-01-04 05:18:06 -0800631 cpumask_copy(policy->related_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700632
633#ifdef CONFIG_SMP
634 dmi_check_system(sw_any_bug_dmi_table);
Rusty Russell835481d2009-01-04 05:18:06 -0800635 if (bios_with_sw_any_bug && cpumask_weight(policy->cpus) == 1) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700636 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Rusty Russell835481d2009-01-04 05:18:06 -0800637 cpumask_copy(policy->cpus, cpu_core_mask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700638 }
639#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500642 if (perf->state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 dprintk("No P-States\n");
644 result = -ENODEV;
645 goto err_unreg;
646 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500647
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700648 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 result = -ENODEV;
650 goto err_unreg;
651 }
652
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700653 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700654 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700655 dprintk("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700656 data->cpu_feature = SYSTEM_IO_CAPABLE;
657 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700658 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700659 dprintk("HARDWARE addr space\n");
660 if (!check_est_cpu(cpu)) {
661 result = -ENODEV;
662 goto err_unreg;
663 }
664 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700665 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700666 default:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700667 dprintk("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700668 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700669 result = -ENODEV;
670 goto err_unreg;
671 }
672
Dave Jones95dd7222006-10-18 00:41:48 -0400673 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
674 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (!data->freq_table) {
676 result = -ENOMEM;
677 goto err_unreg;
678 }
679
680 /* detect transition latency */
681 policy->cpuinfo.transition_latency = 0;
Dave Jones95dd7222006-10-18 00:41:48 -0400682 for (i=0; i<perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700683 if ((perf->states[i].transition_latency * 1000) >
684 policy->cpuinfo.transition_latency)
685 policy->cpuinfo.transition_latency =
686 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700689 data->max_freq = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /* table init */
Dave Jones95dd7222006-10-18 00:41:48 -0400691 for (i=0; i<perf->state_count; i++) {
Zhang Rui3cdf5522007-06-13 21:24:02 -0400692 if (i>0 && perf->states[i].core_frequency >=
693 data->freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700694 continue;
695
696 data->freq_table[valid_states].index = i;
697 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700698 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700699 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
Venkatesh Pallipadi3d4a7ef2006-11-13 17:47:44 -0800701 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800702 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400705 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Mattia Dongilia507ac42006-12-15 19:52:45 +0100708 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700709 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700710 /* Current speed is unknown and not detectable by IO port */
711 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
712 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700713 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700714 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Mattia Dongilia507ac42006-12-15 19:52:45 +0100715 policy->cur = get_cur_freq_on_cpu(cpu);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700716 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700717 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700718 break;
719 }
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /* notify BIOS that we exist */
722 acpi_processor_notify_smm(THIS_MODULE);
723
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700724 /* Check for APERF/MPERF support in hardware */
725 if (c->x86_vendor == X86_VENDOR_INTEL && c->cpuid_level >= 6) {
726 unsigned int ecx;
727 ecx = cpuid_ecx(6);
Dave Jones95dd7222006-10-18 00:41:48 -0400728 if (ecx & CPUID_6_ECX_APERFMPERF_CAPABILITY)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700729 acpi_cpufreq_driver.getavg = get_measured_perf;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700730 }
731
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700732 dprintk("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500733 for (i = 0; i < perf->state_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700735 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500736 (u32) perf->states[i].core_frequency,
737 (u32) perf->states[i].power,
738 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700741
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400742 /*
743 * the first call to ->target() should result in us actually
744 * writing something to the appropriate registers.
745 */
746 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700747
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700748 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Dave Jones95dd7222006-10-18 00:41:48 -0400750err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400752err_unreg:
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500753 acpi_processor_unregister_performance(perf, cpu);
Dave Jones95dd7222006-10-18 00:41:48 -0400754err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 kfree(data);
travis@sgi.comea348f32008-01-30 13:33:12 +0100756 per_cpu(drv_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700758 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700761static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
travis@sgi.comea348f32008-01-30 13:33:12 +0100763 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 dprintk("acpi_cpufreq_cpu_exit\n");
766
767 if (data) {
768 cpufreq_frequency_table_put_attr(policy->cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100769 per_cpu(drv_data, policy->cpu) = NULL;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700770 acpi_processor_unregister_performance(data->acpi_data,
771 policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 kfree(data);
773 }
774
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700775 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700778static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
travis@sgi.comea348f32008-01-30 13:33:12 +0100780 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 dprintk("acpi_cpufreq_resume\n");
783
784 data->resume = 1;
785
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700786 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700789static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 &cpufreq_freq_attr_scaling_available_freqs,
791 NULL,
792};
793
794static struct cpufreq_driver acpi_cpufreq_driver = {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700795 .verify = acpi_cpufreq_verify,
796 .target = acpi_cpufreq_target,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700797 .init = acpi_cpufreq_cpu_init,
798 .exit = acpi_cpufreq_cpu_exit,
799 .resume = acpi_cpufreq_resume,
800 .name = "acpi-cpufreq",
801 .owner = THIS_MODULE,
802 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803};
804
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700805static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Fenghua Yu50109292007-08-07 18:40:30 -0400807 int ret;
808
Yinghai Luee297532008-09-24 19:04:31 -0700809 if (acpi_disabled)
810 return 0;
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 dprintk("acpi_cpufreq_init\n");
813
Fenghua Yu50109292007-08-07 18:40:30 -0400814 ret = acpi_cpufreq_early_init();
815 if (ret)
816 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500817
Akinobu Mita847aef62008-07-14 11:59:44 +0900818 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
819 if (ret)
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800820 free_acpi_perf_data();
Akinobu Mita847aef62008-07-14 11:59:44 +0900821
822 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700825static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
827 dprintk("acpi_cpufreq_exit\n");
828
829 cpufreq_unregister_driver(&acpi_cpufreq_driver);
830
Fenghua Yu50109292007-08-07 18:40:30 -0400831 free_percpu(acpi_perf_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400834module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700835MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -0400836 "value 0 or non-zero. non-zero -> strict ACPI checks are "
837 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839late_initcall(acpi_cpufreq_init);
840module_exit(acpi_cpufreq_exit);
841
842MODULE_ALIAS("acpi");