2005-04-17 02:20:36 +04:00
/*
2013-06-19 12:49:33 +04:00
* linux / drivers / cpufreq / cpufreq_powersave . c
2005-04-17 02:20:36 +04:00
*
2013-06-19 12:49:33 +04:00
* Copyright ( C ) 2002 - 2003 Dominik Brodowski < linux @ brodo . de >
2005-04-17 02:20:36 +04:00
*
*
* 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 03:29:03 +04:00
# define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2005-04-17 02:20:36 +04:00
# include <linux/kernel.h>
# include <linux/module.h>
# include <linux/cpufreq.h>
# include <linux/init.h>
static int cpufreq_governor_powersave ( struct cpufreq_policy * policy ,
unsigned int event )
{
switch ( event ) {
case CPUFREQ_GOV_START :
case CPUFREQ_GOV_LIMITS :
2011-03-27 17:04:46 +04:00
pr_debug ( " setting to %u kHz because of event %u \n " ,
2006-10-26 14:50:58 +04:00
policy - > min , event ) ;
__cpufreq_driver_target ( policy , policy - > min ,
CPUFREQ_RELATION_L ) ;
2005-04-17 02:20:36 +04:00
break ;
default :
break ;
}
return 0 ;
}
2006-02-28 08:43:23 +03:00
2008-09-20 18:50:08 +04:00
# ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE
static
# endif
2008-04-19 00:31:13 +04:00
struct cpufreq_governor cpufreq_gov_powersave = {
2005-04-17 02:20:36 +04:00
. name = " powersave " ,
. governor = cpufreq_governor_powersave ,
. owner = THIS_MODULE ,
} ;
static int __init cpufreq_gov_powersave_init ( void )
{
return cpufreq_register_governor ( & cpufreq_gov_powersave ) ;
}
static void __exit cpufreq_gov_powersave_exit ( void )
{
cpufreq_unregister_governor ( & cpufreq_gov_powersave ) ;
}
MODULE_AUTHOR ( " Dominik Brodowski <linux@brodo.de> " ) ;
MODULE_DESCRIPTION ( " CPUfreq policy governor 'powersave' " ) ;
MODULE_LICENSE ( " GPL " ) ;
2008-04-19 00:31:13 +04:00
# ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE
fs_initcall ( cpufreq_gov_powersave_init ) ;
# else
2005-04-17 02:20:36 +04:00
module_init ( cpufreq_gov_powersave_init ) ;
2008-04-19 00:31:13 +04:00
# endif
2005-04-17 02:20:36 +04:00
module_exit ( cpufreq_gov_powersave_exit ) ;