2 * drivers/cpufreq/cpufreq_ondemand.c
4 * Copyright (C) 2001 Russell King
5 * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
6 * Jun Nakajima <jun.nakajima@intel.com>
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.
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>
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>
32 * dbs is used in this file as a shortform for demandbased switching
33 * It helps to keep variable names smaller, simpler
36 #define DEF_FREQUENCY_UP_THRESHOLD (80)
37 #define MIN_FREQUENCY_UP_THRESHOLD (0)
38 #define MAX_FREQUENCY_UP_THRESHOLD (100)
40 #define DEF_FREQUENCY_DOWN_THRESHOLD (20)
41 #define MIN_FREQUENCY_DOWN_THRESHOLD (0)
42 #define MAX_FREQUENCY_DOWN_THRESHOLD (100)
45 * The polling frequency of this governor depends on the capability of
46 * the processor. Default polling frequency is 1000 times the transition
47 * latency of the processor. The governor will work on any processor with
48 * transition latency <= 10mS, using appropriate sampling
50 * For CPUs with transition latency > 10mS (mostly drivers with CPUFREQ_ETERNAL)
51 * this governor will not work.
52 * All times here are in uS.
54 static unsigned int def_sampling_rate
;
55 #define MIN_SAMPLING_RATE (def_sampling_rate / 2)
56 #define MAX_SAMPLING_RATE (500 * def_sampling_rate)
57 #define DEF_SAMPLING_RATE_LATENCY_MULTIPLIER (1000)
58 #define DEF_SAMPLING_DOWN_FACTOR (10)
59 #define TRANSITION_LATENCY_LIMIT (10 * 1000)
60 #define sampling_rate_in_HZ(x) (((x * HZ) < (1000 * 1000))?1:((x * HZ) / (1000 * 1000)))
62 static void do_dbs_timer(void *data
);
64 struct cpu_dbs_info_s
{
65 struct cpufreq_policy
*cur_policy
;
66 unsigned int prev_cpu_idle_up
;
67 unsigned int prev_cpu_idle_down
;
70 static DEFINE_PER_CPU(struct cpu_dbs_info_s
, cpu_dbs_info
);
72 static unsigned int dbs_enable
; /* number of CPUs using this policy */
74 static DECLARE_MUTEX (dbs_sem
);
75 static DECLARE_WORK (dbs_work
, do_dbs_timer
, NULL
);
78 unsigned int sampling_rate
;
79 unsigned int sampling_down_factor
;
80 unsigned int up_threshold
;
81 unsigned int down_threshold
;
84 static struct dbs_tuners dbs_tuners_ins
= {
85 .up_threshold
= DEF_FREQUENCY_UP_THRESHOLD
,
86 .down_threshold
= DEF_FREQUENCY_DOWN_THRESHOLD
,
87 .sampling_down_factor
= DEF_SAMPLING_DOWN_FACTOR
,
90 /************************** sysfs interface ************************/
91 static ssize_t
show_sampling_rate_max(struct cpufreq_policy
*policy
, char *buf
)
93 return sprintf (buf
, "%u\n", MAX_SAMPLING_RATE
);
96 static ssize_t
show_sampling_rate_min(struct cpufreq_policy
*policy
, char *buf
)
98 return sprintf (buf
, "%u\n", MIN_SAMPLING_RATE
);
101 #define define_one_ro(_name) \
102 static struct freq_attr _name = \
103 __ATTR(_name, 0444, show_##_name, NULL)
105 define_one_ro(sampling_rate_max
);
106 define_one_ro(sampling_rate_min
);
108 /* cpufreq_ondemand Governor Tunables */
109 #define show_one(file_name, object) \
110 static ssize_t show_##file_name \
111 (struct cpufreq_policy *unused, char *buf) \
113 return sprintf(buf, "%u\n", dbs_tuners_ins.object); \
115 show_one(sampling_rate
, sampling_rate
);
116 show_one(sampling_down_factor
, sampling_down_factor
);
117 show_one(up_threshold
, up_threshold
);
118 show_one(down_threshold
, down_threshold
);
120 static ssize_t
store_sampling_down_factor(struct cpufreq_policy
*unused
,
121 const char *buf
, size_t count
)
125 ret
= sscanf (buf
, "%u", &input
);
130 dbs_tuners_ins
.sampling_down_factor
= input
;
136 static ssize_t
store_sampling_rate(struct cpufreq_policy
*unused
,
137 const char *buf
, size_t count
)
141 ret
= sscanf (buf
, "%u", &input
);
144 if (ret
!= 1 || input
> MAX_SAMPLING_RATE
|| input
< MIN_SAMPLING_RATE
) {
149 dbs_tuners_ins
.sampling_rate
= input
;
155 static ssize_t
store_up_threshold(struct cpufreq_policy
*unused
,
156 const char *buf
, size_t count
)
160 ret
= sscanf (buf
, "%u", &input
);
163 if (ret
!= 1 || input
> MAX_FREQUENCY_UP_THRESHOLD
||
164 input
< MIN_FREQUENCY_UP_THRESHOLD
||
165 input
<= dbs_tuners_ins
.down_threshold
) {
170 dbs_tuners_ins
.up_threshold
= input
;
176 static ssize_t
store_down_threshold(struct cpufreq_policy
*unused
,
177 const char *buf
, size_t count
)
181 ret
= sscanf (buf
, "%u", &input
);
184 if (ret
!= 1 || input
> MAX_FREQUENCY_DOWN_THRESHOLD
||
185 input
< MIN_FREQUENCY_DOWN_THRESHOLD
||
186 input
>= dbs_tuners_ins
.up_threshold
) {
191 dbs_tuners_ins
.down_threshold
= input
;
197 #define define_one_rw(_name) \
198 static struct freq_attr _name = \
199 __ATTR(_name, 0644, show_##_name, store_##_name)
201 define_one_rw(sampling_rate
);
202 define_one_rw(sampling_down_factor
);
203 define_one_rw(up_threshold
);
204 define_one_rw(down_threshold
);
206 static struct attribute
* dbs_attributes
[] = {
207 &sampling_rate_max
.attr
,
208 &sampling_rate_min
.attr
,
210 &sampling_down_factor
.attr
,
212 &down_threshold
.attr
,
216 static struct attribute_group dbs_attr_group
= {
217 .attrs
= dbs_attributes
,
221 /************************** sysfs end ************************/
223 static void dbs_check_cpu(int cpu
)
225 unsigned int idle_ticks
, up_idle_ticks
, down_idle_ticks
;
226 unsigned int total_idle_ticks
;
227 unsigned int freq_down_step
;
228 unsigned int freq_down_sampling_rate
;
229 static int down_skip
[NR_CPUS
];
230 struct cpu_dbs_info_s
*this_dbs_info
;
232 struct cpufreq_policy
*policy
;
235 this_dbs_info
= &per_cpu(cpu_dbs_info
, cpu
);
236 if (!this_dbs_info
->enable
)
239 policy
= this_dbs_info
->cur_policy
;
241 * The default safe range is 20% to 80%
242 * Every sampling_rate, we check
243 * - If current idle time is less than 20%, then we try to
245 * Every sampling_rate*sampling_down_factor, we check
246 * - If current idle time is more than 80%, then we try to
249 * Any frequency increase takes it to the maximum frequency.
250 * Frequency reduction happens at minimum steps of
251 * 5% of max_frequency
254 /* Check for frequency increase */
255 total_idle_ticks
= kstat_cpu(cpu
).cpustat
.idle
+
256 kstat_cpu(cpu
).cpustat
.iowait
;
257 idle_ticks
= total_idle_ticks
-
258 this_dbs_info
->prev_cpu_idle_up
;
259 this_dbs_info
->prev_cpu_idle_up
= total_idle_ticks
;
262 for_each_cpu_mask(j
, policy
->cpus
) {
263 unsigned int tmp_idle_ticks
;
264 struct cpu_dbs_info_s
*j_dbs_info
;
269 j_dbs_info
= &per_cpu(cpu_dbs_info
, j
);
270 /* Check for frequency increase */
271 total_idle_ticks
= kstat_cpu(j
).cpustat
.idle
+
272 kstat_cpu(j
).cpustat
.iowait
;
273 tmp_idle_ticks
= total_idle_ticks
-
274 j_dbs_info
->prev_cpu_idle_up
;
275 j_dbs_info
->prev_cpu_idle_up
= total_idle_ticks
;
277 if (tmp_idle_ticks
< idle_ticks
)
278 idle_ticks
= tmp_idle_ticks
;
281 /* Scale idle ticks by 100 and compare with up and down ticks */
283 up_idle_ticks
= (100 - dbs_tuners_ins
.up_threshold
) *
284 sampling_rate_in_HZ(dbs_tuners_ins
.sampling_rate
);
286 if (idle_ticks
< up_idle_ticks
) {
287 __cpufreq_driver_target(policy
, policy
->max
,
290 this_dbs_info
->prev_cpu_idle_down
= total_idle_ticks
;
294 /* Check for frequency decrease */
296 if (down_skip
[cpu
] < dbs_tuners_ins
.sampling_down_factor
)
299 total_idle_ticks
= kstat_cpu(cpu
).cpustat
.idle
+
300 kstat_cpu(cpu
).cpustat
.iowait
;
301 idle_ticks
= total_idle_ticks
-
302 this_dbs_info
->prev_cpu_idle_down
;
303 this_dbs_info
->prev_cpu_idle_down
= total_idle_ticks
;
305 for_each_cpu_mask(j
, policy
->cpus
) {
306 unsigned int tmp_idle_ticks
;
307 struct cpu_dbs_info_s
*j_dbs_info
;
312 j_dbs_info
= &per_cpu(cpu_dbs_info
, j
);
313 /* Check for frequency increase */
314 total_idle_ticks
= kstat_cpu(j
).cpustat
.idle
+
315 kstat_cpu(j
).cpustat
.iowait
;
316 tmp_idle_ticks
= total_idle_ticks
-
317 j_dbs_info
->prev_cpu_idle_down
;
318 j_dbs_info
->prev_cpu_idle_down
= total_idle_ticks
;
320 if (tmp_idle_ticks
< idle_ticks
)
321 idle_ticks
= tmp_idle_ticks
;
324 /* Scale idle ticks by 100 and compare with up and down ticks */
328 freq_down_sampling_rate
= dbs_tuners_ins
.sampling_rate
*
329 dbs_tuners_ins
.sampling_down_factor
;
330 down_idle_ticks
= (100 - dbs_tuners_ins
.down_threshold
) *
331 sampling_rate_in_HZ(freq_down_sampling_rate
);
333 if (idle_ticks
> down_idle_ticks
) {
334 freq_down_step
= (5 * policy
->max
) / 100;
336 /* max freq cannot be less than 100. But who knows.... */
337 if (unlikely(freq_down_step
== 0))
340 __cpufreq_driver_target(policy
,
341 policy
->cur
- freq_down_step
,
347 static void do_dbs_timer(void *data
)
351 for (i
= 0; i
< NR_CPUS
; i
++)
354 schedule_delayed_work(&dbs_work
,
355 sampling_rate_in_HZ(dbs_tuners_ins
.sampling_rate
));
359 static inline void dbs_timer_init(void)
361 INIT_WORK(&dbs_work
, do_dbs_timer
, NULL
);
362 schedule_delayed_work(&dbs_work
,
363 sampling_rate_in_HZ(dbs_tuners_ins
.sampling_rate
));
367 static inline void dbs_timer_exit(void)
369 cancel_delayed_work(&dbs_work
);
373 static int cpufreq_governor_dbs(struct cpufreq_policy
*policy
,
376 unsigned int cpu
= policy
->cpu
;
377 struct cpu_dbs_info_s
*this_dbs_info
;
380 this_dbs_info
= &per_cpu(cpu_dbs_info
, cpu
);
383 case CPUFREQ_GOV_START
:
384 if ((!cpu_online(cpu
)) ||
388 if (policy
->cpuinfo
.transition_latency
>
389 (TRANSITION_LATENCY_LIMIT
* 1000))
391 if (this_dbs_info
->enable
) /* Already enabled */
395 for_each_cpu_mask(j
, policy
->cpus
) {
396 struct cpu_dbs_info_s
*j_dbs_info
;
397 j_dbs_info
= &per_cpu(cpu_dbs_info
, j
);
398 j_dbs_info
->cur_policy
= policy
;
400 j_dbs_info
->prev_cpu_idle_up
=
401 kstat_cpu(j
).cpustat
.idle
+
402 kstat_cpu(j
).cpustat
.iowait
;
403 j_dbs_info
->prev_cpu_idle_down
=
404 kstat_cpu(j
).cpustat
.idle
+
405 kstat_cpu(j
).cpustat
.iowait
;
407 this_dbs_info
->enable
= 1;
408 sysfs_create_group(&policy
->kobj
, &dbs_attr_group
);
411 * Start the timerschedule work, when this governor
412 * is used for first time
414 if (dbs_enable
== 1) {
415 unsigned int latency
;
416 /* policy latency is in nS. Convert it to uS first */
418 latency
= policy
->cpuinfo
.transition_latency
;
422 def_sampling_rate
= (latency
/ 1000) *
423 DEF_SAMPLING_RATE_LATENCY_MULTIPLIER
;
424 dbs_tuners_ins
.sampling_rate
= def_sampling_rate
;
432 case CPUFREQ_GOV_STOP
:
434 this_dbs_info
->enable
= 0;
435 sysfs_remove_group(&policy
->kobj
, &dbs_attr_group
);
438 * Stop the timerschedule work, when this governor
439 * is used for first time
448 case CPUFREQ_GOV_LIMITS
:
450 if (policy
->max
< this_dbs_info
->cur_policy
->cur
)
451 __cpufreq_driver_target(
452 this_dbs_info
->cur_policy
,
453 policy
->max
, CPUFREQ_RELATION_H
);
454 else if (policy
->min
> this_dbs_info
->cur_policy
->cur
)
455 __cpufreq_driver_target(
456 this_dbs_info
->cur_policy
,
457 policy
->min
, CPUFREQ_RELATION_L
);
464 struct cpufreq_governor cpufreq_gov_dbs
= {
466 .governor
= cpufreq_governor_dbs
,
467 .owner
= THIS_MODULE
,
469 EXPORT_SYMBOL(cpufreq_gov_dbs
);
471 static int __init
cpufreq_gov_dbs_init(void)
473 return cpufreq_register_governor(&cpufreq_gov_dbs
);
476 static void __exit
cpufreq_gov_dbs_exit(void)
478 /* Make sure that the scheduled work is indeed not running */
479 flush_scheduled_work();
481 cpufreq_unregister_governor(&cpufreq_gov_dbs
);
485 MODULE_AUTHOR ("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
486 MODULE_DESCRIPTION ("'cpufreq_ondemand' - A dynamic cpufreq governor for "
487 "Low Latency Frequency Transition capable processors");
488 MODULE_LICENSE ("GPL");
490 module_init(cpufreq_gov_dbs_init
);
491 module_exit(cpufreq_gov_dbs_exit
);