blob: d6ba14276bb1b0fda545cfab00367403d9b17408 [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)
Thomas Renningercef96152009-04-22 13:48:29 +020035#define MICRO_FREQUENCY_MIN_SAMPLE_RATE (10000)
Dave Jonesc29f1402005-05-31 19:03:50 -070036#define MIN_FREQUENCY_UP_THRESHOLD (11)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define MAX_FREQUENCY_UP_THRESHOLD (100)
38
Dave Jones32ee8c32006-02-28 00:43:23 -050039/*
40 * The polling frequency of this governor depends on the capability of
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * the processor. Default polling frequency is 1000 times the transition
Dave Jones32ee8c32006-02-28 00:43:23 -050042 * latency of the processor. The governor will work on any processor with
43 * transition latency <= 10mS, using appropriate sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * rate.
45 * For CPUs with transition latency > 10mS (mostly drivers with CPUFREQ_ETERNAL)
46 * this governor will not work.
47 * All times here are in uS.
48 */
Dave Jonesdf8b59b2005-09-20 12:39:35 -070049#define MIN_SAMPLING_RATE_RATIO (2)
Thomas Renninger112124a2009-02-04 11:55:12 +010050
Thomas Renningercef96152009-04-22 13:48:29 +020051static unsigned int min_sampling_rate;
52
Thomas Renninger112124a2009-02-04 11:55:12 +010053#define LATENCY_MULTIPLIER (1000)
Thomas Renningercef96152009-04-22 13:48:29 +020054#define MIN_LATENCY_MULTIPLIER (100)
Thomas Renninger1c256242007-10-02 13:28:12 -070055#define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
David Howellsc4028952006-11-22 14:57:56 +000057static void do_dbs_timer(struct work_struct *work);
58
59/* Sampling types */
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -080060enum {DBS_NORMAL_SAMPLE, DBS_SUB_SAMPLE};
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62struct cpu_dbs_info_s {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -070063 cputime64_t prev_cpu_idle;
64 cputime64_t prev_cpu_wall;
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -070065 cputime64_t prev_cpu_nice;
Dave Jones32ee8c32006-02-28 00:43:23 -050066 struct cpufreq_policy *cur_policy;
Dave Jones2b03f892009-01-18 01:43:44 -050067 struct delayed_work work;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040068 struct cpufreq_frequency_table *freq_table;
69 unsigned int freq_lo;
70 unsigned int freq_lo_jiffies;
71 unsigned int freq_hi_jiffies;
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -080072 int cpu;
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -070073 unsigned int sample_type:1;
74 /*
75 * percpu mutex that serializes governor limit change with
76 * do_dbs_timer invocation. We do not want do_dbs_timer to run
77 * when user is changing the governor or limits.
78 */
79 struct mutex timer_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info);
82
83static unsigned int dbs_enable; /* number of CPUs using this policy */
84
Venkatesh Pallipadi4ec223d2006-06-21 15:18:34 -070085/*
venkatesh.pallipadi@intel.com7d26e2d2009-07-02 17:08:30 -070086 * dbs_mutex protects data in dbs_tuners_ins from concurrent changes on
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -070087 * different CPUs. It protects dbs_enable in governor start/stop.
Venkatesh Pallipadi4ec223d2006-06-21 15:18:34 -070088 */
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -070089static DEFINE_MUTEX(dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -070091static struct workqueue_struct *kondemand_wq;
Andi Kleen6810b542006-05-08 15:17:31 +020092
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040093static struct dbs_tuners {
Dave Jones32ee8c32006-02-28 00:43:23 -050094 unsigned int sampling_rate;
Dave Jones32ee8c32006-02-28 00:43:23 -050095 unsigned int up_threshold;
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -070096 unsigned int down_differential;
Dave Jones32ee8c32006-02-28 00:43:23 -050097 unsigned int ignore_nice;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040098 unsigned int powersave_bias;
99} dbs_tuners_ins = {
Dave Jones32ee8c32006-02-28 00:43:23 -0500100 .up_threshold = DEF_FREQUENCY_UP_THRESHOLD,
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -0700101 .down_differential = DEF_FREQUENCY_DOWN_DIFFERENTIAL,
Eric Piel9cbad612006-03-10 11:35:27 +0200102 .ignore_nice = 0,
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400103 .powersave_bias = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700106static inline cputime64_t get_cpu_idle_time_jiffy(unsigned int cpu,
107 cputime64_t *wall)
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700108{
Venki Pallipadiea487612007-06-20 14:26:24 -0700109 cputime64_t idle_time;
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700110 cputime64_t cur_wall_time;
Venki Pallipadiea487612007-06-20 14:26:24 -0700111 cputime64_t busy_time;
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700112
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700113 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
Venki Pallipadiea487612007-06-20 14:26:24 -0700114 busy_time = cputime64_add(kstat_cpu(cpu).cpustat.user,
115 kstat_cpu(cpu).cpustat.system);
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700116
Venki Pallipadiea487612007-06-20 14:26:24 -0700117 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.irq);
118 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.softirq);
119 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.steal);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500120 busy_time = cputime64_add(busy_time, kstat_cpu(cpu).cpustat.nice);
Venki Pallipadiea487612007-06-20 14:26:24 -0700121
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700122 idle_time = cputime64_sub(cur_wall_time, busy_time);
123 if (wall)
124 *wall = cur_wall_time;
125
Venki Pallipadiea487612007-06-20 14:26:24 -0700126 return idle_time;
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700127}
128
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700129static inline cputime64_t get_cpu_idle_time(unsigned int cpu, cputime64_t *wall)
130{
131 u64 idle_time = get_cpu_idle_time_us(cpu, wall);
132
133 if (idle_time == -1ULL)
134 return get_cpu_idle_time_jiffy(cpu, wall);
135
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700136 return idle_time;
137}
138
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400139/*
140 * Find right freq to be set now with powersave_bias on.
141 * Returns the freq_hi to be used right now and will set freq_hi_jiffies,
142 * freq_lo, and freq_lo_jiffies in percpu area for averaging freqs.
143 */
Adrian Bunkb5ecf602006-08-13 23:00:08 +0200144static unsigned int powersave_bias_target(struct cpufreq_policy *policy,
145 unsigned int freq_next,
146 unsigned int relation)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400147{
148 unsigned int freq_req, freq_reduc, freq_avg;
149 unsigned int freq_hi, freq_lo;
150 unsigned int index = 0;
151 unsigned int jiffies_total, jiffies_hi, jiffies_lo;
152 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, policy->cpu);
153
154 if (!dbs_info->freq_table) {
155 dbs_info->freq_lo = 0;
156 dbs_info->freq_lo_jiffies = 0;
157 return freq_next;
158 }
159
160 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_next,
161 relation, &index);
162 freq_req = dbs_info->freq_table[index].frequency;
163 freq_reduc = freq_req * dbs_tuners_ins.powersave_bias / 1000;
164 freq_avg = freq_req - freq_reduc;
165
166 /* Find freq bounds for freq_avg in freq_table */
167 index = 0;
168 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
169 CPUFREQ_RELATION_H, &index);
170 freq_lo = dbs_info->freq_table[index].frequency;
171 index = 0;
172 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
173 CPUFREQ_RELATION_L, &index);
174 freq_hi = dbs_info->freq_table[index].frequency;
175
176 /* Find out how long we have to be in hi and lo freqs */
177 if (freq_hi == freq_lo) {
178 dbs_info->freq_lo = 0;
179 dbs_info->freq_lo_jiffies = 0;
180 return freq_lo;
181 }
182 jiffies_total = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
183 jiffies_hi = (freq_avg - freq_lo) * jiffies_total;
184 jiffies_hi += ((freq_hi - freq_lo) / 2);
185 jiffies_hi /= (freq_hi - freq_lo);
186 jiffies_lo = jiffies_total - jiffies_hi;
187 dbs_info->freq_lo = freq_lo;
188 dbs_info->freq_lo_jiffies = jiffies_lo;
189 dbs_info->freq_hi_jiffies = jiffies_hi;
190 return freq_hi;
191}
192
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700193static void ondemand_powersave_bias_init_cpu(int cpu)
194{
195 struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, cpu);
196 dbs_info->freq_table = cpufreq_frequency_get_table(cpu);
197 dbs_info->freq_lo = 0;
198}
199
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400200static void ondemand_powersave_bias_init(void)
201{
202 int i;
203 for_each_online_cpu(i) {
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700204 ondemand_powersave_bias_init_cpu(i);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400205 }
206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/************************** sysfs interface ************************/
209static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf)
210{
Thomas Renninger4f4d1ad2009-04-22 13:48:31 +0200211 printk_once(KERN_INFO "CPUFREQ: ondemand sampling_rate_max "
212 "sysfs file is deprecated - used by: %s\n", current->comm);
Thomas Renningercef96152009-04-22 13:48:29 +0200213 return sprintf(buf, "%u\n", -1U);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
216static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf)
217{
Thomas Renningercef96152009-04-22 13:48:29 +0200218 return sprintf(buf, "%u\n", min_sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Dave Jones32ee8c32006-02-28 00:43:23 -0500221#define define_one_ro(_name) \
222static struct freq_attr _name = \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223__ATTR(_name, 0444, show_##_name, NULL)
224
225define_one_ro(sampling_rate_max);
226define_one_ro(sampling_rate_min);
227
228/* cpufreq_ondemand Governor Tunables */
229#define show_one(file_name, object) \
230static ssize_t show_##file_name \
231(struct cpufreq_policy *unused, char *buf) \
232{ \
233 return sprintf(buf, "%u\n", dbs_tuners_ins.object); \
234}
235show_one(sampling_rate, sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236show_one(up_threshold, up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800237show_one(ignore_nice_load, ignore_nice);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400238show_one(powersave_bias, powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Dave Jones32ee8c32006-02-28 00:43:23 -0500240static ssize_t store_sampling_rate(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 const char *buf, size_t count)
242{
243 unsigned int input;
244 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700245 ret = sscanf(buf, "%u", &input);
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700246 if (ret != 1)
247 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800249 mutex_lock(&dbs_mutex);
Thomas Renningercef96152009-04-22 13:48:29 +0200250 dbs_tuners_ins.sampling_rate = max(input, min_sampling_rate);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800251 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 return count;
254}
255
Dave Jones32ee8c32006-02-28 00:43:23 -0500256static ssize_t store_up_threshold(struct cpufreq_policy *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 const char *buf, size_t count)
258{
259 unsigned int input;
260 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700261 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Dave Jones32ee8c32006-02-28 00:43:23 -0500263 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
Dave Jonesc29f1402005-05-31 19:03:50 -0700264 input < MIN_FREQUENCY_UP_THRESHOLD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return -EINVAL;
266 }
267
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700268 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 dbs_tuners_ins.up_threshold = input;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800270 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 return count;
273}
274
Alexander Clouter001893c2005-12-01 01:09:25 -0800275static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy,
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700276 const char *buf, size_t count)
277{
278 unsigned int input;
279 int ret;
280
281 unsigned int j;
Dave Jones32ee8c32006-02-28 00:43:23 -0500282
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700283 ret = sscanf(buf, "%u", &input);
Dave Jones2b03f892009-01-18 01:43:44 -0500284 if (ret != 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700285 return -EINVAL;
286
Dave Jones2b03f892009-01-18 01:43:44 -0500287 if (input > 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700288 input = 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500289
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800290 mutex_lock(&dbs_mutex);
Dave Jones2b03f892009-01-18 01:43:44 -0500291 if (input == dbs_tuners_ins.ignore_nice) { /* nothing to do */
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800292 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700293 return count;
294 }
295 dbs_tuners_ins.ignore_nice = input;
296
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700297 /* we need to re-evaluate prev_cpu_idle */
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700298 for_each_online_cpu(j) {
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700299 struct cpu_dbs_info_s *dbs_info;
300 dbs_info = &per_cpu(cpu_dbs_info, j);
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700301 dbs_info->prev_cpu_idle = get_cpu_idle_time(j,
302 &dbs_info->prev_cpu_wall);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500303 if (dbs_tuners_ins.ignore_nice)
304 dbs_info->prev_cpu_nice = kstat_cpu(j).cpustat.nice;
305
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700306 }
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800307 mutex_unlock(&dbs_mutex);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700308
309 return count;
310}
311
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400312static ssize_t store_powersave_bias(struct cpufreq_policy *unused,
313 const char *buf, size_t count)
314{
315 unsigned int input;
316 int ret;
317 ret = sscanf(buf, "%u", &input);
318
319 if (ret != 1)
320 return -EINVAL;
321
322 if (input > 1000)
323 input = 1000;
324
325 mutex_lock(&dbs_mutex);
326 dbs_tuners_ins.powersave_bias = input;
327 ondemand_powersave_bias_init();
328 mutex_unlock(&dbs_mutex);
329
330 return count;
331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#define define_one_rw(_name) \
334static struct freq_attr _name = \
335__ATTR(_name, 0644, show_##_name, store_##_name)
336
337define_one_rw(sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338define_one_rw(up_threshold);
Alexander Clouter001893c2005-12-01 01:09:25 -0800339define_one_rw(ignore_nice_load);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400340define_one_rw(powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Dave Jones2b03f892009-01-18 01:43:44 -0500342static struct attribute *dbs_attributes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 &sampling_rate_max.attr,
344 &sampling_rate_min.attr,
345 &sampling_rate.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 &up_threshold.attr,
Alexander Clouter001893c2005-12-01 01:09:25 -0800347 &ignore_nice_load.attr,
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400348 &powersave_bias.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 NULL
350};
351
352static struct attribute_group dbs_attr_group = {
353 .attrs = dbs_attributes,
354 .name = "ondemand",
355};
356
357/************************** sysfs end ************************/
358
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700359static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700361 unsigned int max_load_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 struct cpufreq_policy *policy;
364 unsigned int j;
365
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400366 this_dbs_info->freq_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 policy = this_dbs_info->cur_policy;
Venki Pallipadiea487612007-06-20 14:26:24 -0700368
Dave Jones32ee8c32006-02-28 00:43:23 -0500369 /*
Dave Jonesc29f1402005-05-31 19:03:50 -0700370 * Every sampling_rate, we check, if current idle time is less
371 * than 20% (default), then we try to increase frequency
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700372 * Every sampling_rate, we look for a the lowest
Dave Jonesc29f1402005-05-31 19:03:50 -0700373 * frequency which can sustain the load while keeping idle time over
374 * 30%. If such a frequency exist, we try to decrease to this frequency.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500376 * Any frequency increase takes it to the maximum frequency.
377 * Frequency reduction happens at minimum steps of
378 * 5% (default) of current frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
380
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700381 /* Get Absolute Load - in terms of freq */
382 max_load_freq = 0;
383
Rusty Russell835481d2009-01-04 05:18:06 -0800384 for_each_cpu(j, policy->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 struct cpu_dbs_info_s *j_dbs_info;
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700386 cputime64_t cur_wall_time, cur_idle_time;
387 unsigned int idle_time, wall_time;
388 unsigned int load, load_freq;
389 int freq_avg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 j_dbs_info = &per_cpu(cpu_dbs_info, j);
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700392
393 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time);
394
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700395 wall_time = (unsigned int) cputime64_sub(cur_wall_time,
396 j_dbs_info->prev_cpu_wall);
397 j_dbs_info->prev_cpu_wall = cur_wall_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700399 idle_time = (unsigned int) cputime64_sub(cur_idle_time,
400 j_dbs_info->prev_cpu_idle);
401 j_dbs_info->prev_cpu_idle = cur_idle_time;
402
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500403 if (dbs_tuners_ins.ignore_nice) {
404 cputime64_t cur_nice;
405 unsigned long cur_nice_jiffies;
406
407 cur_nice = cputime64_sub(kstat_cpu(j).cpustat.nice,
408 j_dbs_info->prev_cpu_nice);
409 /*
410 * Assumption: nice time between sampling periods will
411 * be less than 2^32 jiffies for 32 bit sys
412 */
413 cur_nice_jiffies = (unsigned long)
414 cputime64_to_jiffies64(cur_nice);
415
416 j_dbs_info->prev_cpu_nice = kstat_cpu(j).cpustat.nice;
417 idle_time += jiffies_to_usecs(cur_nice_jiffies);
418 }
419
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700420 if (unlikely(!wall_time || wall_time < idle_time))
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700421 continue;
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700422
423 load = 100 * (wall_time - idle_time) / wall_time;
424
425 freq_avg = __cpufreq_driver_getavg(policy, j);
426 if (freq_avg <= 0)
427 freq_avg = policy->cur;
428
429 load_freq = load * freq_avg;
430 if (load_freq > max_load_freq)
431 max_load_freq = load_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700434 /* Check for frequency increase */
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700435 if (max_load_freq > dbs_tuners_ins.up_threshold * policy->cur) {
Dave Jonesc11420a2005-05-31 19:03:48 -0700436 /* if we are already at full speed then break out early */
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400437 if (!dbs_tuners_ins.powersave_bias) {
438 if (policy->cur == policy->max)
439 return;
Dave Jones32ee8c32006-02-28 00:43:23 -0500440
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400441 __cpufreq_driver_target(policy, policy->max,
442 CPUFREQ_RELATION_H);
443 } else {
444 int freq = powersave_bias_target(policy, policy->max,
445 CPUFREQ_RELATION_H);
446 __cpufreq_driver_target(policy, freq,
447 CPUFREQ_RELATION_L);
448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return;
450 }
451
452 /* Check for frequency decrease */
Dave Jonesc29f1402005-05-31 19:03:50 -0700453 /* if we cannot reduce the frequency anymore, break out early */
454 if (policy->cur == policy->min)
455 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Dave Jonesc29f1402005-05-31 19:03:50 -0700457 /*
458 * The optimal frequency is the frequency that is the lowest that
459 * can support the current CPU usage without triggering the up
460 * policy. To be safe, we focus 10 points under the threshold.
461 */
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -0700462 if (max_load_freq <
463 (dbs_tuners_ins.up_threshold - dbs_tuners_ins.down_differential) *
464 policy->cur) {
venkatesh.pallipadi@intel.comc43aa3b2008-08-04 11:59:08 -0700465 unsigned int freq_next;
venkatesh.pallipadi@intel.come9d95bf2008-08-04 11:59:10 -0700466 freq_next = max_load_freq /
467 (dbs_tuners_ins.up_threshold -
468 dbs_tuners_ins.down_differential);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -0700469
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400470 if (!dbs_tuners_ins.powersave_bias) {
471 __cpufreq_driver_target(policy, freq_next,
472 CPUFREQ_RELATION_L);
473 } else {
474 int freq = powersave_bias_target(policy, freq_next,
475 CPUFREQ_RELATION_L);
476 __cpufreq_driver_target(policy, freq,
477 CPUFREQ_RELATION_L);
478 }
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
David Howellsc4028952006-11-22 14:57:56 +0000482static void do_dbs_timer(struct work_struct *work)
Dave Jones32ee8c32006-02-28 00:43:23 -0500483{
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800484 struct cpu_dbs_info_s *dbs_info =
485 container_of(work, struct cpu_dbs_info_s, work.work);
486 unsigned int cpu = dbs_info->cpu;
487 int sample_type = dbs_info->sample_type;
488
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400489 /* We want all CPUs to do sampling nearly on same jiffy */
490 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
David Howellsc4028952006-11-22 14:57:56 +0000491
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400492 delay -= jiffies % delay;
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700493 mutex_lock(&dbs_info->timer_mutex);
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800494
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400495 /* Common NORMAL_SAMPLE setup */
David Howellsc4028952006-11-22 14:57:56 +0000496 dbs_info->sample_type = DBS_NORMAL_SAMPLE;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400497 if (!dbs_tuners_ins.powersave_bias ||
David Howellsc4028952006-11-22 14:57:56 +0000498 sample_type == DBS_NORMAL_SAMPLE) {
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400499 dbs_check_cpu(dbs_info);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400500 if (dbs_info->freq_lo) {
501 /* Setup timer for SUB_SAMPLE */
David Howellsc4028952006-11-22 14:57:56 +0000502 dbs_info->sample_type = DBS_SUB_SAMPLE;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400503 delay = dbs_info->freq_hi_jiffies;
504 }
505 } else {
506 __cpufreq_driver_target(dbs_info->cur_policy,
Dave Jones2b03f892009-01-18 01:43:44 -0500507 dbs_info->freq_lo, CPUFREQ_RELATION_H);
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400508 }
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400509 queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay);
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700510 mutex_unlock(&dbs_info->timer_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -0500511}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800513static inline void dbs_timer_init(struct cpu_dbs_info_s *dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Alexey Starikovskiy1ce28d62006-07-31 22:25:20 +0400515 /* We want all CPUs to do sampling nearly on same jiffy */
516 int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate);
517 delay -= jiffies % delay;
Venkatesh Pallipadi2f8a8352006-06-28 13:51:19 -0700518
David Howellsc4028952006-11-22 14:57:56 +0000519 dbs_info->sample_type = DBS_NORMAL_SAMPLE;
Venki Pallipadi28287032007-05-08 00:27:47 -0700520 INIT_DELAYED_WORK_DEFERRABLE(&dbs_info->work, do_dbs_timer);
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800521 queue_delayed_work_on(dbs_info->cpu, kondemand_wq, &dbs_info->work,
Dave Jones2b03f892009-01-18 01:43:44 -0500522 delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700525static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Mathieu Desnoyersb14893a2009-05-17 10:30:45 -0400527 cancel_delayed_work_sync(&dbs_info->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
530static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
531 unsigned int event)
532{
533 unsigned int cpu = policy->cpu;
534 struct cpu_dbs_info_s *this_dbs_info;
535 unsigned int j;
Jeff Garzik914f7c32006-10-20 14:31:00 -0700536 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 this_dbs_info = &per_cpu(cpu_dbs_info, cpu);
539
540 switch (event) {
541 case CPUFREQ_GOV_START:
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700542 if ((!cpu_online(cpu)) || (!policy->cur))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return -EINVAL;
544
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800545 mutex_lock(&dbs_mutex);
Jeff Garzik914f7c32006-10-20 14:31:00 -0700546
547 rc = sysfs_create_group(&policy->kobj, &dbs_attr_group);
548 if (rc) {
Jeff Garzik914f7c32006-10-20 14:31:00 -0700549 mutex_unlock(&dbs_mutex);
550 return rc;
551 }
552
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700553 dbs_enable++;
Rusty Russell835481d2009-01-04 05:18:06 -0800554 for_each_cpu(j, policy->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct cpu_dbs_info_s *j_dbs_info;
556 j_dbs_info = &per_cpu(cpu_dbs_info, j);
557 j_dbs_info->cur_policy = policy;
Dave Jones32ee8c32006-02-28 00:43:23 -0500558
venkatesh.pallipadi@intel.com34305022008-08-04 11:59:09 -0700559 j_dbs_info->prev_cpu_idle = get_cpu_idle_time(j,
560 &j_dbs_info->prev_cpu_wall);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500561 if (dbs_tuners_ins.ignore_nice) {
562 j_dbs_info->prev_cpu_nice =
563 kstat_cpu(j).cpustat.nice;
564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Venkatesh Pallipadi529af7a2007-02-05 16:12:44 -0800566 this_dbs_info->cpu = cpu;
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700567 ondemand_powersave_bias_init_cpu(cpu);
568 mutex_init(&this_dbs_info->timer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 /*
570 * Start the timerschedule work, when this governor
571 * is used for first time
572 */
573 if (dbs_enable == 1) {
574 unsigned int latency;
575 /* policy latency is in nS. Convert it to uS first */
Dave Jonesdf8b59b2005-09-20 12:39:35 -0700576 latency = policy->cpuinfo.transition_latency / 1000;
577 if (latency == 0)
578 latency = 1;
Thomas Renningercef96152009-04-22 13:48:29 +0200579 /* Bring kernel and HW constraints together */
580 min_sampling_rate = max(min_sampling_rate,
581 MIN_LATENCY_MULTIPLIER * latency);
582 dbs_tuners_ins.sampling_rate =
583 max(min_sampling_rate,
584 latency * LATENCY_MULTIPLIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800586 mutex_unlock(&dbs_mutex);
venkatesh.pallipadi@intel.com7d26e2d2009-07-02 17:08:30 -0700587
588 dbs_timer_init(this_dbs_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 break;
590
591 case CPUFREQ_GOV_STOP:
Linus Torvalds2cd7cbd2006-07-23 12:05:00 -0700592 dbs_timer_exit(this_dbs_info);
venkatesh.pallipadi@intel.com7d26e2d2009-07-02 17:08:30 -0700593
594 mutex_lock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 sysfs_remove_group(&policy->kobj, &dbs_attr_group);
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700596 mutex_destroy(&this_dbs_info->timer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 dbs_enable--;
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800598 mutex_unlock(&dbs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 break;
601
602 case CPUFREQ_GOV_LIMITS:
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700603 mutex_lock(&this_dbs_info->timer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (policy->max < this_dbs_info->cur_policy->cur)
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700605 __cpufreq_driver_target(this_dbs_info->cur_policy,
Dave Jones2b03f892009-01-18 01:43:44 -0500606 policy->max, CPUFREQ_RELATION_H);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 else if (policy->min > this_dbs_info->cur_policy->cur)
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700608 __cpufreq_driver_target(this_dbs_info->cur_policy,
Dave Jones2b03f892009-01-18 01:43:44 -0500609 policy->min, CPUFREQ_RELATION_L);
venkatesh.pallipadi@intel.com5a75c822009-07-02 17:08:32 -0700610 mutex_unlock(&this_dbs_info->timer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 break;
612 }
613 return 0;
614}
615
Sven Wegenerc4d14bc2008-09-20 16:50:08 +0200616#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
617static
618#endif
Thomas Renninger1c256242007-10-02 13:28:12 -0700619struct cpufreq_governor cpufreq_gov_ondemand = {
620 .name = "ondemand",
621 .governor = cpufreq_governor_dbs,
622 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
623 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626static int __init cpufreq_gov_dbs_init(void)
627{
Akinobu Mita888a7942008-07-14 12:00:45 +0900628 int err;
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700629 cputime64_t wall;
Andrea Righi4f6e6b92008-09-18 10:43:40 +0000630 u64 idle_time;
631 int cpu = get_cpu();
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700632
Andrea Righi4f6e6b92008-09-18 10:43:40 +0000633 idle_time = get_cpu_idle_time_us(cpu, &wall);
634 put_cpu();
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700635 if (idle_time != -1ULL) {
636 /* Idle micro accounting is supported. Use finer thresholds */
637 dbs_tuners_ins.up_threshold = MICRO_FREQUENCY_UP_THRESHOLD;
638 dbs_tuners_ins.down_differential =
639 MICRO_FREQUENCY_DOWN_DIFFERENTIAL;
Thomas Renningercef96152009-04-22 13:48:29 +0200640 /*
641 * In no_hz/micro accounting case we set the minimum frequency
642 * not depending on HZ, but fixed (very low). The deferred
643 * timer might skip some samples if idle/sleeping as needed.
644 */
645 min_sampling_rate = MICRO_FREQUENCY_MIN_SAMPLE_RATE;
646 } else {
647 /* For correct statistics, we need 10 ticks for each measure */
648 min_sampling_rate =
649 MIN_SAMPLING_RATE_RATIO * jiffies_to_usecs(10);
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -0700650 }
Akinobu Mita888a7942008-07-14 12:00:45 +0900651
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800652 kondemand_wq = create_workqueue("kondemand");
653 if (!kondemand_wq) {
654 printk(KERN_ERR "Creation of kondemand failed\n");
655 return -EFAULT;
656 }
Akinobu Mita888a7942008-07-14 12:00:45 +0900657 err = cpufreq_register_governor(&cpufreq_gov_ondemand);
658 if (err)
659 destroy_workqueue(kondemand_wq);
660
661 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
664static void __exit cpufreq_gov_dbs_exit(void)
665{
Thomas Renninger1c256242007-10-02 13:28:12 -0700666 cpufreq_unregister_governor(&cpufreq_gov_ondemand);
Venkatesh Pallipadi56463b72007-02-05 16:12:45 -0800667 destroy_workqueue(kondemand_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700671MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
672MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
673MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
Dave Jones2b03f892009-01-18 01:43:44 -0500674 "Low Latency Frequency Transition capable processors");
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700675MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Johannes Weiner69157192008-01-17 15:21:08 -0800677#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
678fs_initcall(cpufreq_gov_dbs_init);
679#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800681#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682module_exit(cpufreq_gov_dbs_exit);