blob: 3a2ca0f79daf281c5940222f6b9da179b35f64f3 [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)
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 unsigned int resume;
69 unsigned int cpu_feature;
Pan Xinhui8cfcfd32015-07-10 14:36:20 +080070 unsigned int acpi_perf_cpu;
Lan Tianyuf4fd3792013-06-27 15:08:54 +080071 cpumask_var_t freqdomain_cpus;
Rafael J. Wysockied757a22016-03-02 03:05:22 +010072 void (*cpu_freq_write)(struct acpi_pct_register *reg, u32 val);
73 u32 (*cpu_freq_read)(struct acpi_pct_register *reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
Fenghua Yu50109292007-08-07 18:40:30 -040076/* acpi_perf_data is a pointer to percpu data. */
Namhyung Kim3f6c4df2010-08-13 23:00:11 +090077static struct acpi_processor_performance __percpu *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Rafael J. Wysocki34276162015-07-22 22:11:56 +020079static inline struct acpi_processor_performance *to_perf_data(struct acpi_cpufreq_data *data)
80{
81 return per_cpu_ptr(acpi_perf_data, data->acpi_perf_cpu);
82}
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static struct cpufreq_driver acpi_cpufreq_driver;
85
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040086static unsigned int acpi_pstate_strict;
Andre Przywara615b7302012-09-04 08:28:07 +000087
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
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100106static int boost_set_msr(bool enable)
Andre Przywara615b7302012-09-04 08:28:07 +0000107{
Andre Przywara615b7302012-09-04 08:28:07 +0000108 u32 msr_addr;
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100109 u64 msr_mask, val;
Andre Przywara615b7302012-09-04 08:28:07 +0000110
111 switch (boot_cpu_data.x86_vendor) {
112 case X86_VENDOR_INTEL:
113 msr_addr = MSR_IA32_MISC_ENABLE;
114 msr_mask = MSR_IA32_MISC_ENABLE_TURBO_DISABLE;
115 break;
116 case X86_VENDOR_AMD:
117 msr_addr = MSR_K7_HWCR;
118 msr_mask = MSR_K7_HWCR_CPB_DIS;
119 break;
120 default:
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100121 return -EINVAL;
Andre Przywara615b7302012-09-04 08:28:07 +0000122 }
123
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100124 rdmsrl(msr_addr, val);
Andre Przywara615b7302012-09-04 08:28:07 +0000125
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100126 if (enable)
127 val &= ~msr_mask;
128 else
129 val |= msr_mask;
Andre Przywara615b7302012-09-04 08:28:07 +0000130
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100131 wrmsrl(msr_addr, val);
132 return 0;
133}
134
135static void boost_set_msr_each(void *p_en)
136{
137 bool enable = (bool) p_en;
138
139 boost_set_msr(enable);
Andre Przywara615b7302012-09-04 08:28:07 +0000140}
141
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100142static int set_boost(int val)
Andre Przywara615b7302012-09-04 08:28:07 +0000143{
Andre Przywara615b7302012-09-04 08:28:07 +0000144 get_online_cpus();
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100145 on_each_cpu(boost_set_msr_each, (void *)(long)val, 1);
Andre Przywara615b7302012-09-04 08:28:07 +0000146 put_online_cpus();
Andre Przywara615b7302012-09-04 08:28:07 +0000147 pr_debug("Core Boosting %sabled.\n", val ? "en" : "dis");
148
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100149 return 0;
Andre Przywara615b7302012-09-04 08:28:07 +0000150}
151
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800152static ssize_t show_freqdomain_cpus(struct cpufreq_policy *policy, char *buf)
153{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800154 struct acpi_cpufreq_data *data = policy->driver_data;
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800155
Srinivas Pandruvadae2530362015-10-07 13:50:43 -0700156 if (unlikely(!data))
157 return -ENODEV;
158
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800159 return cpufreq_show_cpus(data->freqdomain_cpus, buf);
160}
161
162cpufreq_freq_attr_ro(freqdomain_cpus);
163
Andre Przywara11269ff2012-09-04 08:28:08 +0000164#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100165static ssize_t store_cpb(struct cpufreq_policy *policy, const char *buf,
166 size_t count)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100167{
168 int ret;
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100169 unsigned int val = 0;
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100170
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +0100171 if (!acpi_cpufreq_driver.set_boost)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100172 return -EINVAL;
173
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100174 ret = kstrtouint(buf, 10, &val);
175 if (ret || val > 1)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100176 return -EINVAL;
177
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100178 set_boost(val);
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100179
180 return count;
181}
182
Andre Przywara11269ff2012-09-04 08:28:08 +0000183static ssize_t show_cpb(struct cpufreq_policy *policy, char *buf)
184{
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100185 return sprintf(buf, "%u\n", acpi_cpufreq_driver.boost_enabled);
Andre Przywara11269ff2012-09-04 08:28:08 +0000186}
187
Lan Tianyu59027d32013-08-13 10:05:53 +0800188cpufreq_freq_attr_rw(cpb);
Andre Przywara11269ff2012-09-04 08:28:08 +0000189#endif
190
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700191static int check_est_cpu(unsigned int cpuid)
192{
Mike Travis92cb7612007-10-19 20:35:04 +0200193 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700194
Harald Welte0de51082009-06-08 18:27:54 +0800195 return cpu_has(cpu, X86_FEATURE_EST);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700196}
197
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000198static int check_amd_hwpstate_cpu(unsigned int cpuid)
199{
200 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
201
202 return cpu_has(cpu, X86_FEATURE_HW_PSTATE);
203}
204
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530205static unsigned extract_io(struct cpufreq_policy *policy, u32 value)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700206{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530207 struct acpi_cpufreq_data *data = policy->driver_data;
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)
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530215 return policy->freq_table[i].frequency;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700216 }
217 return 0;
218}
219
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530220static unsigned extract_msr(struct cpufreq_policy *policy, u32 msr)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700221{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530222 struct acpi_cpufreq_data *data = policy->driver_data;
Stratos Karafotis041526f2014-04-25 23:15:38 +0300223 struct cpufreq_frequency_table *pos;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700224 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700225
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000226 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
227 msr &= AMD_MSR_RANGE;
228 else
229 msr &= INTEL_MSR_RANGE;
230
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200231 perf = to_perf_data(data);
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700232
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530233 cpufreq_for_each_entry(pos, policy->freq_table)
Stratos Karafotis041526f2014-04-25 23:15:38 +0300234 if (msr == perf->states[pos->driver_data].status)
235 return pos->frequency;
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530236 return policy->freq_table[0].frequency;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700237}
238
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530239static unsigned extract_freq(struct cpufreq_policy *policy, u32 val)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700240{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530241 struct acpi_cpufreq_data *data = policy->driver_data;
242
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700243 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700244 case SYSTEM_INTEL_MSR_CAPABLE:
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000245 case SYSTEM_AMD_MSR_CAPABLE:
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530246 return extract_msr(policy, val);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700247 case SYSTEM_IO_CAPABLE:
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530248 return extract_io(policy, val);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700249 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700250 return 0;
251 }
252}
253
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800254static u32 cpu_freq_read_intel(struct acpi_pct_register *not_used)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100255{
256 u32 val, dummy;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700257
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100258 rdmsr(MSR_IA32_PERF_CTL, val, dummy);
259 return val;
260}
261
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800262static void cpu_freq_write_intel(struct acpi_pct_register *not_used, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100263{
264 u32 lo, hi;
265
266 rdmsr(MSR_IA32_PERF_CTL, lo, hi);
267 lo = (lo & ~INTEL_MSR_RANGE) | (val & INTEL_MSR_RANGE);
268 wrmsr(MSR_IA32_PERF_CTL, lo, hi);
269}
270
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800271static u32 cpu_freq_read_amd(struct acpi_pct_register *not_used)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100272{
273 u32 val, dummy;
274
275 rdmsr(MSR_AMD_PERF_CTL, val, dummy);
276 return val;
277}
278
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800279static void cpu_freq_write_amd(struct acpi_pct_register *not_used, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100280{
281 wrmsr(MSR_AMD_PERF_CTL, val, 0);
282}
283
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800284static u32 cpu_freq_read_io(struct acpi_pct_register *reg)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100285{
286 u32 val;
287
288 acpi_os_read_port(reg->address, &val, reg->bit_width);
289 return val;
290}
291
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800292static void cpu_freq_write_io(struct acpi_pct_register *reg, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100293{
294 acpi_os_write_port(reg->address, val, reg->bit_width);
295}
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700296
297struct drv_cmd {
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100298 struct acpi_pct_register *reg;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700299 u32 val;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100300 union {
301 void (*write)(struct acpi_pct_register *reg, u32 val);
302 u32 (*read)(struct acpi_pct_register *reg);
303 } func;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700304};
305
Andrew Morton01599fc2009-04-13 10:27:49 -0700306/* Called via smp_call_function_single(), on the target CPU */
307static void do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700308{
Mike Travis72859082009-01-16 15:31:15 -0800309 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700310
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100311 cmd->val = cmd->func.read(cmd->reg);
312}
313
314static u32 drv_read(struct acpi_cpufreq_data *data, const struct cpumask *mask)
315{
316 struct acpi_processor_performance *perf = to_perf_data(data);
317 struct drv_cmd cmd = {
318 .reg = &perf->control_register,
319 .func.read = data->cpu_freq_read,
320 };
321 int err;
322
323 err = smp_call_function_any(mask, do_drv_read, &cmd, 1);
324 WARN_ON_ONCE(err); /* smp_call_function_any() was buggy? */
325 return cmd.val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700326}
327
Andrew Morton01599fc2009-04-13 10:27:49 -0700328/* Called via smp_call_function_many(), on the target CPUs */
329static void do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700330{
Mike Travis72859082009-01-16 15:31:15 -0800331 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700332
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100333 cmd->func.write(cmd->reg, cmd->val);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700334}
335
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100336static void drv_write(struct acpi_cpufreq_data *data,
337 const struct cpumask *mask, u32 val)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700338{
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100339 struct acpi_processor_performance *perf = to_perf_data(data);
340 struct drv_cmd cmd = {
341 .reg = &perf->control_register,
342 .val = val,
343 .func.write = data->cpu_freq_write,
344 };
Linus Torvaldsea34f432009-04-15 08:05:13 -0700345 int this_cpu;
346
347 this_cpu = get_cpu();
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100348 if (cpumask_test_cpu(this_cpu, mask))
349 do_drv_write(&cmd);
350
351 smp_call_function_many(mask, do_drv_write, &cmd, 1);
Linus Torvaldsea34f432009-04-15 08:05:13 -0700352 put_cpu();
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700353}
354
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100355static u32 get_cur_val(const struct cpumask *mask, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700356{
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100357 u32 val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700358
Mike Travis4d8bb532009-01-04 05:18:08 -0800359 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700360 return 0;
361
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100362 val = drv_read(data, mask);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700363
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100364 pr_debug("get_cur_val = %u\n", val);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700365
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100366 return val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700367}
368
369static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
370{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800371 struct acpi_cpufreq_data *data;
372 struct cpufreq_policy *policy;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700373 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400374 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700375
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200376 pr_debug("get_cur_freq_on_cpu (%d)\n", cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700377
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200378 policy = cpufreq_cpu_get_raw(cpu);
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800379 if (unlikely(!policy))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700380 return 0;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800381
382 data = policy->driver_data;
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530383 if (unlikely(!data || !policy->freq_table))
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800384 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700385
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530386 cached_freq = policy->freq_table[to_perf_data(data)->state].frequency;
387 freq = extract_freq(policy, get_cur_val(cpumask_of(cpu), data));
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400388 if (freq != cached_freq) {
389 /*
390 * The dreaded BIOS frequency change behind our back.
391 * Force set the frequency on next target call.
392 */
393 data->resume = 1;
394 }
395
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200396 pr_debug("cur freq = %u\n", freq);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700397
398 return freq;
399}
400
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530401static unsigned int check_freqs(struct cpufreq_policy *policy,
402 const struct cpumask *mask, unsigned int freq)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700403{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530404 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700405 unsigned int cur_freq;
406 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700407
Dave Jones3a58df32009-01-17 22:36:14 -0500408 for (i = 0; i < 100; i++) {
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530409 cur_freq = extract_freq(policy, get_cur_val(mask, data));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700410 if (cur_freq == freq)
411 return 1;
412 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 return 0;
415}
416
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700417static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530418 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800420 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700421 struct acpi_processor_performance *perf;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100422 const struct cpumask *mask;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800423 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700424 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530426 if (unlikely(!data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700427 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200430 perf = to_perf_data(data);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530431 next_perf_state = policy->freq_table[index].driver_data;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700432 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700433 if (unlikely(data->resume)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200434 pr_debug("Called after resume, resetting to P%d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700435 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700436 data->resume = 0;
437 } else {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200438 pr_debug("Already at target state (P%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700439 next_perf_state);
Rafael J. Wysocki9a909a12016-02-26 00:03:58 +0100440 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700441 }
442 }
443
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100444 /*
445 * The core won't allow CPUs to go away until the governor has been
446 * stopped, so we can rely on the stability of policy->cpus.
447 */
448 mask = policy->shared_type == CPUFREQ_SHARED_TYPE_ANY ?
449 cpumask_of(policy->cpu) : policy->cpus;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700450
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100451 drv_write(data, mask, perf->states[next_perf_state].control);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500452
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700453 if (acpi_pstate_strict) {
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530454 if (!check_freqs(policy, mask,
455 policy->freq_table[index].frequency)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200456 pr_debug("acpi_cpufreq_target failed (%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700457 policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800458 result = -EAGAIN;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500459 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500460 }
461
Viresh Kumare15d8302013-06-19 14:22:55 +0530462 if (!result)
463 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500464
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700465 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200468unsigned int acpi_cpufreq_fast_switch(struct cpufreq_policy *policy,
469 unsigned int target_freq)
470{
471 struct acpi_cpufreq_data *data = policy->driver_data;
472 struct acpi_processor_performance *perf;
473 struct cpufreq_frequency_table *entry;
Viresh Kumar82577362016-06-27 09:59:34 +0530474 unsigned int next_perf_state, next_freq, index;
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200475
476 /*
477 * Find the closest frequency above target_freq.
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200478 */
Steve Muckle5b6667c2016-07-13 13:25:27 -0700479 if (policy->cached_target_freq == target_freq)
480 index = policy->cached_resolved_idx;
481 else
482 index = cpufreq_table_find_index_dl(policy, target_freq);
Viresh Kumar82577362016-06-27 09:59:34 +0530483
484 entry = &policy->freq_table[index];
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200485 next_freq = entry->frequency;
486 next_perf_state = entry->driver_data;
487
488 perf = to_perf_data(data);
489 if (perf->state == next_perf_state) {
490 if (unlikely(data->resume))
491 data->resume = 0;
492 else
493 return next_freq;
494 }
495
496 data->cpu_freq_write(&perf->control_register,
497 perf->states[next_perf_state].control);
498 perf->state = next_perf_state;
499 return next_freq;
500}
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700503acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200505 struct acpi_processor_performance *perf;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500506
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200507 perf = to_perf_data(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (cpu_khz) {
509 /* search the closest match to cpu_khz */
510 unsigned int i;
511 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500512 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Dave Jones3a58df32009-01-17 22:36:14 -0500514 for (i = 0; i < (perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400516 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500518 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700519 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521 }
Dave Jones95dd7222006-10-18 00:41:48 -0400522 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700523 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500524 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500526 perf->state = 0;
527 return perf->states[0].core_frequency * 1000;
528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800531static void free_acpi_perf_data(void)
532{
533 unsigned int i;
534
535 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
536 for_each_possible_cpu(i)
537 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
538 ->shared_cpu_map);
539 free_percpu(acpi_perf_data);
540}
541
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100542static int cpufreq_boost_online(unsigned int cpu)
Andre Przywara615b7302012-09-04 08:28:07 +0000543{
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100544 /*
545 * On the CPU_UP path we simply keep the boost-disable flag
546 * in sync with the current global state.
547 */
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100548 return boost_set_msr(acpi_cpufreq_driver.boost_enabled);
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100549}
550
551static int cpufreq_boost_down_prep(unsigned int cpu)
552{
Andre Przywara615b7302012-09-04 08:28:07 +0000553 /*
554 * Clear the boost-disable bit on the CPU_DOWN path so that
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100555 * this cpu cannot block the remaining ones from boosting.
Andre Przywara615b7302012-09-04 08:28:07 +0000556 */
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100557 return boost_set_msr(1);
Andre Przywara615b7302012-09-04 08:28:07 +0000558}
559
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500560/*
561 * acpi_cpufreq_early_init - initialize ACPI P-States library
562 *
563 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
564 * in order to determine correct frequency and voltage pairings. We can
565 * do _PDC and _PSD and find out the processor dependency for the
566 * actual init that will happen later...
567 */
Fenghua Yu50109292007-08-07 18:40:30 -0400568static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500569{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800570 unsigned int i;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200571 pr_debug("acpi_cpufreq_early_init\n");
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500572
Fenghua Yu50109292007-08-07 18:40:30 -0400573 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
574 if (!acpi_perf_data) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200575 pr_debug("Memory allocation error for acpi_perf_data.\n");
Fenghua Yu50109292007-08-07 18:40:30 -0400576 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500577 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800578 for_each_possible_cpu(i) {
Yinghai Lueaa95842009-06-06 14:51:36 -0700579 if (!zalloc_cpumask_var_node(
Mike Travis80855f72008-12-31 18:08:47 -0800580 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
581 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800582
583 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
584 free_acpi_perf_data();
585 return -ENOMEM;
586 }
587 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500588
589 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700590 acpi_processor_preregister_performance(acpi_perf_data);
591 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500592}
593
Dave Jones95625b82006-10-21 01:37:39 -0400594#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700595/*
596 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
597 * or do it in BIOS firmware and won't inform about it to OS. If not
598 * detected, this has a side effect of making CPU run at a different speed
599 * than OS intended it to run at. Detect it and handle it cleanly.
600 */
601static int bios_with_sw_any_bug;
602
Jeff Garzik18552562007-10-03 15:15:40 -0400603static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700604{
605 bios_with_sw_any_bug = 1;
606 return 0;
607}
608
Jeff Garzik18552562007-10-03 15:15:40 -0400609static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700610 {
611 .callback = sw_any_bug_found,
612 .ident = "Supermicro Server X6DLP",
613 .matches = {
614 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
615 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
616 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
617 },
618 },
619 { }
620};
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400621
622static int acpi_cpufreq_blacklist(struct cpuinfo_x86 *c)
623{
John Villalovos293afe42009-09-25 13:30:08 -0400624 /* Intel Xeon Processor 7100 Series Specification Update
625 * http://www.intel.com/Assets/PDF/specupdate/314554.pdf
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400626 * AL30: A Machine Check Exception (MCE) Occurring during an
627 * Enhanced Intel SpeedStep Technology Ratio Change May Cause
John Villalovos293afe42009-09-25 13:30:08 -0400628 * Both Processor Cores to Lock Up. */
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400629 if (c->x86_vendor == X86_VENDOR_INTEL) {
630 if ((c->x86 == 15) &&
631 (c->x86_model == 6) &&
John Villalovos293afe42009-09-25 13:30:08 -0400632 (c->x86_mask == 8)) {
Joe Perches1c5864e2016-04-05 13:28:25 -0700633 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 -0400634 return -ENODEV;
John Villalovos293afe42009-09-25 13:30:08 -0400635 }
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400636 }
637 return 0;
638}
Dave Jones95625b82006-10-21 01:37:39 -0400639#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700640
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700641static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700643 unsigned int i;
644 unsigned int valid_states = 0;
645 unsigned int cpu = policy->cpu;
646 struct acpi_cpufreq_data *data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700647 unsigned int result = 0;
Mike Travis92cb7612007-10-19 20:35:04 +0200648 struct cpuinfo_x86 *c = &cpu_data(policy->cpu);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700649 struct acpi_processor_performance *perf;
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530650 struct cpufreq_frequency_table *freq_table;
John Villalovos293afe42009-09-25 13:30:08 -0400651#ifdef CONFIG_SMP
652 static int blacklisted;
653#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200655 pr_debug("acpi_cpufreq_cpu_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400657#ifdef CONFIG_SMP
John Villalovos293afe42009-09-25 13:30:08 -0400658 if (blacklisted)
659 return blacklisted;
660 blacklisted = acpi_cpufreq_blacklist(c);
661 if (blacklisted)
662 return blacklisted;
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400663#endif
664
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530665 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700667 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800669 if (!zalloc_cpumask_var(&data->freqdomain_cpus, GFP_KERNEL)) {
670 result = -ENOMEM;
671 goto err_free;
672 }
673
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200674 perf = per_cpu_ptr(acpi_perf_data, cpu);
Pan Xinhui8cfcfd32015-07-10 14:36:20 +0800675 data->acpi_perf_cpu = cpu;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800676 policy->driver_data = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700677
Dave Jones95dd7222006-10-18 00:41:48 -0400678 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700679 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200681 result = acpi_processor_register_performance(perf, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (result)
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800683 goto err_free_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500685 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400686
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400687 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400688 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400689 * coordination is required.
690 */
691 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700692 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800693 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700694 }
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800695 cpumask_copy(data->freqdomain_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700696
697#ifdef CONFIG_SMP
698 dmi_check_system(sw_any_bug_dmi_table);
Fabio Baltieri2624f902013-01-31 09:44:40 +0000699 if (bios_with_sw_any_bug && !policy_is_shared(policy)) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700700 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Bartosz Golaszewski3280c3c2015-05-26 15:11:33 +0200701 cpumask_copy(policy->cpus, topology_core_cpumask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700702 }
Andre Przywaraacd31622012-09-04 08:28:03 +0000703
704 if (check_amd_hwpstate_cpu(cpu) && !acpi_pstate_strict) {
705 cpumask_clear(policy->cpus);
706 cpumask_set_cpu(cpu, policy->cpus);
Bartosz Golaszewski3280c3c2015-05-26 15:11:33 +0200707 cpumask_copy(data->freqdomain_cpus,
708 topology_sibling_cpumask(cpu));
Andre Przywaraacd31622012-09-04 08:28:03 +0000709 policy->shared_type = CPUFREQ_SHARED_TYPE_HW;
Joe Perches1c5864e2016-04-05 13:28:25 -0700710 pr_info_once("overriding BIOS provided _PSD data\n");
Andre Przywaraacd31622012-09-04 08:28:03 +0000711 }
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700712#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500715 if (perf->state_count <= 1) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200716 pr_debug("No P-States\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 result = -ENODEV;
718 goto err_unreg;
719 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500720
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700721 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 result = -ENODEV;
723 goto err_unreg;
724 }
725
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700726 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700727 case ACPI_ADR_SPACE_SYSTEM_IO:
Matthew Garrettc40a4512013-01-20 10:24:26 +0000728 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
729 boot_cpu_data.x86 == 0xf) {
730 pr_debug("AMD K8 systems must use native drivers.\n");
731 result = -ENODEV;
732 goto err_unreg;
733 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200734 pr_debug("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700735 data->cpu_feature = SYSTEM_IO_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100736 data->cpu_freq_read = cpu_freq_read_io;
737 data->cpu_freq_write = cpu_freq_write_io;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700738 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700739 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200740 pr_debug("HARDWARE addr space\n");
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000741 if (check_est_cpu(cpu)) {
742 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100743 data->cpu_freq_read = cpu_freq_read_intel;
744 data->cpu_freq_write = cpu_freq_write_intel;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000745 break;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700746 }
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000747 if (check_amd_hwpstate_cpu(cpu)) {
748 data->cpu_feature = SYSTEM_AMD_MSR_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100749 data->cpu_freq_read = cpu_freq_read_amd;
750 data->cpu_freq_write = cpu_freq_write_amd;
Matthew Garrett3dc9a632012-09-04 08:28:02 +0000751 break;
752 }
753 result = -ENODEV;
754 goto err_unreg;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700755 default:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200756 pr_debug("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700757 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700758 result = -ENODEV;
759 goto err_unreg;
760 }
761
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530762 freq_table = kzalloc(sizeof(*freq_table) *
Dave Jones95dd7222006-10-18 00:41:48 -0400763 (perf->state_count+1), GFP_KERNEL);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530764 if (!freq_table) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 result = -ENOMEM;
766 goto err_unreg;
767 }
768
769 /* detect transition latency */
770 policy->cpuinfo.transition_latency = 0;
Dave Jones3a58df32009-01-17 22:36:14 -0500771 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700772 if ((perf->states[i].transition_latency * 1000) >
773 policy->cpuinfo.transition_latency)
774 policy->cpuinfo.transition_latency =
775 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700778 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
779 if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE &&
780 policy->cpuinfo.transition_latency > 20 * 1000) {
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700781 policy->cpuinfo.transition_latency = 20 * 1000;
Joe Perchesb49c22a2016-04-05 13:28:24 -0700782 pr_info_once("P-state transition latency capped at 20 uS\n");
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700783 }
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 /* table init */
Dave Jones3a58df32009-01-17 22:36:14 -0500786 for (i = 0; i < perf->state_count; i++) {
787 if (i > 0 && perf->states[i].core_frequency >=
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530788 freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700789 continue;
790
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530791 freq_table[valid_states].driver_data = i;
792 freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700793 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700794 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530796 freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800797 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530799 result = cpufreq_table_validate_and_show(policy, freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400800 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto err_freqfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Thomas Renningerd876dfb2009-04-17 16:22:08 +0200803 if (perf->states[0].core_frequency * 1000 != policy->cpuinfo.max_freq)
Joe Perchesb49c22a2016-04-05 13:28:24 -0700804 pr_warn(FW_WARN "P-state 0 is not max freq\n");
Thomas Renningerd876dfb2009-04-17 16:22:08 +0200805
Mattia Dongilia507ac42006-12-15 19:52:45 +0100806 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700807 case ACPI_ADR_SPACE_SYSTEM_IO:
Viresh Kumar1bab64d2013-10-16 23:58:10 +0200808 /*
809 * The core will not set policy->cur, because
810 * cpufreq_driver->get is NULL, so we need to set it here.
811 * However, we have to guess it, because the current speed is
812 * unknown and not detectable via IO ports.
813 */
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700814 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
815 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700816 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700817 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700818 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700819 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700820 break;
821 }
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* notify BIOS that we exist */
824 acpi_processor_notify_smm(THIS_MODULE);
825
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200826 pr_debug("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500827 for (i = 0; i < perf->state_count; i++)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200828 pr_debug(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700829 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500830 (u32) perf->states[i].core_frequency,
831 (u32) perf->states[i].power,
832 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400834 /*
835 * the first call to ->target() should result in us actually
836 * writing something to the appropriate registers.
837 */
838 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700839
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200840 policy->fast_switch_possible = !acpi_pstate_strict &&
841 !(policy_is_shared(policy) && policy->shared_type != CPUFREQ_SHARED_TYPE_ANY);
842
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700843 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Dave Jones95dd7222006-10-18 00:41:48 -0400845err_freqfree:
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530846 kfree(freq_table);
Dave Jones95dd7222006-10-18 00:41:48 -0400847err_unreg:
Rafael J. Wysockib2f8dc42015-07-22 22:11:16 +0200848 acpi_processor_unregister_performance(cpu);
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800849err_free_mask:
850 free_cpumask_var(data->freqdomain_cpus);
Dave Jones95dd7222006-10-18 00:41:48 -0400851err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 kfree(data);
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800853 policy->driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700855 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700858static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800860 struct acpi_cpufreq_data *data = policy->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200862 pr_debug("acpi_cpufreq_cpu_exit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Viresh Kumar9b55f552016-04-07 14:06:58 +0530864 policy->fast_switch_possible = false;
865 policy->driver_data = NULL;
866 acpi_processor_unregister_performance(data->acpi_perf_cpu);
867 free_cpumask_var(data->freqdomain_cpus);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530868 kfree(policy->freq_table);
Viresh Kumar9b55f552016-04-07 14:06:58 +0530869 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700871 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700874static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800876 struct acpi_cpufreq_data *data = policy->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200878 pr_debug("acpi_cpufreq_resume\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 data->resume = 1;
881
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700882 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700885static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 &cpufreq_freq_attr_scaling_available_freqs,
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800887 &freqdomain_cpus,
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200888#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
889 &cpb,
890#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 NULL,
892};
893
894static struct cpufreq_driver acpi_cpufreq_driver = {
Viresh Kumardb9be212013-10-03 20:27:56 +0530895 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530896 .target_index = acpi_cpufreq_target,
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200897 .fast_switch = acpi_cpufreq_fast_switch,
Thomas Renningere2f74f32009-11-19 12:31:01 +0100898 .bios_limit = acpi_processor_get_bios_limit,
899 .init = acpi_cpufreq_cpu_init,
900 .exit = acpi_cpufreq_cpu_exit,
901 .resume = acpi_cpufreq_resume,
902 .name = "acpi-cpufreq",
Thomas Renningere2f74f32009-11-19 12:31:01 +0100903 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904};
905
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100906static enum cpuhp_state acpi_cpufreq_online;
907
Andre Przywara615b7302012-09-04 08:28:07 +0000908static void __init acpi_cpufreq_boost_init(void)
909{
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100910 int ret;
Andre Przywara615b7302012-09-04 08:28:07 +0000911
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100912 if (!(boot_cpu_has(X86_FEATURE_CPB) || boot_cpu_has(X86_FEATURE_IDA)))
913 return;
Andre Przywara615b7302012-09-04 08:28:07 +0000914
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100915 acpi_cpufreq_driver.set_boost = set_boost;
916 acpi_cpufreq_driver.boost_enabled = boost_state(0);
Andre Przywara615b7302012-09-04 08:28:07 +0000917
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100918 /*
919 * This calls the online callback on all online cpu and forces all
920 * MSRs to the same value.
921 */
922 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "cpufreq/acpi:online",
923 cpufreq_boost_online, cpufreq_boost_down_prep);
924 if (ret < 0) {
925 pr_err("acpi_cpufreq: failed to register hotplug callbacks\n");
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100926 return;
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100927 }
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100928 acpi_cpufreq_online = ret;
Andre Przywara615b7302012-09-04 08:28:07 +0000929}
930
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -0500931static void acpi_cpufreq_boost_exit(void)
Andre Przywara615b7302012-09-04 08:28:07 +0000932{
Boris Ostrovsky2a8fa122016-12-15 10:00:58 -0500933 if (acpi_cpufreq_online > 0)
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100934 cpuhp_remove_state_nocalls(acpi_cpufreq_online);
Andre Przywara615b7302012-09-04 08:28:07 +0000935}
936
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700937static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Fenghua Yu50109292007-08-07 18:40:30 -0400939 int ret;
940
Rafael J. Wysocki75c07582013-10-25 16:22:47 +0200941 if (acpi_disabled)
942 return -ENODEV;
943
Yinghai Lu8a61e122013-09-20 10:43:56 -0700944 /* don't keep reloading if cpufreq_driver exists */
945 if (cpufreq_get_current_driver())
Rafael J. Wysocki75c07582013-10-25 16:22:47 +0200946 return -EEXIST;
Yinghai Luee297532008-09-24 19:04:31 -0700947
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200948 pr_debug("acpi_cpufreq_init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Fenghua Yu50109292007-08-07 18:40:30 -0400950 ret = acpi_cpufreq_early_init();
951 if (ret)
952 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500953
Andre Przywara11269ff2012-09-04 08:28:08 +0000954#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
955 /* this is a sysfs file with a strange name and an even stranger
956 * semantic - per CPU instantiation, but system global effect.
957 * Lets enable it only on AMD CPUs for compatibility reasons and
958 * only if configured. This is considered legacy code, which
959 * will probably be removed at some point in the future.
960 */
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200961 if (!check_amd_hwpstate_cpu(0)) {
962 struct freq_attr **attr;
Andre Przywara11269ff2012-09-04 08:28:08 +0000963
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200964 pr_debug("CPB unsupported, do not expose it\n");
Andre Przywara11269ff2012-09-04 08:28:08 +0000965
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200966 for (attr = acpi_cpufreq_attr; *attr; attr++)
967 if (*attr == &cpb) {
968 *attr = NULL;
969 break;
970 }
Andre Przywara11269ff2012-09-04 08:28:08 +0000971 }
972#endif
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100973 acpi_cpufreq_boost_init();
Andre Przywara11269ff2012-09-04 08:28:08 +0000974
Akinobu Mita847aef62008-07-14 11:59:44 +0900975 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -0500976 if (ret) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800977 free_acpi_perf_data();
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -0500978 acpi_cpufreq_boost_exit();
979 }
Akinobu Mita847aef62008-07-14 11:59:44 +0900980 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700983static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200985 pr_debug("acpi_cpufreq_exit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Andre Przywara615b7302012-09-04 08:28:07 +0000987 acpi_cpufreq_boost_exit();
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 cpufreq_unregister_driver(&acpi_cpufreq_driver);
990
Luming Yu50f4ddd2011-07-08 16:37:44 -0400991 free_acpi_perf_data();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -0400994module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700995MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -0400996 "value 0 or non-zero. non-zero -> strict ACPI checks are "
997 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999late_initcall(acpi_cpufreq_init);
1000module_exit(acpi_cpufreq_exit);
1001
Matthew Garrettefa17192013-01-22 22:33:46 +01001002static const struct x86_cpu_id acpi_cpufreq_ids[] = {
1003 X86_FEATURE_MATCH(X86_FEATURE_ACPI),
1004 X86_FEATURE_MATCH(X86_FEATURE_HW_PSTATE),
1005 {}
1006};
1007MODULE_DEVICE_TABLE(x86cpu, acpi_cpufreq_ids);
1008
Rafael J. Wysockic655aff2013-06-07 13:13:31 +02001009static const struct acpi_device_id processor_device_ids[] = {
1010 {ACPI_PROCESSOR_OBJECT_HID, },
1011 {ACPI_PROCESSOR_DEVICE_HID, },
1012 {},
1013};
1014MODULE_DEVICE_TABLE(acpi, processor_device_ids);
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016MODULE_ALIAS("acpi");