blob: d62fd374d5c70f58fdd4fb7c874584a00dc00c16 [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
Joe Perches1c5864e2016-04-05 13:28:25 -070028#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/init.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070033#include <linux/smp.h>
34#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/cpufreq.h>
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040036#include <linux/compiler.h>
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -070037#include <linux/dmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <linux/acpi.h>
Dave Jones3a58df32009-01-17 22:36:14 -050041#include <linux/io.h>
42#include <linux/delay.h>
43#include <linux/uaccess.h>
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/processor.h>
46
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070047#include <asm/msr.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070048#include <asm/processor.h>
49#include <asm/cpufeature.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
52MODULE_DESCRIPTION("ACPI Processor P-States Driver");
53MODULE_LICENSE("GPL");
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)
Pu Wencc9690c2018-09-23 17:37:38 +080064#define HYGON_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 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;
Rafael J. Wysockied757a22016-03-02 03:05:22 +010073 void (*cpu_freq_write)(struct acpi_pct_register *reg, u32 val);
74 u32 (*cpu_freq_read)(struct acpi_pct_register *reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
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
Rafael J. Wysocki34276162015-07-22 22:11:56 +020080static inline struct acpi_processor_performance *to_perf_data(struct acpi_cpufreq_data *data)
81{
82 return per_cpu_ptr(acpi_perf_data, data->acpi_perf_cpu);
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static struct cpufreq_driver acpi_cpufreq_driver;
86
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040087static unsigned int acpi_pstate_strict;
Andre Przywara615b7302012-09-04 08:28:07 +000088
89static bool boost_state(unsigned int cpu)
90{
91 u32 lo, hi;
92 u64 msr;
93
94 switch (boot_cpu_data.x86_vendor) {
95 case X86_VENDOR_INTEL:
96 rdmsr_on_cpu(cpu, MSR_IA32_MISC_ENABLE, &lo, &hi);
97 msr = lo | ((u64)hi << 32);
98 return !(msr & MSR_IA32_MISC_ENABLE_TURBO_DISABLE);
Pu Wencc9690c2018-09-23 17:37:38 +080099 case X86_VENDOR_HYGON:
Andre Przywara615b7302012-09-04 08:28:07 +0000100 case X86_VENDOR_AMD:
101 rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
102 msr = lo | ((u64)hi << 32);
103 return !(msr & MSR_K7_HWCR_CPB_DIS);
104 }
105 return false;
106}
107
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100108static int boost_set_msr(bool enable)
Andre Przywara615b7302012-09-04 08:28:07 +0000109{
Andre Przywara615b7302012-09-04 08:28:07 +0000110 u32 msr_addr;
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100111 u64 msr_mask, val;
Andre Przywara615b7302012-09-04 08:28:07 +0000112
113 switch (boot_cpu_data.x86_vendor) {
114 case X86_VENDOR_INTEL:
115 msr_addr = MSR_IA32_MISC_ENABLE;
116 msr_mask = MSR_IA32_MISC_ENABLE_TURBO_DISABLE;
117 break;
Pu Wencc9690c2018-09-23 17:37:38 +0800118 case X86_VENDOR_HYGON:
Andre Przywara615b7302012-09-04 08:28:07 +0000119 case X86_VENDOR_AMD:
120 msr_addr = MSR_K7_HWCR;
121 msr_mask = MSR_K7_HWCR_CPB_DIS;
122 break;
123 default:
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100124 return -EINVAL;
Andre Przywara615b7302012-09-04 08:28:07 +0000125 }
126
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100127 rdmsrl(msr_addr, val);
Andre Przywara615b7302012-09-04 08:28:07 +0000128
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100129 if (enable)
130 val &= ~msr_mask;
131 else
132 val |= msr_mask;
Andre Przywara615b7302012-09-04 08:28:07 +0000133
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100134 wrmsrl(msr_addr, val);
135 return 0;
136}
137
138static void boost_set_msr_each(void *p_en)
139{
140 bool enable = (bool) p_en;
141
142 boost_set_msr(enable);
Andre Przywara615b7302012-09-04 08:28:07 +0000143}
144
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100145static int set_boost(int val)
Andre Przywara615b7302012-09-04 08:28:07 +0000146{
Andre Przywara615b7302012-09-04 08:28:07 +0000147 get_online_cpus();
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100148 on_each_cpu(boost_set_msr_each, (void *)(long)val, 1);
Andre Przywara615b7302012-09-04 08:28:07 +0000149 put_online_cpus();
Andre Przywara615b7302012-09-04 08:28:07 +0000150 pr_debug("Core Boosting %sabled.\n", val ? "en" : "dis");
151
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100152 return 0;
Andre Przywara615b7302012-09-04 08:28:07 +0000153}
154
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800155static ssize_t show_freqdomain_cpus(struct cpufreq_policy *policy, char *buf)
156{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800157 struct acpi_cpufreq_data *data = policy->driver_data;
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800158
Srinivas Pandruvadae2530362015-10-07 13:50:43 -0700159 if (unlikely(!data))
160 return -ENODEV;
161
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800162 return cpufreq_show_cpus(data->freqdomain_cpus, buf);
163}
164
165cpufreq_freq_attr_ro(freqdomain_cpus);
166
Andre Przywara11269ff2012-09-04 08:28:08 +0000167#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100168static ssize_t store_cpb(struct cpufreq_policy *policy, const char *buf,
169 size_t count)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100170{
171 int ret;
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100172 unsigned int val = 0;
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100173
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +0100174 if (!acpi_cpufreq_driver.set_boost)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100175 return -EINVAL;
176
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100177 ret = kstrtouint(buf, 10, &val);
178 if (ret || val > 1)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100179 return -EINVAL;
180
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100181 set_boost(val);
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100182
183 return count;
184}
185
Andre Przywara11269ff2012-09-04 08:28:08 +0000186static ssize_t show_cpb(struct cpufreq_policy *policy, char *buf)
187{
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100188 return sprintf(buf, "%u\n", acpi_cpufreq_driver.boost_enabled);
Andre Przywara11269ff2012-09-04 08:28:08 +0000189}
190
Lan Tianyu59027d32013-08-13 10:05:53 +0800191cpufreq_freq_attr_rw(cpb);
Andre Przywara11269ff2012-09-04 08:28:08 +0000192#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
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530208static unsigned extract_io(struct cpufreq_policy *policy, u32 value)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700209{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530210 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700211 struct acpi_processor_performance *perf;
212 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700213
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200214 perf = to_perf_data(data);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700215
Dave Jones3a58df32009-01-17 22:36:14 -0500216 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700217 if (value == perf->states[i].status)
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530218 return policy->freq_table[i].frequency;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700219 }
220 return 0;
221}
222
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530223static unsigned extract_msr(struct cpufreq_policy *policy, u32 msr)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700224{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530225 struct acpi_cpufreq_data *data = policy->driver_data;
Stratos Karafotis041526f2014-04-25 23:15:38 +0300226 struct cpufreq_frequency_table *pos;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700227 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700228
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000229 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
230 msr &= AMD_MSR_RANGE;
Pu Wencc9690c2018-09-23 17:37:38 +0800231 else if (boot_cpu_data.x86_vendor == X86_VENDOR_HYGON)
232 msr &= HYGON_MSR_RANGE;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000233 else
234 msr &= INTEL_MSR_RANGE;
235
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200236 perf = to_perf_data(data);
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700237
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530238 cpufreq_for_each_entry(pos, policy->freq_table)
Stratos Karafotis041526f2014-04-25 23:15:38 +0300239 if (msr == perf->states[pos->driver_data].status)
240 return pos->frequency;
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530241 return policy->freq_table[0].frequency;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700242}
243
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530244static unsigned extract_freq(struct cpufreq_policy *policy, u32 val)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700245{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530246 struct acpi_cpufreq_data *data = policy->driver_data;
247
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700248 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700249 case SYSTEM_INTEL_MSR_CAPABLE:
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000250 case SYSTEM_AMD_MSR_CAPABLE:
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530251 return extract_msr(policy, val);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700252 case SYSTEM_IO_CAPABLE:
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530253 return extract_io(policy, val);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700254 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700255 return 0;
256 }
257}
258
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800259static u32 cpu_freq_read_intel(struct acpi_pct_register *not_used)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100260{
261 u32 val, dummy;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700262
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100263 rdmsr(MSR_IA32_PERF_CTL, val, dummy);
264 return val;
265}
266
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800267static void cpu_freq_write_intel(struct acpi_pct_register *not_used, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100268{
269 u32 lo, hi;
270
271 rdmsr(MSR_IA32_PERF_CTL, lo, hi);
272 lo = (lo & ~INTEL_MSR_RANGE) | (val & INTEL_MSR_RANGE);
273 wrmsr(MSR_IA32_PERF_CTL, lo, hi);
274}
275
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800276static u32 cpu_freq_read_amd(struct acpi_pct_register *not_used)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100277{
278 u32 val, dummy;
279
280 rdmsr(MSR_AMD_PERF_CTL, val, dummy);
281 return val;
282}
283
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800284static void cpu_freq_write_amd(struct acpi_pct_register *not_used, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100285{
286 wrmsr(MSR_AMD_PERF_CTL, val, 0);
287}
288
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800289static u32 cpu_freq_read_io(struct acpi_pct_register *reg)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100290{
291 u32 val;
292
293 acpi_os_read_port(reg->address, &val, reg->bit_width);
294 return val;
295}
296
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800297static void cpu_freq_write_io(struct acpi_pct_register *reg, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100298{
299 acpi_os_write_port(reg->address, val, reg->bit_width);
300}
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700301
302struct drv_cmd {
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100303 struct acpi_pct_register *reg;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700304 u32 val;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100305 union {
306 void (*write)(struct acpi_pct_register *reg, u32 val);
307 u32 (*read)(struct acpi_pct_register *reg);
308 } func;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700309};
310
Andrew Morton01599fc2009-04-13 10:27:49 -0700311/* Called via smp_call_function_single(), on the target CPU */
312static void do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700313{
Mike Travis72859082009-01-16 15:31:15 -0800314 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700315
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100316 cmd->val = cmd->func.read(cmd->reg);
317}
318
319static u32 drv_read(struct acpi_cpufreq_data *data, const struct cpumask *mask)
320{
321 struct acpi_processor_performance *perf = to_perf_data(data);
322 struct drv_cmd cmd = {
323 .reg = &perf->control_register,
324 .func.read = data->cpu_freq_read,
325 };
326 int err;
327
328 err = smp_call_function_any(mask, do_drv_read, &cmd, 1);
329 WARN_ON_ONCE(err); /* smp_call_function_any() was buggy? */
330 return cmd.val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700331}
332
Andrew Morton01599fc2009-04-13 10:27:49 -0700333/* Called via smp_call_function_many(), on the target CPUs */
334static void do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700335{
Mike Travis72859082009-01-16 15:31:15 -0800336 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700337
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100338 cmd->func.write(cmd->reg, cmd->val);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700339}
340
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100341static void drv_write(struct acpi_cpufreq_data *data,
342 const struct cpumask *mask, u32 val)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700343{
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100344 struct acpi_processor_performance *perf = to_perf_data(data);
345 struct drv_cmd cmd = {
346 .reg = &perf->control_register,
347 .val = val,
348 .func.write = data->cpu_freq_write,
349 };
Linus Torvaldsea34f432009-04-15 08:05:13 -0700350 int this_cpu;
351
352 this_cpu = get_cpu();
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100353 if (cpumask_test_cpu(this_cpu, mask))
354 do_drv_write(&cmd);
355
356 smp_call_function_many(mask, do_drv_write, &cmd, 1);
Linus Torvaldsea34f432009-04-15 08:05:13 -0700357 put_cpu();
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700358}
359
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100360static u32 get_cur_val(const struct cpumask *mask, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700361{
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100362 u32 val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700363
Mike Travis4d8bb532009-01-04 05:18:08 -0800364 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700365 return 0;
366
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100367 val = drv_read(data, mask);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700368
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100369 pr_debug("get_cur_val = %u\n", val);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700370
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100371 return val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700372}
373
374static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
375{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800376 struct acpi_cpufreq_data *data;
377 struct cpufreq_policy *policy;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700378 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400379 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700380
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200381 pr_debug("get_cur_freq_on_cpu (%d)\n", cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700382
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200383 policy = cpufreq_cpu_get_raw(cpu);
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800384 if (unlikely(!policy))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700385 return 0;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800386
387 data = policy->driver_data;
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530388 if (unlikely(!data || !policy->freq_table))
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800389 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700390
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530391 cached_freq = policy->freq_table[to_perf_data(data)->state].frequency;
392 freq = extract_freq(policy, get_cur_val(cpumask_of(cpu), data));
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400393 if (freq != cached_freq) {
394 /*
395 * The dreaded BIOS frequency change behind our back.
396 * Force set the frequency on next target call.
397 */
398 data->resume = 1;
399 }
400
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200401 pr_debug("cur freq = %u\n", freq);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700402
403 return freq;
404}
405
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530406static unsigned int check_freqs(struct cpufreq_policy *policy,
407 const struct cpumask *mask, unsigned int freq)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700408{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530409 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700410 unsigned int cur_freq;
411 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700412
Dave Jones3a58df32009-01-17 22:36:14 -0500413 for (i = 0; i < 100; i++) {
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530414 cur_freq = extract_freq(policy, get_cur_val(mask, data));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700415 if (cur_freq == freq)
416 return 1;
417 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419 return 0;
420}
421
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700422static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530423 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800425 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700426 struct acpi_processor_performance *perf;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100427 const struct cpumask *mask;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800428 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700429 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530431 if (unlikely(!data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700432 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200435 perf = to_perf_data(data);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530436 next_perf_state = policy->freq_table[index].driver_data;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700437 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700438 if (unlikely(data->resume)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200439 pr_debug("Called after resume, resetting to P%d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700440 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700441 data->resume = 0;
442 } else {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200443 pr_debug("Already at target state (P%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700444 next_perf_state);
Rafael J. Wysocki9a909a12016-02-26 00:03:58 +0100445 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700446 }
447 }
448
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100449 /*
450 * The core won't allow CPUs to go away until the governor has been
451 * stopped, so we can rely on the stability of policy->cpus.
452 */
453 mask = policy->shared_type == CPUFREQ_SHARED_TYPE_ANY ?
454 cpumask_of(policy->cpu) : policy->cpus;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700455
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100456 drv_write(data, mask, perf->states[next_perf_state].control);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500457
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700458 if (acpi_pstate_strict) {
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530459 if (!check_freqs(policy, mask,
460 policy->freq_table[index].frequency)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200461 pr_debug("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700462 policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800463 result = -EAGAIN;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500464 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500465 }
466
Viresh Kumare15d8302013-06-19 14:22:55 +0530467 if (!result)
468 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500469
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700470 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Colin Ian King08e9cc42018-06-01 14:05:12 +0100473static unsigned int acpi_cpufreq_fast_switch(struct cpufreq_policy *policy,
474 unsigned int target_freq)
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200475{
476 struct acpi_cpufreq_data *data = policy->driver_data;
477 struct acpi_processor_performance *perf;
478 struct cpufreq_frequency_table *entry;
Viresh Kumar82577362016-06-27 09:59:34 +0530479 unsigned int next_perf_state, next_freq, index;
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200480
481 /*
482 * Find the closest frequency above target_freq.
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200483 */
Steve Muckle5b6667c2016-07-13 13:25:27 -0700484 if (policy->cached_target_freq == target_freq)
485 index = policy->cached_resolved_idx;
486 else
487 index = cpufreq_table_find_index_dl(policy, target_freq);
Viresh Kumar82577362016-06-27 09:59:34 +0530488
489 entry = &policy->freq_table[index];
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200490 next_freq = entry->frequency;
491 next_perf_state = entry->driver_data;
492
493 perf = to_perf_data(data);
494 if (perf->state == next_perf_state) {
495 if (unlikely(data->resume))
496 data->resume = 0;
497 else
498 return next_freq;
499 }
500
501 data->cpu_freq_write(&perf->control_register,
502 perf->states[next_perf_state].control);
503 perf->state = next_perf_state;
504 return next_freq;
505}
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700508acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200510 struct acpi_processor_performance *perf;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500511
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200512 perf = to_perf_data(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (cpu_khz) {
514 /* search the closest match to cpu_khz */
515 unsigned int i;
516 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500517 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Dave Jones3a58df32009-01-17 22:36:14 -0500519 for (i = 0; i < (perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400521 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500523 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700524 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526 }
Dave Jones95dd7222006-10-18 00:41:48 -0400527 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700528 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500529 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500531 perf->state = 0;
532 return perf->states[0].core_frequency * 1000;
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800536static void free_acpi_perf_data(void)
537{
538 unsigned int i;
539
540 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
541 for_each_possible_cpu(i)
542 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
543 ->shared_cpu_map);
544 free_percpu(acpi_perf_data);
545}
546
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100547static int cpufreq_boost_online(unsigned int cpu)
Andre Przywara615b7302012-09-04 08:28:07 +0000548{
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100549 /*
550 * On the CPU_UP path we simply keep the boost-disable flag
551 * in sync with the current global state.
552 */
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100553 return boost_set_msr(acpi_cpufreq_driver.boost_enabled);
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100554}
555
556static int cpufreq_boost_down_prep(unsigned int cpu)
557{
Andre Przywara615b7302012-09-04 08:28:07 +0000558 /*
559 * Clear the boost-disable bit on the CPU_DOWN path so that
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100560 * this cpu cannot block the remaining ones from boosting.
Andre Przywara615b7302012-09-04 08:28:07 +0000561 */
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100562 return boost_set_msr(1);
Andre Przywara615b7302012-09-04 08:28:07 +0000563}
564
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500565/*
566 * acpi_cpufreq_early_init - initialize ACPI P-States library
567 *
568 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
569 * in order to determine correct frequency and voltage pairings. We can
570 * do _PDC and _PSD and find out the processor dependency for the
571 * actual init that will happen later...
572 */
Fenghua Yu50109292007-08-07 18:40:30 -0400573static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500574{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800575 unsigned int i;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200576 pr_debug("acpi_cpufreq_early_init\n");
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500577
Fenghua Yu50109292007-08-07 18:40:30 -0400578 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
579 if (!acpi_perf_data) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200580 pr_debug("Memory allocation error for acpi_perf_data.\n");
Fenghua Yu50109292007-08-07 18:40:30 -0400581 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500582 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800583 for_each_possible_cpu(i) {
Yinghai Lueaa95842009-06-06 14:51:36 -0700584 if (!zalloc_cpumask_var_node(
Mike Travis80855f72008-12-31 18:08:47 -0800585 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
586 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800587
588 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
589 free_acpi_perf_data();
590 return -ENOMEM;
591 }
592 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500593
594 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700595 acpi_processor_preregister_performance(acpi_perf_data);
596 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500597}
598
Dave Jones95625b82006-10-21 01:37:39 -0400599#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700600/*
601 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
602 * or do it in BIOS firmware and won't inform about it to OS. If not
603 * detected, this has a side effect of making CPU run at a different speed
604 * than OS intended it to run at. Detect it and handle it cleanly.
605 */
606static int bios_with_sw_any_bug;
607
Jeff Garzik18552562007-10-03 15:15:40 -0400608static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700609{
610 bios_with_sw_any_bug = 1;
611 return 0;
612}
613
Jeff Garzik18552562007-10-03 15:15:40 -0400614static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700615 {
616 .callback = sw_any_bug_found,
617 .ident = "Supermicro Server X6DLP",
618 .matches = {
619 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
620 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
621 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
622 },
623 },
624 { }
625};
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400626
627static int acpi_cpufreq_blacklist(struct cpuinfo_x86 *c)
628{
John Villalovos293afe42009-09-25 13:30:08 -0400629 /* Intel Xeon Processor 7100 Series Specification Update
630 * http://www.intel.com/Assets/PDF/specupdate/314554.pdf
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400631 * AL30: A Machine Check Exception (MCE) Occurring during an
632 * Enhanced Intel SpeedStep Technology Ratio Change May Cause
John Villalovos293afe42009-09-25 13:30:08 -0400633 * Both Processor Cores to Lock Up. */
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400634 if (c->x86_vendor == X86_VENDOR_INTEL) {
635 if ((c->x86 == 15) &&
636 (c->x86_model == 6) &&
Jia Zhangb3991512018-01-01 09:52:10 +0800637 (c->x86_stepping == 8)) {
Joe Perches1c5864e2016-04-05 13:28:25 -0700638 pr_info("Intel(R) Xeon(R) 7100 Errata AL30, processors may lock up on frequency changes: disabling acpi-cpufreq\n");
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400639 return -ENODEV;
John Villalovos293afe42009-09-25 13:30:08 -0400640 }
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400641 }
642 return 0;
643}
Dave Jones95625b82006-10-21 01:37:39 -0400644#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700645
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700646static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700648 unsigned int i;
649 unsigned int valid_states = 0;
650 unsigned int cpu = policy->cpu;
651 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700652 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200653 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700654 struct acpi_processor_performance *perf;
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530655 struct cpufreq_frequency_table *freq_table;
John Villalovos293afe42009-09-25 13:30:08 -0400656#ifdef CONFIG_SMP
657 static int blacklisted;
658#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200660 pr_debug("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400662#ifdef CONFIG_SMP
John Villalovos293afe42009-09-25 13:30:08 -0400663 if (blacklisted)
664 return blacklisted;
665 blacklisted = acpi_cpufreq_blacklist(c);
666 if (blacklisted)
667 return blacklisted;
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400668#endif
669
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530670 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700672 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800674 if (!zalloc_cpumask_var(&data->freqdomain_cpus, GFP_KERNEL)) {
675 result = -ENOMEM;
676 goto err_free;
677 }
678
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200679 perf = per_cpu_ptr(acpi_perf_data, cpu);
Pan Xinhui8cfcfd32015-07-10 14:36:20 +0800680 data->acpi_perf_cpu = cpu;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800681 policy->driver_data = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700682
Dave Jones95dd7222006-10-18 00:41:48 -0400683 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700684 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200686 result = acpi_processor_register_performance(perf, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (result)
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800688 goto err_free_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500690 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400691
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400692 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400693 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400694 * coordination is required.
695 */
696 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700697 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800698 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700699 }
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800700 cpumask_copy(data->freqdomain_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700701
702#ifdef CONFIG_SMP
703 dmi_check_system(sw_any_bug_dmi_table);
Fabio Baltieri2624f902013-01-31 09:44:40 +0000704 if (bios_with_sw_any_bug && !policy_is_shared(policy)) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700705 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Bartosz Golaszewski3280c3c2015-05-26 15:11:33 +0200706 cpumask_copy(policy->cpus, topology_core_cpumask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700707 }
Andre Przywaraacd31622012-09-04 08:28:03 +0000708
709 if (check_amd_hwpstate_cpu(cpu) && !acpi_pstate_strict) {
710 cpumask_clear(policy->cpus);
711 cpumask_set_cpu(cpu, policy->cpus);
Bartosz Golaszewski3280c3c2015-05-26 15:11:33 +0200712 cpumask_copy(data->freqdomain_cpus,
713 topology_sibling_cpumask(cpu));
Andre Przywaraacd31622012-09-04 08:28:03 +0000714 policy->shared_type = CPUFREQ_SHARED_TYPE_HW;
Joe Perches1c5864e2016-04-05 13:28:25 -0700715 pr_info_once("overriding BIOS provided _PSD data\n");
Andre Przywaraacd31622012-09-04 08:28:03 +0000716 }
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700717#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500720 if (perf->state_count <= 1) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200721 pr_debug("No P-States\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 result = -ENODEV;
723 goto err_unreg;
724 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500725
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700726 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 result = -ENODEV;
728 goto err_unreg;
729 }
730
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700731 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700732 case ACPI_ADR_SPACE_SYSTEM_IO:
Matthew Garrettc40a4512013-01-20 10:24:26 +0000733 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
734 boot_cpu_data.x86 == 0xf) {
735 pr_debug("AMD K8 systems must use native drivers.\n");
736 result = -ENODEV;
737 goto err_unreg;
738 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200739 pr_debug("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700740 data->cpu_feature = SYSTEM_IO_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100741 data->cpu_freq_read = cpu_freq_read_io;
742 data->cpu_freq_write = cpu_freq_write_io;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700743 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700744 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200745 pr_debug("HARDWARE addr space\n");
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000746 if (check_est_cpu(cpu)) {
747 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100748 data->cpu_freq_read = cpu_freq_read_intel;
749 data->cpu_freq_write = cpu_freq_write_intel;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000750 break;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700751 }
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000752 if (check_amd_hwpstate_cpu(cpu)) {
753 data->cpu_feature = SYSTEM_AMD_MSR_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100754 data->cpu_freq_read = cpu_freq_read_amd;
755 data->cpu_freq_write = cpu_freq_write_amd;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000756 break;
757 }
758 result = -ENODEV;
759 goto err_unreg;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700760 default:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200761 pr_debug("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700762 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700763 result = -ENODEV;
764 goto err_unreg;
765 }
766
Kees Cook6396bb22018-06-12 14:03:40 -0700767 freq_table = kcalloc(perf->state_count + 1, sizeof(*freq_table),
768 GFP_KERNEL);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530769 if (!freq_table) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 result = -ENOMEM;
771 goto err_unreg;
772 }
773
774 /* detect transition latency */
775 policy->cpuinfo.transition_latency = 0;
Dave Jones3a58df32009-01-17 22:36:14 -0500776 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700777 if ((perf->states[i].transition_latency * 1000) >
778 policy->cpuinfo.transition_latency)
779 policy->cpuinfo.transition_latency =
780 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700783 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
784 if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE &&
785 policy->cpuinfo.transition_latency > 20 * 1000) {
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700786 policy->cpuinfo.transition_latency = 20 * 1000;
Joe Perchesb49c22a2016-04-05 13:28:24 -0700787 pr_info_once("P-state transition latency capped at 20 uS\n");
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700788 }
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /* table init */
Dave Jones3a58df32009-01-17 22:36:14 -0500791 for (i = 0; i < perf->state_count; i++) {
792 if (i > 0 && perf->states[i].core_frequency >=
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530793 freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700794 continue;
795
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530796 freq_table[valid_states].driver_data = i;
797 freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700798 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700799 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530801 freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Viresh Kumar1a186d92018-02-26 10:38:46 +0530802 policy->freq_table = freq_table;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800803 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Mattia Dongilia507ac42006-12-15 19:52:45 +0100805 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700806 case ACPI_ADR_SPACE_SYSTEM_IO:
Viresh Kumar1bab64d2013-10-16 23:58:10 +0200807 /*
808 * The core will not set policy->cur, because
809 * cpufreq_driver->get is NULL, so we need to set it here.
810 * However, we have to guess it, because the current speed is
811 * unknown and not detectable via IO ports.
812 */
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700813 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
814 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700815 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700816 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700817 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700818 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700819 break;
820 }
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /* notify BIOS that we exist */
823 acpi_processor_notify_smm(THIS_MODULE);
824
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200825 pr_debug("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500826 for (i = 0; i < perf->state_count; i++)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200827 pr_debug(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700828 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500829 (u32) perf->states[i].core_frequency,
830 (u32) perf->states[i].power,
831 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400833 /*
834 * the first call to ->target() should result in us actually
835 * writing something to the appropriate registers.
836 */
837 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700838
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200839 policy->fast_switch_possible = !acpi_pstate_strict &&
840 !(policy_is_shared(policy) && policy->shared_type != CPUFREQ_SHARED_TYPE_ANY);
841
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700842 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Dave Jones95dd7222006-10-18 00:41:48 -0400844err_unreg:
Rafael J. Wysockib2f8dc42015-07-22 22:11:16 +0200845 acpi_processor_unregister_performance(cpu);
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800846err_free_mask:
847 free_cpumask_var(data->freqdomain_cpus);
Dave Jones95dd7222006-10-18 00:41:48 -0400848err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 kfree(data);
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800850 policy->driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700852 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700855static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800857 struct acpi_cpufreq_data *data = policy->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200859 pr_debug("acpi_cpufreq_cpu_exit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Viresh Kumar9b55f552016-04-07 14:06:58 +0530861 policy->fast_switch_possible = false;
862 policy->driver_data = NULL;
863 acpi_processor_unregister_performance(data->acpi_perf_cpu);
864 free_cpumask_var(data->freqdomain_cpus);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530865 kfree(policy->freq_table);
Viresh Kumar9b55f552016-04-07 14:06:58 +0530866 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Viresh Kumar1a186d92018-02-26 10:38:46 +0530871static void acpi_cpufreq_cpu_ready(struct cpufreq_policy *policy)
872{
873 struct acpi_processor_performance *perf = per_cpu_ptr(acpi_perf_data,
874 policy->cpu);
875
876 if (perf->states[0].core_frequency * 1000 != policy->cpuinfo.max_freq)
877 pr_warn(FW_WARN "P-state 0 is not max freq\n");
878}
879
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700880static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800882 struct acpi_cpufreq_data *data = policy->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200884 pr_debug("acpi_cpufreq_resume\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 data->resume = 1;
887
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700891static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 &cpufreq_freq_attr_scaling_available_freqs,
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800893 &freqdomain_cpus,
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200894#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
895 &cpb,
896#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 NULL,
898};
899
900static struct cpufreq_driver acpi_cpufreq_driver = {
Viresh Kumardb9be212013-10-03 20:27:56 +0530901 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530902 .target_index = acpi_cpufreq_target,
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200903 .fast_switch = acpi_cpufreq_fast_switch,
Thomas Renningere2f74f32009-11-19 12:31:01 +0100904 .bios_limit = acpi_processor_get_bios_limit,
905 .init = acpi_cpufreq_cpu_init,
906 .exit = acpi_cpufreq_cpu_exit,
Viresh Kumar1a186d92018-02-26 10:38:46 +0530907 .ready = acpi_cpufreq_cpu_ready,
Thomas Renningere2f74f32009-11-19 12:31:01 +0100908 .resume = acpi_cpufreq_resume,
909 .name = "acpi-cpufreq",
Thomas Renningere2f74f32009-11-19 12:31:01 +0100910 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911};
912
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100913static enum cpuhp_state acpi_cpufreq_online;
914
Andre Przywara615b7302012-09-04 08:28:07 +0000915static void __init acpi_cpufreq_boost_init(void)
916{
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100917 int ret;
Andre Przywara615b7302012-09-04 08:28:07 +0000918
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100919 if (!(boot_cpu_has(X86_FEATURE_CPB) || boot_cpu_has(X86_FEATURE_IDA)))
920 return;
Andre Przywara615b7302012-09-04 08:28:07 +0000921
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100922 acpi_cpufreq_driver.set_boost = set_boost;
923 acpi_cpufreq_driver.boost_enabled = boost_state(0);
Andre Przywara615b7302012-09-04 08:28:07 +0000924
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100925 /*
926 * This calls the online callback on all online cpu and forces all
927 * MSRs to the same value.
928 */
929 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "cpufreq/acpi:online",
930 cpufreq_boost_online, cpufreq_boost_down_prep);
931 if (ret < 0) {
932 pr_err("acpi_cpufreq: failed to register hotplug callbacks\n");
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100933 return;
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100934 }
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100935 acpi_cpufreq_online = ret;
Andre Przywara615b7302012-09-04 08:28:07 +0000936}
937
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -0500938static void acpi_cpufreq_boost_exit(void)
Andre Przywara615b7302012-09-04 08:28:07 +0000939{
Boris Ostrovsky2a8fa122016-12-15 10:00:58 -0500940 if (acpi_cpufreq_online > 0)
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100941 cpuhp_remove_state_nocalls(acpi_cpufreq_online);
Andre Przywara615b7302012-09-04 08:28:07 +0000942}
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");