2019-06-04 08:11:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2013-06-19 08:49:33 +00:00
|
|
|
* linux/drivers/cpufreq/cpufreq_powersave.c
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2013-06-19 08:49:33 +00:00
|
|
|
* Copyright (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
|
2012-10-22 23:29:03 +00:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/cpufreq.h>
|
|
|
|
#include <linux/init.h>
|
2013-08-06 17:23:03 +00:00
|
|
|
#include <linux/module.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-06-02 21:24:15 +00:00
|
|
|
static void cpufreq_gov_powersave_limits(struct cpufreq_policy *policy)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2016-06-02 21:24:15 +00:00
|
|
|
pr_debug("setting to %u kHz\n", policy->min);
|
|
|
|
__cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2006-02-28 05:43:23 +00:00
|
|
|
|
2016-02-05 01:37:42 +00:00
|
|
|
static struct cpufreq_governor cpufreq_gov_powersave = {
|
2005-04-16 22:20:36 +00:00
|
|
|
.name = "powersave",
|
2016-06-02 21:24:15 +00:00
|
|
|
.limits = cpufreq_gov_powersave_limits,
|
2005-04-16 22:20:36 +00:00
|
|
|
.owner = THIS_MODULE,
|
2020-11-10 17:26:10 +00:00
|
|
|
.flags = CPUFREQ_GOV_STRICT_TARGET,
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>");
|
|
|
|
MODULE_DESCRIPTION("CPUfreq policy governor 'powersave'");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
2008-04-18 20:31:13 +00:00
|
|
|
#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE
|
2016-02-05 01:37:42 +00:00
|
|
|
struct cpufreq_governor *cpufreq_default_governor(void)
|
|
|
|
{
|
|
|
|
return &cpufreq_gov_powersave;
|
|
|
|
}
|
2008-04-18 20:31:13 +00:00
|
|
|
#endif
|
2020-06-29 08:24:59 +00:00
|
|
|
|
|
|
|
cpufreq_governor_init(cpufreq_gov_powersave);
|
|
|
|
cpufreq_governor_exit(cpufreq_gov_powersave);
|