2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* linux/drivers/cpufreq/cpufreq_performance.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-10-23 07:29:03 +08:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/cpufreq.h>
|
|
|
|
#include <linux/init.h>
|
2013-08-07 01:23:03 +08:00
|
|
|
#include <linux/module.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-06-03 05:24:15 +08:00
|
|
|
static void cpufreq_gov_performance_limits(struct cpufreq_policy *policy)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2016-06-03 05:24:15 +08:00
|
|
|
pr_debug("setting to %u kHz\n", policy->max);
|
|
|
|
__cpufreq_driver_target(policy, policy->max, CPUFREQ_RELATION_H);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2006-02-28 13:43:23 +08:00
|
|
|
|
2016-02-05 09:37:42 +08:00
|
|
|
static struct cpufreq_governor cpufreq_gov_performance = {
|
2005-04-17 06:20:36 +08:00
|
|
|
.name = "performance",
|
|
|
|
.owner = THIS_MODULE,
|
2016-06-03 05:24:15 +08:00
|
|
|
.limits = cpufreq_gov_performance_limits,
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int __init cpufreq_gov_performance_init(void)
|
|
|
|
{
|
|
|
|
return cpufreq_register_governor(&cpufreq_gov_performance);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit cpufreq_gov_performance_exit(void)
|
|
|
|
{
|
|
|
|
cpufreq_unregister_governor(&cpufreq_gov_performance);
|
|
|
|
}
|
|
|
|
|
2016-02-05 09:37:42 +08:00
|
|
|
#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE
|
|
|
|
struct cpufreq_governor *cpufreq_default_governor(void)
|
|
|
|
{
|
|
|
|
return &cpufreq_gov_performance;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_CPU_FREQ_GOV_PERFORMANCE_MODULE
|
|
|
|
struct cpufreq_governor *cpufreq_fallback_governor(void)
|
|
|
|
{
|
|
|
|
return &cpufreq_gov_performance;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>");
|
|
|
|
MODULE_DESCRIPTION("CPUfreq policy governor 'performance'");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
|
|
|
fs_initcall(cpufreq_gov_performance_init);
|
|
|
|
module_exit(cpufreq_gov_performance_exit);
|