blob: c84fc2240d495493749fc0642b74ae15f6c263c5 [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
Viresh Kumar4471a342012-10-26 00:47:42 +020013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Viresh Kumar5ff0a262013-08-06 22:53:03 +053015#include <linux/cpu.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020016#include <linux/percpu-defs.h>
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000017#include <linux/slab.h>
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -070018#include <linux/tick.h>
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +010019
20#include "cpufreq_ondemand.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Stratos Karafotis06eb09d2013-02-08 17:24:18 +000022/* On-demand governor macros */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define DEF_FREQUENCY_UP_THRESHOLD (80)
David C Niemi3f78a9f2010-10-06 16:54:24 -040024#define DEF_SAMPLING_DOWN_FACTOR (1)
25#define MAX_SAMPLING_DOWN_FACTOR (100000)
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -070026#define MICRO_FREQUENCY_UP_THRESHOLD (95)
Thomas Renningercef96152009-04-22 13:48:29 +020027#define MICRO_FREQUENCY_MIN_SAMPLE_RATE (10000)
Dave Jonesc29f1402005-05-31 19:03:50 -070028#define MIN_FREQUENCY_UP_THRESHOLD (11)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#define MAX_FREQUENCY_UP_THRESHOLD (100)
30
Jacob Shinfb308092013-04-02 09:56:56 -050031static struct od_ops od_ops;
32
Jacob Shinc2837552013-06-25 22:42:37 +020033static unsigned int default_powersave_bias;
34
Viresh Kumar4471a342012-10-26 00:47:42 +020035/*
36 * Not all CPUs want IO time to be accounted as busy; this depends on how
37 * efficient idling at a higher frequency/voltage is.
38 * Pavel Machek says this is not so for various generations of AMD and old
39 * Intel systems.
Stratos Karafotis06eb09d2013-02-08 17:24:18 +000040 * Mike Chan (android.com) claims this is also not true for ARM.
Viresh Kumar4471a342012-10-26 00:47:42 +020041 * Because of this, whitelist specific known (series) of CPUs by default, and
42 * leave all others up to the user.
43 */
44static int should_io_be_busy(void)
45{
46#if defined(CONFIG_X86)
47 /*
Stratos Karafotis06eb09d2013-02-08 17:24:18 +000048 * For Intel, Core 2 (model 15) and later have an efficient idle.
Viresh Kumar4471a342012-10-26 00:47:42 +020049 */
50 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
51 boot_cpu_data.x86 == 6 &&
52 boot_cpu_data.x86_model >= 15)
53 return 1;
54#endif
55 return 0;
Arjan van de Ven6b8fcd92010-05-09 08:26:06 -070056}
57
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040058/*
59 * Find right freq to be set now with powersave_bias on.
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010060 * Returns the freq_hi to be used right now and will set freq_hi_delay_us,
61 * freq_lo, and freq_lo_delay_us in percpu area for averaging freqs.
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040062 */
Jacob Shinfb308092013-04-02 09:56:56 -050063static unsigned int generic_powersave_bias_target(struct cpufreq_policy *policy,
Viresh Kumar4471a342012-10-26 00:47:42 +020064 unsigned int freq_next, unsigned int relation)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040065{
66 unsigned int freq_req, freq_reduc, freq_avg;
67 unsigned int freq_hi, freq_lo;
68 unsigned int index = 0;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010069 unsigned int delay_hi_us;
Rafael J. Wysockibc505472016-02-07 16:24:26 +010070 struct policy_dbs_info *policy_dbs = policy->governor_data;
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +010071 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy_dbs);
Rafael J. Wysockibc505472016-02-07 16:24:26 +010072 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000073 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040074
75 if (!dbs_info->freq_table) {
76 dbs_info->freq_lo = 0;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010077 dbs_info->freq_lo_delay_us = 0;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040078 return freq_next;
79 }
80
81 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_next,
82 relation, &index);
83 freq_req = dbs_info->freq_table[index].frequency;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000084 freq_reduc = freq_req * od_tuners->powersave_bias / 1000;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040085 freq_avg = freq_req - freq_reduc;
86
87 /* Find freq bounds for freq_avg in freq_table */
88 index = 0;
89 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
90 CPUFREQ_RELATION_H, &index);
91 freq_lo = dbs_info->freq_table[index].frequency;
92 index = 0;
93 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
94 CPUFREQ_RELATION_L, &index);
95 freq_hi = dbs_info->freq_table[index].frequency;
96
97 /* Find out how long we have to be in hi and lo freqs */
98 if (freq_hi == freq_lo) {
99 dbs_info->freq_lo = 0;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100100 dbs_info->freq_lo_delay_us = 0;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400101 return freq_lo;
102 }
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100103 delay_hi_us = (freq_avg - freq_lo) * dbs_data->sampling_rate;
104 delay_hi_us += (freq_hi - freq_lo) / 2;
105 delay_hi_us /= freq_hi - freq_lo;
106 dbs_info->freq_hi_delay_us = delay_hi_us;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400107 dbs_info->freq_lo = freq_lo;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100108 dbs_info->freq_lo_delay_us = dbs_data->sampling_rate - delay_hi_us;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400109 return freq_hi;
110}
111
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100112static void ondemand_powersave_bias_init(struct cpufreq_policy *policy)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400113{
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100114 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy->governor_data);
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100115
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100116 dbs_info->freq_table = cpufreq_frequency_get_table(policy->cpu);
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100117 dbs_info->freq_lo = 0;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400118}
119
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530120static void dbs_freq_increase(struct cpufreq_policy *policy, unsigned int freq)
Viresh Kumar4471a342012-10-26 00:47:42 +0200121{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100122 struct policy_dbs_info *policy_dbs = policy->governor_data;
123 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000124 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
125
126 if (od_tuners->powersave_bias)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530127 freq = od_ops.powersave_bias_target(policy, freq,
Jacob Shinfb308092013-04-02 09:56:56 -0500128 CPUFREQ_RELATION_H);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530129 else if (policy->cur == policy->max)
Viresh Kumar4471a342012-10-26 00:47:42 +0200130 return;
131
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530132 __cpufreq_driver_target(policy, freq, od_tuners->powersave_bias ?
Viresh Kumar4471a342012-10-26 00:47:42 +0200133 CPUFREQ_RELATION_L : CPUFREQ_RELATION_H);
134}
135
136/*
137 * Every sampling_rate, we check, if current idle time is less than 20%
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +0300138 * (default), then we try to increase frequency. Else, we adjust the frequency
139 * proportional to load.
Viresh Kumar4471a342012-10-26 00:47:42 +0200140 */
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100141static void od_update(struct cpufreq_policy *policy)
Viresh Kumar4471a342012-10-26 00:47:42 +0200142{
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100143 struct policy_dbs_info *policy_dbs = policy->governor_data;
144 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy_dbs);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100145 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000146 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100147 unsigned int load = dbs_update(policy);
Viresh Kumar4471a342012-10-26 00:47:42 +0200148
149 dbs_info->freq_lo = 0;
150
151 /* Check for frequency increase */
Viresh Kumarff4b1782016-02-09 09:01:32 +0530152 if (load > dbs_data->up_threshold) {
Viresh Kumar4471a342012-10-26 00:47:42 +0200153 /* If switching to max speed, apply sampling_down_factor */
154 if (policy->cur < policy->max)
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100155 policy_dbs->rate_mult = dbs_data->sampling_down_factor;
Viresh Kumar4471a342012-10-26 00:47:42 +0200156 dbs_freq_increase(policy, policy->max);
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +0300157 } else {
158 /* Calculate the next frequency proportional to load */
Stratos Karafotis6393d6a2014-06-30 19:59:34 +0300159 unsigned int freq_next, min_f, max_f;
160
161 min_f = policy->cpuinfo.min_freq;
162 max_f = policy->cpuinfo.max_freq;
163 freq_next = min_f + load * (max_f - min_f) / 100;
Viresh Kumar4471a342012-10-26 00:47:42 +0200164
165 /* No longer fully busy, reset rate_mult */
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100166 policy_dbs->rate_mult = 1;
Viresh Kumar4471a342012-10-26 00:47:42 +0200167
Rafael J. Wysockia7f35cf2016-02-16 21:02:24 +0100168 if (od_tuners->powersave_bias)
169 freq_next = od_ops.powersave_bias_target(policy,
170 freq_next,
171 CPUFREQ_RELATION_L);
Jacob Shinfb308092013-04-02 09:56:56 -0500172
Stratos Karafotis6393d6a2014-06-30 19:59:34 +0300173 __cpufreq_driver_target(policy, freq_next, CPUFREQ_RELATION_C);
Viresh Kumar4471a342012-10-26 00:47:42 +0200174 }
175}
176
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100177static unsigned int od_dbs_timer(struct cpufreq_policy *policy)
Fabio Baltierida53d612012-12-27 14:55:40 +0000178{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100179 struct policy_dbs_info *policy_dbs = policy->governor_data;
180 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100181 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy_dbs);
Rafael J. Wysocki6e96c5b2016-02-15 02:21:35 +0100182 int sample_type = dbs_info->sample_type;
Fabio Baltierida53d612012-12-27 14:55:40 +0000183
Viresh Kumar44472662013-01-31 17:28:02 +0000184 /* Common NORMAL_SAMPLE setup */
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530185 dbs_info->sample_type = OD_NORMAL_SAMPLE;
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100186 /*
187 * OD_SUB_SAMPLE doesn't make sense if sample_delay_ns is 0, so ignore
188 * it then.
189 */
190 if (sample_type == OD_SUB_SAMPLE && policy_dbs->sample_delay_ns > 0) {
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530191 __cpufreq_driver_target(policy, dbs_info->freq_lo,
Viresh Kumar42994af2015-06-19 17:18:05 +0530192 CPUFREQ_RELATION_H);
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100193 return dbs_info->freq_lo_delay_us;
Fabio Baltierida53d612012-12-27 14:55:40 +0000194 }
Viresh Kumar44472662013-01-31 17:28:02 +0000195
Rafael J. Wysocki6e96c5b2016-02-15 02:21:35 +0100196 od_update(policy);
197
198 if (dbs_info->freq_lo) {
199 /* Setup timer for SUB_SAMPLE */
200 dbs_info->sample_type = OD_SUB_SAMPLE;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100201 return dbs_info->freq_hi_delay_us;
Rafael J. Wysocki6e96c5b2016-02-15 02:21:35 +0100202 }
203
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100204 return dbs_data->sampling_rate * policy_dbs->rate_mult;
Fabio Baltierida53d612012-12-27 14:55:40 +0000205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/************************** sysfs interface ************************/
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100208static struct dbs_governor od_dbs_gov;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100210static ssize_t store_io_is_busy(struct gov_attr_set *attr_set, const char *buf,
211 size_t count)
Arjan van de Ven19379b12010-05-09 08:26:51 -0700212{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100213 struct dbs_data *dbs_data = to_dbs_data(attr_set);
Arjan van de Ven19379b12010-05-09 08:26:51 -0700214 unsigned int input;
215 int ret;
216
217 ret = sscanf(buf, "%u", &input);
218 if (ret != 1)
219 return -EINVAL;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100220 dbs_data->io_is_busy = !!input;
Stratos Karafotis9366d842013-02-28 16:57:32 +0000221
222 /* we need to re-evaluate prev_cpu_idle */
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100223 gov_update_cpu_data(dbs_data);
Rafael J. Wysockia33cce12016-02-18 02:26:55 +0100224
Arjan van de Ven19379b12010-05-09 08:26:51 -0700225 return count;
226}
227
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100228static ssize_t store_up_threshold(struct gov_attr_set *attr_set,
229 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100231 struct dbs_data *dbs_data = to_dbs_data(attr_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 unsigned int input;
233 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700234 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Dave Jones32ee8c32006-02-28 00:43:23 -0500236 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
Dave Jonesc29f1402005-05-31 19:03:50 -0700237 input < MIN_FREQUENCY_UP_THRESHOLD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return -EINVAL;
239 }
Stratos Karafotis4bd4e422013-02-06 13:34:00 +0100240
Viresh Kumarff4b1782016-02-09 09:01:32 +0530241 dbs_data->up_threshold = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return count;
243}
244
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100245static ssize_t store_sampling_down_factor(struct gov_attr_set *attr_set,
246 const char *buf, size_t count)
David C Niemi3f78a9f2010-10-06 16:54:24 -0400247{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100248 struct dbs_data *dbs_data = to_dbs_data(attr_set);
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100249 struct policy_dbs_info *policy_dbs;
250 unsigned int input;
David C Niemi3f78a9f2010-10-06 16:54:24 -0400251 int ret;
252 ret = sscanf(buf, "%u", &input);
253
254 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
255 return -EINVAL;
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100256
Viresh Kumarff4b1782016-02-09 09:01:32 +0530257 dbs_data->sampling_down_factor = input;
David C Niemi3f78a9f2010-10-06 16:54:24 -0400258
259 /* Reset down sampling multiplier in case it was active */
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100260 list_for_each_entry(policy_dbs, &attr_set->policy_list, list) {
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100261 /*
262 * Doing this without locking might lead to using different
263 * rate_mult values in od_update() and od_dbs_timer().
264 */
265 mutex_lock(&policy_dbs->timer_mutex);
266 policy_dbs->rate_mult = 1;
267 mutex_unlock(&policy_dbs->timer_mutex);
David C Niemi3f78a9f2010-10-06 16:54:24 -0400268 }
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100269
David C Niemi3f78a9f2010-10-06 16:54:24 -0400270 return count;
271}
272
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100273static ssize_t store_ignore_nice_load(struct gov_attr_set *attr_set,
274 const char *buf, size_t count)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700275{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100276 struct dbs_data *dbs_data = to_dbs_data(attr_set);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700277 unsigned int input;
278 int ret;
279
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700280 ret = sscanf(buf, "%u", &input);
Dave Jones2b03f892009-01-18 01:43:44 -0500281 if (ret != 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700282 return -EINVAL;
283
Dave Jones2b03f892009-01-18 01:43:44 -0500284 if (input > 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700285 input = 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500286
Viresh Kumarff4b1782016-02-09 09:01:32 +0530287 if (input == dbs_data->ignore_nice_load) { /* nothing to do */
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700288 return count;
289 }
Viresh Kumarff4b1782016-02-09 09:01:32 +0530290 dbs_data->ignore_nice_load = input;
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700291
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700292 /* we need to re-evaluate prev_cpu_idle */
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100293 gov_update_cpu_data(dbs_data);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500294
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700295 return count;
296}
297
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100298static ssize_t store_powersave_bias(struct gov_attr_set *attr_set,
299 const char *buf, size_t count)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400300{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100301 struct dbs_data *dbs_data = to_dbs_data(attr_set);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000302 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100303 struct policy_dbs_info *policy_dbs;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400304 unsigned int input;
305 int ret;
306 ret = sscanf(buf, "%u", &input);
307
308 if (ret != 1)
309 return -EINVAL;
310
311 if (input > 1000)
312 input = 1000;
313
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000314 od_tuners->powersave_bias = input;
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100315
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100316 list_for_each_entry(policy_dbs, &attr_set->policy_list, list)
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100317 ondemand_powersave_bias_init(policy_dbs->policy);
318
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400319 return count;
320}
321
Viresh Kumarc4435632016-02-09 09:01:33 +0530322gov_show_one_common(sampling_rate);
323gov_show_one_common(up_threshold);
324gov_show_one_common(sampling_down_factor);
325gov_show_one_common(ignore_nice_load);
326gov_show_one_common(min_sampling_rate);
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100327gov_show_one_common(io_is_busy);
Viresh Kumarc4435632016-02-09 09:01:33 +0530328gov_show_one(od, powersave_bias);
Viresh Kumar4471a342012-10-26 00:47:42 +0200329
Viresh Kumarc4435632016-02-09 09:01:33 +0530330gov_attr_rw(sampling_rate);
331gov_attr_rw(io_is_busy);
332gov_attr_rw(up_threshold);
333gov_attr_rw(sampling_down_factor);
334gov_attr_rw(ignore_nice_load);
335gov_attr_rw(powersave_bias);
336gov_attr_ro(min_sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Viresh Kumarc4435632016-02-09 09:01:33 +0530338static struct attribute *od_attributes[] = {
339 &min_sampling_rate.attr,
340 &sampling_rate.attr,
341 &up_threshold.attr,
342 &sampling_down_factor.attr,
343 &ignore_nice_load.attr,
344 &powersave_bias.attr,
345 &io_is_busy.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 NULL
347};
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349/************************** sysfs end ************************/
350
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100351static struct policy_dbs_info *od_alloc(void)
352{
353 struct od_policy_dbs_info *dbs_info;
354
355 dbs_info = kzalloc(sizeof(*dbs_info), GFP_KERNEL);
356 return dbs_info ? &dbs_info->policy_dbs : NULL;
357}
358
359static void od_free(struct policy_dbs_info *policy_dbs)
360{
361 kfree(to_dbs_info(policy_dbs));
362}
363
Rafael J. Wysocki9a15fb22016-05-18 22:59:49 +0200364static int od_init(struct dbs_data *dbs_data)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000365{
366 struct od_dbs_tuners *tuners;
367 u64 idle_time;
368 int cpu;
369
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530370 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL);
Viresh Kumara69d6b22016-05-18 17:55:26 +0530371 if (!tuners)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000372 return -ENOMEM;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000373
374 cpu = get_cpu();
375 idle_time = get_cpu_idle_time_us(cpu, NULL);
376 put_cpu();
377 if (idle_time != -1ULL) {
378 /* Idle micro accounting is supported. Use finer thresholds */
Viresh Kumarff4b1782016-02-09 09:01:32 +0530379 dbs_data->up_threshold = MICRO_FREQUENCY_UP_THRESHOLD;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000380 /*
381 * In nohz/micro accounting case we set the minimum frequency
382 * not depending on HZ, but fixed (very low). The deferred
383 * timer might skip some samples if idle/sleeping as needed.
384 */
385 dbs_data->min_sampling_rate = MICRO_FREQUENCY_MIN_SAMPLE_RATE;
386 } else {
Viresh Kumarff4b1782016-02-09 09:01:32 +0530387 dbs_data->up_threshold = DEF_FREQUENCY_UP_THRESHOLD;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000388
389 /* For correct statistics, we need 10 ticks for each measure */
390 dbs_data->min_sampling_rate = MIN_SAMPLING_RATE_RATIO *
391 jiffies_to_usecs(10);
392 }
393
Viresh Kumarff4b1782016-02-09 09:01:32 +0530394 dbs_data->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR;
395 dbs_data->ignore_nice_load = 0;
Jacob Shinc2837552013-06-25 22:42:37 +0200396 tuners->powersave_bias = default_powersave_bias;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100397 dbs_data->io_is_busy = should_io_be_busy();
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000398
399 dbs_data->tuners = tuners;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000400 return 0;
401}
402
Rafael J. Wysocki9a15fb22016-05-18 22:59:49 +0200403static void od_exit(struct dbs_data *dbs_data)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000404{
405 kfree(dbs_data->tuners);
406}
407
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100408static void od_start(struct cpufreq_policy *policy)
409{
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100410 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy->governor_data);
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100411
412 dbs_info->sample_type = OD_NORMAL_SAMPLE;
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100413 ondemand_powersave_bias_init(policy);
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100414}
415
Viresh Kumar4471a342012-10-26 00:47:42 +0200416static struct od_ops od_ops = {
Jacob Shinfb308092013-04-02 09:56:56 -0500417 .powersave_bias_target = generic_powersave_bias_target,
Viresh Kumar4471a342012-10-26 00:47:42 +0200418};
419
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100420static struct dbs_governor od_dbs_gov = {
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200421 .gov = CPUFREQ_DBS_GOVERNOR_INITIALIZER("ondemand"),
Viresh Kumarc4435632016-02-09 09:01:33 +0530422 .kobj_type = { .default_attrs = od_attributes },
Viresh Kumar4471a342012-10-26 00:47:42 +0200423 .gov_dbs_timer = od_dbs_timer,
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100424 .alloc = od_alloc,
425 .free = od_free,
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000426 .init = od_init,
427 .exit = od_exit,
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100428 .start = od_start,
Viresh Kumar4471a342012-10-26 00:47:42 +0200429};
430
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100431#define CPU_FREQ_GOV_ONDEMAND (&od_dbs_gov.gov)
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100432
Jacob Shinfb308092013-04-02 09:56:56 -0500433static void od_set_powersave_bias(unsigned int powersave_bias)
434{
Jacob Shinfb308092013-04-02 09:56:56 -0500435 unsigned int cpu;
436 cpumask_t done;
437
Jacob Shinc2837552013-06-25 22:42:37 +0200438 default_powersave_bias = powersave_bias;
Jacob Shinfb308092013-04-02 09:56:56 -0500439 cpumask_clear(&done);
440
441 get_online_cpus();
442 for_each_online_cpu(cpu) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100443 struct cpufreq_policy *policy;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100444 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100445 struct dbs_data *dbs_data;
446 struct od_dbs_tuners *od_tuners;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530447
Jacob Shinfb308092013-04-02 09:56:56 -0500448 if (cpumask_test_cpu(cpu, &done))
449 continue;
450
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100451 policy = cpufreq_cpu_get_raw(cpu);
452 if (!policy || policy->governor != CPU_FREQ_GOV_ONDEMAND)
453 continue;
454
455 policy_dbs = policy->governor_data;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100456 if (!policy_dbs)
Jacob Shinc2837552013-06-25 22:42:37 +0200457 continue;
Jacob Shinfb308092013-04-02 09:56:56 -0500458
459 cpumask_or(&done, &done, policy->cpus);
Jacob Shinc2837552013-06-25 22:42:37 +0200460
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100461 dbs_data = policy_dbs->dbs_data;
Jacob Shinc2837552013-06-25 22:42:37 +0200462 od_tuners = dbs_data->tuners;
463 od_tuners->powersave_bias = default_powersave_bias;
Jacob Shinfb308092013-04-02 09:56:56 -0500464 }
465 put_online_cpus();
466}
467
468void od_register_powersave_bias_handler(unsigned int (*f)
469 (struct cpufreq_policy *, unsigned int, unsigned int),
470 unsigned int powersave_bias)
471{
472 od_ops.powersave_bias_target = f;
473 od_set_powersave_bias(powersave_bias);
474}
475EXPORT_SYMBOL_GPL(od_register_powersave_bias_handler);
476
477void od_unregister_powersave_bias_handler(void)
478{
479 od_ops.powersave_bias_target = generic_powersave_bias_target;
480 od_set_powersave_bias(0);
481}
482EXPORT_SYMBOL_GPL(od_unregister_powersave_bias_handler);
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484static int __init cpufreq_gov_dbs_init(void)
485{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100486 return cpufreq_register_governor(CPU_FREQ_GOV_ONDEMAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489static void __exit cpufreq_gov_dbs_exit(void)
490{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100491 cpufreq_unregister_governor(CPU_FREQ_GOV_ONDEMAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700494MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
495MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
496MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
Dave Jones2b03f892009-01-18 01:43:44 -0500497 "Low Latency Frequency Transition capable processors");
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700498MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Johannes Weiner69157192008-01-17 15:21:08 -0800500#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100501struct cpufreq_governor *cpufreq_default_governor(void)
502{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100503 return CPU_FREQ_GOV_ONDEMAND;
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100504}
505
Johannes Weiner69157192008-01-17 15:21:08 -0800506fs_initcall(cpufreq_gov_dbs_init);
507#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800509#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510module_exit(cpufreq_gov_dbs_exit);