1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * acpi-cpufreq.c - ACPI Processor P-States Driver
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>
8 * Copyright (C) 2006 Denis Sadykov <denis.m.sadykov@intel.com>
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/smp.h>
17 #include <linux/sched.h>
18 #include <linux/cpufreq.h>
19 #include <linux/compiler.h>
20 #include <linux/dmi.h>
21 #include <linux/slab.h>
23 #include <linux/acpi.h>
25 #include <linux/delay.h>
26 #include <linux/uaccess.h>
28 #include <acpi/processor.h>
31 #include <asm/processor.h>
32 #include <asm/cpufeature.h>
33 #include <asm/cpu_device_id.h>
35 MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
36 MODULE_DESCRIPTION("ACPI Processor P-States Driver");
37 MODULE_LICENSE("GPL");
40 UNDEFINED_CAPABLE
= 0,
41 SYSTEM_INTEL_MSR_CAPABLE
,
42 SYSTEM_AMD_MSR_CAPABLE
,
46 #define INTEL_MSR_RANGE (0xffff)
47 #define AMD_MSR_RANGE (0x7)
48 #define HYGON_MSR_RANGE (0x7)
50 #define MSR_K7_HWCR_CPB_DIS (1ULL << 25)
52 struct acpi_cpufreq_data
{
54 unsigned int cpu_feature
;
55 unsigned int acpi_perf_cpu
;
56 cpumask_var_t freqdomain_cpus
;
57 void (*cpu_freq_write
)(struct acpi_pct_register
*reg
, u32 val
);
58 u32 (*cpu_freq_read
)(struct acpi_pct_register
*reg
);
61 /* acpi_perf_data is a pointer to percpu data. */
62 static struct acpi_processor_performance __percpu
*acpi_perf_data
;
64 static inline struct acpi_processor_performance
*to_perf_data(struct acpi_cpufreq_data
*data
)
66 return per_cpu_ptr(acpi_perf_data
, data
->acpi_perf_cpu
);
69 static struct cpufreq_driver acpi_cpufreq_driver
;
71 static unsigned int acpi_pstate_strict
;
73 static bool boost_state(unsigned int cpu
)
78 switch (boot_cpu_data
.x86_vendor
) {
79 case X86_VENDOR_INTEL
:
80 rdmsr_on_cpu(cpu
, MSR_IA32_MISC_ENABLE
, &lo
, &hi
);
81 msr
= lo
| ((u64
)hi
<< 32);
82 return !(msr
& MSR_IA32_MISC_ENABLE_TURBO_DISABLE
);
83 case X86_VENDOR_HYGON
:
85 rdmsr_on_cpu(cpu
, MSR_K7_HWCR
, &lo
, &hi
);
86 msr
= lo
| ((u64
)hi
<< 32);
87 return !(msr
& MSR_K7_HWCR_CPB_DIS
);
92 static int boost_set_msr(bool enable
)
97 switch (boot_cpu_data
.x86_vendor
) {
98 case X86_VENDOR_INTEL
:
99 msr_addr
= MSR_IA32_MISC_ENABLE
;
100 msr_mask
= MSR_IA32_MISC_ENABLE_TURBO_DISABLE
;
102 case X86_VENDOR_HYGON
:
104 msr_addr
= MSR_K7_HWCR
;
105 msr_mask
= MSR_K7_HWCR_CPB_DIS
;
111 rdmsrl(msr_addr
, val
);
118 wrmsrl(msr_addr
, val
);
122 static void boost_set_msr_each(void *p_en
)
124 bool enable
= (bool) p_en
;
126 boost_set_msr(enable
);
129 static int set_boost(int val
)
132 on_each_cpu(boost_set_msr_each
, (void *)(long)val
, 1);
134 pr_debug("Core Boosting %sabled.\n", val
? "en" : "dis");
139 static ssize_t
show_freqdomain_cpus(struct cpufreq_policy
*policy
, char *buf
)
141 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
146 return cpufreq_show_cpus(data
->freqdomain_cpus
, buf
);
149 cpufreq_freq_attr_ro(freqdomain_cpus
);
151 #ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
152 static ssize_t
store_cpb(struct cpufreq_policy
*policy
, const char *buf
,
156 unsigned int val
= 0;
158 if (!acpi_cpufreq_driver
.set_boost
)
161 ret
= kstrtouint(buf
, 10, &val
);
170 static ssize_t
show_cpb(struct cpufreq_policy
*policy
, char *buf
)
172 return sprintf(buf
, "%u\n", acpi_cpufreq_driver
.boost_enabled
);
175 cpufreq_freq_attr_rw(cpb
);
178 static int check_est_cpu(unsigned int cpuid
)
180 struct cpuinfo_x86
*cpu
= &cpu_data(cpuid
);
182 return cpu_has(cpu
, X86_FEATURE_EST
);
185 static int check_amd_hwpstate_cpu(unsigned int cpuid
)
187 struct cpuinfo_x86
*cpu
= &cpu_data(cpuid
);
189 return cpu_has(cpu
, X86_FEATURE_HW_PSTATE
);
192 static unsigned extract_io(struct cpufreq_policy
*policy
, u32 value
)
194 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
195 struct acpi_processor_performance
*perf
;
198 perf
= to_perf_data(data
);
200 for (i
= 0; i
< perf
->state_count
; i
++) {
201 if (value
== perf
->states
[i
].status
)
202 return policy
->freq_table
[i
].frequency
;
207 static unsigned extract_msr(struct cpufreq_policy
*policy
, u32 msr
)
209 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
210 struct cpufreq_frequency_table
*pos
;
211 struct acpi_processor_performance
*perf
;
213 if (boot_cpu_data
.x86_vendor
== X86_VENDOR_AMD
)
214 msr
&= AMD_MSR_RANGE
;
215 else if (boot_cpu_data
.x86_vendor
== X86_VENDOR_HYGON
)
216 msr
&= HYGON_MSR_RANGE
;
218 msr
&= INTEL_MSR_RANGE
;
220 perf
= to_perf_data(data
);
222 cpufreq_for_each_entry(pos
, policy
->freq_table
)
223 if (msr
== perf
->states
[pos
->driver_data
].status
)
224 return pos
->frequency
;
225 return policy
->freq_table
[0].frequency
;
228 static unsigned extract_freq(struct cpufreq_policy
*policy
, u32 val
)
230 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
232 switch (data
->cpu_feature
) {
233 case SYSTEM_INTEL_MSR_CAPABLE
:
234 case SYSTEM_AMD_MSR_CAPABLE
:
235 return extract_msr(policy
, val
);
236 case SYSTEM_IO_CAPABLE
:
237 return extract_io(policy
, val
);
243 static u32
cpu_freq_read_intel(struct acpi_pct_register
*not_used
)
247 rdmsr(MSR_IA32_PERF_CTL
, val
, dummy
);
251 static void cpu_freq_write_intel(struct acpi_pct_register
*not_used
, u32 val
)
255 rdmsr(MSR_IA32_PERF_CTL
, lo
, hi
);
256 lo
= (lo
& ~INTEL_MSR_RANGE
) | (val
& INTEL_MSR_RANGE
);
257 wrmsr(MSR_IA32_PERF_CTL
, lo
, hi
);
260 static u32
cpu_freq_read_amd(struct acpi_pct_register
*not_used
)
264 rdmsr(MSR_AMD_PERF_CTL
, val
, dummy
);
268 static void cpu_freq_write_amd(struct acpi_pct_register
*not_used
, u32 val
)
270 wrmsr(MSR_AMD_PERF_CTL
, val
, 0);
273 static u32
cpu_freq_read_io(struct acpi_pct_register
*reg
)
277 acpi_os_read_port(reg
->address
, &val
, reg
->bit_width
);
281 static void cpu_freq_write_io(struct acpi_pct_register
*reg
, u32 val
)
283 acpi_os_write_port(reg
->address
, val
, reg
->bit_width
);
287 struct acpi_pct_register
*reg
;
290 void (*write
)(struct acpi_pct_register
*reg
, u32 val
);
291 u32 (*read
)(struct acpi_pct_register
*reg
);
295 /* Called via smp_call_function_single(), on the target CPU */
296 static void do_drv_read(void *_cmd
)
298 struct drv_cmd
*cmd
= _cmd
;
300 cmd
->val
= cmd
->func
.read(cmd
->reg
);
303 static u32
drv_read(struct acpi_cpufreq_data
*data
, const struct cpumask
*mask
)
305 struct acpi_processor_performance
*perf
= to_perf_data(data
);
306 struct drv_cmd cmd
= {
307 .reg
= &perf
->control_register
,
308 .func
.read
= data
->cpu_freq_read
,
312 err
= smp_call_function_any(mask
, do_drv_read
, &cmd
, 1);
313 WARN_ON_ONCE(err
); /* smp_call_function_any() was buggy? */
317 /* Called via smp_call_function_many(), on the target CPUs */
318 static void do_drv_write(void *_cmd
)
320 struct drv_cmd
*cmd
= _cmd
;
322 cmd
->func
.write(cmd
->reg
, cmd
->val
);
325 static void drv_write(struct acpi_cpufreq_data
*data
,
326 const struct cpumask
*mask
, u32 val
)
328 struct acpi_processor_performance
*perf
= to_perf_data(data
);
329 struct drv_cmd cmd
= {
330 .reg
= &perf
->control_register
,
332 .func
.write
= data
->cpu_freq_write
,
336 this_cpu
= get_cpu();
337 if (cpumask_test_cpu(this_cpu
, mask
))
340 smp_call_function_many(mask
, do_drv_write
, &cmd
, 1);
344 static u32
get_cur_val(const struct cpumask
*mask
, struct acpi_cpufreq_data
*data
)
348 if (unlikely(cpumask_empty(mask
)))
351 val
= drv_read(data
, mask
);
353 pr_debug("%s = %u\n", __func__
, val
);
358 static unsigned int get_cur_freq_on_cpu(unsigned int cpu
)
360 struct acpi_cpufreq_data
*data
;
361 struct cpufreq_policy
*policy
;
363 unsigned int cached_freq
;
365 pr_debug("%s (%d)\n", __func__
, cpu
);
367 policy
= cpufreq_cpu_get_raw(cpu
);
368 if (unlikely(!policy
))
371 data
= policy
->driver_data
;
372 if (unlikely(!data
|| !policy
->freq_table
))
375 cached_freq
= policy
->freq_table
[to_perf_data(data
)->state
].frequency
;
376 freq
= extract_freq(policy
, get_cur_val(cpumask_of(cpu
), data
));
377 if (freq
!= cached_freq
) {
379 * The dreaded BIOS frequency change behind our back.
380 * Force set the frequency on next target call.
385 pr_debug("cur freq = %u\n", freq
);
390 static unsigned int check_freqs(struct cpufreq_policy
*policy
,
391 const struct cpumask
*mask
, unsigned int freq
)
393 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
394 unsigned int cur_freq
;
397 for (i
= 0; i
< 100; i
++) {
398 cur_freq
= extract_freq(policy
, get_cur_val(mask
, data
));
399 if (cur_freq
== freq
)
406 static int acpi_cpufreq_target(struct cpufreq_policy
*policy
,
409 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
410 struct acpi_processor_performance
*perf
;
411 const struct cpumask
*mask
;
412 unsigned int next_perf_state
= 0; /* Index into perf table */
415 if (unlikely(!data
)) {
419 perf
= to_perf_data(data
);
420 next_perf_state
= policy
->freq_table
[index
].driver_data
;
421 if (perf
->state
== next_perf_state
) {
422 if (unlikely(data
->resume
)) {
423 pr_debug("Called after resume, resetting to P%d\n",
427 pr_debug("Already at target state (P%d)\n",
434 * The core won't allow CPUs to go away until the governor has been
435 * stopped, so we can rely on the stability of policy->cpus.
437 mask
= policy
->shared_type
== CPUFREQ_SHARED_TYPE_ANY
?
438 cpumask_of(policy
->cpu
) : policy
->cpus
;
440 drv_write(data
, mask
, perf
->states
[next_perf_state
].control
);
442 if (acpi_pstate_strict
) {
443 if (!check_freqs(policy
, mask
,
444 policy
->freq_table
[index
].frequency
)) {
445 pr_debug("%s (%d)\n", __func__
, policy
->cpu
);
451 perf
->state
= next_perf_state
;
456 static unsigned int acpi_cpufreq_fast_switch(struct cpufreq_policy
*policy
,
457 unsigned int target_freq
)
459 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
460 struct acpi_processor_performance
*perf
;
461 struct cpufreq_frequency_table
*entry
;
462 unsigned int next_perf_state
, next_freq
, index
;
465 * Find the closest frequency above target_freq.
467 if (policy
->cached_target_freq
== target_freq
)
468 index
= policy
->cached_resolved_idx
;
470 index
= cpufreq_table_find_index_dl(policy
, target_freq
);
472 entry
= &policy
->freq_table
[index
];
473 next_freq
= entry
->frequency
;
474 next_perf_state
= entry
->driver_data
;
476 perf
= to_perf_data(data
);
477 if (perf
->state
== next_perf_state
) {
478 if (unlikely(data
->resume
))
484 data
->cpu_freq_write(&perf
->control_register
,
485 perf
->states
[next_perf_state
].control
);
486 perf
->state
= next_perf_state
;
491 acpi_cpufreq_guess_freq(struct acpi_cpufreq_data
*data
, unsigned int cpu
)
493 struct acpi_processor_performance
*perf
;
495 perf
= to_perf_data(data
);
497 /* search the closest match to cpu_khz */
500 unsigned long freqn
= perf
->states
[0].core_frequency
* 1000;
502 for (i
= 0; i
< (perf
->state_count
-1); i
++) {
504 freqn
= perf
->states
[i
+1].core_frequency
* 1000;
505 if ((2 * cpu_khz
) > (freqn
+ freq
)) {
510 perf
->state
= perf
->state_count
-1;
513 /* assume CPU is at P0... */
515 return perf
->states
[0].core_frequency
* 1000;
519 static void free_acpi_perf_data(void)
523 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
524 for_each_possible_cpu(i
)
525 free_cpumask_var(per_cpu_ptr(acpi_perf_data
, i
)
527 free_percpu(acpi_perf_data
);
530 static int cpufreq_boost_online(unsigned int cpu
)
533 * On the CPU_UP path we simply keep the boost-disable flag
534 * in sync with the current global state.
536 return boost_set_msr(acpi_cpufreq_driver
.boost_enabled
);
539 static int cpufreq_boost_down_prep(unsigned int cpu
)
542 * Clear the boost-disable bit on the CPU_DOWN path so that
543 * this cpu cannot block the remaining ones from boosting.
545 return boost_set_msr(1);
549 * acpi_cpufreq_early_init - initialize ACPI P-States library
551 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
552 * in order to determine correct frequency and voltage pairings. We can
553 * do _PDC and _PSD and find out the processor dependency for the
554 * actual init that will happen later...
556 static int __init
acpi_cpufreq_early_init(void)
559 pr_debug("%s\n", __func__
);
561 acpi_perf_data
= alloc_percpu(struct acpi_processor_performance
);
562 if (!acpi_perf_data
) {
563 pr_debug("Memory allocation error for acpi_perf_data.\n");
566 for_each_possible_cpu(i
) {
567 if (!zalloc_cpumask_var_node(
568 &per_cpu_ptr(acpi_perf_data
, i
)->shared_cpu_map
,
569 GFP_KERNEL
, cpu_to_node(i
))) {
571 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
572 free_acpi_perf_data();
577 /* Do initialization in ACPI core */
578 acpi_processor_preregister_performance(acpi_perf_data
);
584 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
585 * or do it in BIOS firmware and won't inform about it to OS. If not
586 * detected, this has a side effect of making CPU run at a different speed
587 * than OS intended it to run at. Detect it and handle it cleanly.
589 static int bios_with_sw_any_bug
;
591 static int sw_any_bug_found(const struct dmi_system_id
*d
)
593 bios_with_sw_any_bug
= 1;
597 static const struct dmi_system_id sw_any_bug_dmi_table
[] = {
599 .callback
= sw_any_bug_found
,
600 .ident
= "Supermicro Server X6DLP",
602 DMI_MATCH(DMI_SYS_VENDOR
, "Supermicro"),
603 DMI_MATCH(DMI_BIOS_VERSION
, "080010"),
604 DMI_MATCH(DMI_PRODUCT_NAME
, "X6DLP"),
610 static int acpi_cpufreq_blacklist(struct cpuinfo_x86
*c
)
612 /* Intel Xeon Processor 7100 Series Specification Update
613 * http://www.intel.com/Assets/PDF/specupdate/314554.pdf
614 * AL30: A Machine Check Exception (MCE) Occurring during an
615 * Enhanced Intel SpeedStep Technology Ratio Change May Cause
616 * Both Processor Cores to Lock Up. */
617 if (c
->x86_vendor
== X86_VENDOR_INTEL
) {
618 if ((c
->x86
== 15) &&
619 (c
->x86_model
== 6) &&
620 (c
->x86_stepping
== 8)) {
621 pr_info("Intel(R) Xeon(R) 7100 Errata AL30, processors may lock up on frequency changes: disabling acpi-cpufreq\n");
629 static int acpi_cpufreq_cpu_init(struct cpufreq_policy
*policy
)
632 unsigned int valid_states
= 0;
633 unsigned int cpu
= policy
->cpu
;
634 struct acpi_cpufreq_data
*data
;
635 unsigned int result
= 0;
636 struct cpuinfo_x86
*c
= &cpu_data(policy
->cpu
);
637 struct acpi_processor_performance
*perf
;
638 struct cpufreq_frequency_table
*freq_table
;
640 static int blacklisted
;
643 pr_debug("%s\n", __func__
);
648 blacklisted
= acpi_cpufreq_blacklist(c
);
653 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
657 if (!zalloc_cpumask_var(&data
->freqdomain_cpus
, GFP_KERNEL
)) {
662 perf
= per_cpu_ptr(acpi_perf_data
, cpu
);
663 data
->acpi_perf_cpu
= cpu
;
664 policy
->driver_data
= data
;
666 if (cpu_has(c
, X86_FEATURE_CONSTANT_TSC
))
667 acpi_cpufreq_driver
.flags
|= CPUFREQ_CONST_LOOPS
;
669 result
= acpi_processor_register_performance(perf
, cpu
);
673 policy
->shared_type
= perf
->shared_type
;
676 * Will let policy->cpus know about dependency only when software
677 * coordination is required.
679 if (policy
->shared_type
== CPUFREQ_SHARED_TYPE_ALL
||
680 policy
->shared_type
== CPUFREQ_SHARED_TYPE_ANY
) {
681 cpumask_copy(policy
->cpus
, perf
->shared_cpu_map
);
683 cpumask_copy(data
->freqdomain_cpus
, perf
->shared_cpu_map
);
686 dmi_check_system(sw_any_bug_dmi_table
);
687 if (bios_with_sw_any_bug
&& !policy_is_shared(policy
)) {
688 policy
->shared_type
= CPUFREQ_SHARED_TYPE_ALL
;
689 cpumask_copy(policy
->cpus
, topology_core_cpumask(cpu
));
692 if (check_amd_hwpstate_cpu(cpu
) && !acpi_pstate_strict
) {
693 cpumask_clear(policy
->cpus
);
694 cpumask_set_cpu(cpu
, policy
->cpus
);
695 cpumask_copy(data
->freqdomain_cpus
,
696 topology_sibling_cpumask(cpu
));
697 policy
->shared_type
= CPUFREQ_SHARED_TYPE_HW
;
698 pr_info_once("overriding BIOS provided _PSD data\n");
702 /* capability check */
703 if (perf
->state_count
<= 1) {
704 pr_debug("No P-States\n");
709 if (perf
->control_register
.space_id
!= perf
->status_register
.space_id
) {
714 switch (perf
->control_register
.space_id
) {
715 case ACPI_ADR_SPACE_SYSTEM_IO
:
716 if (boot_cpu_data
.x86_vendor
== X86_VENDOR_AMD
&&
717 boot_cpu_data
.x86
== 0xf) {
718 pr_debug("AMD K8 systems must use native drivers.\n");
722 pr_debug("SYSTEM IO addr space\n");
723 data
->cpu_feature
= SYSTEM_IO_CAPABLE
;
724 data
->cpu_freq_read
= cpu_freq_read_io
;
725 data
->cpu_freq_write
= cpu_freq_write_io
;
727 case ACPI_ADR_SPACE_FIXED_HARDWARE
:
728 pr_debug("HARDWARE addr space\n");
729 if (check_est_cpu(cpu
)) {
730 data
->cpu_feature
= SYSTEM_INTEL_MSR_CAPABLE
;
731 data
->cpu_freq_read
= cpu_freq_read_intel
;
732 data
->cpu_freq_write
= cpu_freq_write_intel
;
735 if (check_amd_hwpstate_cpu(cpu
)) {
736 data
->cpu_feature
= SYSTEM_AMD_MSR_CAPABLE
;
737 data
->cpu_freq_read
= cpu_freq_read_amd
;
738 data
->cpu_freq_write
= cpu_freq_write_amd
;
744 pr_debug("Unknown addr space %d\n",
745 (u32
) (perf
->control_register
.space_id
));
750 freq_table
= kcalloc(perf
->state_count
+ 1, sizeof(*freq_table
),
757 /* detect transition latency */
758 policy
->cpuinfo
.transition_latency
= 0;
759 for (i
= 0; i
< perf
->state_count
; i
++) {
760 if ((perf
->states
[i
].transition_latency
* 1000) >
761 policy
->cpuinfo
.transition_latency
)
762 policy
->cpuinfo
.transition_latency
=
763 perf
->states
[i
].transition_latency
* 1000;
766 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
767 if (perf
->control_register
.space_id
== ACPI_ADR_SPACE_FIXED_HARDWARE
&&
768 policy
->cpuinfo
.transition_latency
> 20 * 1000) {
769 policy
->cpuinfo
.transition_latency
= 20 * 1000;
770 pr_info_once("P-state transition latency capped at 20 uS\n");
774 for (i
= 0; i
< perf
->state_count
; i
++) {
775 if (i
> 0 && perf
->states
[i
].core_frequency
>=
776 freq_table
[valid_states
-1].frequency
/ 1000)
779 freq_table
[valid_states
].driver_data
= i
;
780 freq_table
[valid_states
].frequency
=
781 perf
->states
[i
].core_frequency
* 1000;
784 freq_table
[valid_states
].frequency
= CPUFREQ_TABLE_END
;
785 policy
->freq_table
= freq_table
;
788 switch (perf
->control_register
.space_id
) {
789 case ACPI_ADR_SPACE_SYSTEM_IO
:
791 * The core will not set policy->cur, because
792 * cpufreq_driver->get is NULL, so we need to set it here.
793 * However, we have to guess it, because the current speed is
794 * unknown and not detectable via IO ports.
796 policy
->cur
= acpi_cpufreq_guess_freq(data
, policy
->cpu
);
798 case ACPI_ADR_SPACE_FIXED_HARDWARE
:
799 acpi_cpufreq_driver
.get
= get_cur_freq_on_cpu
;
805 /* notify BIOS that we exist */
806 acpi_processor_notify_smm(THIS_MODULE
);
808 pr_debug("CPU%u - ACPI performance management activated.\n", cpu
);
809 for (i
= 0; i
< perf
->state_count
; i
++)
810 pr_debug(" %cP%d: %d MHz, %d mW, %d uS\n",
811 (i
== perf
->state
? '*' : ' '), i
,
812 (u32
) perf
->states
[i
].core_frequency
,
813 (u32
) perf
->states
[i
].power
,
814 (u32
) perf
->states
[i
].transition_latency
);
817 * the first call to ->target() should result in us actually
818 * writing something to the appropriate registers.
822 policy
->fast_switch_possible
= !acpi_pstate_strict
&&
823 !(policy_is_shared(policy
) && policy
->shared_type
!= CPUFREQ_SHARED_TYPE_ANY
);
828 acpi_processor_unregister_performance(cpu
);
830 free_cpumask_var(data
->freqdomain_cpus
);
833 policy
->driver_data
= NULL
;
838 static int acpi_cpufreq_cpu_exit(struct cpufreq_policy
*policy
)
840 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
842 pr_debug("%s\n", __func__
);
844 policy
->fast_switch_possible
= false;
845 policy
->driver_data
= NULL
;
846 acpi_processor_unregister_performance(data
->acpi_perf_cpu
);
847 free_cpumask_var(data
->freqdomain_cpus
);
848 kfree(policy
->freq_table
);
854 static void acpi_cpufreq_cpu_ready(struct cpufreq_policy
*policy
)
856 struct acpi_processor_performance
*perf
= per_cpu_ptr(acpi_perf_data
,
859 if (perf
->states
[0].core_frequency
* 1000 != policy
->cpuinfo
.max_freq
)
860 pr_warn(FW_WARN
"P-state 0 is not max freq\n");
863 static int acpi_cpufreq_resume(struct cpufreq_policy
*policy
)
865 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
867 pr_debug("%s\n", __func__
);
874 static struct freq_attr
*acpi_cpufreq_attr
[] = {
875 &cpufreq_freq_attr_scaling_available_freqs
,
877 #ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
883 static struct cpufreq_driver acpi_cpufreq_driver
= {
884 .verify
= cpufreq_generic_frequency_table_verify
,
885 .target_index
= acpi_cpufreq_target
,
886 .fast_switch
= acpi_cpufreq_fast_switch
,
887 .bios_limit
= acpi_processor_get_bios_limit
,
888 .init
= acpi_cpufreq_cpu_init
,
889 .exit
= acpi_cpufreq_cpu_exit
,
890 .ready
= acpi_cpufreq_cpu_ready
,
891 .resume
= acpi_cpufreq_resume
,
892 .name
= "acpi-cpufreq",
893 .attr
= acpi_cpufreq_attr
,
896 static enum cpuhp_state acpi_cpufreq_online
;
898 static void __init
acpi_cpufreq_boost_init(void)
902 if (!(boot_cpu_has(X86_FEATURE_CPB
) || boot_cpu_has(X86_FEATURE_IDA
))) {
903 pr_debug("Boost capabilities not present in the processor\n");
907 acpi_cpufreq_driver
.set_boost
= set_boost
;
908 acpi_cpufreq_driver
.boost_enabled
= boost_state(0);
911 * This calls the online callback on all online cpu and forces all
912 * MSRs to the same value.
914 ret
= cpuhp_setup_state(CPUHP_AP_ONLINE_DYN
, "cpufreq/acpi:online",
915 cpufreq_boost_online
, cpufreq_boost_down_prep
);
917 pr_err("acpi_cpufreq: failed to register hotplug callbacks\n");
920 acpi_cpufreq_online
= ret
;
923 static void acpi_cpufreq_boost_exit(void)
925 if (acpi_cpufreq_online
> 0)
926 cpuhp_remove_state_nocalls(acpi_cpufreq_online
);
929 static int __init
acpi_cpufreq_init(void)
936 /* don't keep reloading if cpufreq_driver exists */
937 if (cpufreq_get_current_driver())
940 pr_debug("%s\n", __func__
);
942 ret
= acpi_cpufreq_early_init();
946 #ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
947 /* this is a sysfs file with a strange name and an even stranger
948 * semantic - per CPU instantiation, but system global effect.
949 * Lets enable it only on AMD CPUs for compatibility reasons and
950 * only if configured. This is considered legacy code, which
951 * will probably be removed at some point in the future.
953 if (!check_amd_hwpstate_cpu(0)) {
954 struct freq_attr
**attr
;
956 pr_debug("CPB unsupported, do not expose it\n");
958 for (attr
= acpi_cpufreq_attr
; *attr
; attr
++)
965 acpi_cpufreq_boost_init();
967 ret
= cpufreq_register_driver(&acpi_cpufreq_driver
);
969 free_acpi_perf_data();
970 acpi_cpufreq_boost_exit();
975 static void __exit
acpi_cpufreq_exit(void)
977 pr_debug("%s\n", __func__
);
979 acpi_cpufreq_boost_exit();
981 cpufreq_unregister_driver(&acpi_cpufreq_driver
);
983 free_acpi_perf_data();
986 module_param(acpi_pstate_strict
, uint
, 0644);
987 MODULE_PARM_DESC(acpi_pstate_strict
,
988 "value 0 or non-zero. non-zero -> strict ACPI checks are "
989 "performed during frequency changes.");
991 late_initcall(acpi_cpufreq_init
);
992 module_exit(acpi_cpufreq_exit
);
994 static const struct x86_cpu_id acpi_cpufreq_ids
[] = {
995 X86_MATCH_FEATURE(X86_FEATURE_ACPI
, NULL
),
996 X86_MATCH_FEATURE(X86_FEATURE_HW_PSTATE
, NULL
),
999 MODULE_DEVICE_TABLE(x86cpu
, acpi_cpufreq_ids
);
1001 static const struct acpi_device_id processor_device_ids
[] = {
1002 {ACPI_PROCESSOR_OBJECT_HID
, },
1003 {ACPI_PROCESSOR_DEVICE_HID
, },
1006 MODULE_DEVICE_TABLE(acpi
, processor_device_ids
);
1008 MODULE_ALIAS("acpi");