blob: ae9b503220cafa62e818afd4bfcf3b849a86c4b3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Dave Jones3a58df32009-01-17 22:36:14 -05002 * acpi-cpufreq.c - ACPI Processor P-States Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2002 - 2004 Dominik Brodowski <linux@brodo.de>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -07007 * Copyright (C) 2006 Denis Sadykov <denis.m.sadykov@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 *
25 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/init.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070031#include <linux/smp.h>
32#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/cpufreq.h>
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040034#include <linux/compiler.h>
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -070035#include <linux/dmi.h>
Frederic Weisbecker12922112009-02-07 22:16:12 +010036#include <trace/power.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <linux/acpi.h>
Dave Jones3a58df32009-01-17 22:36:14 -050039#include <linux/io.h>
40#include <linux/delay.h>
41#include <linux/uaccess.h>
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <acpi/processor.h>
44
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070045#include <asm/msr.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070046#include <asm/processor.h>
47#include <asm/cpufeature.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070048
Dave Jones3a58df32009-01-17 22:36:14 -050049#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, \
50 "acpi-cpufreq", msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
53MODULE_DESCRIPTION("ACPI Processor P-States Driver");
54MODULE_LICENSE("GPL");
55
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070056enum {
57 UNDEFINED_CAPABLE = 0,
58 SYSTEM_INTEL_MSR_CAPABLE,
59 SYSTEM_IO_CAPABLE,
60};
61
62#define INTEL_MSR_RANGE (0xffff)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -070063#define CPUID_6_ECX_APERFMPERF_CAPABILITY (0x1)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070064
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070065struct acpi_cpufreq_data {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070066 struct acpi_processor_performance *acpi_data;
67 struct cpufreq_frequency_table *freq_table;
68 unsigned int resume;
69 unsigned int cpu_feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
travis@sgi.comea348f32008-01-30 13:33:12 +010072static DEFINE_PER_CPU(struct acpi_cpufreq_data *, drv_data);
73
Pallipadi, Venkatesh093f13e2009-04-15 10:37:33 -070074struct acpi_msr_data {
75 u64 saved_aperf, saved_mperf;
76};
77
78static DEFINE_PER_CPU(struct acpi_msr_data, msr_data);
79
Jason Baronb5f9fd02009-02-11 13:57:25 -050080DEFINE_TRACE(power_mark);
81
Fenghua Yu50109292007-08-07 18:40:30 -040082/* acpi_perf_data is a pointer to percpu data. */
83static struct acpi_processor_performance *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85static struct cpufreq_driver acpi_cpufreq_driver;
86
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040087static unsigned int acpi_pstate_strict;
88
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070089static int check_est_cpu(unsigned int cpuid)
90{
Mike Travis92cb7612007-10-19 20:35:04 +020091 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070092
Harald Welte0de51082009-06-08 18:27:54 +080093 return cpu_has(cpu, X86_FEATURE_EST);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070094}
95
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070096static unsigned extract_io(u32 value, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070097{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070098 struct acpi_processor_performance *perf;
99 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700100
101 perf = data->acpi_data;
102
Dave Jones3a58df32009-01-17 22:36:14 -0500103 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700104 if (value == perf->states[i].status)
105 return data->freq_table[i].frequency;
106 }
107 return 0;
108}
109
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700110static unsigned extract_msr(u32 msr, struct acpi_cpufreq_data *data)
111{
112 int i;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700113 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700114
115 msr &= INTEL_MSR_RANGE;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700116 perf = data->acpi_data;
117
Dave Jones3a58df32009-01-17 22:36:14 -0500118 for (i = 0; data->freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700119 if (msr == perf->states[data->freq_table[i].index].status)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700120 return data->freq_table[i].frequency;
121 }
122 return data->freq_table[0].frequency;
123}
124
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700125static unsigned extract_freq(u32 val, struct acpi_cpufreq_data *data)
126{
127 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700128 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700129 return extract_msr(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700130 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700131 return extract_io(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700132 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700133 return 0;
134 }
135}
136
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700137struct msr_addr {
138 u32 reg;
139};
140
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700141struct io_addr {
142 u16 port;
143 u8 bit_width;
144};
145
146struct drv_cmd {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700147 unsigned int type;
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100148 const struct cpumask *mask;
Dave Jones3a58df32009-01-17 22:36:14 -0500149 union {
150 struct msr_addr msr;
151 struct io_addr io;
152 } addr;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700153 u32 val;
154};
155
Andrew Morton01599fc2009-04-13 10:27:49 -0700156/* Called via smp_call_function_single(), on the target CPU */
157static void do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700158{
Mike Travis72859082009-01-16 15:31:15 -0800159 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700160 u32 h;
161
162 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700163 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700164 rdmsr(cmd->addr.msr.reg, cmd->val, h);
165 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700166 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800167 acpi_os_read_port((acpi_io_address)cmd->addr.io.port,
168 &cmd->val,
169 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700170 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700171 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700172 break;
173 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700174}
175
Andrew Morton01599fc2009-04-13 10:27:49 -0700176/* Called via smp_call_function_many(), on the target CPUs */
177static void do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700178{
Mike Travis72859082009-01-16 15:31:15 -0800179 struct drv_cmd *cmd = _cmd;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700180 u32 lo, hi;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700181
182 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700183 case SYSTEM_INTEL_MSR_CAPABLE:
Venki Pallipadi13424f62007-05-23 15:42:13 -0700184 rdmsr(cmd->addr.msr.reg, lo, hi);
185 lo = (lo & ~INTEL_MSR_RANGE) | (cmd->val & INTEL_MSR_RANGE);
186 wrmsr(cmd->addr.msr.reg, lo, hi);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700187 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700188 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800189 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
190 cmd->val,
191 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700192 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700193 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700194 break;
195 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700196}
197
Dave Jones95dd7222006-10-18 00:41:48 -0400198static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700199{
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700200 cmd->val = 0;
201
Andrew Morton01599fc2009-04-13 10:27:49 -0700202 smp_call_function_single(cpumask_any(cmd->mask), do_drv_read, cmd, 1);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700203}
204
205static void drv_write(struct drv_cmd *cmd)
206{
Linus Torvaldsea34f432009-04-15 08:05:13 -0700207 int this_cpu;
208
209 this_cpu = get_cpu();
210 if (cpumask_test_cpu(this_cpu, cmd->mask))
211 do_drv_write(cmd);
Andrew Morton01599fc2009-04-13 10:27:49 -0700212 smp_call_function_many(cmd->mask, do_drv_write, cmd, 1);
Linus Torvaldsea34f432009-04-15 08:05:13 -0700213 put_cpu();
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700214}
215
Mike Travis4d8bb532009-01-04 05:18:08 -0800216static u32 get_cur_val(const struct cpumask *mask)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700217{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700218 struct acpi_processor_performance *perf;
219 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700220
Mike Travis4d8bb532009-01-04 05:18:08 -0800221 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700222 return 0;
223
Mike Travis4d8bb532009-01-04 05:18:08 -0800224 switch (per_cpu(drv_data, cpumask_first(mask))->cpu_feature) {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700225 case SYSTEM_INTEL_MSR_CAPABLE:
226 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
227 cmd.addr.msr.reg = MSR_IA32_PERF_STATUS;
228 break;
229 case SYSTEM_IO_CAPABLE:
230 cmd.type = SYSTEM_IO_CAPABLE;
Mike Travis4d8bb532009-01-04 05:18:08 -0800231 perf = per_cpu(drv_data, cpumask_first(mask))->acpi_data;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700232 cmd.addr.io.port = perf->control_register.address;
233 cmd.addr.io.bit_width = perf->control_register.bit_width;
234 break;
235 default:
236 return 0;
237 }
238
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100239 cmd.mask = mask;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700240 drv_read(&cmd);
241
242 dprintk("get_cur_val = %u\n", cmd.val);
243
244 return cmd.val;
245}
246
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700247struct perf_pair {
Mike Travise39ad412009-01-04 05:18:10 -0800248 union {
249 struct {
250 u32 lo;
251 u32 hi;
252 } split;
253 u64 whole;
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700254 } aperf, mperf;
Mike Travise39ad412009-01-04 05:18:10 -0800255};
256
Andrew Morton01599fc2009-04-13 10:27:49 -0700257/* Called via smp_call_function_single(), on the target CPU */
258static void read_measured_perf_ctrs(void *_cur)
Mike Travise39ad412009-01-04 05:18:10 -0800259{
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700260 struct perf_pair *cur = _cur;
Mike Travise39ad412009-01-04 05:18:10 -0800261
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700262 rdmsr(MSR_IA32_APERF, cur->aperf.split.lo, cur->aperf.split.hi);
263 rdmsr(MSR_IA32_MPERF, cur->mperf.split.lo, cur->mperf.split.hi);
Mike Travise39ad412009-01-04 05:18:10 -0800264}
265
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700266/*
267 * Return the measured active (C0) frequency on this CPU since last call
268 * to this function.
269 * Input: cpu number
270 * Return: Average CPU frequency in terms of max frequency (zero on error)
271 *
272 * We use IA32_MPERF and IA32_APERF MSRs to get the measured performance
273 * over a period of time, while CPU is in C0 state.
274 * IA32_MPERF counts at the rate of max advertised frequency
275 * IA32_APERF counts at the rate of actual CPU frequency
276 * Only IA32_APERF/IA32_MPERF ratio is architecturally defined and
277 * no meaning should be associated with absolute values of these MSRs.
278 */
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -0700279static unsigned int get_measured_perf(struct cpufreq_policy *policy,
280 unsigned int cpu)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700281{
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700282 struct perf_pair readin, cur;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700283 unsigned int perf_percent;
284 unsigned int retval;
285
Linus Torvalds1c98aa72009-04-13 18:09:20 -0700286 if (smp_call_function_single(cpu, read_measured_perf_ctrs, &readin, 1))
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700287 return 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700288
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700289 cur.aperf.whole = readin.aperf.whole -
Pallipadi, Venkatesh093f13e2009-04-15 10:37:33 -0700290 per_cpu(msr_data, cpu).saved_aperf;
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700291 cur.mperf.whole = readin.mperf.whole -
Pallipadi, Venkatesh093f13e2009-04-15 10:37:33 -0700292 per_cpu(msr_data, cpu).saved_mperf;
293 per_cpu(msr_data, cpu).saved_aperf = readin.aperf.whole;
294 per_cpu(msr_data, cpu).saved_mperf = readin.mperf.whole;
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700295
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700296#ifdef __i386__
297 /*
298 * We dont want to do 64 bit divide with 32 bit kernel
299 * Get an approximate value. Return failure in case we cannot get
300 * an approximate value.
301 */
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700302 if (unlikely(cur.aperf.split.hi || cur.mperf.split.hi)) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700303 int shift_count;
304 u32 h;
305
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700306 h = max_t(u32, cur.aperf.split.hi, cur.mperf.split.hi);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700307 shift_count = fls(h);
308
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700309 cur.aperf.whole >>= shift_count;
310 cur.mperf.whole >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700311 }
312
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700313 if (((unsigned long)(-1) / 100) < cur.aperf.split.lo) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700314 int shift_count = 7;
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700315 cur.aperf.split.lo >>= shift_count;
316 cur.mperf.split.lo >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700317 }
318
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700319 if (cur.aperf.split.lo && cur.mperf.split.lo)
320 perf_percent = (cur.aperf.split.lo * 100) / cur.mperf.split.lo;
Dave Jones95dd7222006-10-18 00:41:48 -0400321 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700322 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700323
324#else
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700325 if (unlikely(((unsigned long)(-1) / 100) < cur.aperf.whole)) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700326 int shift_count = 7;
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700327 cur.aperf.whole >>= shift_count;
328 cur.mperf.whole >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700329 }
330
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700331 if (cur.aperf.whole && cur.mperf.whole)
332 perf_percent = (cur.aperf.whole * 100) / cur.mperf.whole;
Dave Jones95dd7222006-10-18 00:41:48 -0400333 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700334 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700335
336#endif
337
Thomas Renningerd876dfb2009-04-17 16:22:08 +0200338 retval = (policy->cpuinfo.max_freq * perf_percent) / 100;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700339
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700340 return retval;
341}
342
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700343static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
344{
travis@sgi.comea348f32008-01-30 13:33:12 +0100345 struct acpi_cpufreq_data *data = per_cpu(drv_data, cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700346 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400347 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700348
349 dprintk("get_cur_freq_on_cpu (%d)\n", cpu);
350
351 if (unlikely(data == NULL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700352 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700353 return 0;
354 }
355
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400356 cached_freq = data->freq_table[data->acpi_data->state].frequency;
Mike Travise39ad412009-01-04 05:18:10 -0800357 freq = extract_freq(get_cur_val(cpumask_of(cpu)), data);
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400358 if (freq != cached_freq) {
359 /*
360 * The dreaded BIOS frequency change behind our back.
361 * Force set the frequency on next target call.
362 */
363 data->resume = 1;
364 }
365
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700366 dprintk("cur freq = %u\n", freq);
367
368 return freq;
369}
370
Mike Travis72859082009-01-16 15:31:15 -0800371static unsigned int check_freqs(const struct cpumask *mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700372 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700373{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700374 unsigned int cur_freq;
375 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700376
Dave Jones3a58df32009-01-17 22:36:14 -0500377 for (i = 0; i < 100; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700378 cur_freq = extract_freq(get_cur_val(mask), data);
379 if (cur_freq == freq)
380 return 1;
381 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383 return 0;
384}
385
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700386static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700387 unsigned int target_freq, unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
travis@sgi.comea348f32008-01-30 13:33:12 +0100389 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700390 struct acpi_processor_performance *perf;
391 struct cpufreq_freqs freqs;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700392 struct drv_cmd cmd;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800393 unsigned int next_state = 0; /* Index into freq_table */
394 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700395 unsigned int i;
396 int result = 0;
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800397 struct power_trace it;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700399 dprintk("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700401 if (unlikely(data == NULL ||
Dave Jones95dd7222006-10-18 00:41:48 -0400402 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700403 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500406 perf = data->acpi_data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700407 result = cpufreq_frequency_table_target(policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700408 data->freq_table,
409 target_freq,
410 relation, &next_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800411 if (unlikely(result)) {
412 result = -ENODEV;
413 goto out;
414 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500415
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700416 next_perf_state = data->freq_table[next_state].index;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700417 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700418 if (unlikely(data->resume)) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700419 dprintk("Called after resume, resetting to P%d\n",
420 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700421 data->resume = 0;
422 } else {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700423 dprintk("Already at target state (P%d)\n",
424 next_perf_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800425 goto out;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700426 }
427 }
428
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800429 trace_power_mark(&it, POWER_PSTATE, next_perf_state);
430
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700431 switch (data->cpu_feature) {
432 case SYSTEM_INTEL_MSR_CAPABLE:
433 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
434 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700435 cmd.val = (u32) perf->states[next_perf_state].control;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700436 break;
437 case SYSTEM_IO_CAPABLE:
438 cmd.type = SYSTEM_IO_CAPABLE;
439 cmd.addr.io.port = perf->control_register.address;
440 cmd.addr.io.bit_width = perf->control_register.bit_width;
441 cmd.val = (u32) perf->states[next_perf_state].control;
442 break;
443 default:
Mike Travis4d8bb532009-01-04 05:18:08 -0800444 result = -ENODEV;
445 goto out;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700446 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700447
Mike Travis4d8bb532009-01-04 05:18:08 -0800448 /* cpufreq holds the hotplug lock, so we are safe from here on */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700449 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100450 cmd.mask = policy->cpus;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700451 else
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100452 cmd.mask = cpumask_of(policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700453
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800454 freqs.old = perf->states[perf->state].core_frequency * 1000;
455 freqs.new = data->freq_table[next_state].frequency;
Mike Travis4d8bb532009-01-04 05:18:08 -0800456 for_each_cpu(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700457 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500458 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
459 }
460
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700461 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500462
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700463 if (acpi_pstate_strict) {
Mike Travis4d8bb532009-01-04 05:18:08 -0800464 if (!check_freqs(cmd.mask, freqs.new, data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700465 dprintk("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700466 policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800467 result = -EAGAIN;
468 goto out;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500469 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500470 }
471
Mike Travis4d8bb532009-01-04 05:18:08 -0800472 for_each_cpu(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700473 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500474 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
475 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700476 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500477
Mike Travis4d8bb532009-01-04 05:18:08 -0800478out:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700479 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700482static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
travis@sgi.comea348f32008-01-30 13:33:12 +0100484 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 dprintk("acpi_cpufreq_verify\n");
487
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700488 return cpufreq_frequency_table_verify(policy, data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700492acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700494 struct acpi_processor_performance *perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (cpu_khz) {
497 /* search the closest match to cpu_khz */
498 unsigned int i;
499 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500500 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Dave Jones3a58df32009-01-17 22:36:14 -0500502 for (i = 0; i < (perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400504 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500506 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700507 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509 }
Dave Jones95dd7222006-10-18 00:41:48 -0400510 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700511 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500512 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500514 perf->state = 0;
515 return perf->states[0].core_frequency * 1000;
516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800519static void free_acpi_perf_data(void)
520{
521 unsigned int i;
522
523 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
524 for_each_possible_cpu(i)
525 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
526 ->shared_cpu_map);
527 free_percpu(acpi_perf_data);
528}
529
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500530/*
531 * acpi_cpufreq_early_init - initialize ACPI P-States library
532 *
533 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
534 * in order to determine correct frequency and voltage pairings. We can
535 * do _PDC and _PSD and find out the processor dependency for the
536 * actual init that will happen later...
537 */
Fenghua Yu50109292007-08-07 18:40:30 -0400538static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500539{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800540 unsigned int i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500541 dprintk("acpi_cpufreq_early_init\n");
542
Fenghua Yu50109292007-08-07 18:40:30 -0400543 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
544 if (!acpi_perf_data) {
545 dprintk("Memory allocation error for acpi_perf_data.\n");
546 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500547 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800548 for_each_possible_cpu(i) {
Yinghai Lueaa95842009-06-06 14:51:36 -0700549 if (!zalloc_cpumask_var_node(
Mike Travis80855f72008-12-31 18:08:47 -0800550 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
551 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800552
553 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
554 free_acpi_perf_data();
555 return -ENOMEM;
556 }
557 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500558
559 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700560 acpi_processor_preregister_performance(acpi_perf_data);
561 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500562}
563
Dave Jones95625b82006-10-21 01:37:39 -0400564#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700565/*
566 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
567 * or do it in BIOS firmware and won't inform about it to OS. If not
568 * detected, this has a side effect of making CPU run at a different speed
569 * than OS intended it to run at. Detect it and handle it cleanly.
570 */
571static int bios_with_sw_any_bug;
572
Jeff Garzik18552562007-10-03 15:15:40 -0400573static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700574{
575 bios_with_sw_any_bug = 1;
576 return 0;
577}
578
Jeff Garzik18552562007-10-03 15:15:40 -0400579static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700580 {
581 .callback = sw_any_bug_found,
582 .ident = "Supermicro Server X6DLP",
583 .matches = {
584 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
585 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
586 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
587 },
588 },
589 { }
590};
Dave Jones95625b82006-10-21 01:37:39 -0400591#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700592
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700593static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700595 unsigned int i;
596 unsigned int valid_states = 0;
597 unsigned int cpu = policy->cpu;
598 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700599 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200600 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700601 struct acpi_processor_performance *perf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 dprintk("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700605 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700607 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Rusty Russellb36128c2009-02-20 16:29:08 +0900609 data->acpi_data = per_cpu_ptr(acpi_perf_data, cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100610 per_cpu(drv_data, cpu) = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700611
Dave Jones95dd7222006-10-18 00:41:48 -0400612 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700613 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500615 result = acpi_processor_register_performance(data->acpi_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (result)
617 goto err_free;
618
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500619 perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500620 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400621
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400622 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400623 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400624 * coordination is required.
625 */
626 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700627 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800628 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700629 }
Rusty Russell835481d2009-01-04 05:18:06 -0800630 cpumask_copy(policy->related_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700631
632#ifdef CONFIG_SMP
633 dmi_check_system(sw_any_bug_dmi_table);
Rusty Russell835481d2009-01-04 05:18:06 -0800634 if (bios_with_sw_any_bug && cpumask_weight(policy->cpus) == 1) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700635 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Rusty Russell835481d2009-01-04 05:18:06 -0800636 cpumask_copy(policy->cpus, cpu_core_mask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700637 }
638#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500641 if (perf->state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 dprintk("No P-States\n");
643 result = -ENODEV;
644 goto err_unreg;
645 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500646
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700647 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 result = -ENODEV;
649 goto err_unreg;
650 }
651
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700652 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700653 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700654 dprintk("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700655 data->cpu_feature = SYSTEM_IO_CAPABLE;
656 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700657 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700658 dprintk("HARDWARE addr space\n");
659 if (!check_est_cpu(cpu)) {
660 result = -ENODEV;
661 goto err_unreg;
662 }
663 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700664 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700665 default:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700666 dprintk("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700667 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700668 result = -ENODEV;
669 goto err_unreg;
670 }
671
Dave Jones95dd7222006-10-18 00:41:48 -0400672 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
673 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (!data->freq_table) {
675 result = -ENOMEM;
676 goto err_unreg;
677 }
678
679 /* detect transition latency */
680 policy->cpuinfo.transition_latency = 0;
Dave Jones3a58df32009-01-17 22:36:14 -0500681 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700682 if ((perf->states[i].transition_latency * 1000) >
683 policy->cpuinfo.transition_latency)
684 policy->cpuinfo.transition_latency =
685 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700688 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
689 if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE &&
690 policy->cpuinfo.transition_latency > 20 * 1000) {
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700691 policy->cpuinfo.transition_latency = 20 * 1000;
Joe Perches61c8c672009-05-26 14:58:39 -0700692 printk_once(KERN_INFO
693 "P-state transition latency capped at 20 uS\n");
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700694 }
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 /* table init */
Dave Jones3a58df32009-01-17 22:36:14 -0500697 for (i = 0; i < perf->state_count; i++) {
698 if (i > 0 && perf->states[i].core_frequency >=
Zhang Rui3cdf5522007-06-13 21:24:02 -0400699 data->freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700700 continue;
701
702 data->freq_table[valid_states].index = i;
703 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700704 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700705 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
Venkatesh Pallipadi3d4a7ef2006-11-13 17:47:44 -0800707 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800708 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400711 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Thomas Renningerd876dfb2009-04-17 16:22:08 +0200714 if (perf->states[0].core_frequency * 1000 != policy->cpuinfo.max_freq)
715 printk(KERN_WARNING FW_WARN "P-state 0 is not max freq\n");
716
Mattia Dongilia507ac42006-12-15 19:52:45 +0100717 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700718 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700719 /* Current speed is unknown and not detectable by IO port */
720 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
721 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700722 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700723 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Mattia Dongilia507ac42006-12-15 19:52:45 +0100724 policy->cur = get_cur_freq_on_cpu(cpu);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700725 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700726 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700727 break;
728 }
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 /* notify BIOS that we exist */
731 acpi_processor_notify_smm(THIS_MODULE);
732
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700733 /* Check for APERF/MPERF support in hardware */
734 if (c->x86_vendor == X86_VENDOR_INTEL && c->cpuid_level >= 6) {
735 unsigned int ecx;
736 ecx = cpuid_ecx(6);
Dave Jones95dd7222006-10-18 00:41:48 -0400737 if (ecx & CPUID_6_ECX_APERFMPERF_CAPABILITY)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700738 acpi_cpufreq_driver.getavg = get_measured_perf;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700739 }
740
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700741 dprintk("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500742 for (i = 0; i < perf->state_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700744 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500745 (u32) perf->states[i].core_frequency,
746 (u32) perf->states[i].power,
747 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700750
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400751 /*
752 * the first call to ->target() should result in us actually
753 * writing something to the appropriate registers.
754 */
755 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700756
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700757 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Dave Jones95dd7222006-10-18 00:41:48 -0400759err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400761err_unreg:
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500762 acpi_processor_unregister_performance(perf, cpu);
Dave Jones95dd7222006-10-18 00:41:48 -0400763err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 kfree(data);
travis@sgi.comea348f32008-01-30 13:33:12 +0100765 per_cpu(drv_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700767 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700770static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
travis@sgi.comea348f32008-01-30 13:33:12 +0100772 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 dprintk("acpi_cpufreq_cpu_exit\n");
775
776 if (data) {
777 cpufreq_frequency_table_put_attr(policy->cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100778 per_cpu(drv_data, policy->cpu) = NULL;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700779 acpi_processor_unregister_performance(data->acpi_data,
780 policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 kfree(data);
782 }
783
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700784 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700787static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
travis@sgi.comea348f32008-01-30 13:33:12 +0100789 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 dprintk("acpi_cpufreq_resume\n");
792
793 data->resume = 1;
794
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700795 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700798static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 &cpufreq_freq_attr_scaling_available_freqs,
800 NULL,
801};
802
803static struct cpufreq_driver acpi_cpufreq_driver = {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700804 .verify = acpi_cpufreq_verify,
805 .target = acpi_cpufreq_target,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700806 .init = acpi_cpufreq_cpu_init,
807 .exit = acpi_cpufreq_cpu_exit,
808 .resume = acpi_cpufreq_resume,
809 .name = "acpi-cpufreq",
810 .owner = THIS_MODULE,
811 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812};
813
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700814static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Fenghua Yu50109292007-08-07 18:40:30 -0400816 int ret;
817
Yinghai Luee297532008-09-24 19:04:31 -0700818 if (acpi_disabled)
819 return 0;
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 dprintk("acpi_cpufreq_init\n");
822
Fenghua Yu50109292007-08-07 18:40:30 -0400823 ret = acpi_cpufreq_early_init();
824 if (ret)
825 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500826
Akinobu Mita847aef62008-07-14 11:59:44 +0900827 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
828 if (ret)
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800829 free_acpi_perf_data();
Akinobu Mita847aef62008-07-14 11:59:44 +0900830
831 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700834static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 dprintk("acpi_cpufreq_exit\n");
837
838 cpufreq_unregister_driver(&acpi_cpufreq_driver);
839
Fenghua Yu50109292007-08-07 18:40:30 -0400840 free_percpu(acpi_perf_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400843module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700844MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -0400845 "value 0 or non-zero. non-zero -> strict ACPI checks are "
846 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848late_initcall(acpi_cpufreq_init);
849module_exit(acpi_cpufreq_exit);
850
851MODULE_ALIAS("acpi");