blob: 048ec8b1f40682a4f0c3c288563e49e34c99439a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/*
23 * dbs is used in this file as a shortform for demandbased switching
24 * It helps to keep variable names smaller, simpler
25 */
26
27#define DEF_FREQUENCY_UP_THRESHOLD (80)
Dave Jonesc29f1402005-05-31 19:03:50 -070028#define MIN_FREQUENCY_UP_THRESHOLD (11)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#define MAX_FREQUENCY_UP_THRESHOLD (100)
30
Dave Jones32ee8c32006-02-28 00:43:23 -050031/*
32 * The polling frequency of this governor depends on the capability of
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * the processor. Default polling frequency is 1000 times the transition
Dave Jones32ee8c32006-02-28 00:43:23 -050034 * latency of the processor. The governor will work on any processor with
35 * transition latency <= 10mS, using appropriate sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * rate.
37 * For CPUs with transition latency > 10mS (mostly drivers with CPUFREQ_ETERNAL)
38 * this governor will not work.
39 * All times here are in uS.
40 */
Dave Jones32ee8c32006-02-28 00:43:23 -050041static unsigned int def_sampling_rate;
Dave Jonesdf8b59b2005-09-20 12:39:35 -070042#define MIN_SAMPLING_RATE_RATIO (2)
43/* for correct statistics, we need at least 10 ticks between each measure */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +053044#define MIN_STAT_SAMPLING_RATE \
45 (MIN_SAMPLING_RATE_RATIO * jiffies_to_usecs(10))
46#define MIN_SAMPLING_RATE \
47 (def_sampling_rate / MIN_SAMPLING_RATE_RATIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define MAX_SAMPLING_RATE (500 * def_sampling_rate)
49#define DEF_SAMPLING_RATE_LATENCY_MULTIPLIER (1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define TRANSITION_LATENCY_LIMIT (10 * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52static void do_dbs_timer(void *data);
53
54struct cpu_dbs_info_s {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -070055 cputime64_t prev_cpu_idle;
56 cputime64_t prev_cpu_wall;
Dave Jones32ee8c32006-02-28 00:43:23 -050057 struct cpufreq_policy *cur_policy;
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -070058 struct work_struct work;
Dave Jones32ee8c32006-02-28 00:43:23 -050059 unsigned int enable;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040060 struct cpufreq_frequency_table *freq_table;
61 unsigned int freq_lo;
62 unsigned int freq_lo_jiffies;
63 unsigned int freq_hi_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info);
66
67static unsigned int dbs_enable; /* number of CPUs using this policy */
68
Venkatesh Pallipadi4ec223d2006-06-21 15:18:34 -070069/*
70 * DEADLOCK ALERT! There is a ordering requirement between cpu_hotplug
71 * lock and dbs_mutex. cpu_hotplug lock should always be held before
72 * dbs_mutex. If any function that can potentially take cpu_hotplug lock
73 * (like __cpufreq_driver_target()) is being called with dbs_mutex taken, then
74 * cpu_hotplug lock should be taken before that. Note that cpu_hotplug lock
75 * is recursive for the same process. -Venki
76 */
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -070077static DEFINE_MUTEX(dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -070079static struct workqueue_struct *kondemand_wq;
Andi Kleen6810b542006-05-08 15:17:31 +020080
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040081static struct dbs_tuners {
Dave Jones32ee8c32006-02-28 00:43:23 -050082 unsigned int sampling_rate;
Dave Jones32ee8c32006-02-28 00:43:23 -050083 unsigned int up_threshold;
84 unsigned int ignore_nice;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040085 unsigned int powersave_bias;
86} dbs_tuners_ins = {
Dave Jones32ee8c32006-02-28 00:43:23 -050087 .up_threshold = DEF_FREQUENCY_UP_THRESHOLD,
Eric Piel9cbad612006-03-10 11:35:27 +020088 .ignore_nice = 0,
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040089 .powersave_bias = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -070092static inline cputime64_t get_cpu_idle_time(unsigned int cpu)
Dave Jonesdac1c1a2005-05-31 19:03:49 -070093{
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -070094 cputime64_t retval;
95
96 retval = cputime64_add(kstat_cpu(cpu).cpustat.idle,
97 kstat_cpu(cpu).cpustat.iowait);
98
99 if (dbs_tuners_ins.ignore_nice)
100 retval = cputime64_add(retval, kstat_cpu(cpu).cpustat.nice);
101
102 return retval;
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700103}
104
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400105/*
106 * Find right freq to be set now with powersave_bias on.
107 * Returns the freq_hi to be used right now and will set freq_hi_jiffies,
108 * freq_lo, and freq_lo_jiffies in percpu area for averaging freqs.
109 */
Adrian Bunkb5ecf602006-08-13 23:00:08 +0200110static unsigned int powersave_bias_target(struct cpufreq_policy *policy,
111 unsigned int freq_next,
112 unsigned int relation)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400113{
114 unsigned int freq_req, freq_reduc, freq_avg;
115 unsigned int freq_hi, freq_lo;
116 unsigned int index = 0;
117 unsigned int jiffies_total, jiffies_hi, jiffies_lo;
118 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, policy->cpu);
119
120 if (!dbs_info->freq_table) {
121 dbs_info->freq_lo = 0;
122 dbs_info->freq_lo_jiffies = 0;
123 return freq_next;
124 }
125
126 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_next,
127 relation, &index);
128 freq_req = dbs_info->freq_table[index].frequency;
129 freq_reduc = freq_req * dbs_tuners_ins.powersave_bias / 1000;
130 freq_avg = freq_req - freq_reduc;
131
132 /* Find freq bounds for freq_avg in freq_table */
133 index = 0;
134 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
135 CPUFREQ_RELATION_H, &index);
136 freq_lo = dbs_info->freq_table[index].frequency;
137 index = 0;
138 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
139 CPUFREQ_RELATION_L, &index);
140 freq_hi = dbs_info->freq_table[index].frequency;
141
142 /* Find out how long we have to be in hi and lo freqs */
143 if (freq_hi == freq_lo) {
144 dbs_info->freq_lo = 0;
145 dbs_info->freq_lo_jiffies = 0;
146 return freq_lo;
147 }
148 jiffies_total = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
149 jiffies_hi = (freq_avg - freq_lo) * jiffies_total;
150 jiffies_hi += ((freq_hi - freq_lo) / 2);
151 jiffies_hi /= (freq_hi - freq_lo);
152 jiffies_lo = jiffies_total - jiffies_hi;
153 dbs_info->freq_lo = freq_lo;
154 dbs_info->freq_lo_jiffies = jiffies_lo;
155 dbs_info->freq_hi_jiffies = jiffies_hi;
156 return freq_hi;
157}
158
159static void ondemand_powersave_bias_init(void)
160{
161 int i;
162 for_each_online_cpu(i) {
163 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, i);
164 dbs_info->freq_table = cpufreq_frequency_get_table(i);
165 dbs_info->freq_lo = 0;
166 }
167}
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/************************** sysfs interface ************************/
170static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf)
171{
172 return sprintf (buf, "%u\n", MAX_SAMPLING_RATE);
173}
174
175static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf)
176{
177 return sprintf (buf, "%u\n", MIN_SAMPLING_RATE);
178}
179
Dave Jones32ee8c32006-02-28 00:43:23 -0500180#define define_one_ro(_name) \
181static struct freq_attr _name = \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182__ATTR(_name, 0444, show_##_name, NULL)
183
184define_one_ro(sampling_rate_max);
185define_one_ro(sampling_rate_min);
186
187/* cpufreq_ondemand Governor Tunables */
188#define show_one(file_name, object) \
189static ssize_t show_##file_name \
190(struct cpufreq_policy *unused, char *buf) \
191{ \
192 return sprintf(buf, "%u\n", dbs_tuners_ins.object); \
193}
194show_one(sampling_rate, sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195show_one(up_threshold, up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800196show_one(ignore_nice_load, ignore_nice);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400197show_one(powersave_bias, powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Dave Jones32ee8c32006-02-28 00:43:23 -0500199static ssize_t store_sampling_rate(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 const char *buf, size_t count)
201{
202 unsigned int input;
203 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700204 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800206 mutex_lock(&dbs_mutex);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530207 if (ret != 1 || input > MAX_SAMPLING_RATE
208 || input < MIN_SAMPLING_RATE) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800209 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return -EINVAL;
211 }
212
213 dbs_tuners_ins.sampling_rate = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800214 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 return count;
217}
218
Dave Jones32ee8c32006-02-28 00:43:23 -0500219static ssize_t store_up_threshold(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 const char *buf, size_t count)
221{
222 unsigned int input;
223 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700224 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800226 mutex_lock(&dbs_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -0500227 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
Dave Jonesc29f1402005-05-31 19:03:50 -0700228 input < MIN_FREQUENCY_UP_THRESHOLD) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800229 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return -EINVAL;
231 }
232
233 dbs_tuners_ins.up_threshold = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800234 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 return count;
237}
238
Alexander Clouter001893c2005-12-01 01:09:25 -0800239static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy,
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700240 const char *buf, size_t count)
241{
242 unsigned int input;
243 int ret;
244
245 unsigned int j;
Dave Jones32ee8c32006-02-28 00:43:23 -0500246
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700247 ret = sscanf(buf, "%u", &input);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700248 if ( ret != 1 )
249 return -EINVAL;
250
251 if ( input > 1 )
252 input = 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500253
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800254 mutex_lock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700255 if ( input == dbs_tuners_ins.ignore_nice ) { /* nothing to do */
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800256 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700257 return count;
258 }
259 dbs_tuners_ins.ignore_nice = input;
260
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700261 /* we need to re-evaluate prev_cpu_idle */
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700262 for_each_online_cpu(j) {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700263 struct cpu_dbs_info_s *dbs_info;
264 dbs_info = &per_cpu(cpu_dbs_info, j);
265 dbs_info->prev_cpu_idle = get_cpu_idle_time(j);
266 dbs_info->prev_cpu_wall = get_jiffies_64();
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700267 }
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800268 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700269
270 return count;
271}
272
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400273static ssize_t store_powersave_bias(struct cpufreq_policy *unused,
274 const char *buf, size_t count)
275{
276 unsigned int input;
277 int ret;
278 ret = sscanf(buf, "%u", &input);
279
280 if (ret != 1)
281 return -EINVAL;
282
283 if (input > 1000)
284 input = 1000;
285
286 mutex_lock(&dbs_mutex);
287 dbs_tuners_ins.powersave_bias = input;
288 ondemand_powersave_bias_init();
289 mutex_unlock(&dbs_mutex);
290
291 return count;
292}
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294#define define_one_rw(_name) \
295static struct freq_attr _name = \
296__ATTR(_name, 0644, show_##_name, store_##_name)
297
298define_one_rw(sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299define_one_rw(up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800300define_one_rw(ignore_nice_load);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400301define_one_rw(powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303static struct attribute * dbs_attributes[] = {
304 &sampling_rate_max.attr,
305 &sampling_rate_min.attr,
306 &sampling_rate.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 &up_threshold.attr,
Alexander Clouter001893c2005-12-01 01:09:25 -0800308 &ignore_nice_load.attr,
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400309 &powersave_bias.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 NULL
311};
312
313static struct attribute_group dbs_attr_group = {
314 .attrs = dbs_attributes,
315 .name = "ondemand",
316};
317
318/************************** sysfs end ************************/
319
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700320static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700322 unsigned int idle_ticks, total_ticks;
323 unsigned int load;
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700324 cputime64_t cur_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 struct cpufreq_policy *policy;
327 unsigned int j;
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (!this_dbs_info->enable)
330 return;
331
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400332 this_dbs_info->freq_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 policy = this_dbs_info->cur_policy;
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700334 cur_jiffies = jiffies64_to_cputime64(get_jiffies_64());
335 total_ticks = (unsigned int) cputime64_sub(cur_jiffies,
336 this_dbs_info->prev_cpu_wall);
337 this_dbs_info->prev_cpu_wall = cur_jiffies;
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700338 if (!total_ticks)
339 return;
Dave Jones32ee8c32006-02-28 00:43:23 -0500340 /*
Dave Jonesc29f1402005-05-31 19:03:50 -0700341 * Every sampling_rate, we check, if current idle time is less
342 * than 20% (default), then we try to increase frequency
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700343 * Every sampling_rate, we look for a the lowest
Dave Jonesc29f1402005-05-31 19:03:50 -0700344 * frequency which can sustain the load while keeping idle time over
345 * 30%. If such a frequency exist, we try to decrease to this frequency.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500347 * Any frequency increase takes it to the maximum frequency.
348 * Frequency reduction happens at minimum steps of
349 * 5% (default) of current frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
351
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700352 /* Get Idle Time */
Dave Jones9c7d2692005-05-31 19:03:49 -0700353 idle_ticks = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 for_each_cpu_mask(j, policy->cpus) {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700355 cputime64_t total_idle_ticks;
356 unsigned int tmp_idle_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct cpu_dbs_info_s *j_dbs_info;
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 j_dbs_info = &per_cpu(cpu_dbs_info, j);
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700360 total_idle_ticks = get_cpu_idle_time(j);
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700361 tmp_idle_ticks = (unsigned int) cputime64_sub(total_idle_ticks,
362 j_dbs_info->prev_cpu_idle);
363 j_dbs_info->prev_cpu_idle = total_idle_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 if (tmp_idle_ticks < idle_ticks)
366 idle_ticks = tmp_idle_ticks;
367 }
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700368 load = (100 * (total_ticks - idle_ticks)) / total_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700370 /* Check for frequency increase */
371 if (load > dbs_tuners_ins.up_threshold) {
Dave Jonesc11420a2005-05-31 19:03:48 -0700372 /* if we are already at full speed then break out early */
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400373 if (!dbs_tuners_ins.powersave_bias) {
374 if (policy->cur == policy->max)
375 return;
Dave Jones32ee8c32006-02-28 00:43:23 -0500376
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400377 __cpufreq_driver_target(policy, policy->max,
378 CPUFREQ_RELATION_H);
379 } else {
380 int freq = powersave_bias_target(policy, policy->max,
381 CPUFREQ_RELATION_H);
382 __cpufreq_driver_target(policy, freq,
383 CPUFREQ_RELATION_L);
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return;
386 }
387
388 /* Check for frequency decrease */
Dave Jonesc29f1402005-05-31 19:03:50 -0700389 /* if we cannot reduce the frequency anymore, break out early */
390 if (policy->cur == policy->min)
391 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Dave Jonesc29f1402005-05-31 19:03:50 -0700393 /*
394 * The optimal frequency is the frequency that is the lowest that
395 * can support the current CPU usage without triggering the up
396 * policy. To be safe, we focus 10 points under the threshold.
397 */
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700398 if (load < (dbs_tuners_ins.up_threshold - 10)) {
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700399 unsigned int freq_next, freq_cur;
400
401 freq_cur = cpufreq_driver_getavg(policy);
402 if (!freq_cur)
403 freq_cur = policy->cur;
404
405 freq_next = (freq_cur * load) /
Dave Jonesc29f1402005-05-31 19:03:50 -0700406 (dbs_tuners_ins.up_threshold - 10);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700407
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400408 if (!dbs_tuners_ins.powersave_bias) {
409 __cpufreq_driver_target(policy, freq_next,
410 CPUFREQ_RELATION_L);
411 } else {
412 int freq = powersave_bias_target(policy, freq_next,
413 CPUFREQ_RELATION_L);
414 __cpufreq_driver_target(policy, freq,
415 CPUFREQ_RELATION_L);
416 }
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400420/* Sampling types */
421enum {DBS_NORMAL_SAMPLE, DBS_SUB_SAMPLE};
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423static void do_dbs_timer(void *data)
Dave Jones32ee8c32006-02-28 00:43:23 -0500424{
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700425 unsigned int cpu = smp_processor_id();
426 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, cpu);
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400427 /* We want all CPUs to do sampling nearly on same jiffy */
428 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
429 delay -= jiffies % delay;
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700430
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700431 if (!dbs_info->enable)
432 return;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400433 /* Common NORMAL_SAMPLE setup */
434 INIT_WORK(&dbs_info->work, do_dbs_timer, (void *)DBS_NORMAL_SAMPLE);
435 if (!dbs_tuners_ins.powersave_bias ||
436 (unsigned long) data == DBS_NORMAL_SAMPLE) {
437 lock_cpu_hotplug();
438 dbs_check_cpu(dbs_info);
439 unlock_cpu_hotplug();
440 if (dbs_info->freq_lo) {
441 /* Setup timer for SUB_SAMPLE */
442 INIT_WORK(&dbs_info->work, do_dbs_timer,
443 (void *)DBS_SUB_SAMPLE);
444 delay = dbs_info->freq_hi_jiffies;
445 }
446 } else {
447 __cpufreq_driver_target(dbs_info->cur_policy,
448 dbs_info->freq_lo,
449 CPUFREQ_RELATION_H);
450 }
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400451 queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay);
Dave Jones32ee8c32006-02-28 00:43:23 -0500452}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700454static inline void dbs_timer_init(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700456 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, cpu);
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400457 /* We want all CPUs to do sampling nearly on same jiffy */
458 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
459 delay -= jiffies % delay;
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700460
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400461 ondemand_powersave_bias_init();
Dave Jones3906f4e2006-09-05 17:15:47 -0400462 INIT_WORK(&dbs_info->work, do_dbs_timer, NULL);
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400463 queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700466static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700468 dbs_info->enable = 0;
469 cancel_delayed_work(&dbs_info->work);
470 flush_workqueue(kondemand_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
474 unsigned int event)
475{
476 unsigned int cpu = policy->cpu;
477 struct cpu_dbs_info_s *this_dbs_info;
478 unsigned int j;
Jeff Garzik914f7c32006-10-20 14:31:00 -0700479 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 this_dbs_info = &per_cpu(cpu_dbs_info, cpu);
482
483 switch (event) {
484 case CPUFREQ_GOV_START:
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700485 if ((!cpu_online(cpu)) || (!policy->cur))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return -EINVAL;
487
488 if (policy->cpuinfo.transition_latency >
Eric Pielff8c2882006-03-10 11:34:16 +0200489 (TRANSITION_LATENCY_LIMIT * 1000)) {
490 printk(KERN_WARNING "ondemand governor failed to load "
491 "due to too long transition latency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return -EINVAL;
Eric Pielff8c2882006-03-10 11:34:16 +0200493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (this_dbs_info->enable) /* Already enabled */
495 break;
Dave Jones32ee8c32006-02-28 00:43:23 -0500496
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800497 mutex_lock(&dbs_mutex);
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700498 dbs_enable++;
499 if (dbs_enable == 1) {
500 kondemand_wq = create_workqueue("kondemand");
501 if (!kondemand_wq) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530502 printk(KERN_ERR
503 "Creation of kondemand failed\n");
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700504 dbs_enable--;
505 mutex_unlock(&dbs_mutex);
506 return -ENOSPC;
507 }
508 }
Jeff Garzik914f7c32006-10-20 14:31:00 -0700509
510 rc = sysfs_create_group(&policy->kobj, &dbs_attr_group);
511 if (rc) {
512 if (dbs_enable == 1)
513 destroy_workqueue(kondemand_wq);
514 dbs_enable--;
515 mutex_unlock(&dbs_mutex);
516 return rc;
517 }
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 for_each_cpu_mask(j, policy->cpus) {
520 struct cpu_dbs_info_s *j_dbs_info;
521 j_dbs_info = &per_cpu(cpu_dbs_info, j);
522 j_dbs_info->cur_policy = policy;
Dave Jones32ee8c32006-02-28 00:43:23 -0500523
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700524 j_dbs_info->prev_cpu_idle = get_cpu_idle_time(j);
525 j_dbs_info->prev_cpu_wall = get_jiffies_64();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527 this_dbs_info->enable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /*
529 * Start the timerschedule work, when this governor
530 * is used for first time
531 */
532 if (dbs_enable == 1) {
533 unsigned int latency;
534 /* policy latency is in nS. Convert it to uS first */
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700535 latency = policy->cpuinfo.transition_latency / 1000;
536 if (latency == 0)
537 latency = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700539 def_sampling_rate = latency *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 DEF_SAMPLING_RATE_LATENCY_MULTIPLIER;
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700541
542 if (def_sampling_rate < MIN_STAT_SAMPLING_RATE)
543 def_sampling_rate = MIN_STAT_SAMPLING_RATE;
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 dbs_tuners_ins.sampling_rate = def_sampling_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700547 dbs_timer_init(policy->cpu);
Dave Jones32ee8c32006-02-28 00:43:23 -0500548
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800549 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 break;
551
552 case CPUFREQ_GOV_STOP:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800553 mutex_lock(&dbs_mutex);
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700554 dbs_timer_exit(this_dbs_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 sysfs_remove_group(&policy->kobj, &dbs_attr_group);
556 dbs_enable--;
Dave Jones32ee8c32006-02-28 00:43:23 -0500557 if (dbs_enable == 0)
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700558 destroy_workqueue(kondemand_wq);
Dave Jones32ee8c32006-02-28 00:43:23 -0500559
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800560 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 break;
563
564 case CPUFREQ_GOV_LIMITS:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800565 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (policy->max < this_dbs_info->cur_policy->cur)
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700567 __cpufreq_driver_target(this_dbs_info->cur_policy,
568 policy->max,
569 CPUFREQ_RELATION_H);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 else if (policy->min > this_dbs_info->cur_policy->cur)
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700571 __cpufreq_driver_target(this_dbs_info->cur_policy,
572 policy->min,
573 CPUFREQ_RELATION_L);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800574 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 break;
576 }
577 return 0;
578}
579
Dave Jones7f335d42005-05-31 19:03:46 -0700580static struct cpufreq_governor cpufreq_gov_dbs = {
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700581 .name = "ondemand",
582 .governor = cpufreq_governor_dbs,
583 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586static int __init cpufreq_gov_dbs_init(void)
587{
588 return cpufreq_register_governor(&cpufreq_gov_dbs);
589}
590
591static void __exit cpufreq_gov_dbs_exit(void)
592{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 cpufreq_unregister_governor(&cpufreq_gov_dbs);
594}
595
596
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700597MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
598MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
599MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
600 "Low Latency Frequency Transition capable processors");
601MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603module_init(cpufreq_gov_dbs_init);
604module_exit(cpufreq_gov_dbs_exit);