@@ -821,19 +821,16 @@
schedule_work(&sched_prefcore_work);
}
-static void amd_pstate_update_limits(unsigned int cpu)
+static void amd_pstate_update_limits(struct cpufreq_policy *policy)
{
- struct cpufreq_policy *policy __free(put_cpufreq_policy) = cpufreq_cpu_get(cpu);
struct amd_cpudata *cpudata;
u32 prev_high = 0, cur_high = 0;
bool highest_perf_changed = false;
+ unsigned int cpu = policy->cpu;
if (!amd_pstate_prefcore)
return;
- if (!policy)
- return;
-
if (amd_get_highest_perf(cpu, &cur_high))
return;
@@ -2741,7 +2741,7 @@
return;
if (cpufreq_driver->update_limits)
- cpufreq_driver->update_limits(cpu);
+ cpufreq_driver->update_limits(policy);
else
cpufreq_policy_refresh(policy);
}
@@ -1353,14 +1353,9 @@
cpufreq_update_policy(cpu);
}
-static bool intel_pstate_update_max_freq(struct cpudata *cpudata)
+static void __intel_pstate_update_max_freq(struct cpufreq_policy *policy,
+ struct cpudata *cpudata)
{
- struct cpufreq_policy *policy __free(put_cpufreq_policy);
-
- policy = cpufreq_cpu_get(cpudata->cpu);
- if (!policy)
- return false;
-
guard(cpufreq_policy_write)(policy);
if (hwp_active)
@@ -1370,16 +1365,28 @@
cpudata->pstate.max_freq : cpudata->pstate.turbo_freq;
refresh_frequency_limits(policy);
+}
+
+static bool intel_pstate_update_max_freq(struct cpudata *cpudata)
+{
+ struct cpufreq_policy *policy __free(put_cpufreq_policy);
+
+ policy = cpufreq_cpu_get(cpudata->cpu);
+ if (!policy)
+ return false;
+
+ __intel_pstate_update_max_freq(policy, cpudata);
return true;
}
-static void intel_pstate_update_limits(unsigned int cpu)
+static void intel_pstate_update_limits(struct cpufreq_policy *policy)
{
- struct cpudata *cpudata = all_cpu_data[cpu];
+ struct cpudata *cpudata = all_cpu_data[policy->cpu];
+
+ __intel_pstate_update_max_freq(policy, cpudata);
- if (intel_pstate_update_max_freq(cpudata))
- hybrid_update_capacity(cpudata);
+ hybrid_update_capacity(cpudata);
}
static void intel_pstate_update_limits_for_all(void)
@@ -399,7 +399,7 @@
unsigned int (*get)(unsigned int cpu);
/* Called to update policy limits on firmware notifications. */
- void (*update_limits)(unsigned int cpu);
+ void (*update_limits)(struct cpufreq_policy *policy);
/* optional */
int (*bios_limit)(int cpu, unsigned int *limit);