blob: 43d89f6af206c1ddcbf4b22f4b89ab71a7b0e1ff [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>
Viresh Kumar4471a342012-10-26 00:47:42 +020019#include "cpufreq_governor.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Stratos Karafotis06eb09d2013-02-08 17:24:18 +000021/* On-demand governor macros */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#define DEF_FREQUENCY_UP_THRESHOLD (80)
David C Niemi3f78a9f2010-10-06 16:54:24 -040023#define DEF_SAMPLING_DOWN_FACTOR (1)
24#define MAX_SAMPLING_DOWN_FACTOR (100000)
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -070025#define MICRO_FREQUENCY_UP_THRESHOLD (95)
Thomas Renningercef96152009-04-22 13:48:29 +020026#define MICRO_FREQUENCY_MIN_SAMPLE_RATE (10000)
Dave Jonesc29f1402005-05-31 19:03:50 -070027#define MIN_FREQUENCY_UP_THRESHOLD (11)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#define MAX_FREQUENCY_UP_THRESHOLD (100)
29
Viresh Kumar4471a342012-10-26 00:47:42 +020030static DEFINE_PER_CPU(struct od_cpu_dbs_info_s, od_cpu_dbs_info);
Thomas Renninger112124a2009-02-04 11:55:12 +010031
Rafael J. Wysockia33cce12016-02-18 02:26:55 +010032static struct dbs_governor od_dbs_gov;
Jacob Shinfb308092013-04-02 09:56:56 -050033static struct od_ops od_ops;
34
Jacob Shinc2837552013-06-25 22:42:37 +020035static unsigned int default_powersave_bias;
36
Viresh Kumar4471a342012-10-26 00:47:42 +020037/*
38 * Not all CPUs want IO time to be accounted as busy; this depends on how
39 * efficient idling at a higher frequency/voltage is.
40 * Pavel Machek says this is not so for various generations of AMD and old
41 * Intel systems.
Stratos Karafotis06eb09d2013-02-08 17:24:18 +000042 * Mike Chan (android.com) claims this is also not true for ARM.
Viresh Kumar4471a342012-10-26 00:47:42 +020043 * Because of this, whitelist specific known (series) of CPUs by default, and
44 * leave all others up to the user.
45 */
46static int should_io_be_busy(void)
47{
48#if defined(CONFIG_X86)
49 /*
Stratos Karafotis06eb09d2013-02-08 17:24:18 +000050 * For Intel, Core 2 (model 15) and later have an efficient idle.
Viresh Kumar4471a342012-10-26 00:47:42 +020051 */
52 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
53 boot_cpu_data.x86 == 6 &&
54 boot_cpu_data.x86_model >= 15)
55 return 1;
56#endif
57 return 0;
Arjan van de Ven6b8fcd92010-05-09 08:26:06 -070058}
59
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040060/*
61 * Find right freq to be set now with powersave_bias on.
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010062 * Returns the freq_hi to be used right now and will set freq_hi_delay_us,
63 * freq_lo, and freq_lo_delay_us in percpu area for averaging freqs.
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040064 */
Jacob Shinfb308092013-04-02 09:56:56 -050065static unsigned int generic_powersave_bias_target(struct cpufreq_policy *policy,
Viresh Kumar4471a342012-10-26 00:47:42 +020066 unsigned int freq_next, unsigned int relation)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040067{
68 unsigned int freq_req, freq_reduc, freq_avg;
69 unsigned int freq_hi, freq_lo;
70 unsigned int index = 0;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010071 unsigned int delay_hi_us;
Viresh Kumar4471a342012-10-26 00:47:42 +020072 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info,
Tejun Heo245b2e72009-06-24 15:13:48 +090073 policy->cpu);
Rafael J. Wysockibc505472016-02-07 16:24:26 +010074 struct policy_dbs_info *policy_dbs = policy->governor_data;
75 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000076 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040077
78 if (!dbs_info->freq_table) {
79 dbs_info->freq_lo = 0;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010080 dbs_info->freq_lo_delay_us = 0;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040081 return freq_next;
82 }
83
84 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_next,
85 relation, &index);
86 freq_req = dbs_info->freq_table[index].frequency;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000087 freq_reduc = freq_req * od_tuners->powersave_bias / 1000;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040088 freq_avg = freq_req - freq_reduc;
89
90 /* Find freq bounds for freq_avg in freq_table */
91 index = 0;
92 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
93 CPUFREQ_RELATION_H, &index);
94 freq_lo = dbs_info->freq_table[index].frequency;
95 index = 0;
96 cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg,
97 CPUFREQ_RELATION_L, &index);
98 freq_hi = dbs_info->freq_table[index].frequency;
99
100 /* Find out how long we have to be in hi and lo freqs */
101 if (freq_hi == freq_lo) {
102 dbs_info->freq_lo = 0;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100103 dbs_info->freq_lo_delay_us = 0;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400104 return freq_lo;
105 }
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100106 delay_hi_us = (freq_avg - freq_lo) * dbs_data->sampling_rate;
107 delay_hi_us += (freq_hi - freq_lo) / 2;
108 delay_hi_us /= freq_hi - freq_lo;
109 dbs_info->freq_hi_delay_us = delay_hi_us;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400110 dbs_info->freq_lo = freq_lo;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100111 dbs_info->freq_lo_delay_us = dbs_data->sampling_rate - delay_hi_us;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400112 return freq_hi;
113}
114
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100115static void ondemand_powersave_bias_init(struct cpufreq_policy *policy)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400116{
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100117 unsigned int cpu = policy->cpu;
118 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, cpu);
119
120 dbs_info->freq_table = cpufreq_frequency_get_table(cpu);
121 dbs_info->freq_lo = 0;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400122}
123
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530124static void dbs_freq_increase(struct cpufreq_policy *policy, unsigned int freq)
Viresh Kumar4471a342012-10-26 00:47:42 +0200125{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100126 struct policy_dbs_info *policy_dbs = policy->governor_data;
127 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000128 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
129
130 if (od_tuners->powersave_bias)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530131 freq = od_ops.powersave_bias_target(policy, freq,
Jacob Shinfb308092013-04-02 09:56:56 -0500132 CPUFREQ_RELATION_H);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530133 else if (policy->cur == policy->max)
Viresh Kumar4471a342012-10-26 00:47:42 +0200134 return;
135
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530136 __cpufreq_driver_target(policy, freq, od_tuners->powersave_bias ?
Viresh Kumar4471a342012-10-26 00:47:42 +0200137 CPUFREQ_RELATION_L : CPUFREQ_RELATION_H);
138}
139
140/*
141 * Every sampling_rate, we check, if current idle time is less than 20%
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +0300142 * (default), then we try to increase frequency. Else, we adjust the frequency
143 * proportional to load.
Viresh Kumar4471a342012-10-26 00:47:42 +0200144 */
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100145static void od_update(struct cpufreq_policy *policy)
Viresh Kumar4471a342012-10-26 00:47:42 +0200146{
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100147 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, policy->cpu);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100148 struct policy_dbs_info *policy_dbs = dbs_info->cdbs.policy_dbs;
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100149 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000150 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100151 unsigned int load = dbs_update(policy);
Viresh Kumar4471a342012-10-26 00:47:42 +0200152
153 dbs_info->freq_lo = 0;
154
155 /* Check for frequency increase */
Viresh Kumarff4b1782016-02-09 09:01:32 +0530156 if (load > dbs_data->up_threshold) {
Viresh Kumar4471a342012-10-26 00:47:42 +0200157 /* If switching to max speed, apply sampling_down_factor */
158 if (policy->cur < policy->max)
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100159 policy_dbs->rate_mult = dbs_data->sampling_down_factor;
Viresh Kumar4471a342012-10-26 00:47:42 +0200160 dbs_freq_increase(policy, policy->max);
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +0300161 } else {
162 /* Calculate the next frequency proportional to load */
Stratos Karafotis6393d6a2014-06-30 19:59:34 +0300163 unsigned int freq_next, min_f, max_f;
164
165 min_f = policy->cpuinfo.min_freq;
166 max_f = policy->cpuinfo.max_freq;
167 freq_next = min_f + load * (max_f - min_f) / 100;
Viresh Kumar4471a342012-10-26 00:47:42 +0200168
169 /* No longer fully busy, reset rate_mult */
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100170 policy_dbs->rate_mult = 1;
Viresh Kumar4471a342012-10-26 00:47:42 +0200171
Rafael J. Wysockia7f35cf2016-02-16 21:02:24 +0100172 if (od_tuners->powersave_bias)
173 freq_next = od_ops.powersave_bias_target(policy,
174 freq_next,
175 CPUFREQ_RELATION_L);
Jacob Shinfb308092013-04-02 09:56:56 -0500176
Stratos Karafotis6393d6a2014-06-30 19:59:34 +0300177 __cpufreq_driver_target(policy, freq_next, CPUFREQ_RELATION_C);
Viresh Kumar4471a342012-10-26 00:47:42 +0200178 }
179}
180
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100181static unsigned int od_dbs_timer(struct cpufreq_policy *policy)
Fabio Baltierida53d612012-12-27 14:55:40 +0000182{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100183 struct policy_dbs_info *policy_dbs = policy->governor_data;
184 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Rafael J. Wysockid10b5eb2016-02-06 13:50:24 +0100185 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, policy->cpu);
Rafael J. Wysocki6e96c5b2016-02-15 02:21:35 +0100186 int sample_type = dbs_info->sample_type;
Fabio Baltierida53d612012-12-27 14:55:40 +0000187
Viresh Kumar44472662013-01-31 17:28:02 +0000188 /* Common NORMAL_SAMPLE setup */
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530189 dbs_info->sample_type = OD_NORMAL_SAMPLE;
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100190 /*
191 * OD_SUB_SAMPLE doesn't make sense if sample_delay_ns is 0, so ignore
192 * it then.
193 */
194 if (sample_type == OD_SUB_SAMPLE && policy_dbs->sample_delay_ns > 0) {
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530195 __cpufreq_driver_target(policy, dbs_info->freq_lo,
Viresh Kumar42994af2015-06-19 17:18:05 +0530196 CPUFREQ_RELATION_H);
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100197 return dbs_info->freq_lo_delay_us;
Fabio Baltierida53d612012-12-27 14:55:40 +0000198 }
Viresh Kumar44472662013-01-31 17:28:02 +0000199
Rafael J. Wysocki6e96c5b2016-02-15 02:21:35 +0100200 od_update(policy);
201
202 if (dbs_info->freq_lo) {
203 /* Setup timer for SUB_SAMPLE */
204 dbs_info->sample_type = OD_SUB_SAMPLE;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100205 return dbs_info->freq_hi_delay_us;
Rafael J. Wysocki6e96c5b2016-02-15 02:21:35 +0100206 }
207
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100208 return dbs_data->sampling_rate * policy_dbs->rate_mult;
Fabio Baltierida53d612012-12-27 14:55:40 +0000209}
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/************************** sysfs interface ************************/
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100212static struct dbs_governor od_dbs_gov;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000214static ssize_t store_io_is_busy(struct dbs_data *dbs_data, const char *buf,
215 size_t count)
Arjan van de Ven19379b12010-05-09 08:26:51 -0700216{
217 unsigned int input;
218 int ret;
219
220 ret = sscanf(buf, "%u", &input);
221 if (ret != 1)
222 return -EINVAL;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100223 dbs_data->io_is_busy = !!input;
Stratos Karafotis9366d842013-02-28 16:57:32 +0000224
225 /* we need to re-evaluate prev_cpu_idle */
Rafael J. Wysockia33cce12016-02-18 02:26:55 +0100226 gov_update_cpu_data(&od_dbs_gov, dbs_data);
227
Arjan van de Ven19379b12010-05-09 08:26:51 -0700228 return count;
229}
230
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000231static ssize_t store_up_threshold(struct dbs_data *dbs_data, const char *buf,
232 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 unsigned int input;
235 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700236 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Dave Jones32ee8c32006-02-28 00:43:23 -0500238 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
Dave Jonesc29f1402005-05-31 19:03:50 -0700239 input < MIN_FREQUENCY_UP_THRESHOLD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return -EINVAL;
241 }
Stratos Karafotis4bd4e422013-02-06 13:34:00 +0100242
Viresh Kumarff4b1782016-02-09 09:01:32 +0530243 dbs_data->up_threshold = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return count;
245}
246
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000247static ssize_t store_sampling_down_factor(struct dbs_data *dbs_data,
248 const char *buf, size_t count)
David C Niemi3f78a9f2010-10-06 16:54:24 -0400249{
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100250 struct policy_dbs_info *policy_dbs;
251 unsigned int input;
David C Niemi3f78a9f2010-10-06 16:54:24 -0400252 int ret;
253 ret = sscanf(buf, "%u", &input);
254
255 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
256 return -EINVAL;
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100257
Viresh Kumarff4b1782016-02-09 09:01:32 +0530258 dbs_data->sampling_down_factor = input;
David C Niemi3f78a9f2010-10-06 16:54:24 -0400259
260 /* Reset down sampling multiplier in case it was active */
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100261 list_for_each_entry(policy_dbs, &dbs_data->policy_dbs_list, list) {
262 /*
263 * Doing this without locking might lead to using different
264 * rate_mult values in od_update() and od_dbs_timer().
265 */
266 mutex_lock(&policy_dbs->timer_mutex);
267 policy_dbs->rate_mult = 1;
268 mutex_unlock(&policy_dbs->timer_mutex);
David C Niemi3f78a9f2010-10-06 16:54:24 -0400269 }
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100270
David C Niemi3f78a9f2010-10-06 16:54:24 -0400271 return count;
272}
273
Viresh Kumar6c4640c2013-08-05 12:28:02 +0530274static ssize_t store_ignore_nice_load(struct dbs_data *dbs_data,
275 const char *buf, size_t count)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700276{
277 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. Wysockia33cce12016-02-18 02:26:55 +0100293 gov_update_cpu_data(&od_dbs_gov, dbs_data);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500294
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700295 return count;
296}
297
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000298static ssize_t store_powersave_bias(struct dbs_data *dbs_data, const char *buf,
299 size_t count)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400300{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000301 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100302 struct policy_dbs_info *policy_dbs;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400303 unsigned int input;
304 int ret;
305 ret = sscanf(buf, "%u", &input);
306
307 if (ret != 1)
308 return -EINVAL;
309
310 if (input > 1000)
311 input = 1000;
312
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000313 od_tuners->powersave_bias = input;
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100314
315 list_for_each_entry(policy_dbs, &dbs_data->policy_dbs_list, list)
316 ondemand_powersave_bias_init(policy_dbs->policy);
317
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400318 return count;
319}
320
Viresh Kumarc4435632016-02-09 09:01:33 +0530321gov_show_one_common(sampling_rate);
322gov_show_one_common(up_threshold);
323gov_show_one_common(sampling_down_factor);
324gov_show_one_common(ignore_nice_load);
325gov_show_one_common(min_sampling_rate);
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100326gov_show_one_common(io_is_busy);
Viresh Kumarc4435632016-02-09 09:01:33 +0530327gov_show_one(od, powersave_bias);
Viresh Kumar4471a342012-10-26 00:47:42 +0200328
Viresh Kumarc4435632016-02-09 09:01:33 +0530329gov_attr_rw(sampling_rate);
330gov_attr_rw(io_is_busy);
331gov_attr_rw(up_threshold);
332gov_attr_rw(sampling_down_factor);
333gov_attr_rw(ignore_nice_load);
334gov_attr_rw(powersave_bias);
335gov_attr_ro(min_sampling_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Viresh Kumarc4435632016-02-09 09:01:33 +0530337static struct attribute *od_attributes[] = {
338 &min_sampling_rate.attr,
339 &sampling_rate.attr,
340 &up_threshold.attr,
341 &sampling_down_factor.attr,
342 &ignore_nice_load.attr,
343 &powersave_bias.attr,
344 &io_is_busy.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 NULL
346};
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/************************** sysfs end ************************/
349
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530350static int od_init(struct dbs_data *dbs_data, bool notify)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000351{
352 struct od_dbs_tuners *tuners;
353 u64 idle_time;
354 int cpu;
355
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530356 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000357 if (!tuners) {
358 pr_err("%s: kzalloc failed\n", __func__);
359 return -ENOMEM;
360 }
361
362 cpu = get_cpu();
363 idle_time = get_cpu_idle_time_us(cpu, NULL);
364 put_cpu();
365 if (idle_time != -1ULL) {
366 /* Idle micro accounting is supported. Use finer thresholds */
Viresh Kumarff4b1782016-02-09 09:01:32 +0530367 dbs_data->up_threshold = MICRO_FREQUENCY_UP_THRESHOLD;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000368 /*
369 * In nohz/micro accounting case we set the minimum frequency
370 * not depending on HZ, but fixed (very low). The deferred
371 * timer might skip some samples if idle/sleeping as needed.
372 */
373 dbs_data->min_sampling_rate = MICRO_FREQUENCY_MIN_SAMPLE_RATE;
374 } else {
Viresh Kumarff4b1782016-02-09 09:01:32 +0530375 dbs_data->up_threshold = DEF_FREQUENCY_UP_THRESHOLD;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000376
377 /* For correct statistics, we need 10 ticks for each measure */
378 dbs_data->min_sampling_rate = MIN_SAMPLING_RATE_RATIO *
379 jiffies_to_usecs(10);
380 }
381
Viresh Kumarff4b1782016-02-09 09:01:32 +0530382 dbs_data->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR;
383 dbs_data->ignore_nice_load = 0;
Jacob Shinc2837552013-06-25 22:42:37 +0200384 tuners->powersave_bias = default_powersave_bias;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100385 dbs_data->io_is_busy = should_io_be_busy();
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000386
387 dbs_data->tuners = tuners;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000388 return 0;
389}
390
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530391static void od_exit(struct dbs_data *dbs_data, bool notify)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000392{
393 kfree(dbs_data->tuners);
394}
395
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100396static void od_start(struct cpufreq_policy *policy)
397{
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100398 struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, policy->cpu);
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100399
400 dbs_info->sample_type = OD_NORMAL_SAMPLE;
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100401 ondemand_powersave_bias_init(policy);
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100402}
403
Viresh Kumar4471a342012-10-26 00:47:42 +0200404define_get_cpu_dbs_routines(od_cpu_dbs_info);
Mike Chan00e299f2010-01-26 17:06:47 -0800405
Viresh Kumar4471a342012-10-26 00:47:42 +0200406static struct od_ops od_ops = {
Jacob Shinfb308092013-04-02 09:56:56 -0500407 .powersave_bias_target = generic_powersave_bias_target,
Viresh Kumar4471a342012-10-26 00:47:42 +0200408};
409
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100410static struct dbs_governor od_dbs_gov = {
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100411 .gov = {
412 .name = "ondemand",
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100413 .governor = cpufreq_governor_dbs,
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100414 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
415 .owner = THIS_MODULE,
416 },
Viresh Kumarc4435632016-02-09 09:01:33 +0530417 .kobj_type = { .default_attrs = od_attributes },
Viresh Kumar4471a342012-10-26 00:47:42 +0200418 .get_cpu_cdbs = get_cpu_cdbs,
Viresh Kumar4471a342012-10-26 00:47:42 +0200419 .gov_dbs_timer = od_dbs_timer,
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000420 .init = od_init,
421 .exit = od_exit,
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100422 .start = od_start,
Viresh Kumar4471a342012-10-26 00:47:42 +0200423};
424
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100425#define CPU_FREQ_GOV_ONDEMAND (&od_dbs_gov.gov)
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100426
Jacob Shinfb308092013-04-02 09:56:56 -0500427static void od_set_powersave_bias(unsigned int powersave_bias)
428{
429 struct cpufreq_policy *policy;
430 struct dbs_data *dbs_data;
431 struct od_dbs_tuners *od_tuners;
432 unsigned int cpu;
433 cpumask_t done;
434
Jacob Shinc2837552013-06-25 22:42:37 +0200435 default_powersave_bias = powersave_bias;
Jacob Shinfb308092013-04-02 09:56:56 -0500436 cpumask_clear(&done);
437
438 get_online_cpus();
439 for_each_online_cpu(cpu) {
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100440 struct policy_dbs_info *policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530441
Jacob Shinfb308092013-04-02 09:56:56 -0500442 if (cpumask_test_cpu(cpu, &done))
443 continue;
444
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100445 policy_dbs = per_cpu(od_cpu_dbs_info, cpu).cdbs.policy_dbs;
446 if (!policy_dbs)
Jacob Shinc2837552013-06-25 22:42:37 +0200447 continue;
Jacob Shinfb308092013-04-02 09:56:56 -0500448
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100449 policy = policy_dbs->policy;
Jacob Shinfb308092013-04-02 09:56:56 -0500450 cpumask_or(&done, &done, policy->cpus);
Jacob Shinc2837552013-06-25 22:42:37 +0200451
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100452 if (policy->governor != CPU_FREQ_GOV_ONDEMAND)
Jacob Shinc2837552013-06-25 22:42:37 +0200453 continue;
454
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100455 dbs_data = policy_dbs->dbs_data;
Jacob Shinc2837552013-06-25 22:42:37 +0200456 od_tuners = dbs_data->tuners;
457 od_tuners->powersave_bias = default_powersave_bias;
Jacob Shinfb308092013-04-02 09:56:56 -0500458 }
459 put_online_cpus();
460}
461
462void od_register_powersave_bias_handler(unsigned int (*f)
463 (struct cpufreq_policy *, unsigned int, unsigned int),
464 unsigned int powersave_bias)
465{
466 od_ops.powersave_bias_target = f;
467 od_set_powersave_bias(powersave_bias);
468}
469EXPORT_SYMBOL_GPL(od_register_powersave_bias_handler);
470
471void od_unregister_powersave_bias_handler(void)
472{
473 od_ops.powersave_bias_target = generic_powersave_bias_target;
474 od_set_powersave_bias(0);
475}
476EXPORT_SYMBOL_GPL(od_unregister_powersave_bias_handler);
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478static int __init cpufreq_gov_dbs_init(void)
479{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100480 return cpufreq_register_governor(CPU_FREQ_GOV_ONDEMAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
483static void __exit cpufreq_gov_dbs_exit(void)
484{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100485 cpufreq_unregister_governor(CPU_FREQ_GOV_ONDEMAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700488MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
489MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
490MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
Dave Jones2b03f892009-01-18 01:43:44 -0500491 "Low Latency Frequency Transition capable processors");
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700492MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Johannes Weiner69157192008-01-17 15:21:08 -0800494#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100495struct cpufreq_governor *cpufreq_default_governor(void)
496{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100497 return CPU_FREQ_GOV_ONDEMAND;
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100498}
499
Johannes Weiner69157192008-01-17 15:21:08 -0800500fs_initcall(cpufreq_gov_dbs_init);
501#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800503#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504module_exit(cpufreq_gov_dbs_exit);