blob: 5f1147fa9239cdc325eb8fae871d151a4b36337f [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>
Rafael J. Wysockiadaf9fc2016-03-10 20:44:47 +010021#include <linux/sched.h>
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000022#include <linux/slab.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020023
24#include "cpufreq_governor.h"
25
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +010026static DEFINE_PER_CPU(struct cpu_dbs_info, cpu_dbs);
27
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +010028static DEFINE_MUTEX(gov_dbs_data_mutex);
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +010029
Viresh Kumaraded3872016-02-11 17:31:15 +053030/* Common sysfs tunables */
31/**
32 * store_sampling_rate - update sampling rate effective immediately if needed.
33 *
34 * If new rate is smaller than the old, simply updating
35 * dbs.sampling_rate might not be appropriate. For example, if the
36 * original sampling_rate was 1 second and the requested new sampling rate is 10
37 * ms because the user needs immediate reaction from ondemand governor, but not
38 * sure if higher frequency will be required or not, then, the governor may
39 * change the sampling rate too late; up to 1 second later. Thus, if we are
40 * reducing the sampling rate, we need to make the new value effective
41 * immediately.
42 *
Viresh Kumaraded3872016-02-11 17:31:15 +053043 * This must be called with dbs_data->mutex held, otherwise traversing
44 * policy_dbs_list isn't safe.
45 */
46ssize_t store_sampling_rate(struct dbs_data *dbs_data, const char *buf,
47 size_t count)
48{
49 struct policy_dbs_info *policy_dbs;
50 unsigned int rate;
51 int ret;
52 ret = sscanf(buf, "%u", &rate);
53 if (ret != 1)
54 return -EINVAL;
55
56 dbs_data->sampling_rate = max(rate, dbs_data->min_sampling_rate);
57
58 /*
59 * We are operating under dbs_data->mutex and so the list and its
60 * entries can't be freed concurrently.
61 */
62 list_for_each_entry(policy_dbs, &dbs_data->policy_dbs_list, list) {
63 mutex_lock(&policy_dbs->timer_mutex);
64 /*
65 * On 32-bit architectures this may race with the
66 * sample_delay_ns read in dbs_update_util_handler(), but that
67 * really doesn't matter. If the read returns a value that's
68 * too big, the sample will be skipped, but the next invocation
69 * of dbs_update_util_handler() (when the update has been
Rafael J. Wysocki78347cd2016-02-15 02:20:11 +010070 * completed) will take a sample.
Viresh Kumaraded3872016-02-11 17:31:15 +053071 *
72 * If this runs in parallel with dbs_work_handler(), we may end
73 * up overwriting the sample_delay_ns value that it has just
Rafael J. Wysocki78347cd2016-02-15 02:20:11 +010074 * written, but it will be corrected next time a sample is
75 * taken, so it shouldn't be significant.
Viresh Kumaraded3872016-02-11 17:31:15 +053076 */
Rafael J. Wysocki78347cd2016-02-15 02:20:11 +010077 gov_update_sample_delay(policy_dbs, 0);
Viresh Kumaraded3872016-02-11 17:31:15 +053078 mutex_unlock(&policy_dbs->timer_mutex);
79 }
80
81 return count;
82}
83EXPORT_SYMBOL_GPL(store_sampling_rate);
84
Rafael J. Wysockia33cce12016-02-18 02:26:55 +010085/**
86 * gov_update_cpu_data - Update CPU load data.
Rafael J. Wysockia33cce12016-02-18 02:26:55 +010087 * @dbs_data: Top-level governor data pointer.
88 *
89 * Update CPU load data for all CPUs in the domain governed by @dbs_data
90 * (that may be a single policy or a bunch of them if governor tunables are
91 * system-wide).
92 *
93 * Call under the @dbs_data mutex.
94 */
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +010095void gov_update_cpu_data(struct dbs_data *dbs_data)
Rafael J. Wysockia33cce12016-02-18 02:26:55 +010096{
97 struct policy_dbs_info *policy_dbs;
98
99 list_for_each_entry(policy_dbs, &dbs_data->policy_dbs_list, list) {
100 unsigned int j;
101
102 for_each_cpu(j, policy_dbs->policy->cpus) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100103 struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j);
Rafael J. Wysockia33cce12016-02-18 02:26:55 +0100104
105 j_cdbs->prev_cpu_idle = get_cpu_idle_time(j, &j_cdbs->prev_cpu_wall,
106 dbs_data->io_is_busy);
107 if (dbs_data->ignore_nice_load)
108 j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
109 }
110 }
111}
112EXPORT_SYMBOL_GPL(gov_update_cpu_data);
113
Viresh Kumarc4435632016-02-09 09:01:33 +0530114static inline struct dbs_data *to_dbs_data(struct kobject *kobj)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000115{
Viresh Kumarc4435632016-02-09 09:01:33 +0530116 return container_of(kobj, struct dbs_data, kobj);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000117}
118
Viresh Kumarc4435632016-02-09 09:01:33 +0530119static inline struct governor_attr *to_gov_attr(struct attribute *attr)
120{
121 return container_of(attr, struct governor_attr, attr);
122}
123
124static ssize_t governor_show(struct kobject *kobj, struct attribute *attr,
125 char *buf)
126{
127 struct dbs_data *dbs_data = to_dbs_data(kobj);
128 struct governor_attr *gattr = to_gov_attr(attr);
Viresh Kumarc4435632016-02-09 09:01:33 +0530129
Viresh Kumarf7372362016-02-22 14:18:20 +0530130 return gattr->show(dbs_data, buf);
Viresh Kumarc4435632016-02-09 09:01:33 +0530131}
132
133static ssize_t governor_store(struct kobject *kobj, struct attribute *attr,
134 const char *buf, size_t count)
135{
136 struct dbs_data *dbs_data = to_dbs_data(kobj);
137 struct governor_attr *gattr = to_gov_attr(attr);
Viresh Kumarf7372362016-02-22 14:18:20 +0530138 int ret = -EBUSY;
Viresh Kumarc4435632016-02-09 09:01:33 +0530139
140 mutex_lock(&dbs_data->mutex);
141
Viresh Kumarf7372362016-02-22 14:18:20 +0530142 if (dbs_data->usage_count)
Viresh Kumarc4435632016-02-09 09:01:33 +0530143 ret = gattr->store(dbs_data, buf, count);
144
145 mutex_unlock(&dbs_data->mutex);
146
147 return ret;
148}
149
150/*
151 * Sysfs Ops for accessing governor attributes.
152 *
153 * All show/store invocations for governor specific sysfs attributes, will first
154 * call the below show/store callbacks and the attribute specific callback will
155 * be called from within it.
156 */
157static const struct sysfs_ops governor_sysfs_ops = {
158 .show = governor_show,
159 .store = governor_store,
160};
161
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100162unsigned int dbs_update(struct cpufreq_policy *policy)
Viresh Kumar4471a342012-10-26 00:47:42 +0200163{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100164 struct policy_dbs_info *policy_dbs = policy->governor_data;
165 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumarff4b1782016-02-09 09:01:32 +0530166 unsigned int ignore_nice = dbs_data->ignore_nice_load;
Viresh Kumar4471a342012-10-26 00:47:42 +0200167 unsigned int max_load = 0;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100168 unsigned int sampling_rate, io_busy, j;
Viresh Kumar4471a342012-10-26 00:47:42 +0200169
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100170 /*
171 * Sometimes governors may use an additional multiplier to increase
172 * sample delays temporarily. Apply that multiplier to sampling_rate
173 * so as to keep the wake-up-from-idle detection logic a bit
174 * conservative.
175 */
176 sampling_rate = dbs_data->sampling_rate * policy_dbs->rate_mult;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100177 /*
178 * For the purpose of ondemand, waiting for disk IO is an indication
179 * that you're performance critical, and not that the system is actually
180 * idle, so do not add the iowait time to the CPU idle time then.
181 */
182 io_busy = dbs_data->io_is_busy;
Viresh Kumar4471a342012-10-26 00:47:42 +0200183
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +0300184 /* Get Absolute Load */
Viresh Kumar4471a342012-10-26 00:47:42 +0200185 for_each_cpu(j, policy->cpus) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100186 struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j);
Stratos Karafotis9366d842013-02-28 16:57:32 +0000187 u64 cur_wall_time, cur_idle_time;
188 unsigned int idle_time, wall_time;
Viresh Kumar4471a342012-10-26 00:47:42 +0200189 unsigned int load;
190
Stratos Karafotis9366d842013-02-28 16:57:32 +0000191 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time, io_busy);
Viresh Kumar4471a342012-10-26 00:47:42 +0200192
Rafael J. Wysocki57eb8322016-02-16 00:58:47 +0100193 wall_time = cur_wall_time - j_cdbs->prev_cpu_wall;
Viresh Kumar4471a342012-10-26 00:47:42 +0200194 j_cdbs->prev_cpu_wall = cur_wall_time;
195
Rafael J. Wysocki94862a62016-04-21 20:57:47 +0200196 idle_time = cur_idle_time - j_cdbs->prev_cpu_idle;
197 j_cdbs->prev_cpu_idle = cur_idle_time;
Viresh Kumar4471a342012-10-26 00:47:42 +0200198
199 if (ignore_nice) {
Rafael J. Wysocki679b8fe2016-02-15 02:15:50 +0100200 u64 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Viresh Kumar4471a342012-10-26 00:47:42 +0200201
Rafael J. Wysocki679b8fe2016-02-15 02:15:50 +0100202 idle_time += cputime_to_usecs(cur_nice - j_cdbs->prev_cpu_nice);
203 j_cdbs->prev_cpu_nice = cur_nice;
Viresh Kumar4471a342012-10-26 00:47:42 +0200204 }
205
Viresh Kumar4471a342012-10-26 00:47:42 +0200206 if (unlikely(!wall_time || wall_time < idle_time))
207 continue;
208
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530209 /*
210 * If the CPU had gone completely idle, and a task just woke up
211 * on this CPU now, it would be unfair to calculate 'load' the
212 * usual way for this elapsed time-window, because it will show
213 * near-zero load, irrespective of how CPU intensive that task
214 * actually is. This is undesirable for latency-sensitive bursty
215 * workloads.
216 *
217 * To avoid this, we reuse the 'load' from the previous
218 * time-window and give this task a chance to start with a
219 * reasonably high CPU frequency. (However, we shouldn't over-do
220 * this copy, lest we get stuck at a high load (high frequency)
221 * for too long, even when the current system load has actually
222 * dropped down. So we perform the copy only once, upon the
223 * first wake-up from idle.)
224 *
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100225 * Detecting this situation is easy: the governor's utilization
226 * update handler would not have run during CPU-idle periods.
227 * Hence, an unusually large 'wall_time' (as compared to the
228 * sampling rate) indicates this scenario.
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530229 *
230 * prev_load can be zero in two cases and we must recalculate it
231 * for both cases:
232 * - during long idle intervals
233 * - explicitly set to zero
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530234 */
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530235 if (unlikely(wall_time > (2 * sampling_rate) &&
236 j_cdbs->prev_load)) {
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530237 load = j_cdbs->prev_load;
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530238
239 /*
240 * Perform a destructive copy, to ensure that we copy
241 * the previous load only once, upon the first wake-up
242 * from idle.
243 */
244 j_cdbs->prev_load = 0;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530245 } else {
246 load = 100 * (wall_time - idle_time) / wall_time;
247 j_cdbs->prev_load = load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530248 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200249
Viresh Kumar4471a342012-10-26 00:47:42 +0200250 if (load > max_load)
251 max_load = load;
252 }
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100253 return max_load;
Viresh Kumar4471a342012-10-26 00:47:42 +0200254}
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100255EXPORT_SYMBOL_GPL(dbs_update);
Viresh Kumar4471a342012-10-26 00:47:42 +0200256
Rafael J. Wysocki94ab5e02016-02-21 03:15:34 +0100257static void gov_set_update_util(struct policy_dbs_info *policy_dbs,
258 unsigned int delay_us)
Viresh Kumar4471a342012-10-26 00:47:42 +0200259{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100260 struct cpufreq_policy *policy = policy_dbs->policy;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530261 int cpu;
Viresh Kumar4471a342012-10-26 00:47:42 +0200262
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100263 gov_update_sample_delay(policy_dbs, delay_us);
264 policy_dbs->last_sample_time = 0;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100265
Viresh Kumar70f43e52015-12-09 07:34:42 +0530266 for_each_cpu(cpu, policy->cpus) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100267 struct cpu_dbs_info *cdbs = &per_cpu(cpu_dbs, cpu);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100268
269 cpufreq_set_update_util_data(cpu, &cdbs->update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530270 }
271}
Viresh Kumar031299b2013-02-27 12:24:03 +0530272
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100273static inline void gov_clear_update_util(struct cpufreq_policy *policy)
Viresh Kumar031299b2013-02-27 12:24:03 +0530274{
Viresh Kumar031299b2013-02-27 12:24:03 +0530275 int i;
276
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100277 for_each_cpu(i, policy->cpus)
278 cpufreq_set_update_util_data(i, NULL);
279
Rafael J. Wysocki08f511f2016-03-04 03:58:22 +0100280 synchronize_sched();
Viresh Kumar4471a342012-10-26 00:47:42 +0200281}
282
Viresh Kumar581c2142016-02-11 17:31:14 +0530283static void gov_cancel_work(struct cpufreq_policy *policy)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530284{
Viresh Kumar581c2142016-02-11 17:31:14 +0530285 struct policy_dbs_info *policy_dbs = policy->governor_data;
286
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100287 gov_clear_update_util(policy_dbs->policy);
288 irq_work_sync(&policy_dbs->irq_work);
289 cancel_work_sync(&policy_dbs->work);
Rafael J. Wysocki686cc632016-02-08 23:41:10 +0100290 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100291 policy_dbs->work_in_progress = false;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530292}
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530293
Viresh Kumar70f43e52015-12-09 07:34:42 +0530294static void dbs_work_handler(struct work_struct *work)
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530295{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100296 struct policy_dbs_info *policy_dbs;
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530297 struct cpufreq_policy *policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100298 struct dbs_governor *gov;
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530299
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100300 policy_dbs = container_of(work, struct policy_dbs_info, work);
301 policy = policy_dbs->policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100302 gov = dbs_governor_of(policy);
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530303
Viresh Kumar70f43e52015-12-09 07:34:42 +0530304 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100305 * Make sure cpufreq_governor_limits() isn't evaluating load or the
306 * ondemand governor isn't updating the sampling rate in parallel.
Viresh Kumar70f43e52015-12-09 07:34:42 +0530307 */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100308 mutex_lock(&policy_dbs->timer_mutex);
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100309 gov_update_sample_delay(policy_dbs, gov->gov_dbs_timer(policy));
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100310 mutex_unlock(&policy_dbs->timer_mutex);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530311
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100312 /* Allow the utilization update handler to queue up more work. */
313 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100314 /*
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100315 * If the update below is reordered with respect to the sample delay
316 * modification, the utilization update handler may end up using a stale
317 * sample delay value.
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100318 */
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100319 smp_wmb();
320 policy_dbs->work_in_progress = false;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530321}
322
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100323static void dbs_irq_work(struct irq_work *irq_work)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530324{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100325 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100326
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100327 policy_dbs = container_of(irq_work, struct policy_dbs_info, irq_work);
Rafael J. Wysocki539a4c42016-03-22 01:17:43 +0100328 schedule_work_on(smp_processor_id(), &policy_dbs->work);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100329}
330
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100331static void dbs_update_util_handler(struct update_util_data *data, u64 time,
332 unsigned long util, unsigned long max)
333{
334 struct cpu_dbs_info *cdbs = container_of(data, struct cpu_dbs_info, update_util);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100335 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Rafael J. Wysocki27de3482016-02-22 14:14:34 +0100336 u64 delta_ns, lst;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530337
338 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100339 * The work may not be allowed to be queued up right now.
340 * Possible reasons:
341 * - Work has already been queued up or is in progress.
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100342 * - It is too early (too little time from the previous sample).
Viresh Kumar70f43e52015-12-09 07:34:42 +0530343 */
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100344 if (policy_dbs->work_in_progress)
345 return;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100346
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100347 /*
348 * If the reads below are reordered before the check above, the value
349 * of sample_delay_ns used in the computation may be stale.
350 */
351 smp_rmb();
Rafael J. Wysocki27de3482016-02-22 14:14:34 +0100352 lst = READ_ONCE(policy_dbs->last_sample_time);
353 delta_ns = time - lst;
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100354 if ((s64)delta_ns < policy_dbs->sample_delay_ns)
355 return;
356
357 /*
358 * If the policy is not shared, the irq_work may be queued up right away
359 * at this point. Otherwise, we need to ensure that only one of the
360 * CPUs sharing the policy will do that.
361 */
Rafael J. Wysocki27de3482016-02-22 14:14:34 +0100362 if (policy_dbs->is_shared) {
363 if (!atomic_add_unless(&policy_dbs->work_count, 1, 1))
364 return;
365
366 /*
367 * If another CPU updated last_sample_time in the meantime, we
368 * shouldn't be here, so clear the work counter and bail out.
369 */
370 if (unlikely(lst != READ_ONCE(policy_dbs->last_sample_time))) {
371 atomic_set(&policy_dbs->work_count, 0);
372 return;
373 }
374 }
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100375
376 policy_dbs->last_sample_time = time;
377 policy_dbs->work_in_progress = true;
378 irq_work_queue(&policy_dbs->irq_work);
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530379}
Viresh Kumar44472662013-01-31 17:28:02 +0000380
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100381static struct policy_dbs_info *alloc_policy_dbs_info(struct cpufreq_policy *policy,
382 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530383{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100384 struct policy_dbs_info *policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530385 int j;
386
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100387 /* Allocate memory for per-policy governor data. */
388 policy_dbs = gov->alloc();
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100389 if (!policy_dbs)
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100390 return NULL;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530391
Viresh Kumar581c2142016-02-11 17:31:14 +0530392 policy_dbs->policy = policy;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100393 mutex_init(&policy_dbs->timer_mutex);
Rafael J. Wysocki686cc632016-02-08 23:41:10 +0100394 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100395 init_irq_work(&policy_dbs->irq_work, dbs_irq_work);
396 INIT_WORK(&policy_dbs->work, dbs_work_handler);
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100397
398 /* Set policy_dbs for all CPUs, online+offline */
399 for_each_cpu(j, policy->related_cpus) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100400 struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j);
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100401
402 j_cdbs->policy_dbs = policy_dbs;
403 j_cdbs->update_util.func = dbs_update_util_handler;
404 }
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100405 return policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530406}
407
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100408static void free_policy_dbs_info(struct policy_dbs_info *policy_dbs,
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100409 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530410{
Viresh Kumar44152cb2015-07-18 11:30:59 +0530411 int j;
412
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100413 mutex_destroy(&policy_dbs->timer_mutex);
Viresh Kumar5e4500d2015-12-03 09:37:52 +0530414
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100415 for_each_cpu(j, policy_dbs->policy->related_cpus) {
416 struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530417
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100418 j_cdbs->policy_dbs = NULL;
419 j_cdbs->update_util.func = NULL;
420 }
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100421 gov->free(policy_dbs);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530422}
423
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100424static int cpufreq_governor_init(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530425{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100426 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100427 struct dbs_data *dbs_data;
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100428 struct policy_dbs_info *policy_dbs;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530429 unsigned int latency;
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100430 int ret = 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530431
Viresh Kumara72c4952015-07-18 11:31:01 +0530432 /* State should be equivalent to EXIT */
433 if (policy->governor_data)
434 return -EBUSY;
435
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100436 policy_dbs = alloc_policy_dbs_info(policy, gov);
437 if (!policy_dbs)
438 return -ENOMEM;
439
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100440 /* Protect gov->gdbs_data against concurrent updates. */
441 mutex_lock(&gov_dbs_data_mutex);
442
443 dbs_data = gov->gdbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530444 if (dbs_data) {
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100445 if (WARN_ON(have_governor_per_policy())) {
446 ret = -EINVAL;
447 goto free_policy_dbs_info;
448 }
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100449 policy_dbs->dbs_data = dbs_data;
450 policy->governor_data = policy_dbs;
Viresh Kumarc54df072016-02-10 11:00:25 +0530451
452 mutex_lock(&dbs_data->mutex);
453 dbs_data->usage_count++;
454 list_add(&policy_dbs->list, &dbs_data->policy_dbs_list);
455 mutex_unlock(&dbs_data->mutex);
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100456 goto out;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530457 }
458
459 dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100460 if (!dbs_data) {
461 ret = -ENOMEM;
462 goto free_policy_dbs_info;
463 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530464
Viresh Kumarc54df072016-02-10 11:00:25 +0530465 INIT_LIST_HEAD(&dbs_data->policy_dbs_list);
Viresh Kumarc4435632016-02-09 09:01:33 +0530466 mutex_init(&dbs_data->mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530467
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100468 ret = gov->init(dbs_data, !policy->governor->initialized);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530469 if (ret)
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100470 goto free_policy_dbs_info;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530471
472 /* policy latency is in ns. Convert it to us first */
473 latency = policy->cpuinfo.transition_latency / 1000;
474 if (latency == 0)
475 latency = 1;
476
477 /* Bring kernel and HW constraints together */
478 dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate,
479 MIN_LATENCY_MULTIPLIER * latency);
Viresh Kumarff4b1782016-02-09 09:01:32 +0530480 dbs_data->sampling_rate = max(dbs_data->min_sampling_rate,
481 LATENCY_MULTIPLIER * latency);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530482
Viresh Kumar8eec1022015-10-15 21:35:22 +0530483 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100484 gov->gdbs_data = dbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530485
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100486 policy->governor_data = policy_dbs;
Viresh Kumare4b133c2016-01-25 22:33:46 +0530487
Viresh Kumarc54df072016-02-10 11:00:25 +0530488 policy_dbs->dbs_data = dbs_data;
489 dbs_data->usage_count = 1;
490 list_add(&policy_dbs->list, &dbs_data->policy_dbs_list);
491
Viresh Kumarc4435632016-02-09 09:01:33 +0530492 gov->kobj_type.sysfs_ops = &governor_sysfs_ops;
493 ret = kobject_init_and_add(&dbs_data->kobj, &gov->kobj_type,
494 get_governor_parent_kobj(policy),
495 "%s", gov->gov.name);
Rafael J. Wysockifafd5e82016-02-08 23:57:22 +0100496 if (!ret)
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100497 goto out;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530498
Rafael J. Wysockifafd5e82016-02-08 23:57:22 +0100499 /* Failure, so roll back. */
Viresh Kumarc4435632016-02-09 09:01:33 +0530500 pr_err("cpufreq: Governor initialization failed (dbs_data kobject init error %d)\n", ret);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530501
Viresh Kumare4b133c2016-01-25 22:33:46 +0530502 policy->governor_data = NULL;
503
Viresh Kumar8eec1022015-10-15 21:35:22 +0530504 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100505 gov->gdbs_data = NULL;
506 gov->exit(dbs_data, !policy->governor->initialized);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100507 kfree(dbs_data);
508
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100509free_policy_dbs_info:
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100510 free_policy_dbs_info(policy_dbs, gov);
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100511
512out:
513 mutex_unlock(&gov_dbs_data_mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530514 return ret;
515}
516
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100517static int cpufreq_governor_exit(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530518{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100519 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100520 struct policy_dbs_info *policy_dbs = policy->governor_data;
521 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumarc54df072016-02-10 11:00:25 +0530522 int count;
Viresh Kumara72c4952015-07-18 11:31:01 +0530523
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100524 /* Protect gov->gdbs_data against concurrent updates. */
525 mutex_lock(&gov_dbs_data_mutex);
526
Viresh Kumarc54df072016-02-10 11:00:25 +0530527 mutex_lock(&dbs_data->mutex);
528 list_del(&policy_dbs->list);
529 count = --dbs_data->usage_count;
530 mutex_unlock(&dbs_data->mutex);
531
532 if (!count) {
Viresh Kumarc4435632016-02-09 09:01:33 +0530533 kobject_put(&dbs_data->kobj);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530534
Viresh Kumare4b133c2016-01-25 22:33:46 +0530535 policy->governor_data = NULL;
536
Viresh Kumar8eec1022015-10-15 21:35:22 +0530537 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100538 gov->gdbs_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530539
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100540 gov->exit(dbs_data, policy->governor->initialized == 1);
Viresh Kumarc4435632016-02-09 09:01:33 +0530541 mutex_destroy(&dbs_data->mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530542 kfree(dbs_data);
Viresh Kumare4b133c2016-01-25 22:33:46 +0530543 } else {
544 policy->governor_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530545 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530546
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100547 free_policy_dbs_info(policy_dbs, gov);
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100548
549 mutex_unlock(&gov_dbs_data_mutex);
Viresh Kumara72c4952015-07-18 11:31:01 +0530550 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530551}
552
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100553static int cpufreq_governor_start(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530554{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100555 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100556 struct policy_dbs_info *policy_dbs = policy->governor_data;
557 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100558 unsigned int sampling_rate, ignore_nice, j;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100559 unsigned int io_busy;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530560
561 if (!policy->cur)
562 return -EINVAL;
563
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100564 policy_dbs->is_shared = policy_is_shared(policy);
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100565 policy_dbs->rate_mult = 1;
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100566
Viresh Kumarff4b1782016-02-09 09:01:32 +0530567 sampling_rate = dbs_data->sampling_rate;
568 ignore_nice = dbs_data->ignore_nice_load;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +0100569 io_busy = dbs_data->io_is_busy;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530570
Viresh Kumar714a2d92015-06-04 16:43:27 +0530571 for_each_cpu(j, policy->cpus) {
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100572 struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530573 unsigned int prev_load;
574
Rafael J. Wysocki57eb8322016-02-16 00:58:47 +0100575 j_cdbs->prev_cpu_idle = get_cpu_idle_time(j, &j_cdbs->prev_cpu_wall, io_busy);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530576
Rafael J. Wysocki57eb8322016-02-16 00:58:47 +0100577 prev_load = j_cdbs->prev_cpu_wall - j_cdbs->prev_cpu_idle;
578 j_cdbs->prev_load = 100 * prev_load / (unsigned int)j_cdbs->prev_cpu_wall;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530579
580 if (ignore_nice)
581 j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Viresh Kumar714a2d92015-06-04 16:43:27 +0530582 }
583
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100584 gov->start(policy);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530585
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100586 gov_set_update_util(policy_dbs, sampling_rate);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530587 return 0;
588}
589
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100590static int cpufreq_governor_stop(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530591{
Viresh Kumar581c2142016-02-11 17:31:14 +0530592 gov_cancel_work(policy);
Viresh Kumara72c4952015-07-18 11:31:01 +0530593 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530594}
595
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100596static int cpufreq_governor_limits(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530597{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100598 struct policy_dbs_info *policy_dbs = policy->governor_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530599
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100600 mutex_lock(&policy_dbs->timer_mutex);
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100601
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100602 if (policy->max < policy->cur)
603 __cpufreq_driver_target(policy, policy->max, CPUFREQ_RELATION_H);
604 else if (policy->min > policy->cur)
605 __cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L);
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100606
607 gov_update_sample_delay(policy_dbs, 0);
608
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100609 mutex_unlock(&policy_dbs->timer_mutex);
Viresh Kumara72c4952015-07-18 11:31:01 +0530610
611 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530612}
613
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100614int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000615{
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100616 if (event == CPUFREQ_GOV_POLICY_INIT) {
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100617 return cpufreq_governor_init(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100618 } else if (policy->governor_data) {
619 switch (event) {
620 case CPUFREQ_GOV_POLICY_EXIT:
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100621 return cpufreq_governor_exit(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100622 case CPUFREQ_GOV_START:
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100623 return cpufreq_governor_start(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100624 case CPUFREQ_GOV_STOP:
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100625 return cpufreq_governor_stop(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100626 case CPUFREQ_GOV_LIMITS:
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100627 return cpufreq_governor_limits(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100628 }
Viresh Kumar732b6d62015-06-03 15:57:13 +0530629 }
Rafael J. Wysocki1112e9d2016-02-21 00:53:06 +0100630 return -EINVAL;
Viresh Kumar4471a342012-10-26 00:47:42 +0200631}
632EXPORT_SYMBOL_GPL(cpufreq_governor_dbs);