blob: 2ecd95e4ab1aca33c6e858698d0c16f1b28a19ba [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
94 */
Dave Jones9acef482009-01-18 01:39:51 -050095static DEFINE_MUTEX(dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -070096
Alexander Clouter8e677ce2009-02-13 19:02:34 +000097static struct workqueue_struct *kconservative_wq;
98
99static struct dbs_tuners {
Dave Jones18a72472007-10-22 16:49:09 -0400100 unsigned int sampling_rate;
101 unsigned int sampling_down_factor;
102 unsigned int up_threshold;
103 unsigned int down_threshold;
104 unsigned int ignore_nice;
105 unsigned int freq_step;
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000106} dbs_tuners_ins = {
Dave Jones18a72472007-10-22 16:49:09 -0400107 .up_threshold = DEF_FREQUENCY_UP_THRESHOLD,
108 .down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD,
109 .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR,
110 .ignore_nice = 0,
111 .freq_step = 5,
Dave Jonesb9170832005-05-31 19:03:47 -0700112};
113
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000114static inline cputime64_t get_cpu_idle_time_jiffy(unsigned int cpu,
115 cputime64_t *wall)
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700116{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000117 cputime64_t idle_time;
118 cputime64_t cur_wall_time;
119 cputime64_t busy_time;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530120
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000121 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
122 busy_time = cputime64_add(kstat_cpu(cpu).cpustat.user,
123 kstat_cpu(cpu).cpustat.system);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530124
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000125 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.irq);
126 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.softirq);
127 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.steal);
128 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.nice);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530129
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000130 idle_time = cputime64_sub(cur_wall_time, busy_time);
131 if (wall)
132 *wall = cur_wall_time;
133
134 return idle_time;
135}
136
137static inline cputime64_t get_cpu_idle_time(unsigned int cpu, cputime64_t *wall)
138{
139 u64 idle_time = get_cpu_idle_time_us(cpu, wall);
140
141 if (idle_time == -1ULL)
142 return get_cpu_idle_time_jiffy(cpu, wall);
143
144 return idle_time;
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700145}
146
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200147/* keep track of frequency transitions */
148static int
149dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
150 void *data)
151{
152 struct cpufreq_freqs *freq = data;
153 struct cpu_dbs_info_s *this_dbs_info = &per_cpu(cpu_dbs_info,
154 freq->cpu);
155
Alexander Clouterf407a082009-02-13 19:01:51 +0000156 struct cpufreq_policy *policy;
157
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200158 if (!this_dbs_info->enable)
159 return 0;
160
Alexander Clouterf407a082009-02-13 19:01:51 +0000161 policy = this_dbs_info->cur_policy;
162
163 /*
164 * we only care if our internally tracked freq moves outside
165 * the 'valid' ranges of freqency available to us otherwise
166 * we do not change it
167 */
168 if (this_dbs_info->requested_freq > policy->max
169 || this_dbs_info->requested_freq < policy->min)
170 this_dbs_info->requested_freq = freq->new;
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200171
172 return 0;
173}
174
175static struct notifier_block dbs_cpufreq_notifier_block = {
176 .notifier_call = dbs_cpufreq_notifier
177};
178
Dave Jonesb9170832005-05-31 19:03:47 -0700179/************************** sysfs interface ************************/
180static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf)
181{
Thomas Renninger9411b4e2009-02-04 11:54:04 +0100182 static int print_once;
183
184 if (!print_once) {
185 printk(KERN_INFO "CPUFREQ: conservative sampling_rate_max "
186 "sysfs file is deprecated - used by: %s\n",
187 current->comm);
188 print_once = 1;
189 }
Dave Jones9acef482009-01-18 01:39:51 -0500190 return sprintf(buf, "%u\n", MAX_SAMPLING_RATE);
Dave Jonesb9170832005-05-31 19:03:47 -0700191}
192
193static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf)
194{
Thomas Renninger9411b4e2009-02-04 11:54:04 +0100195 static int print_once;
196
197 if (!print_once) {
198 printk(KERN_INFO "CPUFREQ: conservative sampling_rate_max "
199 "sysfs file is deprecated - used by: %s\n", current->comm);
200 print_once = 1;
201 }
Dave Jones9acef482009-01-18 01:39:51 -0500202 return sprintf(buf, "%u\n", MIN_SAMPLING_RATE);
Dave Jonesb9170832005-05-31 19:03:47 -0700203}
204
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000205#define define_one_ro(_name) \
206static struct freq_attr _name = \
Dave Jonesb9170832005-05-31 19:03:47 -0700207__ATTR(_name, 0444, show_##_name, NULL)
208
209define_one_ro(sampling_rate_max);
210define_one_ro(sampling_rate_min);
211
212/* cpufreq_conservative Governor Tunables */
213#define show_one(file_name, object) \
214static ssize_t show_##file_name \
215(struct cpufreq_policy *unused, char *buf) \
216{ \
217 return sprintf(buf, "%u\n", dbs_tuners_ins.object); \
218}
219show_one(sampling_rate, sampling_rate);
220show_one(sampling_down_factor, sampling_down_factor);
221show_one(up_threshold, up_threshold);
222show_one(down_threshold, down_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800223show_one(ignore_nice_load, ignore_nice);
Dave Jonesb9170832005-05-31 19:03:47 -0700224show_one(freq_step, freq_step);
225
Dave Jones18a72472007-10-22 16:49:09 -0400226static ssize_t store_sampling_down_factor(struct cpufreq_policy *unused,
Dave Jonesb9170832005-05-31 19:03:47 -0700227 const char *buf, size_t count)
228{
229 unsigned int input;
230 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500231 ret = sscanf(buf, "%u", &input);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000232
Alexander Clouter2c906b32006-03-22 09:54:10 +0000233 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700234 return -EINVAL;
235
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800236 mutex_lock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700237 dbs_tuners_ins.sampling_down_factor = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800238 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700239
240 return count;
241}
242
Dave Jones18a72472007-10-22 16:49:09 -0400243static ssize_t store_sampling_rate(struct cpufreq_policy *unused,
Dave Jonesb9170832005-05-31 19:03:47 -0700244 const char *buf, size_t count)
245{
246 unsigned int input;
247 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500248 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700249
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000250 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700251 return -EINVAL;
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000252
253 mutex_lock(&dbs_mutex);
Thomas Renninger112124a2009-02-04 11:55:12 +0100254 dbs_tuners_ins.sampling_rate = max(input, minimum_sampling_rate());
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800255 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700256
257 return count;
258}
259
Dave Jones18a72472007-10-22 16:49:09 -0400260static ssize_t store_up_threshold(struct cpufreq_policy *unused,
Dave Jonesb9170832005-05-31 19:03:47 -0700261 const char *buf, size_t count)
262{
263 unsigned int input;
264 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500265 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700266
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800267 mutex_lock(&dbs_mutex);
Dave Jones9acef482009-01-18 01:39:51 -0500268 if (ret != 1 || input > 100 ||
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000269 input <= dbs_tuners_ins.down_threshold) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800270 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700271 return -EINVAL;
272 }
273
274 dbs_tuners_ins.up_threshold = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800275 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700276
277 return count;
278}
279
Dave Jones18a72472007-10-22 16:49:09 -0400280static ssize_t store_down_threshold(struct cpufreq_policy *unused,
Dave Jonesb9170832005-05-31 19:03:47 -0700281 const char *buf, size_t count)
282{
283 unsigned int input;
284 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500285 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700286
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800287 mutex_lock(&dbs_mutex);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000288 /* cannot be lower than 11 otherwise freq will not fall */
289 if (ret != 1 || input < 11 || input > 100 ||
290 input >= dbs_tuners_ins.up_threshold) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800291 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700292 return -EINVAL;
293 }
294
295 dbs_tuners_ins.down_threshold = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800296 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700297
298 return count;
299}
300
Alexander Clouter001893c2005-12-01 01:09:25 -0800301static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy,
Dave Jonesb9170832005-05-31 19:03:47 -0700302 const char *buf, size_t count)
303{
304 unsigned int input;
305 int ret;
306
307 unsigned int j;
Dave Jones18a72472007-10-22 16:49:09 -0400308
309 ret = sscanf(buf, "%u", &input);
310 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700311 return -EINVAL;
312
Dave Jones18a72472007-10-22 16:49:09 -0400313 if (input > 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700314 input = 1;
Dave Jones18a72472007-10-22 16:49:09 -0400315
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800316 mutex_lock(&dbs_mutex);
Dave Jones18a72472007-10-22 16:49:09 -0400317 if (input == dbs_tuners_ins.ignore_nice) { /* nothing to do */
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800318 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700319 return count;
320 }
321 dbs_tuners_ins.ignore_nice = input;
322
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000323 /* we need to re-evaluate prev_cpu_idle */
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700324 for_each_online_cpu(j) {
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000325 struct cpu_dbs_info_s *dbs_info;
326 dbs_info = &per_cpu(cpu_dbs_info, j);
327 dbs_info->prev_cpu_idle = get_cpu_idle_time(j,
328 &dbs_info->prev_cpu_wall);
329 if (dbs_tuners_ins.ignore_nice)
330 dbs_info->prev_cpu_nice = kstat_cpu(j).cpustat.nice;
Dave Jonesb9170832005-05-31 19:03:47 -0700331 }
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800332 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700333
334 return count;
335}
336
337static ssize_t store_freq_step(struct cpufreq_policy *policy,
338 const char *buf, size_t count)
339{
340 unsigned int input;
341 int ret;
Dave Jones18a72472007-10-22 16:49:09 -0400342 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700343
Dave Jones18a72472007-10-22 16:49:09 -0400344 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700345 return -EINVAL;
346
Dave Jones18a72472007-10-22 16:49:09 -0400347 if (input > 100)
Dave Jonesb9170832005-05-31 19:03:47 -0700348 input = 100;
Dave Jones18a72472007-10-22 16:49:09 -0400349
Dave Jonesb9170832005-05-31 19:03:47 -0700350 /* no need to test here if freq_step is zero as the user might actually
351 * want this, they would be crazy though :) */
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800352 mutex_lock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700353 dbs_tuners_ins.freq_step = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800354 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700355
356 return count;
357}
358
359#define define_one_rw(_name) \
360static struct freq_attr _name = \
361__ATTR(_name, 0644, show_##_name, store_##_name)
362
363define_one_rw(sampling_rate);
364define_one_rw(sampling_down_factor);
365define_one_rw(up_threshold);
366define_one_rw(down_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800367define_one_rw(ignore_nice_load);
Dave Jonesb9170832005-05-31 19:03:47 -0700368define_one_rw(freq_step);
369
Dave Jones9acef482009-01-18 01:39:51 -0500370static struct attribute *dbs_attributes[] = {
Dave Jonesb9170832005-05-31 19:03:47 -0700371 &sampling_rate_max.attr,
372 &sampling_rate_min.attr,
373 &sampling_rate.attr,
374 &sampling_down_factor.attr,
375 &up_threshold.attr,
376 &down_threshold.attr,
Alexander Clouter001893c2005-12-01 01:09:25 -0800377 &ignore_nice_load.attr,
Dave Jonesb9170832005-05-31 19:03:47 -0700378 &freq_step.attr,
379 NULL
380};
381
382static struct attribute_group dbs_attr_group = {
383 .attrs = dbs_attributes,
384 .name = "conservative",
385};
386
387/************************** sysfs end ************************/
388
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000389static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info)
Dave Jonesb9170832005-05-31 19:03:47 -0700390{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000391 unsigned int load = 0;
Dave Jonesf068c042008-07-30 12:59:56 -0400392 unsigned int freq_target;
Dave Jonesb9170832005-05-31 19:03:47 -0700393
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000394 struct cpufreq_policy *policy;
395 unsigned int j;
Dave Jonesb9170832005-05-31 19:03:47 -0700396
Alexander Clouter08a28e22006-03-22 09:59:16 +0000397 policy = this_dbs_info->cur_policy;
398
Dave Jones18a72472007-10-22 16:49:09 -0400399 /*
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000400 * Every sampling_rate, we check, if current idle time is less
401 * than 20% (default), then we try to increase frequency
402 * Every sampling_rate*sampling_down_factor, we check, if current
403 * idle time is more than 80%, then we try to decrease frequency
Dave Jonesb9170832005-05-31 19:03:47 -0700404 *
Dave Jones18a72472007-10-22 16:49:09 -0400405 * Any frequency increase takes it to the maximum frequency.
406 * Frequency reduction happens at minimum steps of
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000407 * 5% (default) of maximum frequency
Dave Jonesb9170832005-05-31 19:03:47 -0700408 */
409
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000410 /* Get Absolute Load */
411 for_each_cpu(j, policy->cpus) {
412 struct cpu_dbs_info_s *j_dbs_info;
413 cputime64_t cur_wall_time, cur_idle_time;
414 unsigned int idle_time, wall_time;
415
416 j_dbs_info = &per_cpu(cpu_dbs_info, j);
417
418 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time);
419
420 wall_time = (unsigned int) cputime64_sub(cur_wall_time,
421 j_dbs_info->prev_cpu_wall);
422 j_dbs_info->prev_cpu_wall = cur_wall_time;
423
424 idle_time = (unsigned int) cputime64_sub(cur_idle_time,
425 j_dbs_info->prev_cpu_idle);
426 j_dbs_info->prev_cpu_idle = cur_idle_time;
427
428 if (dbs_tuners_ins.ignore_nice) {
429 cputime64_t cur_nice;
430 unsigned long cur_nice_jiffies;
431
432 cur_nice = cputime64_sub(kstat_cpu(j).cpustat.nice,
433 j_dbs_info->prev_cpu_nice);
434 /*
435 * Assumption: nice time between sampling periods will
436 * be less than 2^32 jiffies for 32 bit sys
437 */
438 cur_nice_jiffies = (unsigned long)
439 cputime64_to_jiffies64(cur_nice);
440
441 j_dbs_info->prev_cpu_nice = kstat_cpu(j).cpustat.nice;
442 idle_time += jiffies_to_usecs(cur_nice_jiffies);
443 }
444
445 if (unlikely(!wall_time || wall_time < idle_time))
446 continue;
447
448 load = 100 * (wall_time - idle_time) / wall_time;
449 }
450
451 /*
452 * break out if we 'cannot' reduce the speed as the user might
453 * want freq_step to be zero
454 */
455 if (dbs_tuners_ins.freq_step == 0)
456 return;
Dave Jonesb9170832005-05-31 19:03:47 -0700457
Alexander Clouter08a28e22006-03-22 09:59:16 +0000458 /* Check for frequency increase */
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000459 if (load > dbs_tuners_ins.up_threshold) {
Alexander Cloutera159b822006-03-22 10:00:18 +0000460 this_dbs_info->down_skip = 0;
Dave Jones790d76f2005-05-31 19:03:49 -0700461
Dave Jonesb9170832005-05-31 19:03:47 -0700462 /* if we are already at full speed then break out early */
Alexander Cloutera159b822006-03-22 10:00:18 +0000463 if (this_dbs_info->requested_freq == policy->max)
Dave Jonesb9170832005-05-31 19:03:47 -0700464 return;
Dave Jones18a72472007-10-22 16:49:09 -0400465
Dave Jonesf068c042008-07-30 12:59:56 -0400466 freq_target = (dbs_tuners_ins.freq_step * policy->max) / 100;
Dave Jonesb9170832005-05-31 19:03:47 -0700467
468 /* max freq cannot be less than 100. But who knows.... */
Dave Jonesf068c042008-07-30 12:59:56 -0400469 if (unlikely(freq_target == 0))
470 freq_target = 5;
Dave Jones18a72472007-10-22 16:49:09 -0400471
Dave Jonesf068c042008-07-30 12:59:56 -0400472 this_dbs_info->requested_freq += freq_target;
Alexander Cloutera159b822006-03-22 10:00:18 +0000473 if (this_dbs_info->requested_freq > policy->max)
474 this_dbs_info->requested_freq = policy->max;
Dave Jonesb9170832005-05-31 19:03:47 -0700475
Alexander Cloutera159b822006-03-22 10:00:18 +0000476 __cpufreq_driver_target(policy, this_dbs_info->requested_freq,
Dave Jonesb9170832005-05-31 19:03:47 -0700477 CPUFREQ_RELATION_H);
Dave Jonesb9170832005-05-31 19:03:47 -0700478 return;
479 }
480
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000481 /*
482 * The optimal frequency is the frequency that is the lowest that
483 * can support the current CPU usage without triggering the up
484 * policy. To be safe, we focus 10 points under the threshold.
485 */
486 if (load < (dbs_tuners_ins.down_threshold - 10)) {
Dave Jonesf068c042008-07-30 12:59:56 -0400487 freq_target = (dbs_tuners_ins.freq_step * policy->max) / 100;
Dave Jonesb9170832005-05-31 19:03:47 -0700488
Dave Jonesf068c042008-07-30 12:59:56 -0400489 this_dbs_info->requested_freq -= freq_target;
Alexander Cloutera159b822006-03-22 10:00:18 +0000490 if (this_dbs_info->requested_freq < policy->min)
491 this_dbs_info->requested_freq = policy->min;
Dave Jonesb9170832005-05-31 19:03:47 -0700492
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000493 /*
494 * if we cannot reduce the frequency anymore, break out early
495 */
496 if (policy->cur == policy->min)
497 return;
498
Alexander Cloutera159b822006-03-22 10:00:18 +0000499 __cpufreq_driver_target(policy, this_dbs_info->requested_freq,
Alexander Clouter2c906b32006-03-22 09:54:10 +0000500 CPUFREQ_RELATION_H);
Dave Jonesb9170832005-05-31 19:03:47 -0700501 return;
502 }
503}
504
David Howellsc4028952006-11-22 14:57:56 +0000505static void do_dbs_timer(struct work_struct *work)
Dave Jones18a72472007-10-22 16:49:09 -0400506{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000507 struct cpu_dbs_info_s *dbs_info =
508 container_of(work, struct cpu_dbs_info_s, work.work);
509 unsigned int cpu = dbs_info->cpu;
510
511 /* We want all CPUs to do sampling nearly on same jiffy */
512 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
513
514 delay -= jiffies % delay;
515
516 if (lock_policy_rwsem_write(cpu) < 0)
517 return;
518
519 if (!dbs_info->enable) {
520 unlock_policy_rwsem_write(cpu);
521 return;
522 }
523
524 dbs_check_cpu(dbs_info);
525
526 queue_delayed_work_on(cpu, kconservative_wq, &dbs_info->work, delay);
527 unlock_policy_rwsem_write(cpu);
Dave Jones18a72472007-10-22 16:49:09 -0400528}
Dave Jonesb9170832005-05-31 19:03:47 -0700529
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000530static inline void dbs_timer_init(struct cpu_dbs_info_s *dbs_info)
Dave Jonesb9170832005-05-31 19:03:47 -0700531{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000532 /* We want all CPUs to do sampling nearly on same jiffy */
533 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
534 delay -= jiffies % delay;
535
536 dbs_info->enable = 1;
537 INIT_DELAYED_WORK_DEFERRABLE(&dbs_info->work, do_dbs_timer);
538 queue_delayed_work_on(dbs_info->cpu, kconservative_wq, &dbs_info->work,
539 delay);
Dave Jonesb9170832005-05-31 19:03:47 -0700540}
541
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000542static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info)
Dave Jonesb9170832005-05-31 19:03:47 -0700543{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000544 dbs_info->enable = 0;
545 cancel_delayed_work(&dbs_info->work);
Dave Jonesb9170832005-05-31 19:03:47 -0700546}
547
548static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
549 unsigned int event)
550{
551 unsigned int cpu = policy->cpu;
552 struct cpu_dbs_info_s *this_dbs_info;
553 unsigned int j;
Jeff Garzik914f7c32006-10-20 14:31:00 -0700554 int rc;
Dave Jonesb9170832005-05-31 19:03:47 -0700555
556 this_dbs_info = &per_cpu(cpu_dbs_info, cpu);
557
558 switch (event) {
559 case CPUFREQ_GOV_START:
Dave Jones18a72472007-10-22 16:49:09 -0400560 if ((!cpu_online(cpu)) || (!policy->cur))
Dave Jonesb9170832005-05-31 19:03:47 -0700561 return -EINVAL;
562
Dave Jonesb9170832005-05-31 19:03:47 -0700563 if (this_dbs_info->enable) /* Already enabled */
564 break;
Dave Jones18a72472007-10-22 16:49:09 -0400565
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800566 mutex_lock(&dbs_mutex);
Jeff Garzik914f7c32006-10-20 14:31:00 -0700567
568 rc = sysfs_create_group(&policy->kobj, &dbs_attr_group);
569 if (rc) {
570 mutex_unlock(&dbs_mutex);
571 return rc;
572 }
573
Rusty Russell835481d2009-01-04 05:18:06 -0800574 for_each_cpu(j, policy->cpus) {
Dave Jonesb9170832005-05-31 19:03:47 -0700575 struct cpu_dbs_info_s *j_dbs_info;
576 j_dbs_info = &per_cpu(cpu_dbs_info, j);
577 j_dbs_info->cur_policy = policy;
Dave Jones18a72472007-10-22 16:49:09 -0400578
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000579 j_dbs_info->prev_cpu_idle = get_cpu_idle_time(j,
580 &j_dbs_info->prev_cpu_wall);
581 if (dbs_tuners_ins.ignore_nice) {
582 j_dbs_info->prev_cpu_nice =
583 kstat_cpu(j).cpustat.nice;
584 }
Dave Jonesb9170832005-05-31 19:03:47 -0700585 }
Alexander Cloutera159b822006-03-22 10:00:18 +0000586 this_dbs_info->down_skip = 0;
587 this_dbs_info->requested_freq = policy->cur;
Jeff Garzik914f7c32006-10-20 14:31:00 -0700588
Dave Jonesb9170832005-05-31 19:03:47 -0700589 dbs_enable++;
590 /*
591 * Start the timerschedule work, when this governor
592 * is used for first time
593 */
594 if (dbs_enable == 1) {
595 unsigned int latency;
596 /* policy latency is in nS. Convert it to uS first */
Alexander Clouter2c906b32006-03-22 09:54:10 +0000597 latency = policy->cpuinfo.transition_latency / 1000;
598 if (latency == 0)
599 latency = 1;
Dave Jonesb9170832005-05-31 19:03:47 -0700600
Thomas Renninger112124a2009-02-04 11:55:12 +0100601 def_sampling_rate =
Alexander Cloutera75603a2009-02-13 19:03:26 +0000602 max(latency * LATENCY_MULTIPLIER,
Thomas Renninger112124a2009-02-04 11:55:12 +0100603 MIN_STAT_SAMPLING_RATE);
Alexander Clouter2c906b32006-03-22 09:54:10 +0000604
Dave Jonesb9170832005-05-31 19:03:47 -0700605 dbs_tuners_ins.sampling_rate = def_sampling_rate;
Dave Jonesb9170832005-05-31 19:03:47 -0700606
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200607 cpufreq_register_notifier(
608 &dbs_cpufreq_notifier_block,
609 CPUFREQ_TRANSITION_NOTIFIER);
Dave Jonesb9170832005-05-31 19:03:47 -0700610 }
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000611 dbs_timer_init(this_dbs_info);
Dave Jones18a72472007-10-22 16:49:09 -0400612
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800613 mutex_unlock(&dbs_mutex);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000614
Dave Jonesb9170832005-05-31 19:03:47 -0700615 break;
616
617 case CPUFREQ_GOV_STOP:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800618 mutex_lock(&dbs_mutex);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000619 dbs_timer_exit(this_dbs_info);
Dave Jonesb9170832005-05-31 19:03:47 -0700620 sysfs_remove_group(&policy->kobj, &dbs_attr_group);
621 dbs_enable--;
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000622
Dave Jonesb9170832005-05-31 19:03:47 -0700623 /*
624 * Stop the timerschedule work, when this governor
625 * is used for first time
626 */
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000627 if (dbs_enable == 0)
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200628 cpufreq_unregister_notifier(
629 &dbs_cpufreq_notifier_block,
630 CPUFREQ_TRANSITION_NOTIFIER);
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200631
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800632 mutex_unlock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700633
634 break;
635
636 case CPUFREQ_GOV_LIMITS:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800637 mutex_lock(&dbs_mutex);
Dave Jonesb9170832005-05-31 19:03:47 -0700638 if (policy->max < this_dbs_info->cur_policy->cur)
639 __cpufreq_driver_target(
640 this_dbs_info->cur_policy,
Dave Jones18a72472007-10-22 16:49:09 -0400641 policy->max, CPUFREQ_RELATION_H);
Dave Jonesb9170832005-05-31 19:03:47 -0700642 else if (policy->min > this_dbs_info->cur_policy->cur)
643 __cpufreq_driver_target(
644 this_dbs_info->cur_policy,
Dave Jones18a72472007-10-22 16:49:09 -0400645 policy->min, CPUFREQ_RELATION_L);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800646 mutex_unlock(&dbs_mutex);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000647
Dave Jonesb9170832005-05-31 19:03:47 -0700648 break;
649 }
650 return 0;
651}
652
Sven Wegenerc4d14bc2008-09-20 16:50:08 +0200653#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
654static
655#endif
Thomas Renninger1c256242007-10-02 13:28:12 -0700656struct cpufreq_governor cpufreq_gov_conservative = {
657 .name = "conservative",
658 .governor = cpufreq_governor_dbs,
659 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
660 .owner = THIS_MODULE,
Dave Jonesb9170832005-05-31 19:03:47 -0700661};
662
663static int __init cpufreq_gov_dbs_init(void)
664{
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000665 int err;
666
667 kconservative_wq = create_workqueue("kconservative");
668 if (!kconservative_wq) {
669 printk(KERN_ERR "Creation of kconservative failed\n");
670 return -EFAULT;
671 }
672
673 err = cpufreq_register_governor(&cpufreq_gov_conservative);
674 if (err)
675 destroy_workqueue(kconservative_wq);
676
677 return err;
Dave Jonesb9170832005-05-31 19:03:47 -0700678}
679
680static void __exit cpufreq_gov_dbs_exit(void)
681{
Thomas Renninger1c256242007-10-02 13:28:12 -0700682 cpufreq_unregister_governor(&cpufreq_gov_conservative);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000683 destroy_workqueue(kconservative_wq);
Dave Jonesb9170832005-05-31 19:03:47 -0700684}
685
686
Alexander Clouter11a80a9c762009-02-13 19:01:01 +0000687MODULE_AUTHOR("Alexander Clouter <alex@digriz.org.uk>");
Dave Jones9acef482009-01-18 01:39:51 -0500688MODULE_DESCRIPTION("'cpufreq_conservative' - A dynamic cpufreq governor for "
Dave Jonesb9170832005-05-31 19:03:47 -0700689 "Low Latency Frequency Transition capable processors "
690 "optimised for use in a battery environment");
Dave Jones9acef482009-01-18 01:39:51 -0500691MODULE_LICENSE("GPL");
Dave Jonesb9170832005-05-31 19:03:47 -0700692
Johannes Weiner69157192008-01-17 15:21:08 -0800693#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
694fs_initcall(cpufreq_gov_dbs_init);
695#else
Dave Jonesb9170832005-05-31 19:03:47 -0700696module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800697#endif
Dave Jonesb9170832005-05-31 19:03:47 -0700698module_exit(cpufreq_gov_dbs_exit);