blob: 509e6a7db719999e12461f4907f7b7af0396682a [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)
63
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070064struct acpi_cpufreq_data {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070065 struct acpi_processor_performance *acpi_data;
66 struct cpufreq_frequency_table *freq_table;
67 unsigned int resume;
68 unsigned int cpu_feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
travis@sgi.comea348f32008-01-30 13:33:12 +010071static DEFINE_PER_CPU(struct acpi_cpufreq_data *, drv_data);
72
Pallipadi, Venkatesh093f13e2009-04-15 10:37:33 -070073struct acpi_msr_data {
74 u64 saved_aperf, saved_mperf;
75};
76
77static DEFINE_PER_CPU(struct acpi_msr_data, msr_data);
78
Jason Baronb5f9fd02009-02-11 13:57:25 -050079DEFINE_TRACE(power_mark);
80
Fenghua Yu50109292007-08-07 18:40:30 -040081/* acpi_perf_data is a pointer to percpu data. */
82static struct acpi_processor_performance *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84static struct cpufreq_driver acpi_cpufreq_driver;
85
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040086static unsigned int acpi_pstate_strict;
87
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070088static int check_est_cpu(unsigned int cpuid)
89{
Mike Travis92cb7612007-10-19 20:35:04 +020090 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070091
Harald Welte0de51082009-06-08 18:27:54 +080092 return cpu_has(cpu, X86_FEATURE_EST);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070093}
94
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070095static unsigned extract_io(u32 value, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070096{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070097 struct acpi_processor_performance *perf;
98 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070099
100 perf = data->acpi_data;
101
Dave Jones3a58df32009-01-17 22:36:14 -0500102 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700103 if (value == perf->states[i].status)
104 return data->freq_table[i].frequency;
105 }
106 return 0;
107}
108
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700109static unsigned extract_msr(u32 msr, struct acpi_cpufreq_data *data)
110{
111 int i;
Venkatesh Pallipadia6f6e6e2006-10-03 12:37:42 -0700112 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700113
114 msr &= INTEL_MSR_RANGE;
Venkatesh Pallipadia6f6e6e2006-10-03 12:37:42 -0700115 perf = data->acpi_data;
116
Dave Jones3a58df32009-01-17 22:36:14 -0500117 for (i = 0; data->freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
Venkatesh Pallipadia6f6e6e2006-10-03 12:37:42 -0700118 if (msr == perf->states[data->freq_table[i].index].status)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700119 return data->freq_table[i].frequency;
120 }
121 return data->freq_table[0].frequency;
122}
123
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700124static unsigned extract_freq(u32 val, struct acpi_cpufreq_data *data)
125{
126 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700127 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700128 return extract_msr(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700129 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700130 return extract_io(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700131 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700132 return 0;
133 }
134}
135
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700136struct msr_addr {
137 u32 reg;
138};
139
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700140struct io_addr {
141 u16 port;
142 u8 bit_width;
143};
144
145struct drv_cmd {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700146 unsigned int type;
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100147 const struct cpumask *mask;
Dave Jones3a58df32009-01-17 22:36:14 -0500148 union {
149 struct msr_addr msr;
150 struct io_addr io;
151 } addr;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700152 u32 val;
153};
154
Andrew Morton01599fc2009-04-13 10:27:49 -0700155/* Called via smp_call_function_single(), on the target CPU */
156static void do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700157{
Mike Travis72859082009-01-16 15:31:15 -0800158 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700159 u32 h;
160
161 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700162 case SYSTEM_INTEL_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700163 rdmsr(cmd->addr.msr.reg, cmd->val, h);
164 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700165 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800166 acpi_os_read_port((acpi_io_address)cmd->addr.io.port,
167 &cmd->val,
168 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700169 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700170 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700171 break;
172 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700173}
174
Andrew Morton01599fc2009-04-13 10:27:49 -0700175/* Called via smp_call_function_many(), on the target CPUs */
176static void do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700177{
Mike Travis72859082009-01-16 15:31:15 -0800178 struct drv_cmd *cmd = _cmd;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700179 u32 lo, hi;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700180
181 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700182 case SYSTEM_INTEL_MSR_CAPABLE:
Venki Pallipadi13424f62007-05-23 15:42:13 -0700183 rdmsr(cmd->addr.msr.reg, lo, hi);
184 lo = (lo & ~INTEL_MSR_RANGE) | (cmd->val & INTEL_MSR_RANGE);
185 wrmsr(cmd->addr.msr.reg, lo, hi);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700186 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700187 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800188 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
189 cmd->val,
190 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700191 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700192 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700193 break;
194 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700195}
196
Dave Jones95dd7222006-10-18 00:41:48 -0400197static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700198{
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700199 cmd->val = 0;
200
Andrew Morton01599fc2009-04-13 10:27:49 -0700201 smp_call_function_single(cpumask_any(cmd->mask), do_drv_read, cmd, 1);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700202}
203
204static void drv_write(struct drv_cmd *cmd)
205{
Linus Torvaldsea34f432009-04-15 08:05:13 -0700206 int this_cpu;
207
208 this_cpu = get_cpu();
209 if (cpumask_test_cpu(this_cpu, cmd->mask))
210 do_drv_write(cmd);
Andrew Morton01599fc2009-04-13 10:27:49 -0700211 smp_call_function_many(cmd->mask, do_drv_write, cmd, 1);
Linus Torvaldsea34f432009-04-15 08:05:13 -0700212 put_cpu();
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700213}
214
Mike Travis4d8bb532009-01-04 05:18:08 -0800215static u32 get_cur_val(const struct cpumask *mask)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700216{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700217 struct acpi_processor_performance *perf;
218 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700219
Mike Travis4d8bb532009-01-04 05:18:08 -0800220 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700221 return 0;
222
Mike Travis4d8bb532009-01-04 05:18:08 -0800223 switch (per_cpu(drv_data, cpumask_first(mask))->cpu_feature) {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700224 case SYSTEM_INTEL_MSR_CAPABLE:
225 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
226 cmd.addr.msr.reg = MSR_IA32_PERF_STATUS;
227 break;
228 case SYSTEM_IO_CAPABLE:
229 cmd.type = SYSTEM_IO_CAPABLE;
Mike Travis4d8bb532009-01-04 05:18:08 -0800230 perf = per_cpu(drv_data, cpumask_first(mask))->acpi_data;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700231 cmd.addr.io.port = perf->control_register.address;
232 cmd.addr.io.bit_width = perf->control_register.bit_width;
233 break;
234 default:
235 return 0;
236 }
237
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100238 cmd.mask = mask;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700239 drv_read(&cmd);
240
241 dprintk("get_cur_val = %u\n", cmd.val);
242
243 return cmd.val;
244}
245
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700246struct perf_pair {
Mike Travise39ad412009-01-04 05:18:10 -0800247 union {
248 struct {
249 u32 lo;
250 u32 hi;
251 } split;
252 u64 whole;
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700253 } aperf, mperf;
Mike Travise39ad412009-01-04 05:18:10 -0800254};
255
Andrew Morton01599fc2009-04-13 10:27:49 -0700256/* Called via smp_call_function_single(), on the target CPU */
257static void read_measured_perf_ctrs(void *_cur)
Mike Travise39ad412009-01-04 05:18:10 -0800258{
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700259 struct perf_pair *cur = _cur;
Mike Travise39ad412009-01-04 05:18:10 -0800260
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700261 rdmsr(MSR_IA32_APERF, cur->aperf.split.lo, cur->aperf.split.hi);
262 rdmsr(MSR_IA32_MPERF, cur->mperf.split.lo, cur->mperf.split.hi);
Mike Travise39ad412009-01-04 05:18:10 -0800263}
264
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700265/*
266 * Return the measured active (C0) frequency on this CPU since last call
267 * to this function.
268 * Input: cpu number
269 * Return: Average CPU frequency in terms of max frequency (zero on error)
270 *
271 * We use IA32_MPERF and IA32_APERF MSRs to get the measured performance
272 * over a period of time, while CPU is in C0 state.
273 * IA32_MPERF counts at the rate of max advertised frequency
274 * IA32_APERF counts at the rate of actual CPU frequency
275 * Only IA32_APERF/IA32_MPERF ratio is architecturally defined and
276 * no meaning should be associated with absolute values of these MSRs.
277 */
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -0700278static unsigned int get_measured_perf(struct cpufreq_policy *policy,
279 unsigned int cpu)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700280{
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700281 struct perf_pair readin, cur;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700282 unsigned int perf_percent;
283 unsigned int retval;
284
Linus Torvalds1c98aa72009-04-13 18:09:20 -0700285 if (smp_call_function_single(cpu, read_measured_perf_ctrs, &readin, 1))
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700286 return 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700287
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700288 cur.aperf.whole = readin.aperf.whole -
Pallipadi, Venkatesh093f13e2009-04-15 10:37:33 -0700289 per_cpu(msr_data, cpu).saved_aperf;
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700290 cur.mperf.whole = readin.mperf.whole -
Pallipadi, Venkatesh093f13e2009-04-15 10:37:33 -0700291 per_cpu(msr_data, cpu).saved_mperf;
292 per_cpu(msr_data, cpu).saved_aperf = readin.aperf.whole;
293 per_cpu(msr_data, cpu).saved_mperf = readin.mperf.whole;
Venkatesh Pallipadi18b26462009-04-06 11:26:08 -0700294
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700295#ifdef __i386__
296 /*
297 * We dont want to do 64 bit divide with 32 bit kernel
298 * Get an approximate value. Return failure in case we cannot get
299 * an approximate value.
300 */
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700301 if (unlikely(cur.aperf.split.hi || cur.mperf.split.hi)) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700302 int shift_count;
303 u32 h;
304
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700305 h = max_t(u32, cur.aperf.split.hi, cur.mperf.split.hi);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700306 shift_count = fls(h);
307
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700308 cur.aperf.whole >>= shift_count;
309 cur.mperf.whole >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700310 }
311
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700312 if (((unsigned long)(-1) / 100) < cur.aperf.split.lo) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700313 int shift_count = 7;
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700314 cur.aperf.split.lo >>= shift_count;
315 cur.mperf.split.lo >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700316 }
317
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700318 if (cur.aperf.split.lo && cur.mperf.split.lo)
319 perf_percent = (cur.aperf.split.lo * 100) / cur.mperf.split.lo;
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#else
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700324 if (unlikely(((unsigned long)(-1) / 100) < cur.aperf.whole)) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700325 int shift_count = 7;
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700326 cur.aperf.whole >>= shift_count;
327 cur.mperf.whole >>= shift_count;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700328 }
329
Venkatesh Pallipadie4f69372009-04-06 11:26:07 -0700330 if (cur.aperf.whole && cur.mperf.whole)
331 perf_percent = (cur.aperf.whole * 100) / cur.mperf.whole;
Dave Jones95dd7222006-10-18 00:41:48 -0400332 else
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700333 perf_percent = 0;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700334
335#endif
336
Thomas Renningerd876dfb2009-04-17 16:22:08 +0200337 retval = (policy->cpuinfo.max_freq * perf_percent) / 100;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700338
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700339 return retval;
340}
341
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700342static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
343{
travis@sgi.comea348f32008-01-30 13:33:12 +0100344 struct acpi_cpufreq_data *data = per_cpu(drv_data, cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700345 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400346 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700347
348 dprintk("get_cur_freq_on_cpu (%d)\n", cpu);
349
350 if (unlikely(data == NULL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700351 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700352 return 0;
353 }
354
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400355 cached_freq = data->freq_table[data->acpi_data->state].frequency;
Mike Travise39ad412009-01-04 05:18:10 -0800356 freq = extract_freq(get_cur_val(cpumask_of(cpu)), data);
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400357 if (freq != cached_freq) {
358 /*
359 * The dreaded BIOS frequency change behind our back.
360 * Force set the frequency on next target call.
361 */
362 data->resume = 1;
363 }
364
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700365 dprintk("cur freq = %u\n", freq);
366
367 return freq;
368}
369
Mike Travis72859082009-01-16 15:31:15 -0800370static unsigned int check_freqs(const struct cpumask *mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700371 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700372{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700373 unsigned int cur_freq;
374 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700375
Dave Jones3a58df32009-01-17 22:36:14 -0500376 for (i = 0; i < 100; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700377 cur_freq = extract_freq(get_cur_val(mask), data);
378 if (cur_freq == freq)
379 return 1;
380 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382 return 0;
383}
384
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700385static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700386 unsigned int target_freq, unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
travis@sgi.comea348f32008-01-30 13:33:12 +0100388 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700389 struct acpi_processor_performance *perf;
390 struct cpufreq_freqs freqs;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700391 struct drv_cmd cmd;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800392 unsigned int next_state = 0; /* Index into freq_table */
393 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700394 unsigned int i;
395 int result = 0;
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800396 struct power_trace it;
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);
Mike Travis4d8bb532009-01-04 05:18:08 -0800410 if (unlikely(result)) {
411 result = -ENODEV;
412 goto out;
413 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500414
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700415 next_perf_state = data->freq_table[next_state].index;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700416 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700417 if (unlikely(data->resume)) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700418 dprintk("Called after resume, resetting to P%d\n",
419 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700420 data->resume = 0;
421 } else {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700422 dprintk("Already at target state (P%d)\n",
423 next_perf_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800424 goto out;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700425 }
426 }
427
Arjan van de Venf3f47a62008-11-23 16:49:58 -0800428 trace_power_mark(&it, POWER_PSTATE, next_perf_state);
429
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700430 switch (data->cpu_feature) {
431 case SYSTEM_INTEL_MSR_CAPABLE:
432 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
433 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700434 cmd.val = (u32) perf->states[next_perf_state].control;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700435 break;
436 case SYSTEM_IO_CAPABLE:
437 cmd.type = SYSTEM_IO_CAPABLE;
438 cmd.addr.io.port = perf->control_register.address;
439 cmd.addr.io.bit_width = perf->control_register.bit_width;
440 cmd.val = (u32) perf->states[next_perf_state].control;
441 break;
442 default:
Mike Travis4d8bb532009-01-04 05:18:08 -0800443 result = -ENODEV;
444 goto out;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700445 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700446
Mike Travis4d8bb532009-01-04 05:18:08 -0800447 /* cpufreq holds the hotplug lock, so we are safe from here on */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700448 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100449 cmd.mask = policy->cpus;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700450 else
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100451 cmd.mask = cpumask_of(policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700452
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800453 freqs.old = perf->states[perf->state].core_frequency * 1000;
454 freqs.new = data->freq_table[next_state].frequency;
Mike Travis4d8bb532009-01-04 05:18:08 -0800455 for_each_cpu(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700456 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500457 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
458 }
459
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700460 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500461
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700462 if (acpi_pstate_strict) {
Mike Travis4d8bb532009-01-04 05:18:08 -0800463 if (!check_freqs(cmd.mask, freqs.new, data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700464 dprintk("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700465 policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800466 result = -EAGAIN;
467 goto out;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500468 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500469 }
470
Mike Travis4d8bb532009-01-04 05:18:08 -0800471 for_each_cpu(i, cmd.mask) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700472 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500473 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
474 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700475 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500476
Mike Travis4d8bb532009-01-04 05:18:08 -0800477out:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700478 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700481static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
travis@sgi.comea348f32008-01-30 13:33:12 +0100483 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 dprintk("acpi_cpufreq_verify\n");
486
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700487 return cpufreq_frequency_table_verify(policy, data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700491acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700493 struct acpi_processor_performance *perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (cpu_khz) {
496 /* search the closest match to cpu_khz */
497 unsigned int i;
498 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500499 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Dave Jones3a58df32009-01-17 22:36:14 -0500501 for (i = 0; i < (perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400503 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500505 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700506 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508 }
Dave Jones95dd7222006-10-18 00:41:48 -0400509 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700510 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500511 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500513 perf->state = 0;
514 return perf->states[0].core_frequency * 1000;
515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800518static void free_acpi_perf_data(void)
519{
520 unsigned int i;
521
522 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
523 for_each_possible_cpu(i)
524 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
525 ->shared_cpu_map);
526 free_percpu(acpi_perf_data);
527}
528
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500529/*
530 * acpi_cpufreq_early_init - initialize ACPI P-States library
531 *
532 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
533 * in order to determine correct frequency and voltage pairings. We can
534 * do _PDC and _PSD and find out the processor dependency for the
535 * actual init that will happen later...
536 */
Fenghua Yu50109292007-08-07 18:40:30 -0400537static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500538{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800539 unsigned int i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500540 dprintk("acpi_cpufreq_early_init\n");
541
Fenghua Yu50109292007-08-07 18:40:30 -0400542 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
543 if (!acpi_perf_data) {
544 dprintk("Memory allocation error for acpi_perf_data.\n");
545 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500546 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800547 for_each_possible_cpu(i) {
Yinghai Lueaa95842009-06-06 14:51:36 -0700548 if (!zalloc_cpumask_var_node(
Mike Travis80855f72008-12-31 18:08:47 -0800549 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
550 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800551
552 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
553 free_acpi_perf_data();
554 return -ENOMEM;
555 }
556 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500557
558 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700559 acpi_processor_preregister_performance(acpi_perf_data);
560 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500561}
562
Dave Jones95625b82006-10-21 01:37:39 -0400563#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700564/*
565 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
566 * or do it in BIOS firmware and won't inform about it to OS. If not
567 * detected, this has a side effect of making CPU run at a different speed
568 * than OS intended it to run at. Detect it and handle it cleanly.
569 */
570static int bios_with_sw_any_bug;
571
Jeff Garzik18552562007-10-03 15:15:40 -0400572static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700573{
574 bios_with_sw_any_bug = 1;
575 return 0;
576}
577
Jeff Garzik18552562007-10-03 15:15:40 -0400578static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700579 {
580 .callback = sw_any_bug_found,
581 .ident = "Supermicro Server X6DLP",
582 .matches = {
583 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
584 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
585 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
586 },
587 },
588 { }
589};
Dave Jones95625b82006-10-21 01:37:39 -0400590#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700591
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700592static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700594 unsigned int i;
595 unsigned int valid_states = 0;
596 unsigned int cpu = policy->cpu;
597 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700598 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200599 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700600 struct acpi_processor_performance *perf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 dprintk("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700604 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700606 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Rusty Russellb36128c2009-02-20 16:29:08 +0900608 data->acpi_data = per_cpu_ptr(acpi_perf_data, cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100609 per_cpu(drv_data, cpu) = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700610
Dave Jones95dd7222006-10-18 00:41:48 -0400611 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700612 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500614 result = acpi_processor_register_performance(data->acpi_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (result)
616 goto err_free;
617
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500618 perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500619 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400620
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400621 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400622 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400623 * coordination is required.
624 */
625 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700626 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800627 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700628 }
Rusty Russell835481d2009-01-04 05:18:06 -0800629 cpumask_copy(policy->related_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700630
631#ifdef CONFIG_SMP
632 dmi_check_system(sw_any_bug_dmi_table);
Rusty Russell835481d2009-01-04 05:18:06 -0800633 if (bios_with_sw_any_bug && cpumask_weight(policy->cpus) == 1) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700634 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Rusty Russell835481d2009-01-04 05:18:06 -0800635 cpumask_copy(policy->cpus, cpu_core_mask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700636 }
637#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500640 if (perf->state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 dprintk("No P-States\n");
642 result = -ENODEV;
643 goto err_unreg;
644 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500645
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700646 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 result = -ENODEV;
648 goto err_unreg;
649 }
650
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700651 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700652 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700653 dprintk("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700654 data->cpu_feature = SYSTEM_IO_CAPABLE;
655 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700656 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700657 dprintk("HARDWARE addr space\n");
658 if (!check_est_cpu(cpu)) {
659 result = -ENODEV;
660 goto err_unreg;
661 }
662 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700663 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700664 default:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700665 dprintk("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700666 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700667 result = -ENODEV;
668 goto err_unreg;
669 }
670
Dave Jones95dd7222006-10-18 00:41:48 -0400671 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
672 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (!data->freq_table) {
674 result = -ENOMEM;
675 goto err_unreg;
676 }
677
678 /* detect transition latency */
679 policy->cpuinfo.transition_latency = 0;
Dave Jones3a58df32009-01-17 22:36:14 -0500680 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700681 if ((perf->states[i].transition_latency * 1000) >
682 policy->cpuinfo.transition_latency)
683 policy->cpuinfo.transition_latency =
684 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700687 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
688 if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE &&
689 policy->cpuinfo.transition_latency > 20 * 1000) {
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700690 policy->cpuinfo.transition_latency = 20 * 1000;
Joe Perches61c8c672009-05-26 14:58:39 -0700691 printk_once(KERN_INFO
692 "P-state transition latency capped at 20 uS\n");
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700693 }
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /* table init */
Dave Jones3a58df32009-01-17 22:36:14 -0500696 for (i = 0; i < perf->state_count; i++) {
697 if (i > 0 && perf->states[i].core_frequency >=
Zhang Rui3cdf5522007-06-13 21:24:02 -0400698 data->freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700699 continue;
700
701 data->freq_table[valid_states].index = i;
702 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700703 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700704 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Venkatesh Pallipadi3d4a7ef2006-11-13 17:47:44 -0800706 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800707 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400710 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Thomas Renningerd876dfb2009-04-17 16:22:08 +0200713 if (perf->states[0].core_frequency * 1000 != policy->cpuinfo.max_freq)
714 printk(KERN_WARNING FW_WARN "P-state 0 is not max freq\n");
715
Mattia Dongilia507ac42006-12-15 19:52:45 +0100716 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700717 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700718 /* Current speed is unknown and not detectable by IO port */
719 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
720 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700721 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700722 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Mattia Dongilia507ac42006-12-15 19:52:45 +0100723 policy->cur = get_cur_freq_on_cpu(cpu);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700724 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700725 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700726 break;
727 }
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 /* notify BIOS that we exist */
730 acpi_processor_notify_smm(THIS_MODULE);
731
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700732 /* Check for APERF/MPERF support in hardware */
Peter Zijlstraa8303aa2009-09-02 10:56:56 +0200733 if (cpu_has(c, X86_FEATURE_APERFMPERF))
734 acpi_cpufreq_driver.getavg = get_measured_perf;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700735
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700736 dprintk("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500737 for (i = 0; i < perf->state_count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700739 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500740 (u32) perf->states[i].core_frequency,
741 (u32) perf->states[i].power,
742 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700745
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400746 /*
747 * the first call to ->target() should result in us actually
748 * writing something to the appropriate registers.
749 */
750 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700751
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700752 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Dave Jones95dd7222006-10-18 00:41:48 -0400754err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400756err_unreg:
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500757 acpi_processor_unregister_performance(perf, cpu);
Dave Jones95dd7222006-10-18 00:41:48 -0400758err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 kfree(data);
travis@sgi.comea348f32008-01-30 13:33:12 +0100760 per_cpu(drv_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700762 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700765static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
travis@sgi.comea348f32008-01-30 13:33:12 +0100767 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 dprintk("acpi_cpufreq_cpu_exit\n");
770
771 if (data) {
772 cpufreq_frequency_table_put_attr(policy->cpu);
travis@sgi.comea348f32008-01-30 13:33:12 +0100773 per_cpu(drv_data, policy->cpu) = NULL;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700774 acpi_processor_unregister_performance(data->acpi_data,
775 policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 kfree(data);
777 }
778
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700782static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
travis@sgi.comea348f32008-01-30 13:33:12 +0100784 struct acpi_cpufreq_data *data = per_cpu(drv_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 dprintk("acpi_cpufreq_resume\n");
787
788 data->resume = 1;
789
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700793static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 &cpufreq_freq_attr_scaling_available_freqs,
795 NULL,
796};
797
798static struct cpufreq_driver acpi_cpufreq_driver = {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700799 .verify = acpi_cpufreq_verify,
800 .target = acpi_cpufreq_target,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700801 .init = acpi_cpufreq_cpu_init,
802 .exit = acpi_cpufreq_cpu_exit,
803 .resume = acpi_cpufreq_resume,
804 .name = "acpi-cpufreq",
805 .owner = THIS_MODULE,
806 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807};
808
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700809static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Fenghua Yu50109292007-08-07 18:40:30 -0400811 int ret;
812
Yinghai Luee297532008-09-24 19:04:31 -0700813 if (acpi_disabled)
814 return 0;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 dprintk("acpi_cpufreq_init\n");
817
Fenghua Yu50109292007-08-07 18:40:30 -0400818 ret = acpi_cpufreq_early_init();
819 if (ret)
820 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500821
Akinobu Mita847aef62008-07-14 11:59:44 +0900822 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
823 if (ret)
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800824 free_acpi_perf_data();
Akinobu Mita847aef62008-07-14 11:59:44 +0900825
826 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700829static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
831 dprintk("acpi_cpufreq_exit\n");
832
833 cpufreq_unregister_driver(&acpi_cpufreq_driver);
834
Fenghua Yu50109292007-08-07 18:40:30 -0400835 free_percpu(acpi_perf_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400838module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700839MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -0400840 "value 0 or non-zero. non-zero -> strict ACPI checks are "
841 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843late_initcall(acpi_cpufreq_init);
844module_exit(acpi_cpufreq_exit);
845
846MODULE_ALIAS("acpi");