blob: 5daa500fb0a9e1b74b7f35779ddc009fc82cb0a7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Viresh Kumarbb176f72013-06-19 14:19:33 +05302 * linux/drivers/cpufreq/cpufreq_powersave.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05304 * Copyright (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 */
12
Viresh Kumardb701152012-10-23 01:29:03 +020013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/cpufreq.h>
16#include <linux/init.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053017#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Rafael J. Wysockie7888922016-06-02 23:24:15 +020019static void cpufreq_gov_powersave_limits(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020{
Rafael J. Wysockie7888922016-06-02 23:24:15 +020021 pr_debug("setting to %u kHz\n", policy->min);
22 __cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023}
Dave Jones32ee8c32006-02-28 00:43:23 -050024
Sven Wegener52e61ad2008-09-20 16:50:08 +020025#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE
26static
27#endif
28struct cpufreq_governor cpufreq_gov_powersave = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 .name = "powersave",
Rafael J. Wysockie7888922016-06-02 23:24:15 +020030 .limits = cpufreq_gov_powersave_limits,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 .owner = THIS_MODULE,
32};
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34static int __init cpufreq_gov_powersave_init(void)
35{
36 return cpufreq_register_governor(&cpufreq_gov_powersave);
37}
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039static void __exit cpufreq_gov_powersave_exit(void)
40{
41 cpufreq_unregister_governor(&cpufreq_gov_powersave);
42}
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>");
45MODULE_DESCRIPTION("CPUfreq policy governor 'powersave'");
46MODULE_LICENSE("GPL");
47
Alessandro Guido30d221d2008-04-18 13:31:13 -070048#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE
Rafael J. Wysockide1df262016-02-05 02:37:42 +010049struct cpufreq_governor *cpufreq_default_governor(void)
50{
51 return &cpufreq_gov_powersave;
52}
53
Alessandro Guido30d221d2008-04-18 13:31:13 -070054fs_initcall(cpufreq_gov_powersave_init);
55#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070056module_init(cpufreq_gov_powersave_init);
Alessandro Guido30d221d2008-04-18 13:31:13 -070057#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070058module_exit(cpufreq_gov_powersave_exit);