2 * acpi-cpufreq.c - ACPI Processor P-States Driver
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2002 - 2004 Dominik Brodowski <linux@brodo.de>
7 * Copyright (C) 2006 Denis Sadykov <denis.m.sadykov@intel.com>
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
28 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/smp.h>
34 #include <linux/sched.h>
35 #include <linux/cpufreq.h>
36 #include <linux/compiler.h>
37 #include <linux/dmi.h>
38 #include <linux/slab.h>
40 #include <linux/acpi.h>
42 #include <linux/delay.h>
43 #include <linux/uaccess.h>
45 #include <acpi/processor.h>
48 #include <asm/processor.h>
49 #include <asm/cpufeature.h>
51 MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
52 MODULE_DESCRIPTION("ACPI Processor P-States Driver");
53 MODULE_LICENSE("GPL");
56 UNDEFINED_CAPABLE
= 0,
57 SYSTEM_INTEL_MSR_CAPABLE
,
58 SYSTEM_AMD_MSR_CAPABLE
,
62 #define INTEL_MSR_RANGE (0xffff)
63 #define AMD_MSR_RANGE (0x7)
65 #define MSR_K7_HWCR_CPB_DIS (1ULL << 25)
67 struct acpi_cpufreq_data
{
69 unsigned int cpu_feature
;
70 unsigned int acpi_perf_cpu
;
71 cpumask_var_t freqdomain_cpus
;
72 void (*cpu_freq_write
)(struct acpi_pct_register
*reg
, u32 val
);
73 u32 (*cpu_freq_read
)(struct acpi_pct_register
*reg
);
76 /* acpi_perf_data is a pointer to percpu data. */
77 static struct acpi_processor_performance __percpu
*acpi_perf_data
;
79 static inline struct acpi_processor_performance
*to_perf_data(struct acpi_cpufreq_data
*data
)
81 return per_cpu_ptr(acpi_perf_data
, data
->acpi_perf_cpu
);
84 static struct cpufreq_driver acpi_cpufreq_driver
;
86 static unsigned int acpi_pstate_strict
;
87 static struct msr __percpu
*msrs
;
89 static bool boost_state(unsigned int cpu
)
94 switch (boot_cpu_data
.x86_vendor
) {
95 case X86_VENDOR_INTEL
:
96 rdmsr_on_cpu(cpu
, MSR_IA32_MISC_ENABLE
, &lo
, &hi
);
97 msr
= lo
| ((u64
)hi
<< 32);
98 return !(msr
& MSR_IA32_MISC_ENABLE_TURBO_DISABLE
);
100 rdmsr_on_cpu(cpu
, MSR_K7_HWCR
, &lo
, &hi
);
101 msr
= lo
| ((u64
)hi
<< 32);
102 return !(msr
& MSR_K7_HWCR_CPB_DIS
);
107 static void boost_set_msrs(bool enable
, const struct cpumask
*cpumask
)
113 switch (boot_cpu_data
.x86_vendor
) {
114 case X86_VENDOR_INTEL
:
115 msr_addr
= MSR_IA32_MISC_ENABLE
;
116 msr_mask
= MSR_IA32_MISC_ENABLE_TURBO_DISABLE
;
119 msr_addr
= MSR_K7_HWCR
;
120 msr_mask
= MSR_K7_HWCR_CPB_DIS
;
126 rdmsr_on_cpus(cpumask
, msr_addr
, msrs
);
128 for_each_cpu(cpu
, cpumask
) {
129 struct msr
*reg
= per_cpu_ptr(msrs
, cpu
);
136 wrmsr_on_cpus(cpumask
, msr_addr
, msrs
);
139 static int set_boost(int val
)
142 boost_set_msrs(val
, cpu_online_mask
);
144 pr_debug("Core Boosting %sabled.\n", val
? "en" : "dis");
149 static ssize_t
show_freqdomain_cpus(struct cpufreq_policy
*policy
, char *buf
)
151 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
156 return cpufreq_show_cpus(data
->freqdomain_cpus
, buf
);
159 cpufreq_freq_attr_ro(freqdomain_cpus
);
161 #ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
162 static ssize_t
store_cpb(struct cpufreq_policy
*policy
, const char *buf
,
166 unsigned int val
= 0;
168 if (!acpi_cpufreq_driver
.set_boost
)
171 ret
= kstrtouint(buf
, 10, &val
);
180 static ssize_t
show_cpb(struct cpufreq_policy
*policy
, char *buf
)
182 return sprintf(buf
, "%u\n", acpi_cpufreq_driver
.boost_enabled
);
185 cpufreq_freq_attr_rw(cpb
);
188 static int check_est_cpu(unsigned int cpuid
)
190 struct cpuinfo_x86
*cpu
= &cpu_data(cpuid
);
192 return cpu_has(cpu
, X86_FEATURE_EST
);
195 static int check_amd_hwpstate_cpu(unsigned int cpuid
)
197 struct cpuinfo_x86
*cpu
= &cpu_data(cpuid
);
199 return cpu_has(cpu
, X86_FEATURE_HW_PSTATE
);
202 static unsigned extract_io(struct cpufreq_policy
*policy
, u32 value
)
204 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
205 struct acpi_processor_performance
*perf
;
208 perf
= to_perf_data(data
);
210 for (i
= 0; i
< perf
->state_count
; i
++) {
211 if (value
== perf
->states
[i
].status
)
212 return policy
->freq_table
[i
].frequency
;
217 static unsigned extract_msr(struct cpufreq_policy
*policy
, u32 msr
)
219 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
220 struct cpufreq_frequency_table
*pos
;
221 struct acpi_processor_performance
*perf
;
223 if (boot_cpu_data
.x86_vendor
== X86_VENDOR_AMD
)
224 msr
&= AMD_MSR_RANGE
;
226 msr
&= INTEL_MSR_RANGE
;
228 perf
= to_perf_data(data
);
230 cpufreq_for_each_entry(pos
, policy
->freq_table
)
231 if (msr
== perf
->states
[pos
->driver_data
].status
)
232 return pos
->frequency
;
233 return policy
->freq_table
[0].frequency
;
236 static unsigned extract_freq(struct cpufreq_policy
*policy
, u32 val
)
238 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
240 switch (data
->cpu_feature
) {
241 case SYSTEM_INTEL_MSR_CAPABLE
:
242 case SYSTEM_AMD_MSR_CAPABLE
:
243 return extract_msr(policy
, val
);
244 case SYSTEM_IO_CAPABLE
:
245 return extract_io(policy
, val
);
251 static u32
cpu_freq_read_intel(struct acpi_pct_register
*not_used
)
255 rdmsr(MSR_IA32_PERF_CTL
, val
, dummy
);
259 static void cpu_freq_write_intel(struct acpi_pct_register
*not_used
, u32 val
)
263 rdmsr(MSR_IA32_PERF_CTL
, lo
, hi
);
264 lo
= (lo
& ~INTEL_MSR_RANGE
) | (val
& INTEL_MSR_RANGE
);
265 wrmsr(MSR_IA32_PERF_CTL
, lo
, hi
);
268 static u32
cpu_freq_read_amd(struct acpi_pct_register
*not_used
)
272 rdmsr(MSR_AMD_PERF_CTL
, val
, dummy
);
276 static void cpu_freq_write_amd(struct acpi_pct_register
*not_used
, u32 val
)
278 wrmsr(MSR_AMD_PERF_CTL
, val
, 0);
281 static u32
cpu_freq_read_io(struct acpi_pct_register
*reg
)
285 acpi_os_read_port(reg
->address
, &val
, reg
->bit_width
);
289 static void cpu_freq_write_io(struct acpi_pct_register
*reg
, u32 val
)
291 acpi_os_write_port(reg
->address
, val
, reg
->bit_width
);
295 struct acpi_pct_register
*reg
;
298 void (*write
)(struct acpi_pct_register
*reg
, u32 val
);
299 u32 (*read
)(struct acpi_pct_register
*reg
);
303 /* Called via smp_call_function_single(), on the target CPU */
304 static void do_drv_read(void *_cmd
)
306 struct drv_cmd
*cmd
= _cmd
;
308 cmd
->val
= cmd
->func
.read(cmd
->reg
);
311 static u32
drv_read(struct acpi_cpufreq_data
*data
, const struct cpumask
*mask
)
313 struct acpi_processor_performance
*perf
= to_perf_data(data
);
314 struct drv_cmd cmd
= {
315 .reg
= &perf
->control_register
,
316 .func
.read
= data
->cpu_freq_read
,
320 err
= smp_call_function_any(mask
, do_drv_read
, &cmd
, 1);
321 WARN_ON_ONCE(err
); /* smp_call_function_any() was buggy? */
325 /* Called via smp_call_function_many(), on the target CPUs */
326 static void do_drv_write(void *_cmd
)
328 struct drv_cmd
*cmd
= _cmd
;
330 cmd
->func
.write(cmd
->reg
, cmd
->val
);
333 static void drv_write(struct acpi_cpufreq_data
*data
,
334 const struct cpumask
*mask
, u32 val
)
336 struct acpi_processor_performance
*perf
= to_perf_data(data
);
337 struct drv_cmd cmd
= {
338 .reg
= &perf
->control_register
,
340 .func
.write
= data
->cpu_freq_write
,
344 this_cpu
= get_cpu();
345 if (cpumask_test_cpu(this_cpu
, mask
))
348 smp_call_function_many(mask
, do_drv_write
, &cmd
, 1);
352 static u32
get_cur_val(const struct cpumask
*mask
, struct acpi_cpufreq_data
*data
)
356 if (unlikely(cpumask_empty(mask
)))
359 val
= drv_read(data
, mask
);
361 pr_debug("get_cur_val = %u\n", val
);
366 static unsigned int get_cur_freq_on_cpu(unsigned int cpu
)
368 struct acpi_cpufreq_data
*data
;
369 struct cpufreq_policy
*policy
;
371 unsigned int cached_freq
;
373 pr_debug("get_cur_freq_on_cpu (%d)\n", cpu
);
375 policy
= cpufreq_cpu_get_raw(cpu
);
376 if (unlikely(!policy
))
379 data
= policy
->driver_data
;
380 if (unlikely(!data
|| !policy
->freq_table
))
383 cached_freq
= policy
->freq_table
[to_perf_data(data
)->state
].frequency
;
384 freq
= extract_freq(policy
, get_cur_val(cpumask_of(cpu
), data
));
385 if (freq
!= cached_freq
) {
387 * The dreaded BIOS frequency change behind our back.
388 * Force set the frequency on next target call.
393 pr_debug("cur freq = %u\n", freq
);
398 static unsigned int check_freqs(struct cpufreq_policy
*policy
,
399 const struct cpumask
*mask
, unsigned int freq
)
401 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
402 unsigned int cur_freq
;
405 for (i
= 0; i
< 100; i
++) {
406 cur_freq
= extract_freq(policy
, get_cur_val(mask
, data
));
407 if (cur_freq
== freq
)
414 static int acpi_cpufreq_target(struct cpufreq_policy
*policy
,
417 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
418 struct acpi_processor_performance
*perf
;
419 const struct cpumask
*mask
;
420 unsigned int next_perf_state
= 0; /* Index into perf table */
423 if (unlikely(!data
)) {
427 perf
= to_perf_data(data
);
428 next_perf_state
= policy
->freq_table
[index
].driver_data
;
429 if (perf
->state
== next_perf_state
) {
430 if (unlikely(data
->resume
)) {
431 pr_debug("Called after resume, resetting to P%d\n",
435 pr_debug("Already at target state (P%d)\n",
442 * The core won't allow CPUs to go away until the governor has been
443 * stopped, so we can rely on the stability of policy->cpus.
445 mask
= policy
->shared_type
== CPUFREQ_SHARED_TYPE_ANY
?
446 cpumask_of(policy
->cpu
) : policy
->cpus
;
448 drv_write(data
, mask
, perf
->states
[next_perf_state
].control
);
450 if (acpi_pstate_strict
) {
451 if (!check_freqs(policy
, mask
,
452 policy
->freq_table
[index
].frequency
)) {
453 pr_debug("acpi_cpufreq_target failed (%d)\n",
460 perf
->state
= next_perf_state
;
465 unsigned int acpi_cpufreq_fast_switch(struct cpufreq_policy
*policy
,
466 unsigned int target_freq
)
468 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
469 struct acpi_processor_performance
*perf
;
470 struct cpufreq_frequency_table
*entry
;
471 unsigned int next_perf_state
, next_freq
, freq
;
474 * Find the closest frequency above target_freq.
476 * The table is sorted in the reverse order with respect to the
477 * frequency and all of the entries are valid (see the initialization).
479 entry
= policy
->freq_table
;
482 freq
= entry
->frequency
;
483 } while (freq
>= target_freq
&& freq
!= CPUFREQ_TABLE_END
);
485 next_freq
= entry
->frequency
;
486 next_perf_state
= entry
->driver_data
;
488 perf
= to_perf_data(data
);
489 if (perf
->state
== next_perf_state
) {
490 if (unlikely(data
->resume
))
496 data
->cpu_freq_write(&perf
->control_register
,
497 perf
->states
[next_perf_state
].control
);
498 perf
->state
= next_perf_state
;
503 acpi_cpufreq_guess_freq(struct acpi_cpufreq_data
*data
, unsigned int cpu
)
505 struct acpi_processor_performance
*perf
;
507 perf
= to_perf_data(data
);
509 /* search the closest match to cpu_khz */
512 unsigned long freqn
= perf
->states
[0].core_frequency
* 1000;
514 for (i
= 0; i
< (perf
->state_count
-1); i
++) {
516 freqn
= perf
->states
[i
+1].core_frequency
* 1000;
517 if ((2 * cpu_khz
) > (freqn
+ freq
)) {
522 perf
->state
= perf
->state_count
-1;
525 /* assume CPU is at P0... */
527 return perf
->states
[0].core_frequency
* 1000;
531 static void free_acpi_perf_data(void)
535 /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */
536 for_each_possible_cpu(i
)
537 free_cpumask_var(per_cpu_ptr(acpi_perf_data
, i
)
539 free_percpu(acpi_perf_data
);
542 static int boost_notify(struct notifier_block
*nb
, unsigned long action
,
545 unsigned cpu
= (long)hcpu
;
546 const struct cpumask
*cpumask
;
548 cpumask
= get_cpu_mask(cpu
);
551 * Clear the boost-disable bit on the CPU_DOWN path so that
552 * this cpu cannot block the remaining ones from boosting. On
553 * the CPU_UP path we simply keep the boost-disable flag in
554 * sync with the current global state.
558 case CPU_DOWN_FAILED
:
559 case CPU_DOWN_FAILED_FROZEN
:
561 case CPU_ONLINE_FROZEN
:
562 boost_set_msrs(acpi_cpufreq_driver
.boost_enabled
, cpumask
);
565 case CPU_DOWN_PREPARE
:
566 case CPU_DOWN_PREPARE_FROZEN
:
567 boost_set_msrs(1, cpumask
);
578 static struct notifier_block boost_nb
= {
579 .notifier_call
= boost_notify
,
583 * acpi_cpufreq_early_init - initialize ACPI P-States library
585 * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c)
586 * in order to determine correct frequency and voltage pairings. We can
587 * do _PDC and _PSD and find out the processor dependency for the
588 * actual init that will happen later...
590 static int __init
acpi_cpufreq_early_init(void)
593 pr_debug("acpi_cpufreq_early_init\n");
595 acpi_perf_data
= alloc_percpu(struct acpi_processor_performance
);
596 if (!acpi_perf_data
) {
597 pr_debug("Memory allocation error for acpi_perf_data.\n");
600 for_each_possible_cpu(i
) {
601 if (!zalloc_cpumask_var_node(
602 &per_cpu_ptr(acpi_perf_data
, i
)->shared_cpu_map
,
603 GFP_KERNEL
, cpu_to_node(i
))) {
605 /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */
606 free_acpi_perf_data();
611 /* Do initialization in ACPI core */
612 acpi_processor_preregister_performance(acpi_perf_data
);
618 * Some BIOSes do SW_ANY coordination internally, either set it up in hw
619 * or do it in BIOS firmware and won't inform about it to OS. If not
620 * detected, this has a side effect of making CPU run at a different speed
621 * than OS intended it to run at. Detect it and handle it cleanly.
623 static int bios_with_sw_any_bug
;
625 static int sw_any_bug_found(const struct dmi_system_id
*d
)
627 bios_with_sw_any_bug
= 1;
631 static const struct dmi_system_id sw_any_bug_dmi_table
[] = {
633 .callback
= sw_any_bug_found
,
634 .ident
= "Supermicro Server X6DLP",
636 DMI_MATCH(DMI_SYS_VENDOR
, "Supermicro"),
637 DMI_MATCH(DMI_BIOS_VERSION
, "080010"),
638 DMI_MATCH(DMI_PRODUCT_NAME
, "X6DLP"),
644 static int acpi_cpufreq_blacklist(struct cpuinfo_x86
*c
)
646 /* Intel Xeon Processor 7100 Series Specification Update
647 * http://www.intel.com/Assets/PDF/specupdate/314554.pdf
648 * AL30: A Machine Check Exception (MCE) Occurring during an
649 * Enhanced Intel SpeedStep Technology Ratio Change May Cause
650 * Both Processor Cores to Lock Up. */
651 if (c
->x86_vendor
== X86_VENDOR_INTEL
) {
652 if ((c
->x86
== 15) &&
653 (c
->x86_model
== 6) &&
654 (c
->x86_mask
== 8)) {
655 pr_info("Intel(R) Xeon(R) 7100 Errata AL30, processors may lock up on frequency changes: disabling acpi-cpufreq\n");
663 static int acpi_cpufreq_cpu_init(struct cpufreq_policy
*policy
)
666 unsigned int valid_states
= 0;
667 unsigned int cpu
= policy
->cpu
;
668 struct acpi_cpufreq_data
*data
;
669 unsigned int result
= 0;
670 struct cpuinfo_x86
*c
= &cpu_data(policy
->cpu
);
671 struct acpi_processor_performance
*perf
;
672 struct cpufreq_frequency_table
*freq_table
;
674 static int blacklisted
;
677 pr_debug("acpi_cpufreq_cpu_init\n");
682 blacklisted
= acpi_cpufreq_blacklist(c
);
687 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
691 if (!zalloc_cpumask_var(&data
->freqdomain_cpus
, GFP_KERNEL
)) {
696 perf
= per_cpu_ptr(acpi_perf_data
, cpu
);
697 data
->acpi_perf_cpu
= cpu
;
698 policy
->driver_data
= data
;
700 if (cpu_has(c
, X86_FEATURE_CONSTANT_TSC
))
701 acpi_cpufreq_driver
.flags
|= CPUFREQ_CONST_LOOPS
;
703 result
= acpi_processor_register_performance(perf
, cpu
);
707 policy
->shared_type
= perf
->shared_type
;
710 * Will let policy->cpus know about dependency only when software
711 * coordination is required.
713 if (policy
->shared_type
== CPUFREQ_SHARED_TYPE_ALL
||
714 policy
->shared_type
== CPUFREQ_SHARED_TYPE_ANY
) {
715 cpumask_copy(policy
->cpus
, perf
->shared_cpu_map
);
717 cpumask_copy(data
->freqdomain_cpus
, perf
->shared_cpu_map
);
720 dmi_check_system(sw_any_bug_dmi_table
);
721 if (bios_with_sw_any_bug
&& !policy_is_shared(policy
)) {
722 policy
->shared_type
= CPUFREQ_SHARED_TYPE_ALL
;
723 cpumask_copy(policy
->cpus
, topology_core_cpumask(cpu
));
726 if (check_amd_hwpstate_cpu(cpu
) && !acpi_pstate_strict
) {
727 cpumask_clear(policy
->cpus
);
728 cpumask_set_cpu(cpu
, policy
->cpus
);
729 cpumask_copy(data
->freqdomain_cpus
,
730 topology_sibling_cpumask(cpu
));
731 policy
->shared_type
= CPUFREQ_SHARED_TYPE_HW
;
732 pr_info_once("overriding BIOS provided _PSD data\n");
736 /* capability check */
737 if (perf
->state_count
<= 1) {
738 pr_debug("No P-States\n");
743 if (perf
->control_register
.space_id
!= perf
->status_register
.space_id
) {
748 switch (perf
->control_register
.space_id
) {
749 case ACPI_ADR_SPACE_SYSTEM_IO
:
750 if (boot_cpu_data
.x86_vendor
== X86_VENDOR_AMD
&&
751 boot_cpu_data
.x86
== 0xf) {
752 pr_debug("AMD K8 systems must use native drivers.\n");
756 pr_debug("SYSTEM IO addr space\n");
757 data
->cpu_feature
= SYSTEM_IO_CAPABLE
;
758 data
->cpu_freq_read
= cpu_freq_read_io
;
759 data
->cpu_freq_write
= cpu_freq_write_io
;
761 case ACPI_ADR_SPACE_FIXED_HARDWARE
:
762 pr_debug("HARDWARE addr space\n");
763 if (check_est_cpu(cpu
)) {
764 data
->cpu_feature
= SYSTEM_INTEL_MSR_CAPABLE
;
765 data
->cpu_freq_read
= cpu_freq_read_intel
;
766 data
->cpu_freq_write
= cpu_freq_write_intel
;
769 if (check_amd_hwpstate_cpu(cpu
)) {
770 data
->cpu_feature
= SYSTEM_AMD_MSR_CAPABLE
;
771 data
->cpu_freq_read
= cpu_freq_read_amd
;
772 data
->cpu_freq_write
= cpu_freq_write_amd
;
778 pr_debug("Unknown addr space %d\n",
779 (u32
) (perf
->control_register
.space_id
));
784 freq_table
= kzalloc(sizeof(*freq_table
) *
785 (perf
->state_count
+1), GFP_KERNEL
);
791 /* detect transition latency */
792 policy
->cpuinfo
.transition_latency
= 0;
793 for (i
= 0; i
< perf
->state_count
; i
++) {
794 if ((perf
->states
[i
].transition_latency
* 1000) >
795 policy
->cpuinfo
.transition_latency
)
796 policy
->cpuinfo
.transition_latency
=
797 perf
->states
[i
].transition_latency
* 1000;
800 /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */
801 if (perf
->control_register
.space_id
== ACPI_ADR_SPACE_FIXED_HARDWARE
&&
802 policy
->cpuinfo
.transition_latency
> 20 * 1000) {
803 policy
->cpuinfo
.transition_latency
= 20 * 1000;
804 pr_info_once("P-state transition latency capped at 20 uS\n");
808 for (i
= 0; i
< perf
->state_count
; i
++) {
809 if (i
> 0 && perf
->states
[i
].core_frequency
>=
810 freq_table
[valid_states
-1].frequency
/ 1000)
813 freq_table
[valid_states
].driver_data
= i
;
814 freq_table
[valid_states
].frequency
=
815 perf
->states
[i
].core_frequency
* 1000;
818 freq_table
[valid_states
].frequency
= CPUFREQ_TABLE_END
;
821 result
= cpufreq_table_validate_and_show(policy
, freq_table
);
825 if (perf
->states
[0].core_frequency
* 1000 != policy
->cpuinfo
.max_freq
)
826 pr_warn(FW_WARN
"P-state 0 is not max freq\n");
828 switch (perf
->control_register
.space_id
) {
829 case ACPI_ADR_SPACE_SYSTEM_IO
:
831 * The core will not set policy->cur, because
832 * cpufreq_driver->get is NULL, so we need to set it here.
833 * However, we have to guess it, because the current speed is
834 * unknown and not detectable via IO ports.
836 policy
->cur
= acpi_cpufreq_guess_freq(data
, policy
->cpu
);
838 case ACPI_ADR_SPACE_FIXED_HARDWARE
:
839 acpi_cpufreq_driver
.get
= get_cur_freq_on_cpu
;
845 /* notify BIOS that we exist */
846 acpi_processor_notify_smm(THIS_MODULE
);
848 pr_debug("CPU%u - ACPI performance management activated.\n", cpu
);
849 for (i
= 0; i
< perf
->state_count
; i
++)
850 pr_debug(" %cP%d: %d MHz, %d mW, %d uS\n",
851 (i
== perf
->state
? '*' : ' '), i
,
852 (u32
) perf
->states
[i
].core_frequency
,
853 (u32
) perf
->states
[i
].power
,
854 (u32
) perf
->states
[i
].transition_latency
);
857 * the first call to ->target() should result in us actually
858 * writing something to the appropriate registers.
862 policy
->fast_switch_possible
= !acpi_pstate_strict
&&
863 !(policy_is_shared(policy
) && policy
->shared_type
!= CPUFREQ_SHARED_TYPE_ANY
);
870 acpi_processor_unregister_performance(cpu
);
872 free_cpumask_var(data
->freqdomain_cpus
);
875 policy
->driver_data
= NULL
;
880 static int acpi_cpufreq_cpu_exit(struct cpufreq_policy
*policy
)
882 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
884 pr_debug("acpi_cpufreq_cpu_exit\n");
886 policy
->fast_switch_possible
= false;
887 policy
->driver_data
= NULL
;
888 acpi_processor_unregister_performance(data
->acpi_perf_cpu
);
889 free_cpumask_var(data
->freqdomain_cpus
);
890 kfree(policy
->freq_table
);
896 static int acpi_cpufreq_resume(struct cpufreq_policy
*policy
)
898 struct acpi_cpufreq_data
*data
= policy
->driver_data
;
900 pr_debug("acpi_cpufreq_resume\n");
907 static struct freq_attr
*acpi_cpufreq_attr
[] = {
908 &cpufreq_freq_attr_scaling_available_freqs
,
910 #ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
916 static struct cpufreq_driver acpi_cpufreq_driver
= {
917 .verify
= cpufreq_generic_frequency_table_verify
,
918 .target_index
= acpi_cpufreq_target
,
919 .fast_switch
= acpi_cpufreq_fast_switch
,
920 .bios_limit
= acpi_processor_get_bios_limit
,
921 .init
= acpi_cpufreq_cpu_init
,
922 .exit
= acpi_cpufreq_cpu_exit
,
923 .resume
= acpi_cpufreq_resume
,
924 .name
= "acpi-cpufreq",
925 .attr
= acpi_cpufreq_attr
,
928 static void __init
acpi_cpufreq_boost_init(void)
930 if (boot_cpu_has(X86_FEATURE_CPB
) || boot_cpu_has(X86_FEATURE_IDA
)) {
936 acpi_cpufreq_driver
.set_boost
= set_boost
;
937 acpi_cpufreq_driver
.boost_enabled
= boost_state(0);
939 cpu_notifier_register_begin();
941 /* Force all MSRs to the same value */
942 boost_set_msrs(acpi_cpufreq_driver
.boost_enabled
,
945 __register_cpu_notifier(&boost_nb
);
947 cpu_notifier_register_done();
951 static void acpi_cpufreq_boost_exit(void)
954 unregister_cpu_notifier(&boost_nb
);
961 static int __init
acpi_cpufreq_init(void)
968 /* don't keep reloading if cpufreq_driver exists */
969 if (cpufreq_get_current_driver())
972 pr_debug("acpi_cpufreq_init\n");
974 ret
= acpi_cpufreq_early_init();
978 #ifdef CONFIG_X86_ACPI_CPUFREQ_CPB
979 /* this is a sysfs file with a strange name and an even stranger
980 * semantic - per CPU instantiation, but system global effect.
981 * Lets enable it only on AMD CPUs for compatibility reasons and
982 * only if configured. This is considered legacy code, which
983 * will probably be removed at some point in the future.
985 if (!check_amd_hwpstate_cpu(0)) {
986 struct freq_attr
**attr
;
988 pr_debug("CPB unsupported, do not expose it\n");
990 for (attr
= acpi_cpufreq_attr
; *attr
; attr
++)
997 acpi_cpufreq_boost_init();
999 ret
= cpufreq_register_driver(&acpi_cpufreq_driver
);
1001 free_acpi_perf_data();
1002 acpi_cpufreq_boost_exit();
1007 static void __exit
acpi_cpufreq_exit(void)
1009 pr_debug("acpi_cpufreq_exit\n");
1011 acpi_cpufreq_boost_exit();
1013 cpufreq_unregister_driver(&acpi_cpufreq_driver
);
1015 free_acpi_perf_data();
1018 module_param(acpi_pstate_strict
, uint
, 0644);
1019 MODULE_PARM_DESC(acpi_pstate_strict
,
1020 "value 0 or non-zero. non-zero -> strict ACPI checks are "
1021 "performed during frequency changes.");
1023 late_initcall(acpi_cpufreq_init
);
1024 module_exit(acpi_cpufreq_exit
);
1026 static const struct x86_cpu_id acpi_cpufreq_ids
[] = {
1027 X86_FEATURE_MATCH(X86_FEATURE_ACPI
),
1028 X86_FEATURE_MATCH(X86_FEATURE_HW_PSTATE
),
1031 MODULE_DEVICE_TABLE(x86cpu
, acpi_cpufreq_ids
);
1033 static const struct acpi_device_id processor_device_ids
[] = {
1034 {ACPI_PROCESSOR_OBJECT_HID
, },
1035 {ACPI_PROCESSOR_DEVICE_HID
, },
1038 MODULE_DEVICE_TABLE(acpi
, processor_device_ids
);
1040 MODULE_ALIAS("acpi");