blob: 60d20cf427aa19748f904c9626950b7d5ce0dac0 [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
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070070static struct acpi_cpufreq_data *drv_data[NR_CPUS];
71static struct acpi_processor_performance *acpi_perf_data[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static struct cpufreq_driver acpi_cpufreq_driver;
74
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040075static unsigned int acpi_pstate_strict;
76
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070077static int check_est_cpu(unsigned int cpuid)
78{
79 struct cpuinfo_x86 *cpu = &cpu_data[cpuid];
80
81 if (cpu->x86_vendor != X86_VENDOR_INTEL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070082 !cpu_has(cpu, X86_FEATURE_EST))
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070083 return 0;
84
85 return 1;
86}
87
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070088static unsigned extract_io(u32 value, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070089{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070090 struct acpi_processor_performance *perf;
91 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070092
93 perf = data->acpi_data;
94
Dave Jones95dd7222006-10-18 00:41:48 -040095 for (i=0; i<perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070096 if (value == perf->states[i].status)
97 return data->freq_table[i].frequency;
98 }
99 return 0;
100}
101
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700102static unsigned extract_msr(u32 msr, struct acpi_cpufreq_data *data)
103{
104 int i;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700105 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700106
107 msr &= INTEL_MSR_RANGE;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700108 perf = data->acpi_data;
109
Dave Jones95dd7222006-10-18 00:41:48 -0400110 for (i=0; data->freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700111 if (msr == perf->states[data->freq_table[i].index].status)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700112 return data->freq_table[i].frequency;
113 }
114 return data->freq_table[0].frequency;
115}
116
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700117static unsigned extract_freq(u32 val, struct acpi_cpufreq_data *data)
118{
119 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700120 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700121 return extract_msr(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700122 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700123 return extract_io(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700124 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700125 return 0;
126 }
127}
128
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700129static void wrport(u16 port, u8 bit_width, u32 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Dave Jones95dd7222006-10-18 00:41:48 -0400131 if (bit_width <= 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 outb(value, port);
Dave Jones95dd7222006-10-18 00:41:48 -0400133 else if (bit_width <= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 outw(value, port);
Dave Jones95dd7222006-10-18 00:41:48 -0400135 else if (bit_width <= 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 outl(value, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700139static void rdport(u16 port, u8 bit_width, u32 * ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 *ret = 0;
Dave Jones95dd7222006-10-18 00:41:48 -0400142 if (bit_width <= 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 *ret = inb(port);
Dave Jones95dd7222006-10-18 00:41:48 -0400144 else if (bit_width <= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 *ret = inw(port);
Dave Jones95dd7222006-10-18 00:41:48 -0400146 else if (bit_width <= 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 *ret = inl(port);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700148}
149
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700150struct msr_addr {
151 u32 reg;
152};
153
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700154struct io_addr {
155 u16 port;
156 u8 bit_width;
157};
158
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700159typedef union {
160 struct msr_addr msr;
161 struct io_addr io;
162} drv_addr_union;
163
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700164struct drv_cmd {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700165 unsigned int type;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700166 cpumask_t mask;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700167 drv_addr_union addr;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700168 u32 val;
169};
170
171static void do_drv_read(struct drv_cmd *cmd)
172{
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700173 u32 h;
174
175 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700176 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700177 rdmsr(cmd->addr.msr.reg, cmd->val, h);
178 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700179 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700180 rdport(cmd->addr.io.port, cmd->addr.io.bit_width, &cmd->val);
181 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700182 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700183 break;
184 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700185}
186
187static void do_drv_write(struct drv_cmd *cmd)
188{
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700189 u32 h = 0;
190
191 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700192 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700193 wrmsr(cmd->addr.msr.reg, cmd->val, h);
194 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700195 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700196 wrport(cmd->addr.io.port, cmd->addr.io.bit_width, cmd->val);
197 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700198 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700199 break;
200 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700201}
202
Dave Jones95dd7222006-10-18 00:41:48 -0400203static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700204{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700205 cpumask_t saved_mask = current->cpus_allowed;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700206 cmd->val = 0;
207
208 set_cpus_allowed(current, cmd->mask);
209 do_drv_read(cmd);
210 set_cpus_allowed(current, saved_mask);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700211}
212
213static void drv_write(struct drv_cmd *cmd)
214{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700215 cpumask_t saved_mask = current->cpus_allowed;
216 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700217
218 for_each_cpu_mask(i, cmd->mask) {
219 set_cpus_allowed(current, cpumask_of_cpu(i));
220 do_drv_write(cmd);
221 }
222
223 set_cpus_allowed(current, saved_mask);
224 return;
225}
226
227static u32 get_cur_val(cpumask_t mask)
228{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700229 struct acpi_processor_performance *perf;
230 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700231
232 if (unlikely(cpus_empty(mask)))
233 return 0;
234
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700235 switch (drv_data[first_cpu(mask)]->cpu_feature) {
236 case SYSTEM_INTEL_MSR_CAPABLE:
237 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
238 cmd.addr.msr.reg = MSR_IA32_PERF_STATUS;
239 break;
240 case SYSTEM_IO_CAPABLE:
241 cmd.type = SYSTEM_IO_CAPABLE;
242 perf = drv_data[first_cpu(mask)]->acpi_data;
243 cmd.addr.io.port = perf->control_register.address;
244 cmd.addr.io.bit_width = perf->control_register.bit_width;
245 break;
246 default:
247 return 0;
248 }
249
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700250 cmd.mask = mask;
251
252 drv_read(&cmd);
253
254 dprintk("get_cur_val = %u\n", cmd.val);
255
256 return cmd.val;
257}
258
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700259/*
260 * Return the measured active (C0) frequency on this CPU since last call
261 * to this function.
262 * Input: cpu number
263 * Return: Average CPU frequency in terms of max frequency (zero on error)
264 *
265 * We use IA32_MPERF and IA32_APERF MSRs to get the measured performance
266 * over a period of time, while CPU is in C0 state.
267 * IA32_MPERF counts at the rate of max advertised frequency
268 * IA32_APERF counts at the rate of actual CPU frequency
269 * Only IA32_APERF/IA32_MPERF ratio is architecturally defined and
270 * no meaning should be associated with absolute values of these MSRs.
271 */
272static unsigned int get_measured_perf(unsigned int cpu)
273{
274 union {
275 struct {
276 u32 lo;
277 u32 hi;
278 } split;
279 u64 whole;
280 } aperf_cur, mperf_cur;
281
282 cpumask_t saved_mask;
283 unsigned int perf_percent;
284 unsigned int retval;
285
286 saved_mask = current->cpus_allowed;
287 set_cpus_allowed(current, cpumask_of_cpu(cpu));
288 if (get_cpu() != cpu) {
289 /* We were not able to run on requested processor */
290 put_cpu();
291 return 0;
292 }
293
294 rdmsr(MSR_IA32_APERF, aperf_cur.split.lo, aperf_cur.split.hi);
295 rdmsr(MSR_IA32_MPERF, mperf_cur.split.lo, mperf_cur.split.hi);
296
297 wrmsr(MSR_IA32_APERF, 0,0);
298 wrmsr(MSR_IA32_MPERF, 0,0);
299
300#ifdef __i386__
301 /*
302 * We dont want to do 64 bit divide with 32 bit kernel
303 * Get an approximate value. Return failure in case we cannot get
304 * an approximate value.
305 */
306 if (unlikely(aperf_cur.split.hi || mperf_cur.split.hi)) {
307 int shift_count;
308 u32 h;
309
310 h = max_t(u32, aperf_cur.split.hi, mperf_cur.split.hi);
311 shift_count = fls(h);
312
313 aperf_cur.whole >>= shift_count;
314 mperf_cur.whole >>= shift_count;
315 }
316
317 if (((unsigned long)(-1) / 100) < aperf_cur.split.lo) {
318 int shift_count = 7;
319 aperf_cur.split.lo >>= shift_count;
320 mperf_cur.split.lo >>= shift_count;
321 }
322
Dave Jones95dd7222006-10-18 00:41:48 -0400323 if (aperf_cur.split.lo && mperf_cur.split.lo)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700324 perf_percent = (aperf_cur.split.lo * 100) / mperf_cur.split.lo;
Dave Jones95dd7222006-10-18 00:41:48 -0400325 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700326 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700327
328#else
329 if (unlikely(((unsigned long)(-1) / 100) < aperf_cur.whole)) {
330 int shift_count = 7;
331 aperf_cur.whole >>= shift_count;
332 mperf_cur.whole >>= shift_count;
333 }
334
Dave Jones95dd7222006-10-18 00:41:48 -0400335 if (aperf_cur.whole && mperf_cur.whole)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700336 perf_percent = (aperf_cur.whole * 100) / mperf_cur.whole;
Dave Jones95dd7222006-10-18 00:41:48 -0400337 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700338 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700339
340#endif
341
342 retval = drv_data[cpu]->max_freq * perf_percent / 100;
343
344 put_cpu();
345 set_cpus_allowed(current, saved_mask);
346
347 dprintk("cpu %d: performance percent %d\n", cpu, perf_percent);
348 return retval;
349}
350
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700351static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
352{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700353 struct acpi_cpufreq_data *data = drv_data[cpu];
354 unsigned int freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700355
356 dprintk("get_cur_freq_on_cpu (%d)\n", cpu);
357
358 if (unlikely(data == NULL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700359 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700360 return 0;
361 }
362
363 freq = extract_freq(get_cur_val(cpumask_of_cpu(cpu)), data);
364 dprintk("cur freq = %u\n", freq);
365
366 return freq;
367}
368
369static unsigned int check_freqs(cpumask_t mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700370 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700371{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700372 unsigned int cur_freq;
373 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700374
Dave Jones95dd7222006-10-18 00:41:48 -0400375 for (i=0; i<100; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700376 cur_freq = extract_freq(get_cur_val(mask), data);
377 if (cur_freq == freq)
378 return 1;
379 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381 return 0;
382}
383
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700384static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700385 unsigned int target_freq, unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700387 struct acpi_cpufreq_data *data = drv_data[policy->cpu];
388 struct acpi_processor_performance *perf;
389 struct cpufreq_freqs freqs;
390 cpumask_t online_policy_cpus;
391 struct drv_cmd cmd;
392 unsigned int msr;
393 unsigned int next_state = 0;
394 unsigned int next_perf_state = 0;
395 unsigned int i;
396 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700398 dprintk("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700400 if (unlikely(data == NULL ||
Dave Jones95dd7222006-10-18 00:41:48 -0400401 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700402 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500405 perf = data->acpi_data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700406 result = cpufreq_frequency_table_target(policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700407 data->freq_table,
408 target_freq,
409 relation, &next_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700410 if (unlikely(result))
411 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Andrew Morton7e1f19e2006-03-28 17:03:00 -0500413#ifdef CONFIG_HOTPLUG_CPU
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500414 /* cpufreq holds the hotplug lock, so we are safe from here on */
415 cpus_and(online_policy_cpus, cpu_online_map, policy->cpus);
Andrew Morton7e1f19e2006-03-28 17:03:00 -0500416#else
417 online_policy_cpus = policy->cpus;
418#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500419
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700420 next_perf_state = data->freq_table[next_state].index;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700421 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700422 if (unlikely(data->resume)) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700423 dprintk("Called after resume, resetting to P%d\n",
424 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700425 data->resume = 0;
426 } else {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700427 dprintk("Already at target state (P%d)\n",
428 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700429 return 0;
430 }
431 }
432
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700433 switch (data->cpu_feature) {
434 case SYSTEM_INTEL_MSR_CAPABLE:
435 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
436 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
437 msr =
438 (u32) perf->states[next_perf_state].
439 control & INTEL_MSR_RANGE;
440 cmd.val = (cmd.val & ~INTEL_MSR_RANGE) | msr;
441 break;
442 case SYSTEM_IO_CAPABLE:
443 cmd.type = SYSTEM_IO_CAPABLE;
444 cmd.addr.io.port = perf->control_register.address;
445 cmd.addr.io.bit_width = perf->control_register.bit_width;
446 cmd.val = (u32) perf->states[next_perf_state].control;
447 break;
448 default:
449 return -ENODEV;
450 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700451
452 cpus_clear(cmd.mask);
453
454 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
455 cmd.mask = online_policy_cpus;
456 else
457 cpu_set(policy->cpu, cmd.mask);
458
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700459 freqs.old = data->freq_table[perf->state].frequency;
460 freqs.new = data->freq_table[next_perf_state].frequency;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700461 for_each_cpu_mask(i, cmd.mask) {
462 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500463 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
464 }
465
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700466 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500467
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700468 if (acpi_pstate_strict) {
469 if (!check_freqs(cmd.mask, freqs.new, data)) {
470 dprintk("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700471 policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700472 return -EAGAIN;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500473 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500474 }
475
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700476 for_each_cpu_mask(i, cmd.mask) {
477 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500478 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
479 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700480 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500481
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700482 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700485static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700487 struct acpi_cpufreq_data *data = drv_data[policy->cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 dprintk("acpi_cpufreq_verify\n");
490
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700491 return cpufreq_frequency_table_verify(policy, data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700495acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700497 struct acpi_processor_performance *perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (cpu_khz) {
500 /* search the closest match to cpu_khz */
501 unsigned int i;
502 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500503 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Dave Jones95dd7222006-10-18 00:41:48 -0400505 for (i=0; i<(perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400507 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500509 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700510 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 }
Dave Jones95dd7222006-10-18 00:41:48 -0400513 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700514 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500515 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500517 perf->state = 0;
518 return perf->states[0].core_frequency * 1000;
519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500522/*
523 * acpi_cpufreq_early_init - initialize ACPI P-States library
524 *
525 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
526 * in order to determine correct frequency and voltage pairings. We can
527 * do _PDC and _PSD and find out the processor dependency for the
528 * actual init that will happen later...
529 */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700530static int acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500531{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700532 struct acpi_processor_performance *data;
533 cpumask_t covered;
534 unsigned int i, j;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500535
536 dprintk("acpi_cpufreq_early_init\n");
537
Andrew Mortonfb1bb342006-06-25 05:46:43 -0700538 for_each_possible_cpu(i) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700539 data = kzalloc(sizeof(struct acpi_processor_performance),
540 GFP_KERNEL);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500541 if (!data) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700542 for_each_cpu_mask(j, covered) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500543 kfree(acpi_perf_data[j]);
544 acpi_perf_data[j] = NULL;
545 }
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700546 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500547 }
548 acpi_perf_data[i] = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700549 cpu_set(i, covered);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500550 }
551
552 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700553 acpi_processor_preregister_performance(acpi_perf_data);
554 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500555}
556
Dave Jones95625b82006-10-21 01:37:39 -0400557#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700558/*
559 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
560 * or do it in BIOS firmware and won't inform about it to OS. If not
561 * detected, this has a side effect of making CPU run at a different speed
562 * than OS intended it to run at. Detect it and handle it cleanly.
563 */
564static int bios_with_sw_any_bug;
565
Venkatesh Pallipadi0497c8c2006-09-25 11:23:32 -0700566static int sw_any_bug_found(struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700567{
568 bios_with_sw_any_bug = 1;
569 return 0;
570}
571
Venkatesh Pallipadi0497c8c2006-09-25 11:23:32 -0700572static struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700573 {
574 .callback = sw_any_bug_found,
575 .ident = "Supermicro Server X6DLP",
576 .matches = {
577 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
578 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
579 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
580 },
581 },
582 { }
583};
Dave Jones95625b82006-10-21 01:37:39 -0400584#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700585
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700586static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700588 unsigned int i;
589 unsigned int valid_states = 0;
590 unsigned int cpu = policy->cpu;
591 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700592 unsigned int result = 0;
593 struct cpuinfo_x86 *c = &cpu_data[policy->cpu];
594 struct acpi_processor_performance *perf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 dprintk("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500598 if (!acpi_perf_data[cpu])
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700599 return -ENODEV;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500600
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700601 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700603 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500605 data->acpi_data = acpi_perf_data[cpu];
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700606 drv_data[cpu] = data;
607
Dave Jones95dd7222006-10-18 00:41:48 -0400608 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700609 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500611 result = acpi_processor_register_performance(data->acpi_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (result)
613 goto err_free;
614
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500615 perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500616 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400617
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400618 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400619 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400620 * coordination is required.
621 */
622 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700623 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400624 policy->cpus = perf->shared_cpu_map;
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700625 }
626
627#ifdef CONFIG_SMP
628 dmi_check_system(sw_any_bug_dmi_table);
629 if (bios_with_sw_any_bug && cpus_weight(policy->cpus) == 1) {
630 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
631 policy->cpus = cpu_core_map[cpu];
632 }
633#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500636 if (perf->state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 dprintk("No P-States\n");
638 result = -ENODEV;
639 goto err_unreg;
640 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500641
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700642 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 result = -ENODEV;
644 goto err_unreg;
645 }
646
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700647 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700648 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700649 dprintk("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700650 data->cpu_feature = SYSTEM_IO_CAPABLE;
651 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700652 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700653 dprintk("HARDWARE addr space\n");
654 if (!check_est_cpu(cpu)) {
655 result = -ENODEV;
656 goto err_unreg;
657 }
658 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700659 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700660 default:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700661 dprintk("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700662 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700663 result = -ENODEV;
664 goto err_unreg;
665 }
666
Dave Jones95dd7222006-10-18 00:41:48 -0400667 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
668 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (!data->freq_table) {
670 result = -ENOMEM;
671 goto err_unreg;
672 }
673
674 /* detect transition latency */
675 policy->cpuinfo.transition_latency = 0;
Dave Jones95dd7222006-10-18 00:41:48 -0400676 for (i=0; i<perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700677 if ((perf->states[i].transition_latency * 1000) >
678 policy->cpuinfo.transition_latency)
679 policy->cpuinfo.transition_latency =
680 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
683
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700684 data->max_freq = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /* table init */
Dave Jones95dd7222006-10-18 00:41:48 -0400686 for (i=0; i<perf->state_count; i++) {
687 if (i>0 && perf->states[i].core_frequency ==
688 perf->states[i-1].core_frequency)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700689 continue;
690
691 data->freq_table[valid_states].index = i;
692 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700693 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700694 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700696 data->freq_table[perf->state_count].frequency = CPUFREQ_TABLE_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400699 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700702 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700703 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700704 /* Current speed is unknown and not detectable by IO port */
705 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
706 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700707 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700708 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700709 get_cur_freq_on_cpu(cpu);
710 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700711 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700712 break;
713 }
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 /* notify BIOS that we exist */
716 acpi_processor_notify_smm(THIS_MODULE);
717
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700718 /* Check for APERF/MPERF support in hardware */
719 if (c->x86_vendor == X86_VENDOR_INTEL && c->cpuid_level >= 6) {
720 unsigned int ecx;
721 ecx = cpuid_ecx(6);
Dave Jones95dd7222006-10-18 00:41:48 -0400722 if (ecx & CPUID_6_ECX_APERFMPERF_CAPABILITY)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700723 acpi_cpufreq_driver.getavg = get_measured_perf;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700724 }
725
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700726 dprintk("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500727 for (i = 0; i < perf->state_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700729 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500730 (u32) perf->states[i].core_frequency,
731 (u32) perf->states[i].power,
732 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700735
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400736 /*
737 * the first call to ->target() should result in us actually
738 * writing something to the appropriate registers.
739 */
740 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700741
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700742 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Dave Jones95dd7222006-10-18 00:41:48 -0400744err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400746err_unreg:
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500747 acpi_processor_unregister_performance(perf, cpu);
Dave Jones95dd7222006-10-18 00:41:48 -0400748err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 kfree(data);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700750 drv_data[cpu] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700752 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700755static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700757 struct acpi_cpufreq_data *data = drv_data[policy->cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 dprintk("acpi_cpufreq_cpu_exit\n");
760
761 if (data) {
762 cpufreq_frequency_table_put_attr(policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700763 drv_data[policy->cpu] = NULL;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700764 acpi_processor_unregister_performance(data->acpi_data,
765 policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 kfree(data);
767 }
768
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700769 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700772static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700774 struct acpi_cpufreq_data *data = drv_data[policy->cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 dprintk("acpi_cpufreq_resume\n");
777
778 data->resume = 1;
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 struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 &cpufreq_freq_attr_scaling_available_freqs,
785 NULL,
786};
787
788static struct cpufreq_driver acpi_cpufreq_driver = {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700789 .verify = acpi_cpufreq_verify,
790 .target = acpi_cpufreq_target,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700791 .init = acpi_cpufreq_cpu_init,
792 .exit = acpi_cpufreq_cpu_exit,
793 .resume = acpi_cpufreq_resume,
794 .name = "acpi-cpufreq",
795 .owner = THIS_MODULE,
796 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797};
798
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700799static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 dprintk("acpi_cpufreq_init\n");
802
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700803 acpi_cpufreq_early_init();
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500804
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700805 return cpufreq_register_driver(&acpi_cpufreq_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700808static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700810 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 dprintk("acpi_cpufreq_exit\n");
812
813 cpufreq_unregister_driver(&acpi_cpufreq_driver);
814
Andrew Mortonfb1bb342006-06-25 05:46:43 -0700815 for_each_possible_cpu(i) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500816 kfree(acpi_perf_data[i]);
817 acpi_perf_data[i] = NULL;
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return;
820}
821
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400822module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700823MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -0400824 "value 0 or non-zero. non-zero -> strict ACPI checks are "
825 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827late_initcall(acpi_cpufreq_init);
828module_exit(acpi_cpufreq_exit);
829
830MODULE_ALIAS("acpi");