blob: 9ba2b69fc64aeb4c1fc14fdaa2a4715cace8d181 [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 Pallipadidde9f7b2006-10-03 12:33:14 -0700129struct msr_addr {
130 u32 reg;
131};
132
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700133struct io_addr {
134 u16 port;
135 u8 bit_width;
136};
137
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700138typedef union {
139 struct msr_addr msr;
140 struct io_addr io;
141} drv_addr_union;
142
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700143struct drv_cmd {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700144 unsigned int type;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700145 cpumask_t mask;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700146 drv_addr_union addr;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700147 u32 val;
148};
149
150static void do_drv_read(struct drv_cmd *cmd)
151{
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700152 u32 h;
153
154 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700155 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700156 rdmsr(cmd->addr.msr.reg, cmd->val, h);
157 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700158 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800159 acpi_os_read_port((acpi_io_address)cmd->addr.io.port,
160 &cmd->val,
161 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700162 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700163 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700164 break;
165 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700166}
167
168static void do_drv_write(struct drv_cmd *cmd)
169{
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700170 u32 h = 0;
171
172 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700173 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700174 wrmsr(cmd->addr.msr.reg, cmd->val, h);
175 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700176 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800177 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
178 cmd->val,
179 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700180 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700181 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700182 break;
183 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700184}
185
Dave Jones95dd7222006-10-18 00:41:48 -0400186static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700187{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700188 cpumask_t saved_mask = current->cpus_allowed;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700189 cmd->val = 0;
190
191 set_cpus_allowed(current, cmd->mask);
192 do_drv_read(cmd);
193 set_cpus_allowed(current, saved_mask);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700194}
195
196static void drv_write(struct drv_cmd *cmd)
197{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700198 cpumask_t saved_mask = current->cpus_allowed;
199 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700200
201 for_each_cpu_mask(i, cmd->mask) {
202 set_cpus_allowed(current, cpumask_of_cpu(i));
203 do_drv_write(cmd);
204 }
205
206 set_cpus_allowed(current, saved_mask);
207 return;
208}
209
210static u32 get_cur_val(cpumask_t mask)
211{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700212 struct acpi_processor_performance *perf;
213 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700214
215 if (unlikely(cpus_empty(mask)))
216 return 0;
217
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700218 switch (drv_data[first_cpu(mask)]->cpu_feature) {
219 case SYSTEM_INTEL_MSR_CAPABLE:
220 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
221 cmd.addr.msr.reg = MSR_IA32_PERF_STATUS;
222 break;
223 case SYSTEM_IO_CAPABLE:
224 cmd.type = SYSTEM_IO_CAPABLE;
225 perf = drv_data[first_cpu(mask)]->acpi_data;
226 cmd.addr.io.port = perf->control_register.address;
227 cmd.addr.io.bit_width = perf->control_register.bit_width;
228 break;
229 default:
230 return 0;
231 }
232
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700233 cmd.mask = mask;
234
235 drv_read(&cmd);
236
237 dprintk("get_cur_val = %u\n", cmd.val);
238
239 return cmd.val;
240}
241
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700242/*
243 * Return the measured active (C0) frequency on this CPU since last call
244 * to this function.
245 * Input: cpu number
246 * Return: Average CPU frequency in terms of max frequency (zero on error)
247 *
248 * We use IA32_MPERF and IA32_APERF MSRs to get the measured performance
249 * over a period of time, while CPU is in C0 state.
250 * IA32_MPERF counts at the rate of max advertised frequency
251 * IA32_APERF counts at the rate of actual CPU frequency
252 * Only IA32_APERF/IA32_MPERF ratio is architecturally defined and
253 * no meaning should be associated with absolute values of these MSRs.
254 */
255static unsigned int get_measured_perf(unsigned int cpu)
256{
257 union {
258 struct {
259 u32 lo;
260 u32 hi;
261 } split;
262 u64 whole;
263 } aperf_cur, mperf_cur;
264
265 cpumask_t saved_mask;
266 unsigned int perf_percent;
267 unsigned int retval;
268
269 saved_mask = current->cpus_allowed;
270 set_cpus_allowed(current, cpumask_of_cpu(cpu));
271 if (get_cpu() != cpu) {
272 /* We were not able to run on requested processor */
273 put_cpu();
274 return 0;
275 }
276
277 rdmsr(MSR_IA32_APERF, aperf_cur.split.lo, aperf_cur.split.hi);
278 rdmsr(MSR_IA32_MPERF, mperf_cur.split.lo, mperf_cur.split.hi);
279
280 wrmsr(MSR_IA32_APERF, 0,0);
281 wrmsr(MSR_IA32_MPERF, 0,0);
282
283#ifdef __i386__
284 /*
285 * We dont want to do 64 bit divide with 32 bit kernel
286 * Get an approximate value. Return failure in case we cannot get
287 * an approximate value.
288 */
289 if (unlikely(aperf_cur.split.hi || mperf_cur.split.hi)) {
290 int shift_count;
291 u32 h;
292
293 h = max_t(u32, aperf_cur.split.hi, mperf_cur.split.hi);
294 shift_count = fls(h);
295
296 aperf_cur.whole >>= shift_count;
297 mperf_cur.whole >>= shift_count;
298 }
299
300 if (((unsigned long)(-1) / 100) < aperf_cur.split.lo) {
301 int shift_count = 7;
302 aperf_cur.split.lo >>= shift_count;
303 mperf_cur.split.lo >>= shift_count;
304 }
305
Dave Jones95dd7222006-10-18 00:41:48 -0400306 if (aperf_cur.split.lo && mperf_cur.split.lo)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700307 perf_percent = (aperf_cur.split.lo * 100) / mperf_cur.split.lo;
Dave Jones95dd7222006-10-18 00:41:48 -0400308 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700309 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700310
311#else
312 if (unlikely(((unsigned long)(-1) / 100) < aperf_cur.whole)) {
313 int shift_count = 7;
314 aperf_cur.whole >>= shift_count;
315 mperf_cur.whole >>= shift_count;
316 }
317
Dave Jones95dd7222006-10-18 00:41:48 -0400318 if (aperf_cur.whole && mperf_cur.whole)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700319 perf_percent = (aperf_cur.whole * 100) / mperf_cur.whole;
Dave Jones95dd7222006-10-18 00:41:48 -0400320 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700321 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700322
323#endif
324
325 retval = drv_data[cpu]->max_freq * perf_percent / 100;
326
327 put_cpu();
328 set_cpus_allowed(current, saved_mask);
329
330 dprintk("cpu %d: performance percent %d\n", cpu, perf_percent);
331 return retval;
332}
333
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700334static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
335{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700336 struct acpi_cpufreq_data *data = drv_data[cpu];
337 unsigned int freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700338
339 dprintk("get_cur_freq_on_cpu (%d)\n", cpu);
340
341 if (unlikely(data == NULL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700342 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700343 return 0;
344 }
345
346 freq = extract_freq(get_cur_val(cpumask_of_cpu(cpu)), data);
347 dprintk("cur freq = %u\n", freq);
348
349 return freq;
350}
351
352static unsigned int check_freqs(cpumask_t mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700353 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700354{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700355 unsigned int cur_freq;
356 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700357
Dave Jones95dd7222006-10-18 00:41:48 -0400358 for (i=0; i<100; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700359 cur_freq = extract_freq(get_cur_val(mask), data);
360 if (cur_freq == freq)
361 return 1;
362 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364 return 0;
365}
366
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700367static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700368 unsigned int target_freq, unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700370 struct acpi_cpufreq_data *data = drv_data[policy->cpu];
371 struct acpi_processor_performance *perf;
372 struct cpufreq_freqs freqs;
373 cpumask_t online_policy_cpus;
374 struct drv_cmd cmd;
375 unsigned int msr;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800376 unsigned int next_state = 0; /* Index into freq_table */
377 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700378 unsigned int i;
379 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700381 dprintk("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700383 if (unlikely(data == NULL ||
Dave Jones95dd7222006-10-18 00:41:48 -0400384 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700385 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500388 perf = data->acpi_data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700389 result = cpufreq_frequency_table_target(policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700390 data->freq_table,
391 target_freq,
392 relation, &next_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700393 if (unlikely(result))
394 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Andrew Morton7e1f19e2006-03-28 17:03:00 -0500396#ifdef CONFIG_HOTPLUG_CPU
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500397 /* cpufreq holds the hotplug lock, so we are safe from here on */
398 cpus_and(online_policy_cpus, cpu_online_map, policy->cpus);
Andrew Morton7e1f19e2006-03-28 17:03:00 -0500399#else
400 online_policy_cpus = policy->cpus;
401#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500402
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700403 next_perf_state = data->freq_table[next_state].index;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700404 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700405 if (unlikely(data->resume)) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700406 dprintk("Called after resume, resetting to P%d\n",
407 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700408 data->resume = 0;
409 } else {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700410 dprintk("Already at target state (P%d)\n",
411 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700412 return 0;
413 }
414 }
415
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700416 switch (data->cpu_feature) {
417 case SYSTEM_INTEL_MSR_CAPABLE:
418 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
419 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
420 msr =
421 (u32) perf->states[next_perf_state].
422 control & INTEL_MSR_RANGE;
Guillaume Chazarain76ff28c2007-01-02 19:58:13 +0100423 cmd.val = get_cur_val(online_policy_cpus);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700424 cmd.val = (cmd.val & ~INTEL_MSR_RANGE) | msr;
425 break;
426 case SYSTEM_IO_CAPABLE:
427 cmd.type = SYSTEM_IO_CAPABLE;
428 cmd.addr.io.port = perf->control_register.address;
429 cmd.addr.io.bit_width = perf->control_register.bit_width;
430 cmd.val = (u32) perf->states[next_perf_state].control;
431 break;
432 default:
433 return -ENODEV;
434 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700435
436 cpus_clear(cmd.mask);
437
438 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
439 cmd.mask = online_policy_cpus;
440 else
441 cpu_set(policy->cpu, cmd.mask);
442
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800443 freqs.old = perf->states[perf->state].core_frequency * 1000;
444 freqs.new = data->freq_table[next_state].frequency;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700445 for_each_cpu_mask(i, cmd.mask) {
446 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500447 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
448 }
449
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700450 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500451
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700452 if (acpi_pstate_strict) {
453 if (!check_freqs(cmd.mask, freqs.new, data)) {
454 dprintk("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700455 policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700456 return -EAGAIN;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500457 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500458 }
459
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700460 for_each_cpu_mask(i, cmd.mask) {
461 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500462 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
463 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700464 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500465
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700466 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700469static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700471 struct acpi_cpufreq_data *data = drv_data[policy->cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 dprintk("acpi_cpufreq_verify\n");
474
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700475 return cpufreq_frequency_table_verify(policy, data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700479acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700481 struct acpi_processor_performance *perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (cpu_khz) {
484 /* search the closest match to cpu_khz */
485 unsigned int i;
486 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500487 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Dave Jones95dd7222006-10-18 00:41:48 -0400489 for (i=0; i<(perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400491 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500493 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700494 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496 }
Dave Jones95dd7222006-10-18 00:41:48 -0400497 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700498 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500499 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500501 perf->state = 0;
502 return perf->states[0].core_frequency * 1000;
503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500506/*
507 * acpi_cpufreq_early_init - initialize ACPI P-States library
508 *
509 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
510 * in order to determine correct frequency and voltage pairings. We can
511 * do _PDC and _PSD and find out the processor dependency for the
512 * actual init that will happen later...
513 */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700514static int acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500515{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700516 struct acpi_processor_performance *data;
517 cpumask_t covered;
518 unsigned int i, j;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500519
520 dprintk("acpi_cpufreq_early_init\n");
521
Andrew Mortonfb1bb342006-06-25 05:46:43 -0700522 for_each_possible_cpu(i) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700523 data = kzalloc(sizeof(struct acpi_processor_performance),
524 GFP_KERNEL);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500525 if (!data) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700526 for_each_cpu_mask(j, covered) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500527 kfree(acpi_perf_data[j]);
528 acpi_perf_data[j] = NULL;
529 }
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700530 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500531 }
532 acpi_perf_data[i] = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700533 cpu_set(i, covered);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500534 }
535
536 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700537 acpi_processor_preregister_performance(acpi_perf_data);
538 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500539}
540
Dave Jones95625b82006-10-21 01:37:39 -0400541#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700542/*
543 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
544 * or do it in BIOS firmware and won't inform about it to OS. If not
545 * detected, this has a side effect of making CPU run at a different speed
546 * than OS intended it to run at. Detect it and handle it cleanly.
547 */
548static int bios_with_sw_any_bug;
549
Venkatesh Pallipadi0497c8c2006-09-25 11:23:32 -0700550static int sw_any_bug_found(struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700551{
552 bios_with_sw_any_bug = 1;
553 return 0;
554}
555
Venkatesh Pallipadi0497c8c2006-09-25 11:23:32 -0700556static struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700557 {
558 .callback = sw_any_bug_found,
559 .ident = "Supermicro Server X6DLP",
560 .matches = {
561 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
562 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
563 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
564 },
565 },
566 { }
567};
Dave Jones95625b82006-10-21 01:37:39 -0400568#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700569
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700570static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700572 unsigned int i;
573 unsigned int valid_states = 0;
574 unsigned int cpu = policy->cpu;
575 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700576 unsigned int result = 0;
577 struct cpuinfo_x86 *c = &cpu_data[policy->cpu];
578 struct acpi_processor_performance *perf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 dprintk("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500582 if (!acpi_perf_data[cpu])
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700583 return -ENODEV;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500584
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700585 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700587 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500589 data->acpi_data = acpi_perf_data[cpu];
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700590 drv_data[cpu] = data;
591
Dave Jones95dd7222006-10-18 00:41:48 -0400592 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700593 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500595 result = acpi_processor_register_performance(data->acpi_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (result)
597 goto err_free;
598
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500599 perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500600 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400601
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400602 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400603 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400604 * coordination is required.
605 */
606 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700607 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400608 policy->cpus = perf->shared_cpu_map;
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700609 }
610
611#ifdef CONFIG_SMP
612 dmi_check_system(sw_any_bug_dmi_table);
613 if (bios_with_sw_any_bug && cpus_weight(policy->cpus) == 1) {
614 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
615 policy->cpus = cpu_core_map[cpu];
616 }
617#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500620 if (perf->state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 dprintk("No P-States\n");
622 result = -ENODEV;
623 goto err_unreg;
624 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500625
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700626 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 result = -ENODEV;
628 goto err_unreg;
629 }
630
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700631 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700632 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700633 dprintk("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700634 data->cpu_feature = SYSTEM_IO_CAPABLE;
635 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700636 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700637 dprintk("HARDWARE addr space\n");
638 if (!check_est_cpu(cpu)) {
639 result = -ENODEV;
640 goto err_unreg;
641 }
642 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700643 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700644 default:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700645 dprintk("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700646 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700647 result = -ENODEV;
648 goto err_unreg;
649 }
650
Dave Jones95dd7222006-10-18 00:41:48 -0400651 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
652 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (!data->freq_table) {
654 result = -ENOMEM;
655 goto err_unreg;
656 }
657
658 /* detect transition latency */
659 policy->cpuinfo.transition_latency = 0;
Dave Jones95dd7222006-10-18 00:41:48 -0400660 for (i=0; i<perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700661 if ((perf->states[i].transition_latency * 1000) >
662 policy->cpuinfo.transition_latency)
663 policy->cpuinfo.transition_latency =
664 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
667
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700668 data->max_freq = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 /* table init */
Dave Jones95dd7222006-10-18 00:41:48 -0400670 for (i=0; i<perf->state_count; i++) {
Zhang Rui3cdf5522007-06-13 21:24:02 -0400671 if (i>0 && perf->states[i].core_frequency >=
672 data->freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700673 continue;
674
675 data->freq_table[valid_states].index = i;
676 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700677 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700678 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
Venkatesh Pallipadi3d4a7ef2006-11-13 17:47:44 -0800680 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800681 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400684 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Mattia Dongilia507ac42006-12-15 19:52:45 +0100687 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700688 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700689 /* Current speed is unknown and not detectable by IO port */
690 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
691 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700692 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700693 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Mattia Dongilia507ac42006-12-15 19:52:45 +0100694 policy->cur = get_cur_freq_on_cpu(cpu);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700695 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700696 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700697 break;
698 }
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /* notify BIOS that we exist */
701 acpi_processor_notify_smm(THIS_MODULE);
702
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700703 /* Check for APERF/MPERF support in hardware */
704 if (c->x86_vendor == X86_VENDOR_INTEL && c->cpuid_level >= 6) {
705 unsigned int ecx;
706 ecx = cpuid_ecx(6);
Dave Jones95dd7222006-10-18 00:41:48 -0400707 if (ecx & CPUID_6_ECX_APERFMPERF_CAPABILITY)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700708 acpi_cpufreq_driver.getavg = get_measured_perf;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700709 }
710
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700711 dprintk("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500712 for (i = 0; i < perf->state_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700714 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500715 (u32) perf->states[i].core_frequency,
716 (u32) perf->states[i].power,
717 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700720
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400721 /*
722 * the first call to ->target() should result in us actually
723 * writing something to the appropriate registers.
724 */
725 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700726
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700727 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Dave Jones95dd7222006-10-18 00:41:48 -0400729err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400731err_unreg:
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500732 acpi_processor_unregister_performance(perf, cpu);
Dave Jones95dd7222006-10-18 00:41:48 -0400733err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 kfree(data);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700735 drv_data[cpu] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700737 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700740static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700742 struct acpi_cpufreq_data *data = drv_data[policy->cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 dprintk("acpi_cpufreq_cpu_exit\n");
745
746 if (data) {
747 cpufreq_frequency_table_put_attr(policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700748 drv_data[policy->cpu] = NULL;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700749 acpi_processor_unregister_performance(data->acpi_data,
750 policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 kfree(data);
752 }
753
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700754 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700757static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700759 struct acpi_cpufreq_data *data = drv_data[policy->cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 dprintk("acpi_cpufreq_resume\n");
762
763 data->resume = 1;
764
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700765 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700768static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 &cpufreq_freq_attr_scaling_available_freqs,
770 NULL,
771};
772
773static struct cpufreq_driver acpi_cpufreq_driver = {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700774 .verify = acpi_cpufreq_verify,
775 .target = acpi_cpufreq_target,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700776 .init = acpi_cpufreq_cpu_init,
777 .exit = acpi_cpufreq_cpu_exit,
778 .resume = acpi_cpufreq_resume,
779 .name = "acpi-cpufreq",
780 .owner = THIS_MODULE,
781 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782};
783
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700784static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 dprintk("acpi_cpufreq_init\n");
787
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700788 acpi_cpufreq_early_init();
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500789
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700790 return cpufreq_register_driver(&acpi_cpufreq_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700793static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700795 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 dprintk("acpi_cpufreq_exit\n");
797
798 cpufreq_unregister_driver(&acpi_cpufreq_driver);
799
Andrew Mortonfb1bb342006-06-25 05:46:43 -0700800 for_each_possible_cpu(i) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500801 kfree(acpi_perf_data[i]);
802 acpi_perf_data[i] = NULL;
803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return;
805}
806
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400807module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700808MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -0400809 "value 0 or non-zero. non-zero -> strict ACPI checks are "
810 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812late_initcall(acpi_cpufreq_init);
813module_exit(acpi_cpufreq_exit);
814
815MODULE_ALIAS("acpi");