blob: 3e6ffcaa5af4c2a10941c2ad6d30478aead32897 [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>
15#include <linux/smp.h>
16#include <linux/init.h>
17#include <linux/interrupt.h>
18#include <linux/ctype.h>
19#include <linux/cpufreq.h>
20#include <linux/sysctl.h>
21#include <linux/types.h>
22#include <linux/fs.h>
23#include <linux/sysfs.h>
24#include <linux/sched.h>
25#include <linux/kmod.h>
26#include <linux/workqueue.h>
27#include <linux/jiffies.h>
28#include <linux/kernel_stat.h>
29#include <linux/percpu.h>
akpm@osdl.org3fc54d32006-01-13 15:54:22 -080030#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/*
33 * dbs is used in this file as a shortform for demandbased switching
34 * It helps to keep variable names smaller, simpler
35 */
36
37#define DEF_FREQUENCY_UP_THRESHOLD (80)
Dave Jonesc29f1402005-05-31 19:03:50 -070038#define MIN_FREQUENCY_UP_THRESHOLD (11)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define MAX_FREQUENCY_UP_THRESHOLD (100)
40
Dave Jones32ee8c32006-02-28 00:43:23 -050041/*
42 * The polling frequency of this governor depends on the capability of
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * the processor. Default polling frequency is 1000 times the transition
Dave Jones32ee8c32006-02-28 00:43:23 -050044 * latency of the processor. The governor will work on any processor with
45 * transition latency <= 10mS, using appropriate sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * rate.
47 * For CPUs with transition latency > 10mS (mostly drivers with CPUFREQ_ETERNAL)
48 * this governor will not work.
49 * All times here are in uS.
50 */
Dave Jones32ee8c32006-02-28 00:43:23 -050051static unsigned int def_sampling_rate;
Dave Jonesdf8b59b2005-09-20 12:39:35 -070052#define MIN_SAMPLING_RATE_RATIO (2)
53/* for correct statistics, we need at least 10 ticks between each measure */
54#define MIN_STAT_SAMPLING_RATE (MIN_SAMPLING_RATE_RATIO * jiffies_to_usecs(10))
55#define MIN_SAMPLING_RATE (def_sampling_rate / MIN_SAMPLING_RATE_RATIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define MAX_SAMPLING_RATE (500 * def_sampling_rate)
57#define DEF_SAMPLING_RATE_LATENCY_MULTIPLIER (1000)
Dave Jonese1318322005-05-31 19:03:50 -070058#define DEF_SAMPLING_DOWN_FACTOR (1)
59#define MAX_SAMPLING_DOWN_FACTOR (10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define TRANSITION_LATENCY_LIMIT (10 * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62static void do_dbs_timer(void *data);
63
64struct cpu_dbs_info_s {
Dave Jones32ee8c32006-02-28 00:43:23 -050065 struct cpufreq_policy *cur_policy;
66 unsigned int prev_cpu_idle_up;
67 unsigned int prev_cpu_idle_down;
68 unsigned int enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info);
71
72static unsigned int dbs_enable; /* number of CPUs using this policy */
73
Dave Jones32ee8c32006-02-28 00:43:23 -050074static DEFINE_MUTEX (dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static DECLARE_WORK (dbs_work, do_dbs_timer, NULL);
76
Andi Kleen6810b542006-05-08 15:17:31 +020077static struct workqueue_struct *dbs_workq;
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079struct dbs_tuners {
Dave Jones32ee8c32006-02-28 00:43:23 -050080 unsigned int sampling_rate;
81 unsigned int sampling_down_factor;
82 unsigned int up_threshold;
83 unsigned int ignore_nice;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
86static struct dbs_tuners dbs_tuners_ins = {
Dave Jones32ee8c32006-02-28 00:43:23 -050087 .up_threshold = DEF_FREQUENCY_UP_THRESHOLD,
88 .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR,
Eric Piel9cbad612006-03-10 11:35:27 +020089 .ignore_nice = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Dave Jonesdac1c1a2005-05-31 19:03:49 -070092static inline unsigned int get_cpu_idle_time(unsigned int cpu)
93{
94 return kstat_cpu(cpu).cpustat.idle +
95 kstat_cpu(cpu).cpustat.iowait +
Alexander Clouter001893c2005-12-01 01:09:25 -080096 ( dbs_tuners_ins.ignore_nice ?
Dave Jonesdac1c1a2005-05-31 19:03:49 -070097 kstat_cpu(cpu).cpustat.nice :
98 0);
99}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/************************** sysfs interface ************************/
102static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf)
103{
104 return sprintf (buf, "%u\n", MAX_SAMPLING_RATE);
105}
106
107static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf)
108{
109 return sprintf (buf, "%u\n", MIN_SAMPLING_RATE);
110}
111
Dave Jones32ee8c32006-02-28 00:43:23 -0500112#define define_one_ro(_name) \
113static struct freq_attr _name = \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114__ATTR(_name, 0444, show_##_name, NULL)
115
116define_one_ro(sampling_rate_max);
117define_one_ro(sampling_rate_min);
118
119/* cpufreq_ondemand Governor Tunables */
120#define show_one(file_name, object) \
121static ssize_t show_##file_name \
122(struct cpufreq_policy *unused, char *buf) \
123{ \
124 return sprintf(buf, "%u\n", dbs_tuners_ins.object); \
125}
126show_one(sampling_rate, sampling_rate);
127show_one(sampling_down_factor, sampling_down_factor);
128show_one(up_threshold, up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800129show_one(ignore_nice_load, ignore_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Dave Jones32ee8c32006-02-28 00:43:23 -0500131static ssize_t store_sampling_down_factor(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 const char *buf, size_t count)
133{
134 unsigned int input;
135 int ret;
136 ret = sscanf (buf, "%u", &input);
137 if (ret != 1 )
138 return -EINVAL;
139
Dave Jonese1318322005-05-31 19:03:50 -0700140 if (input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
141 return -EINVAL;
142
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800143 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 dbs_tuners_ins.sampling_down_factor = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800145 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 return count;
148}
149
Dave Jones32ee8c32006-02-28 00:43:23 -0500150static ssize_t store_sampling_rate(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 const char *buf, size_t count)
152{
153 unsigned int input;
154 int ret;
155 ret = sscanf (buf, "%u", &input);
156
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800157 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (ret != 1 || input > MAX_SAMPLING_RATE || input < MIN_SAMPLING_RATE) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800159 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -EINVAL;
161 }
162
163 dbs_tuners_ins.sampling_rate = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800164 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 return count;
167}
168
Dave Jones32ee8c32006-02-28 00:43:23 -0500169static ssize_t store_up_threshold(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 const char *buf, size_t count)
171{
172 unsigned int input;
173 int ret;
174 ret = sscanf (buf, "%u", &input);
175
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800176 mutex_lock(&dbs_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -0500177 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
Dave Jonesc29f1402005-05-31 19:03:50 -0700178 input < MIN_FREQUENCY_UP_THRESHOLD) {
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800179 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return -EINVAL;
181 }
182
183 dbs_tuners_ins.up_threshold = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800184 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 return count;
187}
188
Alexander Clouter001893c2005-12-01 01:09:25 -0800189static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy,
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700190 const char *buf, size_t count)
191{
192 unsigned int input;
193 int ret;
194
195 unsigned int j;
Dave Jones32ee8c32006-02-28 00:43:23 -0500196
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700197 ret = sscanf (buf, "%u", &input);
198 if ( ret != 1 )
199 return -EINVAL;
200
201 if ( input > 1 )
202 input = 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500203
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800204 mutex_lock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700205 if ( input == dbs_tuners_ins.ignore_nice ) { /* nothing to do */
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800206 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700207 return count;
208 }
209 dbs_tuners_ins.ignore_nice = input;
210
211 /* we need to re-evaluate prev_cpu_idle_up and prev_cpu_idle_down */
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700212 for_each_online_cpu(j) {
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700213 struct cpu_dbs_info_s *j_dbs_info;
214 j_dbs_info = &per_cpu(cpu_dbs_info, j);
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700215 j_dbs_info->prev_cpu_idle_up = get_cpu_idle_time(j);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700216 j_dbs_info->prev_cpu_idle_down = j_dbs_info->prev_cpu_idle_up;
217 }
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800218 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700219
220 return count;
221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#define define_one_rw(_name) \
224static struct freq_attr _name = \
225__ATTR(_name, 0644, show_##_name, store_##_name)
226
227define_one_rw(sampling_rate);
228define_one_rw(sampling_down_factor);
229define_one_rw(up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800230define_one_rw(ignore_nice_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232static struct attribute * dbs_attributes[] = {
233 &sampling_rate_max.attr,
234 &sampling_rate_min.attr,
235 &sampling_rate.attr,
236 &sampling_down_factor.attr,
237 &up_threshold.attr,
Alexander Clouter001893c2005-12-01 01:09:25 -0800238 &ignore_nice_load.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 NULL
240};
241
242static struct attribute_group dbs_attr_group = {
243 .attrs = dbs_attributes,
244 .name = "ondemand",
245};
246
247/************************** sysfs end ************************/
248
249static void dbs_check_cpu(int cpu)
250{
Dave Jonesc29f1402005-05-31 19:03:50 -0700251 unsigned int idle_ticks, up_idle_ticks, total_ticks;
252 unsigned int freq_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 unsigned int freq_down_sampling_rate;
254 static int down_skip[NR_CPUS];
255 struct cpu_dbs_info_s *this_dbs_info;
256
257 struct cpufreq_policy *policy;
258 unsigned int j;
259
260 this_dbs_info = &per_cpu(cpu_dbs_info, cpu);
261 if (!this_dbs_info->enable)
262 return;
263
264 policy = this_dbs_info->cur_policy;
Dave Jones32ee8c32006-02-28 00:43:23 -0500265 /*
Dave Jonesc29f1402005-05-31 19:03:50 -0700266 * Every sampling_rate, we check, if current idle time is less
267 * than 20% (default), then we try to increase frequency
268 * Every sampling_rate*sampling_down_factor, we look for a the lowest
269 * frequency which can sustain the load while keeping idle time over
270 * 30%. If such a frequency exist, we try to decrease to this frequency.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500272 * Any frequency increase takes it to the maximum frequency.
273 * Frequency reduction happens at minimum steps of
274 * 5% (default) of current frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 */
276
277 /* Check for frequency increase */
Dave Jones9c7d2692005-05-31 19:03:49 -0700278 idle_ticks = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 for_each_cpu_mask(j, policy->cpus) {
Dave Jones9c7d2692005-05-31 19:03:49 -0700280 unsigned int tmp_idle_ticks, total_idle_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 struct cpu_dbs_info_s *j_dbs_info;
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 j_dbs_info = &per_cpu(cpu_dbs_info, j);
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700284 total_idle_ticks = get_cpu_idle_time(j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 tmp_idle_ticks = total_idle_ticks -
286 j_dbs_info->prev_cpu_idle_up;
287 j_dbs_info->prev_cpu_idle_up = total_idle_ticks;
288
289 if (tmp_idle_ticks < idle_ticks)
290 idle_ticks = tmp_idle_ticks;
291 }
292
293 /* Scale idle ticks by 100 and compare with up and down ticks */
294 idle_ticks *= 100;
295 up_idle_ticks = (100 - dbs_tuners_ins.up_threshold) *
Dave Jones6fe71162005-05-31 19:03:44 -0700296 usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 if (idle_ticks < up_idle_ticks) {
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700299 down_skip[cpu] = 0;
Dave Jones790d76f2005-05-31 19:03:49 -0700300 for_each_cpu_mask(j, policy->cpus) {
301 struct cpu_dbs_info_s *j_dbs_info;
302
303 j_dbs_info = &per_cpu(cpu_dbs_info, j);
Dave Jones32ee8c32006-02-28 00:43:23 -0500304 j_dbs_info->prev_cpu_idle_down =
Dave Jones790d76f2005-05-31 19:03:49 -0700305 j_dbs_info->prev_cpu_idle_up;
306 }
Dave Jonesc11420a2005-05-31 19:03:48 -0700307 /* if we are already at full speed then break out early */
308 if (policy->cur == policy->max)
309 return;
Dave Jones32ee8c32006-02-28 00:43:23 -0500310
311 __cpufreq_driver_target(policy, policy->max,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 CPUFREQ_RELATION_H);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return;
314 }
315
316 /* Check for frequency decrease */
317 down_skip[cpu]++;
318 if (down_skip[cpu] < dbs_tuners_ins.sampling_down_factor)
319 return;
320
Dave Jones9c7d2692005-05-31 19:03:49 -0700321 idle_ticks = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 for_each_cpu_mask(j, policy->cpus) {
Dave Jones9c7d2692005-05-31 19:03:49 -0700323 unsigned int tmp_idle_ticks, total_idle_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 struct cpu_dbs_info_s *j_dbs_info;
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 j_dbs_info = &per_cpu(cpu_dbs_info, j);
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700327 /* Check for frequency decrease */
328 total_idle_ticks = j_dbs_info->prev_cpu_idle_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 tmp_idle_ticks = total_idle_ticks -
330 j_dbs_info->prev_cpu_idle_down;
331 j_dbs_info->prev_cpu_idle_down = total_idle_ticks;
332
333 if (tmp_idle_ticks < idle_ticks)
334 idle_ticks = tmp_idle_ticks;
335 }
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 down_skip[cpu] = 0;
Dave Jonesc29f1402005-05-31 19:03:50 -0700338 /* if we cannot reduce the frequency anymore, break out early */
339 if (policy->cur == policy->min)
340 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Dave Jonesc29f1402005-05-31 19:03:50 -0700342 /* Compute how many ticks there are between two measurements */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 freq_down_sampling_rate = dbs_tuners_ins.sampling_rate *
344 dbs_tuners_ins.sampling_down_factor;
Dave Jonesc29f1402005-05-31 19:03:50 -0700345 total_ticks = usecs_to_jiffies(freq_down_sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Dave Jonesc29f1402005-05-31 19:03:50 -0700347 /*
348 * The optimal frequency is the frequency that is the lowest that
349 * can support the current CPU usage without triggering the up
350 * policy. To be safe, we focus 10 points under the threshold.
351 */
352 freq_next = ((total_ticks - idle_ticks) * 100) / total_ticks;
Dave Jones32ee8c32006-02-28 00:43:23 -0500353 freq_next = (freq_next * policy->cur) /
Dave Jonesc29f1402005-05-31 19:03:50 -0700354 (dbs_tuners_ins.up_threshold - 10);
Dave Jones1206aaa2005-05-31 19:03:48 -0700355
Dominik Brodowski7c9d8c02006-03-26 11:11:03 +0200356 if (freq_next < policy->min)
357 freq_next = policy->min;
358
Dave Jonesc29f1402005-05-31 19:03:50 -0700359 if (freq_next <= ((policy->cur * 95) / 100))
360 __cpufreq_driver_target(policy, freq_next, CPUFREQ_RELATION_L);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
363static void do_dbs_timer(void *data)
Dave Jones32ee8c32006-02-28 00:43:23 -0500364{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int i;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800366 mutex_lock(&dbs_mutex);
Dave Jones6fe71162005-05-31 19:03:44 -0700367 for_each_online_cpu(i)
368 dbs_check_cpu(i);
Andi Kleen6810b542006-05-08 15:17:31 +0200369 queue_delayed_work(dbs_workq, &dbs_work,
370 usecs_to_jiffies(dbs_tuners_ins.sampling_rate));
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800371 mutex_unlock(&dbs_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -0500372}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374static inline void dbs_timer_init(void)
375{
376 INIT_WORK(&dbs_work, do_dbs_timer, NULL);
Andi Kleen6810b542006-05-08 15:17:31 +0200377 if (!dbs_workq)
378 dbs_workq = create_singlethread_workqueue("ondemand");
379 if (!dbs_workq) {
380 printk(KERN_ERR "ondemand: Cannot initialize kernel thread\n");
381 return;
382 }
383 queue_delayed_work(dbs_workq, &dbs_work,
384 usecs_to_jiffies(dbs_tuners_ins.sampling_rate));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return;
386}
387
388static inline void dbs_timer_exit(void)
389{
Andi Kleen6810b542006-05-08 15:17:31 +0200390 if (dbs_workq)
391 cancel_rearming_delayed_workqueue(dbs_workq, &dbs_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
395 unsigned int event)
396{
397 unsigned int cpu = policy->cpu;
398 struct cpu_dbs_info_s *this_dbs_info;
399 unsigned int j;
400
401 this_dbs_info = &per_cpu(cpu_dbs_info, cpu);
402
403 switch (event) {
404 case CPUFREQ_GOV_START:
Dave Jones32ee8c32006-02-28 00:43:23 -0500405 if ((!cpu_online(cpu)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 (!policy->cur))
407 return -EINVAL;
408
409 if (policy->cpuinfo.transition_latency >
Eric Pielff8c2882006-03-10 11:34:16 +0200410 (TRANSITION_LATENCY_LIMIT * 1000)) {
411 printk(KERN_WARNING "ondemand governor failed to load "
412 "due to too long transition latency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return -EINVAL;
Eric Pielff8c2882006-03-10 11:34:16 +0200414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (this_dbs_info->enable) /* Already enabled */
416 break;
Dave Jones32ee8c32006-02-28 00:43:23 -0500417
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800418 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 for_each_cpu_mask(j, policy->cpus) {
420 struct cpu_dbs_info_s *j_dbs_info;
421 j_dbs_info = &per_cpu(cpu_dbs_info, j);
422 j_dbs_info->cur_policy = policy;
Dave Jones32ee8c32006-02-28 00:43:23 -0500423
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700424 j_dbs_info->prev_cpu_idle_up = get_cpu_idle_time(j);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700425 j_dbs_info->prev_cpu_idle_down
426 = j_dbs_info->prev_cpu_idle_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
428 this_dbs_info->enable = 1;
429 sysfs_create_group(&policy->kobj, &dbs_attr_group);
430 dbs_enable++;
431 /*
432 * Start the timerschedule work, when this governor
433 * is used for first time
434 */
435 if (dbs_enable == 1) {
436 unsigned int latency;
437 /* policy latency is in nS. Convert it to uS first */
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700438 latency = policy->cpuinfo.transition_latency / 1000;
439 if (latency == 0)
440 latency = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700442 def_sampling_rate = latency *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 DEF_SAMPLING_RATE_LATENCY_MULTIPLIER;
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700444
445 if (def_sampling_rate < MIN_STAT_SAMPLING_RATE)
446 def_sampling_rate = MIN_STAT_SAMPLING_RATE;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 dbs_tuners_ins.sampling_rate = def_sampling_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 dbs_timer_init();
450 }
Dave Jones32ee8c32006-02-28 00:43:23 -0500451
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800452 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
454
455 case CPUFREQ_GOV_STOP:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800456 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 this_dbs_info->enable = 0;
458 sysfs_remove_group(&policy->kobj, &dbs_attr_group);
459 dbs_enable--;
460 /*
461 * Stop the timerschedule work, when this governor
462 * is used for first time
463 */
Dave Jones32ee8c32006-02-28 00:43:23 -0500464 if (dbs_enable == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 dbs_timer_exit();
Dave Jones32ee8c32006-02-28 00:43:23 -0500466
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800467 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 break;
470
471 case CPUFREQ_GOV_LIMITS:
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800472 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (policy->max < this_dbs_info->cur_policy->cur)
474 __cpufreq_driver_target(
475 this_dbs_info->cur_policy,
Dave Jones32ee8c32006-02-28 00:43:23 -0500476 policy->max, CPUFREQ_RELATION_H);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 else if (policy->min > this_dbs_info->cur_policy->cur)
478 __cpufreq_driver_target(
479 this_dbs_info->cur_policy,
Dave Jones32ee8c32006-02-28 00:43:23 -0500480 policy->min, CPUFREQ_RELATION_L);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800481 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 break;
483 }
484 return 0;
485}
486
Dave Jones7f335d42005-05-31 19:03:46 -0700487static struct cpufreq_governor cpufreq_gov_dbs = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 .name = "ondemand",
489 .governor = cpufreq_governor_dbs,
490 .owner = THIS_MODULE,
491};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493static int __init cpufreq_gov_dbs_init(void)
494{
495 return cpufreq_register_governor(&cpufreq_gov_dbs);
496}
497
498static void __exit cpufreq_gov_dbs_exit(void)
499{
Andi Kleen6810b542006-05-08 15:17:31 +0200500 /* Make sure that the scheduled work is indeed not running.
501 Assumes the timer has been cancelled first. */
502 if (dbs_workq) {
503 flush_workqueue(dbs_workq);
504 destroy_workqueue(dbs_workq);
505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 cpufreq_unregister_governor(&cpufreq_gov_dbs);
508}
509
510
511MODULE_AUTHOR ("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
512MODULE_DESCRIPTION ("'cpufreq_ondemand' - A dynamic cpufreq governor for "
513 "Low Latency Frequency Transition capable processors");
514MODULE_LICENSE ("GPL");
515
516module_init(cpufreq_gov_dbs_init);
517module_exit(cpufreq_gov_dbs_exit);