blob: 32ddeaa42244465ecb187a32763615f89bcfad42 [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)
Dave Jonesc29f1402005-05-31 19:03:50 -070035#define MIN_FREQUENCY_UP_THRESHOLD (11)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define MAX_FREQUENCY_UP_THRESHOLD (100)
37
Dave Jones32ee8c32006-02-28 00:43:23 -050038/*
39 * The polling frequency of this governor depends on the capability of
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * the processor. Default polling frequency is 1000 times the transition
Dave Jones32ee8c32006-02-28 00:43:23 -050041 * latency of the processor. The governor will work on any processor with
42 * transition latency <= 10mS, using appropriate sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * rate.
44 * For CPUs with transition latency > 10mS (mostly drivers with CPUFREQ_ETERNAL)
45 * this governor will not work.
46 * All times here are in uS.
47 */
Dave Jones32ee8c32006-02-28 00:43:23 -050048static unsigned int def_sampling_rate;
Dave Jonesdf8b59b2005-09-20 12:39:35 -070049#define MIN_SAMPLING_RATE_RATIO (2)
50/* for correct statistics, we need at least 10 ticks between each measure */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +053051#define MIN_STAT_SAMPLING_RATE \
52 (MIN_SAMPLING_RATE_RATIO * jiffies_to_usecs(10))
53#define MIN_SAMPLING_RATE \
54 (def_sampling_rate / MIN_SAMPLING_RATE_RATIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define MAX_SAMPLING_RATE (500 * def_sampling_rate)
56#define DEF_SAMPLING_RATE_LATENCY_MULTIPLIER (1000)
Thomas Renninger1c256242007-10-02 13:28:12 -070057#define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
David Howellsc4028952006-11-22 14:57:56 +000059static void do_dbs_timer(struct work_struct *work);
60
61/* Sampling types */
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -080062enum {DBS_NORMAL_SAMPLE, DBS_SUB_SAMPLE};
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64struct cpu_dbs_info_s {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -070065 cputime64_t prev_cpu_idle;
66 cputime64_t prev_cpu_wall;
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -070067 cputime64_t prev_cpu_nice;
Dave Jones32ee8c32006-02-28 00:43:23 -050068 struct cpufreq_policy *cur_policy;
Dave Jones2b03f892009-01-18 01:43:44 -050069 struct delayed_work work;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040070 struct cpufreq_frequency_table *freq_table;
71 unsigned int freq_lo;
72 unsigned int freq_lo_jiffies;
73 unsigned int freq_hi_jiffies;
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -080074 int cpu;
75 unsigned int enable:1,
Dave Jones2b03f892009-01-18 01:43:44 -050076 sample_type:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info);
79
80static unsigned int dbs_enable; /* number of CPUs using this policy */
81
Venkatesh Pallipadi4ec223d2006-06-21 15:18:34 -070082/*
83 * DEADLOCK ALERT! There is a ordering requirement between cpu_hotplug
84 * lock and dbs_mutex. cpu_hotplug lock should always be held before
85 * dbs_mutex. If any function that can potentially take cpu_hotplug lock
86 * (like __cpufreq_driver_target()) is being called with dbs_mutex taken, then
87 * cpu_hotplug lock should be taken before that. Note that cpu_hotplug lock
88 * is recursive for the same process. -Venki
89 */
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -070090static DEFINE_MUTEX(dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -070092static struct workqueue_struct *kondemand_wq;
Andi Kleen6810b542006-05-08 15:17:31 +020093
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040094static struct dbs_tuners {
Dave Jones32ee8c32006-02-28 00:43:23 -050095 unsigned int sampling_rate;
Dave Jones32ee8c32006-02-28 00:43:23 -050096 unsigned int up_threshold;
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -070097 unsigned int down_differential;
Dave Jones32ee8c32006-02-28 00:43:23 -050098 unsigned int ignore_nice;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040099 unsigned int powersave_bias;
100} dbs_tuners_ins = {
Dave Jones32ee8c32006-02-28 00:43:23 -0500101 .up_threshold = DEF_FREQUENCY_UP_THRESHOLD,
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -0700102 .down_differential = DEF_FREQUENCY_DOWN_DIFFERENTIAL,
Eric Piel9cbad612006-03-10 11:35:27 +0200103 .ignore_nice = 0,
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400104 .powersave_bias = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700107static inline cputime64_t get_cpu_idle_time_jiffy(unsigned int cpu,
108 cputime64_t *wall)
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700109{
Venki Pallipadiea487612007-06-20 14:26:24 -0700110 cputime64_t idle_time;
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700111 cputime64_t cur_wall_time;
Venki Pallipadiea487612007-06-20 14:26:24 -0700112 cputime64_t busy_time;
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700113
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700114 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
Venki Pallipadiea487612007-06-20 14:26:24 -0700115 busy_time = cputime64_add(kstat_cpu(cpu).cpustat.user,
116 kstat_cpu(cpu).cpustat.system);
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700117
Venki Pallipadiea487612007-06-20 14:26:24 -0700118 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.irq);
119 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.softirq);
120 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.steal);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500121 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.nice);
Venki Pallipadiea487612007-06-20 14:26:24 -0700122
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700123 idle_time = cputime64_sub(cur_wall_time, busy_time);
124 if (wall)
125 *wall = cur_wall_time;
126
Venki Pallipadiea487612007-06-20 14:26:24 -0700127 return idle_time;
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700128}
129
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700130static inline cputime64_t get_cpu_idle_time(unsigned int cpu, cputime64_t *wall)
131{
132 u64 idle_time = get_cpu_idle_time_us(cpu, wall);
133
134 if (idle_time == -1ULL)
135 return get_cpu_idle_time_jiffy(cpu, wall);
136
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700137 return idle_time;
138}
139
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400140/*
141 * Find right freq to be set now with powersave_bias on.
142 * Returns the freq_hi to be used right now and will set freq_hi_jiffies,
143 * freq_lo, and freq_lo_jiffies in percpu area for averaging freqs.
144 */
Adrian Bunkb5ecf602006-08-13 23:00:08 +0200145static unsigned int powersave_bias_target(struct cpufreq_policy *policy,
146 unsigned int freq_next,
147 unsigned int relation)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400148{
149 unsigned int freq_req, freq_reduc, freq_avg;
150 unsigned int freq_hi, freq_lo;
151 unsigned int index = 0;
152 unsigned int jiffies_total, jiffies_hi, jiffies_lo;
153 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, policy->cpu);
154
155 if (!dbs_info->freq_table) {
156 dbs_info->freq_lo = 0;
157 dbs_info->freq_lo_jiffies = 0;
158 return freq_next;
159 }
160
161 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_next,
162 relation, &index);
163 freq_req = dbs_info->freq_table[index].frequency;
164 freq_reduc = freq_req * dbs_tuners_ins.powersave_bias / 1000;
165 freq_avg = freq_req - freq_reduc;
166
167 /* Find freq bounds for freq_avg in freq_table */
168 index = 0;
169 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
170 CPUFREQ_RELATION_H, &index);
171 freq_lo = dbs_info->freq_table[index].frequency;
172 index = 0;
173 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
174 CPUFREQ_RELATION_L, &index);
175 freq_hi = dbs_info->freq_table[index].frequency;
176
177 /* Find out how long we have to be in hi and lo freqs */
178 if (freq_hi == freq_lo) {
179 dbs_info->freq_lo = 0;
180 dbs_info->freq_lo_jiffies = 0;
181 return freq_lo;
182 }
183 jiffies_total = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
184 jiffies_hi = (freq_avg - freq_lo) * jiffies_total;
185 jiffies_hi += ((freq_hi - freq_lo) / 2);
186 jiffies_hi /= (freq_hi - freq_lo);
187 jiffies_lo = jiffies_total - jiffies_hi;
188 dbs_info->freq_lo = freq_lo;
189 dbs_info->freq_lo_jiffies = jiffies_lo;
190 dbs_info->freq_hi_jiffies = jiffies_hi;
191 return freq_hi;
192}
193
194static void ondemand_powersave_bias_init(void)
195{
196 int i;
197 for_each_online_cpu(i) {
198 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, i);
199 dbs_info->freq_table = cpufreq_frequency_get_table(i);
200 dbs_info->freq_lo = 0;
201 }
202}
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/************************** sysfs interface ************************/
205static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf)
206{
Thomas Renninger9411b4e2009-02-04 11:54:04 +0100207 static int print_once;
208
209 if (!print_once) {
210 printk(KERN_INFO "CPUFREQ: ondemand sampling_rate_max "
211 "sysfs file is deprecated - used by: %s\n",
212 current->comm);
213 print_once = 1;
214 }
Dave Jones2b03f892009-01-18 01:43:44 -0500215 return sprintf(buf, "%u\n", MAX_SAMPLING_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf)
219{
Thomas Renninger9411b4e2009-02-04 11:54:04 +0100220 static int print_once;
221
222 if (!print_once) {
223 printk(KERN_INFO "CPUFREQ: ondemand sampling_rate_min "
224 "sysfs file is deprecated - used by: %s\n",
225 current->comm);
226 print_once = 1;
227 }
Dave Jones2b03f892009-01-18 01:43:44 -0500228 return sprintf(buf, "%u\n", MIN_SAMPLING_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Dave Jones32ee8c32006-02-28 00:43:23 -0500231#define define_one_ro(_name) \
232static struct freq_attr _name = \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233__ATTR(_name, 0444, show_##_name, NULL)
234
235define_one_ro(sampling_rate_max);
236define_one_ro(sampling_rate_min);
237
238/* cpufreq_ondemand Governor Tunables */
239#define show_one(file_name, object) \
240static ssize_t show_##file_name \
241(struct cpufreq_policy *unused, char *buf) \
242{ \
243 return sprintf(buf, "%u\n", dbs_tuners_ins.object); \
244}
245show_one(sampling_rate, sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246show_one(up_threshold, up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800247show_one(ignore_nice_load, ignore_nice);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400248show_one(powersave_bias, powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Dave Jones32ee8c32006-02-28 00:43:23 -0500250static ssize_t store_sampling_rate(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 const char *buf, size_t count)
252{
253 unsigned int input;
254 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700255 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800257 mutex_lock(&dbs_mutex);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530258 if (ret != 1 || input > MAX_SAMPLING_RATE
259 || input < MIN_SAMPLING_RATE) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800260 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return -EINVAL;
262 }
263
264 dbs_tuners_ins.sampling_rate = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800265 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 return count;
268}
269
Dave Jones32ee8c32006-02-28 00:43:23 -0500270static ssize_t store_up_threshold(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 const char *buf, size_t count)
272{
273 unsigned int input;
274 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700275 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800277 mutex_lock(&dbs_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -0500278 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
Dave Jonesc29f1402005-05-31 19:03:50 -0700279 input < MIN_FREQUENCY_UP_THRESHOLD) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800280 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return -EINVAL;
282 }
283
284 dbs_tuners_ins.up_threshold = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800285 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 return count;
288}
289
Alexander Clouter001893c2005-12-01 01:09:25 -0800290static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy,
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700291 const char *buf, size_t count)
292{
293 unsigned int input;
294 int ret;
295
296 unsigned int j;
Dave Jones32ee8c32006-02-28 00:43:23 -0500297
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700298 ret = sscanf(buf, "%u", &input);
Dave Jones2b03f892009-01-18 01:43:44 -0500299 if (ret != 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700300 return -EINVAL;
301
Dave Jones2b03f892009-01-18 01:43:44 -0500302 if (input > 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700303 input = 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500304
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800305 mutex_lock(&dbs_mutex);
Dave Jones2b03f892009-01-18 01:43:44 -0500306 if (input == dbs_tuners_ins.ignore_nice) { /* nothing to do */
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800307 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700308 return count;
309 }
310 dbs_tuners_ins.ignore_nice = input;
311
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700312 /* we need to re-evaluate prev_cpu_idle */
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700313 for_each_online_cpu(j) {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700314 struct cpu_dbs_info_s *dbs_info;
315 dbs_info = &per_cpu(cpu_dbs_info, j);
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700316 dbs_info->prev_cpu_idle = get_cpu_idle_time(j,
317 &dbs_info->prev_cpu_wall);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500318 if (dbs_tuners_ins.ignore_nice)
319 dbs_info->prev_cpu_nice = kstat_cpu(j).cpustat.nice;
320
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700321 }
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800322 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700323
324 return count;
325}
326
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400327static ssize_t store_powersave_bias(struct cpufreq_policy *unused,
328 const char *buf, size_t count)
329{
330 unsigned int input;
331 int ret;
332 ret = sscanf(buf, "%u", &input);
333
334 if (ret != 1)
335 return -EINVAL;
336
337 if (input > 1000)
338 input = 1000;
339
340 mutex_lock(&dbs_mutex);
341 dbs_tuners_ins.powersave_bias = input;
342 ondemand_powersave_bias_init();
343 mutex_unlock(&dbs_mutex);
344
345 return count;
346}
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348#define define_one_rw(_name) \
349static struct freq_attr _name = \
350__ATTR(_name, 0644, show_##_name, store_##_name)
351
352define_one_rw(sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353define_one_rw(up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800354define_one_rw(ignore_nice_load);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400355define_one_rw(powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Dave Jones2b03f892009-01-18 01:43:44 -0500357static struct attribute *dbs_attributes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 &sampling_rate_max.attr,
359 &sampling_rate_min.attr,
360 &sampling_rate.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 &up_threshold.attr,
Alexander Clouter001893c2005-12-01 01:09:25 -0800362 &ignore_nice_load.attr,
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400363 &powersave_bias.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 NULL
365};
366
367static struct attribute_group dbs_attr_group = {
368 .attrs = dbs_attributes,
369 .name = "ondemand",
370};
371
372/************************** sysfs end ************************/
373
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700374static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700376 unsigned int max_load_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 struct cpufreq_policy *policy;
379 unsigned int j;
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (!this_dbs_info->enable)
382 return;
383
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400384 this_dbs_info->freq_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 policy = this_dbs_info->cur_policy;
Venki Pallipadiea487612007-06-20 14:26:24 -0700386
Dave Jones32ee8c32006-02-28 00:43:23 -0500387 /*
Dave Jonesc29f1402005-05-31 19:03:50 -0700388 * Every sampling_rate, we check, if current idle time is less
389 * than 20% (default), then we try to increase frequency
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700390 * Every sampling_rate, we look for a the lowest
Dave Jonesc29f1402005-05-31 19:03:50 -0700391 * frequency which can sustain the load while keeping idle time over
392 * 30%. If such a frequency exist, we try to decrease to this frequency.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500394 * Any frequency increase takes it to the maximum frequency.
395 * Frequency reduction happens at minimum steps of
396 * 5% (default) of current frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 */
398
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700399 /* Get Absolute Load - in terms of freq */
400 max_load_freq = 0;
401
Rusty Russell835481d2009-01-04 05:18:06 -0800402 for_each_cpu(j, policy->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct cpu_dbs_info_s *j_dbs_info;
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700404 cputime64_t cur_wall_time, cur_idle_time;
405 unsigned int idle_time, wall_time;
406 unsigned int load, load_freq;
407 int freq_avg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 j_dbs_info = &per_cpu(cpu_dbs_info, j);
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700410
411 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time);
412
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700413 wall_time = (unsigned int) cputime64_sub(cur_wall_time,
414 j_dbs_info->prev_cpu_wall);
415 j_dbs_info->prev_cpu_wall = cur_wall_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700417 idle_time = (unsigned int) cputime64_sub(cur_idle_time,
418 j_dbs_info->prev_cpu_idle);
419 j_dbs_info->prev_cpu_idle = cur_idle_time;
420
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500421 if (dbs_tuners_ins.ignore_nice) {
422 cputime64_t cur_nice;
423 unsigned long cur_nice_jiffies;
424
425 cur_nice = cputime64_sub(kstat_cpu(j).cpustat.nice,
426 j_dbs_info->prev_cpu_nice);
427 /*
428 * Assumption: nice time between sampling periods will
429 * be less than 2^32 jiffies for 32 bit sys
430 */
431 cur_nice_jiffies = (unsigned long)
432 cputime64_to_jiffies64(cur_nice);
433
434 j_dbs_info->prev_cpu_nice = kstat_cpu(j).cpustat.nice;
435 idle_time += jiffies_to_usecs(cur_nice_jiffies);
436 }
437
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700438 if (unlikely(!wall_time || wall_time < idle_time))
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700439 continue;
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700440
441 load = 100 * (wall_time - idle_time) / wall_time;
442
443 freq_avg = __cpufreq_driver_getavg(policy, j);
444 if (freq_avg <= 0)
445 freq_avg = policy->cur;
446
447 load_freq = load * freq_avg;
448 if (load_freq > max_load_freq)
449 max_load_freq = load_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700452 /* Check for frequency increase */
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700453 if (max_load_freq > dbs_tuners_ins.up_threshold * policy->cur) {
Dave Jonesc11420a2005-05-31 19:03:48 -0700454 /* if we are already at full speed then break out early */
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400455 if (!dbs_tuners_ins.powersave_bias) {
456 if (policy->cur == policy->max)
457 return;
Dave Jones32ee8c32006-02-28 00:43:23 -0500458
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400459 __cpufreq_driver_target(policy, policy->max,
460 CPUFREQ_RELATION_H);
461 } else {
462 int freq = powersave_bias_target(policy, policy->max,
463 CPUFREQ_RELATION_H);
464 __cpufreq_driver_target(policy, freq,
465 CPUFREQ_RELATION_L);
466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return;
468 }
469
470 /* Check for frequency decrease */
Dave Jonesc29f1402005-05-31 19:03:50 -0700471 /* if we cannot reduce the frequency anymore, break out early */
472 if (policy->cur == policy->min)
473 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Dave Jonesc29f1402005-05-31 19:03:50 -0700475 /*
476 * The optimal frequency is the frequency that is the lowest that
477 * can support the current CPU usage without triggering the up
478 * policy. To be safe, we focus 10 points under the threshold.
479 */
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -0700480 if (max_load_freq <
481 (dbs_tuners_ins.up_threshold - dbs_tuners_ins.down_differential) *
482 policy->cur) {
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700483 unsigned int freq_next;
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -0700484 freq_next = max_load_freq /
485 (dbs_tuners_ins.up_threshold -
486 dbs_tuners_ins.down_differential);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700487
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400488 if (!dbs_tuners_ins.powersave_bias) {
489 __cpufreq_driver_target(policy, freq_next,
490 CPUFREQ_RELATION_L);
491 } else {
492 int freq = powersave_bias_target(policy, freq_next,
493 CPUFREQ_RELATION_L);
494 __cpufreq_driver_target(policy, freq,
495 CPUFREQ_RELATION_L);
496 }
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
David Howellsc4028952006-11-22 14:57:56 +0000500static void do_dbs_timer(struct work_struct *work)
Dave Jones32ee8c32006-02-28 00:43:23 -0500501{
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800502 struct cpu_dbs_info_s *dbs_info =
503 container_of(work, struct cpu_dbs_info_s, work.work);
504 unsigned int cpu = dbs_info->cpu;
505 int sample_type = dbs_info->sample_type;
506
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400507 /* We want all CPUs to do sampling nearly on same jiffy */
508 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
David Howellsc4028952006-11-22 14:57:56 +0000509
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400510 delay -= jiffies % delay;
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700511
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800512 if (lock_policy_rwsem_write(cpu) < 0)
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700513 return;
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800514
515 if (!dbs_info->enable) {
516 unlock_policy_rwsem_write(cpu);
517 return;
518 }
519
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400520 /* Common NORMAL_SAMPLE setup */
David Howellsc4028952006-11-22 14:57:56 +0000521 dbs_info->sample_type = DBS_NORMAL_SAMPLE;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400522 if (!dbs_tuners_ins.powersave_bias ||
David Howellsc4028952006-11-22 14:57:56 +0000523 sample_type == DBS_NORMAL_SAMPLE) {
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400524 dbs_check_cpu(dbs_info);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400525 if (dbs_info->freq_lo) {
526 /* Setup timer for SUB_SAMPLE */
David Howellsc4028952006-11-22 14:57:56 +0000527 dbs_info->sample_type = DBS_SUB_SAMPLE;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400528 delay = dbs_info->freq_hi_jiffies;
529 }
530 } else {
531 __cpufreq_driver_target(dbs_info->cur_policy,
Dave Jones2b03f892009-01-18 01:43:44 -0500532 dbs_info->freq_lo, CPUFREQ_RELATION_H);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400533 }
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400534 queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay);
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800535 unlock_policy_rwsem_write(cpu);
Dave Jones32ee8c32006-02-28 00:43:23 -0500536}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800538static inline void dbs_timer_init(struct cpu_dbs_info_s *dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400540 /* We want all CPUs to do sampling nearly on same jiffy */
541 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
542 delay -= jiffies % delay;
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700543
Dave Jonesc18a1482007-02-10 20:03:51 -0500544 dbs_info->enable = 1;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400545 ondemand_powersave_bias_init();
David Howellsc4028952006-11-22 14:57:56 +0000546 dbs_info->sample_type = DBS_NORMAL_SAMPLE;
Venki Pallipadi28287032007-05-08 00:27:47 -0700547 INIT_DELAYED_WORK_DEFERRABLE(&dbs_info->work, do_dbs_timer);
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800548 queue_delayed_work_on(dbs_info->cpu, kondemand_wq, &dbs_info->work,
Dave Jones2b03f892009-01-18 01:43:44 -0500549 delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700552static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700554 dbs_info->enable = 0;
555 cancel_delayed_work(&dbs_info->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
559 unsigned int event)
560{
561 unsigned int cpu = policy->cpu;
562 struct cpu_dbs_info_s *this_dbs_info;
563 unsigned int j;
Jeff Garzik914f7c32006-10-20 14:31:00 -0700564 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 this_dbs_info = &per_cpu(cpu_dbs_info, cpu);
567
568 switch (event) {
569 case CPUFREQ_GOV_START:
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700570 if ((!cpu_online(cpu)) || (!policy->cur))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return -EINVAL;
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (this_dbs_info->enable) /* Already enabled */
574 break;
Dave Jones32ee8c32006-02-28 00:43:23 -0500575
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800576 mutex_lock(&dbs_mutex);
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700577 dbs_enable++;
Jeff Garzik914f7c32006-10-20 14:31:00 -0700578
579 rc = sysfs_create_group(&policy->kobj, &dbs_attr_group);
580 if (rc) {
Jeff Garzik914f7c32006-10-20 14:31:00 -0700581 dbs_enable--;
582 mutex_unlock(&dbs_mutex);
583 return rc;
584 }
585
Rusty Russell835481d2009-01-04 05:18:06 -0800586 for_each_cpu(j, policy->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 struct cpu_dbs_info_s *j_dbs_info;
588 j_dbs_info = &per_cpu(cpu_dbs_info, j);
589 j_dbs_info->cur_policy = policy;
Dave Jones32ee8c32006-02-28 00:43:23 -0500590
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700591 j_dbs_info->prev_cpu_idle = get_cpu_idle_time(j,
592 &j_dbs_info->prev_cpu_wall);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500593 if (dbs_tuners_ins.ignore_nice) {
594 j_dbs_info->prev_cpu_nice =
595 kstat_cpu(j).cpustat.nice;
596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800598 this_dbs_info->cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /*
600 * Start the timerschedule work, when this governor
601 * is used for first time
602 */
603 if (dbs_enable == 1) {
604 unsigned int latency;
605 /* policy latency is in nS. Convert it to uS first */
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700606 latency = policy->cpuinfo.transition_latency / 1000;
607 if (latency == 0)
608 latency = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700610 def_sampling_rate = latency *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 DEF_SAMPLING_RATE_LATENCY_MULTIPLIER;
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700612
613 if (def_sampling_rate < MIN_STAT_SAMPLING_RATE)
614 def_sampling_rate = MIN_STAT_SAMPLING_RATE;
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 dbs_tuners_ins.sampling_rate = def_sampling_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800618 dbs_timer_init(this_dbs_info);
Dave Jones32ee8c32006-02-28 00:43:23 -0500619
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800620 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 break;
622
623 case CPUFREQ_GOV_STOP:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800624 mutex_lock(&dbs_mutex);
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700625 dbs_timer_exit(this_dbs_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 sysfs_remove_group(&policy->kobj, &dbs_attr_group);
627 dbs_enable--;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800628 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 break;
631
632 case CPUFREQ_GOV_LIMITS:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800633 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (policy->max < this_dbs_info->cur_policy->cur)
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700635 __cpufreq_driver_target(this_dbs_info->cur_policy,
Dave Jones2b03f892009-01-18 01:43:44 -0500636 policy->max, CPUFREQ_RELATION_H);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 else if (policy->min > this_dbs_info->cur_policy->cur)
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700638 __cpufreq_driver_target(this_dbs_info->cur_policy,
Dave Jones2b03f892009-01-18 01:43:44 -0500639 policy->min, CPUFREQ_RELATION_L);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800640 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 break;
642 }
643 return 0;
644}
645
Sven Wegenerc4d14bc2008-09-20 16:50:08 +0200646#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
647static
648#endif
Thomas Renninger1c256242007-10-02 13:28:12 -0700649struct cpufreq_governor cpufreq_gov_ondemand = {
650 .name = "ondemand",
651 .governor = cpufreq_governor_dbs,
652 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
653 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656static int __init cpufreq_gov_dbs_init(void)
657{
Akinobu Mita888a7942008-07-14 12:00:45 +0900658 int err;
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700659 cputime64_t wall;
Andrea Righi4f6e6b92008-09-18 10:43:40 +0000660 u64 idle_time;
661 int cpu = get_cpu();
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700662
Andrea Righi4f6e6b92008-09-18 10:43:40 +0000663 idle_time = get_cpu_idle_time_us(cpu, &wall);
664 put_cpu();
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700665 if (idle_time != -1ULL) {
666 /* Idle micro accounting is supported. Use finer thresholds */
667 dbs_tuners_ins.up_threshold = MICRO_FREQUENCY_UP_THRESHOLD;
668 dbs_tuners_ins.down_differential =
669 MICRO_FREQUENCY_DOWN_DIFFERENTIAL;
670 }
Akinobu Mita888a7942008-07-14 12:00:45 +0900671
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800672 kondemand_wq = create_workqueue("kondemand");
673 if (!kondemand_wq) {
674 printk(KERN_ERR "Creation of kondemand failed\n");
675 return -EFAULT;
676 }
Akinobu Mita888a7942008-07-14 12:00:45 +0900677 err = cpufreq_register_governor(&cpufreq_gov_ondemand);
678 if (err)
679 destroy_workqueue(kondemand_wq);
680
681 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684static void __exit cpufreq_gov_dbs_exit(void)
685{
Thomas Renninger1c256242007-10-02 13:28:12 -0700686 cpufreq_unregister_governor(&cpufreq_gov_ondemand);
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800687 destroy_workqueue(kondemand_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
690
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700691MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
692MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
693MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
Dave Jones2b03f892009-01-18 01:43:44 -0500694 "Low Latency Frequency Transition capable processors");
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700695MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Johannes Weiner69157192008-01-17 15:21:08 -0800697#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
698fs_initcall(cpufreq_gov_dbs_init);
699#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800701#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702module_exit(cpufreq_gov_dbs_exit);