blob: 4fd0006b129104d430c6d433bdde161a301383dd [file] [log] [blame]
Dave Jonesb9170832005-05-31 19:03:47 -07001/*
2 * drivers/cpufreq/cpufreq_conservative.c
3 *
4 * Copyright (C) 2001 Russell King
5 * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
6 * Jun Nakajima <jun.nakajima@intel.com>
Alexander Clouter11a80a9c762009-02-13 19:01:01 +00007 * (C) 2009 Alexander Clouter <alex@digriz.org.uk>
Dave Jonesb9170832005-05-31 19:03:47 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Dave Jonesb9170832005-05-31 19:03:47 -070014#include <linux/cpufreq.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020015#include <linux/init.h>
16#include <linux/kernel.h>
Dave Jonesb9170832005-05-31 19:03:47 -070017#include <linux/kernel_stat.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020018#include <linux/kobject.h>
19#include <linux/module.h>
akpm@osdl.org3fc54d32006-01-13 15:54:22 -080020#include <linux/mutex.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020021#include <linux/notifier.h>
22#include <linux/percpu-defs.h>
23#include <linux/sysfs.h>
24#include <linux/types.h>
Alexander Clouter8e677ce2009-02-13 19:02:34 +000025
Viresh Kumar4471a342012-10-26 00:47:42 +020026#include "cpufreq_governor.h"
Dave Jonesb9170832005-05-31 19:03:47 -070027
Stratos Karafotisc88883c2013-02-08 17:24:24 +000028/* Conservative governor macros */
Dave Jonesb9170832005-05-31 19:03:47 -070029#define DEF_FREQUENCY_UP_THRESHOLD (80)
Dave Jonesb9170832005-05-31 19:03:47 -070030#define DEF_FREQUENCY_DOWN_THRESHOLD (20)
Alexander Clouter2c906b32006-03-22 09:54:10 +000031#define DEF_SAMPLING_DOWN_FACTOR (1)
32#define MAX_SAMPLING_DOWN_FACTOR (10)
Dave Jonesb9170832005-05-31 19:03:47 -070033
Viresh Kumar4471a342012-10-26 00:47:42 +020034static struct dbs_data cs_dbs_data;
35static DEFINE_PER_CPU(struct cs_cpu_dbs_info_s, cs_cpu_dbs_info);
Dave Jonesb9170832005-05-31 19:03:47 -070036
Viresh Kumar4471a342012-10-26 00:47:42 +020037static struct cs_dbs_tuners cs_tuners = {
Dave Jones18a72472007-10-22 16:49:09 -040038 .up_threshold = DEF_FREQUENCY_UP_THRESHOLD,
39 .down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD,
40 .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR,
41 .ignore_nice = 0,
42 .freq_step = 5,
Dave Jonesb9170832005-05-31 19:03:47 -070043};
44
Viresh Kumar4471a342012-10-26 00:47:42 +020045/*
46 * Every sampling_rate, we check, if current idle time is less than 20%
47 * (default), then we try to increase frequency Every sampling_rate *
48 * sampling_down_factor, we check, if current idle time is more than 80%, then
49 * we try to decrease frequency
50 *
51 * Any frequency increase takes it to the maximum frequency. Frequency reduction
52 * happens at minimum steps of 5% (default) of maximum frequency
53 */
54static void cs_check_cpu(int cpu, unsigned int load)
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +020055{
Viresh Kumar4471a342012-10-26 00:47:42 +020056 struct cs_cpu_dbs_info_s *dbs_info = &per_cpu(cs_cpu_dbs_info, cpu);
57 struct cpufreq_policy *policy = dbs_info->cdbs.cur_policy;
58 unsigned int freq_target;
Alexander Clouterf407a082009-02-13 19:01:51 +000059
60 /*
Viresh Kumar4471a342012-10-26 00:47:42 +020061 * break out if we 'cannot' reduce the speed as the user might
62 * want freq_step to be zero
63 */
64 if (cs_tuners.freq_step == 0)
65 return;
66
67 /* Check for frequency increase */
68 if (load > cs_tuners.up_threshold) {
69 dbs_info->down_skip = 0;
70
71 /* if we are already at full speed then break out early */
72 if (dbs_info->requested_freq == policy->max)
73 return;
74
75 freq_target = (cs_tuners.freq_step * policy->max) / 100;
76
77 /* max freq cannot be less than 100. But who knows.... */
78 if (unlikely(freq_target == 0))
79 freq_target = 5;
80
81 dbs_info->requested_freq += freq_target;
82 if (dbs_info->requested_freq > policy->max)
83 dbs_info->requested_freq = policy->max;
84
85 __cpufreq_driver_target(policy, dbs_info->requested_freq,
86 CPUFREQ_RELATION_H);
87 return;
88 }
89
90 /*
91 * The optimal frequency is the frequency that is the lowest that can
92 * support the current CPU usage without triggering the up policy. To be
93 * safe, we focus 10 points under the threshold.
94 */
95 if (load < (cs_tuners.down_threshold - 10)) {
96 freq_target = (cs_tuners.freq_step * policy->max) / 100;
97
98 dbs_info->requested_freq -= freq_target;
99 if (dbs_info->requested_freq < policy->min)
100 dbs_info->requested_freq = policy->min;
101
102 /*
103 * if we cannot reduce the frequency anymore, break out early
104 */
105 if (policy->cur == policy->min)
106 return;
107
108 __cpufreq_driver_target(policy, dbs_info->requested_freq,
109 CPUFREQ_RELATION_H);
110 return;
111 }
112}
113
Fabio Baltieri66df2a012012-12-27 14:55:41 +0000114static void cs_dbs_timer(struct work_struct *work)
115{
116 struct delayed_work *dw = to_delayed_work(work);
117 struct cs_cpu_dbs_info_s *dbs_info = container_of(work,
118 struct cs_cpu_dbs_info_s, cdbs.work.work);
Viresh Kumar44472662013-01-31 17:28:02 +0000119 unsigned int cpu = dbs_info->cdbs.cur_policy->cpu;
120 struct cs_cpu_dbs_info_s *core_dbs_info = &per_cpu(cs_cpu_dbs_info,
121 cpu);
122 int delay = delay_for_sampling_rate(cs_tuners.sampling_rate);
Fabio Baltieri66df2a012012-12-27 14:55:41 +0000123
Viresh Kumar44472662013-01-31 17:28:02 +0000124 mutex_lock(&core_dbs_info->cdbs.timer_mutex);
125 if (need_load_eval(&core_dbs_info->cdbs, cs_tuners.sampling_rate))
126 dbs_check_cpu(&cs_dbs_data, cpu);
127
128 schedule_delayed_work_on(smp_processor_id(), dw, delay);
129 mutex_unlock(&core_dbs_info->cdbs.timer_mutex);
Fabio Baltieri66df2a012012-12-27 14:55:41 +0000130}
Viresh Kumar44472662013-01-31 17:28:02 +0000131
Viresh Kumar4471a342012-10-26 00:47:42 +0200132static int dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
133 void *data)
134{
135 struct cpufreq_freqs *freq = data;
136 struct cs_cpu_dbs_info_s *dbs_info =
137 &per_cpu(cs_cpu_dbs_info, freq->cpu);
138 struct cpufreq_policy *policy;
139
140 if (!dbs_info->enable)
141 return 0;
142
143 policy = dbs_info->cdbs.cur_policy;
144
145 /*
146 * we only care if our internally tracked freq moves outside the 'valid'
Stratos Karafotisc88883c2013-02-08 17:24:24 +0000147 * ranges of frequency available to us otherwise we do not change it
Alexander Clouterf407a082009-02-13 19:01:51 +0000148 */
Viresh Kumar4471a342012-10-26 00:47:42 +0200149 if (dbs_info->requested_freq > policy->max
150 || dbs_info->requested_freq < policy->min)
151 dbs_info->requested_freq = freq->new;
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200152
153 return 0;
154}
155
Dave Jonesb9170832005-05-31 19:03:47 -0700156/************************** sysfs interface ************************/
Thomas Renninger49b015c2009-10-01 19:49:28 +0200157static ssize_t show_sampling_rate_min(struct kobject *kobj,
158 struct attribute *attr, char *buf)
Dave Jonesb9170832005-05-31 19:03:47 -0700159{
Viresh Kumar4471a342012-10-26 00:47:42 +0200160 return sprintf(buf, "%u\n", cs_dbs_data.min_sampling_rate);
Dave Jonesb9170832005-05-31 19:03:47 -0700161}
162
Thomas Renninger49b015c2009-10-01 19:49:28 +0200163static ssize_t store_sampling_down_factor(struct kobject *a,
164 struct attribute *b,
165 const char *buf, size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700166{
167 unsigned int input;
168 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500169 ret = sscanf(buf, "%u", &input);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000170
Alexander Clouter2c906b32006-03-22 09:54:10 +0000171 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700172 return -EINVAL;
173
Viresh Kumar4471a342012-10-26 00:47:42 +0200174 cs_tuners.sampling_down_factor = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700175 return count;
176}
177
Thomas Renninger49b015c2009-10-01 19:49:28 +0200178static ssize_t store_sampling_rate(struct kobject *a, struct attribute *b,
179 const char *buf, size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700180{
181 unsigned int input;
182 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500183 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700184
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000185 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700186 return -EINVAL;
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000187
Viresh Kumar4471a342012-10-26 00:47:42 +0200188 cs_tuners.sampling_rate = max(input, cs_dbs_data.min_sampling_rate);
Dave Jonesb9170832005-05-31 19:03:47 -0700189 return count;
190}
191
Thomas Renninger49b015c2009-10-01 19:49:28 +0200192static ssize_t store_up_threshold(struct kobject *a, struct attribute *b,
193 const char *buf, size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700194{
195 unsigned int input;
196 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500197 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700198
Viresh Kumar4471a342012-10-26 00:47:42 +0200199 if (ret != 1 || input > 100 || input <= cs_tuners.down_threshold)
Dave Jonesb9170832005-05-31 19:03:47 -0700200 return -EINVAL;
Dave Jonesb9170832005-05-31 19:03:47 -0700201
Viresh Kumar4471a342012-10-26 00:47:42 +0200202 cs_tuners.up_threshold = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700203 return count;
204}
205
Thomas Renninger49b015c2009-10-01 19:49:28 +0200206static ssize_t store_down_threshold(struct kobject *a, struct attribute *b,
207 const char *buf, size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700208{
209 unsigned int input;
210 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500211 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700212
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000213 /* cannot be lower than 11 otherwise freq will not fall */
214 if (ret != 1 || input < 11 || input > 100 ||
Viresh Kumar4471a342012-10-26 00:47:42 +0200215 input >= cs_tuners.up_threshold)
Dave Jonesb9170832005-05-31 19:03:47 -0700216 return -EINVAL;
Dave Jonesb9170832005-05-31 19:03:47 -0700217
Viresh Kumar4471a342012-10-26 00:47:42 +0200218 cs_tuners.down_threshold = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700219 return count;
220}
221
Thomas Renninger49b015c2009-10-01 19:49:28 +0200222static ssize_t store_ignore_nice_load(struct kobject *a, struct attribute *b,
223 const char *buf, size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700224{
Viresh Kumar4471a342012-10-26 00:47:42 +0200225 unsigned int input, j;
Dave Jonesb9170832005-05-31 19:03:47 -0700226 int ret;
227
Dave Jones18a72472007-10-22 16:49:09 -0400228 ret = sscanf(buf, "%u", &input);
229 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700230 return -EINVAL;
231
Dave Jones18a72472007-10-22 16:49:09 -0400232 if (input > 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700233 input = 1;
Dave Jones18a72472007-10-22 16:49:09 -0400234
Viresh Kumar4471a342012-10-26 00:47:42 +0200235 if (input == cs_tuners.ignore_nice) /* nothing to do */
Dave Jonesb9170832005-05-31 19:03:47 -0700236 return count;
Thomas Renninger326c86d2011-03-03 21:31:27 +0100237
Viresh Kumar4471a342012-10-26 00:47:42 +0200238 cs_tuners.ignore_nice = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700239
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000240 /* we need to re-evaluate prev_cpu_idle */
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700241 for_each_online_cpu(j) {
Viresh Kumar4471a342012-10-26 00:47:42 +0200242 struct cs_cpu_dbs_info_s *dbs_info;
Tejun Heo245b2e72009-06-24 15:13:48 +0900243 dbs_info = &per_cpu(cs_cpu_dbs_info, j);
Viresh Kumar4471a342012-10-26 00:47:42 +0200244 dbs_info->cdbs.prev_cpu_idle = get_cpu_idle_time(j,
245 &dbs_info->cdbs.prev_cpu_wall);
246 if (cs_tuners.ignore_nice)
247 dbs_info->cdbs.prev_cpu_nice =
248 kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Dave Jonesb9170832005-05-31 19:03:47 -0700249 }
Dave Jonesb9170832005-05-31 19:03:47 -0700250 return count;
251}
252
Thomas Renninger49b015c2009-10-01 19:49:28 +0200253static ssize_t store_freq_step(struct kobject *a, struct attribute *b,
254 const char *buf, size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700255{
256 unsigned int input;
257 int ret;
Dave Jones18a72472007-10-22 16:49:09 -0400258 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700259
Dave Jones18a72472007-10-22 16:49:09 -0400260 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700261 return -EINVAL;
262
Dave Jones18a72472007-10-22 16:49:09 -0400263 if (input > 100)
Dave Jonesb9170832005-05-31 19:03:47 -0700264 input = 100;
Dave Jones18a72472007-10-22 16:49:09 -0400265
Viresh Kumar4471a342012-10-26 00:47:42 +0200266 /*
267 * no need to test here if freq_step is zero as the user might actually
268 * want this, they would be crazy though :)
269 */
270 cs_tuners.freq_step = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700271 return count;
272}
273
Viresh Kumar4471a342012-10-26 00:47:42 +0200274show_one(cs, sampling_rate, sampling_rate);
275show_one(cs, sampling_down_factor, sampling_down_factor);
276show_one(cs, up_threshold, up_threshold);
277show_one(cs, down_threshold, down_threshold);
278show_one(cs, ignore_nice_load, ignore_nice);
279show_one(cs, freq_step, freq_step);
280
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200281define_one_global_rw(sampling_rate);
282define_one_global_rw(sampling_down_factor);
283define_one_global_rw(up_threshold);
284define_one_global_rw(down_threshold);
285define_one_global_rw(ignore_nice_load);
286define_one_global_rw(freq_step);
Viresh Kumar4471a342012-10-26 00:47:42 +0200287define_one_global_ro(sampling_rate_min);
Dave Jonesb9170832005-05-31 19:03:47 -0700288
Dave Jones9acef482009-01-18 01:39:51 -0500289static struct attribute *dbs_attributes[] = {
Dave Jonesb9170832005-05-31 19:03:47 -0700290 &sampling_rate_min.attr,
291 &sampling_rate.attr,
292 &sampling_down_factor.attr,
293 &up_threshold.attr,
294 &down_threshold.attr,
Alexander Clouter001893c2005-12-01 01:09:25 -0800295 &ignore_nice_load.attr,
Dave Jonesb9170832005-05-31 19:03:47 -0700296 &freq_step.attr,
297 NULL
298};
299
Viresh Kumar4471a342012-10-26 00:47:42 +0200300static struct attribute_group cs_attr_group = {
Dave Jonesb9170832005-05-31 19:03:47 -0700301 .attrs = dbs_attributes,
302 .name = "conservative",
303};
304
305/************************** sysfs end ************************/
306
Viresh Kumar4471a342012-10-26 00:47:42 +0200307define_get_cpu_dbs_routines(cs_cpu_dbs_info);
Dave Jonesb9170832005-05-31 19:03:47 -0700308
Viresh Kumar4471a342012-10-26 00:47:42 +0200309static struct notifier_block cs_cpufreq_notifier_block = {
310 .notifier_call = dbs_cpufreq_notifier,
311};
Dave Jonesb9170832005-05-31 19:03:47 -0700312
Viresh Kumar4471a342012-10-26 00:47:42 +0200313static struct cs_ops cs_ops = {
314 .notifier_block = &cs_cpufreq_notifier_block,
315};
Alexander Clouter08a28e22006-03-22 09:59:16 +0000316
Viresh Kumar4471a342012-10-26 00:47:42 +0200317static struct dbs_data cs_dbs_data = {
318 .governor = GOV_CONSERVATIVE,
319 .attr_group = &cs_attr_group,
320 .tuners = &cs_tuners,
321 .get_cpu_cdbs = get_cpu_cdbs,
322 .get_cpu_dbs_info_s = get_cpu_dbs_info_s,
323 .gov_dbs_timer = cs_dbs_timer,
324 .gov_check_cpu = cs_check_cpu,
325 .gov_ops = &cs_ops,
326};
Dave Jonesb9170832005-05-31 19:03:47 -0700327
Viresh Kumar4471a342012-10-26 00:47:42 +0200328static int cs_cpufreq_governor_dbs(struct cpufreq_policy *policy,
Dave Jonesb9170832005-05-31 19:03:47 -0700329 unsigned int event)
330{
Viresh Kumar4471a342012-10-26 00:47:42 +0200331 return cpufreq_governor_dbs(&cs_dbs_data, policy, event);
Dave Jonesb9170832005-05-31 19:03:47 -0700332}
333
Sven Wegenerc4d14bc2008-09-20 16:50:08 +0200334#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
335static
336#endif
Thomas Renninger1c256242007-10-02 13:28:12 -0700337struct cpufreq_governor cpufreq_gov_conservative = {
338 .name = "conservative",
Viresh Kumar4471a342012-10-26 00:47:42 +0200339 .governor = cs_cpufreq_governor_dbs,
Thomas Renninger1c256242007-10-02 13:28:12 -0700340 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
341 .owner = THIS_MODULE,
Dave Jonesb9170832005-05-31 19:03:47 -0700342};
343
344static int __init cpufreq_gov_dbs_init(void)
345{
Viresh Kumar4471a342012-10-26 00:47:42 +0200346 mutex_init(&cs_dbs_data.mutex);
Tejun Heo57df5572011-01-26 12:12:50 +0100347 return cpufreq_register_governor(&cpufreq_gov_conservative);
Dave Jonesb9170832005-05-31 19:03:47 -0700348}
349
350static void __exit cpufreq_gov_dbs_exit(void)
351{
Thomas Renninger1c256242007-10-02 13:28:12 -0700352 cpufreq_unregister_governor(&cpufreq_gov_conservative);
Dave Jonesb9170832005-05-31 19:03:47 -0700353}
354
Alexander Clouter11a80a9c762009-02-13 19:01:01 +0000355MODULE_AUTHOR("Alexander Clouter <alex@digriz.org.uk>");
Dave Jones9acef482009-01-18 01:39:51 -0500356MODULE_DESCRIPTION("'cpufreq_conservative' - A dynamic cpufreq governor for "
Dave Jonesb9170832005-05-31 19:03:47 -0700357 "Low Latency Frequency Transition capable processors "
358 "optimised for use in a battery environment");
Dave Jones9acef482009-01-18 01:39:51 -0500359MODULE_LICENSE("GPL");
Dave Jonesb9170832005-05-31 19:03:47 -0700360
Johannes Weiner69157192008-01-17 15:21:08 -0800361#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
362fs_initcall(cpufreq_gov_dbs_init);
363#else
Dave Jonesb9170832005-05-31 19:03:47 -0700364module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800365#endif
Dave Jonesb9170832005-05-31 19:03:47 -0700366module_exit(cpufreq_gov_dbs_exit);