blob: fd4cdc2db238bbb7baf2ede76a579ee296d179da [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. Wysocki2bb8d942016-02-07 16:01:31 +010025DEFINE_MUTEX(dbs_data_mutex);
26EXPORT_SYMBOL_GPL(dbs_data_mutex);
27
Viresh Kumaraded3872016-02-11 17:31:15 +053028/* Common sysfs tunables */
29/**
30 * store_sampling_rate - update sampling rate effective immediately if needed.
31 *
32 * If new rate is smaller than the old, simply updating
33 * dbs.sampling_rate might not be appropriate. For example, if the
34 * original sampling_rate was 1 second and the requested new sampling rate is 10
35 * ms because the user needs immediate reaction from ondemand governor, but not
36 * sure if higher frequency will be required or not, then, the governor may
37 * change the sampling rate too late; up to 1 second later. Thus, if we are
38 * reducing the sampling rate, we need to make the new value effective
39 * immediately.
40 *
Viresh Kumaraded3872016-02-11 17:31:15 +053041 * This must be called with dbs_data->mutex held, otherwise traversing
42 * policy_dbs_list isn't safe.
43 */
44ssize_t store_sampling_rate(struct dbs_data *dbs_data, const char *buf,
45 size_t count)
46{
47 struct policy_dbs_info *policy_dbs;
48 unsigned int rate;
49 int ret;
50 ret = sscanf(buf, "%u", &rate);
51 if (ret != 1)
52 return -EINVAL;
53
54 dbs_data->sampling_rate = max(rate, dbs_data->min_sampling_rate);
55
56 /*
57 * We are operating under dbs_data->mutex and so the list and its
58 * entries can't be freed concurrently.
59 */
60 list_for_each_entry(policy_dbs, &dbs_data->policy_dbs_list, list) {
61 mutex_lock(&policy_dbs->timer_mutex);
62 /*
63 * On 32-bit architectures this may race with the
64 * sample_delay_ns read in dbs_update_util_handler(), but that
65 * really doesn't matter. If the read returns a value that's
66 * too big, the sample will be skipped, but the next invocation
67 * of dbs_update_util_handler() (when the update has been
Rafael J. Wysocki78347cd2016-02-15 02:20:11 +010068 * completed) will take a sample.
Viresh Kumaraded3872016-02-11 17:31:15 +053069 *
70 * If this runs in parallel with dbs_work_handler(), we may end
71 * up overwriting the sample_delay_ns value that it has just
Rafael J. Wysocki78347cd2016-02-15 02:20:11 +010072 * written, but it will be corrected next time a sample is
73 * taken, so it shouldn't be significant.
Viresh Kumaraded3872016-02-11 17:31:15 +053074 */
Rafael J. Wysocki78347cd2016-02-15 02:20:11 +010075 gov_update_sample_delay(policy_dbs, 0);
Viresh Kumaraded3872016-02-11 17:31:15 +053076 mutex_unlock(&policy_dbs->timer_mutex);
77 }
78
79 return count;
80}
81EXPORT_SYMBOL_GPL(store_sampling_rate);
82
Viresh Kumarc4435632016-02-09 09:01:33 +053083static inline struct dbs_data *to_dbs_data(struct kobject *kobj)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000084{
Viresh Kumarc4435632016-02-09 09:01:33 +053085 return container_of(kobj, struct dbs_data, kobj);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000086}
87
Viresh Kumarc4435632016-02-09 09:01:33 +053088static inline struct governor_attr *to_gov_attr(struct attribute *attr)
89{
90 return container_of(attr, struct governor_attr, attr);
91}
92
93static ssize_t governor_show(struct kobject *kobj, struct attribute *attr,
94 char *buf)
95{
96 struct dbs_data *dbs_data = to_dbs_data(kobj);
97 struct governor_attr *gattr = to_gov_attr(attr);
98 int ret = -EIO;
99
100 if (gattr->show)
101 ret = gattr->show(dbs_data, buf);
102
103 return ret;
104}
105
106static ssize_t governor_store(struct kobject *kobj, struct attribute *attr,
107 const char *buf, size_t count)
108{
109 struct dbs_data *dbs_data = to_dbs_data(kobj);
110 struct governor_attr *gattr = to_gov_attr(attr);
111 int ret = -EIO;
112
113 mutex_lock(&dbs_data->mutex);
114
115 if (gattr->store)
116 ret = gattr->store(dbs_data, buf, count);
117
118 mutex_unlock(&dbs_data->mutex);
119
120 return ret;
121}
122
123/*
124 * Sysfs Ops for accessing governor attributes.
125 *
126 * All show/store invocations for governor specific sysfs attributes, will first
127 * call the below show/store callbacks and the attribute specific callback will
128 * be called from within it.
129 */
130static const struct sysfs_ops governor_sysfs_ops = {
131 .show = governor_show,
132 .store = governor_store,
133};
134
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100135unsigned int dbs_update(struct cpufreq_policy *policy)
Viresh Kumar4471a342012-10-26 00:47:42 +0200136{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100137 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100138 struct policy_dbs_info *policy_dbs = policy->governor_data;
139 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4471a342012-10-26 00:47:42 +0200140 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Viresh Kumarff4b1782016-02-09 09:01:32 +0530141 unsigned int sampling_rate = dbs_data->sampling_rate;
142 unsigned int ignore_nice = dbs_data->ignore_nice_load;
Viresh Kumar4471a342012-10-26 00:47:42 +0200143 unsigned int max_load = 0;
Viresh Kumar4471a342012-10-26 00:47:42 +0200144 unsigned int j;
145
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100146 if (gov->governor == GOV_ONDEMAND) {
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530147 struct od_cpu_dbs_info_s *od_dbs_info =
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100148 gov->get_cpu_dbs_info_s(policy->cpu);
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530149
150 /*
151 * Sometimes, the ondemand governor uses an additional
152 * multiplier to give long delays. So apply this multiplier to
153 * the 'sampling_rate', so as to keep the wake-up-from-idle
154 * detection logic a bit conservative.
155 */
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530156 sampling_rate *= od_dbs_info->rate_mult;
157
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530158 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200159
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +0300160 /* Get Absolute Load */
Viresh Kumar4471a342012-10-26 00:47:42 +0200161 for_each_cpu(j, policy->cpus) {
Viresh Kumar875b8502015-06-19 17:18:03 +0530162 struct cpu_dbs_info *j_cdbs;
Stratos Karafotis9366d842013-02-28 16:57:32 +0000163 u64 cur_wall_time, cur_idle_time;
164 unsigned int idle_time, wall_time;
Viresh Kumar4471a342012-10-26 00:47:42 +0200165 unsigned int load;
Stratos Karafotis9366d842013-02-28 16:57:32 +0000166 int io_busy = 0;
Viresh Kumar4471a342012-10-26 00:47:42 +0200167
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100168 j_cdbs = gov->get_cpu_cdbs(j);
Viresh Kumar4471a342012-10-26 00:47:42 +0200169
Stratos Karafotis9366d842013-02-28 16:57:32 +0000170 /*
171 * For the purpose of ondemand, waiting for disk IO is
172 * an indication that you're performance critical, and
173 * not that the system is actually idle. So do not add
174 * the iowait time to the cpu idle time.
175 */
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100176 if (gov->governor == GOV_ONDEMAND)
Stratos Karafotis9366d842013-02-28 16:57:32 +0000177 io_busy = od_tuners->io_is_busy;
178 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time, io_busy);
Viresh Kumar4471a342012-10-26 00:47:42 +0200179
Rafael J. Wysocki57eb8322016-02-16 00:58:47 +0100180 wall_time = cur_wall_time - j_cdbs->prev_cpu_wall;
Viresh Kumar4471a342012-10-26 00:47:42 +0200181 j_cdbs->prev_cpu_wall = cur_wall_time;
182
Rafael J. Wysocki57eb8322016-02-16 00:58:47 +0100183 if (cur_idle_time <= j_cdbs->prev_cpu_idle) {
184 idle_time = 0;
185 } else {
186 idle_time = cur_idle_time - j_cdbs->prev_cpu_idle;
187 j_cdbs->prev_cpu_idle = cur_idle_time;
188 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200189
190 if (ignore_nice) {
Rafael J. Wysocki679b8fe2016-02-15 02:15:50 +0100191 u64 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Viresh Kumar4471a342012-10-26 00:47:42 +0200192
Rafael J. Wysocki679b8fe2016-02-15 02:15:50 +0100193 idle_time += cputime_to_usecs(cur_nice - j_cdbs->prev_cpu_nice);
194 j_cdbs->prev_cpu_nice = cur_nice;
Viresh Kumar4471a342012-10-26 00:47:42 +0200195 }
196
Viresh Kumar4471a342012-10-26 00:47:42 +0200197 if (unlikely(!wall_time || wall_time < idle_time))
198 continue;
199
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530200 /*
201 * If the CPU had gone completely idle, and a task just woke up
202 * on this CPU now, it would be unfair to calculate 'load' the
203 * usual way for this elapsed time-window, because it will show
204 * near-zero load, irrespective of how CPU intensive that task
205 * actually is. This is undesirable for latency-sensitive bursty
206 * workloads.
207 *
208 * To avoid this, we reuse the 'load' from the previous
209 * time-window and give this task a chance to start with a
210 * reasonably high CPU frequency. (However, we shouldn't over-do
211 * this copy, lest we get stuck at a high load (high frequency)
212 * for too long, even when the current system load has actually
213 * dropped down. So we perform the copy only once, upon the
214 * first wake-up from idle.)
215 *
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100216 * Detecting this situation is easy: the governor's utilization
217 * update handler would not have run during CPU-idle periods.
218 * Hence, an unusually large 'wall_time' (as compared to the
219 * sampling rate) indicates this scenario.
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530220 *
221 * prev_load can be zero in two cases and we must recalculate it
222 * for both cases:
223 * - during long idle intervals
224 * - explicitly set to zero
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530225 */
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530226 if (unlikely(wall_time > (2 * sampling_rate) &&
227 j_cdbs->prev_load)) {
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530228 load = j_cdbs->prev_load;
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530229
230 /*
231 * Perform a destructive copy, to ensure that we copy
232 * the previous load only once, upon the first wake-up
233 * from idle.
234 */
235 j_cdbs->prev_load = 0;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530236 } else {
237 load = 100 * (wall_time - idle_time) / wall_time;
238 j_cdbs->prev_load = load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530239 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200240
Viresh Kumar4471a342012-10-26 00:47:42 +0200241 if (load > max_load)
242 max_load = load;
243 }
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100244 return max_load;
Viresh Kumar4471a342012-10-26 00:47:42 +0200245}
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100246EXPORT_SYMBOL_GPL(dbs_update);
Viresh Kumar4471a342012-10-26 00:47:42 +0200247
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100248void gov_set_update_util(struct policy_dbs_info *policy_dbs,
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100249 unsigned int delay_us)
Viresh Kumar4471a342012-10-26 00:47:42 +0200250{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100251 struct cpufreq_policy *policy = policy_dbs->policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100252 struct dbs_governor *gov = dbs_governor_of(policy);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530253 int cpu;
Viresh Kumar4471a342012-10-26 00:47:42 +0200254
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100255 gov_update_sample_delay(policy_dbs, delay_us);
256 policy_dbs->last_sample_time = 0;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100257
Viresh Kumar70f43e52015-12-09 07:34:42 +0530258 for_each_cpu(cpu, policy->cpus) {
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100259 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(cpu);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100260
261 cpufreq_set_update_util_data(cpu, &cdbs->update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530262 }
263}
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100264EXPORT_SYMBOL_GPL(gov_set_update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530265
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100266static inline void gov_clear_update_util(struct cpufreq_policy *policy)
Viresh Kumar031299b2013-02-27 12:24:03 +0530267{
Viresh Kumar031299b2013-02-27 12:24:03 +0530268 int i;
269
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100270 for_each_cpu(i, policy->cpus)
271 cpufreq_set_update_util_data(i, NULL);
272
273 synchronize_rcu();
Viresh Kumar4471a342012-10-26 00:47:42 +0200274}
275
Viresh Kumar581c2142016-02-11 17:31:14 +0530276static void gov_cancel_work(struct cpufreq_policy *policy)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530277{
Viresh Kumar581c2142016-02-11 17:31:14 +0530278 struct policy_dbs_info *policy_dbs = policy->governor_data;
279
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100280 gov_clear_update_util(policy_dbs->policy);
281 irq_work_sync(&policy_dbs->irq_work);
282 cancel_work_sync(&policy_dbs->work);
Rafael J. Wysocki686cc632016-02-08 23:41:10 +0100283 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100284 policy_dbs->work_in_progress = false;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530285}
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530286
Viresh Kumar70f43e52015-12-09 07:34:42 +0530287static void dbs_work_handler(struct work_struct *work)
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530288{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100289 struct policy_dbs_info *policy_dbs;
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530290 struct cpufreq_policy *policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100291 struct dbs_governor *gov;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100292 unsigned int delay;
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530293
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100294 policy_dbs = container_of(work, struct policy_dbs_info, work);
295 policy = policy_dbs->policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100296 gov = dbs_governor_of(policy);
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530297
Viresh Kumar70f43e52015-12-09 07:34:42 +0530298 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100299 * Make sure cpufreq_governor_limits() isn't evaluating load or the
300 * ondemand governor isn't updating the sampling rate in parallel.
Viresh Kumar70f43e52015-12-09 07:34:42 +0530301 */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100302 mutex_lock(&policy_dbs->timer_mutex);
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100303 delay = gov->gov_dbs_timer(policy);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100304 policy_dbs->sample_delay_ns = jiffies_to_nsecs(delay);
305 mutex_unlock(&policy_dbs->timer_mutex);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530306
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100307 /* Allow the utilization update handler to queue up more work. */
308 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100309 /*
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100310 * If the update below is reordered with respect to the sample delay
311 * modification, the utilization update handler may end up using a stale
312 * sample delay value.
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100313 */
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100314 smp_wmb();
315 policy_dbs->work_in_progress = false;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530316}
317
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100318static void dbs_irq_work(struct irq_work *irq_work)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530319{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100320 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100321
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100322 policy_dbs = container_of(irq_work, struct policy_dbs_info, irq_work);
323 schedule_work(&policy_dbs->work);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100324}
325
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100326static void dbs_update_util_handler(struct update_util_data *data, u64 time,
327 unsigned long util, unsigned long max)
328{
329 struct cpu_dbs_info *cdbs = container_of(data, struct cpu_dbs_info, update_util);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100330 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100331 u64 delta_ns;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530332
333 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100334 * The work may not be allowed to be queued up right now.
335 * Possible reasons:
336 * - Work has already been queued up or is in progress.
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100337 * - It is too early (too little time from the previous sample).
Viresh Kumar70f43e52015-12-09 07:34:42 +0530338 */
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100339 if (policy_dbs->work_in_progress)
340 return;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100341
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100342 /*
343 * If the reads below are reordered before the check above, the value
344 * of sample_delay_ns used in the computation may be stale.
345 */
346 smp_rmb();
347 delta_ns = time - policy_dbs->last_sample_time;
348 if ((s64)delta_ns < policy_dbs->sample_delay_ns)
349 return;
350
351 /*
352 * If the policy is not shared, the irq_work may be queued up right away
353 * at this point. Otherwise, we need to ensure that only one of the
354 * CPUs sharing the policy will do that.
355 */
356 if (policy_dbs->is_shared &&
357 !atomic_add_unless(&policy_dbs->work_count, 1, 1))
358 return;
359
360 policy_dbs->last_sample_time = time;
361 policy_dbs->work_in_progress = true;
362 irq_work_queue(&policy_dbs->irq_work);
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530363}
Viresh Kumar44472662013-01-31 17:28:02 +0000364
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100365static struct policy_dbs_info *alloc_policy_dbs_info(struct cpufreq_policy *policy,
366 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530367{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100368 struct policy_dbs_info *policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530369 int j;
370
371 /* Allocate memory for the common information for policy->cpus */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100372 policy_dbs = kzalloc(sizeof(*policy_dbs), GFP_KERNEL);
373 if (!policy_dbs)
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100374 return NULL;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530375
Viresh Kumar581c2142016-02-11 17:31:14 +0530376 policy_dbs->policy = policy;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100377 mutex_init(&policy_dbs->timer_mutex);
Rafael J. Wysocki686cc632016-02-08 23:41:10 +0100378 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100379 init_irq_work(&policy_dbs->irq_work, dbs_irq_work);
380 INIT_WORK(&policy_dbs->work, dbs_work_handler);
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100381
382 /* Set policy_dbs for all CPUs, online+offline */
383 for_each_cpu(j, policy->related_cpus) {
384 struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j);
385
386 j_cdbs->policy_dbs = policy_dbs;
387 j_cdbs->update_util.func = dbs_update_util_handler;
388 }
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100389 return policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530390}
391
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100392static void free_policy_dbs_info(struct cpufreq_policy *policy,
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100393 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530394{
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100395 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(policy->cpu);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100396 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530397 int j;
398
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100399 mutex_destroy(&policy_dbs->timer_mutex);
Viresh Kumar5e4500d2015-12-03 09:37:52 +0530400
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100401 for_each_cpu(j, policy->related_cpus) {
402 struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530403
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100404 j_cdbs->policy_dbs = NULL;
405 j_cdbs->update_util.func = NULL;
406 }
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100407 kfree(policy_dbs);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530408}
409
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100410static int cpufreq_governor_init(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530411{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100412 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100413 struct dbs_data *dbs_data = gov->gdbs_data;
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100414 struct policy_dbs_info *policy_dbs;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530415 unsigned int latency;
416 int ret;
417
Viresh Kumara72c4952015-07-18 11:31:01 +0530418 /* State should be equivalent to EXIT */
419 if (policy->governor_data)
420 return -EBUSY;
421
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100422 policy_dbs = alloc_policy_dbs_info(policy, gov);
423 if (!policy_dbs)
424 return -ENOMEM;
425
Viresh Kumar714a2d92015-06-04 16:43:27 +0530426 if (dbs_data) {
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100427 if (WARN_ON(have_governor_per_policy())) {
428 ret = -EINVAL;
429 goto free_policy_dbs_info;
430 }
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100431 policy_dbs->dbs_data = dbs_data;
432 policy->governor_data = policy_dbs;
Viresh Kumarc54df072016-02-10 11:00:25 +0530433
434 mutex_lock(&dbs_data->mutex);
435 dbs_data->usage_count++;
436 list_add(&policy_dbs->list, &dbs_data->policy_dbs_list);
437 mutex_unlock(&dbs_data->mutex);
438
Viresh Kumar714a2d92015-06-04 16:43:27 +0530439 return 0;
440 }
441
442 dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100443 if (!dbs_data) {
444 ret = -ENOMEM;
445 goto free_policy_dbs_info;
446 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530447
Viresh Kumarc54df072016-02-10 11:00:25 +0530448 INIT_LIST_HEAD(&dbs_data->policy_dbs_list);
Viresh Kumarc4435632016-02-09 09:01:33 +0530449 mutex_init(&dbs_data->mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530450
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100451 ret = gov->init(dbs_data, !policy->governor->initialized);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530452 if (ret)
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100453 goto free_policy_dbs_info;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530454
455 /* policy latency is in ns. Convert it to us first */
456 latency = policy->cpuinfo.transition_latency / 1000;
457 if (latency == 0)
458 latency = 1;
459
460 /* Bring kernel and HW constraints together */
461 dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate,
462 MIN_LATENCY_MULTIPLIER * latency);
Viresh Kumarff4b1782016-02-09 09:01:32 +0530463 dbs_data->sampling_rate = max(dbs_data->min_sampling_rate,
464 LATENCY_MULTIPLIER * latency);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530465
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 = dbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530468
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100469 policy->governor_data = policy_dbs;
Viresh Kumare4b133c2016-01-25 22:33:46 +0530470
Viresh Kumarc54df072016-02-10 11:00:25 +0530471 policy_dbs->dbs_data = dbs_data;
472 dbs_data->usage_count = 1;
473 list_add(&policy_dbs->list, &dbs_data->policy_dbs_list);
474
Viresh Kumarc4435632016-02-09 09:01:33 +0530475 gov->kobj_type.sysfs_ops = &governor_sysfs_ops;
476 ret = kobject_init_and_add(&dbs_data->kobj, &gov->kobj_type,
477 get_governor_parent_kobj(policy),
478 "%s", gov->gov.name);
Rafael J. Wysockifafd5e82016-02-08 23:57:22 +0100479 if (!ret)
480 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530481
Rafael J. Wysockifafd5e82016-02-08 23:57:22 +0100482 /* Failure, so roll back. */
Viresh Kumarc4435632016-02-09 09:01:33 +0530483 pr_err("cpufreq: Governor initialization failed (dbs_data kobject init error %d)\n", ret);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530484
Viresh Kumare4b133c2016-01-25 22:33:46 +0530485 policy->governor_data = NULL;
486
Viresh Kumar8eec1022015-10-15 21:35:22 +0530487 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100488 gov->gdbs_data = NULL;
489 gov->exit(dbs_data, !policy->governor->initialized);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100490 kfree(dbs_data);
491
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100492free_policy_dbs_info:
493 free_policy_dbs_info(policy, gov);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530494 return ret;
495}
496
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100497static int cpufreq_governor_exit(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530498{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100499 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100500 struct policy_dbs_info *policy_dbs = policy->governor_data;
501 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumarc54df072016-02-10 11:00:25 +0530502 int count;
Viresh Kumara72c4952015-07-18 11:31:01 +0530503
Viresh Kumarc54df072016-02-10 11:00:25 +0530504 mutex_lock(&dbs_data->mutex);
505 list_del(&policy_dbs->list);
506 count = --dbs_data->usage_count;
507 mutex_unlock(&dbs_data->mutex);
508
509 if (!count) {
Viresh Kumarc4435632016-02-09 09:01:33 +0530510 kobject_put(&dbs_data->kobj);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530511
Viresh Kumare4b133c2016-01-25 22:33:46 +0530512 policy->governor_data = NULL;
513
Viresh Kumar8eec1022015-10-15 21:35:22 +0530514 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100515 gov->gdbs_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530516
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100517 gov->exit(dbs_data, policy->governor->initialized == 1);
Viresh Kumarc4435632016-02-09 09:01:33 +0530518 mutex_destroy(&dbs_data->mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530519 kfree(dbs_data);
Viresh Kumare4b133c2016-01-25 22:33:46 +0530520 } else {
521 policy->governor_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530522 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530523
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100524 free_policy_dbs_info(policy, gov);
Viresh Kumara72c4952015-07-18 11:31:01 +0530525 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530526}
527
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100528static int cpufreq_governor_start(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530529{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100530 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100531 struct policy_dbs_info *policy_dbs = policy->governor_data;
532 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530533 unsigned int sampling_rate, ignore_nice, j, cpu = policy->cpu;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530534 int io_busy = 0;
535
536 if (!policy->cur)
537 return -EINVAL;
538
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100539 policy_dbs->is_shared = policy_is_shared(policy);
540
Viresh Kumarff4b1782016-02-09 09:01:32 +0530541 sampling_rate = dbs_data->sampling_rate;
542 ignore_nice = dbs_data->ignore_nice_load;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530543
Viresh Kumarff4b1782016-02-09 09:01:32 +0530544 if (gov->governor == GOV_ONDEMAND) {
Viresh Kumar714a2d92015-06-04 16:43:27 +0530545 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
546
Viresh Kumar714a2d92015-06-04 16:43:27 +0530547 io_busy = od_tuners->io_is_busy;
548 }
549
Viresh Kumar714a2d92015-06-04 16:43:27 +0530550 for_each_cpu(j, policy->cpus) {
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100551 struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530552 unsigned int prev_load;
553
Rafael J. Wysocki57eb8322016-02-16 00:58:47 +0100554 j_cdbs->prev_cpu_idle = get_cpu_idle_time(j, &j_cdbs->prev_cpu_wall, io_busy);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530555
Rafael J. Wysocki57eb8322016-02-16 00:58:47 +0100556 prev_load = j_cdbs->prev_cpu_wall - j_cdbs->prev_cpu_idle;
557 j_cdbs->prev_load = 100 * prev_load / (unsigned int)j_cdbs->prev_cpu_wall;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530558
559 if (ignore_nice)
560 j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Viresh Kumar714a2d92015-06-04 16:43:27 +0530561 }
562
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100563 if (gov->governor == GOV_CONSERVATIVE) {
Viresh Kumar714a2d92015-06-04 16:43:27 +0530564 struct cs_cpu_dbs_info_s *cs_dbs_info =
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100565 gov->get_cpu_dbs_info_s(cpu);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530566
567 cs_dbs_info->down_skip = 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530568 cs_dbs_info->requested_freq = policy->cur;
569 } else {
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100570 struct od_ops *od_ops = gov->gov_ops;
571 struct od_cpu_dbs_info_s *od_dbs_info = gov->get_cpu_dbs_info_s(cpu);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530572
573 od_dbs_info->rate_mult = 1;
574 od_dbs_info->sample_type = OD_NORMAL_SAMPLE;
575 od_ops->powersave_bias_init_cpu(cpu);
576 }
577
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100578 gov_set_update_util(policy_dbs, sampling_rate);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530579 return 0;
580}
581
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100582static int cpufreq_governor_stop(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530583{
Viresh Kumar581c2142016-02-11 17:31:14 +0530584 gov_cancel_work(policy);
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530585
Viresh Kumara72c4952015-07-18 11:31:01 +0530586 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530587}
588
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100589static int cpufreq_governor_limits(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530590{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100591 struct policy_dbs_info *policy_dbs = policy->governor_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530592
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100593 mutex_lock(&policy_dbs->timer_mutex);
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100594
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100595 if (policy->max < policy->cur)
596 __cpufreq_driver_target(policy, policy->max, CPUFREQ_RELATION_H);
597 else if (policy->min > policy->cur)
598 __cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L);
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100599
600 gov_update_sample_delay(policy_dbs, 0);
601
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100602 mutex_unlock(&policy_dbs->timer_mutex);
Viresh Kumara72c4952015-07-18 11:31:01 +0530603
604 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530605}
606
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100607int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000608{
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100609 int ret = -EINVAL;
Viresh Kumar4471a342012-10-26 00:47:42 +0200610
Viresh Kumar732b6d62015-06-03 15:57:13 +0530611 /* Lock governor to block concurrent initialization of governor */
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +0100612 mutex_lock(&dbs_data_mutex);
Viresh Kumar732b6d62015-06-03 15:57:13 +0530613
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100614 if (event == CPUFREQ_GOV_POLICY_INIT) {
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100615 ret = cpufreq_governor_init(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100616 } else if (policy->governor_data) {
617 switch (event) {
618 case CPUFREQ_GOV_POLICY_EXIT:
619 ret = cpufreq_governor_exit(policy);
620 break;
621 case CPUFREQ_GOV_START:
622 ret = cpufreq_governor_start(policy);
623 break;
624 case CPUFREQ_GOV_STOP:
625 ret = cpufreq_governor_stop(policy);
626 break;
627 case CPUFREQ_GOV_LIMITS:
628 ret = cpufreq_governor_limits(policy);
629 break;
630 }
Viresh Kumar732b6d62015-06-03 15:57:13 +0530631 }
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000632
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +0100633 mutex_unlock(&dbs_data_mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530634 return ret;
Viresh Kumar4471a342012-10-26 00:47:42 +0200635}
636EXPORT_SYMBOL_GPL(cpufreq_governor_dbs);