]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/cpufreq/cpufreq_ondemand.c
cpufreq: governor: Create generic macro for common tunables
[mirror_ubuntu-artful-kernel.git] / drivers / cpufreq / cpufreq_ondemand.c
CommitLineData
1da177e4
LT
1/*
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
4471a34f
VK
13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
5ff0a268 15#include <linux/cpu.h>
4471a34f 16#include <linux/percpu-defs.h>
4d5dcc42 17#include <linux/slab.h>
80800913 18#include <linux/tick.h>
4471a34f 19#include "cpufreq_governor.h"
1da177e4 20
06eb09d1 21/* On-demand governor macros */
1da177e4 22#define DEF_FREQUENCY_UP_THRESHOLD (80)
3f78a9f7
DN
23#define DEF_SAMPLING_DOWN_FACTOR (1)
24#define MAX_SAMPLING_DOWN_FACTOR (100000)
80800913 25#define MICRO_FREQUENCY_UP_THRESHOLD (95)
cef9615a 26#define MICRO_FREQUENCY_MIN_SAMPLE_RATE (10000)
c29f1403 27#define MIN_FREQUENCY_UP_THRESHOLD (11)
1da177e4
LT
28#define MAX_FREQUENCY_UP_THRESHOLD (100)
29
4471a34f 30static DEFINE_PER_CPU(struct od_cpu_dbs_info_s, od_cpu_dbs_info);
1da177e4 31
fb30809e
JS
32static struct od_ops od_ops;
33
c2837558
JS
34static unsigned int default_powersave_bias;
35
4471a34f 36static void ondemand_powersave_bias_init_cpu(int cpu)
6b8fcd90 37{
4471a34f 38 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, cpu);
6b8fcd90 39
4471a34f
VK
40 dbs_info->freq_table = cpufreq_frequency_get_table(cpu);
41 dbs_info->freq_lo = 0;
42}
6b8fcd90 43
4471a34f
VK
44/*
45 * Not all CPUs want IO time to be accounted as busy; this depends on how
46 * efficient idling at a higher frequency/voltage is.
47 * Pavel Machek says this is not so for various generations of AMD and old
48 * Intel systems.
06eb09d1 49 * Mike Chan (android.com) claims this is also not true for ARM.
4471a34f
VK
50 * Because of this, whitelist specific known (series) of CPUs by default, and
51 * leave all others up to the user.
52 */
53static int should_io_be_busy(void)
54{
55#if defined(CONFIG_X86)
56 /*
06eb09d1 57 * For Intel, Core 2 (model 15) and later have an efficient idle.
4471a34f
VK
58 */
59 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
60 boot_cpu_data.x86 == 6 &&
61 boot_cpu_data.x86_model >= 15)
62 return 1;
63#endif
64 return 0;
6b8fcd90
AV
65}
66
05ca0350
AS
67/*
68 * Find right freq to be set now with powersave_bias on.
69 * Returns the freq_hi to be used right now and will set freq_hi_jiffies,
70 * freq_lo, and freq_lo_jiffies in percpu area for averaging freqs.
71 */
fb30809e 72static unsigned int generic_powersave_bias_target(struct cpufreq_policy *policy,
4471a34f 73 unsigned int freq_next, unsigned int relation)
05ca0350
AS
74{
75 unsigned int freq_req, freq_reduc, freq_avg;
76 unsigned int freq_hi, freq_lo;
77 unsigned int index = 0;
78 unsigned int jiffies_total, jiffies_hi, jiffies_lo;
4471a34f 79 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info,
245b2e70 80 policy->cpu);
bc505475
RW
81 struct policy_dbs_info *policy_dbs = policy->governor_data;
82 struct dbs_data *dbs_data = policy_dbs->dbs_data;
4d5dcc42 83 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
05ca0350
AS
84
85 if (!dbs_info->freq_table) {
86 dbs_info->freq_lo = 0;
87 dbs_info->freq_lo_jiffies = 0;
88 return freq_next;
89 }
90
91 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_next,
92 relation, &index);
93 freq_req = dbs_info->freq_table[index].frequency;
4d5dcc42 94 freq_reduc = freq_req * od_tuners->powersave_bias / 1000;
05ca0350
AS
95 freq_avg = freq_req - freq_reduc;
96
97 /* Find freq bounds for freq_avg in freq_table */
98 index = 0;
99 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
100 CPUFREQ_RELATION_H, &index);
101 freq_lo = dbs_info->freq_table[index].frequency;
102 index = 0;
103 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
104 CPUFREQ_RELATION_L, &index);
105 freq_hi = dbs_info->freq_table[index].frequency;
106
107 /* Find out how long we have to be in hi and lo freqs */
108 if (freq_hi == freq_lo) {
109 dbs_info->freq_lo = 0;
110 dbs_info->freq_lo_jiffies = 0;
111 return freq_lo;
112 }
4d5dcc42 113 jiffies_total = usecs_to_jiffies(od_tuners->sampling_rate);
05ca0350
AS
114 jiffies_hi = (freq_avg - freq_lo) * jiffies_total;
115 jiffies_hi += ((freq_hi - freq_lo) / 2);
116 jiffies_hi /= (freq_hi - freq_lo);
117 jiffies_lo = jiffies_total - jiffies_hi;
118 dbs_info->freq_lo = freq_lo;
119 dbs_info->freq_lo_jiffies = jiffies_lo;
120 dbs_info->freq_hi_jiffies = jiffies_hi;
121 return freq_hi;
122}
123
124static void ondemand_powersave_bias_init(void)
125{
126 int i;
127 for_each_online_cpu(i) {
5a75c828 128 ondemand_powersave_bias_init_cpu(i);
05ca0350
AS
129 }
130}
131
3a3e9e06 132static void dbs_freq_increase(struct cpufreq_policy *policy, unsigned int freq)
4471a34f 133{
bc505475
RW
134 struct policy_dbs_info *policy_dbs = policy->governor_data;
135 struct dbs_data *dbs_data = policy_dbs->dbs_data;
4d5dcc42
VK
136 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
137
138 if (od_tuners->powersave_bias)
3a3e9e06 139 freq = od_ops.powersave_bias_target(policy, freq,
fb30809e 140 CPUFREQ_RELATION_H);
3a3e9e06 141 else if (policy->cur == policy->max)
4471a34f 142 return;
0e625ac1 143
3a3e9e06 144 __cpufreq_driver_target(policy, freq, od_tuners->powersave_bias ?
4471a34f
VK
145 CPUFREQ_RELATION_L : CPUFREQ_RELATION_H);
146}
147
148/*
149 * Every sampling_rate, we check, if current idle time is less than 20%
dfa5bb62
SK
150 * (default), then we try to increase frequency. Else, we adjust the frequency
151 * proportional to load.
4471a34f 152 */
dfa5bb62 153static void od_check_cpu(int cpu, unsigned int load)
1da177e4 154{
4471a34f 155 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, cpu);
bc505475
RW
156 struct policy_dbs_info *policy_dbs = dbs_info->cdbs.policy_dbs;
157 struct cpufreq_policy *policy = policy_dbs->policy;
158 struct dbs_data *dbs_data = policy_dbs->dbs_data;
4d5dcc42 159 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
4471a34f
VK
160
161 dbs_info->freq_lo = 0;
162
163 /* Check for frequency increase */
dfa5bb62 164 if (load > od_tuners->up_threshold) {
4471a34f
VK
165 /* If switching to max speed, apply sampling_down_factor */
166 if (policy->cur < policy->max)
167 dbs_info->rate_mult =
4d5dcc42 168 od_tuners->sampling_down_factor;
4471a34f 169 dbs_freq_increase(policy, policy->max);
dfa5bb62
SK
170 } else {
171 /* Calculate the next frequency proportional to load */
6393d6a1
SK
172 unsigned int freq_next, min_f, max_f;
173
174 min_f = policy->cpuinfo.min_freq;
175 max_f = policy->cpuinfo.max_freq;
176 freq_next = min_f + load * (max_f - min_f) / 100;
4471a34f
VK
177
178 /* No longer fully busy, reset rate_mult */
179 dbs_info->rate_mult = 1;
180
4d5dcc42 181 if (!od_tuners->powersave_bias) {
4471a34f 182 __cpufreq_driver_target(policy, freq_next,
6393d6a1 183 CPUFREQ_RELATION_C);
fb30809e 184 return;
4471a34f 185 }
fb30809e
JS
186
187 freq_next = od_ops.powersave_bias_target(policy, freq_next,
188 CPUFREQ_RELATION_L);
6393d6a1 189 __cpufreq_driver_target(policy, freq_next, CPUFREQ_RELATION_C);
4471a34f 190 }
1da177e4
LT
191}
192
9be4fd2c 193static unsigned int od_dbs_timer(struct cpufreq_policy *policy)
4471a34f 194{
bc505475
RW
195 struct policy_dbs_info *policy_dbs = policy->governor_data;
196 struct dbs_data *dbs_data = policy_dbs->dbs_data;
d10b5eb5 197 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, policy->cpu);
4d5dcc42 198 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
43e0ee36 199 int delay = 0, sample_type = dbs_info->sample_type;
4447266b 200
4471a34f 201 /* Common NORMAL_SAMPLE setup */
43e0ee36 202 dbs_info->sample_type = OD_NORMAL_SAMPLE;
4471a34f 203 if (sample_type == OD_SUB_SAMPLE) {
43e0ee36
VK
204 delay = dbs_info->freq_lo_jiffies;
205 __cpufreq_driver_target(policy, dbs_info->freq_lo,
42994af6 206 CPUFREQ_RELATION_H);
4471a34f 207 } else {
d10b5eb5 208 dbs_check_cpu(policy);
43e0ee36 209 if (dbs_info->freq_lo) {
4471a34f 210 /* Setup timer for SUB_SAMPLE */
43e0ee36
VK
211 dbs_info->sample_type = OD_SUB_SAMPLE;
212 delay = dbs_info->freq_hi_jiffies;
4471a34f
VK
213 }
214 }
215
9d445920
VK
216 if (!delay)
217 delay = delay_for_sampling_rate(od_tuners->sampling_rate
43e0ee36 218 * dbs_info->rate_mult);
9d445920 219
43e0ee36 220 return delay;
da53d61e
FB
221}
222
4471a34f 223/************************** sysfs interface ************************/
7bdad34d 224static struct dbs_governor od_dbs_gov;
1da177e4 225
fd0ef7a0
MH
226/**
227 * update_sampling_rate - update sampling rate effective immediately if needed.
228 * @new_rate: new sampling rate
229 *
06eb09d1 230 * If new rate is smaller than the old, simply updating
4471a34f
VK
231 * dbs_tuners_int.sampling_rate might not be appropriate. For example, if the
232 * original sampling_rate was 1 second and the requested new sampling rate is 10
233 * ms because the user needs immediate reaction from ondemand governor, but not
234 * sure if higher frequency will be required or not, then, the governor may
235 * change the sampling rate too late; up to 1 second later. Thus, if we are
236 * reducing the sampling rate, we need to make the new value effective
237 * immediately.
fd0ef7a0 238 */
4d5dcc42
VK
239static void update_sampling_rate(struct dbs_data *dbs_data,
240 unsigned int new_rate)
fd0ef7a0 241{
4d5dcc42 242 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
f08f638b 243 struct cpumask cpumask;
fd0ef7a0
MH
244 int cpu;
245
4d5dcc42
VK
246 od_tuners->sampling_rate = new_rate = max(new_rate,
247 dbs_data->min_sampling_rate);
fd0ef7a0 248
e128c864
VK
249 /*
250 * Lock governor so that governor start/stop can't execute in parallel.
251 */
2bb8d94f 252 mutex_lock(&dbs_data_mutex);
e128c864 253
f08f638b
VK
254 cpumask_copy(&cpumask, cpu_online_mask);
255
256 for_each_cpu(cpu, &cpumask) {
fd0ef7a0 257 struct cpufreq_policy *policy;
4471a34f 258 struct od_cpu_dbs_info_s *dbs_info;
e128c864 259 struct cpu_dbs_info *cdbs;
e40e7b25 260 struct policy_dbs_info *policy_dbs;
fd0ef7a0 261
e128c864
VK
262 dbs_info = &per_cpu(od_cpu_dbs_info, cpu);
263 cdbs = &dbs_info->cdbs;
e40e7b25 264 policy_dbs = cdbs->policy_dbs;
e128c864
VK
265
266 /*
e40e7b25
RW
267 * A valid policy_dbs and policy_dbs->policy means governor
268 * hasn't stopped or exited yet.
e128c864 269 */
e40e7b25 270 if (!policy_dbs || !policy_dbs->policy)
fd0ef7a0 271 continue;
e128c864 272
e40e7b25 273 policy = policy_dbs->policy;
e128c864 274
f08f638b
VK
275 /* clear all CPUs of this policy */
276 cpumask_andnot(&cpumask, &cpumask, policy->cpus);
277
e128c864
VK
278 /*
279 * Update sampling rate for CPUs whose policy is governed by
280 * dbs_data. In case of governor_per_policy, only a single
281 * policy will be governed by dbs_data, otherwise there can be
282 * multiple policies that are governed by the same dbs_data.
283 */
bc505475 284 if (dbs_data == policy_dbs->dbs_data) {
e40e7b25 285 mutex_lock(&policy_dbs->timer_mutex);
9be4fd2c
RW
286 /*
287 * On 32-bit architectures this may race with the
288 * sample_delay_ns read in dbs_update_util_handler(),
289 * but that really doesn't matter. If the read returns
290 * a value that's too big, the sample will be skipped,
291 * but the next invocation of dbs_update_util_handler()
292 * (when the update has been completed) will take a
293 * sample. If the returned value is too small, the
294 * sample will be taken immediately, but that isn't a
295 * problem, as we want the new rate to take effect
296 * immediately anyway.
297 *
298 * If this runs in parallel with dbs_work_handler(), we
299 * may end up overwriting the sample_delay_ns value that
300 * it has just written, but the difference should not be
301 * too big and it will be corrected next time a sample
302 * is taken, so it shouldn't be significant.
303 */
e40e7b25
RW
304 gov_update_sample_delay(policy_dbs, new_rate);
305 mutex_unlock(&policy_dbs->timer_mutex);
fd0ef7a0 306 }
fd0ef7a0 307 }
e128c864 308
2bb8d94f 309 mutex_unlock(&dbs_data_mutex);
fd0ef7a0
MH
310}
311
4d5dcc42
VK
312static ssize_t store_sampling_rate(struct dbs_data *dbs_data, const char *buf,
313 size_t count)
1da177e4
LT
314{
315 unsigned int input;
316 int ret;
ffac80e9 317 ret = sscanf(buf, "%u", &input);
5a75c828 318 if (ret != 1)
319 return -EINVAL;
4d5dcc42
VK
320
321 update_sampling_rate(dbs_data, input);
1da177e4
LT
322 return count;
323}
324
4d5dcc42
VK
325static ssize_t store_io_is_busy(struct dbs_data *dbs_data, const char *buf,
326 size_t count)
19379b11 327{
4d5dcc42 328 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
19379b11
AV
329 unsigned int input;
330 int ret;
9366d840 331 unsigned int j;
19379b11
AV
332
333 ret = sscanf(buf, "%u", &input);
334 if (ret != 1)
335 return -EINVAL;
4d5dcc42 336 od_tuners->io_is_busy = !!input;
9366d840
SK
337
338 /* we need to re-evaluate prev_cpu_idle */
339 for_each_online_cpu(j) {
340 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info,
341 j);
342 dbs_info->cdbs.prev_cpu_idle = get_cpu_idle_time(j,
343 &dbs_info->cdbs.prev_cpu_wall, od_tuners->io_is_busy);
344 }
19379b11
AV
345 return count;
346}
347
4d5dcc42
VK
348static ssize_t store_up_threshold(struct dbs_data *dbs_data, const char *buf,
349 size_t count)
1da177e4 350{
4d5dcc42 351 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
1da177e4
LT
352 unsigned int input;
353 int ret;
ffac80e9 354 ret = sscanf(buf, "%u", &input);
1da177e4 355
32ee8c3e 356 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
c29f1403 357 input < MIN_FREQUENCY_UP_THRESHOLD) {
1da177e4
LT
358 return -EINVAL;
359 }
4bd4e428 360
4d5dcc42 361 od_tuners->up_threshold = input;
1da177e4
LT
362 return count;
363}
364
4d5dcc42
VK
365static ssize_t store_sampling_down_factor(struct dbs_data *dbs_data,
366 const char *buf, size_t count)
3f78a9f7 367{
4d5dcc42 368 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
3f78a9f7
DN
369 unsigned int input, j;
370 int ret;
371 ret = sscanf(buf, "%u", &input);
372
373 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
374 return -EINVAL;
4d5dcc42 375 od_tuners->sampling_down_factor = input;
3f78a9f7
DN
376
377 /* Reset down sampling multiplier in case it was active */
378 for_each_online_cpu(j) {
4471a34f
VK
379 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info,
380 j);
3f78a9f7
DN
381 dbs_info->rate_mult = 1;
382 }
3f78a9f7
DN
383 return count;
384}
385
6c4640c3
VK
386static ssize_t store_ignore_nice_load(struct dbs_data *dbs_data,
387 const char *buf, size_t count)
3d5ee9e5 388{
4d5dcc42 389 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
3d5ee9e5
DJ
390 unsigned int input;
391 int ret;
392
393 unsigned int j;
32ee8c3e 394
ffac80e9 395 ret = sscanf(buf, "%u", &input);
2b03f891 396 if (ret != 1)
3d5ee9e5
DJ
397 return -EINVAL;
398
2b03f891 399 if (input > 1)
3d5ee9e5 400 input = 1;
32ee8c3e 401
6c4640c3 402 if (input == od_tuners->ignore_nice_load) { /* nothing to do */
3d5ee9e5
DJ
403 return count;
404 }
6c4640c3 405 od_tuners->ignore_nice_load = input;
3d5ee9e5 406
ccb2fe20 407 /* we need to re-evaluate prev_cpu_idle */
dac1c1a5 408 for_each_online_cpu(j) {
4471a34f 409 struct od_cpu_dbs_info_s *dbs_info;
245b2e70 410 dbs_info = &per_cpu(od_cpu_dbs_info, j);
4471a34f 411 dbs_info->cdbs.prev_cpu_idle = get_cpu_idle_time(j,
9366d840 412 &dbs_info->cdbs.prev_cpu_wall, od_tuners->io_is_busy);
6c4640c3 413 if (od_tuners->ignore_nice_load)
4471a34f
VK
414 dbs_info->cdbs.prev_cpu_nice =
415 kcpustat_cpu(j).cpustat[CPUTIME_NICE];
1ca3abdb 416
3d5ee9e5 417 }
3d5ee9e5
DJ
418 return count;
419}
420
4d5dcc42
VK
421static ssize_t store_powersave_bias(struct dbs_data *dbs_data, const char *buf,
422 size_t count)
05ca0350 423{
4d5dcc42 424 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
05ca0350
AS
425 unsigned int input;
426 int ret;
427 ret = sscanf(buf, "%u", &input);
428
429 if (ret != 1)
430 return -EINVAL;
431
432 if (input > 1000)
433 input = 1000;
434
4d5dcc42 435 od_tuners->powersave_bias = input;
05ca0350 436 ondemand_powersave_bias_init();
05ca0350
AS
437 return count;
438}
439
4d5dcc42
VK
440show_store_one(od, sampling_rate);
441show_store_one(od, io_is_busy);
442show_store_one(od, up_threshold);
443show_store_one(od, sampling_down_factor);
6c4640c3 444show_store_one(od, ignore_nice_load);
4d5dcc42 445show_store_one(od, powersave_bias);
d0684d3b 446show_one_common(od, min_sampling_rate);
4d5dcc42
VK
447
448gov_sys_pol_attr_rw(sampling_rate);
449gov_sys_pol_attr_rw(io_is_busy);
450gov_sys_pol_attr_rw(up_threshold);
451gov_sys_pol_attr_rw(sampling_down_factor);
6c4640c3 452gov_sys_pol_attr_rw(ignore_nice_load);
4d5dcc42 453gov_sys_pol_attr_rw(powersave_bias);
d0684d3b 454gov_sys_pol_attr_ro(min_sampling_rate);
4d5dcc42
VK
455
456static struct attribute *dbs_attributes_gov_sys[] = {
d0684d3b 457 &min_sampling_rate_gov_sys.attr,
4d5dcc42
VK
458 &sampling_rate_gov_sys.attr,
459 &up_threshold_gov_sys.attr,
460 &sampling_down_factor_gov_sys.attr,
6c4640c3 461 &ignore_nice_load_gov_sys.attr,
4d5dcc42
VK
462 &powersave_bias_gov_sys.attr,
463 &io_is_busy_gov_sys.attr,
1da177e4
LT
464 NULL
465};
466
4d5dcc42
VK
467static struct attribute_group od_attr_group_gov_sys = {
468 .attrs = dbs_attributes_gov_sys,
469 .name = "ondemand",
470};
471
472static struct attribute *dbs_attributes_gov_pol[] = {
d0684d3b 473 &min_sampling_rate_gov_pol.attr,
4d5dcc42
VK
474 &sampling_rate_gov_pol.attr,
475 &up_threshold_gov_pol.attr,
476 &sampling_down_factor_gov_pol.attr,
6c4640c3 477 &ignore_nice_load_gov_pol.attr,
4d5dcc42
VK
478 &powersave_bias_gov_pol.attr,
479 &io_is_busy_gov_pol.attr,
480 NULL
481};
482
483static struct attribute_group od_attr_group_gov_pol = {
484 .attrs = dbs_attributes_gov_pol,
1da177e4
LT
485 .name = "ondemand",
486};
487
488/************************** sysfs end ************************/
489
8e0484d2 490static int od_init(struct dbs_data *dbs_data, bool notify)
4d5dcc42
VK
491{
492 struct od_dbs_tuners *tuners;
493 u64 idle_time;
494 int cpu;
495
d5b73cd8 496 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL);
4d5dcc42
VK
497 if (!tuners) {
498 pr_err("%s: kzalloc failed\n", __func__);
499 return -ENOMEM;
500 }
501
502 cpu = get_cpu();
503 idle_time = get_cpu_idle_time_us(cpu, NULL);
504 put_cpu();
505 if (idle_time != -1ULL) {
506 /* Idle micro accounting is supported. Use finer thresholds */
507 tuners->up_threshold = MICRO_FREQUENCY_UP_THRESHOLD;
4d5dcc42
VK
508 /*
509 * In nohz/micro accounting case we set the minimum frequency
510 * not depending on HZ, but fixed (very low). The deferred
511 * timer might skip some samples if idle/sleeping as needed.
512 */
513 dbs_data->min_sampling_rate = MICRO_FREQUENCY_MIN_SAMPLE_RATE;
514 } else {
515 tuners->up_threshold = DEF_FREQUENCY_UP_THRESHOLD;
4d5dcc42
VK
516
517 /* For correct statistics, we need 10 ticks for each measure */
518 dbs_data->min_sampling_rate = MIN_SAMPLING_RATE_RATIO *
519 jiffies_to_usecs(10);
520 }
521
522 tuners->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR;
6c4640c3 523 tuners->ignore_nice_load = 0;
c2837558 524 tuners->powersave_bias = default_powersave_bias;
4d5dcc42
VK
525 tuners->io_is_busy = should_io_be_busy();
526
527 dbs_data->tuners = tuners;
4d5dcc42
VK
528 return 0;
529}
530
8e0484d2 531static void od_exit(struct dbs_data *dbs_data, bool notify)
4d5dcc42
VK
532{
533 kfree(dbs_data->tuners);
534}
535
4471a34f 536define_get_cpu_dbs_routines(od_cpu_dbs_info);
6b8fcd90 537
4471a34f 538static struct od_ops od_ops = {
4471a34f 539 .powersave_bias_init_cpu = ondemand_powersave_bias_init_cpu,
fb30809e 540 .powersave_bias_target = generic_powersave_bias_target,
4471a34f
VK
541 .freq_increase = dbs_freq_increase,
542};
2f8a835c 543
7bdad34d 544static struct dbs_governor od_dbs_gov = {
af926185
RW
545 .gov = {
546 .name = "ondemand",
906a6e5a 547 .governor = cpufreq_governor_dbs,
af926185
RW
548 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
549 .owner = THIS_MODULE,
550 },
4471a34f 551 .governor = GOV_ONDEMAND,
4d5dcc42
VK
552 .attr_group_gov_sys = &od_attr_group_gov_sys,
553 .attr_group_gov_pol = &od_attr_group_gov_pol,
4471a34f
VK
554 .get_cpu_cdbs = get_cpu_cdbs,
555 .get_cpu_dbs_info_s = get_cpu_dbs_info_s,
556 .gov_dbs_timer = od_dbs_timer,
557 .gov_check_cpu = od_check_cpu,
558 .gov_ops = &od_ops,
4d5dcc42
VK
559 .init = od_init,
560 .exit = od_exit,
4471a34f 561};
1da177e4 562
7bdad34d 563#define CPU_FREQ_GOV_ONDEMAND (&od_dbs_gov.gov)
af926185 564
fb30809e
JS
565static void od_set_powersave_bias(unsigned int powersave_bias)
566{
567 struct cpufreq_policy *policy;
568 struct dbs_data *dbs_data;
569 struct od_dbs_tuners *od_tuners;
570 unsigned int cpu;
571 cpumask_t done;
572
c2837558 573 default_powersave_bias = powersave_bias;
fb30809e
JS
574 cpumask_clear(&done);
575
576 get_online_cpus();
577 for_each_online_cpu(cpu) {
e40e7b25 578 struct policy_dbs_info *policy_dbs;
44152cb8 579
fb30809e
JS
580 if (cpumask_test_cpu(cpu, &done))
581 continue;
582
e40e7b25
RW
583 policy_dbs = per_cpu(od_cpu_dbs_info, cpu).cdbs.policy_dbs;
584 if (!policy_dbs)
c2837558 585 continue;
fb30809e 586
e40e7b25 587 policy = policy_dbs->policy;
fb30809e 588 cpumask_or(&done, &done, policy->cpus);
c2837558 589
af926185 590 if (policy->governor != CPU_FREQ_GOV_ONDEMAND)
c2837558
JS
591 continue;
592
bc505475 593 dbs_data = policy_dbs->dbs_data;
c2837558
JS
594 od_tuners = dbs_data->tuners;
595 od_tuners->powersave_bias = default_powersave_bias;
fb30809e
JS
596 }
597 put_online_cpus();
598}
599
600void od_register_powersave_bias_handler(unsigned int (*f)
601 (struct cpufreq_policy *, unsigned int, unsigned int),
602 unsigned int powersave_bias)
603{
604 od_ops.powersave_bias_target = f;
605 od_set_powersave_bias(powersave_bias);
606}
607EXPORT_SYMBOL_GPL(od_register_powersave_bias_handler);
608
609void od_unregister_powersave_bias_handler(void)
610{
611 od_ops.powersave_bias_target = generic_powersave_bias_target;
612 od_set_powersave_bias(0);
613}
614EXPORT_SYMBOL_GPL(od_unregister_powersave_bias_handler);
615
1da177e4
LT
616static int __init cpufreq_gov_dbs_init(void)
617{
af926185 618 return cpufreq_register_governor(CPU_FREQ_GOV_ONDEMAND);
1da177e4
LT
619}
620
621static void __exit cpufreq_gov_dbs_exit(void)
622{
af926185 623 cpufreq_unregister_governor(CPU_FREQ_GOV_ONDEMAND);
1da177e4
LT
624}
625
ffac80e9
VP
626MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
627MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
628MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
2b03f891 629 "Low Latency Frequency Transition capable processors");
ffac80e9 630MODULE_LICENSE("GPL");
1da177e4 631
6915719b 632#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
de1df26b
RW
633struct cpufreq_governor *cpufreq_default_governor(void)
634{
af926185 635 return CPU_FREQ_GOV_ONDEMAND;
de1df26b
RW
636}
637
6915719b
JW
638fs_initcall(cpufreq_gov_dbs_init);
639#else
1da177e4 640module_init(cpufreq_gov_dbs_init);
6915719b 641#endif
1da177e4 642module_exit(cpufreq_gov_dbs_exit);