blob: acd80272ded67b46ad651cb0eceb92bdf71e26d7 [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
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000210static ssize_t store_io_is_busy(struct dbs_data *dbs_data, const char *buf,
211 size_t count)
Arjan van de Ven19379b12010-05-09 08:26:51 -0700212{
213 unsigned int input;
214 int ret;
215
216 ret = sscanf(buf, "%u", &input);
217 if (ret != 1)
218 return -EINVAL;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100219 dbs_data->io_is_busy = !!input;
Stratos Karafotis9366d842013-02-28 16:57:32 +0000220
221 /* we need to re-evaluate prev_cpu_idle */
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100222 gov_update_cpu_data(dbs_data);
Rafael J. Wysockia33cce12016-02-18 02:26:55 +0100223
Arjan van de Ven19379b12010-05-09 08:26:51 -0700224 return count;
225}
226
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000227static ssize_t store_up_threshold(struct dbs_data *dbs_data, const char *buf,
228 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 unsigned int input;
231 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700232 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Dave Jones32ee8c32006-02-28 00:43:23 -0500234 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
Dave Jonesc29f1402005-05-31 19:03:50 -0700235 input < MIN_FREQUENCY_UP_THRESHOLD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return -EINVAL;
237 }
Stratos Karafotis4bd4e422013-02-06 13:34:00 +0100238
Viresh Kumarff4b1782016-02-09 09:01:32 +0530239 dbs_data->up_threshold = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return count;
241}
242
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000243static ssize_t store_sampling_down_factor(struct dbs_data *dbs_data,
244 const char *buf, size_t count)
David C Niemi3f78a9f2010-10-06 16:54:24 -0400245{
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100246 struct policy_dbs_info *policy_dbs;
247 unsigned int input;
David C Niemi3f78a9f2010-10-06 16:54:24 -0400248 int ret;
249 ret = sscanf(buf, "%u", &input);
250
251 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
252 return -EINVAL;
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100253
Viresh Kumarff4b1782016-02-09 09:01:32 +0530254 dbs_data->sampling_down_factor = input;
David C Niemi3f78a9f2010-10-06 16:54:24 -0400255
256 /* Reset down sampling multiplier in case it was active */
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100257 list_for_each_entry(policy_dbs, &dbs_data->policy_dbs_list, list) {
258 /*
259 * Doing this without locking might lead to using different
260 * rate_mult values in od_update() and od_dbs_timer().
261 */
262 mutex_lock(&policy_dbs->timer_mutex);
263 policy_dbs->rate_mult = 1;
264 mutex_unlock(&policy_dbs->timer_mutex);
David C Niemi3f78a9f2010-10-06 16:54:24 -0400265 }
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100266
David C Niemi3f78a9f2010-10-06 16:54:24 -0400267 return count;
268}
269
Viresh Kumar6c4640c2013-08-05 12:28:02 +0530270static ssize_t store_ignore_nice_load(struct dbs_data *dbs_data,
271 const char *buf, size_t count)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700272{
273 unsigned int input;
274 int ret;
275
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700276 ret = sscanf(buf, "%u", &input);
Dave Jones2b03f892009-01-18 01:43:44 -0500277 if (ret != 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700278 return -EINVAL;
279
Dave Jones2b03f892009-01-18 01:43:44 -0500280 if (input > 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700281 input = 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500282
Viresh Kumarff4b1782016-02-09 09:01:32 +0530283 if (input == dbs_data->ignore_nice_load) { /* nothing to do */
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700284 return count;
285 }
Viresh Kumarff4b1782016-02-09 09:01:32 +0530286 dbs_data->ignore_nice_load = input;
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700287
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700288 /* we need to re-evaluate prev_cpu_idle */
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100289 gov_update_cpu_data(dbs_data);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500290
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700291 return count;
292}
293
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000294static ssize_t store_powersave_bias(struct dbs_data *dbs_data, const char *buf,
295 size_t count)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400296{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000297 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100298 struct policy_dbs_info *policy_dbs;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400299 unsigned int input;
300 int ret;
301 ret = sscanf(buf, "%u", &input);
302
303 if (ret != 1)
304 return -EINVAL;
305
306 if (input > 1000)
307 input = 1000;
308
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000309 od_tuners->powersave_bias = input;
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100310
311 list_for_each_entry(policy_dbs, &dbs_data->policy_dbs_list, list)
312 ondemand_powersave_bias_init(policy_dbs->policy);
313
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400314 return count;
315}
316
Viresh Kumarc4435632016-02-09 09:01:33 +0530317gov_show_one_common(sampling_rate);
318gov_show_one_common(up_threshold);
319gov_show_one_common(sampling_down_factor);
320gov_show_one_common(ignore_nice_load);
321gov_show_one_common(min_sampling_rate);
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100322gov_show_one_common(io_is_busy);
Viresh Kumarc4435632016-02-09 09:01:33 +0530323gov_show_one(od, powersave_bias);
Viresh Kumar4471a342012-10-26 00:47:42 +0200324
Viresh Kumarc4435632016-02-09 09:01:33 +0530325gov_attr_rw(sampling_rate);
326gov_attr_rw(io_is_busy);
327gov_attr_rw(up_threshold);
328gov_attr_rw(sampling_down_factor);
329gov_attr_rw(ignore_nice_load);
330gov_attr_rw(powersave_bias);
331gov_attr_ro(min_sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Viresh Kumarc4435632016-02-09 09:01:33 +0530333static struct attribute *od_attributes[] = {
334 &min_sampling_rate.attr,
335 &sampling_rate.attr,
336 &up_threshold.attr,
337 &sampling_down_factor.attr,
338 &ignore_nice_load.attr,
339 &powersave_bias.attr,
340 &io_is_busy.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 NULL
342};
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/************************** sysfs end ************************/
345
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100346static struct policy_dbs_info *od_alloc(void)
347{
348 struct od_policy_dbs_info *dbs_info;
349
350 dbs_info = kzalloc(sizeof(*dbs_info), GFP_KERNEL);
351 return dbs_info ? &dbs_info->policy_dbs : NULL;
352}
353
354static void od_free(struct policy_dbs_info *policy_dbs)
355{
356 kfree(to_dbs_info(policy_dbs));
357}
358
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530359static int od_init(struct dbs_data *dbs_data, bool notify)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000360{
361 struct od_dbs_tuners *tuners;
362 u64 idle_time;
363 int cpu;
364
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530365 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000366 if (!tuners) {
367 pr_err("%s: kzalloc failed\n", __func__);
368 return -ENOMEM;
369 }
370
371 cpu = get_cpu();
372 idle_time = get_cpu_idle_time_us(cpu, NULL);
373 put_cpu();
374 if (idle_time != -1ULL) {
375 /* Idle micro accounting is supported. Use finer thresholds */
Viresh Kumarff4b1782016-02-09 09:01:32 +0530376 dbs_data->up_threshold = MICRO_FREQUENCY_UP_THRESHOLD;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000377 /*
378 * In nohz/micro accounting case we set the minimum frequency
379 * not depending on HZ, but fixed (very low). The deferred
380 * timer might skip some samples if idle/sleeping as needed.
381 */
382 dbs_data->min_sampling_rate = MICRO_FREQUENCY_MIN_SAMPLE_RATE;
383 } else {
Viresh Kumarff4b1782016-02-09 09:01:32 +0530384 dbs_data->up_threshold = DEF_FREQUENCY_UP_THRESHOLD;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000385
386 /* For correct statistics, we need 10 ticks for each measure */
387 dbs_data->min_sampling_rate = MIN_SAMPLING_RATE_RATIO *
388 jiffies_to_usecs(10);
389 }
390
Viresh Kumarff4b1782016-02-09 09:01:32 +0530391 dbs_data->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR;
392 dbs_data->ignore_nice_load = 0;
Jacob Shinc2837552013-06-25 22:42:37 +0200393 tuners->powersave_bias = default_powersave_bias;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100394 dbs_data->io_is_busy = should_io_be_busy();
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000395
396 dbs_data->tuners = tuners;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000397 return 0;
398}
399
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530400static void od_exit(struct dbs_data *dbs_data, bool notify)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000401{
402 kfree(dbs_data->tuners);
403}
404
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100405static void od_start(struct cpufreq_policy *policy)
406{
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100407 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy->governor_data);
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100408
409 dbs_info->sample_type = OD_NORMAL_SAMPLE;
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100410 ondemand_powersave_bias_init(policy);
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100411}
412
Viresh Kumar4471a342012-10-26 00:47:42 +0200413static struct od_ops od_ops = {
Jacob Shinfb308092013-04-02 09:56:56 -0500414 .powersave_bias_target = generic_powersave_bias_target,
Viresh Kumar4471a342012-10-26 00:47:42 +0200415};
416
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100417static struct dbs_governor od_dbs_gov = {
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100418 .gov = {
419 .name = "ondemand",
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100420 .governor = cpufreq_governor_dbs,
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100421 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
422 .owner = THIS_MODULE,
423 },
Viresh Kumarc4435632016-02-09 09:01:33 +0530424 .kobj_type = { .default_attrs = od_attributes },
Viresh Kumar4471a342012-10-26 00:47:42 +0200425 .gov_dbs_timer = od_dbs_timer,
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100426 .alloc = od_alloc,
427 .free = od_free,
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000428 .init = od_init,
429 .exit = od_exit,
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100430 .start = od_start,
Viresh Kumar4471a342012-10-26 00:47:42 +0200431};
432
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100433#define CPU_FREQ_GOV_ONDEMAND (&od_dbs_gov.gov)
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100434
Jacob Shinfb308092013-04-02 09:56:56 -0500435static void od_set_powersave_bias(unsigned int powersave_bias)
436{
Jacob Shinfb308092013-04-02 09:56:56 -0500437 unsigned int cpu;
438 cpumask_t done;
439
Jacob Shinc2837552013-06-25 22:42:37 +0200440 default_powersave_bias = powersave_bias;
Jacob Shinfb308092013-04-02 09:56:56 -0500441 cpumask_clear(&done);
442
443 get_online_cpus();
444 for_each_online_cpu(cpu) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100445 struct cpufreq_policy *policy;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100446 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100447 struct dbs_data *dbs_data;
448 struct od_dbs_tuners *od_tuners;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530449
Jacob Shinfb308092013-04-02 09:56:56 -0500450 if (cpumask_test_cpu(cpu, &done))
451 continue;
452
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100453 policy = cpufreq_cpu_get_raw(cpu);
454 if (!policy || policy->governor != CPU_FREQ_GOV_ONDEMAND)
455 continue;
456
457 policy_dbs = policy->governor_data;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100458 if (!policy_dbs)
Jacob Shinc2837552013-06-25 22:42:37 +0200459 continue;
Jacob Shinfb308092013-04-02 09:56:56 -0500460
461 cpumask_or(&done, &done, policy->cpus);
Jacob Shinc2837552013-06-25 22:42:37 +0200462
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100463 dbs_data = policy_dbs->dbs_data;
Jacob Shinc2837552013-06-25 22:42:37 +0200464 od_tuners = dbs_data->tuners;
465 od_tuners->powersave_bias = default_powersave_bias;
Jacob Shinfb308092013-04-02 09:56:56 -0500466 }
467 put_online_cpus();
468}
469
470void od_register_powersave_bias_handler(unsigned int (*f)
471 (struct cpufreq_policy *, unsigned int, unsigned int),
472 unsigned int powersave_bias)
473{
474 od_ops.powersave_bias_target = f;
475 od_set_powersave_bias(powersave_bias);
476}
477EXPORT_SYMBOL_GPL(od_register_powersave_bias_handler);
478
479void od_unregister_powersave_bias_handler(void)
480{
481 od_ops.powersave_bias_target = generic_powersave_bias_target;
482 od_set_powersave_bias(0);
483}
484EXPORT_SYMBOL_GPL(od_unregister_powersave_bias_handler);
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486static int __init cpufreq_gov_dbs_init(void)
487{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100488 return cpufreq_register_governor(CPU_FREQ_GOV_ONDEMAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
491static void __exit cpufreq_gov_dbs_exit(void)
492{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100493 cpufreq_unregister_governor(CPU_FREQ_GOV_ONDEMAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700496MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
497MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
498MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
Dave Jones2b03f892009-01-18 01:43:44 -0500499 "Low Latency Frequency Transition capable processors");
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700500MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Johannes Weiner69157192008-01-17 15:21:08 -0800502#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100503struct cpufreq_governor *cpufreq_default_governor(void)
504{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100505 return CPU_FREQ_GOV_ONDEMAND;
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100506}
507
Johannes Weiner69157192008-01-17 15:21:08 -0800508fs_initcall(cpufreq_gov_dbs_init);
509#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800511#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512module_exit(cpufreq_gov_dbs_exit);