blob: 871bf9cf55cf0dc95ee9952774c406280a7cbcee [file] [log] [blame]
viresh kumar2aacdff2012-10-23 01:28:05 +02001/*
2 * drivers/cpufreq/cpufreq_governor.c
3 *
4 * CPUFREQ governors common code
5 *
Viresh Kumar4471a342012-10-26 00:47:42 +02006 * Copyright (C) 2001 Russell King
7 * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
8 * (C) 2003 Jun Nakajima <jun.nakajima@intel.com>
9 * (C) 2009 Alexander Clouter <alex@digriz.org.uk>
10 * (c) 2012 Viresh Kumar <viresh.kumar@linaro.org>
11 *
viresh kumar2aacdff2012-10-23 01:28:05 +020012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 */
16
Viresh Kumar4471a342012-10-26 00:47:42 +020017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
viresh kumar2aacdff2012-10-23 01:28:05 +020019#include <linux/export.h>
20#include <linux/kernel_stat.h>
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000021#include <linux/slab.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020022
23#include "cpufreq_governor.h"
24
Rafael J. Wysocki56026642017-12-18 02:15:32 +010025#define CPUFREQ_DBS_MIN_SAMPLING_INTERVAL (2 * TICK_NSEC / NSEC_PER_USEC)
26
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +010027static DEFINE_PER_CPU(struct cpu_dbs_info, cpu_dbs);
28
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +010029static DEFINE_MUTEX(gov_dbs_data_mutex);
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +010030
Viresh Kumaraded3872016-02-11 17:31:15 +053031/* Common sysfs tunables */
32/**
33 * store_sampling_rate - update sampling rate effective immediately if needed.
34 *
35 * If new rate is smaller than the old, simply updating
36 * dbs.sampling_rate might not be appropriate. For example, if the
37 * original sampling_rate was 1 second and the requested new sampling rate is 10
38 * ms because the user needs immediate reaction from ondemand governor, but not
39 * sure if higher frequency will be required or not, then, the governor may
40 * change the sampling rate too late; up to 1 second later. Thus, if we are
41 * reducing the sampling rate, we need to make the new value effective
42 * immediately.
43 *
Viresh Kumaraded3872016-02-11 17:31:15 +053044 * This must be called with dbs_data->mutex held, otherwise traversing
45 * policy_dbs_list isn't safe.
46 */
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +010047ssize_t store_sampling_rate(struct gov_attr_set *attr_set, const char *buf,
Viresh Kumaraded3872016-02-11 17:31:15 +053048 size_t count)
49{
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +010050 struct dbs_data *dbs_data = to_dbs_data(attr_set);
Viresh Kumaraded3872016-02-11 17:31:15 +053051 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki56026642017-12-18 02:15:32 +010052 unsigned int sampling_interval;
Viresh Kumaraded3872016-02-11 17:31:15 +053053 int ret;
Rafael J. Wysocki56026642017-12-18 02:15:32 +010054
55 ret = sscanf(buf, "%u", &sampling_interval);
56 if (ret != 1 || sampling_interval < CPUFREQ_DBS_MIN_SAMPLING_INTERVAL)
Viresh Kumaraded3872016-02-11 17:31:15 +053057 return -EINVAL;
58
Rafael J. Wysocki56026642017-12-18 02:15:32 +010059 dbs_data->sampling_rate = sampling_interval;
60
Viresh Kumaraded3872016-02-11 17:31:15 +053061 /*
62 * We are operating under dbs_data->mutex and so the list and its
63 * entries can't be freed concurrently.
64 */
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +010065 list_for_each_entry(policy_dbs, &attr_set->policy_list, list) {
Viresh Kumar26f0dbc2016-11-08 11:06:33 +053066 mutex_lock(&policy_dbs->update_mutex);
Viresh Kumaraded3872016-02-11 17:31:15 +053067 /*
68 * On 32-bit architectures this may race with the
69 * sample_delay_ns read in dbs_update_util_handler(), but that
70 * really doesn't matter. If the read returns a value that's
71 * too big, the sample will be skipped, but the next invocation
72 * of dbs_update_util_handler() (when the update has been
Rafael J. Wysocki78347cd2016-02-15 02:20:11 +010073 * completed) will take a sample.
Viresh Kumaraded3872016-02-11 17:31:15 +053074 *
75 * If this runs in parallel with dbs_work_handler(), we may end
76 * up overwriting the sample_delay_ns value that it has just
Rafael J. Wysocki78347cd2016-02-15 02:20:11 +010077 * written, but it will be corrected next time a sample is
78 * taken, so it shouldn't be significant.
Viresh Kumaraded3872016-02-11 17:31:15 +053079 */
Rafael J. Wysocki78347cd2016-02-15 02:20:11 +010080 gov_update_sample_delay(policy_dbs, 0);
Viresh Kumar26f0dbc2016-11-08 11:06:33 +053081 mutex_unlock(&policy_dbs->update_mutex);
Viresh Kumaraded3872016-02-11 17:31:15 +053082 }
83
84 return count;
85}
86EXPORT_SYMBOL_GPL(store_sampling_rate);
87
Rafael J. Wysockia33cce12016-02-18 02:26:55 +010088/**
89 * gov_update_cpu_data - Update CPU load data.
Rafael J. Wysockia33cce12016-02-18 02:26:55 +010090 * @dbs_data: Top-level governor data pointer.
91 *
92 * Update CPU load data for all CPUs in the domain governed by @dbs_data
93 * (that may be a single policy or a bunch of them if governor tunables are
94 * system-wide).
95 *
96 * Call under the @dbs_data mutex.
97 */
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +010098void gov_update_cpu_data(struct dbs_data *dbs_data)
Rafael J. Wysockia33cce12016-02-18 02:26:55 +010099{
100 struct policy_dbs_info *policy_dbs;
101
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100102 list_for_each_entry(policy_dbs, &dbs_data->attr_set.policy_list, list) {
Rafael J. Wysockia33cce12016-02-18 02:26:55 +0100103 unsigned int j;
104
105 for_each_cpu(j, policy_dbs->policy->cpus) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100106 struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j);
Rafael J. Wysockia33cce12016-02-18 02:26:55 +0100107
Rafael J. Wysockib4f4b4b2016-04-28 01:19:03 +0200108 j_cdbs->prev_cpu_idle = get_cpu_idle_time(j, &j_cdbs->prev_update_time,
Rafael J. Wysockia33cce12016-02-18 02:26:55 +0100109 dbs_data->io_is_busy);
110 if (dbs_data->ignore_nice_load)
111 j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
112 }
113 }
114}
115EXPORT_SYMBOL_GPL(gov_update_cpu_data);
116
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100117unsigned int dbs_update(struct cpufreq_policy *policy)
Viresh Kumar4471a342012-10-26 00:47:42 +0200118{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100119 struct policy_dbs_info *policy_dbs = policy->governor_data;
120 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumarff4b1782016-02-09 09:01:32 +0530121 unsigned int ignore_nice = dbs_data->ignore_nice_load;
Stratos Karafotis00bfe052016-11-16 19:26:29 +0200122 unsigned int max_load = 0, idle_periods = UINT_MAX;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100123 unsigned int sampling_rate, io_busy, j;
Viresh Kumar4471a342012-10-26 00:47:42 +0200124
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100125 /*
126 * Sometimes governors may use an additional multiplier to increase
127 * sample delays temporarily. Apply that multiplier to sampling_rate
128 * so as to keep the wake-up-from-idle detection logic a bit
129 * conservative.
130 */
131 sampling_rate = dbs_data->sampling_rate * policy_dbs->rate_mult;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100132 /*
133 * For the purpose of ondemand, waiting for disk IO is an indication
134 * that you're performance critical, and not that the system is actually
135 * idle, so do not add the iowait time to the CPU idle time then.
136 */
137 io_busy = dbs_data->io_is_busy;
Viresh Kumar4471a342012-10-26 00:47:42 +0200138
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +0300139 /* Get Absolute Load */
Viresh Kumar4471a342012-10-26 00:47:42 +0200140 for_each_cpu(j, policy->cpus) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100141 struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j);
Rafael J. Wysockib4f4b4b2016-04-28 01:19:03 +0200142 u64 update_time, cur_idle_time;
143 unsigned int idle_time, time_elapsed;
Viresh Kumar4471a342012-10-26 00:47:42 +0200144 unsigned int load;
145
Rafael J. Wysockib4f4b4b2016-04-28 01:19:03 +0200146 cur_idle_time = get_cpu_idle_time(j, &update_time, io_busy);
Viresh Kumar4471a342012-10-26 00:47:42 +0200147
Rafael J. Wysockib4f4b4b2016-04-28 01:19:03 +0200148 time_elapsed = update_time - j_cdbs->prev_update_time;
149 j_cdbs->prev_update_time = update_time;
Viresh Kumar4471a342012-10-26 00:47:42 +0200150
Rafael J. Wysocki94862a62016-04-21 20:57:47 +0200151 idle_time = cur_idle_time - j_cdbs->prev_cpu_idle;
152 j_cdbs->prev_cpu_idle = cur_idle_time;
Viresh Kumar4471a342012-10-26 00:47:42 +0200153
154 if (ignore_nice) {
Rafael J. Wysocki679b8fe2016-02-15 02:15:50 +0100155 u64 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Viresh Kumar4471a342012-10-26 00:47:42 +0200156
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100157 idle_time += div_u64(cur_nice - j_cdbs->prev_cpu_nice, NSEC_PER_USEC);
Rafael J. Wysocki679b8fe2016-02-15 02:15:50 +0100158 j_cdbs->prev_cpu_nice = cur_nice;
Viresh Kumar4471a342012-10-26 00:47:42 +0200159 }
160
Rafael J. Wysocki9485e4c2016-05-06 01:30:37 +0200161 if (unlikely(!time_elapsed)) {
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530162 /*
Rafael J. Wysocki9485e4c2016-05-06 01:30:37 +0200163 * That can only happen when this function is called
164 * twice in a row with a very short interval between the
165 * calls, so the previous load value can be used then.
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530166 */
Rafael J. Wysocki9485e4c2016-05-06 01:30:37 +0200167 load = j_cdbs->prev_load;
168 } else if (unlikely(time_elapsed > 2 * sampling_rate &&
169 j_cdbs->prev_load)) {
170 /*
171 * If the CPU had gone completely idle and a task has
172 * just woken up on this CPU now, it would be unfair to
173 * calculate 'load' the usual way for this elapsed
174 * time-window, because it would show near-zero load,
175 * irrespective of how CPU intensive that task actually
176 * was. This is undesirable for latency-sensitive bursty
177 * workloads.
178 *
179 * To avoid this, reuse the 'load' from the previous
180 * time-window and give this task a chance to start with
181 * a reasonably high CPU frequency. However, that
182 * shouldn't be over-done, lest we get stuck at a high
183 * load (high frequency) for too long, even when the
184 * current system load has actually dropped down, so
185 * clear prev_load to guarantee that the load will be
186 * computed again next time.
187 *
188 * Detecting this situation is easy: the governor's
189 * utilization update handler would not have run during
190 * CPU-idle periods. Hence, an unusually large
191 * 'time_elapsed' (as compared to the sampling rate)
192 * indicates this scenario.
193 */
194 load = j_cdbs->prev_load;
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530195 j_cdbs->prev_load = 0;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530196 } else {
Rafael J. Wysocki9485e4c2016-05-06 01:30:37 +0200197 if (time_elapsed >= idle_time) {
198 load = 100 * (time_elapsed - idle_time) / time_elapsed;
199 } else {
200 /*
201 * That can happen if idle_time is returned by
202 * get_cpu_idle_time_jiffy(). In that case
203 * idle_time is roughly equal to the difference
204 * between time_elapsed and "busy time" obtained
205 * from CPU statistics. Then, the "busy time"
206 * can end up being greater than time_elapsed
207 * (for example, if jiffies_64 and the CPU
208 * statistics are updated by different CPUs),
209 * so idle_time may in fact be negative. That
210 * means, though, that the CPU was busy all
211 * the time (on the rough average) during the
212 * last sampling interval and 100 can be
213 * returned as the load.
214 */
215 load = (int)idle_time < 0 ? 100 : 0;
216 }
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530217 j_cdbs->prev_load = load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530218 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200219
Stratos Karafotis00bfe052016-11-16 19:26:29 +0200220 if (time_elapsed > 2 * sampling_rate) {
221 unsigned int periods = time_elapsed / sampling_rate;
222
223 if (periods < idle_periods)
224 idle_periods = periods;
225 }
226
Viresh Kumar4471a342012-10-26 00:47:42 +0200227 if (load > max_load)
228 max_load = load;
229 }
Stratos Karafotis00bfe052016-11-16 19:26:29 +0200230
231 policy_dbs->idle_periods = idle_periods;
232
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100233 return max_load;
Viresh Kumar4471a342012-10-26 00:47:42 +0200234}
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100235EXPORT_SYMBOL_GPL(dbs_update);
Viresh Kumar4471a342012-10-26 00:47:42 +0200236
Viresh Kumar70f43e52015-12-09 07:34:42 +0530237static void dbs_work_handler(struct work_struct *work)
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530238{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100239 struct policy_dbs_info *policy_dbs;
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530240 struct cpufreq_policy *policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100241 struct dbs_governor *gov;
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530242
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100243 policy_dbs = container_of(work, struct policy_dbs_info, work);
244 policy = policy_dbs->policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100245 gov = dbs_governor_of(policy);
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530246
Viresh Kumar70f43e52015-12-09 07:34:42 +0530247 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100248 * Make sure cpufreq_governor_limits() isn't evaluating load or the
249 * ondemand governor isn't updating the sampling rate in parallel.
Viresh Kumar70f43e52015-12-09 07:34:42 +0530250 */
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530251 mutex_lock(&policy_dbs->update_mutex);
252 gov_update_sample_delay(policy_dbs, gov->gov_dbs_update(policy));
253 mutex_unlock(&policy_dbs->update_mutex);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530254
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100255 /* Allow the utilization update handler to queue up more work. */
256 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100257 /*
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100258 * If the update below is reordered with respect to the sample delay
259 * modification, the utilization update handler may end up using a stale
260 * sample delay value.
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100261 */
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100262 smp_wmb();
263 policy_dbs->work_in_progress = false;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530264}
265
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100266static void dbs_irq_work(struct irq_work *irq_work)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530267{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100268 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100269
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100270 policy_dbs = container_of(irq_work, struct policy_dbs_info, irq_work);
Rafael J. Wysocki539a4c42016-03-22 01:17:43 +0100271 schedule_work_on(smp_processor_id(), &policy_dbs->work);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100272}
273
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100274static void dbs_update_util_handler(struct update_util_data *data, u64 time,
Rafael J. Wysocki58919e82016-08-16 22:14:55 +0200275 unsigned int flags)
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100276{
277 struct cpu_dbs_info *cdbs = container_of(data, struct cpu_dbs_info, update_util);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100278 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Rafael J. Wysocki27de3482016-02-22 14:14:34 +0100279 u64 delta_ns, lst;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530280
Viresh Kumar03639972018-05-22 15:31:30 +0530281 if (!cpufreq_this_cpu_can_update(policy_dbs->policy))
Viresh Kumar674e7542017-07-28 12:16:38 +0530282 return;
283
Viresh Kumar70f43e52015-12-09 07:34:42 +0530284 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100285 * The work may not be allowed to be queued up right now.
286 * Possible reasons:
287 * - Work has already been queued up or is in progress.
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100288 * - It is too early (too little time from the previous sample).
Viresh Kumar70f43e52015-12-09 07:34:42 +0530289 */
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100290 if (policy_dbs->work_in_progress)
291 return;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100292
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100293 /*
294 * If the reads below are reordered before the check above, the value
295 * of sample_delay_ns used in the computation may be stale.
296 */
297 smp_rmb();
Rafael J. Wysocki27de3482016-02-22 14:14:34 +0100298 lst = READ_ONCE(policy_dbs->last_sample_time);
299 delta_ns = time - lst;
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100300 if ((s64)delta_ns < policy_dbs->sample_delay_ns)
301 return;
302
303 /*
304 * If the policy is not shared, the irq_work may be queued up right away
305 * at this point. Otherwise, we need to ensure that only one of the
306 * CPUs sharing the policy will do that.
307 */
Rafael J. Wysocki27de3482016-02-22 14:14:34 +0100308 if (policy_dbs->is_shared) {
309 if (!atomic_add_unless(&policy_dbs->work_count, 1, 1))
310 return;
311
312 /*
313 * If another CPU updated last_sample_time in the meantime, we
314 * shouldn't be here, so clear the work counter and bail out.
315 */
316 if (unlikely(lst != READ_ONCE(policy_dbs->last_sample_time))) {
317 atomic_set(&policy_dbs->work_count, 0);
318 return;
319 }
320 }
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100321
322 policy_dbs->last_sample_time = time;
323 policy_dbs->work_in_progress = true;
324 irq_work_queue(&policy_dbs->irq_work);
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530325}
Viresh Kumar44472662013-01-31 17:28:02 +0000326
Rafael J. Wysocki0bed6122016-04-02 01:08:43 +0200327static void gov_set_update_util(struct policy_dbs_info *policy_dbs,
328 unsigned int delay_us)
329{
330 struct cpufreq_policy *policy = policy_dbs->policy;
331 int cpu;
332
333 gov_update_sample_delay(policy_dbs, delay_us);
334 policy_dbs->last_sample_time = 0;
335
336 for_each_cpu(cpu, policy->cpus) {
337 struct cpu_dbs_info *cdbs = &per_cpu(cpu_dbs, cpu);
338
339 cpufreq_add_update_util_hook(cpu, &cdbs->update_util,
340 dbs_update_util_handler);
341 }
342}
343
344static inline void gov_clear_update_util(struct cpufreq_policy *policy)
345{
346 int i;
347
348 for_each_cpu(i, policy->cpus)
349 cpufreq_remove_update_util_hook(i);
350
351 synchronize_sched();
352}
353
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100354static struct policy_dbs_info *alloc_policy_dbs_info(struct cpufreq_policy *policy,
355 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530356{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100357 struct policy_dbs_info *policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530358 int j;
359
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100360 /* Allocate memory for per-policy governor data. */
361 policy_dbs = gov->alloc();
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100362 if (!policy_dbs)
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100363 return NULL;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530364
Viresh Kumar581c2142016-02-11 17:31:14 +0530365 policy_dbs->policy = policy;
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530366 mutex_init(&policy_dbs->update_mutex);
Rafael J. Wysocki686cc632016-02-08 23:41:10 +0100367 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100368 init_irq_work(&policy_dbs->irq_work, dbs_irq_work);
369 INIT_WORK(&policy_dbs->work, dbs_work_handler);
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100370
371 /* Set policy_dbs for all CPUs, online+offline */
372 for_each_cpu(j, policy->related_cpus) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100373 struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j);
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100374
375 j_cdbs->policy_dbs = policy_dbs;
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100376 }
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100377 return policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530378}
379
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100380static void free_policy_dbs_info(struct policy_dbs_info *policy_dbs,
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100381 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530382{
Viresh Kumar44152cb2015-07-18 11:30:59 +0530383 int j;
384
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530385 mutex_destroy(&policy_dbs->update_mutex);
Viresh Kumar5e4500d2015-12-03 09:37:52 +0530386
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100387 for_each_cpu(j, policy_dbs->policy->related_cpus) {
388 struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530389
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100390 j_cdbs->policy_dbs = NULL;
391 j_cdbs->update_util.func = NULL;
392 }
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100393 gov->free(policy_dbs);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530394}
395
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200396int cpufreq_dbs_governor_init(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530397{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100398 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100399 struct dbs_data *dbs_data;
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100400 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100401 int ret = 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530402
Viresh Kumara72c4952015-07-18 11:31:01 +0530403 /* State should be equivalent to EXIT */
404 if (policy->governor_data)
405 return -EBUSY;
406
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100407 policy_dbs = alloc_policy_dbs_info(policy, gov);
408 if (!policy_dbs)
409 return -ENOMEM;
410
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100411 /* Protect gov->gdbs_data against concurrent updates. */
412 mutex_lock(&gov_dbs_data_mutex);
413
414 dbs_data = gov->gdbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530415 if (dbs_data) {
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100416 if (WARN_ON(have_governor_per_policy())) {
417 ret = -EINVAL;
418 goto free_policy_dbs_info;
419 }
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100420 policy_dbs->dbs_data = dbs_data;
421 policy->governor_data = policy_dbs;
Viresh Kumarc54df072016-02-10 11:00:25 +0530422
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100423 gov_attr_set_get(&dbs_data->attr_set, &policy_dbs->list);
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100424 goto out;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530425 }
426
427 dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100428 if (!dbs_data) {
429 ret = -ENOMEM;
430 goto free_policy_dbs_info;
431 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530432
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100433 gov_attr_set_init(&dbs_data->attr_set, &policy_dbs->list);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530434
Rafael J. Wysocki9a15fb22016-05-18 22:59:49 +0200435 ret = gov->init(dbs_data);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530436 if (ret)
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100437 goto free_policy_dbs_info;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530438
Rafael J. Wysocki56026642017-12-18 02:15:32 +0100439 /*
440 * The sampling interval should not be less than the transition latency
441 * of the CPU and it also cannot be too small for dbs_update() to work
442 * correctly.
443 */
444 dbs_data->sampling_rate = max_t(unsigned int,
445 CPUFREQ_DBS_MIN_SAMPLING_INTERVAL,
446 cpufreq_policy_transition_delay_us(policy));
Viresh Kumar714a2d92015-06-04 16:43:27 +0530447
Viresh Kumar8eec1022015-10-15 21:35:22 +0530448 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100449 gov->gdbs_data = dbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530450
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100451 policy_dbs->dbs_data = dbs_data;
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100452 policy->governor_data = policy_dbs;
Viresh Kumare4b133c2016-01-25 22:33:46 +0530453
Viresh Kumarc4435632016-02-09 09:01:33 +0530454 gov->kobj_type.sysfs_ops = &governor_sysfs_ops;
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100455 ret = kobject_init_and_add(&dbs_data->attr_set.kobj, &gov->kobj_type,
Viresh Kumarc4435632016-02-09 09:01:33 +0530456 get_governor_parent_kobj(policy),
457 "%s", gov->gov.name);
Rafael J. Wysockifafd5e82016-02-08 23:57:22 +0100458 if (!ret)
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100459 goto out;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530460
Rafael J. Wysockifafd5e82016-02-08 23:57:22 +0100461 /* Failure, so roll back. */
Viresh Kumar666f4cc2016-05-18 17:55:27 +0530462 pr_err("initialization failed (dbs_data kobject init error %d)\n", ret);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530463
Viresh Kumare4b133c2016-01-25 22:33:46 +0530464 policy->governor_data = NULL;
465
Viresh Kumar8eec1022015-10-15 21:35:22 +0530466 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100467 gov->gdbs_data = NULL;
Rafael J. Wysocki9a15fb22016-05-18 22:59:49 +0200468 gov->exit(dbs_data);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100469 kfree(dbs_data);
470
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100471free_policy_dbs_info:
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100472 free_policy_dbs_info(policy_dbs, gov);
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100473
474out:
475 mutex_unlock(&gov_dbs_data_mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530476 return ret;
477}
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200478EXPORT_SYMBOL_GPL(cpufreq_dbs_governor_init);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530479
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200480void cpufreq_dbs_governor_exit(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530481{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100482 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100483 struct policy_dbs_info *policy_dbs = policy->governor_data;
484 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100485 unsigned int count;
Viresh Kumara72c4952015-07-18 11:31:01 +0530486
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100487 /* Protect gov->gdbs_data against concurrent updates. */
488 mutex_lock(&gov_dbs_data_mutex);
489
Rafael J. Wysocki0dd3c1d2016-03-22 02:47:51 +0100490 count = gov_attr_set_put(&dbs_data->attr_set, &policy_dbs->list);
491
492 policy->governor_data = NULL;
Viresh Kumarc54df072016-02-10 11:00:25 +0530493
494 if (!count) {
Viresh Kumar8eec1022015-10-15 21:35:22 +0530495 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100496 gov->gdbs_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530497
Rafael J. Wysocki9a15fb22016-05-18 22:59:49 +0200498 gov->exit(dbs_data);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530499 kfree(dbs_data);
500 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530501
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100502 free_policy_dbs_info(policy_dbs, gov);
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100503
504 mutex_unlock(&gov_dbs_data_mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530505}
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200506EXPORT_SYMBOL_GPL(cpufreq_dbs_governor_exit);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530507
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200508int cpufreq_dbs_governor_start(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530509{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100510 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100511 struct policy_dbs_info *policy_dbs = policy->governor_data;
512 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100513 unsigned int sampling_rate, ignore_nice, j;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100514 unsigned int io_busy;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530515
516 if (!policy->cur)
517 return -EINVAL;
518
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100519 policy_dbs->is_shared = policy_is_shared(policy);
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100520 policy_dbs->rate_mult = 1;
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100521
Viresh Kumarff4b1782016-02-09 09:01:32 +0530522 sampling_rate = dbs_data->sampling_rate;
523 ignore_nice = dbs_data->ignore_nice_load;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100524 io_busy = dbs_data->io_is_busy;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530525
Viresh Kumar714a2d92015-06-04 16:43:27 +0530526 for_each_cpu(j, policy->cpus) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100527 struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530528
Rafael J. Wysockib4f4b4b2016-04-28 01:19:03 +0200529 j_cdbs->prev_cpu_idle = get_cpu_idle_time(j, &j_cdbs->prev_update_time, io_busy);
Rafael J. Wysockiba1ca652016-04-25 16:21:34 +0200530 /*
531 * Make the first invocation of dbs_update() compute the load.
532 */
533 j_cdbs->prev_load = 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530534
535 if (ignore_nice)
536 j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Viresh Kumar714a2d92015-06-04 16:43:27 +0530537 }
538
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100539 gov->start(policy);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530540
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100541 gov_set_update_util(policy_dbs, sampling_rate);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530542 return 0;
543}
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200544EXPORT_SYMBOL_GPL(cpufreq_dbs_governor_start);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530545
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200546void cpufreq_dbs_governor_stop(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530547{
Rafael J. Wysockif6709b82016-06-09 01:45:32 +0200548 struct policy_dbs_info *policy_dbs = policy->governor_data;
549
550 gov_clear_update_util(policy_dbs->policy);
551 irq_work_sync(&policy_dbs->irq_work);
552 cancel_work_sync(&policy_dbs->work);
553 atomic_set(&policy_dbs->work_count, 0);
554 policy_dbs->work_in_progress = false;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530555}
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200556EXPORT_SYMBOL_GPL(cpufreq_dbs_governor_stop);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530557
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200558void cpufreq_dbs_governor_limits(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530559{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100560 struct policy_dbs_info *policy_dbs = policy->governor_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530561
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530562 mutex_lock(&policy_dbs->update_mutex);
Viresh Kumarbf2be2d2016-05-18 17:55:31 +0530563 cpufreq_policy_apply_limits(policy);
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100564 gov_update_sample_delay(policy_dbs, 0);
565
Viresh Kumar26f0dbc2016-11-08 11:06:33 +0530566 mutex_unlock(&policy_dbs->update_mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530567}
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200568EXPORT_SYMBOL_GPL(cpufreq_dbs_governor_limits);