1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/cpufreq/cpufreq_powersave.c
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/cpufreq.h>
11 #include <linux/init.h>
12 #include <linux/module.h>
14 static void cpufreq_gov_powersave_limits(struct cpufreq_policy *policy)
16 pr_debug("setting to %u kHz\n", policy->min);
17 __cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L);
20 static struct cpufreq_governor cpufreq_gov_powersave = {
22 .limits = cpufreq_gov_powersave_limits,
27 MODULE_DESCRIPTION("CPUfreq policy governor 'powersave'");
28 MODULE_LICENSE("GPL");
30 #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE
31 struct cpufreq_governor *cpufreq_default_governor(void)
33 return &cpufreq_gov_powersave;
37 cpufreq_governor_init(cpufreq_gov_powersave);
38 cpufreq_governor_exit(cpufreq_gov_powersave);