blob: 6a41ea4729b8a62cce5e001e236e0091298a4a0d [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * drivers/cpufreq/cpufreq_ondemand.c
4 *
5 * Copyright (C) 2001 Russell King
6 * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
7 * Jun Nakajima <jun.nakajima@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Viresh Kumar4471a342012-10-26 00:47:42 +020010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Viresh Kumar5ff0a262013-08-06 22:53:03 +053012#include <linux/cpu.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020013#include <linux/percpu-defs.h>
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000014#include <linux/slab.h>
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -070015#include <linux/tick.h>
Ingo Molnar55687da2017-02-08 18:51:31 +010016#include <linux/sched/cpufreq.h>
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +010017
18#include "cpufreq_ondemand.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Stratos Karafotis06eb09d2013-02-08 17:24:18 +000020/* On-demand governor macros */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define DEF_FREQUENCY_UP_THRESHOLD (80)
David C Niemi3f78a9f2010-10-06 16:54:24 -040022#define DEF_SAMPLING_DOWN_FACTOR (1)
23#define MAX_SAMPLING_DOWN_FACTOR (100000)
venkatesh.pallipadi@intel.com80800912008-08-04 11:59:12 -070024#define MICRO_FREQUENCY_UP_THRESHOLD (95)
Thomas Renningercef96152009-04-22 13:48:29 +020025#define MICRO_FREQUENCY_MIN_SAMPLE_RATE (10000)
Chen Yu4dd63b42016-01-04 12:14:45 +080026#define MIN_FREQUENCY_UP_THRESHOLD (1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define MAX_FREQUENCY_UP_THRESHOLD (100)
28
Jacob Shinfb308092013-04-02 09:56:56 -050029static struct od_ops od_ops;
30
Jacob Shinc2837552013-06-25 22:42:37 +020031static unsigned int default_powersave_bias;
32
Viresh Kumar4471a342012-10-26 00:47:42 +020033/*
34 * Not all CPUs want IO time to be accounted as busy; this depends on how
35 * efficient idling at a higher frequency/voltage is.
36 * Pavel Machek says this is not so for various generations of AMD and old
37 * Intel systems.
Stratos Karafotis06eb09d2013-02-08 17:24:18 +000038 * Mike Chan (android.com) claims this is also not true for ARM.
Viresh Kumar4471a342012-10-26 00:47:42 +020039 * Because of this, whitelist specific known (series) of CPUs by default, and
40 * leave all others up to the user.
41 */
42static int should_io_be_busy(void)
43{
44#if defined(CONFIG_X86)
45 /*
Stratos Karafotis06eb09d2013-02-08 17:24:18 +000046 * For Intel, Core 2 (model 15) and later have an efficient idle.
Viresh Kumar4471a342012-10-26 00:47:42 +020047 */
48 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
49 boot_cpu_data.x86 == 6 &&
50 boot_cpu_data.x86_model >= 15)
51 return 1;
52#endif
53 return 0;
Arjan van de Ven6b8fcd92010-05-09 08:26:06 -070054}
55
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040056/*
57 * Find right freq to be set now with powersave_bias on.
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010058 * Returns the freq_hi to be used right now and will set freq_hi_delay_us,
59 * freq_lo, and freq_lo_delay_us in percpu area for averaging freqs.
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040060 */
Jacob Shinfb308092013-04-02 09:56:56 -050061static unsigned int generic_powersave_bias_target(struct cpufreq_policy *policy,
Viresh Kumar4471a342012-10-26 00:47:42 +020062 unsigned int freq_next, unsigned int relation)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040063{
64 unsigned int freq_req, freq_reduc, freq_avg;
65 unsigned int freq_hi, freq_lo;
Viresh Kumard218ed72016-06-03 10:58:51 +053066 unsigned int index;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010067 unsigned int delay_hi_us;
Rafael J. Wysockibc505472016-02-07 16:24:26 +010068 struct policy_dbs_info *policy_dbs = policy->governor_data;
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +010069 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy_dbs);
Rafael J. Wysockibc505472016-02-07 16:24:26 +010070 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000071 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Viresh Kumar34ac5d72016-06-03 10:58:48 +053072 struct cpufreq_frequency_table *freq_table = policy->freq_table;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040073
Viresh Kumar34ac5d72016-06-03 10:58:48 +053074 if (!freq_table) {
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040075 dbs_info->freq_lo = 0;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010076 dbs_info->freq_lo_delay_us = 0;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040077 return freq_next;
78 }
79
Viresh Kumard218ed72016-06-03 10:58:51 +053080 index = cpufreq_frequency_table_target(policy, freq_next, relation);
Viresh Kumar34ac5d72016-06-03 10:58:48 +053081 freq_req = freq_table[index].frequency;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000082 freq_reduc = freq_req * od_tuners->powersave_bias / 1000;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040083 freq_avg = freq_req - freq_reduc;
84
85 /* Find freq bounds for freq_avg in freq_table */
Vincent Donnefort1f39fa02021-09-08 15:05:28 +010086 index = cpufreq_table_find_index_h(policy, freq_avg,
87 relation & CPUFREQ_RELATION_E);
Viresh Kumar34ac5d72016-06-03 10:58:48 +053088 freq_lo = freq_table[index].frequency;
Vincent Donnefort1f39fa02021-09-08 15:05:28 +010089 index = cpufreq_table_find_index_l(policy, freq_avg,
90 relation & CPUFREQ_RELATION_E);
Viresh Kumar34ac5d72016-06-03 10:58:48 +053091 freq_hi = freq_table[index].frequency;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040092
93 /* Find out how long we have to be in hi and lo freqs */
94 if (freq_hi == freq_lo) {
95 dbs_info->freq_lo = 0;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010096 dbs_info->freq_lo_delay_us = 0;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +040097 return freq_lo;
98 }
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +010099 delay_hi_us = (freq_avg - freq_lo) * dbs_data->sampling_rate;
100 delay_hi_us += (freq_hi - freq_lo) / 2;
101 delay_hi_us /= freq_hi - freq_lo;
102 dbs_info->freq_hi_delay_us = delay_hi_us;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400103 dbs_info->freq_lo = freq_lo;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100104 dbs_info->freq_lo_delay_us = dbs_data->sampling_rate - delay_hi_us;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400105 return freq_hi;
106}
107
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100108static void ondemand_powersave_bias_init(struct cpufreq_policy *policy)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400109{
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100110 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy->governor_data);
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100111
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100112 dbs_info->freq_lo = 0;
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400113}
114
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530115static void dbs_freq_increase(struct cpufreq_policy *policy, unsigned int freq)
Viresh Kumar4471a342012-10-26 00:47:42 +0200116{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100117 struct policy_dbs_info *policy_dbs = policy->governor_data;
118 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000119 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
120
121 if (od_tuners->powersave_bias)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530122 freq = od_ops.powersave_bias_target(policy, freq,
Vincent Donnefortb894d202021-09-08 15:05:29 +0100123 CPUFREQ_RELATION_HE);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530124 else if (policy->cur == policy->max)
Viresh Kumar4471a342012-10-26 00:47:42 +0200125 return;
126
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530127 __cpufreq_driver_target(policy, freq, od_tuners->powersave_bias ?
Vincent Donnefortb894d202021-09-08 15:05:29 +0100128 CPUFREQ_RELATION_LE : CPUFREQ_RELATION_HE);
Viresh Kumar4471a342012-10-26 00:47:42 +0200129}
130
131/*
132 * Every sampling_rate, we check, if current idle time is less than 20%
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +0300133 * (default), then we try to increase frequency. Else, we adjust the frequency
134 * proportional to load.
Viresh Kumar4471a342012-10-26 00:47:42 +0200135 */
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100136static void od_update(struct cpufreq_policy *policy)
Viresh Kumar4471a342012-10-26 00:47:42 +0200137{
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100138 struct policy_dbs_info *policy_dbs = policy->governor_data;
139 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy_dbs);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100140 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000141 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100142 unsigned int load = dbs_update(policy);
Viresh Kumar4471a342012-10-26 00:47:42 +0200143
144 dbs_info->freq_lo = 0;
145
146 /* Check for frequency increase */
Viresh Kumarff4b1782016-02-09 09:01:32 +0530147 if (load > dbs_data->up_threshold) {
Viresh Kumar4471a342012-10-26 00:47:42 +0200148 /* If switching to max speed, apply sampling_down_factor */
149 if (policy->cur < policy->max)
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100150 policy_dbs->rate_mult = dbs_data->sampling_down_factor;
Viresh Kumar4471a342012-10-26 00:47:42 +0200151 dbs_freq_increase(policy, policy->max);
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +0300152 } else {
153 /* Calculate the next frequency proportional to load */
Stratos Karafotis6393d6a2014-06-30 19:59:34 +0300154 unsigned int freq_next, min_f, max_f;
155
156 min_f = policy->cpuinfo.min_freq;
157 max_f = policy->cpuinfo.max_freq;
158 freq_next = min_f + load * (max_f - min_f) / 100;
Viresh Kumar4471a342012-10-26 00:47:42 +0200159
160 /* No longer fully busy, reset rate_mult */
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100161 policy_dbs->rate_mult = 1;
Viresh Kumar4471a342012-10-26 00:47:42 +0200162
Rafael J. Wysockia7f35cf2016-02-16 21:02:24 +0100163 if (od_tuners->powersave_bias)
164 freq_next = od_ops.powersave_bias_target(policy,
165 freq_next,
Vincent Donnefortb894d202021-09-08 15:05:29 +0100166 CPUFREQ_RELATION_LE);
Jacob Shinfb308092013-04-02 09:56:56 -0500167
Vincent Donnefortb894d202021-09-08 15:05:29 +0100168 __cpufreq_driver_target(policy, freq_next, CPUFREQ_RELATION_CE);
Viresh Kumar4471a342012-10-26 00:47:42 +0200169 }
170}
171
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530172static unsigned int od_dbs_update(struct cpufreq_policy *policy)
Fabio Baltierida53d612012-12-27 14:55:40 +0000173{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100174 struct policy_dbs_info *policy_dbs = policy->governor_data;
175 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100176 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy_dbs);
Rafael J. Wysocki6e96c5b2016-02-15 02:21:35 +0100177 int sample_type = dbs_info->sample_type;
Fabio Baltierida53d612012-12-27 14:55:40 +0000178
Viresh Kumar44472662013-01-31 17:28:02 +0000179 /* Common NORMAL_SAMPLE setup */
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530180 dbs_info->sample_type = OD_NORMAL_SAMPLE;
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100181 /*
182 * OD_SUB_SAMPLE doesn't make sense if sample_delay_ns is 0, so ignore
183 * it then.
184 */
185 if (sample_type == OD_SUB_SAMPLE && policy_dbs->sample_delay_ns > 0) {
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530186 __cpufreq_driver_target(policy, dbs_info->freq_lo,
Vincent Donnefortb894d202021-09-08 15:05:29 +0100187 CPUFREQ_RELATION_HE);
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100188 return dbs_info->freq_lo_delay_us;
Fabio Baltierida53d612012-12-27 14:55:40 +0000189 }
Viresh Kumar44472662013-01-31 17:28:02 +0000190
Rafael J. Wysocki6e96c5b2016-02-15 02:21:35 +0100191 od_update(policy);
192
193 if (dbs_info->freq_lo) {
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530194 /* Setup SUB_SAMPLE */
Rafael J. Wysocki6e96c5b2016-02-15 02:21:35 +0100195 dbs_info->sample_type = OD_SUB_SAMPLE;
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100196 return dbs_info->freq_hi_delay_us;
Rafael J. Wysocki6e96c5b2016-02-15 02:21:35 +0100197 }
198
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100199 return dbs_data->sampling_rate * policy_dbs->rate_mult;
Fabio Baltierida53d612012-12-27 14:55:40 +0000200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/************************** sysfs interface ************************/
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100203static struct dbs_governor od_dbs_gov;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100205static ssize_t store_io_is_busy(struct gov_attr_set *attr_set, const char *buf,
206 size_t count)
Arjan van de Ven19379b12010-05-09 08:26:51 -0700207{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100208 struct dbs_data *dbs_data = to_dbs_data(attr_set);
Arjan van de Ven19379b12010-05-09 08:26:51 -0700209 unsigned int input;
210 int ret;
211
212 ret = sscanf(buf, "%u", &input);
213 if (ret != 1)
214 return -EINVAL;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100215 dbs_data->io_is_busy = !!input;
Stratos Karafotis9366d842013-02-28 16:57:32 +0000216
217 /* we need to re-evaluate prev_cpu_idle */
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100218 gov_update_cpu_data(dbs_data);
Rafael J. Wysockia33cce12016-02-18 02:26:55 +0100219
Arjan van de Ven19379b12010-05-09 08:26:51 -0700220 return count;
221}
222
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100223static ssize_t store_up_threshold(struct gov_attr_set *attr_set,
224 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100226 struct dbs_data *dbs_data = to_dbs_data(attr_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 unsigned int input;
228 int ret;
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700229 ret = sscanf(buf, "%u", &input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Dave Jones32ee8c32006-02-28 00:43:23 -0500231 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
Dave Jonesc29f1402005-05-31 19:03:50 -0700232 input < MIN_FREQUENCY_UP_THRESHOLD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return -EINVAL;
234 }
Stratos Karafotis4bd4e422013-02-06 13:34:00 +0100235
Viresh Kumarff4b1782016-02-09 09:01:32 +0530236 dbs_data->up_threshold = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return count;
238}
239
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100240static ssize_t store_sampling_down_factor(struct gov_attr_set *attr_set,
241 const char *buf, size_t count)
David C Niemi3f78a9f2010-10-06 16:54:24 -0400242{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100243 struct dbs_data *dbs_data = to_dbs_data(attr_set);
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100244 struct policy_dbs_info *policy_dbs;
245 unsigned int input;
David C Niemi3f78a9f2010-10-06 16:54:24 -0400246 int ret;
247 ret = sscanf(buf, "%u", &input);
248
249 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
250 return -EINVAL;
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100251
Viresh Kumarff4b1782016-02-09 09:01:32 +0530252 dbs_data->sampling_down_factor = input;
David C Niemi3f78a9f2010-10-06 16:54:24 -0400253
254 /* Reset down sampling multiplier in case it was active */
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100255 list_for_each_entry(policy_dbs, &attr_set->policy_list, list) {
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100256 /*
257 * Doing this without locking might lead to using different
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530258 * rate_mult values in od_update() and od_dbs_update().
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100259 */
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530260 mutex_lock(&policy_dbs->update_mutex);
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100261 policy_dbs->rate_mult = 1;
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530262 mutex_unlock(&policy_dbs->update_mutex);
David C Niemi3f78a9f2010-10-06 16:54:24 -0400263 }
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100264
David C Niemi3f78a9f2010-10-06 16:54:24 -0400265 return count;
266}
267
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100268static ssize_t store_ignore_nice_load(struct gov_attr_set *attr_set,
269 const char *buf, size_t count)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700270{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100271 struct dbs_data *dbs_data = to_dbs_data(attr_set);
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700272 unsigned int input;
273 int ret;
274
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700275 ret = sscanf(buf, "%u", &input);
Dave Jones2b03f892009-01-18 01:43:44 -0500276 if (ret != 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700277 return -EINVAL;
278
Dave Jones2b03f892009-01-18 01:43:44 -0500279 if (input > 1)
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700280 input = 1;
Dave Jones32ee8c32006-02-28 00:43:23 -0500281
Viresh Kumarff4b1782016-02-09 09:01:32 +0530282 if (input == dbs_data->ignore_nice_load) { /* nothing to do */
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700283 return count;
284 }
Viresh Kumarff4b1782016-02-09 09:01:32 +0530285 dbs_data->ignore_nice_load = input;
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700286
Venkatesh Pallipadiccb2fe22006-06-28 13:49:52 -0700287 /* we need to re-evaluate prev_cpu_idle */
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100288 gov_update_cpu_data(dbs_data);
Venkatesh Pallipadi1ca3abd2009-01-23 09:25:02 -0500289
Dave Jones3d5ee9e2005-05-31 19:03:47 -0700290 return count;
291}
292
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100293static ssize_t store_powersave_bias(struct gov_attr_set *attr_set,
294 const char *buf, size_t count)
Alexey Starikovskiy05ca0352006-07-31 22:28:12 +0400295{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100296 struct dbs_data *dbs_data = to_dbs_data(attr_set);
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
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100311 list_for_each_entry(policy_dbs, &attr_set->policy_list, list)
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100312 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);
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100321gov_show_one_common(io_is_busy);
Viresh Kumarc4435632016-02-09 09:01:33 +0530322gov_show_one(od, powersave_bias);
Viresh Kumar4471a342012-10-26 00:47:42 +0200323
Viresh Kumarc4435632016-02-09 09:01:33 +0530324gov_attr_rw(sampling_rate);
325gov_attr_rw(io_is_busy);
326gov_attr_rw(up_threshold);
327gov_attr_rw(sampling_down_factor);
328gov_attr_rw(ignore_nice_load);
329gov_attr_rw(powersave_bias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Greg Kroah-Hartmanfe262d52021-12-28 14:19:12 +0100331static struct attribute *od_attrs[] = {
Viresh Kumarc4435632016-02-09 09:01:33 +0530332 &sampling_rate.attr,
333 &up_threshold.attr,
334 &sampling_down_factor.attr,
335 &ignore_nice_load.attr,
336 &powersave_bias.attr,
337 &io_is_busy.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 NULL
339};
Greg Kroah-Hartmanfe262d52021-12-28 14:19:12 +0100340ATTRIBUTE_GROUPS(od);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/************************** sysfs end ************************/
343
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100344static struct policy_dbs_info *od_alloc(void)
345{
346 struct od_policy_dbs_info *dbs_info;
347
348 dbs_info = kzalloc(sizeof(*dbs_info), GFP_KERNEL);
349 return dbs_info ? &dbs_info->policy_dbs : NULL;
350}
351
352static void od_free(struct policy_dbs_info *policy_dbs)
353{
354 kfree(to_dbs_info(policy_dbs));
355}
356
Rafael J. Wysocki9a15fb22016-05-18 22:59:49 +0200357static int od_init(struct dbs_data *dbs_data)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000358{
359 struct od_dbs_tuners *tuners;
360 u64 idle_time;
361 int cpu;
362
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530363 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL);
Viresh Kumara69d6b22016-05-18 17:55:26 +0530364 if (!tuners)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000365 return -ENOMEM;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000366
367 cpu = get_cpu();
368 idle_time = get_cpu_idle_time_us(cpu, NULL);
369 put_cpu();
370 if (idle_time != -1ULL) {
371 /* Idle micro accounting is supported. Use finer thresholds */
Viresh Kumarff4b1782016-02-09 09:01:32 +0530372 dbs_data->up_threshold = MICRO_FREQUENCY_UP_THRESHOLD;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000373 } else {
Viresh Kumarff4b1782016-02-09 09:01:32 +0530374 dbs_data->up_threshold = DEF_FREQUENCY_UP_THRESHOLD;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000375 }
376
Viresh Kumarff4b1782016-02-09 09:01:32 +0530377 dbs_data->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR;
378 dbs_data->ignore_nice_load = 0;
Jacob Shinc2837552013-06-25 22:42:37 +0200379 tuners->powersave_bias = default_powersave_bias;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100380 dbs_data->io_is_busy = should_io_be_busy();
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000381
382 dbs_data->tuners = tuners;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000383 return 0;
384}
385
Rafael J. Wysocki9a15fb22016-05-18 22:59:49 +0200386static void od_exit(struct dbs_data *dbs_data)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000387{
388 kfree(dbs_data->tuners);
389}
390
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100391static void od_start(struct cpufreq_policy *policy)
392{
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100393 struct od_policy_dbs_info *dbs_info = to_dbs_info(policy->governor_data);
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100394
395 dbs_info->sample_type = OD_NORMAL_SAMPLE;
Rafael J. Wysockid1db75f2016-02-18 02:28:24 +0100396 ondemand_powersave_bias_init(policy);
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100397}
398
Viresh Kumar4471a342012-10-26 00:47:42 +0200399static struct od_ops od_ops = {
Jacob Shinfb308092013-04-02 09:56:56 -0500400 .powersave_bias_target = generic_powersave_bias_target,
Viresh Kumar4471a342012-10-26 00:47:42 +0200401};
402
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100403static struct dbs_governor od_dbs_gov = {
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200404 .gov = CPUFREQ_DBS_GOVERNOR_INITIALIZER("ondemand"),
Greg Kroah-Hartmanfe262d52021-12-28 14:19:12 +0100405 .kobj_type = { .default_groups = od_groups },
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530406 .gov_dbs_update = od_dbs_update,
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100407 .alloc = od_alloc,
408 .free = od_free,
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000409 .init = od_init,
410 .exit = od_exit,
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100411 .start = od_start,
Viresh Kumar4471a342012-10-26 00:47:42 +0200412};
413
Quentin Perret10dd8572020-06-29 13:54:59 +0530414#define CPU_FREQ_GOV_ONDEMAND (od_dbs_gov.gov)
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100415
Jacob Shinfb308092013-04-02 09:56:56 -0500416static void od_set_powersave_bias(unsigned int powersave_bias)
417{
Jacob Shinfb308092013-04-02 09:56:56 -0500418 unsigned int cpu;
419 cpumask_t done;
420
Jacob Shinc2837552013-06-25 22:42:37 +0200421 default_powersave_bias = powersave_bias;
Jacob Shinfb308092013-04-02 09:56:56 -0500422 cpumask_clear(&done);
423
Sebastian Andrzej Siewior09681a02021-08-03 16:16:11 +0200424 cpus_read_lock();
Jacob Shinfb308092013-04-02 09:56:56 -0500425 for_each_online_cpu(cpu) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100426 struct cpufreq_policy *policy;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100427 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100428 struct dbs_data *dbs_data;
429 struct od_dbs_tuners *od_tuners;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530430
Jacob Shinfb308092013-04-02 09:56:56 -0500431 if (cpumask_test_cpu(cpu, &done))
432 continue;
433
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100434 policy = cpufreq_cpu_get_raw(cpu);
Quentin Perret10dd8572020-06-29 13:54:59 +0530435 if (!policy || policy->governor != &CPU_FREQ_GOV_ONDEMAND)
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100436 continue;
437
438 policy_dbs = policy->governor_data;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100439 if (!policy_dbs)
Jacob Shinc2837552013-06-25 22:42:37 +0200440 continue;
Jacob Shinfb308092013-04-02 09:56:56 -0500441
442 cpumask_or(&done, &done, policy->cpus);
Jacob Shinc2837552013-06-25 22:42:37 +0200443
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100444 dbs_data = policy_dbs->dbs_data;
Jacob Shinc2837552013-06-25 22:42:37 +0200445 od_tuners = dbs_data->tuners;
446 od_tuners->powersave_bias = default_powersave_bias;
Jacob Shinfb308092013-04-02 09:56:56 -0500447 }
Sebastian Andrzej Siewior09681a02021-08-03 16:16:11 +0200448 cpus_read_unlock();
Jacob Shinfb308092013-04-02 09:56:56 -0500449}
450
451void od_register_powersave_bias_handler(unsigned int (*f)
452 (struct cpufreq_policy *, unsigned int, unsigned int),
453 unsigned int powersave_bias)
454{
455 od_ops.powersave_bias_target = f;
456 od_set_powersave_bias(powersave_bias);
457}
458EXPORT_SYMBOL_GPL(od_register_powersave_bias_handler);
459
460void od_unregister_powersave_bias_handler(void)
461{
462 od_ops.powersave_bias_target = generic_powersave_bias_target;
463 od_set_powersave_bias(0);
464}
465EXPORT_SYMBOL_GPL(od_unregister_powersave_bias_handler);
466
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700467MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
468MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
469MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
Dave Jones2b03f892009-01-18 01:43:44 -0500470 "Low Latency Frequency Transition capable processors");
Venkatesh Pallipadiffac80e2006-06-28 13:52:18 -0700471MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Johannes Weiner69157192008-01-17 15:21:08 -0800473#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100474struct cpufreq_governor *cpufreq_default_governor(void)
475{
Quentin Perret10dd8572020-06-29 13:54:59 +0530476 return &CPU_FREQ_GOV_ONDEMAND;
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100477}
Johannes Weiner69157192008-01-17 15:21:08 -0800478#endif
Quentin Perret10dd8572020-06-29 13:54:59 +0530479
480cpufreq_governor_init(CPU_FREQ_GOV_ONDEMAND);
481cpufreq_governor_exit(CPU_FREQ_GOV_ONDEMAND);