blob: 7a74d175287b2f44fc7a7329ce79bd51b5f9b779 [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
14#include <linux/kernel.h>
15#include <linux/module.h>
Dave Jonesb9170832005-05-31 19:03:47 -070016#include <linux/init.h>
Dave Jonesb9170832005-05-31 19:03:47 -070017#include <linux/cpufreq.h>
Andrew Morton138a01282006-06-23 03:31:19 -070018#include <linux/cpu.h>
Dave Jonesb9170832005-05-31 19:03:47 -070019#include <linux/jiffies.h>
20#include <linux/kernel_stat.h>
akpm@osdl.org3fc54d32006-01-13 15:54:22 -080021#include <linux/mutex.h>
Alexander Clouter8e677ce2009-02-13 19:02:34 +000022#include <linux/hrtimer.h>
23#include <linux/tick.h>
24#include <linux/ktime.h>
25#include <linux/sched.h>
26
Dave Jonesb9170832005-05-31 19:03:47 -070027/*
28 * dbs is used in this file as a shortform for demandbased switching
29 * It helps to keep variable names smaller, simpler
30 */
31
32#define DEF_FREQUENCY_UP_THRESHOLD (80)
Dave Jonesb9170832005-05-31 19:03:47 -070033#define DEF_FREQUENCY_DOWN_THRESHOLD (20)
Dave Jonesb9170832005-05-31 19:03:47 -070034
Dave Jones18a72472007-10-22 16:49:09 -040035/*
36 * The polling frequency of this governor depends on the capability of
Dave Jonesb9170832005-05-31 19:03:47 -070037 * the processor. Default polling frequency is 1000 times the transition
Dave Jones18a72472007-10-22 16:49:09 -040038 * latency of the processor. The governor will work on any processor with
39 * transition latency <= 10mS, using appropriate sampling
Dave Jonesb9170832005-05-31 19:03:47 -070040 * rate.
Alexander Clouter8e677ce2009-02-13 19:02:34 +000041 * For CPUs with transition latency > 10mS (mostly drivers with CPUFREQ_ETERNAL)
42 * this governor will not work.
Dave Jonesb9170832005-05-31 19:03:47 -070043 * All times here are in uS.
44 */
Dave Jones18a72472007-10-22 16:49:09 -040045static unsigned int def_sampling_rate;
Alexander Clouter2c906b32006-03-22 09:54:10 +000046#define MIN_SAMPLING_RATE_RATIO (2)
47/* for correct statistics, we need at least 10 ticks between each measure */
Alexander Clouter8e677ce2009-02-13 19:02:34 +000048#define MIN_STAT_SAMPLING_RATE \
Gautham R Shenoye08f5f52006-10-26 16:20:58 +053049 (MIN_SAMPLING_RATE_RATIO * jiffies_to_usecs(10))
50#define MIN_SAMPLING_RATE \
51 (def_sampling_rate / MIN_SAMPLING_RATE_RATIO)
Thomas Renninger112124a2009-02-04 11:55:12 +010052/* Above MIN_SAMPLING_RATE will vanish with its sysfs file soon
53 * Define the minimal settable sampling rate to the greater of:
54 * - "HW transition latency" * 100 (same as default sampling / 10)
55 * - MIN_STAT_SAMPLING_RATE
56 * To avoid that userspace shoots itself.
57*/
58static unsigned int minimum_sampling_rate(void)
59{
60 return max(def_sampling_rate / 10, MIN_STAT_SAMPLING_RATE);
61}
62
63/* This will also vanish soon with removing sampling_rate_max */
Dave Jonesb9170832005-05-31 19:03:47 -070064#define MAX_SAMPLING_RATE (500 * def_sampling_rate)
Thomas Renninger112124a2009-02-04 11:55:12 +010065#define LATENCY_MULTIPLIER (1000)
Alexander Clouter2c906b32006-03-22 09:54:10 +000066#define DEF_SAMPLING_DOWN_FACTOR (1)
67#define MAX_SAMPLING_DOWN_FACTOR (10)
Thomas Renninger1c256242007-10-02 13:28:12 -070068#define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000)
Dave Jonesb9170832005-05-31 19:03:47 -070069
David Howellsc4028952006-11-22 14:57:56 +000070static void do_dbs_timer(struct work_struct *work);
Dave Jonesb9170832005-05-31 19:03:47 -070071
72struct cpu_dbs_info_s {
Alexander Clouter8e677ce2009-02-13 19:02:34 +000073 cputime64_t prev_cpu_idle;
74 cputime64_t prev_cpu_wall;
75 cputime64_t prev_cpu_nice;
Dave Jones18a72472007-10-22 16:49:09 -040076 struct cpufreq_policy *cur_policy;
Alexander Clouter8e677ce2009-02-13 19:02:34 +000077 struct delayed_work work;
Dave Jones18a72472007-10-22 16:49:09 -040078 unsigned int down_skip;
79 unsigned int requested_freq;
Alexander Clouter8e677ce2009-02-13 19:02:34 +000080 int cpu;
81 unsigned int enable:1;
Dave Jonesb9170832005-05-31 19:03:47 -070082};
83static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info);
84
85static unsigned int dbs_enable; /* number of CPUs using this policy */
86
Venkatesh Pallipadi4ec223d2006-06-21 15:18:34 -070087/*
88 * DEADLOCK ALERT! There is a ordering requirement between cpu_hotplug
89 * lock and dbs_mutex. cpu_hotplug lock should always be held before
90 * dbs_mutex. If any function that can potentially take cpu_hotplug lock
91 * (like __cpufreq_driver_target()) is being called with dbs_mutex taken, then
92 * cpu_hotplug lock should be taken before that. Note that cpu_hotplug lock
93 * is recursive for the same process. -Venki
Mathieu Desnoyersb253d2b2009-05-17 10:29:33 -040094 * DEADLOCK ALERT! (2) : do_dbs_timer() must not take the dbs_mutex, because it
95 * would deadlock with cancel_delayed_work_sync(), which is needed for proper
96 * raceless workqueue teardown.
Venkatesh Pallipadi4ec223d2006-06-21 15:18:34 -070097 */
Dave Jones9acef482009-01-18 01:39:51 -050098static DEFINE_MUTEX(dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -070099
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000100static struct workqueue_struct *kconservative_wq;
101
102static struct dbs_tuners {
Dave Jones18a72472007-10-22 16:49:09 -0400103 unsigned int sampling_rate;
104 unsigned int sampling_down_factor;
105 unsigned int up_threshold;
106 unsigned int down_threshold;
107 unsigned int ignore_nice;
108 unsigned int freq_step;
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000109} dbs_tuners_ins = {
Dave Jones18a72472007-10-22 16:49:09 -0400110 .up_threshold = DEF_FREQUENCY_UP_THRESHOLD,
111 .down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD,
112 .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR,
113 .ignore_nice = 0,
114 .freq_step = 5,
Dave Jonesb9170832005-05-31 19:03:47 -0700115};
116
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000117static inline cputime64_t get_cpu_idle_time_jiffy(unsigned int cpu,
118 cputime64_t *wall)
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700119{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000120 cputime64_t idle_time;
121 cputime64_t cur_wall_time;
122 cputime64_t busy_time;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530123
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000124 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
125 busy_time = cputime64_add(kstat_cpu(cpu).cpustat.user,
126 kstat_cpu(cpu).cpustat.system);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530127
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000128 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.irq);
129 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.softirq);
130 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.steal);
131 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.nice);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530132
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000133 idle_time = cputime64_sub(cur_wall_time, busy_time);
134 if (wall)
135 *wall = cur_wall_time;
136
137 return idle_time;
138}
139
140static inline cputime64_t get_cpu_idle_time(unsigned int cpu, cputime64_t *wall)
141{
142 u64 idle_time = get_cpu_idle_time_us(cpu, wall);
143
144 if (idle_time == -1ULL)
145 return get_cpu_idle_time_jiffy(cpu, wall);
146
147 return idle_time;
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700148}
149
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200150/* keep track of frequency transitions */
151static int
152dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
153 void *data)
154{
155 struct cpufreq_freqs *freq = data;
156 struct cpu_dbs_info_s *this_dbs_info = &per_cpu(cpu_dbs_info,
157 freq->cpu);
158
Alexander Clouterf407a082009-02-13 19:01:51 +0000159 struct cpufreq_policy *policy;
160
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200161 if (!this_dbs_info->enable)
162 return 0;
163
Alexander Clouterf407a082009-02-13 19:01:51 +0000164 policy = this_dbs_info->cur_policy;
165
166 /*
167 * we only care if our internally tracked freq moves outside
168 * the 'valid' ranges of freqency available to us otherwise
169 * we do not change it
170 */
171 if (this_dbs_info->requested_freq > policy->max
172 || this_dbs_info->requested_freq < policy->min)
173 this_dbs_info->requested_freq = freq->new;
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200174
175 return 0;
176}
177
178static struct notifier_block dbs_cpufreq_notifier_block = {
179 .notifier_call = dbs_cpufreq_notifier
180};
181
Dave Jonesb9170832005-05-31 19:03:47 -0700182/************************** sysfs interface ************************/
183static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf)
184{
Thomas Renninger9411b4e2009-02-04 11:54:04 +0100185 static int print_once;
186
187 if (!print_once) {
188 printk(KERN_INFO "CPUFREQ: conservative sampling_rate_max "
189 "sysfs file is deprecated - used by: %s\n",
190 current->comm);
191 print_once = 1;
192 }
Dave Jones9acef482009-01-18 01:39:51 -0500193 return sprintf(buf, "%u\n", MAX_SAMPLING_RATE);
Dave Jonesb9170832005-05-31 19:03:47 -0700194}
195
196static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf)
197{
Thomas Renninger9411b4e2009-02-04 11:54:04 +0100198 static int print_once;
199
200 if (!print_once) {
201 printk(KERN_INFO "CPUFREQ: conservative sampling_rate_max "
202 "sysfs file is deprecated - used by: %s\n", current->comm);
203 print_once = 1;
204 }
Dave Jones9acef482009-01-18 01:39:51 -0500205 return sprintf(buf, "%u\n", MIN_SAMPLING_RATE);
Dave Jonesb9170832005-05-31 19:03:47 -0700206}
207
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000208#define define_one_ro(_name) \
209static struct freq_attr _name = \
Dave Jonesb9170832005-05-31 19:03:47 -0700210__ATTR(_name, 0444, show_##_name, NULL)
211
212define_one_ro(sampling_rate_max);
213define_one_ro(sampling_rate_min);
214
215/* cpufreq_conservative Governor Tunables */
216#define show_one(file_name, object) \
217static ssize_t show_##file_name \
218(struct cpufreq_policy *unused, char *buf) \
219{ \
220 return sprintf(buf, "%u\n", dbs_tuners_ins.object); \
221}
222show_one(sampling_rate, sampling_rate);
223show_one(sampling_down_factor, sampling_down_factor);
224show_one(up_threshold, up_threshold);
225show_one(down_threshold, down_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800226show_one(ignore_nice_load, ignore_nice);
Dave Jonesb9170832005-05-31 19:03:47 -0700227show_one(freq_step, freq_step);
228
Dave Jones18a72472007-10-22 16:49:09 -0400229static ssize_t store_sampling_down_factor(struct cpufreq_policy *unused,
Dave Jonesb9170832005-05-31 19:03:47 -0700230 const char *buf, size_t count)
231{
232 unsigned int input;
233 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500234 ret = sscanf(buf, "%u", &input);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000235
Alexander Clouter2c906b32006-03-22 09:54:10 +0000236 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700237 return -EINVAL;
238
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800239 mutex_lock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700240 dbs_tuners_ins.sampling_down_factor = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800241 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700242
243 return count;
244}
245
Dave Jones18a72472007-10-22 16:49:09 -0400246static ssize_t store_sampling_rate(struct cpufreq_policy *unused,
Dave Jonesb9170832005-05-31 19:03:47 -0700247 const char *buf, size_t count)
248{
249 unsigned int input;
250 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500251 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700252
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000253 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700254 return -EINVAL;
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000255
256 mutex_lock(&dbs_mutex);
Thomas Renninger112124a2009-02-04 11:55:12 +0100257 dbs_tuners_ins.sampling_rate = max(input, minimum_sampling_rate());
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800258 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700259
260 return count;
261}
262
Dave Jones18a72472007-10-22 16:49:09 -0400263static ssize_t store_up_threshold(struct cpufreq_policy *unused,
Dave Jonesb9170832005-05-31 19:03:47 -0700264 const char *buf, size_t count)
265{
266 unsigned int input;
267 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500268 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700269
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800270 mutex_lock(&dbs_mutex);
Dave Jones9acef482009-01-18 01:39:51 -0500271 if (ret != 1 || input > 100 ||
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000272 input <= dbs_tuners_ins.down_threshold) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800273 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700274 return -EINVAL;
275 }
276
277 dbs_tuners_ins.up_threshold = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800278 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700279
280 return count;
281}
282
Dave Jones18a72472007-10-22 16:49:09 -0400283static ssize_t store_down_threshold(struct cpufreq_policy *unused,
Dave Jonesb9170832005-05-31 19:03:47 -0700284 const char *buf, size_t count)
285{
286 unsigned int input;
287 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500288 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700289
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800290 mutex_lock(&dbs_mutex);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000291 /* cannot be lower than 11 otherwise freq will not fall */
292 if (ret != 1 || input < 11 || input > 100 ||
293 input >= dbs_tuners_ins.up_threshold) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800294 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700295 return -EINVAL;
296 }
297
298 dbs_tuners_ins.down_threshold = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800299 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700300
301 return count;
302}
303
Alexander Clouter001893c2005-12-01 01:09:25 -0800304static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy,
Dave Jonesb9170832005-05-31 19:03:47 -0700305 const char *buf, size_t count)
306{
307 unsigned int input;
308 int ret;
309
310 unsigned int j;
Dave Jones18a72472007-10-22 16:49:09 -0400311
312 ret = sscanf(buf, "%u", &input);
313 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700314 return -EINVAL;
315
Dave Jones18a72472007-10-22 16:49:09 -0400316 if (input > 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700317 input = 1;
Dave Jones18a72472007-10-22 16:49:09 -0400318
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800319 mutex_lock(&dbs_mutex);
Dave Jones18a72472007-10-22 16:49:09 -0400320 if (input == dbs_tuners_ins.ignore_nice) { /* nothing to do */
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800321 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700322 return count;
323 }
324 dbs_tuners_ins.ignore_nice = input;
325
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000326 /* we need to re-evaluate prev_cpu_idle */
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700327 for_each_online_cpu(j) {
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000328 struct cpu_dbs_info_s *dbs_info;
329 dbs_info = &per_cpu(cpu_dbs_info, j);
330 dbs_info->prev_cpu_idle = get_cpu_idle_time(j,
331 &dbs_info->prev_cpu_wall);
332 if (dbs_tuners_ins.ignore_nice)
333 dbs_info->prev_cpu_nice = kstat_cpu(j).cpustat.nice;
Dave Jonesb9170832005-05-31 19:03:47 -0700334 }
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800335 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700336
337 return count;
338}
339
340static ssize_t store_freq_step(struct cpufreq_policy *policy,
341 const char *buf, size_t count)
342{
343 unsigned int input;
344 int ret;
Dave Jones18a72472007-10-22 16:49:09 -0400345 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700346
Dave Jones18a72472007-10-22 16:49:09 -0400347 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700348 return -EINVAL;
349
Dave Jones18a72472007-10-22 16:49:09 -0400350 if (input > 100)
Dave Jonesb9170832005-05-31 19:03:47 -0700351 input = 100;
Dave Jones18a72472007-10-22 16:49:09 -0400352
Dave Jonesb9170832005-05-31 19:03:47 -0700353 /* no need to test here if freq_step is zero as the user might actually
354 * want this, they would be crazy though :) */
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800355 mutex_lock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700356 dbs_tuners_ins.freq_step = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800357 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700358
359 return count;
360}
361
362#define define_one_rw(_name) \
363static struct freq_attr _name = \
364__ATTR(_name, 0644, show_##_name, store_##_name)
365
366define_one_rw(sampling_rate);
367define_one_rw(sampling_down_factor);
368define_one_rw(up_threshold);
369define_one_rw(down_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800370define_one_rw(ignore_nice_load);
Dave Jonesb9170832005-05-31 19:03:47 -0700371define_one_rw(freq_step);
372
Dave Jones9acef482009-01-18 01:39:51 -0500373static struct attribute *dbs_attributes[] = {
Dave Jonesb9170832005-05-31 19:03:47 -0700374 &sampling_rate_max.attr,
375 &sampling_rate_min.attr,
376 &sampling_rate.attr,
377 &sampling_down_factor.attr,
378 &up_threshold.attr,
379 &down_threshold.attr,
Alexander Clouter001893c2005-12-01 01:09:25 -0800380 &ignore_nice_load.attr,
Dave Jonesb9170832005-05-31 19:03:47 -0700381 &freq_step.attr,
382 NULL
383};
384
385static struct attribute_group dbs_attr_group = {
386 .attrs = dbs_attributes,
387 .name = "conservative",
388};
389
390/************************** sysfs end ************************/
391
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000392static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info)
Dave Jonesb9170832005-05-31 19:03:47 -0700393{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000394 unsigned int load = 0;
Dave Jonesf068c042008-07-30 12:59:56 -0400395 unsigned int freq_target;
Dave Jonesb9170832005-05-31 19:03:47 -0700396
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000397 struct cpufreq_policy *policy;
398 unsigned int j;
Dave Jonesb9170832005-05-31 19:03:47 -0700399
Alexander Clouter08a28e22006-03-22 09:59:16 +0000400 policy = this_dbs_info->cur_policy;
401
Dave Jones18a72472007-10-22 16:49:09 -0400402 /*
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000403 * Every sampling_rate, we check, if current idle time is less
404 * than 20% (default), then we try to increase frequency
405 * Every sampling_rate*sampling_down_factor, we check, if current
406 * idle time is more than 80%, then we try to decrease frequency
Dave Jonesb9170832005-05-31 19:03:47 -0700407 *
Dave Jones18a72472007-10-22 16:49:09 -0400408 * Any frequency increase takes it to the maximum frequency.
409 * Frequency reduction happens at minimum steps of
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000410 * 5% (default) of maximum frequency
Dave Jonesb9170832005-05-31 19:03:47 -0700411 */
412
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000413 /* Get Absolute Load */
414 for_each_cpu(j, policy->cpus) {
415 struct cpu_dbs_info_s *j_dbs_info;
416 cputime64_t cur_wall_time, cur_idle_time;
417 unsigned int idle_time, wall_time;
418
419 j_dbs_info = &per_cpu(cpu_dbs_info, j);
420
421 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time);
422
423 wall_time = (unsigned int) cputime64_sub(cur_wall_time,
424 j_dbs_info->prev_cpu_wall);
425 j_dbs_info->prev_cpu_wall = cur_wall_time;
426
427 idle_time = (unsigned int) cputime64_sub(cur_idle_time,
428 j_dbs_info->prev_cpu_idle);
429 j_dbs_info->prev_cpu_idle = cur_idle_time;
430
431 if (dbs_tuners_ins.ignore_nice) {
432 cputime64_t cur_nice;
433 unsigned long cur_nice_jiffies;
434
435 cur_nice = cputime64_sub(kstat_cpu(j).cpustat.nice,
436 j_dbs_info->prev_cpu_nice);
437 /*
438 * Assumption: nice time between sampling periods will
439 * be less than 2^32 jiffies for 32 bit sys
440 */
441 cur_nice_jiffies = (unsigned long)
442 cputime64_to_jiffies64(cur_nice);
443
444 j_dbs_info->prev_cpu_nice = kstat_cpu(j).cpustat.nice;
445 idle_time += jiffies_to_usecs(cur_nice_jiffies);
446 }
447
448 if (unlikely(!wall_time || wall_time < idle_time))
449 continue;
450
451 load = 100 * (wall_time - idle_time) / wall_time;
452 }
453
454 /*
455 * break out if we 'cannot' reduce the speed as the user might
456 * want freq_step to be zero
457 */
458 if (dbs_tuners_ins.freq_step == 0)
459 return;
Dave Jonesb9170832005-05-31 19:03:47 -0700460
Alexander Clouter08a28e22006-03-22 09:59:16 +0000461 /* Check for frequency increase */
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000462 if (load > dbs_tuners_ins.up_threshold) {
Alexander Cloutera159b822006-03-22 10:00:18 +0000463 this_dbs_info->down_skip = 0;
Dave Jones790d76f2005-05-31 19:03:49 -0700464
Dave Jonesb9170832005-05-31 19:03:47 -0700465 /* if we are already at full speed then break out early */
Alexander Cloutera159b822006-03-22 10:00:18 +0000466 if (this_dbs_info->requested_freq == policy->max)
Dave Jonesb9170832005-05-31 19:03:47 -0700467 return;
Dave Jones18a72472007-10-22 16:49:09 -0400468
Dave Jonesf068c042008-07-30 12:59:56 -0400469 freq_target = (dbs_tuners_ins.freq_step * policy->max) / 100;
Dave Jonesb9170832005-05-31 19:03:47 -0700470
471 /* max freq cannot be less than 100. But who knows.... */
Dave Jonesf068c042008-07-30 12:59:56 -0400472 if (unlikely(freq_target == 0))
473 freq_target = 5;
Dave Jones18a72472007-10-22 16:49:09 -0400474
Dave Jonesf068c042008-07-30 12:59:56 -0400475 this_dbs_info->requested_freq += freq_target;
Alexander Cloutera159b822006-03-22 10:00:18 +0000476 if (this_dbs_info->requested_freq > policy->max)
477 this_dbs_info->requested_freq = policy->max;
Dave Jonesb9170832005-05-31 19:03:47 -0700478
Alexander Cloutera159b822006-03-22 10:00:18 +0000479 __cpufreq_driver_target(policy, this_dbs_info->requested_freq,
Dave Jonesb9170832005-05-31 19:03:47 -0700480 CPUFREQ_RELATION_H);
Dave Jonesb9170832005-05-31 19:03:47 -0700481 return;
482 }
483
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000484 /*
485 * The optimal frequency is the frequency that is the lowest that
486 * can support the current CPU usage without triggering the up
487 * policy. To be safe, we focus 10 points under the threshold.
488 */
489 if (load < (dbs_tuners_ins.down_threshold - 10)) {
Dave Jonesf068c042008-07-30 12:59:56 -0400490 freq_target = (dbs_tuners_ins.freq_step * policy->max) / 100;
Dave Jonesb9170832005-05-31 19:03:47 -0700491
Dave Jonesf068c042008-07-30 12:59:56 -0400492 this_dbs_info->requested_freq -= freq_target;
Alexander Cloutera159b822006-03-22 10:00:18 +0000493 if (this_dbs_info->requested_freq < policy->min)
494 this_dbs_info->requested_freq = policy->min;
Dave Jonesb9170832005-05-31 19:03:47 -0700495
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000496 /*
497 * if we cannot reduce the frequency anymore, break out early
498 */
499 if (policy->cur == policy->min)
500 return;
501
Alexander Cloutera159b822006-03-22 10:00:18 +0000502 __cpufreq_driver_target(policy, this_dbs_info->requested_freq,
Alexander Clouter2c906b32006-03-22 09:54:10 +0000503 CPUFREQ_RELATION_H);
Dave Jonesb9170832005-05-31 19:03:47 -0700504 return;
505 }
506}
507
David Howellsc4028952006-11-22 14:57:56 +0000508static void do_dbs_timer(struct work_struct *work)
Dave Jones18a72472007-10-22 16:49:09 -0400509{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000510 struct cpu_dbs_info_s *dbs_info =
511 container_of(work, struct cpu_dbs_info_s, work.work);
512 unsigned int cpu = dbs_info->cpu;
513
514 /* We want all CPUs to do sampling nearly on same jiffy */
515 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
516
517 delay -= jiffies % delay;
518
519 if (lock_policy_rwsem_write(cpu) < 0)
520 return;
521
522 if (!dbs_info->enable) {
523 unlock_policy_rwsem_write(cpu);
524 return;
525 }
526
527 dbs_check_cpu(dbs_info);
528
529 queue_delayed_work_on(cpu, kconservative_wq, &dbs_info->work, delay);
530 unlock_policy_rwsem_write(cpu);
Dave Jones18a72472007-10-22 16:49:09 -0400531}
Dave Jonesb9170832005-05-31 19:03:47 -0700532
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000533static inline void dbs_timer_init(struct cpu_dbs_info_s *dbs_info)
Dave Jonesb9170832005-05-31 19:03:47 -0700534{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000535 /* We want all CPUs to do sampling nearly on same jiffy */
536 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
537 delay -= jiffies % delay;
538
539 dbs_info->enable = 1;
540 INIT_DELAYED_WORK_DEFERRABLE(&dbs_info->work, do_dbs_timer);
541 queue_delayed_work_on(dbs_info->cpu, kconservative_wq, &dbs_info->work,
542 delay);
Dave Jonesb9170832005-05-31 19:03:47 -0700543}
544
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000545static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info)
Dave Jonesb9170832005-05-31 19:03:47 -0700546{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000547 dbs_info->enable = 0;
Mathieu Desnoyersb253d2b2009-05-17 10:29:33 -0400548 cancel_delayed_work_sync(&dbs_info->work);
Dave Jonesb9170832005-05-31 19:03:47 -0700549}
550
551static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
552 unsigned int event)
553{
554 unsigned int cpu = policy->cpu;
555 struct cpu_dbs_info_s *this_dbs_info;
556 unsigned int j;
Jeff Garzik914f7c32006-10-20 14:31:00 -0700557 int rc;
Dave Jonesb9170832005-05-31 19:03:47 -0700558
559 this_dbs_info = &per_cpu(cpu_dbs_info, cpu);
560
561 switch (event) {
562 case CPUFREQ_GOV_START:
Dave Jones18a72472007-10-22 16:49:09 -0400563 if ((!cpu_online(cpu)) || (!policy->cur))
Dave Jonesb9170832005-05-31 19:03:47 -0700564 return -EINVAL;
565
Dave Jonesb9170832005-05-31 19:03:47 -0700566 if (this_dbs_info->enable) /* Already enabled */
567 break;
Dave Jones18a72472007-10-22 16:49:09 -0400568
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800569 mutex_lock(&dbs_mutex);
Jeff Garzik914f7c32006-10-20 14:31:00 -0700570
571 rc = sysfs_create_group(&policy->kobj, &dbs_attr_group);
572 if (rc) {
573 mutex_unlock(&dbs_mutex);
574 return rc;
575 }
576
Rusty Russell835481d2009-01-04 05:18:06 -0800577 for_each_cpu(j, policy->cpus) {
Dave Jonesb9170832005-05-31 19:03:47 -0700578 struct cpu_dbs_info_s *j_dbs_info;
579 j_dbs_info = &per_cpu(cpu_dbs_info, j);
580 j_dbs_info->cur_policy = policy;
Dave Jones18a72472007-10-22 16:49:09 -0400581
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000582 j_dbs_info->prev_cpu_idle = get_cpu_idle_time(j,
583 &j_dbs_info->prev_cpu_wall);
584 if (dbs_tuners_ins.ignore_nice) {
585 j_dbs_info->prev_cpu_nice =
586 kstat_cpu(j).cpustat.nice;
587 }
Dave Jonesb9170832005-05-31 19:03:47 -0700588 }
Alexander Cloutera159b822006-03-22 10:00:18 +0000589 this_dbs_info->down_skip = 0;
590 this_dbs_info->requested_freq = policy->cur;
Jeff Garzik914f7c32006-10-20 14:31:00 -0700591
Dave Jonesb9170832005-05-31 19:03:47 -0700592 dbs_enable++;
593 /*
594 * Start the timerschedule work, when this governor
595 * is used for first time
596 */
597 if (dbs_enable == 1) {
598 unsigned int latency;
599 /* policy latency is in nS. Convert it to uS first */
Alexander Clouter2c906b32006-03-22 09:54:10 +0000600 latency = policy->cpuinfo.transition_latency / 1000;
601 if (latency == 0)
602 latency = 1;
Dave Jonesb9170832005-05-31 19:03:47 -0700603
Thomas Renninger112124a2009-02-04 11:55:12 +0100604 def_sampling_rate =
Alexander Cloutera75603a2009-02-13 19:03:26 +0000605 max(latency * LATENCY_MULTIPLIER,
Thomas Renninger112124a2009-02-04 11:55:12 +0100606 MIN_STAT_SAMPLING_RATE);
Alexander Clouter2c906b32006-03-22 09:54:10 +0000607
Dave Jonesb9170832005-05-31 19:03:47 -0700608 dbs_tuners_ins.sampling_rate = def_sampling_rate;
Dave Jonesb9170832005-05-31 19:03:47 -0700609
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200610 cpufreq_register_notifier(
611 &dbs_cpufreq_notifier_block,
612 CPUFREQ_TRANSITION_NOTIFIER);
Dave Jonesb9170832005-05-31 19:03:47 -0700613 }
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000614 dbs_timer_init(this_dbs_info);
Dave Jones18a72472007-10-22 16:49:09 -0400615
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800616 mutex_unlock(&dbs_mutex);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000617
Dave Jonesb9170832005-05-31 19:03:47 -0700618 break;
619
620 case CPUFREQ_GOV_STOP:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800621 mutex_lock(&dbs_mutex);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000622 dbs_timer_exit(this_dbs_info);
Dave Jonesb9170832005-05-31 19:03:47 -0700623 sysfs_remove_group(&policy->kobj, &dbs_attr_group);
624 dbs_enable--;
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000625
Dave Jonesb9170832005-05-31 19:03:47 -0700626 /*
627 * Stop the timerschedule work, when this governor
628 * is used for first time
629 */
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000630 if (dbs_enable == 0)
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200631 cpufreq_unregister_notifier(
632 &dbs_cpufreq_notifier_block,
633 CPUFREQ_TRANSITION_NOTIFIER);
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200634
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800635 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700636
637 break;
638
639 case CPUFREQ_GOV_LIMITS:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800640 mutex_lock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700641 if (policy->max < this_dbs_info->cur_policy->cur)
642 __cpufreq_driver_target(
643 this_dbs_info->cur_policy,
Dave Jones18a72472007-10-22 16:49:09 -0400644 policy->max, CPUFREQ_RELATION_H);
Dave Jonesb9170832005-05-31 19:03:47 -0700645 else if (policy->min > this_dbs_info->cur_policy->cur)
646 __cpufreq_driver_target(
647 this_dbs_info->cur_policy,
Dave Jones18a72472007-10-22 16:49:09 -0400648 policy->min, CPUFREQ_RELATION_L);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800649 mutex_unlock(&dbs_mutex);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000650
Dave Jonesb9170832005-05-31 19:03:47 -0700651 break;
652 }
653 return 0;
654}
655
Sven Wegenerc4d14bc2008-09-20 16:50:08 +0200656#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
657static
658#endif
Thomas Renninger1c256242007-10-02 13:28:12 -0700659struct cpufreq_governor cpufreq_gov_conservative = {
660 .name = "conservative",
661 .governor = cpufreq_governor_dbs,
662 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
663 .owner = THIS_MODULE,
Dave Jonesb9170832005-05-31 19:03:47 -0700664};
665
666static int __init cpufreq_gov_dbs_init(void)
667{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000668 int err;
669
670 kconservative_wq = create_workqueue("kconservative");
671 if (!kconservative_wq) {
672 printk(KERN_ERR "Creation of kconservative failed\n");
673 return -EFAULT;
674 }
675
676 err = cpufreq_register_governor(&cpufreq_gov_conservative);
677 if (err)
678 destroy_workqueue(kconservative_wq);
679
680 return err;
Dave Jonesb9170832005-05-31 19:03:47 -0700681}
682
683static void __exit cpufreq_gov_dbs_exit(void)
684{
Thomas Renninger1c256242007-10-02 13:28:12 -0700685 cpufreq_unregister_governor(&cpufreq_gov_conservative);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000686 destroy_workqueue(kconservative_wq);
Dave Jonesb9170832005-05-31 19:03:47 -0700687}
688
689
Alexander Clouter11a80a9c762009-02-13 19:01:01 +0000690MODULE_AUTHOR("Alexander Clouter <alex@digriz.org.uk>");
Dave Jones9acef482009-01-18 01:39:51 -0500691MODULE_DESCRIPTION("'cpufreq_conservative' - A dynamic cpufreq governor for "
Dave Jonesb9170832005-05-31 19:03:47 -0700692 "Low Latency Frequency Transition capable processors "
693 "optimised for use in a battery environment");
Dave Jones9acef482009-01-18 01:39:51 -0500694MODULE_LICENSE("GPL");
Dave Jonesb9170832005-05-31 19:03:47 -0700695
Johannes Weiner69157192008-01-17 15:21:08 -0800696#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
697fs_initcall(cpufreq_gov_dbs_init);
698#else
Dave Jonesb9170832005-05-31 19:03:47 -0700699module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800700#endif
Dave Jonesb9170832005-05-31 19:03:47 -0700701module_exit(cpufreq_gov_dbs_exit);