]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
cpufreq: acpi: Set policy->boost_supported
authorViresh Kumar <viresh.kumar@linaro.org>
Thu, 23 Jan 2025 10:00:42 +0000 (15:30 +0530)
committerViresh Kumar <viresh.kumar@linaro.org>
Fri, 7 Feb 2025 04:15:15 +0000 (09:45 +0530)
With a later commit, the cpufreq core will call the ->set_boost()
callback only if the policy supports boost frequency. The
boost_supported flag is set by the cpufreq core if policy->freq_table is
set and one or more boost frequencies are present.

For other drivers, the flag must be set explicitly.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/cpufreq/acpi-cpufreq.c

index c598295d1c52c5edc8a186c40cd848a008b3eb11..924314cdeebcec468c23863cb6e0ba6dc44551c1 100644 (file)
@@ -909,6 +909,9 @@ static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
        if (perf->states[0].core_frequency * 1000 != freq_table[0].frequency)
                pr_warn(FW_WARN "P-state 0 is not max freq\n");
 
+       if (acpi_cpufreq_driver.set_boost)
+               policy->boost_supported = true;
+
        return result;
 
 err_unreg: