blob: 4614f1c6f50a07f6abe9db09175df372ec5f9b43 [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;
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +010057 unsigned int first_perf_state;
Lan Tianyuf4fd3792013-06-27 15:08:54 +080058 cpumask_var_t freqdomain_cpus;
Rafael J. Wysockied757a22016-03-02 03:05:22 +010059 void (*cpu_freq_write)(struct acpi_pct_register *reg, u32 val);
60 u32 (*cpu_freq_read)(struct acpi_pct_register *reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Fenghua Yu50109292007-08-07 18:40:30 -040063/* acpi_perf_data is a pointer to percpu data. */
Namhyung Kim3f6c4df2010-08-13 23:00:11 +090064static struct acpi_processor_performance __percpu *acpi_perf_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Rafael J. Wysocki34276162015-07-22 22:11:56 +020066static inline struct acpi_processor_performance *to_perf_data(struct acpi_cpufreq_data *data)
67{
68 return per_cpu_ptr(acpi_perf_data, data->acpi_perf_cpu);
69}
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static struct cpufreq_driver acpi_cpufreq_driver;
72
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -040073static unsigned int acpi_pstate_strict;
Andre Przywara615b7302012-09-04 08:28:07 +000074
75static bool boost_state(unsigned int cpu)
76{
77 u32 lo, hi;
78 u64 msr;
79
80 switch (boot_cpu_data.x86_vendor) {
81 case X86_VENDOR_INTEL:
82 rdmsr_on_cpu(cpu, MSR_IA32_MISC_ENABLE, &lo, &hi);
83 msr = lo | ((u64)hi << 32);
84 return !(msr & MSR_IA32_MISC_ENABLE_TURBO_DISABLE);
Pu Wencc9690c2018-09-23 17:37:38 +080085 case X86_VENDOR_HYGON:
Andre Przywara615b7302012-09-04 08:28:07 +000086 case X86_VENDOR_AMD:
87 rdmsr_on_cpu(cpu, MSR_K7_HWCR, &lo, &hi);
88 msr = lo | ((u64)hi << 32);
89 return !(msr & MSR_K7_HWCR_CPB_DIS);
90 }
91 return false;
92}
93
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +010094static int boost_set_msr(bool enable)
Andre Przywara615b7302012-09-04 08:28:07 +000095{
Andre Przywara615b7302012-09-04 08:28:07 +000096 u32 msr_addr;
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +010097 u64 msr_mask, val;
Andre Przywara615b7302012-09-04 08:28:07 +000098
99 switch (boot_cpu_data.x86_vendor) {
100 case X86_VENDOR_INTEL:
101 msr_addr = MSR_IA32_MISC_ENABLE;
102 msr_mask = MSR_IA32_MISC_ENABLE_TURBO_DISABLE;
103 break;
Pu Wencc9690c2018-09-23 17:37:38 +0800104 case X86_VENDOR_HYGON:
Andre Przywara615b7302012-09-04 08:28:07 +0000105 case X86_VENDOR_AMD:
106 msr_addr = MSR_K7_HWCR;
107 msr_mask = MSR_K7_HWCR_CPB_DIS;
108 break;
109 default:
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100110 return -EINVAL;
Andre Przywara615b7302012-09-04 08:28:07 +0000111 }
112
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100113 rdmsrl(msr_addr, val);
Andre Przywara615b7302012-09-04 08:28:07 +0000114
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100115 if (enable)
116 val &= ~msr_mask;
117 else
118 val |= msr_mask;
Andre Przywara615b7302012-09-04 08:28:07 +0000119
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100120 wrmsrl(msr_addr, val);
121 return 0;
122}
123
124static void boost_set_msr_each(void *p_en)
125{
126 bool enable = (bool) p_en;
127
128 boost_set_msr(enable);
Andre Przywara615b7302012-09-04 08:28:07 +0000129}
130
Xiongfeng Wangcf6fada2020-05-30 10:08:30 +0800131static int set_boost(struct cpufreq_policy *policy, int val)
Andre Przywara615b7302012-09-04 08:28:07 +0000132{
Xiongfeng Wangcf6fada2020-05-30 10:08:30 +0800133 on_each_cpu_mask(policy->cpus, boost_set_msr_each,
134 (void *)(long)val, 1);
135 pr_debug("CPU %*pbl: Core Boosting %sabled.\n",
136 cpumask_pr_args(policy->cpus), val ? "en" : "dis");
Andre Przywara615b7302012-09-04 08:28:07 +0000137
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100138 return 0;
Andre Przywara615b7302012-09-04 08:28:07 +0000139}
140
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800141static ssize_t show_freqdomain_cpus(struct cpufreq_policy *policy, char *buf)
142{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800143 struct acpi_cpufreq_data *data = policy->driver_data;
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800144
Srinivas Pandruvadae2530362015-10-07 13:50:43 -0700145 if (unlikely(!data))
146 return -ENODEV;
147
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800148 return cpufreq_show_cpus(data->freqdomain_cpus, buf);
149}
150
151cpufreq_freq_attr_ro(freqdomain_cpus);
152
Andre Przywara11269ff2012-09-04 08:28:08 +0000153#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100154static ssize_t store_cpb(struct cpufreq_policy *policy, const char *buf,
155 size_t count)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100156{
157 int ret;
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100158 unsigned int val = 0;
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100159
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +0100160 if (!acpi_cpufreq_driver.set_boost)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100161 return -EINVAL;
162
Rafael J. Wysocki17135782015-12-27 00:25:35 +0100163 ret = kstrtouint(buf, 10, &val);
164 if (ret || val > 1)
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100165 return -EINVAL;
166
Xiongfeng Wangcf6fada2020-05-30 10:08:30 +0800167 get_online_cpus();
168 set_boost(policy, val);
169 put_online_cpus();
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100170
171 return count;
172}
173
Andre Przywara11269ff2012-09-04 08:28:08 +0000174static ssize_t show_cpb(struct cpufreq_policy *policy, char *buf)
175{
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +0100176 return sprintf(buf, "%u\n", acpi_cpufreq_driver.boost_enabled);
Andre Przywara11269ff2012-09-04 08:28:08 +0000177}
178
Lan Tianyu59027d32013-08-13 10:05:53 +0800179cpufreq_freq_attr_rw(cpb);
Andre Przywara11269ff2012-09-04 08:28:08 +0000180#endif
181
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700182static int check_est_cpu(unsigned int cpuid)
183{
Mike Travis92cb7612007-10-19 20:35:04 +0200184 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700185
Harald Welte0de51082009-06-08 18:27:54 +0800186 return cpu_has(cpu, X86_FEATURE_EST);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700187}
188
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000189static int check_amd_hwpstate_cpu(unsigned int cpuid)
190{
191 struct cpuinfo_x86 *cpu = &cpu_data(cpuid);
192
193 return cpu_has(cpu, X86_FEATURE_HW_PSTATE);
194}
195
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530196static unsigned extract_io(struct cpufreq_policy *policy, u32 value)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700197{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530198 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700199 struct acpi_processor_performance *perf;
200 int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700201
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200202 perf = to_perf_data(data);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700203
Dave Jones3a58df32009-01-17 22:36:14 -0500204 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700205 if (value == perf->states[i].status)
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530206 return policy->freq_table[i].frequency;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700207 }
208 return 0;
209}
210
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530211static unsigned extract_msr(struct cpufreq_policy *policy, u32 msr)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700212{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530213 struct acpi_cpufreq_data *data = policy->driver_data;
Stratos Karafotis041526f2014-04-25 23:15:38 +0300214 struct cpufreq_frequency_table *pos;
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700215 struct acpi_processor_performance *perf;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700216
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000217 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
218 msr &= AMD_MSR_RANGE;
Pu Wencc9690c2018-09-23 17:37:38 +0800219 else if (boot_cpu_data.x86_vendor == X86_VENDOR_HYGON)
220 msr &= HYGON_MSR_RANGE;
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000221 else
222 msr &= INTEL_MSR_RANGE;
223
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200224 perf = to_perf_data(data);
Venkatesh Pallipadia6f6e6e62006-10-03 12:37:42 -0700225
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100226 cpufreq_for_each_entry(pos, policy->freq_table + data->first_perf_state)
Stratos Karafotis041526f2014-04-25 23:15:38 +0300227 if (msr == perf->states[pos->driver_data].status)
228 return pos->frequency;
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100229 return policy->freq_table[data->first_perf_state].frequency;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700230}
231
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530232static unsigned extract_freq(struct cpufreq_policy *policy, u32 val)
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700233{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530234 struct acpi_cpufreq_data *data = policy->driver_data;
235
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700236 switch (data->cpu_feature) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700237 case SYSTEM_INTEL_MSR_CAPABLE:
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000238 case SYSTEM_AMD_MSR_CAPABLE:
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530239 return extract_msr(policy, val);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700240 case SYSTEM_IO_CAPABLE:
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530241 return extract_io(policy, val);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700242 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700243 return 0;
244 }
245}
246
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800247static u32 cpu_freq_read_intel(struct acpi_pct_register *not_used)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100248{
Lee Jonese1711f22020-07-15 09:26:29 +0100249 u32 val, dummy __always_unused;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700250
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100251 rdmsr(MSR_IA32_PERF_CTL, val, dummy);
252 return val;
253}
254
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800255static void cpu_freq_write_intel(struct acpi_pct_register *not_used, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100256{
257 u32 lo, hi;
258
259 rdmsr(MSR_IA32_PERF_CTL, lo, hi);
260 lo = (lo & ~INTEL_MSR_RANGE) | (val & INTEL_MSR_RANGE);
261 wrmsr(MSR_IA32_PERF_CTL, lo, hi);
262}
263
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800264static u32 cpu_freq_read_amd(struct acpi_pct_register *not_used)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100265{
Lee Jonese1711f22020-07-15 09:26:29 +0100266 u32 val, dummy __always_unused;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100267
268 rdmsr(MSR_AMD_PERF_CTL, val, dummy);
269 return val;
270}
271
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800272static void cpu_freq_write_amd(struct acpi_pct_register *not_used, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100273{
274 wrmsr(MSR_AMD_PERF_CTL, val, 0);
275}
276
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800277static u32 cpu_freq_read_io(struct acpi_pct_register *reg)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100278{
279 u32 val;
280
281 acpi_os_read_port(reg->address, &val, reg->bit_width);
282 return val;
283}
284
Jisheng Zhangac13b9962016-03-22 22:34:30 +0800285static void cpu_freq_write_io(struct acpi_pct_register *reg, u32 val)
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100286{
287 acpi_os_write_port(reg->address, val, reg->bit_width);
288}
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700289
290struct drv_cmd {
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100291 struct acpi_pct_register *reg;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700292 u32 val;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100293 union {
294 void (*write)(struct acpi_pct_register *reg, u32 val);
295 u32 (*read)(struct acpi_pct_register *reg);
296 } func;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700297};
298
Andrew Morton01599fc2009-04-13 10:27:49 -0700299/* Called via smp_call_function_single(), on the target CPU */
300static void do_drv_read(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700301{
Mike Travis72859082009-01-16 15:31:15 -0800302 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700303
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100304 cmd->val = cmd->func.read(cmd->reg);
305}
306
307static u32 drv_read(struct acpi_cpufreq_data *data, const struct cpumask *mask)
308{
309 struct acpi_processor_performance *perf = to_perf_data(data);
310 struct drv_cmd cmd = {
311 .reg = &perf->control_register,
312 .func.read = data->cpu_freq_read,
313 };
314 int err;
315
316 err = smp_call_function_any(mask, do_drv_read, &cmd, 1);
317 WARN_ON_ONCE(err); /* smp_call_function_any() was buggy? */
318 return cmd.val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700319}
320
Andrew Morton01599fc2009-04-13 10:27:49 -0700321/* Called via smp_call_function_many(), on the target CPUs */
322static void do_drv_write(void *_cmd)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700323{
Mike Travis72859082009-01-16 15:31:15 -0800324 struct drv_cmd *cmd = _cmd;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700325
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100326 cmd->func.write(cmd->reg, cmd->val);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700327}
328
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100329static void drv_write(struct acpi_cpufreq_data *data,
330 const struct cpumask *mask, u32 val)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700331{
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100332 struct acpi_processor_performance *perf = to_perf_data(data);
333 struct drv_cmd cmd = {
334 .reg = &perf->control_register,
335 .val = val,
336 .func.write = data->cpu_freq_write,
337 };
Linus Torvaldsea34f432009-04-15 08:05:13 -0700338 int this_cpu;
339
340 this_cpu = get_cpu();
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100341 if (cpumask_test_cpu(this_cpu, mask))
342 do_drv_write(&cmd);
343
344 smp_call_function_many(mask, do_drv_write, &cmd, 1);
Linus Torvaldsea34f432009-04-15 08:05:13 -0700345 put_cpu();
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700346}
347
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100348static u32 get_cur_val(const struct cpumask *mask, struct acpi_cpufreq_data *data)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700349{
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100350 u32 val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700351
Mike Travis4d8bb532009-01-04 05:18:08 -0800352 if (unlikely(cpumask_empty(mask)))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700353 return 0;
354
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100355 val = drv_read(data, mask);
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700356
Mohan Kumareae2ef02019-04-15 14:03:58 +0300357 pr_debug("%s = %u\n", __func__, val);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700358
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100359 return val;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700360}
361
362static unsigned int get_cur_freq_on_cpu(unsigned int cpu)
363{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800364 struct acpi_cpufreq_data *data;
365 struct cpufreq_policy *policy;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700366 unsigned int freq;
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400367 unsigned int cached_freq;
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100368 unsigned int state;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700369
Mohan Kumareae2ef02019-04-15 14:03:58 +0300370 pr_debug("%s (%d)\n", __func__, cpu);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700371
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200372 policy = cpufreq_cpu_get_raw(cpu);
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800373 if (unlikely(!policy))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700374 return 0;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800375
376 data = policy->driver_data;
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530377 if (unlikely(!data || !policy->freq_table))
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800378 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700379
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100380 state = to_perf_data(data)->state;
381 if (state < data->first_perf_state)
382 state = data->first_perf_state;
383
384 cached_freq = policy->freq_table[state].frequency;
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530385 freq = extract_freq(policy, get_cur_val(cpumask_of(cpu), data));
Venkatesh Pallipadie56a7272008-04-28 15:13:43 -0400386 if (freq != cached_freq) {
387 /*
388 * The dreaded BIOS frequency change behind our back.
389 * Force set the frequency on next target call.
390 */
391 data->resume = 1;
392 }
393
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200394 pr_debug("cur freq = %u\n", freq);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700395
396 return freq;
397}
398
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530399static unsigned int check_freqs(struct cpufreq_policy *policy,
400 const struct cpumask *mask, unsigned int freq)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700401{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530402 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700403 unsigned int cur_freq;
404 unsigned int i;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700405
Dave Jones3a58df32009-01-17 22:36:14 -0500406 for (i = 0; i < 100; i++) {
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530407 cur_freq = extract_freq(policy, get_cur_val(mask, data));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700408 if (cur_freq == freq)
409 return 1;
410 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412 return 0;
413}
414
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700415static int acpi_cpufreq_target(struct cpufreq_policy *policy,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530416 unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800418 struct acpi_cpufreq_data *data = policy->driver_data;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700419 struct acpi_processor_performance *perf;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100420 const struct cpumask *mask;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800421 unsigned int next_perf_state = 0; /* Index into perf table */
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700422 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530424 if (unlikely(!data)) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700425 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200428 perf = to_perf_data(data);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530429 next_perf_state = policy->freq_table[index].driver_data;
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700430 if (perf->state == next_perf_state) {
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700431 if (unlikely(data->resume)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200432 pr_debug("Called after resume, resetting to P%d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700433 next_perf_state);
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700434 data->resume = 0;
435 } else {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200436 pr_debug("Already at target state (P%d)\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700437 next_perf_state);
Rafael J. Wysocki9a909a12016-02-26 00:03:58 +0100438 return 0;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700439 }
440 }
441
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100442 /*
443 * The core won't allow CPUs to go away until the governor has been
444 * stopped, so we can rely on the stability of policy->cpus.
445 */
446 mask = policy->shared_type == CPUFREQ_SHARED_TYPE_ANY ?
447 cpumask_of(policy->cpu) : policy->cpus;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700448
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100449 drv_write(data, mask, perf->states[next_perf_state].control);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500450
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700451 if (acpi_pstate_strict) {
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530452 if (!check_freqs(policy, mask,
453 policy->freq_table[index].frequency)) {
Mohan Kumareae2ef02019-04-15 14:03:58 +0300454 pr_debug("%s (%d)\n", __func__, policy->cpu);
Mike Travis4d8bb532009-01-04 05:18:08 -0800455 result = -EAGAIN;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500456 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500457 }
458
Viresh Kumare15d8302013-06-19 14:22:55 +0530459 if (!result)
460 perf->state = next_perf_state;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500461
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700462 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Colin Ian King08e9cc42018-06-01 14:05:12 +0100465static unsigned int acpi_cpufreq_fast_switch(struct cpufreq_policy *policy,
466 unsigned int target_freq)
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200467{
468 struct acpi_cpufreq_data *data = policy->driver_data;
469 struct acpi_processor_performance *perf;
470 struct cpufreq_frequency_table *entry;
Viresh Kumar82577362016-06-27 09:59:34 +0530471 unsigned int next_perf_state, next_freq, index;
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200472
473 /*
474 * Find the closest frequency above target_freq.
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200475 */
Steve Muckle5b6667c2016-07-13 13:25:27 -0700476 if (policy->cached_target_freq == target_freq)
477 index = policy->cached_resolved_idx;
478 else
479 index = cpufreq_table_find_index_dl(policy, target_freq);
Viresh Kumar82577362016-06-27 09:59:34 +0530480
481 entry = &policy->freq_table[index];
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200482 next_freq = entry->frequency;
483 next_perf_state = entry->driver_data;
484
485 perf = to_perf_data(data);
486 if (perf->state == next_perf_state) {
487 if (unlikely(data->resume))
488 data->resume = 0;
489 else
490 return next_freq;
491 }
492
493 data->cpu_freq_write(&perf->control_register,
494 perf->states[next_perf_state].control);
495 perf->state = next_perf_state;
496 return next_freq;
497}
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499static unsigned long
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700500acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200502 struct acpi_processor_performance *perf;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500503
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200504 perf = to_perf_data(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (cpu_khz) {
506 /* search the closest match to cpu_khz */
507 unsigned int i;
508 unsigned long freq;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500509 unsigned long freqn = perf->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Dave Jones3a58df32009-01-17 22:36:14 -0500511 for (i = 0; i < (perf->state_count-1); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 freq = freqn;
Dave Jones95dd7222006-10-18 00:41:48 -0400513 freqn = perf->states[i+1].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if ((2 * cpu_khz) > (freqn + freq)) {
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500515 perf->state = i;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700516 return freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 }
Dave Jones95dd7222006-10-18 00:41:48 -0400519 perf->state = perf->state_count-1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700520 return freqn;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500521 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* assume CPU is at P0... */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500523 perf->state = 0;
524 return perf->states[0].core_frequency * 1000;
525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800528static void free_acpi_perf_data(void)
529{
530 unsigned int i;
531
532 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
533 for_each_possible_cpu(i)
534 free_cpumask_var(per_cpu_ptr(acpi_perf_data, i)
535 ->shared_cpu_map);
536 free_percpu(acpi_perf_data);
537}
538
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100539static int cpufreq_boost_online(unsigned int cpu)
Andre Przywara615b7302012-09-04 08:28:07 +0000540{
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100541 /*
542 * On the CPU_UP path we simply keep the boost-disable flag
543 * in sync with the current global state.
544 */
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100545 return boost_set_msr(acpi_cpufreq_driver.boost_enabled);
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100546}
547
548static int cpufreq_boost_down_prep(unsigned int cpu)
549{
Andre Przywara615b7302012-09-04 08:28:07 +0000550 /*
551 * Clear the boost-disable bit on the CPU_DOWN path so that
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100552 * this cpu cannot block the remaining ones from boosting.
Andre Przywara615b7302012-09-04 08:28:07 +0000553 */
Sebastian Andrzej Siewiora3605c42016-11-28 10:52:03 +0100554 return boost_set_msr(1);
Andre Przywara615b7302012-09-04 08:28:07 +0000555}
556
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500557/*
558 * acpi_cpufreq_early_init - initialize ACPI P-States library
559 *
560 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
561 * in order to determine correct frequency and voltage pairings. We can
562 * do _PDC and _PSD and find out the processor dependency for the
563 * actual init that will happen later...
564 */
Fenghua Yu50109292007-08-07 18:40:30 -0400565static int __init acpi_cpufreq_early_init(void)
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500566{
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800567 unsigned int i;
Mohan Kumareae2ef02019-04-15 14:03:58 +0300568 pr_debug("%s\n", __func__);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500569
Fenghua Yu50109292007-08-07 18:40:30 -0400570 acpi_perf_data = alloc_percpu(struct acpi_processor_performance);
571 if (!acpi_perf_data) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200572 pr_debug("Memory allocation error for acpi_perf_data.\n");
Fenghua Yu50109292007-08-07 18:40:30 -0400573 return -ENOMEM;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500574 }
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800575 for_each_possible_cpu(i) {
Yinghai Lueaa95842009-06-06 14:51:36 -0700576 if (!zalloc_cpumask_var_node(
Mike Travis80855f72008-12-31 18:08:47 -0800577 &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map,
578 GFP_KERNEL, cpu_to_node(i))) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -0800579
580 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
581 free_acpi_perf_data();
582 return -ENOMEM;
583 }
584 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500585
586 /* Do initialization in ACPI core */
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700587 acpi_processor_preregister_performance(acpi_perf_data);
588 return 0;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500589}
590
Dave Jones95625b82006-10-21 01:37:39 -0400591#ifdef CONFIG_SMP
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700592/*
593 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
594 * or do it in BIOS firmware and won't inform about it to OS. If not
595 * detected, this has a side effect of making CPU run at a different speed
596 * than OS intended it to run at. Detect it and handle it cleanly.
597 */
598static int bios_with_sw_any_bug;
599
Jeff Garzik18552562007-10-03 15:15:40 -0400600static int sw_any_bug_found(const struct dmi_system_id *d)
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700601{
602 bios_with_sw_any_bug = 1;
603 return 0;
604}
605
Jeff Garzik18552562007-10-03 15:15:40 -0400606static const struct dmi_system_id sw_any_bug_dmi_table[] = {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700607 {
608 .callback = sw_any_bug_found,
609 .ident = "Supermicro Server X6DLP",
610 .matches = {
611 DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
612 DMI_MATCH(DMI_BIOS_VERSION, "080010"),
613 DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"),
614 },
615 },
616 { }
617};
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400618
619static int acpi_cpufreq_blacklist(struct cpuinfo_x86 *c)
620{
John Villalovos293afe42009-09-25 13:30:08 -0400621 /* Intel Xeon Processor 7100 Series Specification Update
Alexander A. Klimov8479eb82020-07-13 12:55:02 +0200622 * https://www.intel.com/Assets/PDF/specupdate/314554.pdf
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400623 * AL30: A Machine Check Exception (MCE) Occurring during an
624 * Enhanced Intel SpeedStep Technology Ratio Change May Cause
John Villalovos293afe42009-09-25 13:30:08 -0400625 * Both Processor Cores to Lock Up. */
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400626 if (c->x86_vendor == X86_VENDOR_INTEL) {
627 if ((c->x86 == 15) &&
628 (c->x86_model == 6) &&
Jia Zhangb3991512018-01-01 09:52:10 +0800629 (c->x86_stepping == 8)) {
Joe Perches1c5864e2016-04-05 13:28:25 -0700630 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 -0400631 return -ENODEV;
John Villalovos293afe42009-09-25 13:30:08 -0400632 }
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400633 }
634 return 0;
635}
Dave Jones95625b82006-10-21 01:37:39 -0400636#endif
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700637
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100638#ifdef CONFIG_ACPI_CPPC_LIB
639static u64 get_max_boost_ratio(unsigned int cpu)
640{
641 struct cppc_perf_caps perf_caps;
642 u64 highest_perf, nominal_perf;
643 int ret;
644
645 if (acpi_pstate_strict)
646 return 0;
647
648 ret = cppc_get_perf_caps(cpu, &perf_caps);
649 if (ret) {
650 pr_debug("CPU%d: Unable to get performance capabilities (%d)\n",
651 cpu, ret);
652 return 0;
653 }
654
655 highest_perf = perf_caps.highest_perf;
656 nominal_perf = perf_caps.nominal_perf;
657
658 if (!highest_perf || !nominal_perf) {
659 pr_debug("CPU%d: highest or nominal performance missing\n", cpu);
660 return 0;
661 }
662
663 if (highest_perf < nominal_perf) {
664 pr_debug("CPU%d: nominal performance above highest\n", cpu);
665 return 0;
666 }
667
668 return div_u64(highest_perf << SCHED_CAPACITY_SHIFT, nominal_perf);
669}
670#else
671static inline u64 get_max_boost_ratio(unsigned int cpu) { return 0; }
672#endif
673
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700674static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530676 struct cpufreq_frequency_table *freq_table;
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100677 struct acpi_processor_performance *perf;
678 struct acpi_cpufreq_data *data;
679 unsigned int cpu = policy->cpu;
680 struct cpuinfo_x86 *c = &cpu_data(cpu);
681 unsigned int valid_states = 0;
682 unsigned int result = 0;
683 unsigned int state_count;
684 u64 max_boost_ratio;
685 unsigned int i;
John Villalovos293afe42009-09-25 13:30:08 -0400686#ifdef CONFIG_SMP
687 static int blacklisted;
688#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Mohan Kumareae2ef02019-04-15 14:03:58 +0300690 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400692#ifdef CONFIG_SMP
John Villalovos293afe42009-09-25 13:30:08 -0400693 if (blacklisted)
694 return blacklisted;
695 blacklisted = acpi_cpufreq_blacklist(c);
696 if (blacklisted)
697 return blacklisted;
Prarit Bhargava1a8e42f2009-08-26 13:19:37 -0400698#endif
699
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530700 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (!data)
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700702 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800704 if (!zalloc_cpumask_var(&data->freqdomain_cpus, GFP_KERNEL)) {
705 result = -ENOMEM;
706 goto err_free;
707 }
708
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200709 perf = per_cpu_ptr(acpi_perf_data, cpu);
Pan Xinhui8cfcfd32015-07-10 14:36:20 +0800710 data->acpi_perf_cpu = cpu;
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800711 policy->driver_data = data;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700712
Dave Jones95dd7222006-10-18 00:41:48 -0400713 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC))
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700714 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Rafael J. Wysocki34276162015-07-22 22:11:56 +0200716 result = acpi_processor_register_performance(perf, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (result)
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800718 goto err_free_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500720 policy->shared_type = perf->shared_type;
Dave Jones95dd7222006-10-18 00:41:48 -0400721
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400722 /*
Dave Jones95dd7222006-10-18 00:41:48 -0400723 * Will let policy->cpus know about dependency only when software
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400724 * coordination is required.
725 */
726 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL ||
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700727 policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
Rusty Russell835481d2009-01-04 05:18:06 -0800728 cpumask_copy(policy->cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700729 }
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800730 cpumask_copy(data->freqdomain_cpus, perf->shared_cpu_map);
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700731
732#ifdef CONFIG_SMP
733 dmi_check_system(sw_any_bug_dmi_table);
Fabio Baltieri2624f902013-01-31 09:44:40 +0000734 if (bios_with_sw_any_bug && !policy_is_shared(policy)) {
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700735 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Bartosz Golaszewski3280c3c2015-05-26 15:11:33 +0200736 cpumask_copy(policy->cpus, topology_core_cpumask(cpu));
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700737 }
Andre Przywaraacd31622012-09-04 08:28:03 +0000738
Wei Huang53685122020-10-18 22:57:41 -0500739 if (check_amd_hwpstate_cpu(cpu) && boot_cpu_data.x86 < 0x19 &&
740 !acpi_pstate_strict) {
Andre Przywaraacd31622012-09-04 08:28:03 +0000741 cpumask_clear(policy->cpus);
742 cpumask_set_cpu(cpu, policy->cpus);
Bartosz Golaszewski3280c3c2015-05-26 15:11:33 +0200743 cpumask_copy(data->freqdomain_cpus,
744 topology_sibling_cpumask(cpu));
Andre Przywaraacd31622012-09-04 08:28:03 +0000745 policy->shared_type = CPUFREQ_SHARED_TYPE_HW;
Joe Perches1c5864e2016-04-05 13:28:25 -0700746 pr_info_once("overriding BIOS provided _PSD data\n");
Andre Przywaraacd31622012-09-04 08:28:03 +0000747 }
Venkatesh Pallipadi8adcc0c2006-09-01 14:02:24 -0700748#endif
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 /* capability check */
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500751 if (perf->state_count <= 1) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200752 pr_debug("No P-States\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 result = -ENODEV;
754 goto err_unreg;
755 }
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500756
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700757 if (perf->control_register.space_id != perf->status_register.space_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 result = -ENODEV;
759 goto err_unreg;
760 }
761
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700762 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700763 case ACPI_ADR_SPACE_SYSTEM_IO:
Matthew Garrettc40a4512013-01-20 10:24:26 +0000764 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
765 boot_cpu_data.x86 == 0xf) {
766 pr_debug("AMD K8 systems must use native drivers.\n");
767 result = -ENODEV;
768 goto err_unreg;
769 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200770 pr_debug("SYSTEM IO addr space\n");
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700771 data->cpu_feature = SYSTEM_IO_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100772 data->cpu_freq_read = cpu_freq_read_io;
773 data->cpu_freq_write = cpu_freq_write_io;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700774 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700775 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200776 pr_debug("HARDWARE addr space\n");
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000777 if (check_est_cpu(cpu)) {
778 data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100779 data->cpu_freq_read = cpu_freq_read_intel;
780 data->cpu_freq_write = cpu_freq_write_intel;
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000781 break;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700782 }
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000783 if (check_amd_hwpstate_cpu(cpu)) {
784 data->cpu_feature = SYSTEM_AMD_MSR_CAPABLE;
Rafael J. Wysockied757a22016-03-02 03:05:22 +0100785 data->cpu_freq_read = cpu_freq_read_amd;
786 data->cpu_freq_write = cpu_freq_write_amd;
Matthew Garrett3dc9a6332012-09-04 08:28:02 +0000787 break;
788 }
789 result = -ENODEV;
790 goto err_unreg;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700791 default:
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200792 pr_debug("Unknown addr space %d\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700793 (u32) (perf->control_register.space_id));
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700794 result = -ENODEV;
795 goto err_unreg;
796 }
797
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100798 state_count = perf->state_count + 1;
799
800 max_boost_ratio = get_max_boost_ratio(cpu);
801 if (max_boost_ratio) {
802 /*
803 * Make a room for one more entry to represent the highest
804 * available "boost" frequency.
805 */
806 state_count++;
807 valid_states++;
808 data->first_perf_state = valid_states;
809 }
810
811 freq_table = kcalloc(state_count, sizeof(*freq_table), GFP_KERNEL);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530812 if (!freq_table) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 result = -ENOMEM;
814 goto err_unreg;
815 }
816
817 /* detect transition latency */
818 policy->cpuinfo.transition_latency = 0;
Dave Jones3a58df32009-01-17 22:36:14 -0500819 for (i = 0; i < perf->state_count; i++) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700820 if ((perf->states[i].transition_latency * 1000) >
821 policy->cpuinfo.transition_latency)
822 policy->cpuinfo.transition_latency =
823 perf->states[i].transition_latency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700826 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
827 if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE &&
828 policy->cpuinfo.transition_latency > 20 * 1000) {
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700829 policy->cpuinfo.transition_latency = 20 * 1000;
Joe Perchesb49c22a2016-04-05 13:28:24 -0700830 pr_info_once("P-state transition latency capped at 20 uS\n");
Pallipadi, Venkatesha59d1632009-03-19 14:41:40 -0700831 }
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 /* table init */
Dave Jones3a58df32009-01-17 22:36:14 -0500834 for (i = 0; i < perf->state_count; i++) {
835 if (i > 0 && perf->states[i].core_frequency >=
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530836 freq_table[valid_states-1].frequency / 1000)
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700837 continue;
838
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530839 freq_table[valid_states].driver_data = i;
840 freq_table[valid_states].frequency =
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700841 perf->states[i].core_frequency * 1000;
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700842 valid_states++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530844 freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100845
846 if (max_boost_ratio) {
847 unsigned int state = data->first_perf_state;
848 unsigned int freq = freq_table[state].frequency;
849
850 /*
851 * Because the loop above sorts the freq_table entries in the
852 * descending order, freq is the maximum frequency in the table.
853 * Assume that it corresponds to the CPPC nominal frequency and
854 * use it to populate the frequency field of the extra "boost"
855 * frequency entry.
856 */
857 freq_table[0].frequency = freq * max_boost_ratio >> SCHED_CAPACITY_SHIFT;
858 /*
859 * The purpose of the extra "boost" frequency entry is to make
860 * the rest of cpufreq aware of the real maximum frequency, but
861 * the way to request it is the same as for the first_perf_state
862 * entry that is expected to cover the entire range of "boost"
863 * frequencies of the CPU, so copy the driver_data value from
864 * that entry.
865 */
866 freq_table[0].driver_data = freq_table[state].driver_data;
867 }
868
Viresh Kumar1a186d92018-02-26 10:38:46 +0530869 policy->freq_table = freq_table;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800870 perf->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Mattia Dongilia507ac42006-12-15 19:52:45 +0100872 switch (perf->control_register.space_id) {
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700873 case ACPI_ADR_SPACE_SYSTEM_IO:
Viresh Kumar1bab64d2013-10-16 23:58:10 +0200874 /*
875 * The core will not set policy->cur, because
876 * cpufreq_driver->get is NULL, so we need to set it here.
877 * However, we have to guess it, because the current speed is
878 * unknown and not detectable via IO ports.
879 */
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700880 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
881 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700882 case ACPI_ADR_SPACE_FIXED_HARDWARE:
Venkatesh Pallipadi7650b282006-10-03 12:36:30 -0700883 acpi_cpufreq_driver.get = get_cur_freq_on_cpu;
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700884 break;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700885 default:
Venkatesh Pallipadidde9f7b2006-10-03 12:33:14 -0700886 break;
887 }
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 /* notify BIOS that we exist */
890 acpi_processor_notify_smm(THIS_MODULE);
891
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200892 pr_debug("CPU%u - ACPI performance management activated.\n", cpu);
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500893 for (i = 0; i < perf->state_count; i++)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200894 pr_debug(" %cP%d: %d MHz, %d mW, %d uS\n",
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700895 (i == perf->state ? '*' : ' '), i,
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -0500896 (u32) perf->states[i].core_frequency,
897 (u32) perf->states[i].power,
898 (u32) perf->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Dominik Brodowski4b31e772005-05-18 13:49:00 -0400900 /*
901 * the first call to ->target() should result in us actually
902 * writing something to the appropriate registers.
903 */
904 data->resume = 1;
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700905
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200906 policy->fast_switch_possible = !acpi_pstate_strict &&
907 !(policy_is_shared(policy) && policy->shared_type != CPUFREQ_SHARED_TYPE_ANY);
908
Venkatesh Pallipadife27cb32006-10-03 12:29:15 -0700909 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Dave Jones95dd7222006-10-18 00:41:48 -0400911err_unreg:
Rafael J. Wysockib2f8dc42015-07-22 22:11:16 +0200912 acpi_processor_unregister_performance(cpu);
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800913err_free_mask:
914 free_cpumask_var(data->freqdomain_cpus);
Dave Jones95dd7222006-10-18 00:41:48 -0400915err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 kfree(data);
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800917 policy->driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700919 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700922static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800924 struct acpi_cpufreq_data *data = policy->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Mohan Kumareae2ef02019-04-15 14:03:58 +0300926 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Viresh Kumar9b55f552016-04-07 14:06:58 +0530928 policy->fast_switch_possible = false;
929 policy->driver_data = NULL;
930 acpi_processor_unregister_performance(data->acpi_perf_cpu);
931 free_cpumask_var(data->freqdomain_cpus);
Viresh Kumar8cee1ee2016-04-07 14:06:57 +0530932 kfree(policy->freq_table);
Viresh Kumar9b55f552016-04-07 14:06:58 +0530933 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700935 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Viresh Kumar1a186d92018-02-26 10:38:46 +0530938static void acpi_cpufreq_cpu_ready(struct cpufreq_policy *policy)
939{
940 struct acpi_processor_performance *perf = per_cpu_ptr(acpi_perf_data,
941 policy->cpu);
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100942 struct acpi_cpufreq_data *data = policy->driver_data;
943 unsigned int freq = policy->freq_table[data->first_perf_state].frequency;
Viresh Kumar1a186d92018-02-26 10:38:46 +0530944
Rafael J. Wysocki3c55e942021-02-04 18:25:37 +0100945 if (perf->states[0].core_frequency * 1000 != freq)
Viresh Kumar1a186d92018-02-26 10:38:46 +0530946 pr_warn(FW_WARN "P-state 0 is not max freq\n");
947}
948
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700949static int acpi_cpufreq_resume(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Pan Xinhuieb0b3e72015-07-07 20:43:26 +0800951 struct acpi_cpufreq_data *data = policy->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Mohan Kumareae2ef02019-04-15 14:03:58 +0300953 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 data->resume = 1;
956
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700957 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -0700960static struct freq_attr *acpi_cpufreq_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 &cpufreq_freq_attr_scaling_available_freqs,
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800962 &freqdomain_cpus,
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +0200963#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
964 &cpb,
965#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 NULL,
967};
968
969static struct cpufreq_driver acpi_cpufreq_driver = {
Viresh Kumardb9be212013-10-03 20:27:56 +0530970 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530971 .target_index = acpi_cpufreq_target,
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200972 .fast_switch = acpi_cpufreq_fast_switch,
Thomas Renningere2f74f32009-11-19 12:31:01 +0100973 .bios_limit = acpi_processor_get_bios_limit,
974 .init = acpi_cpufreq_cpu_init,
975 .exit = acpi_cpufreq_cpu_exit,
Viresh Kumar1a186d92018-02-26 10:38:46 +0530976 .ready = acpi_cpufreq_cpu_ready,
Thomas Renningere2f74f32009-11-19 12:31:01 +0100977 .resume = acpi_cpufreq_resume,
978 .name = "acpi-cpufreq",
Thomas Renningere2f74f32009-11-19 12:31:01 +0100979 .attr = acpi_cpufreq_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980};
981
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100982static enum cpuhp_state acpi_cpufreq_online;
983
Andre Przywara615b7302012-09-04 08:28:07 +0000984static void __init acpi_cpufreq_boost_init(void)
985{
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100986 int ret;
Andre Przywara615b7302012-09-04 08:28:07 +0000987
Erwan Velu1222d522019-02-20 11:10:17 +0100988 if (!(boot_cpu_has(X86_FEATURE_CPB) || boot_cpu_has(X86_FEATURE_IDA))) {
989 pr_debug("Boost capabilities not present in the processor\n");
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100990 return;
Erwan Velu1222d522019-02-20 11:10:17 +0100991 }
Andre Przywara615b7302012-09-04 08:28:07 +0000992
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100993 acpi_cpufreq_driver.set_boost = set_boost;
994 acpi_cpufreq_driver.boost_enabled = boost_state(0);
Andre Przywara615b7302012-09-04 08:28:07 +0000995
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +0100996 /*
997 * This calls the online callback on all online cpu and forces all
998 * MSRs to the same value.
999 */
1000 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "cpufreq/acpi:online",
1001 cpufreq_boost_online, cpufreq_boost_down_prep);
1002 if (ret < 0) {
1003 pr_err("acpi_cpufreq: failed to register hotplug callbacks\n");
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +01001004 return;
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +01001005 }
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +01001006 acpi_cpufreq_online = ret;
Andre Przywara615b7302012-09-04 08:28:07 +00001007}
1008
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -05001009static void acpi_cpufreq_boost_exit(void)
Andre Przywara615b7302012-09-04 08:28:07 +00001010{
Boris Ostrovsky2a8fa122016-12-15 10:00:58 -05001011 if (acpi_cpufreq_online > 0)
Sebastian Andrzej Siewior4d66ddf2016-11-28 10:51:02 +01001012 cpuhp_remove_state_nocalls(acpi_cpufreq_online);
Andre Przywara615b7302012-09-04 08:28:07 +00001013}
1014
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -07001015static int __init acpi_cpufreq_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Fenghua Yu50109292007-08-07 18:40:30 -04001017 int ret;
1018
Rafael J. Wysocki75c07582013-10-25 16:22:47 +02001019 if (acpi_disabled)
1020 return -ENODEV;
1021
Yinghai Lu8a61e122013-09-20 10:43:56 -07001022 /* don't keep reloading if cpufreq_driver exists */
1023 if (cpufreq_get_current_driver())
Rafael J. Wysocki75c07582013-10-25 16:22:47 +02001024 return -EEXIST;
Yinghai Luee297532008-09-24 19:04:31 -07001025
Mohan Kumareae2ef02019-04-15 14:03:58 +03001026 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Fenghua Yu50109292007-08-07 18:40:30 -04001028 ret = acpi_cpufreq_early_init();
1029 if (ret)
1030 return ret;
Venkatesh Pallipadi09b4d1e2005-12-14 15:05:00 -05001031
Andre Przywara11269ff2012-09-04 08:28:08 +00001032#ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
1033 /* this is a sysfs file with a strange name and an even stranger
1034 * semantic - per CPU instantiation, but system global effect.
1035 * Lets enable it only on AMD CPUs for compatibility reasons and
1036 * only if configured. This is considered legacy code, which
1037 * will probably be removed at some point in the future.
1038 */
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +02001039 if (!check_amd_hwpstate_cpu(0)) {
1040 struct freq_attr **attr;
Andre Przywara11269ff2012-09-04 08:28:08 +00001041
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +02001042 pr_debug("CPB unsupported, do not expose it\n");
Andre Przywara11269ff2012-09-04 08:28:08 +00001043
Rafael J. Wysockif56c50e2015-07-22 22:12:10 +02001044 for (attr = acpi_cpufreq_attr; *attr; attr++)
1045 if (*attr == &cpb) {
1046 *attr = NULL;
1047 break;
1048 }
Andre Przywara11269ff2012-09-04 08:28:08 +00001049 }
1050#endif
Lukasz Majewskicfc9c8e2013-12-20 15:24:50 +01001051 acpi_cpufreq_boost_init();
Andre Przywara11269ff2012-09-04 08:28:08 +00001052
Akinobu Mita847aef62008-07-14 11:59:44 +09001053 ret = cpufreq_register_driver(&acpi_cpufreq_driver);
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -05001054 if (ret) {
Rusty Russell2fdf66b2008-12-31 18:08:47 -08001055 free_acpi_perf_data();
Konrad Rzeszutek Wilkeb8c68e2014-01-27 22:50:35 -05001056 acpi_cpufreq_boost_exit();
1057 }
Akinobu Mita847aef62008-07-14 11:59:44 +09001058 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -07001061static void __exit acpi_cpufreq_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Mohan Kumareae2ef02019-04-15 14:03:58 +03001063 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Andre Przywara615b7302012-09-04 08:28:07 +00001065 acpi_cpufreq_boost_exit();
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 cpufreq_unregister_driver(&acpi_cpufreq_driver);
1068
Luming Yu50f4ddd2011-07-08 16:37:44 -04001069 free_acpi_perf_data();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
Venkatesh Pallipadid395bf12005-08-25 15:59:00 -04001072module_param(acpi_pstate_strict, uint, 0644);
Venkatesh Pallipadi64be7ee2006-10-03 12:35:23 -07001073MODULE_PARM_DESC(acpi_pstate_strict,
Dave Jones95dd7222006-10-18 00:41:48 -04001074 "value 0 or non-zero. non-zero -> strict ACPI checks are "
1075 "performed during frequency changes.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077late_initcall(acpi_cpufreq_init);
1078module_exit(acpi_cpufreq_exit);
1079
Lee Jonesa7b90932020-07-15 09:26:30 +01001080static const struct x86_cpu_id __maybe_unused acpi_cpufreq_ids[] = {
Thomas Gleixnerb11d77f2020-03-24 14:51:51 +01001081 X86_MATCH_FEATURE(X86_FEATURE_ACPI, NULL),
1082 X86_MATCH_FEATURE(X86_FEATURE_HW_PSTATE, NULL),
Matthew Garrettefa17192013-01-22 22:33:46 +01001083 {}
1084};
1085MODULE_DEVICE_TABLE(x86cpu, acpi_cpufreq_ids);
1086
Lee Jonesa7b90932020-07-15 09:26:30 +01001087static const struct acpi_device_id __maybe_unused processor_device_ids[] = {
Rafael J. Wysockic655aff2013-06-07 13:13:31 +02001088 {ACPI_PROCESSOR_OBJECT_HID, },
1089 {ACPI_PROCESSOR_DEVICE_HID, },
1090 {},
1091};
1092MODULE_DEVICE_TABLE(acpi, processor_device_ids);
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094MODULE_ALIAS("acpi");