blob: e1cc5113c2ae4695eb998efacb8a9747a7eecbc0 [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 */
44#define MIN_STAT_SAMPLING_RATE (MIN_SAMPLING_RATE_RATIO * jiffies_to_usecs(10))
45#define MIN_SAMPLING_RATE (def_sampling_rate / MIN_SAMPLING_RATE_RATIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define MAX_SAMPLING_RATE (500 * def_sampling_rate)
47#define DEF_SAMPLING_RATE_LATENCY_MULTIPLIER (1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define TRANSITION_LATENCY_LIMIT (10 * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
David Howellsc4028952006-11-22 14:57:56 +000050static void do_dbs_timer(struct work_struct *work);
51
52/* Sampling types */
53enum dbs_sample {DBS_NORMAL_SAMPLE, DBS_SUB_SAMPLE};
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55struct cpu_dbs_info_s {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -070056 cputime64_t prev_cpu_idle;
57 cputime64_t prev_cpu_wall;
Dave Jones32ee8c32006-02-28 00:43:23 -050058 struct cpufreq_policy *cur_policy;
David Howellsc4028952006-11-22 14:57:56 +000059 struct delayed_work work;
60 enum dbs_sample sample_type;
Dave Jones32ee8c32006-02-28 00:43:23 -050061 unsigned int enable;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040062 struct cpufreq_frequency_table *freq_table;
63 unsigned int freq_lo;
64 unsigned int freq_lo_jiffies;
65 unsigned int freq_hi_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info);
68
69static unsigned int dbs_enable; /* number of CPUs using this policy */
70
Venkatesh Pallipadi4ec223d2006-06-21 15:18:34 -070071/*
72 * DEADLOCK ALERT! There is a ordering requirement between cpu_hotplug
73 * lock and dbs_mutex. cpu_hotplug lock should always be held before
74 * dbs_mutex. If any function that can potentially take cpu_hotplug lock
75 * (like __cpufreq_driver_target()) is being called with dbs_mutex taken, then
76 * cpu_hotplug lock should be taken before that. Note that cpu_hotplug lock
77 * is recursive for the same process. -Venki
78 */
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -070079static DEFINE_MUTEX(dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -070081static struct workqueue_struct *kondemand_wq;
Andi Kleen6810b542006-05-08 15:17:31 +020082
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040083static struct dbs_tuners {
Dave Jones32ee8c32006-02-28 00:43:23 -050084 unsigned int sampling_rate;
Dave Jones32ee8c32006-02-28 00:43:23 -050085 unsigned int up_threshold;
86 unsigned int ignore_nice;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040087 unsigned int powersave_bias;
88} dbs_tuners_ins = {
Dave Jones32ee8c32006-02-28 00:43:23 -050089 .up_threshold = DEF_FREQUENCY_UP_THRESHOLD,
Eric Piel9cbad612006-03-10 11:35:27 +020090 .ignore_nice = 0,
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040091 .powersave_bias = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -070094static inline cputime64_t get_cpu_idle_time(unsigned int cpu)
Dave Jonesdac1c1a2005-05-31 19:03:49 -070095{
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -070096 cputime64_t retval;
97
98 retval = cputime64_add(kstat_cpu(cpu).cpustat.idle,
99 kstat_cpu(cpu).cpustat.iowait);
100
101 if (dbs_tuners_ins.ignore_nice)
102 retval = cputime64_add(retval, kstat_cpu(cpu).cpustat.nice);
103
104 return retval;
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700105}
106
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400107/*
108 * Find right freq to be set now with powersave_bias on.
109 * Returns the freq_hi to be used right now and will set freq_hi_jiffies,
110 * freq_lo, and freq_lo_jiffies in percpu area for averaging freqs.
111 */
Adrian Bunkb5ecf602006-08-13 23:00:08 +0200112static unsigned int powersave_bias_target(struct cpufreq_policy *policy,
113 unsigned int freq_next,
114 unsigned int relation)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400115{
116 unsigned int freq_req, freq_reduc, freq_avg;
117 unsigned int freq_hi, freq_lo;
118 unsigned int index = 0;
119 unsigned int jiffies_total, jiffies_hi, jiffies_lo;
120 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, policy->cpu);
121
122 if (!dbs_info->freq_table) {
123 dbs_info->freq_lo = 0;
124 dbs_info->freq_lo_jiffies = 0;
125 return freq_next;
126 }
127
128 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_next,
129 relation, &index);
130 freq_req = dbs_info->freq_table[index].frequency;
131 freq_reduc = freq_req * dbs_tuners_ins.powersave_bias / 1000;
132 freq_avg = freq_req - freq_reduc;
133
134 /* Find freq bounds for freq_avg in freq_table */
135 index = 0;
136 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
137 CPUFREQ_RELATION_H, &index);
138 freq_lo = dbs_info->freq_table[index].frequency;
139 index = 0;
140 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
141 CPUFREQ_RELATION_L, &index);
142 freq_hi = dbs_info->freq_table[index].frequency;
143
144 /* Find out how long we have to be in hi and lo freqs */
145 if (freq_hi == freq_lo) {
146 dbs_info->freq_lo = 0;
147 dbs_info->freq_lo_jiffies = 0;
148 return freq_lo;
149 }
150 jiffies_total = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
151 jiffies_hi = (freq_avg - freq_lo) * jiffies_total;
152 jiffies_hi += ((freq_hi - freq_lo) / 2);
153 jiffies_hi /= (freq_hi - freq_lo);
154 jiffies_lo = jiffies_total - jiffies_hi;
155 dbs_info->freq_lo = freq_lo;
156 dbs_info->freq_lo_jiffies = jiffies_lo;
157 dbs_info->freq_hi_jiffies = jiffies_hi;
158 return freq_hi;
159}
160
161static void ondemand_powersave_bias_init(void)
162{
163 int i;
164 for_each_online_cpu(i) {
165 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, i);
166 dbs_info->freq_table = cpufreq_frequency_get_table(i);
167 dbs_info->freq_lo = 0;
168 }
169}
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/************************** sysfs interface ************************/
172static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf)
173{
174 return sprintf (buf, "%u\n", MAX_SAMPLING_RATE);
175}
176
177static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf)
178{
179 return sprintf (buf, "%u\n", MIN_SAMPLING_RATE);
180}
181
Dave Jones32ee8c32006-02-28 00:43:23 -0500182#define define_one_ro(_name) \
183static struct freq_attr _name = \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184__ATTR(_name, 0444, show_##_name, NULL)
185
186define_one_ro(sampling_rate_max);
187define_one_ro(sampling_rate_min);
188
189/* cpufreq_ondemand Governor Tunables */
190#define show_one(file_name, object) \
191static ssize_t show_##file_name \
192(struct cpufreq_policy *unused, char *buf) \
193{ \
194 return sprintf(buf, "%u\n", dbs_tuners_ins.object); \
195}
196show_one(sampling_rate, sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197show_one(up_threshold, up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800198show_one(ignore_nice_load, ignore_nice);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400199show_one(powersave_bias, powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Dave Jones32ee8c32006-02-28 00:43:23 -0500201static ssize_t store_sampling_rate(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 const char *buf, size_t count)
203{
204 unsigned int input;
205 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700206 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800208 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (ret != 1 || input > MAX_SAMPLING_RATE || input < MIN_SAMPLING_RATE) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800210 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return -EINVAL;
212 }
213
214 dbs_tuners_ins.sampling_rate = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800215 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 return count;
218}
219
Dave Jones32ee8c32006-02-28 00:43:23 -0500220static ssize_t store_up_threshold(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 const char *buf, size_t count)
222{
223 unsigned int input;
224 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700225 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800227 mutex_lock(&dbs_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -0500228 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
Dave Jonesc29f1402005-05-31 19:03:50 -0700229 input < MIN_FREQUENCY_UP_THRESHOLD) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800230 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return -EINVAL;
232 }
233
234 dbs_tuners_ins.up_threshold = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800235 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 return count;
238}
239
Alexander Clouter001893c2005-12-01 01:09:25 -0800240static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy,
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700241 const char *buf, size_t count)
242{
243 unsigned int input;
244 int ret;
245
246 unsigned int j;
Dave Jones32ee8c32006-02-28 00:43:23 -0500247
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700248 ret = sscanf(buf, "%u", &input);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700249 if ( ret != 1 )
250 return -EINVAL;
251
252 if ( input > 1 )
253 input = 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500254
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800255 mutex_lock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700256 if ( input == dbs_tuners_ins.ignore_nice ) { /* nothing to do */
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800257 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700258 return count;
259 }
260 dbs_tuners_ins.ignore_nice = input;
261
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700262 /* we need to re-evaluate prev_cpu_idle */
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700263 for_each_online_cpu(j) {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700264 struct cpu_dbs_info_s *dbs_info;
265 dbs_info = &per_cpu(cpu_dbs_info, j);
266 dbs_info->prev_cpu_idle = get_cpu_idle_time(j);
267 dbs_info->prev_cpu_wall = get_jiffies_64();
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700268 }
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800269 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700270
271 return count;
272}
273
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400274static ssize_t store_powersave_bias(struct cpufreq_policy *unused,
275 const char *buf, size_t count)
276{
277 unsigned int input;
278 int ret;
279 ret = sscanf(buf, "%u", &input);
280
281 if (ret != 1)
282 return -EINVAL;
283
284 if (input > 1000)
285 input = 1000;
286
287 mutex_lock(&dbs_mutex);
288 dbs_tuners_ins.powersave_bias = input;
289 ondemand_powersave_bias_init();
290 mutex_unlock(&dbs_mutex);
291
292 return count;
293}
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#define define_one_rw(_name) \
296static struct freq_attr _name = \
297__ATTR(_name, 0644, show_##_name, store_##_name)
298
299define_one_rw(sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300define_one_rw(up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800301define_one_rw(ignore_nice_load);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400302define_one_rw(powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304static struct attribute * dbs_attributes[] = {
305 &sampling_rate_max.attr,
306 &sampling_rate_min.attr,
307 &sampling_rate.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 &up_threshold.attr,
Alexander Clouter001893c2005-12-01 01:09:25 -0800309 &ignore_nice_load.attr,
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400310 &powersave_bias.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 NULL
312};
313
314static struct attribute_group dbs_attr_group = {
315 .attrs = dbs_attributes,
316 .name = "ondemand",
317};
318
319/************************** sysfs end ************************/
320
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700321static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700323 unsigned int idle_ticks, total_ticks;
324 unsigned int load;
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700325 cputime64_t cur_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 struct cpufreq_policy *policy;
328 unsigned int j;
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (!this_dbs_info->enable)
331 return;
332
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400333 this_dbs_info->freq_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 policy = this_dbs_info->cur_policy;
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700335 cur_jiffies = jiffies64_to_cputime64(get_jiffies_64());
336 total_ticks = (unsigned int) cputime64_sub(cur_jiffies,
337 this_dbs_info->prev_cpu_wall);
338 this_dbs_info->prev_cpu_wall = cur_jiffies;
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700339 if (!total_ticks)
340 return;
Dave Jones32ee8c32006-02-28 00:43:23 -0500341 /*
Dave Jonesc29f1402005-05-31 19:03:50 -0700342 * Every sampling_rate, we check, if current idle time is less
343 * than 20% (default), then we try to increase frequency
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700344 * Every sampling_rate, we look for a the lowest
Dave Jonesc29f1402005-05-31 19:03:50 -0700345 * frequency which can sustain the load while keeping idle time over
346 * 30%. If such a frequency exist, we try to decrease to this frequency.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500348 * Any frequency increase takes it to the maximum frequency.
349 * Frequency reduction happens at minimum steps of
350 * 5% (default) of current frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
352
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700353 /* Get Idle Time */
Dave Jones9c7d2692005-05-31 19:03:49 -0700354 idle_ticks = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 for_each_cpu_mask(j, policy->cpus) {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700356 cputime64_t total_idle_ticks;
357 unsigned int tmp_idle_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 struct cpu_dbs_info_s *j_dbs_info;
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 j_dbs_info = &per_cpu(cpu_dbs_info, j);
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700361 total_idle_ticks = get_cpu_idle_time(j);
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700362 tmp_idle_ticks = (unsigned int) cputime64_sub(total_idle_ticks,
363 j_dbs_info->prev_cpu_idle);
364 j_dbs_info->prev_cpu_idle = total_idle_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 if (tmp_idle_ticks < idle_ticks)
367 idle_ticks = tmp_idle_ticks;
368 }
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700369 load = (100 * (total_ticks - idle_ticks)) / total_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700371 /* Check for frequency increase */
372 if (load > dbs_tuners_ins.up_threshold) {
Dave Jonesc11420a2005-05-31 19:03:48 -0700373 /* if we are already at full speed then break out early */
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400374 if (!dbs_tuners_ins.powersave_bias) {
375 if (policy->cur == policy->max)
376 return;
Dave Jones32ee8c32006-02-28 00:43:23 -0500377
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400378 __cpufreq_driver_target(policy, policy->max,
379 CPUFREQ_RELATION_H);
380 } else {
381 int freq = powersave_bias_target(policy, policy->max,
382 CPUFREQ_RELATION_H);
383 __cpufreq_driver_target(policy, freq,
384 CPUFREQ_RELATION_L);
385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return;
387 }
388
389 /* Check for frequency decrease */
Dave Jonesc29f1402005-05-31 19:03:50 -0700390 /* if we cannot reduce the frequency anymore, break out early */
391 if (policy->cur == policy->min)
392 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Dave Jonesc29f1402005-05-31 19:03:50 -0700394 /*
395 * The optimal frequency is the frequency that is the lowest that
396 * can support the current CPU usage without triggering the up
397 * policy. To be safe, we focus 10 points under the threshold.
398 */
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700399 if (load < (dbs_tuners_ins.up_threshold - 10)) {
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400400 unsigned int freq_next = (policy->cur * load) /
Dave Jonesc29f1402005-05-31 19:03:50 -0700401 (dbs_tuners_ins.up_threshold - 10);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400402 if (!dbs_tuners_ins.powersave_bias) {
403 __cpufreq_driver_target(policy, freq_next,
404 CPUFREQ_RELATION_L);
405 } else {
406 int freq = powersave_bias_target(policy, freq_next,
407 CPUFREQ_RELATION_L);
408 __cpufreq_driver_target(policy, freq,
409 CPUFREQ_RELATION_L);
410 }
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
David Howellsc4028952006-11-22 14:57:56 +0000414static void do_dbs_timer(struct work_struct *work)
Dave Jones32ee8c32006-02-28 00:43:23 -0500415{
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700416 unsigned int cpu = smp_processor_id();
417 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, cpu);
David Howellsc4028952006-11-22 14:57:56 +0000418 enum dbs_sample sample_type = dbs_info->sample_type;
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400419 /* We want all CPUs to do sampling nearly on same jiffy */
420 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
David Howellsc4028952006-11-22 14:57:56 +0000421
422 /* Permit rescheduling of this work item */
423 work_release(work);
424
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400425 delay -= jiffies % delay;
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700426
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700427 if (!dbs_info->enable)
428 return;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400429 /* Common NORMAL_SAMPLE setup */
David Howellsc4028952006-11-22 14:57:56 +0000430 dbs_info->sample_type = DBS_NORMAL_SAMPLE;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400431 if (!dbs_tuners_ins.powersave_bias ||
David Howellsc4028952006-11-22 14:57:56 +0000432 sample_type == DBS_NORMAL_SAMPLE) {
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400433 lock_cpu_hotplug();
434 dbs_check_cpu(dbs_info);
435 unlock_cpu_hotplug();
436 if (dbs_info->freq_lo) {
437 /* Setup timer for SUB_SAMPLE */
David Howellsc4028952006-11-22 14:57:56 +0000438 dbs_info->sample_type = DBS_SUB_SAMPLE;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400439 delay = dbs_info->freq_hi_jiffies;
440 }
441 } else {
442 __cpufreq_driver_target(dbs_info->cur_policy,
443 dbs_info->freq_lo,
444 CPUFREQ_RELATION_H);
445 }
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400446 queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay);
Dave Jones32ee8c32006-02-28 00:43:23 -0500447}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700449static inline void dbs_timer_init(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700451 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, cpu);
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400452 /* We want all CPUs to do sampling nearly on same jiffy */
453 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
454 delay -= jiffies % delay;
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700455
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400456 ondemand_powersave_bias_init();
David Howellsc4028952006-11-22 14:57:56 +0000457 INIT_DELAYED_WORK_NAR(&dbs_info->work, do_dbs_timer);
458 dbs_info->sample_type = DBS_NORMAL_SAMPLE;
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400459 queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700462static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700464 dbs_info->enable = 0;
465 cancel_delayed_work(&dbs_info->work);
466 flush_workqueue(kondemand_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
469static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
470 unsigned int event)
471{
472 unsigned int cpu = policy->cpu;
473 struct cpu_dbs_info_s *this_dbs_info;
474 unsigned int j;
475
476 this_dbs_info = &per_cpu(cpu_dbs_info, cpu);
477
478 switch (event) {
479 case CPUFREQ_GOV_START:
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700480 if ((!cpu_online(cpu)) || (!policy->cur))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return -EINVAL;
482
483 if (policy->cpuinfo.transition_latency >
Eric Pielff8c2882006-03-10 11:34:16 +0200484 (TRANSITION_LATENCY_LIMIT * 1000)) {
485 printk(KERN_WARNING "ondemand governor failed to load "
486 "due to too long transition latency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return -EINVAL;
Eric Pielff8c2882006-03-10 11:34:16 +0200488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (this_dbs_info->enable) /* Already enabled */
490 break;
Dave Jones32ee8c32006-02-28 00:43:23 -0500491
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800492 mutex_lock(&dbs_mutex);
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700493 dbs_enable++;
494 if (dbs_enable == 1) {
495 kondemand_wq = create_workqueue("kondemand");
496 if (!kondemand_wq) {
497 printk(KERN_ERR "Creation of kondemand failed\n");
498 dbs_enable--;
499 mutex_unlock(&dbs_mutex);
500 return -ENOSPC;
501 }
502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 for_each_cpu_mask(j, policy->cpus) {
504 struct cpu_dbs_info_s *j_dbs_info;
505 j_dbs_info = &per_cpu(cpu_dbs_info, j);
506 j_dbs_info->cur_policy = policy;
Dave Jones32ee8c32006-02-28 00:43:23 -0500507
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700508 j_dbs_info->prev_cpu_idle = get_cpu_idle_time(j);
509 j_dbs_info->prev_cpu_wall = get_jiffies_64();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 this_dbs_info->enable = 1;
512 sysfs_create_group(&policy->kobj, &dbs_attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /*
514 * Start the timerschedule work, when this governor
515 * is used for first time
516 */
517 if (dbs_enable == 1) {
518 unsigned int latency;
519 /* policy latency is in nS. Convert it to uS first */
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700520 latency = policy->cpuinfo.transition_latency / 1000;
521 if (latency == 0)
522 latency = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700524 def_sampling_rate = latency *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 DEF_SAMPLING_RATE_LATENCY_MULTIPLIER;
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700526
527 if (def_sampling_rate < MIN_STAT_SAMPLING_RATE)
528 def_sampling_rate = MIN_STAT_SAMPLING_RATE;
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 dbs_tuners_ins.sampling_rate = def_sampling_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700532 dbs_timer_init(policy->cpu);
Dave Jones32ee8c32006-02-28 00:43:23 -0500533
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800534 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 break;
536
537 case CPUFREQ_GOV_STOP:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800538 mutex_lock(&dbs_mutex);
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700539 dbs_timer_exit(this_dbs_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 sysfs_remove_group(&policy->kobj, &dbs_attr_group);
541 dbs_enable--;
Dave Jones32ee8c32006-02-28 00:43:23 -0500542 if (dbs_enable == 0)
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700543 destroy_workqueue(kondemand_wq);
Dave Jones32ee8c32006-02-28 00:43:23 -0500544
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800545 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 break;
548
549 case CPUFREQ_GOV_LIMITS:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800550 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (policy->max < this_dbs_info->cur_policy->cur)
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700552 __cpufreq_driver_target(this_dbs_info->cur_policy,
553 policy->max,
554 CPUFREQ_RELATION_H);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 else if (policy->min > this_dbs_info->cur_policy->cur)
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700556 __cpufreq_driver_target(this_dbs_info->cur_policy,
557 policy->min,
558 CPUFREQ_RELATION_L);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800559 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 break;
561 }
562 return 0;
563}
564
Dave Jones7f335d42005-05-31 19:03:46 -0700565static struct cpufreq_governor cpufreq_gov_dbs = {
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700566 .name = "ondemand",
567 .governor = cpufreq_governor_dbs,
568 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571static int __init cpufreq_gov_dbs_init(void)
572{
573 return cpufreq_register_governor(&cpufreq_gov_dbs);
574}
575
576static void __exit cpufreq_gov_dbs_exit(void)
577{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 cpufreq_unregister_governor(&cpufreq_gov_dbs);
579}
580
581
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700582MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
583MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
584MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
585 "Low Latency Frequency Transition capable processors");
586MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588module_init(cpufreq_gov_dbs_init);
589module_exit(cpufreq_gov_dbs_exit);