39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
From e73d7f9cb6d8f0e79860788371c88f88057ae34b Mon Sep 17 00:00:00 2001
|
|
From: Dhananjay Ugwekar <Dhananjay.Ugwekar@amd.com>
|
|
Date: Wed, 4 Dec 2024 14:48:39 +0000
|
|
Subject: cpufreq/amd-pstate: Move the invocation of amd_pstate_update_perf()
|
|
|
|
amd_pstate_update_perf() should not be a part of shmem_set_epp() function,
|
|
so move it to the amd_pstate_epp_update_limit() function, where it is needed.
|
|
|
|
Signed-off-by: Dhananjay Ugwekar <Dhananjay.Ugwekar@amd.com>
|
|
Reviewed-by: Gautham R. Shenoy <gautham.shenoy@amd.com>
|
|
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
|
|
---
|
|
drivers/cpufreq/amd-pstate.c | 7 ++++---
|
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
--- a/drivers/cpufreq/amd-pstate.c
|
|
+++ b/drivers/cpufreq/amd-pstate.c
|
|
@@ -326,9 +326,6 @@ static int shmem_set_epp(struct amd_cpud
|
|
int ret;
|
|
struct cppc_perf_ctrls perf_ctrls;
|
|
|
|
- amd_pstate_update_perf(cpudata, cpudata->min_limit_perf, 0U,
|
|
- cpudata->max_limit_perf, false);
|
|
-
|
|
perf_ctrls.energy_perf = epp;
|
|
ret = cppc_set_epp_perf(cpudata->cpu, &perf_ctrls, 1);
|
|
if (ret) {
|
|
@@ -1628,6 +1625,10 @@ static int amd_pstate_epp_update_limit(s
|
|
epp = 0;
|
|
|
|
WRITE_ONCE(cpudata->cppc_req_cached, value);
|
|
+
|
|
+ amd_pstate_update_perf(cpudata, cpudata->min_limit_perf, 0U,
|
|
+ cpudata->max_limit_perf, false);
|
|
+
|
|
return amd_pstate_set_epp(cpudata, epp);
|
|
}
|
|
|