blob: 36f292a7bd013126bd6eebf5e646f7e47d470b77 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/cpufreq/cpufreq_ondemand.c
3 *
4 * Copyright (C) 2001 Russell King
5 * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
6 * Jun Nakajima <jun.nakajima@intel.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/kernel.h>
14#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/cpufreq.h>
Andrew Morton138a01282006-06-23 03:31:19 -070017#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/jiffies.h>
19#include <linux/kernel_stat.h>
akpm@osdl.org3fc54d32006-01-13 15:54:22 -080020#include <linux/mutex.h>
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -070021#include <linux/hrtimer.h>
22#include <linux/tick.h>
23#include <linux/ktime.h>
Thomas Renninger9411b4e2009-02-04 11:54:04 +010024#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/*
27 * dbs is used in this file as a shortform for demandbased switching
28 * It helps to keep variable names smaller, simpler
29 */
30
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -070031#define DEF_FREQUENCY_DOWN_DIFFERENTIAL (10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define DEF_FREQUENCY_UP_THRESHOLD (80)
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -070033#define MICRO_FREQUENCY_DOWN_DIFFERENTIAL (3)
34#define MICRO_FREQUENCY_UP_THRESHOLD (95)
Thomas Renningercef96152009-04-22 13:48:29 +020035#define MICRO_FREQUENCY_MIN_SAMPLE_RATE (10000)
Dave Jonesc29f1402005-05-31 19:03:50 -070036#define MIN_FREQUENCY_UP_THRESHOLD (11)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define MAX_FREQUENCY_UP_THRESHOLD (100)
38
Dave Jones32ee8c32006-02-28 00:43:23 -050039/*
40 * The polling frequency of this governor depends on the capability of
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * the processor. Default polling frequency is 1000 times the transition
Dave Jones32ee8c32006-02-28 00:43:23 -050042 * latency of the processor. The governor will work on any processor with
43 * transition latency <= 10mS, using appropriate sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * rate.
45 * For CPUs with transition latency > 10mS (mostly drivers with CPUFREQ_ETERNAL)
46 * this governor will not work.
47 * All times here are in uS.
48 */
Dave Jonesdf8b59b2005-09-20 12:39:35 -070049#define MIN_SAMPLING_RATE_RATIO (2)
Thomas Renninger112124a2009-02-04 11:55:12 +010050
Thomas Renningercef96152009-04-22 13:48:29 +020051static unsigned int min_sampling_rate;
52
Thomas Renninger112124a2009-02-04 11:55:12 +010053#define LATENCY_MULTIPLIER (1000)
Thomas Renningercef96152009-04-22 13:48:29 +020054#define MIN_LATENCY_MULTIPLIER (100)
Thomas Renninger1c256242007-10-02 13:28:12 -070055#define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
David Howellsc4028952006-11-22 14:57:56 +000057static void do_dbs_timer(struct work_struct *work);
58
59/* Sampling types */
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -080060enum {DBS_NORMAL_SAMPLE, DBS_SUB_SAMPLE};
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62struct cpu_dbs_info_s {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -070063 cputime64_t prev_cpu_idle;
64 cputime64_t prev_cpu_wall;
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -070065 cputime64_t prev_cpu_nice;
Dave Jones32ee8c32006-02-28 00:43:23 -050066 struct cpufreq_policy *cur_policy;
Dave Jones2b03f892009-01-18 01:43:44 -050067 struct delayed_work work;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040068 struct cpufreq_frequency_table *freq_table;
69 unsigned int freq_lo;
70 unsigned int freq_lo_jiffies;
71 unsigned int freq_hi_jiffies;
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -080072 int cpu;
73 unsigned int enable:1,
Dave Jones2b03f892009-01-18 01:43:44 -050074 sample_type:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
Tejun Heo245b2e72009-06-24 15:13:48 +090076static DEFINE_PER_CPU(struct cpu_dbs_info_s, od_cpu_dbs_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78static unsigned int dbs_enable; /* number of CPUs using this policy */
79
Venkatesh Pallipadi4ec223d2006-06-21 15:18:34 -070080/*
81 * DEADLOCK ALERT! There is a ordering requirement between cpu_hotplug
82 * lock and dbs_mutex. cpu_hotplug lock should always be held before
83 * dbs_mutex. If any function that can potentially take cpu_hotplug lock
84 * (like __cpufreq_driver_target()) is being called with dbs_mutex taken, then
85 * cpu_hotplug lock should be taken before that. Note that cpu_hotplug lock
86 * is recursive for the same process. -Venki
Mathieu Desnoyersb14893a2009-05-17 10:30:45 -040087 * DEADLOCK ALERT! (2) : do_dbs_timer() must not take the dbs_mutex, because it
88 * would deadlock with cancel_delayed_work_sync(), which is needed for proper
89 * raceless workqueue teardown.
Venkatesh Pallipadi4ec223d2006-06-21 15:18:34 -070090 */
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -070091static DEFINE_MUTEX(dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -070093static struct workqueue_struct *kondemand_wq;
Andi Kleen6810b542006-05-08 15:17:31 +020094
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040095static struct dbs_tuners {
Dave Jones32ee8c32006-02-28 00:43:23 -050096 unsigned int sampling_rate;
Dave Jones32ee8c32006-02-28 00:43:23 -050097 unsigned int up_threshold;
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -070098 unsigned int down_differential;
Dave Jones32ee8c32006-02-28 00:43:23 -050099 unsigned int ignore_nice;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400100 unsigned int powersave_bias;
101} dbs_tuners_ins = {
Dave Jones32ee8c32006-02-28 00:43:23 -0500102 .up_threshold = DEF_FREQUENCY_UP_THRESHOLD,
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -0700103 .down_differential = DEF_FREQUENCY_DOWN_DIFFERENTIAL,
Eric Piel9cbad612006-03-10 11:35:27 +0200104 .ignore_nice = 0,
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400105 .powersave_bias = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700108static inline cputime64_t get_cpu_idle_time_jiffy(unsigned int cpu,
109 cputime64_t *wall)
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700110{
Venki Pallipadiea487612007-06-20 14:26:24 -0700111 cputime64_t idle_time;
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700112 cputime64_t cur_wall_time;
Venki Pallipadiea487612007-06-20 14:26:24 -0700113 cputime64_t busy_time;
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700114
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700115 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
Venki Pallipadiea487612007-06-20 14:26:24 -0700116 busy_time = cputime64_add(kstat_cpu(cpu).cpustat.user,
117 kstat_cpu(cpu).cpustat.system);
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700118
Venki Pallipadiea487612007-06-20 14:26:24 -0700119 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.irq);
120 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.softirq);
121 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.steal);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500122 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.nice);
Venki Pallipadiea487612007-06-20 14:26:24 -0700123
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700124 idle_time = cputime64_sub(cur_wall_time, busy_time);
125 if (wall)
126 *wall = cur_wall_time;
127
Venki Pallipadiea487612007-06-20 14:26:24 -0700128 return idle_time;
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700129}
130
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700131static inline cputime64_t get_cpu_idle_time(unsigned int cpu, cputime64_t *wall)
132{
133 u64 idle_time = get_cpu_idle_time_us(cpu, wall);
134
135 if (idle_time == -1ULL)
136 return get_cpu_idle_time_jiffy(cpu, wall);
137
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700138 return idle_time;
139}
140
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400141/*
142 * Find right freq to be set now with powersave_bias on.
143 * Returns the freq_hi to be used right now and will set freq_hi_jiffies,
144 * freq_lo, and freq_lo_jiffies in percpu area for averaging freqs.
145 */
Adrian Bunkb5ecf602006-08-13 23:00:08 +0200146static unsigned int powersave_bias_target(struct cpufreq_policy *policy,
147 unsigned int freq_next,
148 unsigned int relation)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400149{
150 unsigned int freq_req, freq_reduc, freq_avg;
151 unsigned int freq_hi, freq_lo;
152 unsigned int index = 0;
153 unsigned int jiffies_total, jiffies_hi, jiffies_lo;
Tejun Heo245b2e72009-06-24 15:13:48 +0900154 struct cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info,
155 policy->cpu);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400156
157 if (!dbs_info->freq_table) {
158 dbs_info->freq_lo = 0;
159 dbs_info->freq_lo_jiffies = 0;
160 return freq_next;
161 }
162
163 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_next,
164 relation, &index);
165 freq_req = dbs_info->freq_table[index].frequency;
166 freq_reduc = freq_req * dbs_tuners_ins.powersave_bias / 1000;
167 freq_avg = freq_req - freq_reduc;
168
169 /* Find freq bounds for freq_avg in freq_table */
170 index = 0;
171 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
172 CPUFREQ_RELATION_H, &index);
173 freq_lo = dbs_info->freq_table[index].frequency;
174 index = 0;
175 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
176 CPUFREQ_RELATION_L, &index);
177 freq_hi = dbs_info->freq_table[index].frequency;
178
179 /* Find out how long we have to be in hi and lo freqs */
180 if (freq_hi == freq_lo) {
181 dbs_info->freq_lo = 0;
182 dbs_info->freq_lo_jiffies = 0;
183 return freq_lo;
184 }
185 jiffies_total = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
186 jiffies_hi = (freq_avg - freq_lo) * jiffies_total;
187 jiffies_hi += ((freq_hi - freq_lo) / 2);
188 jiffies_hi /= (freq_hi - freq_lo);
189 jiffies_lo = jiffies_total - jiffies_hi;
190 dbs_info->freq_lo = freq_lo;
191 dbs_info->freq_lo_jiffies = jiffies_lo;
192 dbs_info->freq_hi_jiffies = jiffies_hi;
193 return freq_hi;
194}
195
196static void ondemand_powersave_bias_init(void)
197{
198 int i;
199 for_each_online_cpu(i) {
Tejun Heo245b2e72009-06-24 15:13:48 +0900200 struct cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, i);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400201 dbs_info->freq_table = cpufreq_frequency_get_table(i);
202 dbs_info->freq_lo = 0;
203 }
204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/************************** sysfs interface ************************/
207static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf)
208{
Thomas Renninger4f4d1ad2009-04-22 13:48:31 +0200209 printk_once(KERN_INFO "CPUFREQ: ondemand sampling_rate_max "
210 "sysfs file is deprecated - used by: %s\n", current->comm);
Thomas Renningercef96152009-04-22 13:48:29 +0200211 return sprintf(buf, "%u\n", -1U);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf)
215{
Thomas Renningercef96152009-04-22 13:48:29 +0200216 return sprintf(buf, "%u\n", min_sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Dave Jones32ee8c32006-02-28 00:43:23 -0500219#define define_one_ro(_name) \
220static struct freq_attr _name = \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221__ATTR(_name, 0444, show_##_name, NULL)
222
223define_one_ro(sampling_rate_max);
224define_one_ro(sampling_rate_min);
225
226/* cpufreq_ondemand Governor Tunables */
227#define show_one(file_name, object) \
228static ssize_t show_##file_name \
229(struct cpufreq_policy *unused, char *buf) \
230{ \
231 return sprintf(buf, "%u\n", dbs_tuners_ins.object); \
232}
233show_one(sampling_rate, sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234show_one(up_threshold, up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800235show_one(ignore_nice_load, ignore_nice);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400236show_one(powersave_bias, powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Dave Jones32ee8c32006-02-28 00:43:23 -0500238static ssize_t store_sampling_rate(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 const char *buf, size_t count)
240{
241 unsigned int input;
242 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700243 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800245 mutex_lock(&dbs_mutex);
Thomas Renninger112124a2009-02-04 11:55:12 +0100246 if (ret != 1) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800247 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return -EINVAL;
249 }
Thomas Renningercef96152009-04-22 13:48:29 +0200250 dbs_tuners_ins.sampling_rate = max(input, min_sampling_rate);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800251 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 return count;
254}
255
Dave Jones32ee8c32006-02-28 00:43:23 -0500256static ssize_t store_up_threshold(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 const char *buf, size_t count)
258{
259 unsigned int input;
260 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700261 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800263 mutex_lock(&dbs_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -0500264 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
Dave Jonesc29f1402005-05-31 19:03:50 -0700265 input < MIN_FREQUENCY_UP_THRESHOLD) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800266 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return -EINVAL;
268 }
269
270 dbs_tuners_ins.up_threshold = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800271 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 return count;
274}
275
Alexander Clouter001893c2005-12-01 01:09:25 -0800276static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy,
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700277 const char *buf, size_t count)
278{
279 unsigned int input;
280 int ret;
281
282 unsigned int j;
Dave Jones32ee8c32006-02-28 00:43:23 -0500283
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700284 ret = sscanf(buf, "%u", &input);
Dave Jones2b03f892009-01-18 01:43:44 -0500285 if (ret != 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700286 return -EINVAL;
287
Dave Jones2b03f892009-01-18 01:43:44 -0500288 if (input > 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700289 input = 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500290
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800291 mutex_lock(&dbs_mutex);
Dave Jones2b03f892009-01-18 01:43:44 -0500292 if (input == dbs_tuners_ins.ignore_nice) { /* nothing to do */
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800293 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700294 return count;
295 }
296 dbs_tuners_ins.ignore_nice = input;
297
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700298 /* we need to re-evaluate prev_cpu_idle */
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700299 for_each_online_cpu(j) {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700300 struct cpu_dbs_info_s *dbs_info;
Tejun Heo245b2e72009-06-24 15:13:48 +0900301 dbs_info = &per_cpu(od_cpu_dbs_info, j);
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700302 dbs_info->prev_cpu_idle = get_cpu_idle_time(j,
303 &dbs_info->prev_cpu_wall);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500304 if (dbs_tuners_ins.ignore_nice)
305 dbs_info->prev_cpu_nice = kstat_cpu(j).cpustat.nice;
306
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700307 }
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800308 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700309
310 return count;
311}
312
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400313static ssize_t store_powersave_bias(struct cpufreq_policy *unused,
314 const char *buf, size_t count)
315{
316 unsigned int input;
317 int ret;
318 ret = sscanf(buf, "%u", &input);
319
320 if (ret != 1)
321 return -EINVAL;
322
323 if (input > 1000)
324 input = 1000;
325
326 mutex_lock(&dbs_mutex);
327 dbs_tuners_ins.powersave_bias = input;
328 ondemand_powersave_bias_init();
329 mutex_unlock(&dbs_mutex);
330
331 return count;
332}
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334#define define_one_rw(_name) \
335static struct freq_attr _name = \
336__ATTR(_name, 0644, show_##_name, store_##_name)
337
338define_one_rw(sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339define_one_rw(up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800340define_one_rw(ignore_nice_load);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400341define_one_rw(powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Dave Jones2b03f892009-01-18 01:43:44 -0500343static struct attribute *dbs_attributes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 &sampling_rate_max.attr,
345 &sampling_rate_min.attr,
346 &sampling_rate.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 &up_threshold.attr,
Alexander Clouter001893c2005-12-01 01:09:25 -0800348 &ignore_nice_load.attr,
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400349 &powersave_bias.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 NULL
351};
352
353static struct attribute_group dbs_attr_group = {
354 .attrs = dbs_attributes,
355 .name = "ondemand",
356};
357
358/************************** sysfs end ************************/
359
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700360static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700362 unsigned int max_load_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 struct cpufreq_policy *policy;
365 unsigned int j;
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (!this_dbs_info->enable)
368 return;
369
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400370 this_dbs_info->freq_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 policy = this_dbs_info->cur_policy;
Venki Pallipadiea487612007-06-20 14:26:24 -0700372
Dave Jones32ee8c32006-02-28 00:43:23 -0500373 /*
Dave Jonesc29f1402005-05-31 19:03:50 -0700374 * Every sampling_rate, we check, if current idle time is less
375 * than 20% (default), then we try to increase frequency
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700376 * Every sampling_rate, we look for a the lowest
Dave Jonesc29f1402005-05-31 19:03:50 -0700377 * frequency which can sustain the load while keeping idle time over
378 * 30%. If such a frequency exist, we try to decrease to this frequency.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500380 * Any frequency increase takes it to the maximum frequency.
381 * Frequency reduction happens at minimum steps of
382 * 5% (default) of current frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 */
384
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700385 /* Get Absolute Load - in terms of freq */
386 max_load_freq = 0;
387
Rusty Russell835481d2009-01-04 05:18:06 -0800388 for_each_cpu(j, policy->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct cpu_dbs_info_s *j_dbs_info;
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700390 cputime64_t cur_wall_time, cur_idle_time;
391 unsigned int idle_time, wall_time;
392 unsigned int load, load_freq;
393 int freq_avg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Tejun Heo245b2e72009-06-24 15:13:48 +0900395 j_dbs_info = &per_cpu(od_cpu_dbs_info, j);
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700396
397 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time);
398
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700399 wall_time = (unsigned int) cputime64_sub(cur_wall_time,
400 j_dbs_info->prev_cpu_wall);
401 j_dbs_info->prev_cpu_wall = cur_wall_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700403 idle_time = (unsigned int) cputime64_sub(cur_idle_time,
404 j_dbs_info->prev_cpu_idle);
405 j_dbs_info->prev_cpu_idle = cur_idle_time;
406
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500407 if (dbs_tuners_ins.ignore_nice) {
408 cputime64_t cur_nice;
409 unsigned long cur_nice_jiffies;
410
411 cur_nice = cputime64_sub(kstat_cpu(j).cpustat.nice,
412 j_dbs_info->prev_cpu_nice);
413 /*
414 * Assumption: nice time between sampling periods will
415 * be less than 2^32 jiffies for 32 bit sys
416 */
417 cur_nice_jiffies = (unsigned long)
418 cputime64_to_jiffies64(cur_nice);
419
420 j_dbs_info->prev_cpu_nice = kstat_cpu(j).cpustat.nice;
421 idle_time += jiffies_to_usecs(cur_nice_jiffies);
422 }
423
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700424 if (unlikely(!wall_time || wall_time < idle_time))
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700425 continue;
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700426
427 load = 100 * (wall_time - idle_time) / wall_time;
428
429 freq_avg = __cpufreq_driver_getavg(policy, j);
430 if (freq_avg <= 0)
431 freq_avg = policy->cur;
432
433 load_freq = load * freq_avg;
434 if (load_freq > max_load_freq)
435 max_load_freq = load_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700438 /* Check for frequency increase */
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700439 if (max_load_freq > dbs_tuners_ins.up_threshold * policy->cur) {
Dave Jonesc11420a2005-05-31 19:03:48 -0700440 /* if we are already at full speed then break out early */
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400441 if (!dbs_tuners_ins.powersave_bias) {
442 if (policy->cur == policy->max)
443 return;
Dave Jones32ee8c32006-02-28 00:43:23 -0500444
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400445 __cpufreq_driver_target(policy, policy->max,
446 CPUFREQ_RELATION_H);
447 } else {
448 int freq = powersave_bias_target(policy, policy->max,
449 CPUFREQ_RELATION_H);
450 __cpufreq_driver_target(policy, freq,
451 CPUFREQ_RELATION_L);
452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return;
454 }
455
456 /* Check for frequency decrease */
Dave Jonesc29f1402005-05-31 19:03:50 -0700457 /* if we cannot reduce the frequency anymore, break out early */
458 if (policy->cur == policy->min)
459 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Dave Jonesc29f1402005-05-31 19:03:50 -0700461 /*
462 * The optimal frequency is the frequency that is the lowest that
463 * can support the current CPU usage without triggering the up
464 * policy. To be safe, we focus 10 points under the threshold.
465 */
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -0700466 if (max_load_freq <
467 (dbs_tuners_ins.up_threshold - dbs_tuners_ins.down_differential) *
468 policy->cur) {
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700469 unsigned int freq_next;
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -0700470 freq_next = max_load_freq /
471 (dbs_tuners_ins.up_threshold -
472 dbs_tuners_ins.down_differential);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700473
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400474 if (!dbs_tuners_ins.powersave_bias) {
475 __cpufreq_driver_target(policy, freq_next,
476 CPUFREQ_RELATION_L);
477 } else {
478 int freq = powersave_bias_target(policy, freq_next,
479 CPUFREQ_RELATION_L);
480 __cpufreq_driver_target(policy, freq,
481 CPUFREQ_RELATION_L);
482 }
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
David Howellsc4028952006-11-22 14:57:56 +0000486static void do_dbs_timer(struct work_struct *work)
Dave Jones32ee8c32006-02-28 00:43:23 -0500487{
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800488 struct cpu_dbs_info_s *dbs_info =
489 container_of(work, struct cpu_dbs_info_s, work.work);
490 unsigned int cpu = dbs_info->cpu;
491 int sample_type = dbs_info->sample_type;
492
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400493 /* We want all CPUs to do sampling nearly on same jiffy */
494 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
David Howellsc4028952006-11-22 14:57:56 +0000495
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400496 delay -= jiffies % delay;
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700497
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800498 if (lock_policy_rwsem_write(cpu) < 0)
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700499 return;
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800500
501 if (!dbs_info->enable) {
502 unlock_policy_rwsem_write(cpu);
503 return;
504 }
505
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400506 /* Common NORMAL_SAMPLE setup */
David Howellsc4028952006-11-22 14:57:56 +0000507 dbs_info->sample_type = DBS_NORMAL_SAMPLE;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400508 if (!dbs_tuners_ins.powersave_bias ||
David Howellsc4028952006-11-22 14:57:56 +0000509 sample_type == DBS_NORMAL_SAMPLE) {
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400510 dbs_check_cpu(dbs_info);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400511 if (dbs_info->freq_lo) {
512 /* Setup timer for SUB_SAMPLE */
David Howellsc4028952006-11-22 14:57:56 +0000513 dbs_info->sample_type = DBS_SUB_SAMPLE;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400514 delay = dbs_info->freq_hi_jiffies;
515 }
516 } else {
517 __cpufreq_driver_target(dbs_info->cur_policy,
Dave Jones2b03f892009-01-18 01:43:44 -0500518 dbs_info->freq_lo, CPUFREQ_RELATION_H);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400519 }
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400520 queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay);
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800521 unlock_policy_rwsem_write(cpu);
Dave Jones32ee8c32006-02-28 00:43:23 -0500522}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800524static inline void dbs_timer_init(struct cpu_dbs_info_s *dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400526 /* We want all CPUs to do sampling nearly on same jiffy */
527 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
528 delay -= jiffies % delay;
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700529
Dave Jonesc18a1482007-02-10 20:03:51 -0500530 dbs_info->enable = 1;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400531 ondemand_powersave_bias_init();
David Howellsc4028952006-11-22 14:57:56 +0000532 dbs_info->sample_type = DBS_NORMAL_SAMPLE;
Venki Pallipadi28287032007-05-08 00:27:47 -0700533 INIT_DELAYED_WORK_DEFERRABLE(&dbs_info->work, do_dbs_timer);
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800534 queue_delayed_work_on(dbs_info->cpu, kondemand_wq, &dbs_info->work,
Dave Jones2b03f892009-01-18 01:43:44 -0500535 delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700538static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700540 dbs_info->enable = 0;
Mathieu Desnoyersb14893a2009-05-17 10:30:45 -0400541 cancel_delayed_work_sync(&dbs_info->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
545 unsigned int event)
546{
547 unsigned int cpu = policy->cpu;
548 struct cpu_dbs_info_s *this_dbs_info;
549 unsigned int j;
Jeff Garzik914f7c32006-10-20 14:31:00 -0700550 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Tejun Heo245b2e72009-06-24 15:13:48 +0900552 this_dbs_info = &per_cpu(od_cpu_dbs_info, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 switch (event) {
555 case CPUFREQ_GOV_START:
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700556 if ((!cpu_online(cpu)) || (!policy->cur))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return -EINVAL;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (this_dbs_info->enable) /* Already enabled */
560 break;
Dave Jones32ee8c32006-02-28 00:43:23 -0500561
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800562 mutex_lock(&dbs_mutex);
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700563 dbs_enable++;
Jeff Garzik914f7c32006-10-20 14:31:00 -0700564
565 rc = sysfs_create_group(&policy->kobj, &dbs_attr_group);
566 if (rc) {
Jeff Garzik914f7c32006-10-20 14:31:00 -0700567 dbs_enable--;
568 mutex_unlock(&dbs_mutex);
569 return rc;
570 }
571
Rusty Russell835481d2009-01-04 05:18:06 -0800572 for_each_cpu(j, policy->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 struct cpu_dbs_info_s *j_dbs_info;
Tejun Heo245b2e72009-06-24 15:13:48 +0900574 j_dbs_info = &per_cpu(od_cpu_dbs_info, j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 j_dbs_info->cur_policy = policy;
Dave Jones32ee8c32006-02-28 00:43:23 -0500576
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700577 j_dbs_info->prev_cpu_idle = get_cpu_idle_time(j,
578 &j_dbs_info->prev_cpu_wall);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500579 if (dbs_tuners_ins.ignore_nice) {
580 j_dbs_info->prev_cpu_nice =
581 kstat_cpu(j).cpustat.nice;
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800584 this_dbs_info->cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /*
586 * Start the timerschedule work, when this governor
587 * is used for first time
588 */
589 if (dbs_enable == 1) {
590 unsigned int latency;
591 /* policy latency is in nS. Convert it to uS first */
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700592 latency = policy->cpuinfo.transition_latency / 1000;
593 if (latency == 0)
594 latency = 1;
Thomas Renningercef96152009-04-22 13:48:29 +0200595 /* Bring kernel and HW constraints together */
596 min_sampling_rate = max(min_sampling_rate,
597 MIN_LATENCY_MULTIPLIER * latency);
598 dbs_tuners_ins.sampling_rate =
599 max(min_sampling_rate,
600 latency * LATENCY_MULTIPLIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800602 dbs_timer_init(this_dbs_info);
Dave Jones32ee8c32006-02-28 00:43:23 -0500603
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800604 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 break;
606
607 case CPUFREQ_GOV_STOP:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800608 mutex_lock(&dbs_mutex);
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700609 dbs_timer_exit(this_dbs_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 sysfs_remove_group(&policy->kobj, &dbs_attr_group);
611 dbs_enable--;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800612 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 break;
615
616 case CPUFREQ_GOV_LIMITS:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800617 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (policy->max < this_dbs_info->cur_policy->cur)
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700619 __cpufreq_driver_target(this_dbs_info->cur_policy,
Dave Jones2b03f892009-01-18 01:43:44 -0500620 policy->max, CPUFREQ_RELATION_H);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 else if (policy->min > this_dbs_info->cur_policy->cur)
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700622 __cpufreq_driver_target(this_dbs_info->cur_policy,
Dave Jones2b03f892009-01-18 01:43:44 -0500623 policy->min, CPUFREQ_RELATION_L);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800624 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 break;
626 }
627 return 0;
628}
629
Sven Wegenerc4d14bc2008-09-20 16:50:08 +0200630#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
631static
632#endif
Thomas Renninger1c256242007-10-02 13:28:12 -0700633struct cpufreq_governor cpufreq_gov_ondemand = {
634 .name = "ondemand",
635 .governor = cpufreq_governor_dbs,
636 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
637 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640static int __init cpufreq_gov_dbs_init(void)
641{
Akinobu Mita888a7942008-07-14 12:00:45 +0900642 int err;
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700643 cputime64_t wall;
Andrea Righi4f6e6b92008-09-18 10:43:40 +0000644 u64 idle_time;
645 int cpu = get_cpu();
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700646
Andrea Righi4f6e6b92008-09-18 10:43:40 +0000647 idle_time = get_cpu_idle_time_us(cpu, &wall);
648 put_cpu();
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700649 if (idle_time != -1ULL) {
650 /* Idle micro accounting is supported. Use finer thresholds */
651 dbs_tuners_ins.up_threshold = MICRO_FREQUENCY_UP_THRESHOLD;
652 dbs_tuners_ins.down_differential =
653 MICRO_FREQUENCY_DOWN_DIFFERENTIAL;
Thomas Renningercef96152009-04-22 13:48:29 +0200654 /*
655 * In no_hz/micro accounting case we set the minimum frequency
656 * not depending on HZ, but fixed (very low). The deferred
657 * timer might skip some samples if idle/sleeping as needed.
658 */
659 min_sampling_rate = MICRO_FREQUENCY_MIN_SAMPLE_RATE;
660 } else {
661 /* For correct statistics, we need 10 ticks for each measure */
662 min_sampling_rate =
663 MIN_SAMPLING_RATE_RATIO * jiffies_to_usecs(10);
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700664 }
Akinobu Mita888a7942008-07-14 12:00:45 +0900665
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800666 kondemand_wq = create_workqueue("kondemand");
667 if (!kondemand_wq) {
668 printk(KERN_ERR "Creation of kondemand failed\n");
669 return -EFAULT;
670 }
Akinobu Mita888a7942008-07-14 12:00:45 +0900671 err = cpufreq_register_governor(&cpufreq_gov_ondemand);
672 if (err)
673 destroy_workqueue(kondemand_wq);
674
675 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678static void __exit cpufreq_gov_dbs_exit(void)
679{
Thomas Renninger1c256242007-10-02 13:28:12 -0700680 cpufreq_unregister_governor(&cpufreq_gov_ondemand);
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800681 destroy_workqueue(kondemand_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700685MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
686MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
687MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
Dave Jones2b03f892009-01-18 01:43:44 -0500688 "Low Latency Frequency Transition capable processors");
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700689MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Johannes Weiner69157192008-01-17 15:21:08 -0800691#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
692fs_initcall(cpufreq_gov_dbs_init);
693#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800695#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696module_exit(cpufreq_gov_dbs_exit);