1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * amd-pstate.c - AMD Processor P-state Frequency Driver
5 * Copyright (C) 2021 Advanced Micro Devices, Inc. All Rights Reserved.
7 * Author: Huang Rui <ray.huang@amd.com>
9 * AMD P-State introduces a new CPU performance scaling design for AMD
10 * processors using the ACPI Collaborative Performance and Power Control (CPPC)
11 * feature which works with the AMD SMU firmware providing a finer grained
12 * frequency control range. It is to replace the legacy ACPI P-States control,
13 * allows a flexible, low-latency interface for the Linux kernel to directly
14 * communicate the performance hints to hardware.
16 * AMD P-State is supported on recent AMD Zen base CPU series include some of
17 * Zen2 and Zen3 processors. _CPC needs to be present in the ACPI tables of AMD
18 * P-State supported system. And there are two types of hardware implementations
19 * for AMD P-State: 1) Full MSR Solution and 2) Shared Memory Solution.
20 * X86_FEATURE_CPPC CPU feature flag is used to distinguish the different types.
23 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/init.h>
28 #include <linux/smp.h>
29 #include <linux/sched.h>
30 #include <linux/cpufreq.h>
31 #include <linux/compiler.h>
32 #include <linux/dmi.h>
33 #include <linux/slab.h>
34 #include <linux/acpi.h>
36 #include <linux/delay.h>
37 #include <linux/uaccess.h>
38 #include <linux/static_call.h>
39 #include <linux/amd-pstate.h>
41 #include <acpi/processor.h>
42 #include <acpi/cppc_acpi.h>
45 #include <asm/processor.h>
46 #include <asm/cpufeature.h>
47 #include <asm/cpu_device_id.h>
48 #include "amd-pstate-trace.h"
50 #define AMD_PSTATE_TRANSITION_LATENCY 20000
51 #define AMD_PSTATE_TRANSITION_DELAY 1000
54 * TODO: We need more time to fine tune processors with shared memory solution
55 * with community together.
57 * There are some performance drops on the CPU benchmarks which reports from
58 * Suse. We are co-working with them to fine tune the shared memory solution. So
59 * we disable it by default to go acpi-cpufreq on these processors and add a
60 * module parameter to be able to enable it manually for debugging.
62 static struct cpufreq_driver *current_pstate_driver;
63 static struct cpufreq_driver amd_pstate_driver;
64 static struct cpufreq_driver amd_pstate_epp_driver;
65 static int cppc_state = AMD_PSTATE_UNDEFINED;
66 static bool cppc_enabled;
69 * AMD Energy Preference Performance (EPP)
70 * The EPP is used in the CCLK DPM controller to drive
71 * the frequency that a core is going to operate during
72 * short periods of activity. EPP values will be utilized for
73 * different OS profiles (balanced, performance, power savings)
74 * display strings corresponding to EPP index in the
75 * energy_perf_strings[]
77 *-------------------------------------
80 * 2 balance_performance
84 enum energy_perf_value_index {
85 EPP_INDEX_DEFAULT = 0,
86 EPP_INDEX_PERFORMANCE,
87 EPP_INDEX_BALANCE_PERFORMANCE,
88 EPP_INDEX_BALANCE_POWERSAVE,
92 static const char * const energy_perf_strings[] = {
93 [EPP_INDEX_DEFAULT] = "default",
94 [EPP_INDEX_PERFORMANCE] = "performance",
95 [EPP_INDEX_BALANCE_PERFORMANCE] = "balance_performance",
96 [EPP_INDEX_BALANCE_POWERSAVE] = "balance_power",
97 [EPP_INDEX_POWERSAVE] = "power",
101 static unsigned int epp_values[] = {
102 [EPP_INDEX_DEFAULT] = 0,
103 [EPP_INDEX_PERFORMANCE] = AMD_CPPC_EPP_PERFORMANCE,
104 [EPP_INDEX_BALANCE_PERFORMANCE] = AMD_CPPC_EPP_BALANCE_PERFORMANCE,
105 [EPP_INDEX_BALANCE_POWERSAVE] = AMD_CPPC_EPP_BALANCE_POWERSAVE,
106 [EPP_INDEX_POWERSAVE] = AMD_CPPC_EPP_POWERSAVE,
109 typedef int (*cppc_mode_transition_fn)(int);
111 static inline int get_mode_idx_from_str(const char *str, size_t size)
115 for (i=0; i < AMD_PSTATE_MAX; i++) {
116 if (!strncmp(str, amd_pstate_mode_string[i], size))
122 static DEFINE_MUTEX(amd_pstate_limits_lock);
123 static DEFINE_MUTEX(amd_pstate_driver_lock);
125 static s16 amd_pstate_get_epp(struct amd_cpudata *cpudata, u64 cppc_req_cached)
130 if (boot_cpu_has(X86_FEATURE_CPPC)) {
131 if (!cppc_req_cached) {
132 epp = rdmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_REQ,
137 epp = (cppc_req_cached >> 24) & 0xFF;
139 ret = cppc_get_epp_perf(cpudata->cpu, &epp);
141 pr_debug("Could not retrieve energy perf value (%d)\n", ret);
146 return (s16)(epp & 0xff);
149 static int amd_pstate_get_energy_pref_index(struct amd_cpudata *cpudata)
154 epp = amd_pstate_get_epp(cpudata, 0);
159 case AMD_CPPC_EPP_PERFORMANCE:
160 index = EPP_INDEX_PERFORMANCE;
162 case AMD_CPPC_EPP_BALANCE_PERFORMANCE:
163 index = EPP_INDEX_BALANCE_PERFORMANCE;
165 case AMD_CPPC_EPP_BALANCE_POWERSAVE:
166 index = EPP_INDEX_BALANCE_POWERSAVE;
168 case AMD_CPPC_EPP_POWERSAVE:
169 index = EPP_INDEX_POWERSAVE;
178 static int amd_pstate_set_epp(struct amd_cpudata *cpudata, u32 epp)
181 struct cppc_perf_ctrls perf_ctrls;
183 if (boot_cpu_has(X86_FEATURE_CPPC)) {
184 u64 value = READ_ONCE(cpudata->cppc_req_cached);
186 value &= ~GENMASK_ULL(31, 24);
187 value |= (u64)epp << 24;
188 WRITE_ONCE(cpudata->cppc_req_cached, value);
190 ret = wrmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_REQ, value);
192 cpudata->epp_cached = epp;
194 perf_ctrls.energy_perf = epp;
195 ret = cppc_set_epp_perf(cpudata->cpu, &perf_ctrls, 1);
197 pr_debug("failed to set energy perf value (%d)\n", ret);
200 cpudata->epp_cached = epp;
206 static int amd_pstate_set_energy_pref_index(struct amd_cpudata *cpudata,
213 pr_debug("EPP pref_index is invalid\n");
218 epp = epp_values[pref_index];
220 if (epp > 0 && cpudata->policy == CPUFREQ_POLICY_PERFORMANCE) {
221 pr_debug("EPP cannot be set under performance policy\n");
225 ret = amd_pstate_set_epp(cpudata, epp);
230 static inline int pstate_enable(bool enable)
233 unsigned long logical_proc_id_mask = 0;
235 if (enable == cppc_enabled)
238 for_each_present_cpu(cpu) {
239 unsigned long logical_id = topology_logical_die_id(cpu);
241 if (test_bit(logical_id, &logical_proc_id_mask))
244 set_bit(logical_id, &logical_proc_id_mask);
246 ret = wrmsrl_safe_on_cpu(cpu, MSR_AMD_CPPC_ENABLE,
252 cppc_enabled = enable;
256 static int cppc_enable(bool enable)
259 struct cppc_perf_ctrls perf_ctrls;
261 if (enable == cppc_enabled)
264 for_each_present_cpu(cpu) {
265 ret = cppc_set_enable(cpu, enable);
269 /* Enable autonomous mode for EPP */
270 if (cppc_state == AMD_PSTATE_ACTIVE) {
271 /* Set desired perf as zero to allow EPP firmware control */
272 perf_ctrls.desired_perf = 0;
273 ret = cppc_set_perf(cpu, &perf_ctrls);
279 cppc_enabled = enable;
283 DEFINE_STATIC_CALL(amd_pstate_enable, pstate_enable);
285 static inline int amd_pstate_enable(bool enable)
287 return static_call(amd_pstate_enable)(enable);
290 static int pstate_init_perf(struct amd_cpudata *cpudata)
295 int ret = rdmsrl_safe_on_cpu(cpudata->cpu, MSR_AMD_CPPC_CAP1,
301 * TODO: Introduce AMD specific power feature.
303 * CPPC entry doesn't indicate the highest performance in some ASICs.
305 highest_perf = amd_get_highest_perf();
306 if (highest_perf > AMD_CPPC_HIGHEST_PERF(cap1))
307 highest_perf = AMD_CPPC_HIGHEST_PERF(cap1);
309 WRITE_ONCE(cpudata->highest_perf, highest_perf);
310 WRITE_ONCE(cpudata->max_limit_perf, highest_perf);
311 WRITE_ONCE(cpudata->nominal_perf, AMD_CPPC_NOMINAL_PERF(cap1));
312 WRITE_ONCE(cpudata->lowest_nonlinear_perf, AMD_CPPC_LOWNONLIN_PERF(cap1));
313 WRITE_ONCE(cpudata->lowest_perf, AMD_CPPC_LOWEST_PERF(cap1));
314 WRITE_ONCE(cpudata->min_limit_perf, AMD_CPPC_LOWEST_PERF(cap1));
318 static int cppc_init_perf(struct amd_cpudata *cpudata)
320 struct cppc_perf_caps cppc_perf;
323 int ret = cppc_get_perf_caps(cpudata->cpu, &cppc_perf);
327 highest_perf = amd_get_highest_perf();
328 if (highest_perf > cppc_perf.highest_perf)
329 highest_perf = cppc_perf.highest_perf;
331 WRITE_ONCE(cpudata->highest_perf, highest_perf);
332 WRITE_ONCE(cpudata->max_limit_perf, highest_perf);
333 WRITE_ONCE(cpudata->nominal_perf, cppc_perf.nominal_perf);
334 WRITE_ONCE(cpudata->lowest_nonlinear_perf,
335 cppc_perf.lowest_nonlinear_perf);
336 WRITE_ONCE(cpudata->lowest_perf, cppc_perf.lowest_perf);
337 WRITE_ONCE(cpudata->min_limit_perf, cppc_perf.lowest_perf);
339 if (cppc_state == AMD_PSTATE_ACTIVE)
342 ret = cppc_get_auto_sel_caps(cpudata->cpu, &cppc_perf);
344 pr_warn("failed to get auto_sel, ret: %d\n", ret);
348 ret = cppc_set_auto_sel(cpudata->cpu,
349 (cppc_state == AMD_PSTATE_PASSIVE) ? 0 : 1);
352 pr_warn("failed to set auto_sel, ret: %d\n", ret);
357 DEFINE_STATIC_CALL(amd_pstate_init_perf, pstate_init_perf);
359 static inline int amd_pstate_init_perf(struct amd_cpudata *cpudata)
361 return static_call(amd_pstate_init_perf)(cpudata);
364 static void pstate_update_perf(struct amd_cpudata *cpudata, u32 min_perf,
365 u32 des_perf, u32 max_perf, bool fast_switch)
368 wrmsrl(MSR_AMD_CPPC_REQ, READ_ONCE(cpudata->cppc_req_cached));
370 wrmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_REQ,
371 READ_ONCE(cpudata->cppc_req_cached));
374 static void cppc_update_perf(struct amd_cpudata *cpudata,
375 u32 min_perf, u32 des_perf,
376 u32 max_perf, bool fast_switch)
378 struct cppc_perf_ctrls perf_ctrls;
380 perf_ctrls.max_perf = max_perf;
381 perf_ctrls.min_perf = min_perf;
382 perf_ctrls.desired_perf = des_perf;
384 cppc_set_perf(cpudata->cpu, &perf_ctrls);
387 DEFINE_STATIC_CALL(amd_pstate_update_perf, pstate_update_perf);
389 static inline void amd_pstate_update_perf(struct amd_cpudata *cpudata,
390 u32 min_perf, u32 des_perf,
391 u32 max_perf, bool fast_switch)
393 static_call(amd_pstate_update_perf)(cpudata, min_perf, des_perf,
394 max_perf, fast_switch);
397 static inline bool amd_pstate_sample(struct amd_cpudata *cpudata)
399 u64 aperf, mperf, tsc;
402 local_irq_save(flags);
403 rdmsrl(MSR_IA32_APERF, aperf);
404 rdmsrl(MSR_IA32_MPERF, mperf);
407 if (cpudata->prev.mperf == mperf || cpudata->prev.tsc == tsc) {
408 local_irq_restore(flags);
412 local_irq_restore(flags);
414 cpudata->cur.aperf = aperf;
415 cpudata->cur.mperf = mperf;
416 cpudata->cur.tsc = tsc;
417 cpudata->cur.aperf -= cpudata->prev.aperf;
418 cpudata->cur.mperf -= cpudata->prev.mperf;
419 cpudata->cur.tsc -= cpudata->prev.tsc;
421 cpudata->prev.aperf = aperf;
422 cpudata->prev.mperf = mperf;
423 cpudata->prev.tsc = tsc;
425 cpudata->freq = div64_u64((cpudata->cur.aperf * cpu_khz), cpudata->cur.mperf);
430 static void amd_pstate_update(struct amd_cpudata *cpudata, u32 min_perf,
431 u32 des_perf, u32 max_perf, bool fast_switch, int gov_flags)
433 u64 prev = READ_ONCE(cpudata->cppc_req_cached);
436 min_perf = clamp_t(unsigned long, min_perf, cpudata->min_limit_perf,
437 cpudata->max_limit_perf);
438 max_perf = clamp_t(unsigned long, max_perf, cpudata->min_limit_perf,
439 cpudata->max_limit_perf);
440 des_perf = clamp_t(unsigned long, des_perf, min_perf, max_perf);
442 if ((cppc_state == AMD_PSTATE_GUIDED) && (gov_flags & CPUFREQ_GOV_DYNAMIC_SWITCHING)) {
447 value &= ~AMD_CPPC_MIN_PERF(~0L);
448 value |= AMD_CPPC_MIN_PERF(min_perf);
450 value &= ~AMD_CPPC_DES_PERF(~0L);
451 value |= AMD_CPPC_DES_PERF(des_perf);
453 value &= ~AMD_CPPC_MAX_PERF(~0L);
454 value |= AMD_CPPC_MAX_PERF(max_perf);
456 if (trace_amd_pstate_perf_enabled() && amd_pstate_sample(cpudata)) {
457 trace_amd_pstate_perf(min_perf, des_perf, max_perf, cpudata->freq,
458 cpudata->cur.mperf, cpudata->cur.aperf, cpudata->cur.tsc,
459 cpudata->cpu, (value != prev), fast_switch);
465 WRITE_ONCE(cpudata->cppc_req_cached, value);
467 amd_pstate_update_perf(cpudata, min_perf, des_perf,
468 max_perf, fast_switch);
471 static int amd_pstate_verify(struct cpufreq_policy_data *policy)
473 cpufreq_verify_within_cpu_limits(policy);
478 static int amd_pstate_update_min_max_limit(struct cpufreq_policy *policy)
480 u32 max_limit_perf, min_limit_perf;
481 struct amd_cpudata *cpudata = policy->driver_data;
483 max_limit_perf = div_u64(policy->max * cpudata->highest_perf, cpudata->max_freq);
484 min_limit_perf = div_u64(policy->min * cpudata->highest_perf, cpudata->max_freq);
486 WRITE_ONCE(cpudata->max_limit_perf, max_limit_perf);
487 WRITE_ONCE(cpudata->min_limit_perf, min_limit_perf);
488 WRITE_ONCE(cpudata->max_limit_freq, policy->max);
489 WRITE_ONCE(cpudata->min_limit_freq, policy->min);
494 static int amd_pstate_update_freq(struct cpufreq_policy *policy,
495 unsigned int target_freq, bool fast_switch)
497 struct cpufreq_freqs freqs;
498 struct amd_cpudata *cpudata = policy->driver_data;
499 unsigned long max_perf, min_perf, des_perf, cap_perf;
501 if (!cpudata->max_freq)
504 if (policy->min != cpudata->min_limit_freq || policy->max != cpudata->max_limit_freq)
505 amd_pstate_update_min_max_limit(policy);
507 cap_perf = READ_ONCE(cpudata->highest_perf);
508 min_perf = READ_ONCE(cpudata->lowest_perf);
511 freqs.old = policy->cur;
512 freqs.new = target_freq;
514 des_perf = DIV_ROUND_CLOSEST(target_freq * cap_perf,
517 WARN_ON(fast_switch && !policy->fast_switch_enabled);
519 * If fast_switch is desired, then there aren't any registered
520 * transition notifiers. See comment for
521 * cpufreq_enable_fast_switch().
524 cpufreq_freq_transition_begin(policy, &freqs);
526 amd_pstate_update(cpudata, min_perf, des_perf,
527 max_perf, fast_switch, policy->governor->flags);
530 cpufreq_freq_transition_end(policy, &freqs, false);
535 static int amd_pstate_target(struct cpufreq_policy *policy,
536 unsigned int target_freq,
537 unsigned int relation)
539 return amd_pstate_update_freq(policy, target_freq, false);
542 static unsigned int amd_pstate_fast_switch(struct cpufreq_policy *policy,
543 unsigned int target_freq)
545 if (!amd_pstate_update_freq(policy, target_freq, true))
550 static void amd_pstate_adjust_perf(unsigned int cpu,
551 unsigned long _min_perf,
552 unsigned long target_perf,
553 unsigned long capacity)
555 unsigned long max_perf, min_perf, des_perf,
556 cap_perf, lowest_nonlinear_perf, max_freq;
557 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
558 struct amd_cpudata *cpudata = policy->driver_data;
559 unsigned int target_freq;
561 if (policy->min != cpudata->min_limit_freq || policy->max != cpudata->max_limit_freq)
562 amd_pstate_update_min_max_limit(policy);
565 cap_perf = READ_ONCE(cpudata->highest_perf);
566 lowest_nonlinear_perf = READ_ONCE(cpudata->lowest_nonlinear_perf);
567 max_freq = READ_ONCE(cpudata->max_freq);
570 if (target_perf < capacity)
571 des_perf = DIV_ROUND_UP(cap_perf * target_perf, capacity);
573 min_perf = READ_ONCE(cpudata->highest_perf);
574 if (_min_perf < capacity)
575 min_perf = DIV_ROUND_UP(cap_perf * _min_perf, capacity);
577 if (min_perf < lowest_nonlinear_perf)
578 min_perf = lowest_nonlinear_perf;
581 if (max_perf < min_perf)
584 des_perf = clamp_t(unsigned long, des_perf, min_perf, max_perf);
585 target_freq = div_u64(des_perf * max_freq, max_perf);
586 policy->cur = target_freq;
588 amd_pstate_update(cpudata, min_perf, des_perf, max_perf, true,
589 policy->governor->flags);
590 cpufreq_cpu_put(policy);
593 static int amd_get_min_freq(struct amd_cpudata *cpudata)
595 struct cppc_perf_caps cppc_perf;
597 int ret = cppc_get_perf_caps(cpudata->cpu, &cppc_perf);
602 return cppc_perf.lowest_freq * 1000;
605 static int amd_get_max_freq(struct amd_cpudata *cpudata)
607 struct cppc_perf_caps cppc_perf;
608 u32 max_perf, max_freq, nominal_freq, nominal_perf;
611 int ret = cppc_get_perf_caps(cpudata->cpu, &cppc_perf);
615 nominal_freq = cppc_perf.nominal_freq;
616 nominal_perf = READ_ONCE(cpudata->nominal_perf);
617 max_perf = READ_ONCE(cpudata->highest_perf);
619 boost_ratio = div_u64(max_perf << SCHED_CAPACITY_SHIFT,
622 max_freq = nominal_freq * boost_ratio >> SCHED_CAPACITY_SHIFT;
625 return max_freq * 1000;
628 static int amd_get_nominal_freq(struct amd_cpudata *cpudata)
630 struct cppc_perf_caps cppc_perf;
632 int ret = cppc_get_perf_caps(cpudata->cpu, &cppc_perf);
637 return cppc_perf.nominal_freq * 1000;
640 static int amd_get_lowest_nonlinear_freq(struct amd_cpudata *cpudata)
642 struct cppc_perf_caps cppc_perf;
643 u32 lowest_nonlinear_freq, lowest_nonlinear_perf,
644 nominal_freq, nominal_perf;
645 u64 lowest_nonlinear_ratio;
647 int ret = cppc_get_perf_caps(cpudata->cpu, &cppc_perf);
651 nominal_freq = cppc_perf.nominal_freq;
652 nominal_perf = READ_ONCE(cpudata->nominal_perf);
654 lowest_nonlinear_perf = cppc_perf.lowest_nonlinear_perf;
656 lowest_nonlinear_ratio = div_u64(lowest_nonlinear_perf << SCHED_CAPACITY_SHIFT,
659 lowest_nonlinear_freq = nominal_freq * lowest_nonlinear_ratio >> SCHED_CAPACITY_SHIFT;
662 return lowest_nonlinear_freq * 1000;
665 static int amd_pstate_set_boost(struct cpufreq_policy *policy, int state)
667 struct amd_cpudata *cpudata = policy->driver_data;
670 if (!cpudata->boost_supported) {
671 pr_err("Boost mode is not supported by this processor or SBIOS\n");
676 policy->cpuinfo.max_freq = cpudata->max_freq;
678 policy->cpuinfo.max_freq = cpudata->nominal_freq;
680 policy->max = policy->cpuinfo.max_freq;
682 ret = freq_qos_update_request(&cpudata->req[1],
683 policy->cpuinfo.max_freq);
690 static void amd_pstate_boost_init(struct amd_cpudata *cpudata)
692 u32 highest_perf, nominal_perf;
694 highest_perf = READ_ONCE(cpudata->highest_perf);
695 nominal_perf = READ_ONCE(cpudata->nominal_perf);
697 if (highest_perf <= nominal_perf)
700 cpudata->boost_supported = true;
701 current_pstate_driver->boost_enabled = true;
704 static void amd_perf_ctl_reset(unsigned int cpu)
706 wrmsrl_on_cpu(cpu, MSR_AMD_PERF_CTL, 0);
709 static int amd_pstate_cpu_init(struct cpufreq_policy *policy)
711 int min_freq, max_freq, nominal_freq, lowest_nonlinear_freq, ret;
713 struct amd_cpudata *cpudata;
716 * Resetting PERF_CTL_MSR will put the CPU in P0 frequency,
717 * which is ideal for initialization process.
719 amd_perf_ctl_reset(policy->cpu);
720 dev = get_cpu_device(policy->cpu);
724 cpudata = kzalloc(sizeof(*cpudata), GFP_KERNEL);
728 cpudata->cpu = policy->cpu;
730 ret = amd_pstate_init_perf(cpudata);
734 min_freq = amd_get_min_freq(cpudata);
735 max_freq = amd_get_max_freq(cpudata);
736 nominal_freq = amd_get_nominal_freq(cpudata);
737 lowest_nonlinear_freq = amd_get_lowest_nonlinear_freq(cpudata);
739 if (min_freq < 0 || max_freq < 0 || min_freq > max_freq) {
740 dev_err(dev, "min_freq(%d) or max_freq(%d) value is incorrect\n",
746 policy->cpuinfo.transition_latency = AMD_PSTATE_TRANSITION_LATENCY;
747 policy->transition_delay_us = AMD_PSTATE_TRANSITION_DELAY;
749 policy->min = min_freq;
750 policy->max = max_freq;
752 policy->cpuinfo.min_freq = min_freq;
753 policy->cpuinfo.max_freq = max_freq;
755 /* It will be updated by governor */
756 policy->cur = policy->cpuinfo.min_freq;
758 if (boot_cpu_has(X86_FEATURE_CPPC))
759 policy->fast_switch_possible = true;
761 ret = freq_qos_add_request(&policy->constraints, &cpudata->req[0],
762 FREQ_QOS_MIN, policy->cpuinfo.min_freq);
764 dev_err(dev, "Failed to add min-freq constraint (%d)\n", ret);
768 ret = freq_qos_add_request(&policy->constraints, &cpudata->req[1],
769 FREQ_QOS_MAX, policy->cpuinfo.max_freq);
771 dev_err(dev, "Failed to add max-freq constraint (%d)\n", ret);
775 /* Initial processor data capability frequencies */
776 cpudata->max_freq = max_freq;
777 cpudata->min_freq = min_freq;
778 cpudata->max_limit_freq = max_freq;
779 cpudata->min_limit_freq = min_freq;
780 cpudata->nominal_freq = nominal_freq;
781 cpudata->lowest_nonlinear_freq = lowest_nonlinear_freq;
783 policy->driver_data = cpudata;
785 amd_pstate_boost_init(cpudata);
786 if (!current_pstate_driver->adjust_perf)
787 current_pstate_driver->adjust_perf = amd_pstate_adjust_perf;
792 freq_qos_remove_request(&cpudata->req[0]);
798 static int amd_pstate_cpu_exit(struct cpufreq_policy *policy)
800 struct amd_cpudata *cpudata = policy->driver_data;
802 freq_qos_remove_request(&cpudata->req[1]);
803 freq_qos_remove_request(&cpudata->req[0]);
804 policy->fast_switch_possible = false;
810 static int amd_pstate_cpu_resume(struct cpufreq_policy *policy)
814 ret = amd_pstate_enable(true);
816 pr_err("failed to enable amd-pstate during resume, return %d\n", ret);
821 static int amd_pstate_cpu_suspend(struct cpufreq_policy *policy)
825 ret = amd_pstate_enable(false);
827 pr_err("failed to disable amd-pstate during suspend, return %d\n", ret);
832 /* Sysfs attributes */
835 * This frequency is to indicate the maximum hardware frequency.
836 * If boost is not active but supported, the frequency will be larger than the
839 static ssize_t show_amd_pstate_max_freq(struct cpufreq_policy *policy,
843 struct amd_cpudata *cpudata = policy->driver_data;
845 max_freq = amd_get_max_freq(cpudata);
849 return sysfs_emit(buf, "%u\n", max_freq);
852 static ssize_t show_amd_pstate_lowest_nonlinear_freq(struct cpufreq_policy *policy,
856 struct amd_cpudata *cpudata = policy->driver_data;
858 freq = amd_get_lowest_nonlinear_freq(cpudata);
862 return sysfs_emit(buf, "%u\n", freq);
866 * In some of ASICs, the highest_perf is not the one in the _CPC table, so we
867 * need to expose it to sysfs.
869 static ssize_t show_amd_pstate_highest_perf(struct cpufreq_policy *policy,
873 struct amd_cpudata *cpudata = policy->driver_data;
875 perf = READ_ONCE(cpudata->highest_perf);
877 return sysfs_emit(buf, "%u\n", perf);
880 static ssize_t show_energy_performance_available_preferences(
881 struct cpufreq_policy *policy, char *buf)
885 struct amd_cpudata *cpudata = policy->driver_data;
887 if (cpudata->policy == CPUFREQ_POLICY_PERFORMANCE)
888 return sysfs_emit_at(buf, offset, "%s\n",
889 energy_perf_strings[EPP_INDEX_PERFORMANCE]);
891 while (energy_perf_strings[i] != NULL)
892 offset += sysfs_emit_at(buf, offset, "%s ", energy_perf_strings[i++]);
894 offset += sysfs_emit_at(buf, offset, "\n");
899 static ssize_t store_energy_performance_preference(
900 struct cpufreq_policy *policy, const char *buf, size_t count)
902 struct amd_cpudata *cpudata = policy->driver_data;
903 char str_preference[21];
906 ret = sscanf(buf, "%20s", str_preference);
910 ret = match_string(energy_perf_strings, -1, str_preference);
914 mutex_lock(&amd_pstate_limits_lock);
915 ret = amd_pstate_set_energy_pref_index(cpudata, ret);
916 mutex_unlock(&amd_pstate_limits_lock);
921 static ssize_t show_energy_performance_preference(
922 struct cpufreq_policy *policy, char *buf)
924 struct amd_cpudata *cpudata = policy->driver_data;
927 preference = amd_pstate_get_energy_pref_index(cpudata);
931 return sysfs_emit(buf, "%s\n", energy_perf_strings[preference]);
934 static void amd_pstate_driver_cleanup(void)
936 amd_pstate_enable(false);
937 cppc_state = AMD_PSTATE_DISABLE;
938 current_pstate_driver = NULL;
941 static int amd_pstate_register_driver(int mode)
945 if (mode == AMD_PSTATE_PASSIVE || mode == AMD_PSTATE_GUIDED)
946 current_pstate_driver = &amd_pstate_driver;
947 else if (mode == AMD_PSTATE_ACTIVE)
948 current_pstate_driver = &amd_pstate_epp_driver;
953 ret = cpufreq_register_driver(current_pstate_driver);
955 amd_pstate_driver_cleanup();
961 static int amd_pstate_unregister_driver(int dummy)
963 cpufreq_unregister_driver(current_pstate_driver);
964 amd_pstate_driver_cleanup();
968 static int amd_pstate_change_mode_without_dvr_change(int mode)
974 if (boot_cpu_has(X86_FEATURE_CPPC) || cppc_state == AMD_PSTATE_ACTIVE)
977 for_each_present_cpu(cpu) {
978 cppc_set_auto_sel(cpu, (cppc_state == AMD_PSTATE_PASSIVE) ? 0 : 1);
984 static int amd_pstate_change_driver_mode(int mode)
988 ret = amd_pstate_unregister_driver(0);
992 ret = amd_pstate_register_driver(mode);
999 static cppc_mode_transition_fn mode_state_machine[AMD_PSTATE_MAX][AMD_PSTATE_MAX] = {
1000 [AMD_PSTATE_DISABLE] = {
1001 [AMD_PSTATE_DISABLE] = NULL,
1002 [AMD_PSTATE_PASSIVE] = amd_pstate_register_driver,
1003 [AMD_PSTATE_ACTIVE] = amd_pstate_register_driver,
1004 [AMD_PSTATE_GUIDED] = amd_pstate_register_driver,
1006 [AMD_PSTATE_PASSIVE] = {
1007 [AMD_PSTATE_DISABLE] = amd_pstate_unregister_driver,
1008 [AMD_PSTATE_PASSIVE] = NULL,
1009 [AMD_PSTATE_ACTIVE] = amd_pstate_change_driver_mode,
1010 [AMD_PSTATE_GUIDED] = amd_pstate_change_mode_without_dvr_change,
1012 [AMD_PSTATE_ACTIVE] = {
1013 [AMD_PSTATE_DISABLE] = amd_pstate_unregister_driver,
1014 [AMD_PSTATE_PASSIVE] = amd_pstate_change_driver_mode,
1015 [AMD_PSTATE_ACTIVE] = NULL,
1016 [AMD_PSTATE_GUIDED] = amd_pstate_change_driver_mode,
1018 [AMD_PSTATE_GUIDED] = {
1019 [AMD_PSTATE_DISABLE] = amd_pstate_unregister_driver,
1020 [AMD_PSTATE_PASSIVE] = amd_pstate_change_mode_without_dvr_change,
1021 [AMD_PSTATE_ACTIVE] = amd_pstate_change_driver_mode,
1022 [AMD_PSTATE_GUIDED] = NULL,
1026 static ssize_t amd_pstate_show_status(char *buf)
1028 if (!current_pstate_driver)
1029 return sysfs_emit(buf, "disable\n");
1031 return sysfs_emit(buf, "%s\n", amd_pstate_mode_string[cppc_state]);
1034 static int amd_pstate_update_status(const char *buf, size_t size)
1038 if (size > strlen("passive") || size < strlen("active"))
1041 mode_idx = get_mode_idx_from_str(buf, size);
1043 if (mode_idx < 0 || mode_idx >= AMD_PSTATE_MAX)
1046 if (mode_state_machine[cppc_state][mode_idx])
1047 return mode_state_machine[cppc_state][mode_idx](mode_idx);
1052 static ssize_t status_show(struct device *dev,
1053 struct device_attribute *attr, char *buf)
1057 mutex_lock(&amd_pstate_driver_lock);
1058 ret = amd_pstate_show_status(buf);
1059 mutex_unlock(&amd_pstate_driver_lock);
1064 static ssize_t status_store(struct device *a, struct device_attribute *b,
1065 const char *buf, size_t count)
1067 char *p = memchr(buf, '\n', count);
1070 mutex_lock(&amd_pstate_driver_lock);
1071 ret = amd_pstate_update_status(buf, p ? p - buf : count);
1072 mutex_unlock(&amd_pstate_driver_lock);
1074 return ret < 0 ? ret : count;
1077 cpufreq_freq_attr_ro(amd_pstate_max_freq);
1078 cpufreq_freq_attr_ro(amd_pstate_lowest_nonlinear_freq);
1080 cpufreq_freq_attr_ro(amd_pstate_highest_perf);
1081 cpufreq_freq_attr_rw(energy_performance_preference);
1082 cpufreq_freq_attr_ro(energy_performance_available_preferences);
1083 static DEVICE_ATTR_RW(status);
1085 static struct freq_attr *amd_pstate_attr[] = {
1086 &amd_pstate_max_freq,
1087 &amd_pstate_lowest_nonlinear_freq,
1088 &amd_pstate_highest_perf,
1092 static struct freq_attr *amd_pstate_epp_attr[] = {
1093 &amd_pstate_max_freq,
1094 &amd_pstate_lowest_nonlinear_freq,
1095 &amd_pstate_highest_perf,
1096 &energy_performance_preference,
1097 &energy_performance_available_preferences,
1101 static struct attribute *pstate_global_attributes[] = {
1102 &dev_attr_status.attr,
1106 static const struct attribute_group amd_pstate_global_attr_group = {
1107 .name = "amd_pstate",
1108 .attrs = pstate_global_attributes,
1111 static bool amd_pstate_acpi_pm_profile_server(void)
1113 switch (acpi_gbl_FADT.preferred_profile) {
1114 case PM_ENTERPRISE_SERVER:
1115 case PM_SOHO_SERVER:
1116 case PM_PERFORMANCE_SERVER:
1122 static bool amd_pstate_acpi_pm_profile_undefined(void)
1124 if (acpi_gbl_FADT.preferred_profile == PM_UNSPECIFIED)
1126 if (acpi_gbl_FADT.preferred_profile >= NR_PM_PROFILES)
1131 static int amd_pstate_epp_cpu_init(struct cpufreq_policy *policy)
1133 int min_freq, max_freq, nominal_freq, lowest_nonlinear_freq, ret;
1134 struct amd_cpudata *cpudata;
1139 * Resetting PERF_CTL_MSR will put the CPU in P0 frequency,
1140 * which is ideal for initialization process.
1142 amd_perf_ctl_reset(policy->cpu);
1143 dev = get_cpu_device(policy->cpu);
1147 cpudata = kzalloc(sizeof(*cpudata), GFP_KERNEL);
1151 cpudata->cpu = policy->cpu;
1152 cpudata->epp_policy = 0;
1154 ret = amd_pstate_init_perf(cpudata);
1158 min_freq = amd_get_min_freq(cpudata);
1159 max_freq = amd_get_max_freq(cpudata);
1160 nominal_freq = amd_get_nominal_freq(cpudata);
1161 lowest_nonlinear_freq = amd_get_lowest_nonlinear_freq(cpudata);
1162 if (min_freq < 0 || max_freq < 0 || min_freq > max_freq) {
1163 dev_err(dev, "min_freq(%d) or max_freq(%d) value is incorrect\n",
1164 min_freq, max_freq);
1169 policy->cpuinfo.min_freq = min_freq;
1170 policy->cpuinfo.max_freq = max_freq;
1171 /* It will be updated by governor */
1172 policy->cur = policy->cpuinfo.min_freq;
1174 /* Initial processor data capability frequencies */
1175 cpudata->max_freq = max_freq;
1176 cpudata->min_freq = min_freq;
1177 cpudata->nominal_freq = nominal_freq;
1178 cpudata->lowest_nonlinear_freq = lowest_nonlinear_freq;
1180 policy->driver_data = cpudata;
1182 cpudata->epp_cached = amd_pstate_get_epp(cpudata, 0);
1184 policy->min = policy->cpuinfo.min_freq;
1185 policy->max = policy->cpuinfo.max_freq;
1188 * Set the policy to provide a valid fallback value in case
1189 * the default cpufreq governor is neither powersave nor performance.
1191 if (amd_pstate_acpi_pm_profile_server() ||
1192 amd_pstate_acpi_pm_profile_undefined())
1193 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
1195 policy->policy = CPUFREQ_POLICY_POWERSAVE;
1197 if (boot_cpu_has(X86_FEATURE_CPPC)) {
1198 ret = rdmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_REQ, &value);
1201 WRITE_ONCE(cpudata->cppc_req_cached, value);
1203 ret = rdmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_CAP1, &value);
1206 WRITE_ONCE(cpudata->cppc_cap1_cached, value);
1208 amd_pstate_boost_init(cpudata);
1217 static int amd_pstate_epp_cpu_exit(struct cpufreq_policy *policy)
1219 pr_debug("CPU %d exiting\n", policy->cpu);
1223 static void amd_pstate_epp_update_limit(struct cpufreq_policy *policy)
1225 struct amd_cpudata *cpudata = policy->driver_data;
1226 u32 max_perf, min_perf, min_limit_perf, max_limit_perf;
1230 max_perf = READ_ONCE(cpudata->highest_perf);
1231 min_perf = READ_ONCE(cpudata->lowest_perf);
1232 max_limit_perf = div_u64(policy->max * cpudata->highest_perf, cpudata->max_freq);
1233 min_limit_perf = div_u64(policy->min * cpudata->highest_perf, cpudata->max_freq);
1235 WRITE_ONCE(cpudata->max_limit_perf, max_limit_perf);
1236 WRITE_ONCE(cpudata->min_limit_perf, min_limit_perf);
1238 max_perf = clamp_t(unsigned long, max_perf, cpudata->min_limit_perf,
1239 cpudata->max_limit_perf);
1240 min_perf = clamp_t(unsigned long, min_perf, cpudata->min_limit_perf,
1241 cpudata->max_limit_perf);
1242 value = READ_ONCE(cpudata->cppc_req_cached);
1244 if (cpudata->policy == CPUFREQ_POLICY_PERFORMANCE)
1245 min_perf = max_perf;
1247 /* Initial min/max values for CPPC Performance Controls Register */
1248 value &= ~AMD_CPPC_MIN_PERF(~0L);
1249 value |= AMD_CPPC_MIN_PERF(min_perf);
1251 value &= ~AMD_CPPC_MAX_PERF(~0L);
1252 value |= AMD_CPPC_MAX_PERF(max_perf);
1254 /* CPPC EPP feature require to set zero to the desire perf bit */
1255 value &= ~AMD_CPPC_DES_PERF(~0L);
1256 value |= AMD_CPPC_DES_PERF(0);
1258 cpudata->epp_policy = cpudata->policy;
1260 /* Get BIOS pre-defined epp value */
1261 epp = amd_pstate_get_epp(cpudata, value);
1264 * This return value can only be negative for shared_memory
1265 * systems where EPP register read/write not supported.
1270 if (cpudata->policy == CPUFREQ_POLICY_PERFORMANCE)
1273 /* Set initial EPP value */
1274 if (boot_cpu_has(X86_FEATURE_CPPC)) {
1275 value &= ~GENMASK_ULL(31, 24);
1276 value |= (u64)epp << 24;
1279 WRITE_ONCE(cpudata->cppc_req_cached, value);
1280 amd_pstate_set_epp(cpudata, epp);
1283 static int amd_pstate_epp_set_policy(struct cpufreq_policy *policy)
1285 struct amd_cpudata *cpudata = policy->driver_data;
1287 if (!policy->cpuinfo.max_freq)
1290 pr_debug("set_policy: cpuinfo.max %u policy->max %u\n",
1291 policy->cpuinfo.max_freq, policy->max);
1293 cpudata->policy = policy->policy;
1295 amd_pstate_epp_update_limit(policy);
1300 static void amd_pstate_epp_reenable(struct amd_cpudata *cpudata)
1302 struct cppc_perf_ctrls perf_ctrls;
1303 u64 value, max_perf;
1306 ret = amd_pstate_enable(true);
1308 pr_err("failed to enable amd pstate during resume, return %d\n", ret);
1310 value = READ_ONCE(cpudata->cppc_req_cached);
1311 max_perf = READ_ONCE(cpudata->highest_perf);
1313 if (boot_cpu_has(X86_FEATURE_CPPC)) {
1314 wrmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_REQ, value);
1316 perf_ctrls.max_perf = max_perf;
1317 perf_ctrls.energy_perf = AMD_CPPC_ENERGY_PERF_PREF(cpudata->epp_cached);
1318 cppc_set_perf(cpudata->cpu, &perf_ctrls);
1322 static int amd_pstate_epp_cpu_online(struct cpufreq_policy *policy)
1324 struct amd_cpudata *cpudata = policy->driver_data;
1326 pr_debug("AMD CPU Core %d going online\n", cpudata->cpu);
1328 if (cppc_state == AMD_PSTATE_ACTIVE) {
1329 amd_pstate_epp_reenable(cpudata);
1330 cpudata->suspended = false;
1336 static void amd_pstate_epp_offline(struct cpufreq_policy *policy)
1338 struct amd_cpudata *cpudata = policy->driver_data;
1339 struct cppc_perf_ctrls perf_ctrls;
1343 min_perf = READ_ONCE(cpudata->lowest_perf);
1344 value = READ_ONCE(cpudata->cppc_req_cached);
1346 mutex_lock(&amd_pstate_limits_lock);
1347 if (boot_cpu_has(X86_FEATURE_CPPC)) {
1348 cpudata->epp_policy = CPUFREQ_POLICY_UNKNOWN;
1350 /* Set max perf same as min perf */
1351 value &= ~AMD_CPPC_MAX_PERF(~0L);
1352 value |= AMD_CPPC_MAX_PERF(min_perf);
1353 value &= ~AMD_CPPC_MIN_PERF(~0L);
1354 value |= AMD_CPPC_MIN_PERF(min_perf);
1355 wrmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_REQ, value);
1357 perf_ctrls.desired_perf = 0;
1358 perf_ctrls.max_perf = min_perf;
1359 perf_ctrls.energy_perf = AMD_CPPC_ENERGY_PERF_PREF(HWP_EPP_BALANCE_POWERSAVE);
1360 cppc_set_perf(cpudata->cpu, &perf_ctrls);
1362 mutex_unlock(&amd_pstate_limits_lock);
1365 static int amd_pstate_epp_cpu_offline(struct cpufreq_policy *policy)
1367 struct amd_cpudata *cpudata = policy->driver_data;
1369 pr_debug("AMD CPU Core %d going offline\n", cpudata->cpu);
1371 if (cpudata->suspended)
1374 if (cppc_state == AMD_PSTATE_ACTIVE)
1375 amd_pstate_epp_offline(policy);
1380 static int amd_pstate_epp_verify_policy(struct cpufreq_policy_data *policy)
1382 cpufreq_verify_within_cpu_limits(policy);
1383 pr_debug("policy_max =%d, policy_min=%d\n", policy->max, policy->min);
1387 static int amd_pstate_epp_suspend(struct cpufreq_policy *policy)
1389 struct amd_cpudata *cpudata = policy->driver_data;
1392 /* avoid suspending when EPP is not enabled */
1393 if (cppc_state != AMD_PSTATE_ACTIVE)
1396 /* set this flag to avoid setting core offline*/
1397 cpudata->suspended = true;
1399 /* disable CPPC in lowlevel firmware */
1400 ret = amd_pstate_enable(false);
1402 pr_err("failed to suspend, return %d\n", ret);
1407 static int amd_pstate_epp_resume(struct cpufreq_policy *policy)
1409 struct amd_cpudata *cpudata = policy->driver_data;
1411 if (cpudata->suspended) {
1412 mutex_lock(&amd_pstate_limits_lock);
1414 /* enable amd pstate from suspend state*/
1415 amd_pstate_epp_reenable(cpudata);
1417 mutex_unlock(&amd_pstate_limits_lock);
1419 cpudata->suspended = false;
1425 static struct cpufreq_driver amd_pstate_driver = {
1426 .flags = CPUFREQ_CONST_LOOPS | CPUFREQ_NEED_UPDATE_LIMITS,
1427 .verify = amd_pstate_verify,
1428 .target = amd_pstate_target,
1429 .fast_switch = amd_pstate_fast_switch,
1430 .init = amd_pstate_cpu_init,
1431 .exit = amd_pstate_cpu_exit,
1432 .suspend = amd_pstate_cpu_suspend,
1433 .resume = amd_pstate_cpu_resume,
1434 .set_boost = amd_pstate_set_boost,
1435 .name = "amd-pstate",
1436 .attr = amd_pstate_attr,
1439 static struct cpufreq_driver amd_pstate_epp_driver = {
1440 .flags = CPUFREQ_CONST_LOOPS,
1441 .verify = amd_pstate_epp_verify_policy,
1442 .setpolicy = amd_pstate_epp_set_policy,
1443 .init = amd_pstate_epp_cpu_init,
1444 .exit = amd_pstate_epp_cpu_exit,
1445 .offline = amd_pstate_epp_cpu_offline,
1446 .online = amd_pstate_epp_cpu_online,
1447 .suspend = amd_pstate_epp_suspend,
1448 .resume = amd_pstate_epp_resume,
1449 .name = "amd-pstate-epp",
1450 .attr = amd_pstate_epp_attr,
1453 static int __init amd_pstate_set_driver(int mode_idx)
1455 if (mode_idx >= AMD_PSTATE_DISABLE && mode_idx < AMD_PSTATE_MAX) {
1456 cppc_state = mode_idx;
1457 if (cppc_state == AMD_PSTATE_DISABLE)
1458 pr_info("driver is explicitly disabled\n");
1460 if (cppc_state == AMD_PSTATE_ACTIVE)
1461 current_pstate_driver = &amd_pstate_epp_driver;
1463 if (cppc_state == AMD_PSTATE_PASSIVE || cppc_state == AMD_PSTATE_GUIDED)
1464 current_pstate_driver = &amd_pstate_driver;
1472 static int __init amd_pstate_init(void)
1474 struct device *dev_root;
1477 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
1480 if (!acpi_cpc_valid()) {
1481 pr_warn_once("the _CPC object is not present in SBIOS or ACPI disabled\n");
1485 /* don't keep reloading if cpufreq_driver exists */
1486 if (cpufreq_get_current_driver())
1489 switch (cppc_state) {
1490 case AMD_PSTATE_UNDEFINED:
1491 /* Disable on the following configs by default:
1492 * 1. Undefined platforms
1493 * 2. Server platforms
1494 * 3. Shared memory designs
1496 if (amd_pstate_acpi_pm_profile_undefined() ||
1497 amd_pstate_acpi_pm_profile_server() ||
1498 !boot_cpu_has(X86_FEATURE_CPPC)) {
1499 pr_info("driver load is disabled, boot with specific mode to enable this\n");
1502 ret = amd_pstate_set_driver(CONFIG_X86_AMD_PSTATE_DEFAULT_MODE);
1506 case AMD_PSTATE_DISABLE:
1508 case AMD_PSTATE_PASSIVE:
1509 case AMD_PSTATE_ACTIVE:
1510 case AMD_PSTATE_GUIDED:
1516 /* capability check */
1517 if (boot_cpu_has(X86_FEATURE_CPPC)) {
1518 pr_debug("AMD CPPC MSR based functionality is supported\n");
1519 if (cppc_state != AMD_PSTATE_ACTIVE)
1520 current_pstate_driver->adjust_perf = amd_pstate_adjust_perf;
1522 pr_debug("AMD CPPC shared memory based functionality is supported\n");
1523 static_call_update(amd_pstate_enable, cppc_enable);
1524 static_call_update(amd_pstate_init_perf, cppc_init_perf);
1525 static_call_update(amd_pstate_update_perf, cppc_update_perf);
1528 /* enable amd pstate feature */
1529 ret = amd_pstate_enable(true);
1531 pr_err("failed to enable with return %d\n", ret);
1535 ret = cpufreq_register_driver(current_pstate_driver);
1537 pr_err("failed to register with return %d\n", ret);
1539 dev_root = bus_get_dev_root(&cpu_subsys);
1541 ret = sysfs_create_group(&dev_root->kobj, &amd_pstate_global_attr_group);
1542 put_device(dev_root);
1544 pr_err("sysfs attribute export failed with error %d.\n", ret);
1545 goto global_attr_free;
1552 cpufreq_unregister_driver(current_pstate_driver);
1555 device_initcall(amd_pstate_init);
1557 static int __init amd_pstate_param(char *str)
1566 mode_idx = get_mode_idx_from_str(str, size);
1568 return amd_pstate_set_driver(mode_idx);
1570 early_param("amd_pstate", amd_pstate_param);
1572 MODULE_AUTHOR("Huang Rui <ray.huang@amd.com>");
1573 MODULE_DESCRIPTION("AMD Processor P-state Frequency Driver");