blob: 3d514b82d055469fbcc43a6b6694f0f30525794b [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Dave Jones3a58df32009-01-17 22:36:14 -05003 * acpi-cpufreq.c - ACPI Processor P-States Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
6 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 * Copyright (C) 2002 - 2004 Dominik Brodowski <linux@brodo.de>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -07008 * Copyright (C) 2006 Denis Sadykov <denis.m.sadykov@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Joe Perches1c5864e2016-04-05 13:28:25 -070011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/init.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070016#include <linux/smp.h>
17#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/cpufreq.h>
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040019#include <linux/compiler.h>
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -070020#include <linux/dmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <linux/acpi.h>
Dave Jones3a58df32009-01-17 22:36:14 -050024#include <linux/io.h>
25#include <linux/delay.h>
26#include <linux/uaccess.h>
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <acpi/processor.h>
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +010029#include <acpi/cppc_acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070031#include <asm/msr.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070032#include <asm/processor.h>
33#include <asm/cpufeature.h>
Thomas Gleixnerba5bade2020-03-20 14:13:46 +010034#include <asm/cpu_device_id.h>
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
37MODULE_DESCRIPTION("ACPI Processor P-States Driver");
38MODULE_LICENSE("GPL");
39
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070040enum {
41 UNDEFINED_CAPABLE = 0,
42 SYSTEM_INTEL_MSR_CAPABLE,
Matthew Garrett3dc9a6332012-09-04 08:28:02 +000043 SYSTEM_AMD_MSR_CAPABLE,
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070044 SYSTEM_IO_CAPABLE,
45};
46
47#define INTEL_MSR_RANGE (0xffff)
Matthew Garrett3dc9a6332012-09-04 08:28:02 +000048#define AMD_MSR_RANGE (0x7)
Pu Wencc9690c2018-09-23 17:37:38 +080049#define HYGON_MSR_RANGE (0x7)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -070050
Andre Przywara615b7302012-09-04 08:28:07 +000051#define MSR_K7_HWCR_CPB_DIS (1ULL << 25)
52
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -070053struct acpi_cpufreq_data {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -070054 unsigned int resume;
55 unsigned int cpu_feature;
Pan Xinhui8cfcfd32015-07-10 14:36:20 +080056 unsigned int acpi_perf_cpu;
Lan Tianyuf4fd3792013-06-27 15:08:54 +080057 cpumask_var_t freqdomain_cpus;
Rafael J. Wysockied757a22016-03-02 03:05:22 +010058 void (*cpu_freq_write)(struct acpi_pct_register *reg, u32 val);
59 u32 (*cpu_freq_read)(struct acpi_pct_register *reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
Fenghua Yu50109292007-08-07 18:40:30 -040062/* acpi_perf_data is a pointer to percpu data. */
Namhyung Kim3f6c4df2010-08-13 23:00:11 +090063static struct acpi_processor_performance __percpu *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Rafael J. Wysocki34276162015-07-22 22:11:56 +020065static inline struct acpi_processor_performance *to_perf_data(struct acpi_cpufreq_data *data)
66{
67 return per_cpu_ptr(acpi_perf_data, data->acpi_perf_cpu);
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static struct cpufreq_driver acpi_cpufreq_driver;
71
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040072static unsigned int acpi_pstate_strict;
Andre Przywara615b7302012-09-04 08:28:07 +000073
74static bool boost_state(unsigned int cpu)
75{
76 u32 lo, hi;
77 u64 msr;
78
79 switch (boot_cpu_data.x86_vendor) {
80 case X86_VENDOR_INTEL:
81 rdmsr_on_cpu(cpu, MSR_IA32_MISC_ENABLE, &lo, &hi);
82 msr = lo | ((u64)hi << 32);
83 return !(msr & MSR_IA32_MISC_ENABLE_TURBO_DISABLE);
Pu Wencc9690c2018-09-23 17:37:38 +080084 case X86_VENDOR_HYGON:
Andre Przywara615b7302012-09-04 08:28:07 +000085 case X86_VENDOR_AMD:
86 rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
87 msr = lo | ((u64)hi << 32);
88 return !(msr & MSR_K7_HWCR_CPB_DIS);
89 }
90 return false;
91}
92
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +010093static int boost_set_msr(bool enable)
Andre Przywara615b7302012-09-04 08:28:07 +000094{
Andre Przywara615b7302012-09-04 08:28:07 +000095 u32 msr_addr;
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +010096 u64 msr_mask, val;
Andre Przywara615b7302012-09-04 08:28:07 +000097
98 switch (boot_cpu_data.x86_vendor) {
99 case X86_VENDOR_INTEL:
100 msr_addr = MSR_IA32_MISC_ENABLE;
101 msr_mask = MSR_IA32_MISC_ENABLE_TURBO_DISABLE;
102 break;
Pu Wencc9690c2018-09-23 17:37:38 +0800103 case X86_VENDOR_HYGON:
Andre Przywara615b7302012-09-04 08:28:07 +0000104 case X86_VENDOR_AMD:
105 msr_addr = MSR_K7_HWCR;
106 msr_mask = MSR_K7_HWCR_CPB_DIS;
107 break;
108 default:
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100109 return -EINVAL;
Andre Przywara615b7302012-09-04 08:28:07 +0000110 }
111
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100112 rdmsrl(msr_addr, val);
Andre Przywara615b7302012-09-04 08:28:07 +0000113
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100114 if (enable)
115 val &= ~msr_mask;
116 else
117 val |= msr_mask;
Andre Przywara615b7302012-09-04 08:28:07 +0000118
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100119 wrmsrl(msr_addr, val);
120 return 0;
121}
122
123static void boost_set_msr_each(void *p_en)
124{
125 bool enable = (bool) p_en;
126
127 boost_set_msr(enable);
Andre Przywara615b7302012-09-04 08:28:07 +0000128}
129
Xiongfeng Wangcf6fada2020-05-30 10:08:30 +0800130static int set_boost(struct cpufreq_policy *policy, int val)
Andre Przywara615b7302012-09-04 08:28:07 +0000131{
Xiongfeng Wangcf6fada2020-05-30 10:08:30 +0800132 on_each_cpu_mask(policy->cpus, boost_set_msr_each,
133 (void *)(long)val, 1);
134 pr_debug("CPU %*pbl: Core Boosting %sabled.\n",
135 cpumask_pr_args(policy->cpus), val ? "en" : "dis");
Andre Przywara615b7302012-09-04 08:28:07 +0000136
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100137 return 0;
Andre Przywara615b7302012-09-04 08:28:07 +0000138}
139
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800140static ssize_t show_freqdomain_cpus(struct cpufreq_policy *policy, char *buf)
141{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800142 struct acpi_cpufreq_data *data = policy->driver_data;
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800143
Srinivas Pandruvadae2530362015-10-07 13:50:43 -0700144 if (unlikely(!data))
145 return -ENODEV;
146
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800147 return cpufreq_show_cpus(data->freqdomain_cpus, buf);
148}
149
150cpufreq_freq_attr_ro(freqdomain_cpus);
151
Andre Przywara11269ff2012-09-04 08:28:08 +0000152#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100153static ssize_t store_cpb(struct cpufreq_policy *policy, const char *buf,
154 size_t count)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100155{
156 int ret;
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100157 unsigned int val = 0;
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100158
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +0100159 if (!acpi_cpufreq_driver.set_boost)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100160 return -EINVAL;
161
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100162 ret = kstrtouint(buf, 10, &val);
163 if (ret || val > 1)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100164 return -EINVAL;
165
Sebastian Andrzej Siewior09681a02021-08-03 16:16:11 +0200166 cpus_read_lock();
Xiongfeng Wangcf6fada2020-05-30 10:08:30 +0800167 set_boost(policy, val);
Sebastian Andrzej Siewior09681a02021-08-03 16:16:11 +0200168 cpus_read_unlock();
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100169
170 return count;
171}
172
Andre Przywara11269ff2012-09-04 08:28:08 +0000173static ssize_t show_cpb(struct cpufreq_policy *policy, char *buf)
174{
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100175 return sprintf(buf, "%u\n", acpi_cpufreq_driver.boost_enabled);
Andre Przywara11269ff2012-09-04 08:28:08 +0000176}
177
Lan Tianyu59027d32013-08-13 10:05:53 +0800178cpufreq_freq_attr_rw(cpb);
Andre Przywara11269ff2012-09-04 08:28:08 +0000179#endif
180
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700181static int check_est_cpu(unsigned int cpuid)
182{
Mike Travis92cb7612007-10-19 20:35:04 +0200183 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700184
Harald Welte0de51082009-06-08 18:27:54 +0800185 return cpu_has(cpu, X86_FEATURE_EST);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700186}
187
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000188static int check_amd_hwpstate_cpu(unsigned int cpuid)
189{
190 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
191
192 return cpu_has(cpu, X86_FEATURE_HW_PSTATE);
193}
194
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530195static unsigned extract_io(struct cpufreq_policy *policy, u32 value)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700196{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530197 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700198 struct acpi_processor_performance *perf;
199 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700200
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200201 perf = to_perf_data(data);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700202
Dave Jones3a58df32009-01-17 22:36:14 -0500203 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700204 if (value == perf->states[i].status)
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530205 return policy->freq_table[i].frequency;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700206 }
207 return 0;
208}
209
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530210static unsigned extract_msr(struct cpufreq_policy *policy, u32 msr)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700211{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530212 struct acpi_cpufreq_data *data = policy->driver_data;
Stratos Karafotis041526f2014-04-25 23:15:38 +0300213 struct cpufreq_frequency_table *pos;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700214 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700215
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000216 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
217 msr &= AMD_MSR_RANGE;
Pu Wencc9690c2018-09-23 17:37:38 +0800218 else if (boot_cpu_data.x86_vendor == X86_VENDOR_HYGON)
219 msr &= HYGON_MSR_RANGE;
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000220 else
221 msr &= INTEL_MSR_RANGE;
222
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200223 perf = to_perf_data(data);
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700224
Rafael J. Wysocki538b0182021-02-15 20:24:46 +0100225 cpufreq_for_each_entry(pos, policy->freq_table)
Stratos Karafotis041526f2014-04-25 23:15:38 +0300226 if (msr == perf->states[pos->driver_data].status)
227 return pos->frequency;
Rafael J. Wysocki538b0182021-02-15 20:24:46 +0100228 return policy->freq_table[0].frequency;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700229}
230
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530231static unsigned extract_freq(struct cpufreq_policy *policy, u32 val)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700232{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530233 struct acpi_cpufreq_data *data = policy->driver_data;
234
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700235 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700236 case SYSTEM_INTEL_MSR_CAPABLE:
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000237 case SYSTEM_AMD_MSR_CAPABLE:
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530238 return extract_msr(policy, val);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700239 case SYSTEM_IO_CAPABLE:
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530240 return extract_io(policy, val);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700241 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700242 return 0;
243 }
244}
245
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800246static u32 cpu_freq_read_intel(struct acpi_pct_register *not_used)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100247{
Lee Jonese1711f22020-07-15 09:26:29 +0100248 u32 val, dummy __always_unused;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700249
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100250 rdmsr(MSR_IA32_PERF_CTL, val, dummy);
251 return val;
252}
253
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800254static void cpu_freq_write_intel(struct acpi_pct_register *not_used, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100255{
256 u32 lo, hi;
257
258 rdmsr(MSR_IA32_PERF_CTL, lo, hi);
259 lo = (lo & ~INTEL_MSR_RANGE) | (val & INTEL_MSR_RANGE);
260 wrmsr(MSR_IA32_PERF_CTL, lo, hi);
261}
262
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800263static u32 cpu_freq_read_amd(struct acpi_pct_register *not_used)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100264{
Lee Jonese1711f22020-07-15 09:26:29 +0100265 u32 val, dummy __always_unused;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100266
267 rdmsr(MSR_AMD_PERF_CTL, val, dummy);
268 return val;
269}
270
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800271static void cpu_freq_write_amd(struct acpi_pct_register *not_used, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100272{
273 wrmsr(MSR_AMD_PERF_CTL, val, 0);
274}
275
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800276static u32 cpu_freq_read_io(struct acpi_pct_register *reg)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100277{
278 u32 val;
279
280 acpi_os_read_port(reg->address, &val, reg->bit_width);
281 return val;
282}
283
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800284static void cpu_freq_write_io(struct acpi_pct_register *reg, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100285{
286 acpi_os_write_port(reg->address, val, reg->bit_width);
287}
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700288
289struct drv_cmd {
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100290 struct acpi_pct_register *reg;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700291 u32 val;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100292 union {
293 void (*write)(struct acpi_pct_register *reg, u32 val);
294 u32 (*read)(struct acpi_pct_register *reg);
295 } func;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700296};
297
Andrew Morton01599fc2009-04-13 10:27:49 -0700298/* Called via smp_call_function_single(), on the target CPU */
299static void do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700300{
Mike Travis72859082009-01-16 15:31:15 -0800301 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700302
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100303 cmd->val = cmd->func.read(cmd->reg);
304}
305
306static u32 drv_read(struct acpi_cpufreq_data *data, const struct cpumask *mask)
307{
308 struct acpi_processor_performance *perf = to_perf_data(data);
309 struct drv_cmd cmd = {
310 .reg = &perf->control_register,
311 .func.read = data->cpu_freq_read,
312 };
313 int err;
314
315 err = smp_call_function_any(mask, do_drv_read, &cmd, 1);
316 WARN_ON_ONCE(err); /* smp_call_function_any() was buggy? */
317 return cmd.val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700318}
319
Andrew Morton01599fc2009-04-13 10:27:49 -0700320/* Called via smp_call_function_many(), on the target CPUs */
321static void do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700322{
Mike Travis72859082009-01-16 15:31:15 -0800323 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700324
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100325 cmd->func.write(cmd->reg, cmd->val);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700326}
327
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100328static void drv_write(struct acpi_cpufreq_data *data,
329 const struct cpumask *mask, u32 val)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700330{
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100331 struct acpi_processor_performance *perf = to_perf_data(data);
332 struct drv_cmd cmd = {
333 .reg = &perf->control_register,
334 .val = val,
335 .func.write = data->cpu_freq_write,
336 };
Linus Torvaldsea34f432009-04-15 08:05:13 -0700337 int this_cpu;
338
339 this_cpu = get_cpu();
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100340 if (cpumask_test_cpu(this_cpu, mask))
341 do_drv_write(&cmd);
342
343 smp_call_function_many(mask, do_drv_write, &cmd, 1);
Linus Torvaldsea34f432009-04-15 08:05:13 -0700344 put_cpu();
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700345}
346
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100347static u32 get_cur_val(const struct cpumask *mask, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700348{
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100349 u32 val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700350
Mike Travis4d8bb532009-01-04 05:18:08 -0800351 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700352 return 0;
353
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100354 val = drv_read(data, mask);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700355
Mohan Kumareae2ef02019-04-15 14:03:58 +0300356 pr_debug("%s = %u\n", __func__, val);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700357
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100358 return val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700359}
360
361static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
362{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800363 struct acpi_cpufreq_data *data;
364 struct cpufreq_policy *policy;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700365 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400366 unsigned int cached_freq;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700367
Mohan Kumareae2ef02019-04-15 14:03:58 +0300368 pr_debug("%s (%d)\n", __func__, cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700369
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200370 policy = cpufreq_cpu_get_raw(cpu);
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800371 if (unlikely(!policy))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700372 return 0;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800373
374 data = policy->driver_data;
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530375 if (unlikely(!data || !policy->freq_table))
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800376 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700377
Rafael J. Wysocki538b0182021-02-15 20:24:46 +0100378 cached_freq = policy->freq_table[to_perf_data(data)->state].frequency;
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530379 freq = extract_freq(policy, get_cur_val(cpumask_of(cpu), data));
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400380 if (freq != cached_freq) {
381 /*
382 * The dreaded BIOS frequency change behind our back.
383 * Force set the frequency on next target call.
384 */
385 data->resume = 1;
386 }
387
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200388 pr_debug("cur freq = %u\n", freq);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700389
390 return freq;
391}
392
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530393static unsigned int check_freqs(struct cpufreq_policy *policy,
394 const struct cpumask *mask, unsigned int freq)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700395{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530396 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700397 unsigned int cur_freq;
398 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700399
Dave Jones3a58df32009-01-17 22:36:14 -0500400 for (i = 0; i < 100; i++) {
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530401 cur_freq = extract_freq(policy, get_cur_val(mask, data));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700402 if (cur_freq == freq)
403 return 1;
404 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406 return 0;
407}
408
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700409static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530410 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800412 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700413 struct acpi_processor_performance *perf;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100414 const struct cpumask *mask;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800415 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700416 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530418 if (unlikely(!data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700419 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200422 perf = to_perf_data(data);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530423 next_perf_state = policy->freq_table[index].driver_data;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700424 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700425 if (unlikely(data->resume)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200426 pr_debug("Called after resume, resetting to P%d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700427 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700428 data->resume = 0;
429 } else {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200430 pr_debug("Already at target state (P%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700431 next_perf_state);
Rafael J. Wysocki9a909a12016-02-26 00:03:58 +0100432 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700433 }
434 }
435
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100436 /*
437 * The core won't allow CPUs to go away until the governor has been
438 * stopped, so we can rely on the stability of policy->cpus.
439 */
440 mask = policy->shared_type == CPUFREQ_SHARED_TYPE_ANY ?
441 cpumask_of(policy->cpu) : policy->cpus;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700442
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100443 drv_write(data, mask, perf->states[next_perf_state].control);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500444
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700445 if (acpi_pstate_strict) {
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530446 if (!check_freqs(policy, mask,
447 policy->freq_table[index].frequency)) {
Mohan Kumareae2ef02019-04-15 14:03:58 +0300448 pr_debug("%s (%d)\n", __func__, policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800449 result = -EAGAIN;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500450 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500451 }
452
Viresh Kumare15d8302013-06-19 14:22:55 +0530453 if (!result)
454 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500455
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700456 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Colin Ian King08e9cc42018-06-01 14:05:12 +0100459static unsigned int acpi_cpufreq_fast_switch(struct cpufreq_policy *policy,
460 unsigned int target_freq)
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200461{
462 struct acpi_cpufreq_data *data = policy->driver_data;
463 struct acpi_processor_performance *perf;
464 struct cpufreq_frequency_table *entry;
Viresh Kumar82577362016-06-27 09:59:34 +0530465 unsigned int next_perf_state, next_freq, index;
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200466
467 /*
468 * Find the closest frequency above target_freq.
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200469 */
Steve Muckle5b6667c2016-07-13 13:25:27 -0700470 if (policy->cached_target_freq == target_freq)
471 index = policy->cached_resolved_idx;
472 else
Vincent Donnefort1f39fa02021-09-08 15:05:28 +0100473 index = cpufreq_table_find_index_dl(policy, target_freq,
474 false);
Viresh Kumar82577362016-06-27 09:59:34 +0530475
476 entry = &policy->freq_table[index];
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200477 next_freq = entry->frequency;
478 next_perf_state = entry->driver_data;
479
480 perf = to_perf_data(data);
481 if (perf->state == next_perf_state) {
482 if (unlikely(data->resume))
483 data->resume = 0;
484 else
485 return next_freq;
486 }
487
488 data->cpu_freq_write(&perf->control_register,
489 perf->states[next_perf_state].control);
490 perf->state = next_perf_state;
491 return next_freq;
492}
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700495acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200497 struct acpi_processor_performance *perf;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500498
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200499 perf = to_perf_data(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (cpu_khz) {
501 /* search the closest match to cpu_khz */
502 unsigned int i;
503 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500504 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Dave Jones3a58df32009-01-17 22:36:14 -0500506 for (i = 0; i < (perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400508 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500510 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700511 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513 }
Dave Jones95dd7222006-10-18 00:41:48 -0400514 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700515 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500516 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500518 perf->state = 0;
519 return perf->states[0].core_frequency * 1000;
520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800523static void free_acpi_perf_data(void)
524{
525 unsigned int i;
526
527 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
528 for_each_possible_cpu(i)
529 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
530 ->shared_cpu_map);
531 free_percpu(acpi_perf_data);
532}
533
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100534static int cpufreq_boost_online(unsigned int cpu)
Andre Przywara615b7302012-09-04 08:28:07 +0000535{
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100536 /*
537 * On the CPU_UP path we simply keep the boost-disable flag
538 * in sync with the current global state.
539 */
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100540 return boost_set_msr(acpi_cpufreq_driver.boost_enabled);
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100541}
542
543static int cpufreq_boost_down_prep(unsigned int cpu)
544{
Andre Przywara615b7302012-09-04 08:28:07 +0000545 /*
546 * Clear the boost-disable bit on the CPU_DOWN path so that
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100547 * this cpu cannot block the remaining ones from boosting.
Andre Przywara615b7302012-09-04 08:28:07 +0000548 */
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100549 return boost_set_msr(1);
Andre Przywara615b7302012-09-04 08:28:07 +0000550}
551
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500552/*
553 * acpi_cpufreq_early_init - initialize ACPI P-States library
554 *
555 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
556 * in order to determine correct frequency and voltage pairings. We can
557 * do _PDC and _PSD and find out the processor dependency for the
558 * actual init that will happen later...
559 */
Fenghua Yu50109292007-08-07 18:40:30 -0400560static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500561{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800562 unsigned int i;
Mohan Kumareae2ef02019-04-15 14:03:58 +0300563 pr_debug("%s\n", __func__);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500564
Fenghua Yu50109292007-08-07 18:40:30 -0400565 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
566 if (!acpi_perf_data) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200567 pr_debug("Memory allocation error for acpi_perf_data.\n");
Fenghua Yu50109292007-08-07 18:40:30 -0400568 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500569 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800570 for_each_possible_cpu(i) {
Yinghai Lueaa95842009-06-06 14:51:36 -0700571 if (!zalloc_cpumask_var_node(
Mike Travis80855f72008-12-31 18:08:47 -0800572 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
573 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800574
575 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
576 free_acpi_perf_data();
577 return -ENOMEM;
578 }
579 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500580
581 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700582 acpi_processor_preregister_performance(acpi_perf_data);
583 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500584}
585
Dave Jones95625b82006-10-21 01:37:39 -0400586#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700587/*
588 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
589 * or do it in BIOS firmware and won't inform about it to OS. If not
590 * detected, this has a side effect of making CPU run at a different speed
591 * than OS intended it to run at. Detect it and handle it cleanly.
592 */
593static int bios_with_sw_any_bug;
594
Jeff Garzik18552562007-10-03 15:15:40 -0400595static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700596{
597 bios_with_sw_any_bug = 1;
598 return 0;
599}
600
Jeff Garzik18552562007-10-03 15:15:40 -0400601static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700602 {
603 .callback = sw_any_bug_found,
604 .ident = "Supermicro Server X6DLP",
605 .matches = {
606 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
607 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
608 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
609 },
610 },
611 { }
612};
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400613
614static int acpi_cpufreq_blacklist(struct cpuinfo_x86 *c)
615{
John Villalovos293afe42009-09-25 13:30:08 -0400616 /* Intel Xeon Processor 7100 Series Specification Update
Alexander A. Klimov8479eb82020-07-13 12:55:02 +0200617 * https://www.intel.com/Assets/PDF/specupdate/314554.pdf
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400618 * AL30: A Machine Check Exception (MCE) Occurring during an
619 * Enhanced Intel SpeedStep Technology Ratio Change May Cause
John Villalovos293afe42009-09-25 13:30:08 -0400620 * Both Processor Cores to Lock Up. */
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400621 if (c->x86_vendor == X86_VENDOR_INTEL) {
622 if ((c->x86 == 15) &&
623 (c->x86_model == 6) &&
Jia Zhangb3991512018-01-01 09:52:10 +0800624 (c->x86_stepping == 8)) {
Joe Perches1c5864e2016-04-05 13:28:25 -0700625 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 -0400626 return -ENODEV;
John Villalovos293afe42009-09-25 13:30:08 -0400627 }
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400628 }
629 return 0;
630}
Dave Jones95625b82006-10-21 01:37:39 -0400631#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700632
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100633#ifdef CONFIG_ACPI_CPPC_LIB
634static u64 get_max_boost_ratio(unsigned int cpu)
635{
636 struct cppc_perf_caps perf_caps;
637 u64 highest_perf, nominal_perf;
638 int ret;
639
640 if (acpi_pstate_strict)
641 return 0;
642
643 ret = cppc_get_perf_caps(cpu, &perf_caps);
644 if (ret) {
645 pr_debug("CPU%d: Unable to get performance capabilities (%d)\n",
646 cpu, ret);
647 return 0;
648 }
649
Huang Rui3743d552021-04-25 15:34:51 +0800650 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
651 highest_perf = amd_get_highest_perf();
652 else
653 highest_perf = perf_caps.highest_perf;
654
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100655 nominal_perf = perf_caps.nominal_perf;
656
657 if (!highest_perf || !nominal_perf) {
658 pr_debug("CPU%d: highest or nominal performance missing\n", cpu);
659 return 0;
660 }
661
662 if (highest_perf < nominal_perf) {
663 pr_debug("CPU%d: nominal performance above highest\n", cpu);
664 return 0;
665 }
666
667 return div_u64(highest_perf << SCHED_CAPACITY_SHIFT, nominal_perf);
668}
669#else
670static inline u64 get_max_boost_ratio(unsigned int cpu) { return 0; }
671#endif
672
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700673static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530675 struct cpufreq_frequency_table *freq_table;
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100676 struct acpi_processor_performance *perf;
677 struct acpi_cpufreq_data *data;
678 unsigned int cpu = policy->cpu;
679 struct cpuinfo_x86 *c = &cpu_data(cpu);
680 unsigned int valid_states = 0;
681 unsigned int result = 0;
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100682 u64 max_boost_ratio;
683 unsigned int i;
John Villalovos293afe42009-09-25 13:30:08 -0400684#ifdef CONFIG_SMP
685 static int blacklisted;
686#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Mohan Kumareae2ef02019-04-15 14:03:58 +0300688 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400690#ifdef CONFIG_SMP
John Villalovos293afe42009-09-25 13:30:08 -0400691 if (blacklisted)
692 return blacklisted;
693 blacklisted = acpi_cpufreq_blacklist(c);
694 if (blacklisted)
695 return blacklisted;
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400696#endif
697
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530698 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700700 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800702 if (!zalloc_cpumask_var(&data->freqdomain_cpus, GFP_KERNEL)) {
703 result = -ENOMEM;
704 goto err_free;
705 }
706
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200707 perf = per_cpu_ptr(acpi_perf_data, cpu);
Pan Xinhui8cfcfd32015-07-10 14:36:20 +0800708 data->acpi_perf_cpu = cpu;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800709 policy->driver_data = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700710
Dave Jones95dd7222006-10-18 00:41:48 -0400711 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700712 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200714 result = acpi_processor_register_performance(perf, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (result)
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800716 goto err_free_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500718 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400719
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400720 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400721 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400722 * coordination is required.
723 */
724 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700725 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800726 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700727 }
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800728 cpumask_copy(data->freqdomain_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700729
730#ifdef CONFIG_SMP
731 dmi_check_system(sw_any_bug_dmi_table);
Fabio Baltieri2624f902013-01-31 09:44:40 +0000732 if (bios_with_sw_any_bug && !policy_is_shared(policy)) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700733 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Bartosz Golaszewski3280c3c2015-05-26 15:11:33 +0200734 cpumask_copy(policy->cpus, topology_core_cpumask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700735 }
Andre Przywaraacd31622012-09-04 08:28:03 +0000736
Wei Huang53685122020-10-18 22:57:41 -0500737 if (check_amd_hwpstate_cpu(cpu) && boot_cpu_data.x86 < 0x19 &&
738 !acpi_pstate_strict) {
Andre Przywaraacd31622012-09-04 08:28:03 +0000739 cpumask_clear(policy->cpus);
740 cpumask_set_cpu(cpu, policy->cpus);
Bartosz Golaszewski3280c3c2015-05-26 15:11:33 +0200741 cpumask_copy(data->freqdomain_cpus,
742 topology_sibling_cpumask(cpu));
Andre Przywaraacd31622012-09-04 08:28:03 +0000743 policy->shared_type = CPUFREQ_SHARED_TYPE_HW;
Joe Perches1c5864e2016-04-05 13:28:25 -0700744 pr_info_once("overriding BIOS provided _PSD data\n");
Andre Przywaraacd31622012-09-04 08:28:03 +0000745 }
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700746#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500749 if (perf->state_count <= 1) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200750 pr_debug("No P-States\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 result = -ENODEV;
752 goto err_unreg;
753 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500754
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700755 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 result = -ENODEV;
757 goto err_unreg;
758 }
759
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700760 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700761 case ACPI_ADR_SPACE_SYSTEM_IO:
Matthew Garrettc40a4512013-01-20 10:24:26 +0000762 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
763 boot_cpu_data.x86 == 0xf) {
764 pr_debug("AMD K8 systems must use native drivers.\n");
765 result = -ENODEV;
766 goto err_unreg;
767 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200768 pr_debug("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700769 data->cpu_feature = SYSTEM_IO_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100770 data->cpu_freq_read = cpu_freq_read_io;
771 data->cpu_freq_write = cpu_freq_write_io;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700772 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700773 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200774 pr_debug("HARDWARE addr space\n");
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000775 if (check_est_cpu(cpu)) {
776 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100777 data->cpu_freq_read = cpu_freq_read_intel;
778 data->cpu_freq_write = cpu_freq_write_intel;
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000779 break;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700780 }
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000781 if (check_amd_hwpstate_cpu(cpu)) {
782 data->cpu_feature = SYSTEM_AMD_MSR_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100783 data->cpu_freq_read = cpu_freq_read_amd;
784 data->cpu_freq_write = cpu_freq_write_amd;
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000785 break;
786 }
787 result = -ENODEV;
788 goto err_unreg;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700789 default:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200790 pr_debug("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700791 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700792 result = -ENODEV;
793 goto err_unreg;
794 }
795
Rafael J. Wysocki538b0182021-02-15 20:24:46 +0100796 freq_table = kcalloc(perf->state_count + 1, sizeof(*freq_table),
797 GFP_KERNEL);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530798 if (!freq_table) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 result = -ENOMEM;
800 goto err_unreg;
801 }
802
803 /* detect transition latency */
804 policy->cpuinfo.transition_latency = 0;
Dave Jones3a58df32009-01-17 22:36:14 -0500805 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700806 if ((perf->states[i].transition_latency * 1000) >
807 policy->cpuinfo.transition_latency)
808 policy->cpuinfo.transition_latency =
809 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700812 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
813 if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE &&
814 policy->cpuinfo.transition_latency > 20 * 1000) {
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700815 policy->cpuinfo.transition_latency = 20 * 1000;
Joe Perchesb49c22a2016-04-05 13:28:24 -0700816 pr_info_once("P-state transition latency capped at 20 uS\n");
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700817 }
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /* table init */
Dave Jones3a58df32009-01-17 22:36:14 -0500820 for (i = 0; i < perf->state_count; i++) {
821 if (i > 0 && perf->states[i].core_frequency >=
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530822 freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700823 continue;
824
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530825 freq_table[valid_states].driver_data = i;
826 freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700827 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700828 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530830 freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100831
Rafael J. Wysocki538b0182021-02-15 20:24:46 +0100832 max_boost_ratio = get_max_boost_ratio(cpu);
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100833 if (max_boost_ratio) {
Rafael J. Wysocki538b0182021-02-15 20:24:46 +0100834 unsigned int freq = freq_table[0].frequency;
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100835
836 /*
837 * Because the loop above sorts the freq_table entries in the
838 * descending order, freq is the maximum frequency in the table.
839 * Assume that it corresponds to the CPPC nominal frequency and
Rafael J. Wysocki538b0182021-02-15 20:24:46 +0100840 * use it to set cpuinfo.max_freq.
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100841 */
Rafael J. Wysocki538b0182021-02-15 20:24:46 +0100842 policy->cpuinfo.max_freq = freq * max_boost_ratio >> SCHED_CAPACITY_SHIFT;
843 } else {
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100844 /*
Rafael J. Wysocki538b0182021-02-15 20:24:46 +0100845 * If the maximum "boost" frequency is unknown, ask the arch
846 * scale-invariance code to use the "nominal" performance for
847 * CPU utilization scaling so as to prevent the schedutil
848 * governor from selecting inadequate CPU frequencies.
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100849 */
Rafael J. Wysocki538b0182021-02-15 20:24:46 +0100850 arch_set_max_freq_ratio(true);
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100851 }
852
Viresh Kumar1a186d92018-02-26 10:38:46 +0530853 policy->freq_table = freq_table;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800854 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Mattia Dongilia507ac42006-12-15 19:52:45 +0100856 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700857 case ACPI_ADR_SPACE_SYSTEM_IO:
Viresh Kumar1bab64d2013-10-16 23:58:10 +0200858 /*
859 * The core will not set policy->cur, because
860 * cpufreq_driver->get is NULL, so we need to set it here.
861 * However, we have to guess it, because the current speed is
862 * unknown and not detectable via IO ports.
863 */
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700864 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
865 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700866 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700867 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700868 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700869 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700870 break;
871 }
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /* notify BIOS that we exist */
874 acpi_processor_notify_smm(THIS_MODULE);
875
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200876 pr_debug("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500877 for (i = 0; i < perf->state_count; i++)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200878 pr_debug(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700879 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500880 (u32) perf->states[i].core_frequency,
881 (u32) perf->states[i].power,
882 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400884 /*
885 * the first call to ->target() should result in us actually
886 * writing something to the appropriate registers.
887 */
888 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700889
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200890 policy->fast_switch_possible = !acpi_pstate_strict &&
891 !(policy_is_shared(policy) && policy->shared_type != CPUFREQ_SHARED_TYPE_ANY);
892
Viresh Kumar692a3b92021-09-01 14:41:55 +0530893 if (perf->states[0].core_frequency * 1000 != freq_table[0].frequency)
894 pr_warn(FW_WARN "P-state 0 is not max freq\n");
895
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700896 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Dave Jones95dd7222006-10-18 00:41:48 -0400898err_unreg:
Rafael J. Wysockib2f8dc42015-07-22 22:11:16 +0200899 acpi_processor_unregister_performance(cpu);
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800900err_free_mask:
901 free_cpumask_var(data->freqdomain_cpus);
Dave Jones95dd7222006-10-18 00:41:48 -0400902err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 kfree(data);
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800904 policy->driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700906 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700909static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800911 struct acpi_cpufreq_data *data = policy->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Mohan Kumareae2ef02019-04-15 14:03:58 +0300913 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Viresh Kumar9b55f552016-04-07 14:06:58 +0530915 policy->fast_switch_possible = false;
916 policy->driver_data = NULL;
917 acpi_processor_unregister_performance(data->acpi_perf_cpu);
918 free_cpumask_var(data->freqdomain_cpus);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530919 kfree(policy->freq_table);
Viresh Kumar9b55f552016-04-07 14:06:58 +0530920 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700922 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700925static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800927 struct acpi_cpufreq_data *data = policy->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Mohan Kumareae2ef02019-04-15 14:03:58 +0300929 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 data->resume = 1;
932
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700933 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700936static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 &cpufreq_freq_attr_scaling_available_freqs,
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800938 &freqdomain_cpus,
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200939#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
940 &cpb,
941#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 NULL,
943};
944
945static struct cpufreq_driver acpi_cpufreq_driver = {
Viresh Kumardb9be212013-10-03 20:27:56 +0530946 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530947 .target_index = acpi_cpufreq_target,
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200948 .fast_switch = acpi_cpufreq_fast_switch,
Thomas Renningere2f74f32009-11-19 12:31:01 +0100949 .bios_limit = acpi_processor_get_bios_limit,
950 .init = acpi_cpufreq_cpu_init,
951 .exit = acpi_cpufreq_cpu_exit,
952 .resume = acpi_cpufreq_resume,
953 .name = "acpi-cpufreq",
Thomas Renningere2f74f32009-11-19 12:31:01 +0100954 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955};
956
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100957static enum cpuhp_state acpi_cpufreq_online;
958
Andre Przywara615b7302012-09-04 08:28:07 +0000959static void __init acpi_cpufreq_boost_init(void)
960{
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100961 int ret;
Andre Przywara615b7302012-09-04 08:28:07 +0000962
Erwan Velu1222d522019-02-20 11:10:17 +0100963 if (!(boot_cpu_has(X86_FEATURE_CPB) || boot_cpu_has(X86_FEATURE_IDA))) {
964 pr_debug("Boost capabilities not present in the processor\n");
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100965 return;
Erwan Velu1222d522019-02-20 11:10:17 +0100966 }
Andre Przywara615b7302012-09-04 08:28:07 +0000967
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100968 acpi_cpufreq_driver.set_boost = set_boost;
969 acpi_cpufreq_driver.boost_enabled = boost_state(0);
Andre Przywara615b7302012-09-04 08:28:07 +0000970
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100971 /*
972 * This calls the online callback on all online cpu and forces all
973 * MSRs to the same value.
974 */
975 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "cpufreq/acpi:online",
976 cpufreq_boost_online, cpufreq_boost_down_prep);
977 if (ret < 0) {
978 pr_err("acpi_cpufreq: failed to register hotplug callbacks\n");
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100979 return;
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100980 }
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100981 acpi_cpufreq_online = ret;
Andre Przywara615b7302012-09-04 08:28:07 +0000982}
983
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -0500984static void acpi_cpufreq_boost_exit(void)
Andre Przywara615b7302012-09-04 08:28:07 +0000985{
Boris Ostrovsky2a8fa122016-12-15 10:00:58 -0500986 if (acpi_cpufreq_online > 0)
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100987 cpuhp_remove_state_nocalls(acpi_cpufreq_online);
Andre Przywara615b7302012-09-04 08:28:07 +0000988}
989
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700990static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Fenghua Yu50109292007-08-07 18:40:30 -0400992 int ret;
993
Rafael J. Wysocki75c07582013-10-25 16:22:47 +0200994 if (acpi_disabled)
995 return -ENODEV;
996
Yinghai Lu8a61e122013-09-20 10:43:56 -0700997 /* don't keep reloading if cpufreq_driver exists */
998 if (cpufreq_get_current_driver())
Rafael J. Wysocki75c07582013-10-25 16:22:47 +0200999 return -EEXIST;
Yinghai Luee297532008-09-24 19:04:31 -07001000
Mohan Kumareae2ef02019-04-15 14:03:58 +03001001 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Fenghua Yu50109292007-08-07 18:40:30 -04001003 ret = acpi_cpufreq_early_init();
1004 if (ret)
1005 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -05001006
Andre Przywara11269ff2012-09-04 08:28:08 +00001007#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
1008 /* this is a sysfs file with a strange name and an even stranger
1009 * semantic - per CPU instantiation, but system global effect.
1010 * Lets enable it only on AMD CPUs for compatibility reasons and
1011 * only if configured. This is considered legacy code, which
1012 * will probably be removed at some point in the future.
1013 */
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +02001014 if (!check_amd_hwpstate_cpu(0)) {
1015 struct freq_attr **attr;
Andre Przywara11269ff2012-09-04 08:28:08 +00001016
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +02001017 pr_debug("CPB unsupported, do not expose it\n");
Andre Przywara11269ff2012-09-04 08:28:08 +00001018
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +02001019 for (attr = acpi_cpufreq_attr; *attr; attr++)
1020 if (*attr == &cpb) {
1021 *attr = NULL;
1022 break;
1023 }
Andre Przywara11269ff2012-09-04 08:28:08 +00001024 }
1025#endif
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +01001026 acpi_cpufreq_boost_init();
Andre Przywara11269ff2012-09-04 08:28:08 +00001027
Akinobu Mita847aef62008-07-14 11:59:44 +09001028 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -05001029 if (ret) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -08001030 free_acpi_perf_data();
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -05001031 acpi_cpufreq_boost_exit();
1032 }
Akinobu Mita847aef62008-07-14 11:59:44 +09001033 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -07001036static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
Mohan Kumareae2ef02019-04-15 14:03:58 +03001038 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Andre Przywara615b7302012-09-04 08:28:07 +00001040 acpi_cpufreq_boost_exit();
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 cpufreq_unregister_driver(&acpi_cpufreq_driver);
1043
Luming Yu50f4ddd2011-07-08 16:37:44 -04001044 free_acpi_perf_data();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -04001047module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -07001048MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -04001049 "value 0 or non-zero. non-zero -> strict ACPI checks are "
1050 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052late_initcall(acpi_cpufreq_init);
1053module_exit(acpi_cpufreq_exit);
1054
Lee Jonesa7b90932020-07-15 09:26:30 +01001055static const struct x86_cpu_id __maybe_unused acpi_cpufreq_ids[] = {
Thomas Gleixnerb11d77f2020-03-24 14:51:51 +01001056 X86_MATCH_FEATURE(X86_FEATURE_ACPI, NULL),
1057 X86_MATCH_FEATURE(X86_FEATURE_HW_PSTATE, NULL),
Matthew Garrettefa17192013-01-22 22:33:46 +01001058 {}
1059};
1060MODULE_DEVICE_TABLE(x86cpu, acpi_cpufreq_ids);
1061
Lee Jonesa7b90932020-07-15 09:26:30 +01001062static const struct acpi_device_id __maybe_unused processor_device_ids[] = {
Rafael J. Wysockic655aff2013-06-07 13:13:31 +02001063 {ACPI_PROCESSOR_OBJECT_HID, },
1064 {ACPI_PROCESSOR_DEVICE_HID, },
1065 {},
1066};
1067MODULE_DEVICE_TABLE(acpi, processor_device_ids);
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069MODULE_ALIAS("acpi");