blob: 0d048f6a2b23a3bf9476a658cac846ccd321bd3c [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.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>
Mark Langsdorfa2fed572010-03-18 18:41:46 +010048#include "mperf.h"
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
51MODULE_DESCRIPTION("ACPI Processor P-States Driver");
52MODULE_LICENSE("GPL");
53
Andre Przywaraacd31622012-09-04 08:28:03 +000054#define PFX "acpi-cpufreq: "
55
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070056enum {
57 UNDEFINED_CAPABLE = 0,
58 SYSTEM_INTEL_MSR_CAPABLE,
Matthew Garrett3dc9a632012-09-04 08:28:02 +000059 SYSTEM_AMD_MSR_CAPABLE,
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070060 SYSTEM_IO_CAPABLE,
61};
62
63#define INTEL_MSR_RANGE (0xffff)
Matthew Garrett3dc9a632012-09-04 08:28:02 +000064#define AMD_MSR_RANGE (0x7)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070065
Andre Przywara615b7302012-09-04 08:28:07 +000066#define MSR_K7_HWCR_CPB_DIS (1ULL << 25)
67
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070068struct acpi_cpufreq_data {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070069 struct acpi_processor_performance *acpi_data;
70 struct cpufreq_frequency_table *freq_table;
71 unsigned int resume;
72 unsigned int cpu_feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
Tejun Heof1625062009-10-29 22:34:13 +090075static DEFINE_PER_CPU(struct acpi_cpufreq_data *, acfreq_data);
travis@sgi.comea348f32008-01-30 13:33:12 +010076
Fenghua Yu50109292007-08-07 18:40:30 -040077/* acpi_perf_data is a pointer to percpu data. */
Namhyung Kim3f6c4df2010-08-13 23:00:11 +090078static struct acpi_processor_performance __percpu *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80static struct cpufreq_driver acpi_cpufreq_driver;
81
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040082static unsigned int acpi_pstate_strict;
Andre Przywara615b7302012-09-04 08:28:07 +000083static bool boost_enabled, boost_supported;
84static struct msr __percpu *msrs;
85
86static bool boost_state(unsigned int cpu)
87{
88 u32 lo, hi;
89 u64 msr;
90
91 switch (boot_cpu_data.x86_vendor) {
92 case X86_VENDOR_INTEL:
93 rdmsr_on_cpu(cpu, MSR_IA32_MISC_ENABLE, &lo, &hi);
94 msr = lo | ((u64)hi << 32);
95 return !(msr & MSR_IA32_MISC_ENABLE_TURBO_DISABLE);
96 case X86_VENDOR_AMD:
97 rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
98 msr = lo | ((u64)hi << 32);
99 return !(msr & MSR_K7_HWCR_CPB_DIS);
100 }
101 return false;
102}
103
104static void boost_set_msrs(bool enable, const struct cpumask *cpumask)
105{
106 u32 cpu;
107 u32 msr_addr;
108 u64 msr_mask;
109
110 switch (boot_cpu_data.x86_vendor) {
111 case X86_VENDOR_INTEL:
112 msr_addr = MSR_IA32_MISC_ENABLE;
113 msr_mask = MSR_IA32_MISC_ENABLE_TURBO_DISABLE;
114 break;
115 case X86_VENDOR_AMD:
116 msr_addr = MSR_K7_HWCR;
117 msr_mask = MSR_K7_HWCR_CPB_DIS;
118 break;
119 default:
120 return;
121 }
122
123 rdmsr_on_cpus(cpumask, msr_addr, msrs);
124
125 for_each_cpu(cpu, cpumask) {
126 struct msr *reg = per_cpu_ptr(msrs, cpu);
127 if (enable)
128 reg->q &= ~msr_mask;
129 else
130 reg->q |= msr_mask;
131 }
132
133 wrmsr_on_cpus(cpumask, msr_addr, msrs);
134}
135
Andre Przywara11269ff2012-09-04 08:28:08 +0000136static ssize_t _store_boost(const char *buf, size_t count)
Andre Przywara615b7302012-09-04 08:28:07 +0000137{
138 int ret;
139 unsigned long val = 0;
140
141 if (!boost_supported)
142 return -EINVAL;
143
144 ret = kstrtoul(buf, 10, &val);
145 if (ret || (val > 1))
146 return -EINVAL;
147
148 if ((val && boost_enabled) || (!val && !boost_enabled))
149 return count;
150
151 get_online_cpus();
152
153 boost_set_msrs(val, cpu_online_mask);
154
155 put_online_cpus();
156
157 boost_enabled = val;
158 pr_debug("Core Boosting %sabled.\n", val ? "en" : "dis");
159
160 return count;
161}
162
Andre Przywara11269ff2012-09-04 08:28:08 +0000163static ssize_t store_global_boost(struct kobject *kobj, struct attribute *attr,
164 const char *buf, size_t count)
165{
166 return _store_boost(buf, count);
167}
168
Andre Przywara615b7302012-09-04 08:28:07 +0000169static ssize_t show_global_boost(struct kobject *kobj,
170 struct attribute *attr, char *buf)
171{
172 return sprintf(buf, "%u\n", boost_enabled);
173}
174
175static struct global_attr global_boost = __ATTR(boost, 0644,
176 show_global_boost,
177 store_global_boost);
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400178
Andre Przywara11269ff2012-09-04 08:28:08 +0000179#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
180static ssize_t store_cpb(struct cpufreq_policy *policy, const char *buf,
181 size_t count)
182{
183 return _store_boost(buf, count);
184}
185
186static ssize_t show_cpb(struct cpufreq_policy *policy, char *buf)
187{
188 return sprintf(buf, "%u\n", boost_enabled);
189}
190
191static struct freq_attr cpb = __ATTR(cpb, 0644, show_cpb, store_cpb);
192#endif
193
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700194static int check_est_cpu(unsigned int cpuid)
195{
Mike Travis92cb7612007-10-19 20:35:04 +0200196 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700197
Harald Welte0de51082009-06-08 18:27:54 +0800198 return cpu_has(cpu, X86_FEATURE_EST);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700199}
200
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000201static int check_amd_hwpstate_cpu(unsigned int cpuid)
202{
203 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
204
205 return cpu_has(cpu, X86_FEATURE_HW_PSTATE);
206}
207
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700208static unsigned extract_io(u32 value, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700209{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700210 struct acpi_processor_performance *perf;
211 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700212
213 perf = data->acpi_data;
214
Dave Jones3a58df32009-01-17 22:36:14 -0500215 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700216 if (value == perf->states[i].status)
217 return data->freq_table[i].frequency;
218 }
219 return 0;
220}
221
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700222static unsigned extract_msr(u32 msr, struct acpi_cpufreq_data *data)
223{
224 int i;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700225 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700226
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000227 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
228 msr &= AMD_MSR_RANGE;
229 else
230 msr &= INTEL_MSR_RANGE;
231
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700232 perf = data->acpi_data;
233
Dave Jones3a58df32009-01-17 22:36:14 -0500234 for (i = 0; data->freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700235 if (msr == perf->states[data->freq_table[i].index].status)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700236 return data->freq_table[i].frequency;
237 }
238 return data->freq_table[0].frequency;
239}
240
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700241static unsigned extract_freq(u32 val, struct acpi_cpufreq_data *data)
242{
243 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700244 case SYSTEM_INTEL_MSR_CAPABLE:
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000245 case SYSTEM_AMD_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700246 return extract_msr(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700247 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700248 return extract_io(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700249 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700250 return 0;
251 }
252}
253
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700254struct msr_addr {
255 u32 reg;
256};
257
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700258struct io_addr {
259 u16 port;
260 u8 bit_width;
261};
262
263struct drv_cmd {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700264 unsigned int type;
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100265 const struct cpumask *mask;
Dave Jones3a58df32009-01-17 22:36:14 -0500266 union {
267 struct msr_addr msr;
268 struct io_addr io;
269 } addr;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700270 u32 val;
271};
272
Andrew Morton01599fc2009-04-13 10:27:49 -0700273/* Called via smp_call_function_single(), on the target CPU */
274static void do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700275{
Mike Travis72859082009-01-16 15:31:15 -0800276 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700277 u32 h;
278
279 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700280 case SYSTEM_INTEL_MSR_CAPABLE:
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000281 case SYSTEM_AMD_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700282 rdmsr(cmd->addr.msr.reg, cmd->val, h);
283 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700284 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800285 acpi_os_read_port((acpi_io_address)cmd->addr.io.port,
286 &cmd->val,
287 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700288 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700289 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700290 break;
291 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700292}
293
Andrew Morton01599fc2009-04-13 10:27:49 -0700294/* Called via smp_call_function_many(), on the target CPUs */
295static void do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700296{
Mike Travis72859082009-01-16 15:31:15 -0800297 struct drv_cmd *cmd = _cmd;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700298 u32 lo, hi;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700299
300 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700301 case SYSTEM_INTEL_MSR_CAPABLE:
Venki Pallipadi13424f62007-05-23 15:42:13 -0700302 rdmsr(cmd->addr.msr.reg, lo, hi);
303 lo = (lo & ~INTEL_MSR_RANGE) | (cmd->val & INTEL_MSR_RANGE);
304 wrmsr(cmd->addr.msr.reg, lo, hi);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700305 break;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000306 case SYSTEM_AMD_MSR_CAPABLE:
307 wrmsr(cmd->addr.msr.reg, cmd->val, 0);
308 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700309 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800310 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
311 cmd->val,
312 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700313 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700314 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700315 break;
316 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700317}
318
Dave Jones95dd7222006-10-18 00:41:48 -0400319static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700320{
Andrew Morton4a283952009-12-21 16:19:58 -0800321 int err;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700322 cmd->val = 0;
323
Andrew Morton4a283952009-12-21 16:19:58 -0800324 err = smp_call_function_any(cmd->mask, do_drv_read, cmd, 1);
325 WARN_ON_ONCE(err); /* smp_call_function_any() was buggy? */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700326}
327
328static void drv_write(struct drv_cmd *cmd)
329{
Linus Torvaldsea34f432009-04-15 08:05:13 -0700330 int this_cpu;
331
332 this_cpu = get_cpu();
333 if (cpumask_test_cpu(this_cpu, cmd->mask))
334 do_drv_write(cmd);
Andrew Morton01599fc2009-04-13 10:27:49 -0700335 smp_call_function_many(cmd->mask, do_drv_write, cmd, 1);
Linus Torvaldsea34f432009-04-15 08:05:13 -0700336 put_cpu();
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700337}
338
Mike Travis4d8bb532009-01-04 05:18:08 -0800339static u32 get_cur_val(const struct cpumask *mask)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700340{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700341 struct acpi_processor_performance *perf;
342 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700343
Mike Travis4d8bb532009-01-04 05:18:08 -0800344 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700345 return 0;
346
Tejun Heof1625062009-10-29 22:34:13 +0900347 switch (per_cpu(acfreq_data, cpumask_first(mask))->cpu_feature) {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700348 case SYSTEM_INTEL_MSR_CAPABLE:
349 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
350 cmd.addr.msr.reg = MSR_IA32_PERF_STATUS;
351 break;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000352 case SYSTEM_AMD_MSR_CAPABLE:
353 cmd.type = SYSTEM_AMD_MSR_CAPABLE;
354 cmd.addr.msr.reg = MSR_AMD_PERF_STATUS;
355 break;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700356 case SYSTEM_IO_CAPABLE:
357 cmd.type = SYSTEM_IO_CAPABLE;
Tejun Heof1625062009-10-29 22:34:13 +0900358 perf = per_cpu(acfreq_data, cpumask_first(mask))->acpi_data;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700359 cmd.addr.io.port = perf->control_register.address;
360 cmd.addr.io.bit_width = perf->control_register.bit_width;
361 break;
362 default:
363 return 0;
364 }
365
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100366 cmd.mask = mask;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700367 drv_read(&cmd);
368
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200369 pr_debug("get_cur_val = %u\n", cmd.val);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700370
371 return cmd.val;
372}
373
374static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
375{
Tejun Heof1625062009-10-29 22:34:13 +0900376 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700377 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400378 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700379
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200380 pr_debug("get_cur_freq_on_cpu (%d)\n", cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700381
382 if (unlikely(data == NULL ||
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700383 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700384 return 0;
385 }
386
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400387 cached_freq = data->freq_table[data->acpi_data->state].frequency;
Mike Travise39ad412009-01-04 05:18:10 -0800388 freq = extract_freq(get_cur_val(cpumask_of(cpu)), data);
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400389 if (freq != cached_freq) {
390 /*
391 * The dreaded BIOS frequency change behind our back.
392 * Force set the frequency on next target call.
393 */
394 data->resume = 1;
395 }
396
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200397 pr_debug("cur freq = %u\n", freq);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700398
399 return freq;
400}
401
Mike Travis72859082009-01-16 15:31:15 -0800402static unsigned int check_freqs(const struct cpumask *mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700403 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700404{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700405 unsigned int cur_freq;
406 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700407
Dave Jones3a58df32009-01-17 22:36:14 -0500408 for (i = 0; i < 100; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700409 cur_freq = extract_freq(get_cur_val(mask), data);
410 if (cur_freq == freq)
411 return 1;
412 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 return 0;
415}
416
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700417static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700418 unsigned int target_freq, unsigned int relation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Tejun Heof1625062009-10-29 22:34:13 +0900420 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700421 struct acpi_processor_performance *perf;
422 struct cpufreq_freqs freqs;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700423 struct drv_cmd cmd;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800424 unsigned int next_state = 0; /* Index into freq_table */
425 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700426 unsigned int i;
427 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200429 pr_debug("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700431 if (unlikely(data == NULL ||
Dave Jones95dd7222006-10-18 00:41:48 -0400432 data->acpi_data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700433 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500436 perf = data->acpi_data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700437 result = cpufreq_frequency_table_target(policy,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700438 data->freq_table,
439 target_freq,
440 relation, &next_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800441 if (unlikely(result)) {
442 result = -ENODEV;
443 goto out;
444 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500445
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700446 next_perf_state = data->freq_table[next_state].index;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700447 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700448 if (unlikely(data->resume)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200449 pr_debug("Called after resume, resetting to P%d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700450 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700451 data->resume = 0;
452 } else {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200453 pr_debug("Already at target state (P%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700454 next_perf_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800455 goto out;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700456 }
457 }
458
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700459 switch (data->cpu_feature) {
460 case SYSTEM_INTEL_MSR_CAPABLE:
461 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
462 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700463 cmd.val = (u32) perf->states[next_perf_state].control;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700464 break;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000465 case SYSTEM_AMD_MSR_CAPABLE:
466 cmd.type = SYSTEM_AMD_MSR_CAPABLE;
467 cmd.addr.msr.reg = MSR_AMD_PERF_CTL;
468 cmd.val = (u32) perf->states[next_perf_state].control;
469 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700470 case SYSTEM_IO_CAPABLE:
471 cmd.type = SYSTEM_IO_CAPABLE;
472 cmd.addr.io.port = perf->control_register.address;
473 cmd.addr.io.bit_width = perf->control_register.bit_width;
474 cmd.val = (u32) perf->states[next_perf_state].control;
475 break;
476 default:
Mike Travis4d8bb532009-01-04 05:18:08 -0800477 result = -ENODEV;
478 goto out;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700479 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700480
Mike Travis4d8bb532009-01-04 05:18:08 -0800481 /* cpufreq holds the hotplug lock, so we are safe from here on */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700482 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100483 cmd.mask = policy->cpus;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700484 else
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100485 cmd.mask = cpumask_of(policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700486
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800487 freqs.old = perf->states[perf->state].core_frequency * 1000;
488 freqs.new = data->freq_table[next_state].frequency;
Thomas Renninger6b72e392010-04-20 13:17:35 +0200489 for_each_cpu(i, policy->cpus) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700490 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500491 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
492 }
493
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700494 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500495
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700496 if (acpi_pstate_strict) {
Mike Travis4d8bb532009-01-04 05:18:08 -0800497 if (!check_freqs(cmd.mask, freqs.new, data)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200498 pr_debug("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700499 policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800500 result = -EAGAIN;
501 goto out;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500502 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500503 }
504
Thomas Renninger6b72e392010-04-20 13:17:35 +0200505 for_each_cpu(i, policy->cpus) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700506 freqs.cpu = i;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500507 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
508 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700509 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500510
Mike Travis4d8bb532009-01-04 05:18:08 -0800511out:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700512 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700515static int acpi_cpufreq_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Tejun Heof1625062009-10-29 22:34:13 +0900517 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200519 pr_debug("acpi_cpufreq_verify\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700521 return cpufreq_frequency_table_verify(policy, data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700525acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700527 struct acpi_processor_performance *perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (cpu_khz) {
530 /* search the closest match to cpu_khz */
531 unsigned int i;
532 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500533 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Dave Jones3a58df32009-01-17 22:36:14 -0500535 for (i = 0; i < (perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400537 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500539 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700540 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542 }
Dave Jones95dd7222006-10-18 00:41:48 -0400543 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700544 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500545 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500547 perf->state = 0;
548 return perf->states[0].core_frequency * 1000;
549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800552static void free_acpi_perf_data(void)
553{
554 unsigned int i;
555
556 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
557 for_each_possible_cpu(i)
558 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
559 ->shared_cpu_map);
560 free_percpu(acpi_perf_data);
561}
562
Andre Przywara615b7302012-09-04 08:28:07 +0000563static int boost_notify(struct notifier_block *nb, unsigned long action,
564 void *hcpu)
565{
566 unsigned cpu = (long)hcpu;
567 const struct cpumask *cpumask;
568
569 cpumask = get_cpu_mask(cpu);
570
571 /*
572 * Clear the boost-disable bit on the CPU_DOWN path so that
573 * this cpu cannot block the remaining ones from boosting. On
574 * the CPU_UP path we simply keep the boost-disable flag in
575 * sync with the current global state.
576 */
577
578 switch (action) {
579 case CPU_UP_PREPARE:
580 case CPU_UP_PREPARE_FROZEN:
581 boost_set_msrs(boost_enabled, cpumask);
582 break;
583
584 case CPU_DOWN_PREPARE:
585 case CPU_DOWN_PREPARE_FROZEN:
586 boost_set_msrs(1, cpumask);
587 break;
588
589 default:
590 break;
591 }
592
593 return NOTIFY_OK;
594}
595
596
597static struct notifier_block boost_nb = {
598 .notifier_call = boost_notify,
599};
600
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500601/*
602 * acpi_cpufreq_early_init - initialize ACPI P-States library
603 *
604 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
605 * in order to determine correct frequency and voltage pairings. We can
606 * do _PDC and _PSD and find out the processor dependency for the
607 * actual init that will happen later...
608 */
Fenghua Yu50109292007-08-07 18:40:30 -0400609static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500610{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800611 unsigned int i;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200612 pr_debug("acpi_cpufreq_early_init\n");
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500613
Fenghua Yu50109292007-08-07 18:40:30 -0400614 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
615 if (!acpi_perf_data) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200616 pr_debug("Memory allocation error for acpi_perf_data.\n");
Fenghua Yu50109292007-08-07 18:40:30 -0400617 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500618 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800619 for_each_possible_cpu(i) {
Yinghai Lueaa95842009-06-06 14:51:36 -0700620 if (!zalloc_cpumask_var_node(
Mike Travis80855f72008-12-31 18:08:47 -0800621 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
622 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800623
624 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
625 free_acpi_perf_data();
626 return -ENOMEM;
627 }
628 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500629
630 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700631 acpi_processor_preregister_performance(acpi_perf_data);
632 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500633}
634
Dave Jones95625b82006-10-21 01:37:39 -0400635#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700636/*
637 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
638 * or do it in BIOS firmware and won't inform about it to OS. If not
639 * detected, this has a side effect of making CPU run at a different speed
640 * than OS intended it to run at. Detect it and handle it cleanly.
641 */
642static int bios_with_sw_any_bug;
643
Jeff Garzik18552562007-10-03 15:15:40 -0400644static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700645{
646 bios_with_sw_any_bug = 1;
647 return 0;
648}
649
Jeff Garzik18552562007-10-03 15:15:40 -0400650static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700651 {
652 .callback = sw_any_bug_found,
653 .ident = "Supermicro Server X6DLP",
654 .matches = {
655 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
656 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
657 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
658 },
659 },
660 { }
661};
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400662
663static int acpi_cpufreq_blacklist(struct cpuinfo_x86 *c)
664{
John Villalovos293afe42009-09-25 13:30:08 -0400665 /* Intel Xeon Processor 7100 Series Specification Update
666 * http://www.intel.com/Assets/PDF/specupdate/314554.pdf
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400667 * AL30: A Machine Check Exception (MCE) Occurring during an
668 * Enhanced Intel SpeedStep Technology Ratio Change May Cause
John Villalovos293afe42009-09-25 13:30:08 -0400669 * Both Processor Cores to Lock Up. */
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400670 if (c->x86_vendor == X86_VENDOR_INTEL) {
671 if ((c->x86 == 15) &&
672 (c->x86_model == 6) &&
John Villalovos293afe42009-09-25 13:30:08 -0400673 (c->x86_mask == 8)) {
674 printk(KERN_INFO "acpi-cpufreq: Intel(R) "
675 "Xeon(R) 7100 Errata AL30, processors may "
676 "lock up on frequency changes: disabling "
677 "acpi-cpufreq.\n");
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400678 return -ENODEV;
John Villalovos293afe42009-09-25 13:30:08 -0400679 }
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400680 }
681 return 0;
682}
Dave Jones95625b82006-10-21 01:37:39 -0400683#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700684
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700685static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700687 unsigned int i;
688 unsigned int valid_states = 0;
689 unsigned int cpu = policy->cpu;
690 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700691 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200692 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700693 struct acpi_processor_performance *perf;
John Villalovos293afe42009-09-25 13:30:08 -0400694#ifdef CONFIG_SMP
695 static int blacklisted;
696#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200698 pr_debug("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400700#ifdef CONFIG_SMP
John Villalovos293afe42009-09-25 13:30:08 -0400701 if (blacklisted)
702 return blacklisted;
703 blacklisted = acpi_cpufreq_blacklist(c);
704 if (blacklisted)
705 return blacklisted;
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400706#endif
707
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700708 data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700710 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Rusty Russellb36128c2009-02-20 16:29:08 +0900712 data->acpi_data = per_cpu_ptr(acpi_perf_data, cpu);
Tejun Heof1625062009-10-29 22:34:13 +0900713 per_cpu(acfreq_data, cpu) = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700714
Dave Jones95dd7222006-10-18 00:41:48 -0400715 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700716 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500718 result = acpi_processor_register_performance(data->acpi_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (result)
720 goto err_free;
721
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500722 perf = data->acpi_data;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500723 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400724
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400725 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400726 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400727 * coordination is required.
728 */
729 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700730 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800731 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700732 }
Rusty Russell835481d2009-01-04 05:18:06 -0800733 cpumask_copy(policy->related_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700734
735#ifdef CONFIG_SMP
736 dmi_check_system(sw_any_bug_dmi_table);
Rusty Russell835481d2009-01-04 05:18:06 -0800737 if (bios_with_sw_any_bug && cpumask_weight(policy->cpus) == 1) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700738 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Rusty Russell835481d2009-01-04 05:18:06 -0800739 cpumask_copy(policy->cpus, cpu_core_mask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700740 }
Andre Przywaraacd31622012-09-04 08:28:03 +0000741
742 if (check_amd_hwpstate_cpu(cpu) && !acpi_pstate_strict) {
743 cpumask_clear(policy->cpus);
744 cpumask_set_cpu(cpu, policy->cpus);
745 cpumask_copy(policy->related_cpus, cpu_sibling_mask(cpu));
746 policy->shared_type = CPUFREQ_SHARED_TYPE_HW;
747 pr_info_once(PFX "overriding BIOS provided _PSD data\n");
748 }
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700749#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500752 if (perf->state_count <= 1) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200753 pr_debug("No P-States\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 result = -ENODEV;
755 goto err_unreg;
756 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500757
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700758 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 result = -ENODEV;
760 goto err_unreg;
761 }
762
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700763 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700764 case ACPI_ADR_SPACE_SYSTEM_IO:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200765 pr_debug("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700766 data->cpu_feature = SYSTEM_IO_CAPABLE;
767 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700768 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200769 pr_debug("HARDWARE addr space\n");
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000770 if (check_est_cpu(cpu)) {
771 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
772 break;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700773 }
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000774 if (check_amd_hwpstate_cpu(cpu)) {
775 data->cpu_feature = SYSTEM_AMD_MSR_CAPABLE;
776 break;
777 }
778 result = -ENODEV;
779 goto err_unreg;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700780 default:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200781 pr_debug("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700782 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700783 result = -ENODEV;
784 goto err_unreg;
785 }
786
Dave Jones95dd7222006-10-18 00:41:48 -0400787 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) *
788 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (!data->freq_table) {
790 result = -ENOMEM;
791 goto err_unreg;
792 }
793
794 /* detect transition latency */
795 policy->cpuinfo.transition_latency = 0;
Dave Jones3a58df32009-01-17 22:36:14 -0500796 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700797 if ((perf->states[i].transition_latency * 1000) >
798 policy->cpuinfo.transition_latency)
799 policy->cpuinfo.transition_latency =
800 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700803 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
804 if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE &&
805 policy->cpuinfo.transition_latency > 20 * 1000) {
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700806 policy->cpuinfo.transition_latency = 20 * 1000;
Joe Perches61c8c672009-05-26 14:58:39 -0700807 printk_once(KERN_INFO
808 "P-state transition latency capped at 20 uS\n");
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700809 }
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 /* table init */
Dave Jones3a58df32009-01-17 22:36:14 -0500812 for (i = 0; i < perf->state_count; i++) {
813 if (i > 0 && perf->states[i].core_frequency >=
Zhang Rui3cdf5522007-06-13 21:24:02 -0400814 data->freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700815 continue;
816
817 data->freq_table[valid_states].index = i;
818 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700819 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700820 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
Venkatesh Pallipadi3d4a7ef2006-11-13 17:47:44 -0800822 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800823 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400826 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Thomas Renningerd876dfb2009-04-17 16:22:08 +0200829 if (perf->states[0].core_frequency * 1000 != policy->cpuinfo.max_freq)
830 printk(KERN_WARNING FW_WARN "P-state 0 is not max freq\n");
831
Mattia Dongilia507ac42006-12-15 19:52:45 +0100832 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700833 case ACPI_ADR_SPACE_SYSTEM_IO:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700834 /* Current speed is unknown and not detectable by IO port */
835 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
836 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700837 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700838 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Mattia Dongilia507ac42006-12-15 19:52:45 +0100839 policy->cur = get_cur_freq_on_cpu(cpu);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700840 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700841 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700842 break;
843 }
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 /* notify BIOS that we exist */
846 acpi_processor_notify_smm(THIS_MODULE);
847
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700848 /* Check for APERF/MPERF support in hardware */
Matthew Garrett92e03c42011-07-13 17:58:32 -0400849 if (boot_cpu_has(X86_FEATURE_APERFMPERF))
Mark Langsdorfa2fed572010-03-18 18:41:46 +0100850 acpi_cpufreq_driver.getavg = cpufreq_get_measured_perf;
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700851
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200852 pr_debug("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500853 for (i = 0; i < perf->state_count; i++)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200854 pr_debug(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700855 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500856 (u32) perf->states[i].core_frequency,
857 (u32) perf->states[i].power,
858 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700861
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400862 /*
863 * the first call to ->target() should result in us actually
864 * writing something to the appropriate registers.
865 */
866 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700867
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700868 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Dave Jones95dd7222006-10-18 00:41:48 -0400870err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400872err_unreg:
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500873 acpi_processor_unregister_performance(perf, cpu);
Dave Jones95dd7222006-10-18 00:41:48 -0400874err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 kfree(data);
Tejun Heof1625062009-10-29 22:34:13 +0900876 per_cpu(acfreq_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700878 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700881static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Tejun Heof1625062009-10-29 22:34:13 +0900883 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200885 pr_debug("acpi_cpufreq_cpu_exit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 if (data) {
888 cpufreq_frequency_table_put_attr(policy->cpu);
Tejun Heof1625062009-10-29 22:34:13 +0900889 per_cpu(acfreq_data, policy->cpu) = NULL;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700890 acpi_processor_unregister_performance(data->acpi_data,
891 policy->cpu);
Zhang Ruidab5fff2010-10-12 09:09:37 +0800892 kfree(data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 kfree(data);
894 }
895
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700896 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700899static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Tejun Heof1625062009-10-29 22:34:13 +0900901 struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200903 pr_debug("acpi_cpufreq_resume\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 data->resume = 1;
906
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700907 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700910static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 &cpufreq_freq_attr_scaling_available_freqs,
Andre Przywara11269ff2012-09-04 08:28:08 +0000912 NULL, /* this is a placeholder for cpb, do not remove */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 NULL,
914};
915
916static struct cpufreq_driver acpi_cpufreq_driver = {
Thomas Renningere2f74f32009-11-19 12:31:01 +0100917 .verify = acpi_cpufreq_verify,
918 .target = acpi_cpufreq_target,
919 .bios_limit = acpi_processor_get_bios_limit,
920 .init = acpi_cpufreq_cpu_init,
921 .exit = acpi_cpufreq_cpu_exit,
922 .resume = acpi_cpufreq_resume,
923 .name = "acpi-cpufreq",
924 .owner = THIS_MODULE,
925 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926};
927
Andre Przywara615b7302012-09-04 08:28:07 +0000928static void __init acpi_cpufreq_boost_init(void)
929{
930 if (boot_cpu_has(X86_FEATURE_CPB) || boot_cpu_has(X86_FEATURE_IDA)) {
931 msrs = msrs_alloc();
932
933 if (!msrs)
934 return;
935
936 boost_supported = true;
937 boost_enabled = boost_state(0);
938
939 get_online_cpus();
940
941 /* Force all MSRs to the same value */
942 boost_set_msrs(boost_enabled, cpu_online_mask);
943
944 register_cpu_notifier(&boost_nb);
945
946 put_online_cpus();
947 } else
948 global_boost.attr.mode = 0444;
949
950 /* We create the boost file in any case, though for systems without
951 * hardware support it will be read-only and hardwired to return 0.
952 */
953 if (sysfs_create_file(cpufreq_global_kobject, &(global_boost.attr)))
954 pr_warn(PFX "could not register global boost sysfs file\n");
955 else
956 pr_debug("registered global boost sysfs file\n");
957}
958
959static void __exit acpi_cpufreq_boost_exit(void)
960{
961 sysfs_remove_file(cpufreq_global_kobject, &(global_boost.attr));
962
963 if (msrs) {
964 unregister_cpu_notifier(&boost_nb);
965
966 msrs_free(msrs);
967 msrs = NULL;
968 }
969}
970
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700971static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Fenghua Yu50109292007-08-07 18:40:30 -0400973 int ret;
974
Yinghai Luee297532008-09-24 19:04:31 -0700975 if (acpi_disabled)
976 return 0;
977
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200978 pr_debug("acpi_cpufreq_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Fenghua Yu50109292007-08-07 18:40:30 -0400980 ret = acpi_cpufreq_early_init();
981 if (ret)
982 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500983
Andre Przywara11269ff2012-09-04 08:28:08 +0000984#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
985 /* this is a sysfs file with a strange name and an even stranger
986 * semantic - per CPU instantiation, but system global effect.
987 * Lets enable it only on AMD CPUs for compatibility reasons and
988 * only if configured. This is considered legacy code, which
989 * will probably be removed at some point in the future.
990 */
991 if (check_amd_hwpstate_cpu(0)) {
992 struct freq_attr **iter;
993
994 pr_debug("adding sysfs entry for cpb\n");
995
996 for (iter = acpi_cpufreq_attr; *iter != NULL; iter++)
997 ;
998
999 /* make sure there is a terminator behind it */
1000 if (iter[1] == NULL)
1001 *iter = &cpb;
1002 }
1003#endif
1004
Akinobu Mita847aef62008-07-14 11:59:44 +09001005 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
1006 if (ret)
Rusty Russell2fdf66b2008-12-31 18:08:47 -08001007 free_acpi_perf_data();
Andre Przywara615b7302012-09-04 08:28:07 +00001008 else
1009 acpi_cpufreq_boost_init();
Akinobu Mita847aef62008-07-14 11:59:44 +09001010
1011 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -07001014static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001016 pr_debug("acpi_cpufreq_exit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Andre Przywara615b7302012-09-04 08:28:07 +00001018 acpi_cpufreq_boost_exit();
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 cpufreq_unregister_driver(&acpi_cpufreq_driver);
1021
Luming Yu50f4ddd2011-07-08 16:37:44 -04001022 free_acpi_perf_data();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -04001025module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -07001026MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -04001027 "value 0 or non-zero. non-zero -> strict ACPI checks are "
1028 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030late_initcall(acpi_cpufreq_init);
1031module_exit(acpi_cpufreq_exit);
1032
1033MODULE_ALIAS("acpi");