blob: cec1ee2d2f744b968fe653f47dc5067dfe4dccb1 [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>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
50MODULE_DESCRIPTION("ACPI Processor P-States Driver");
51MODULE_LICENSE("GPL");
52
Andre Przywaraacd31622012-09-04 08:28:03 +000053#define PFX "acpi-cpufreq: "
54
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070055enum {
56 UNDEFINED_CAPABLE = 0,
57 SYSTEM_INTEL_MSR_CAPABLE,
Matthew Garrett3dc9a632012-09-04 08:28:02 +000058 SYSTEM_AMD_MSR_CAPABLE,
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070059 SYSTEM_IO_CAPABLE,
60};
61
62#define INTEL_MSR_RANGE (0xffff)
Matthew Garrett3dc9a632012-09-04 08:28:02 +000063#define AMD_MSR_RANGE (0x7)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070064
Andre Przywara615b7302012-09-04 08:28:07 +000065#define MSR_K7_HWCR_CPB_DIS (1ULL << 25)
66
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070067struct acpi_cpufreq_data {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070068 struct cpufreq_frequency_table *freq_table;
69 unsigned int resume;
70 unsigned int cpu_feature;
Pan Xinhui8cfcfd32015-07-10 14:36:20 +080071 unsigned int acpi_perf_cpu;
Lan Tianyuf4fd3792013-06-27 15:08:54 +080072 cpumask_var_t freqdomain_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
Fenghua Yu50109292007-08-07 18:40:30 -040075/* acpi_perf_data is a pointer to percpu data. */
Namhyung Kim3f6c4df2010-08-13 23:00:11 +090076static struct acpi_processor_performance __percpu *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Rafael J. Wysocki34276162015-07-22 22:11:56 +020078static inline struct acpi_processor_performance *to_perf_data(struct acpi_cpufreq_data *data)
79{
80 return per_cpu_ptr(acpi_perf_data, data->acpi_perf_cpu);
81}
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static struct cpufreq_driver acpi_cpufreq_driver;
84
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040085static unsigned int acpi_pstate_strict;
Andre Przywara615b7302012-09-04 08:28:07 +000086static struct msr __percpu *msrs;
87
88static bool boost_state(unsigned int cpu)
89{
90 u32 lo, hi;
91 u64 msr;
92
93 switch (boot_cpu_data.x86_vendor) {
94 case X86_VENDOR_INTEL:
95 rdmsr_on_cpu(cpu, MSR_IA32_MISC_ENABLE, &lo, &hi);
96 msr = lo | ((u64)hi << 32);
97 return !(msr & MSR_IA32_MISC_ENABLE_TURBO_DISABLE);
98 case X86_VENDOR_AMD:
99 rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
100 msr = lo | ((u64)hi << 32);
101 return !(msr & MSR_K7_HWCR_CPB_DIS);
102 }
103 return false;
104}
105
106static void boost_set_msrs(bool enable, const struct cpumask *cpumask)
107{
108 u32 cpu;
109 u32 msr_addr;
110 u64 msr_mask;
111
112 switch (boot_cpu_data.x86_vendor) {
113 case X86_VENDOR_INTEL:
114 msr_addr = MSR_IA32_MISC_ENABLE;
115 msr_mask = MSR_IA32_MISC_ENABLE_TURBO_DISABLE;
116 break;
117 case X86_VENDOR_AMD:
118 msr_addr = MSR_K7_HWCR;
119 msr_mask = MSR_K7_HWCR_CPB_DIS;
120 break;
121 default:
122 return;
123 }
124
125 rdmsr_on_cpus(cpumask, msr_addr, msrs);
126
127 for_each_cpu(cpu, cpumask) {
128 struct msr *reg = per_cpu_ptr(msrs, cpu);
129 if (enable)
130 reg->q &= ~msr_mask;
131 else
132 reg->q |= msr_mask;
133 }
134
135 wrmsr_on_cpus(cpumask, msr_addr, msrs);
136}
137
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100138static int _store_boost(int val)
Andre Przywara615b7302012-09-04 08:28:07 +0000139{
Andre Przywara615b7302012-09-04 08:28:07 +0000140 get_online_cpus();
Andre Przywara615b7302012-09-04 08:28:07 +0000141 boost_set_msrs(val, cpu_online_mask);
Andre Przywara615b7302012-09-04 08:28:07 +0000142 put_online_cpus();
Andre Przywara615b7302012-09-04 08:28:07 +0000143 pr_debug("Core Boosting %sabled.\n", val ? "en" : "dis");
144
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100145 return 0;
Andre Przywara615b7302012-09-04 08:28:07 +0000146}
147
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800148static ssize_t show_freqdomain_cpus(struct cpufreq_policy *policy, char *buf)
149{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800150 struct acpi_cpufreq_data *data = policy->driver_data;
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800151
Srinivas Pandruvadae2530362015-10-07 13:50:43 -0700152 if (unlikely(!data))
153 return -ENODEV;
154
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800155 return cpufreq_show_cpus(data->freqdomain_cpus, buf);
156}
157
158cpufreq_freq_attr_ro(freqdomain_cpus);
159
Andre Przywara11269ff2012-09-04 08:28:08 +0000160#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100161static ssize_t store_boost(const char *buf, size_t count)
162{
163 int ret;
164 unsigned long val = 0;
165
166 if (!acpi_cpufreq_driver.boost_supported)
167 return -EINVAL;
168
169 ret = kstrtoul(buf, 10, &val);
170 if (ret || (val > 1))
171 return -EINVAL;
172
173 _store_boost((int) val);
174
175 return count;
176}
177
Andre Przywara11269ff2012-09-04 08:28:08 +0000178static ssize_t store_cpb(struct cpufreq_policy *policy, const char *buf,
179 size_t count)
180{
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100181 return store_boost(buf, count);
Andre Przywara11269ff2012-09-04 08:28:08 +0000182}
183
184static ssize_t show_cpb(struct cpufreq_policy *policy, char *buf)
185{
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100186 return sprintf(buf, "%u\n", acpi_cpufreq_driver.boost_enabled);
Andre Przywara11269ff2012-09-04 08:28:08 +0000187}
188
Lan Tianyu59027d32013-08-13 10:05:53 +0800189cpufreq_freq_attr_rw(cpb);
Andre Przywara11269ff2012-09-04 08:28:08 +0000190#endif
191
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700192static int check_est_cpu(unsigned int cpuid)
193{
Mike Travis92cb7612007-10-19 20:35:04 +0200194 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700195
Harald Welte0de51082009-06-08 18:27:54 +0800196 return cpu_has(cpu, X86_FEATURE_EST);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700197}
198
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000199static int check_amd_hwpstate_cpu(unsigned int cpuid)
200{
201 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
202
203 return cpu_has(cpu, X86_FEATURE_HW_PSTATE);
204}
205
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700206static unsigned extract_io(u32 value, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700207{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700208 struct acpi_processor_performance *perf;
209 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700210
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200211 perf = to_perf_data(data);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700212
Dave Jones3a58df32009-01-17 22:36:14 -0500213 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700214 if (value == perf->states[i].status)
215 return data->freq_table[i].frequency;
216 }
217 return 0;
218}
219
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700220static unsigned extract_msr(u32 msr, struct acpi_cpufreq_data *data)
221{
Stratos Karafotis041526f2014-04-25 23:15:38 +0300222 struct cpufreq_frequency_table *pos;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700223 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700224
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000225 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
226 msr &= AMD_MSR_RANGE;
227 else
228 msr &= INTEL_MSR_RANGE;
229
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200230 perf = to_perf_data(data);
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700231
Stratos Karafotis041526f2014-04-25 23:15:38 +0300232 cpufreq_for_each_entry(pos, data->freq_table)
233 if (msr == perf->states[pos->driver_data].status)
234 return pos->frequency;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700235 return data->freq_table[0].frequency;
236}
237
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700238static unsigned extract_freq(u32 val, struct acpi_cpufreq_data *data)
239{
240 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700241 case SYSTEM_INTEL_MSR_CAPABLE:
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000242 case SYSTEM_AMD_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700243 return extract_msr(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700244 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700245 return extract_io(val, data);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700246 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700247 return 0;
248 }
249}
250
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700251struct msr_addr {
252 u32 reg;
253};
254
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700255struct io_addr {
256 u16 port;
257 u8 bit_width;
258};
259
260struct drv_cmd {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700261 unsigned int type;
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100262 const struct cpumask *mask;
Dave Jones3a58df32009-01-17 22:36:14 -0500263 union {
264 struct msr_addr msr;
265 struct io_addr io;
266 } addr;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700267 u32 val;
268};
269
Andrew Morton01599fc2009-04-13 10:27:49 -0700270/* Called via smp_call_function_single(), on the target CPU */
271static void do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700272{
Mike Travis72859082009-01-16 15:31:15 -0800273 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700274 u32 h;
275
276 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700277 case SYSTEM_INTEL_MSR_CAPABLE:
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000278 case SYSTEM_AMD_MSR_CAPABLE:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700279 rdmsr(cmd->addr.msr.reg, cmd->val, h);
280 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700281 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800282 acpi_os_read_port((acpi_io_address)cmd->addr.io.port,
283 &cmd->val,
284 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700285 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700286 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700287 break;
288 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700289}
290
Andrew Morton01599fc2009-04-13 10:27:49 -0700291/* Called via smp_call_function_many(), on the target CPUs */
292static void do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700293{
Mike Travis72859082009-01-16 15:31:15 -0800294 struct drv_cmd *cmd = _cmd;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700295 u32 lo, hi;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700296
297 switch (cmd->type) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700298 case SYSTEM_INTEL_MSR_CAPABLE:
Venki Pallipadi13424f62007-05-23 15:42:13 -0700299 rdmsr(cmd->addr.msr.reg, lo, hi);
300 lo = (lo & ~INTEL_MSR_RANGE) | (cmd->val & INTEL_MSR_RANGE);
301 wrmsr(cmd->addr.msr.reg, lo, hi);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700302 break;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000303 case SYSTEM_AMD_MSR_CAPABLE:
304 wrmsr(cmd->addr.msr.reg, cmd->val, 0);
305 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700306 case SYSTEM_IO_CAPABLE:
Venkatesh Pallipadi4e581ff2006-12-13 10:41:16 -0800307 acpi_os_write_port((acpi_io_address)cmd->addr.io.port,
308 cmd->val,
309 (u32)cmd->addr.io.bit_width);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700310 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700311 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700312 break;
313 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700314}
315
Dave Jones95dd7222006-10-18 00:41:48 -0400316static void drv_read(struct drv_cmd *cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700317{
Andrew Morton4a283952009-12-21 16:19:58 -0800318 int err;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700319 cmd->val = 0;
320
Andrew Morton4a283952009-12-21 16:19:58 -0800321 err = smp_call_function_any(cmd->mask, do_drv_read, cmd, 1);
322 WARN_ON_ONCE(err); /* smp_call_function_any() was buggy? */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700323}
324
325static void drv_write(struct drv_cmd *cmd)
326{
Linus Torvaldsea34f432009-04-15 08:05:13 -0700327 int this_cpu;
328
329 this_cpu = get_cpu();
330 if (cpumask_test_cpu(this_cpu, cmd->mask))
331 do_drv_write(cmd);
Andrew Morton01599fc2009-04-13 10:27:49 -0700332 smp_call_function_many(cmd->mask, do_drv_write, cmd, 1);
Linus Torvaldsea34f432009-04-15 08:05:13 -0700333 put_cpu();
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700334}
335
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800336static u32
337get_cur_val(const struct cpumask *mask, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700338{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700339 struct acpi_processor_performance *perf;
340 struct drv_cmd cmd;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700341
Mike Travis4d8bb532009-01-04 05:18:08 -0800342 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700343 return 0;
344
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800345 switch (data->cpu_feature) {
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700346 case SYSTEM_INTEL_MSR_CAPABLE:
347 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
Ross Lagerwall8673b832013-05-31 20:45:17 +0100348 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700349 break;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000350 case SYSTEM_AMD_MSR_CAPABLE:
351 cmd.type = SYSTEM_AMD_MSR_CAPABLE;
Ross Lagerwall8673b832013-05-31 20:45:17 +0100352 cmd.addr.msr.reg = MSR_AMD_PERF_CTL;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000353 break;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700354 case SYSTEM_IO_CAPABLE:
355 cmd.type = SYSTEM_IO_CAPABLE;
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200356 perf = to_perf_data(data);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700357 cmd.addr.io.port = perf->control_register.address;
358 cmd.addr.io.bit_width = perf->control_register.bit_width;
359 break;
360 default:
361 return 0;
362 }
363
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100364 cmd.mask = mask;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700365 drv_read(&cmd);
366
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200367 pr_debug("get_cur_val = %u\n", cmd.val);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700368
369 return cmd.val;
370}
371
372static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
373{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800374 struct acpi_cpufreq_data *data;
375 struct cpufreq_policy *policy;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700376 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400377 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700378
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200379 pr_debug("get_cur_freq_on_cpu (%d)\n", cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700380
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200381 policy = cpufreq_cpu_get_raw(cpu);
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800382 if (unlikely(!policy))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700383 return 0;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800384
385 data = policy->driver_data;
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200386 if (unlikely(!data || !data->freq_table))
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800387 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700388
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200389 cached_freq = data->freq_table[to_perf_data(data)->state].frequency;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800390 freq = extract_freq(get_cur_val(cpumask_of(cpu), data), data);
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400391 if (freq != cached_freq) {
392 /*
393 * The dreaded BIOS frequency change behind our back.
394 * Force set the frequency on next target call.
395 */
396 data->resume = 1;
397 }
398
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200399 pr_debug("cur freq = %u\n", freq);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700400
401 return freq;
402}
403
Mike Travis72859082009-01-16 15:31:15 -0800404static unsigned int check_freqs(const struct cpumask *mask, unsigned int freq,
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700405 struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700406{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700407 unsigned int cur_freq;
408 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700409
Dave Jones3a58df32009-01-17 22:36:14 -0500410 for (i = 0; i < 100; i++) {
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800411 cur_freq = extract_freq(get_cur_val(mask, data), data);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700412 if (cur_freq == freq)
413 return 1;
414 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416 return 0;
417}
418
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700419static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530420 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800422 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700423 struct acpi_processor_performance *perf;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700424 struct drv_cmd cmd;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800425 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700426 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200428 if (unlikely(data == NULL || data->freq_table == NULL)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700429 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200432 perf = to_perf_data(data);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530433 next_perf_state = data->freq_table[index].driver_data;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700434 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700435 if (unlikely(data->resume)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200436 pr_debug("Called after resume, resetting to P%d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700437 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700438 data->resume = 0;
439 } else {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200440 pr_debug("Already at target state (P%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700441 next_perf_state);
Mike Travis4d8bb532009-01-04 05:18:08 -0800442 goto out;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700443 }
444 }
445
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700446 switch (data->cpu_feature) {
447 case SYSTEM_INTEL_MSR_CAPABLE:
448 cmd.type = SYSTEM_INTEL_MSR_CAPABLE;
449 cmd.addr.msr.reg = MSR_IA32_PERF_CTL;
Venki Pallipadi13424f62007-05-23 15:42:13 -0700450 cmd.val = (u32) perf->states[next_perf_state].control;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700451 break;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000452 case SYSTEM_AMD_MSR_CAPABLE:
453 cmd.type = SYSTEM_AMD_MSR_CAPABLE;
454 cmd.addr.msr.reg = MSR_AMD_PERF_CTL;
455 cmd.val = (u32) perf->states[next_perf_state].control;
456 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700457 case SYSTEM_IO_CAPABLE:
458 cmd.type = SYSTEM_IO_CAPABLE;
459 cmd.addr.io.port = perf->control_register.address;
460 cmd.addr.io.bit_width = perf->control_register.bit_width;
461 cmd.val = (u32) perf->states[next_perf_state].control;
462 break;
463 default:
Mike Travis4d8bb532009-01-04 05:18:08 -0800464 result = -ENODEV;
465 goto out;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700466 }
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700467
Mike Travis4d8bb532009-01-04 05:18:08 -0800468 /* cpufreq holds the hotplug lock, so we are safe from here on */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700469 if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY)
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100470 cmd.mask = policy->cpus;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700471 else
Ingo Molnarbfa318a2009-01-15 15:46:08 +0100472 cmd.mask = cpumask_of(policy->cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700473
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700474 drv_write(&cmd);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500475
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700476 if (acpi_pstate_strict) {
Viresh Kumard4019f02013-08-14 19:38:24 +0530477 if (!check_freqs(cmd.mask, data->freq_table[index].frequency,
478 data)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200479 pr_debug("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700480 policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800481 result = -EAGAIN;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500482 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500483 }
484
Viresh Kumare15d8302013-06-19 14:22:55 +0530485 if (!result)
486 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500487
Mike Travis4d8bb532009-01-04 05:18:08 -0800488out:
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700489 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700493acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200495 struct acpi_processor_performance *perf;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500496
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200497 perf = to_perf_data(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (cpu_khz) {
499 /* search the closest match to cpu_khz */
500 unsigned int i;
501 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500502 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Dave Jones3a58df32009-01-17 22:36:14 -0500504 for (i = 0; i < (perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400506 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500508 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700509 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 }
Dave Jones95dd7222006-10-18 00:41:48 -0400512 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700513 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500514 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500516 perf->state = 0;
517 return perf->states[0].core_frequency * 1000;
518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800521static void free_acpi_perf_data(void)
522{
523 unsigned int i;
524
525 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
526 for_each_possible_cpu(i)
527 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
528 ->shared_cpu_map);
529 free_percpu(acpi_perf_data);
530}
531
Andre Przywara615b7302012-09-04 08:28:07 +0000532static int boost_notify(struct notifier_block *nb, unsigned long action,
533 void *hcpu)
534{
535 unsigned cpu = (long)hcpu;
536 const struct cpumask *cpumask;
537
538 cpumask = get_cpu_mask(cpu);
539
540 /*
541 * Clear the boost-disable bit on the CPU_DOWN path so that
542 * this cpu cannot block the remaining ones from boosting. On
543 * the CPU_UP path we simply keep the boost-disable flag in
544 * sync with the current global state.
545 */
546
547 switch (action) {
548 case CPU_UP_PREPARE:
549 case CPU_UP_PREPARE_FROZEN:
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100550 boost_set_msrs(acpi_cpufreq_driver.boost_enabled, cpumask);
Andre Przywara615b7302012-09-04 08:28:07 +0000551 break;
552
553 case CPU_DOWN_PREPARE:
554 case CPU_DOWN_PREPARE_FROZEN:
555 boost_set_msrs(1, cpumask);
556 break;
557
558 default:
559 break;
560 }
561
562 return NOTIFY_OK;
563}
564
565
566static struct notifier_block boost_nb = {
567 .notifier_call = boost_notify,
568};
569
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500570/*
571 * acpi_cpufreq_early_init - initialize ACPI P-States library
572 *
573 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
574 * in order to determine correct frequency and voltage pairings. We can
575 * do _PDC and _PSD and find out the processor dependency for the
576 * actual init that will happen later...
577 */
Fenghua Yu50109292007-08-07 18:40:30 -0400578static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500579{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800580 unsigned int i;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200581 pr_debug("acpi_cpufreq_early_init\n");
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500582
Fenghua Yu50109292007-08-07 18:40:30 -0400583 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
584 if (!acpi_perf_data) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200585 pr_debug("Memory allocation error for acpi_perf_data.\n");
Fenghua Yu50109292007-08-07 18:40:30 -0400586 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500587 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800588 for_each_possible_cpu(i) {
Yinghai Lueaa95842009-06-06 14:51:36 -0700589 if (!zalloc_cpumask_var_node(
Mike Travis80855f72008-12-31 18:08:47 -0800590 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
591 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800592
593 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
594 free_acpi_perf_data();
595 return -ENOMEM;
596 }
597 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500598
599 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700600 acpi_processor_preregister_performance(acpi_perf_data);
601 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500602}
603
Dave Jones95625b82006-10-21 01:37:39 -0400604#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700605/*
606 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
607 * or do it in BIOS firmware and won't inform about it to OS. If not
608 * detected, this has a side effect of making CPU run at a different speed
609 * than OS intended it to run at. Detect it and handle it cleanly.
610 */
611static int bios_with_sw_any_bug;
612
Jeff Garzik18552562007-10-03 15:15:40 -0400613static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700614{
615 bios_with_sw_any_bug = 1;
616 return 0;
617}
618
Jeff Garzik18552562007-10-03 15:15:40 -0400619static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700620 {
621 .callback = sw_any_bug_found,
622 .ident = "Supermicro Server X6DLP",
623 .matches = {
624 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
625 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
626 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
627 },
628 },
629 { }
630};
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400631
632static int acpi_cpufreq_blacklist(struct cpuinfo_x86 *c)
633{
John Villalovos293afe42009-09-25 13:30:08 -0400634 /* Intel Xeon Processor 7100 Series Specification Update
635 * http://www.intel.com/Assets/PDF/specupdate/314554.pdf
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400636 * AL30: A Machine Check Exception (MCE) Occurring during an
637 * Enhanced Intel SpeedStep Technology Ratio Change May Cause
John Villalovos293afe42009-09-25 13:30:08 -0400638 * Both Processor Cores to Lock Up. */
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400639 if (c->x86_vendor == X86_VENDOR_INTEL) {
640 if ((c->x86 == 15) &&
641 (c->x86_model == 6) &&
John Villalovos293afe42009-09-25 13:30:08 -0400642 (c->x86_mask == 8)) {
643 printk(KERN_INFO "acpi-cpufreq: Intel(R) "
644 "Xeon(R) 7100 Errata AL30, processors may "
645 "lock up on frequency changes: disabling "
646 "acpi-cpufreq.\n");
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400647 return -ENODEV;
John Villalovos293afe42009-09-25 13:30:08 -0400648 }
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400649 }
650 return 0;
651}
Dave Jones95625b82006-10-21 01:37:39 -0400652#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700653
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700654static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700656 unsigned int i;
657 unsigned int valid_states = 0;
658 unsigned int cpu = policy->cpu;
659 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700660 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200661 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700662 struct acpi_processor_performance *perf;
John Villalovos293afe42009-09-25 13:30:08 -0400663#ifdef CONFIG_SMP
664 static int blacklisted;
665#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200667 pr_debug("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400669#ifdef CONFIG_SMP
John Villalovos293afe42009-09-25 13:30:08 -0400670 if (blacklisted)
671 return blacklisted;
672 blacklisted = acpi_cpufreq_blacklist(c);
673 if (blacklisted)
674 return blacklisted;
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400675#endif
676
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530677 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700679 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800681 if (!zalloc_cpumask_var(&data->freqdomain_cpus, GFP_KERNEL)) {
682 result = -ENOMEM;
683 goto err_free;
684 }
685
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200686 perf = per_cpu_ptr(acpi_perf_data, cpu);
Pan Xinhui8cfcfd32015-07-10 14:36:20 +0800687 data->acpi_perf_cpu = cpu;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800688 policy->driver_data = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700689
Dave Jones95dd7222006-10-18 00:41:48 -0400690 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700691 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200693 result = acpi_processor_register_performance(perf, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (result)
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800695 goto err_free_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500697 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400698
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400699 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400700 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400701 * coordination is required.
702 */
703 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700704 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800705 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700706 }
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800707 cpumask_copy(data->freqdomain_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700708
709#ifdef CONFIG_SMP
710 dmi_check_system(sw_any_bug_dmi_table);
Fabio Baltieri2624f902013-01-31 09:44:40 +0000711 if (bios_with_sw_any_bug && !policy_is_shared(policy)) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700712 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Bartosz Golaszewski3280c3c2015-05-26 15:11:33 +0200713 cpumask_copy(policy->cpus, topology_core_cpumask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700714 }
Andre Przywaraacd31622012-09-04 08:28:03 +0000715
716 if (check_amd_hwpstate_cpu(cpu) && !acpi_pstate_strict) {
717 cpumask_clear(policy->cpus);
718 cpumask_set_cpu(cpu, policy->cpus);
Bartosz Golaszewski3280c3c2015-05-26 15:11:33 +0200719 cpumask_copy(data->freqdomain_cpus,
720 topology_sibling_cpumask(cpu));
Andre Przywaraacd31622012-09-04 08:28:03 +0000721 policy->shared_type = CPUFREQ_SHARED_TYPE_HW;
722 pr_info_once(PFX "overriding BIOS provided _PSD data\n");
723 }
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700724#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500727 if (perf->state_count <= 1) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200728 pr_debug("No P-States\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 result = -ENODEV;
730 goto err_unreg;
731 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500732
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700733 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 result = -ENODEV;
735 goto err_unreg;
736 }
737
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700738 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700739 case ACPI_ADR_SPACE_SYSTEM_IO:
Matthew Garrettc40a4512013-01-20 10:24:26 +0000740 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
741 boot_cpu_data.x86 == 0xf) {
742 pr_debug("AMD K8 systems must use native drivers.\n");
743 result = -ENODEV;
744 goto err_unreg;
745 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200746 pr_debug("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700747 data->cpu_feature = SYSTEM_IO_CAPABLE;
748 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700749 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200750 pr_debug("HARDWARE addr space\n");
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000751 if (check_est_cpu(cpu)) {
752 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
753 break;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700754 }
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000755 if (check_amd_hwpstate_cpu(cpu)) {
756 data->cpu_feature = SYSTEM_AMD_MSR_CAPABLE;
757 break;
758 }
759 result = -ENODEV;
760 goto err_unreg;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700761 default:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200762 pr_debug("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700763 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700764 result = -ENODEV;
765 goto err_unreg;
766 }
767
Viresh Kumar71508a12014-03-28 19:11:46 +0530768 data->freq_table = kzalloc(sizeof(*data->freq_table) *
Dave Jones95dd7222006-10-18 00:41:48 -0400769 (perf->state_count+1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (!data->freq_table) {
771 result = -ENOMEM;
772 goto err_unreg;
773 }
774
775 /* detect transition latency */
776 policy->cpuinfo.transition_latency = 0;
Dave Jones3a58df32009-01-17 22:36:14 -0500777 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700778 if ((perf->states[i].transition_latency * 1000) >
779 policy->cpuinfo.transition_latency)
780 policy->cpuinfo.transition_latency =
781 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700784 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
785 if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE &&
786 policy->cpuinfo.transition_latency > 20 * 1000) {
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700787 policy->cpuinfo.transition_latency = 20 * 1000;
Joe Perches61c8c672009-05-26 14:58:39 -0700788 printk_once(KERN_INFO
789 "P-state transition latency capped at 20 uS\n");
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700790 }
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /* table init */
Dave Jones3a58df32009-01-17 22:36:14 -0500793 for (i = 0; i < perf->state_count; i++) {
794 if (i > 0 && perf->states[i].core_frequency >=
Zhang Rui3cdf5522007-06-13 21:24:02 -0400795 data->freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700796 continue;
797
Viresh Kumar50701582013-03-30 16:25:15 +0530798 data->freq_table[valid_states].driver_data = i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700799 data->freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700800 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700801 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
Venkatesh Pallipadi3d4a7ef2006-11-13 17:47:44 -0800803 data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800804 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Viresh Kumar776b57b2013-09-16 18:56:07 +0530806 result = cpufreq_table_validate_and_show(policy, data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400807 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Thomas Renningerd876dfb2009-04-17 16:22:08 +0200810 if (perf->states[0].core_frequency * 1000 != policy->cpuinfo.max_freq)
811 printk(KERN_WARNING FW_WARN "P-state 0 is not max freq\n");
812
Mattia Dongilia507ac42006-12-15 19:52:45 +0100813 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700814 case ACPI_ADR_SPACE_SYSTEM_IO:
Viresh Kumar1bab64d2013-10-16 23:58:10 +0200815 /*
816 * The core will not set policy->cur, because
817 * cpufreq_driver->get is NULL, so we need to set it here.
818 * However, we have to guess it, because the current speed is
819 * unknown and not detectable via IO ports.
820 */
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700821 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
822 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700823 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700824 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700825 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700826 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700827 break;
828 }
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* notify BIOS that we exist */
831 acpi_processor_notify_smm(THIS_MODULE);
832
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200833 pr_debug("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500834 for (i = 0; i < perf->state_count; i++)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200835 pr_debug(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700836 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500837 (u32) perf->states[i].core_frequency,
838 (u32) perf->states[i].power,
839 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400841 /*
842 * the first call to ->target() should result in us actually
843 * writing something to the appropriate registers.
844 */
845 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700846
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700847 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Dave Jones95dd7222006-10-18 00:41:48 -0400849err_freqfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 kfree(data->freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400851err_unreg:
Rafael J. Wysockib2f8dc42015-07-22 22:11:16 +0200852 acpi_processor_unregister_performance(cpu);
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800853err_free_mask:
854 free_cpumask_var(data->freqdomain_cpus);
Dave Jones95dd7222006-10-18 00:41:48 -0400855err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 kfree(data);
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800857 policy->driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700859 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
861
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700862static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800864 struct acpi_cpufreq_data *data = policy->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200866 pr_debug("acpi_cpufreq_cpu_exit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 if (data) {
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800869 policy->driver_data = NULL;
Rafael J. Wysockib2f8dc42015-07-22 22:11:16 +0200870 acpi_processor_unregister_performance(data->acpi_perf_cpu);
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800871 free_cpumask_var(data->freqdomain_cpus);
Zhang Ruidab5fff2010-10-12 09:09:37 +0800872 kfree(data->freq_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 kfree(data);
874 }
875
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700876 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700879static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800881 struct acpi_cpufreq_data *data = policy->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200883 pr_debug("acpi_cpufreq_resume\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 data->resume = 1;
886
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700887 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700890static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 &cpufreq_freq_attr_scaling_available_freqs,
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800892 &freqdomain_cpus,
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200893#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
894 &cpb,
895#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 NULL,
897};
898
899static struct cpufreq_driver acpi_cpufreq_driver = {
Viresh Kumardb9be212013-10-03 20:27:56 +0530900 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530901 .target_index = acpi_cpufreq_target,
Thomas Renningere2f74f32009-11-19 12:31:01 +0100902 .bios_limit = acpi_processor_get_bios_limit,
903 .init = acpi_cpufreq_cpu_init,
904 .exit = acpi_cpufreq_cpu_exit,
905 .resume = acpi_cpufreq_resume,
906 .name = "acpi-cpufreq",
Thomas Renningere2f74f32009-11-19 12:31:01 +0100907 .attr = acpi_cpufreq_attr,
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100908 .set_boost = _store_boost,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909};
910
Andre Przywara615b7302012-09-04 08:28:07 +0000911static void __init acpi_cpufreq_boost_init(void)
912{
913 if (boot_cpu_has(X86_FEATURE_CPB) || boot_cpu_has(X86_FEATURE_IDA)) {
914 msrs = msrs_alloc();
915
916 if (!msrs)
917 return;
918
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100919 acpi_cpufreq_driver.boost_supported = true;
920 acpi_cpufreq_driver.boost_enabled = boost_state(0);
Srivatsa S. Bhat0197fbd2014-03-11 02:10:06 +0530921
922 cpu_notifier_register_begin();
Andre Przywara615b7302012-09-04 08:28:07 +0000923
924 /* Force all MSRs to the same value */
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100925 boost_set_msrs(acpi_cpufreq_driver.boost_enabled,
926 cpu_online_mask);
Andre Przywara615b7302012-09-04 08:28:07 +0000927
Srivatsa S. Bhat0197fbd2014-03-11 02:10:06 +0530928 __register_cpu_notifier(&boost_nb);
Andre Przywara615b7302012-09-04 08:28:07 +0000929
Srivatsa S. Bhat0197fbd2014-03-11 02:10:06 +0530930 cpu_notifier_register_done();
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100931 }
Andre Przywara615b7302012-09-04 08:28:07 +0000932}
933
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -0500934static void acpi_cpufreq_boost_exit(void)
Andre Przywara615b7302012-09-04 08:28:07 +0000935{
Andre Przywara615b7302012-09-04 08:28:07 +0000936 if (msrs) {
937 unregister_cpu_notifier(&boost_nb);
938
939 msrs_free(msrs);
940 msrs = NULL;
941 }
942}
943
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700944static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Fenghua Yu50109292007-08-07 18:40:30 -0400946 int ret;
947
Rafael J. Wysocki75c07582013-10-25 16:22:47 +0200948 if (acpi_disabled)
949 return -ENODEV;
950
Yinghai Lu8a61e122013-09-20 10:43:56 -0700951 /* don't keep reloading if cpufreq_driver exists */
952 if (cpufreq_get_current_driver())
Rafael J. Wysocki75c07582013-10-25 16:22:47 +0200953 return -EEXIST;
Yinghai Luee297532008-09-24 19:04:31 -0700954
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200955 pr_debug("acpi_cpufreq_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Fenghua Yu50109292007-08-07 18:40:30 -0400957 ret = acpi_cpufreq_early_init();
958 if (ret)
959 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500960
Andre Przywara11269ff2012-09-04 08:28:08 +0000961#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
962 /* this is a sysfs file with a strange name and an even stranger
963 * semantic - per CPU instantiation, but system global effect.
964 * Lets enable it only on AMD CPUs for compatibility reasons and
965 * only if configured. This is considered legacy code, which
966 * will probably be removed at some point in the future.
967 */
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200968 if (!check_amd_hwpstate_cpu(0)) {
969 struct freq_attr **attr;
Andre Przywara11269ff2012-09-04 08:28:08 +0000970
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200971 pr_debug("CPB unsupported, do not expose it\n");
Andre Przywara11269ff2012-09-04 08:28:08 +0000972
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200973 for (attr = acpi_cpufreq_attr; *attr; attr++)
974 if (*attr == &cpb) {
975 *attr = NULL;
976 break;
977 }
Andre Przywara11269ff2012-09-04 08:28:08 +0000978 }
979#endif
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100980 acpi_cpufreq_boost_init();
Andre Przywara11269ff2012-09-04 08:28:08 +0000981
Akinobu Mita847aef62008-07-14 11:59:44 +0900982 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -0500983 if (ret) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800984 free_acpi_perf_data();
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -0500985 acpi_cpufreq_boost_exit();
986 }
Akinobu Mita847aef62008-07-14 11:59:44 +0900987 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700990static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200992 pr_debug("acpi_cpufreq_exit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Andre Przywara615b7302012-09-04 08:28:07 +0000994 acpi_cpufreq_boost_exit();
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 cpufreq_unregister_driver(&acpi_cpufreq_driver);
997
Luming Yu50f4ddd2011-07-08 16:37:44 -0400998 free_acpi_perf_data();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -04001001module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -07001002MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -04001003 "value 0 or non-zero. non-zero -> strict ACPI checks are "
1004 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006late_initcall(acpi_cpufreq_init);
1007module_exit(acpi_cpufreq_exit);
1008
Matthew Garrettefa17192013-01-22 22:33:46 +01001009static const struct x86_cpu_id acpi_cpufreq_ids[] = {
1010 X86_FEATURE_MATCH(X86_FEATURE_ACPI),
1011 X86_FEATURE_MATCH(X86_FEATURE_HW_PSTATE),
1012 {}
1013};
1014MODULE_DEVICE_TABLE(x86cpu, acpi_cpufreq_ids);
1015
Rafael J. Wysockic655aff2013-06-07 13:13:31 +02001016static const struct acpi_device_id processor_device_ids[] = {
1017 {ACPI_PROCESSOR_OBJECT_HID, },
1018 {ACPI_PROCESSOR_DEVICE_HID, },
1019 {},
1020};
1021MODULE_DEVICE_TABLE(acpi, processor_device_ids);
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023MODULE_ALIAS("acpi");