blob: c5469701a3ef8886e8a11b51d5c6e14d9af7ef9b [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 *
41 * On the other hand, if new rate is larger than the old, then we may evaluate
42 * the load too soon, and it might we worth updating sample_delay_ns then as
43 * well.
44 *
45 * This must be called with dbs_data->mutex held, otherwise traversing
46 * policy_dbs_list isn't safe.
47 */
48ssize_t store_sampling_rate(struct dbs_data *dbs_data, const char *buf,
49 size_t count)
50{
51 struct policy_dbs_info *policy_dbs;
52 unsigned int rate;
53 int ret;
54 ret = sscanf(buf, "%u", &rate);
55 if (ret != 1)
56 return -EINVAL;
57
58 dbs_data->sampling_rate = max(rate, dbs_data->min_sampling_rate);
59
60 /*
61 * We are operating under dbs_data->mutex and so the list and its
62 * entries can't be freed concurrently.
63 */
64 list_for_each_entry(policy_dbs, &dbs_data->policy_dbs_list, list) {
65 mutex_lock(&policy_dbs->timer_mutex);
66 /*
67 * On 32-bit architectures this may race with the
68 * sample_delay_ns read in dbs_update_util_handler(), but that
69 * really doesn't matter. If the read returns a value that's
70 * too big, the sample will be skipped, but the next invocation
71 * of dbs_update_util_handler() (when the update has been
72 * completed) will take a sample. If the returned value is too
73 * small, the sample will be taken immediately, but that isn't a
74 * problem, as we want the new rate to take effect immediately
75 * anyway.
76 *
77 * If this runs in parallel with dbs_work_handler(), we may end
78 * up overwriting the sample_delay_ns value that it has just
79 * written, but the difference should not be too big and it will
80 * be corrected next time a sample is taken, so it shouldn't be
81 * significant.
82 */
83 gov_update_sample_delay(policy_dbs, dbs_data->sampling_rate);
84 mutex_unlock(&policy_dbs->timer_mutex);
85 }
86
87 return count;
88}
89EXPORT_SYMBOL_GPL(store_sampling_rate);
90
Viresh Kumarc4435632016-02-09 09:01:33 +053091static inline struct dbs_data *to_dbs_data(struct kobject *kobj)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000092{
Viresh Kumarc4435632016-02-09 09:01:33 +053093 return container_of(kobj, struct dbs_data, kobj);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000094}
95
Viresh Kumarc4435632016-02-09 09:01:33 +053096static inline struct governor_attr *to_gov_attr(struct attribute *attr)
97{
98 return container_of(attr, struct governor_attr, attr);
99}
100
101static ssize_t governor_show(struct kobject *kobj, struct attribute *attr,
102 char *buf)
103{
104 struct dbs_data *dbs_data = to_dbs_data(kobj);
105 struct governor_attr *gattr = to_gov_attr(attr);
106 int ret = -EIO;
107
108 if (gattr->show)
109 ret = gattr->show(dbs_data, buf);
110
111 return ret;
112}
113
114static ssize_t governor_store(struct kobject *kobj, struct attribute *attr,
115 const char *buf, size_t count)
116{
117 struct dbs_data *dbs_data = to_dbs_data(kobj);
118 struct governor_attr *gattr = to_gov_attr(attr);
119 int ret = -EIO;
120
121 mutex_lock(&dbs_data->mutex);
122
123 if (gattr->store)
124 ret = gattr->store(dbs_data, buf, count);
125
126 mutex_unlock(&dbs_data->mutex);
127
128 return ret;
129}
130
131/*
132 * Sysfs Ops for accessing governor attributes.
133 *
134 * All show/store invocations for governor specific sysfs attributes, will first
135 * call the below show/store callbacks and the attribute specific callback will
136 * be called from within it.
137 */
138static const struct sysfs_ops governor_sysfs_ops = {
139 .show = governor_show,
140 .store = governor_store,
141};
142
Rafael J. Wysockid10b5eb2016-02-06 13:50:24 +0100143void dbs_check_cpu(struct cpufreq_policy *policy)
Viresh Kumar4471a342012-10-26 00:47:42 +0200144{
Rafael J. Wysockid10b5eb2016-02-06 13:50:24 +0100145 int cpu = policy->cpu;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100146 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100147 struct policy_dbs_info *policy_dbs = policy->governor_data;
148 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4471a342012-10-26 00:47:42 +0200149 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
Viresh Kumarff4b1782016-02-09 09:01:32 +0530150 unsigned int sampling_rate = dbs_data->sampling_rate;
151 unsigned int ignore_nice = dbs_data->ignore_nice_load;
Viresh Kumar4471a342012-10-26 00:47:42 +0200152 unsigned int max_load = 0;
Viresh Kumar4471a342012-10-26 00:47:42 +0200153 unsigned int j;
154
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100155 if (gov->governor == GOV_ONDEMAND) {
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530156 struct od_cpu_dbs_info_s *od_dbs_info =
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100157 gov->get_cpu_dbs_info_s(cpu);
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530158
159 /*
160 * Sometimes, the ondemand governor uses an additional
161 * multiplier to give long delays. So apply this multiplier to
162 * the 'sampling_rate', so as to keep the wake-up-from-idle
163 * detection logic a bit conservative.
164 */
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530165 sampling_rate *= od_dbs_info->rate_mult;
166
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530167 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200168
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +0300169 /* Get Absolute Load */
Viresh Kumar4471a342012-10-26 00:47:42 +0200170 for_each_cpu(j, policy->cpus) {
Viresh Kumar875b8502015-06-19 17:18:03 +0530171 struct cpu_dbs_info *j_cdbs;
Stratos Karafotis9366d842013-02-28 16:57:32 +0000172 u64 cur_wall_time, cur_idle_time;
173 unsigned int idle_time, wall_time;
Viresh Kumar4471a342012-10-26 00:47:42 +0200174 unsigned int load;
Stratos Karafotis9366d842013-02-28 16:57:32 +0000175 int io_busy = 0;
Viresh Kumar4471a342012-10-26 00:47:42 +0200176
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100177 j_cdbs = gov->get_cpu_cdbs(j);
Viresh Kumar4471a342012-10-26 00:47:42 +0200178
Stratos Karafotis9366d842013-02-28 16:57:32 +0000179 /*
180 * For the purpose of ondemand, waiting for disk IO is
181 * an indication that you're performance critical, and
182 * not that the system is actually idle. So do not add
183 * the iowait time to the cpu idle time.
184 */
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100185 if (gov->governor == GOV_ONDEMAND)
Stratos Karafotis9366d842013-02-28 16:57:32 +0000186 io_busy = od_tuners->io_is_busy;
187 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time, io_busy);
Viresh Kumar4471a342012-10-26 00:47:42 +0200188
189 wall_time = (unsigned int)
190 (cur_wall_time - j_cdbs->prev_cpu_wall);
191 j_cdbs->prev_cpu_wall = cur_wall_time;
192
Chen Yu0df35022015-12-16 12:20:29 +0800193 if (cur_idle_time < j_cdbs->prev_cpu_idle)
194 cur_idle_time = j_cdbs->prev_cpu_idle;
195
Viresh Kumar4471a342012-10-26 00:47:42 +0200196 idle_time = (unsigned int)
197 (cur_idle_time - j_cdbs->prev_cpu_idle);
198 j_cdbs->prev_cpu_idle = cur_idle_time;
199
200 if (ignore_nice) {
Rafael J. Wysocki679b8fe2016-02-15 02:15:50 +0100201 u64 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Viresh Kumar4471a342012-10-26 00:47:42 +0200202
Rafael J. Wysocki679b8fe2016-02-15 02:15:50 +0100203 idle_time += cputime_to_usecs(cur_nice - j_cdbs->prev_cpu_nice);
204 j_cdbs->prev_cpu_nice = cur_nice;
Viresh Kumar4471a342012-10-26 00:47:42 +0200205 }
206
Viresh Kumar4471a342012-10-26 00:47:42 +0200207 if (unlikely(!wall_time || wall_time < idle_time))
208 continue;
209
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530210 /*
211 * If the CPU had gone completely idle, and a task just woke up
212 * on this CPU now, it would be unfair to calculate 'load' the
213 * usual way for this elapsed time-window, because it will show
214 * near-zero load, irrespective of how CPU intensive that task
215 * actually is. This is undesirable for latency-sensitive bursty
216 * workloads.
217 *
218 * To avoid this, we reuse the 'load' from the previous
219 * time-window and give this task a chance to start with a
220 * reasonably high CPU frequency. (However, we shouldn't over-do
221 * this copy, lest we get stuck at a high load (high frequency)
222 * for too long, even when the current system load has actually
223 * dropped down. So we perform the copy only once, upon the
224 * first wake-up from idle.)
225 *
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100226 * Detecting this situation is easy: the governor's utilization
227 * update handler would not have run during CPU-idle periods.
228 * Hence, an unusually large 'wall_time' (as compared to the
229 * sampling rate) indicates this scenario.
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530230 *
231 * prev_load can be zero in two cases and we must recalculate it
232 * for both cases:
233 * - during long idle intervals
234 * - explicitly set to zero
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530235 */
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530236 if (unlikely(wall_time > (2 * sampling_rate) &&
237 j_cdbs->prev_load)) {
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530238 load = j_cdbs->prev_load;
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530239
240 /*
241 * Perform a destructive copy, to ensure that we copy
242 * the previous load only once, upon the first wake-up
243 * from idle.
244 */
245 j_cdbs->prev_load = 0;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530246 } else {
247 load = 100 * (wall_time - idle_time) / wall_time;
248 j_cdbs->prev_load = load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530249 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200250
Viresh Kumar4471a342012-10-26 00:47:42 +0200251 if (load > max_load)
252 max_load = load;
253 }
254
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100255 gov->gov_check_cpu(cpu, max_load);
Viresh Kumar4471a342012-10-26 00:47:42 +0200256}
257EXPORT_SYMBOL_GPL(dbs_check_cpu);
258
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100259void gov_set_update_util(struct policy_dbs_info *policy_dbs,
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100260 unsigned int delay_us)
Viresh Kumar4471a342012-10-26 00:47:42 +0200261{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100262 struct cpufreq_policy *policy = policy_dbs->policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100263 struct dbs_governor *gov = dbs_governor_of(policy);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530264 int cpu;
Viresh Kumar4471a342012-10-26 00:47:42 +0200265
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100266 gov_update_sample_delay(policy_dbs, delay_us);
267 policy_dbs->last_sample_time = 0;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100268
Viresh Kumar70f43e52015-12-09 07:34:42 +0530269 for_each_cpu(cpu, policy->cpus) {
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100270 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(cpu);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100271
272 cpufreq_set_update_util_data(cpu, &cdbs->update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530273 }
274}
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100275EXPORT_SYMBOL_GPL(gov_set_update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530276
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100277static inline void gov_clear_update_util(struct cpufreq_policy *policy)
Viresh Kumar031299b2013-02-27 12:24:03 +0530278{
Viresh Kumar031299b2013-02-27 12:24:03 +0530279 int i;
280
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100281 for_each_cpu(i, policy->cpus)
282 cpufreq_set_update_util_data(i, NULL);
283
284 synchronize_rcu();
Viresh Kumar4471a342012-10-26 00:47:42 +0200285}
286
Viresh Kumar581c2142016-02-11 17:31:14 +0530287static void gov_cancel_work(struct cpufreq_policy *policy)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530288{
Viresh Kumar581c2142016-02-11 17:31:14 +0530289 struct policy_dbs_info *policy_dbs = policy->governor_data;
290
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100291 gov_clear_update_util(policy_dbs->policy);
292 irq_work_sync(&policy_dbs->irq_work);
293 cancel_work_sync(&policy_dbs->work);
Rafael J. Wysocki686cc632016-02-08 23:41:10 +0100294 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100295 policy_dbs->work_in_progress = false;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530296}
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530297
Viresh Kumar70f43e52015-12-09 07:34:42 +0530298static void dbs_work_handler(struct work_struct *work)
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530299{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100300 struct policy_dbs_info *policy_dbs;
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530301 struct cpufreq_policy *policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100302 struct dbs_governor *gov;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100303 unsigned int delay;
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530304
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100305 policy_dbs = container_of(work, struct policy_dbs_info, work);
306 policy = policy_dbs->policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100307 gov = dbs_governor_of(policy);
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530308
Viresh Kumar70f43e52015-12-09 07:34:42 +0530309 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100310 * Make sure cpufreq_governor_limits() isn't evaluating load or the
311 * ondemand governor isn't updating the sampling rate in parallel.
Viresh Kumar70f43e52015-12-09 07:34:42 +0530312 */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100313 mutex_lock(&policy_dbs->timer_mutex);
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100314 delay = gov->gov_dbs_timer(policy);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100315 policy_dbs->sample_delay_ns = jiffies_to_nsecs(delay);
316 mutex_unlock(&policy_dbs->timer_mutex);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530317
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100318 /* Allow the utilization update handler to queue up more work. */
319 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100320 /*
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100321 * If the update below is reordered with respect to the sample delay
322 * modification, the utilization update handler may end up using a stale
323 * sample delay value.
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100324 */
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100325 smp_wmb();
326 policy_dbs->work_in_progress = false;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530327}
328
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100329static void dbs_irq_work(struct irq_work *irq_work)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530330{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100331 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100332
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100333 policy_dbs = container_of(irq_work, struct policy_dbs_info, irq_work);
334 schedule_work(&policy_dbs->work);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100335}
336
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100337static void dbs_update_util_handler(struct update_util_data *data, u64 time,
338 unsigned long util, unsigned long max)
339{
340 struct cpu_dbs_info *cdbs = container_of(data, struct cpu_dbs_info, update_util);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100341 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100342 u64 delta_ns;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530343
344 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100345 * The work may not be allowed to be queued up right now.
346 * Possible reasons:
347 * - Work has already been queued up or is in progress.
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100348 * - It is too early (too little time from the previous sample).
Viresh Kumar70f43e52015-12-09 07:34:42 +0530349 */
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100350 if (policy_dbs->work_in_progress)
351 return;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100352
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100353 /*
354 * If the reads below are reordered before the check above, the value
355 * of sample_delay_ns used in the computation may be stale.
356 */
357 smp_rmb();
358 delta_ns = time - policy_dbs->last_sample_time;
359 if ((s64)delta_ns < policy_dbs->sample_delay_ns)
360 return;
361
362 /*
363 * If the policy is not shared, the irq_work may be queued up right away
364 * at this point. Otherwise, we need to ensure that only one of the
365 * CPUs sharing the policy will do that.
366 */
367 if (policy_dbs->is_shared &&
368 !atomic_add_unless(&policy_dbs->work_count, 1, 1))
369 return;
370
371 policy_dbs->last_sample_time = time;
372 policy_dbs->work_in_progress = true;
373 irq_work_queue(&policy_dbs->irq_work);
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530374}
Viresh Kumar44472662013-01-31 17:28:02 +0000375
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100376static struct policy_dbs_info *alloc_policy_dbs_info(struct cpufreq_policy *policy,
377 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530378{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100379 struct policy_dbs_info *policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530380 int j;
381
382 /* Allocate memory for the common information for policy->cpus */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100383 policy_dbs = kzalloc(sizeof(*policy_dbs), GFP_KERNEL);
384 if (!policy_dbs)
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100385 return NULL;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530386
Viresh Kumar581c2142016-02-11 17:31:14 +0530387 policy_dbs->policy = policy;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100388 mutex_init(&policy_dbs->timer_mutex);
Rafael J. Wysocki686cc632016-02-08 23:41:10 +0100389 atomic_set(&policy_dbs->work_count, 0);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100390 init_irq_work(&policy_dbs->irq_work, dbs_irq_work);
391 INIT_WORK(&policy_dbs->work, dbs_work_handler);
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100392
393 /* Set policy_dbs for all CPUs, online+offline */
394 for_each_cpu(j, policy->related_cpus) {
395 struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j);
396
397 j_cdbs->policy_dbs = policy_dbs;
398 j_cdbs->update_util.func = dbs_update_util_handler;
399 }
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100400 return policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530401}
402
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100403static void free_policy_dbs_info(struct cpufreq_policy *policy,
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100404 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530405{
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100406 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(policy->cpu);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100407 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530408 int j;
409
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100410 mutex_destroy(&policy_dbs->timer_mutex);
Viresh Kumar5e4500d2015-12-03 09:37:52 +0530411
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100412 for_each_cpu(j, policy->related_cpus) {
413 struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530414
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100415 j_cdbs->policy_dbs = NULL;
416 j_cdbs->update_util.func = NULL;
417 }
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100418 kfree(policy_dbs);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530419}
420
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100421static int cpufreq_governor_init(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530422{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100423 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100424 struct dbs_data *dbs_data = gov->gdbs_data;
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100425 struct policy_dbs_info *policy_dbs;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530426 unsigned int latency;
427 int ret;
428
Viresh Kumara72c4952015-07-18 11:31:01 +0530429 /* State should be equivalent to EXIT */
430 if (policy->governor_data)
431 return -EBUSY;
432
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100433 policy_dbs = alloc_policy_dbs_info(policy, gov);
434 if (!policy_dbs)
435 return -ENOMEM;
436
Viresh Kumar714a2d92015-06-04 16:43:27 +0530437 if (dbs_data) {
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100438 if (WARN_ON(have_governor_per_policy())) {
439 ret = -EINVAL;
440 goto free_policy_dbs_info;
441 }
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100442 policy_dbs->dbs_data = dbs_data;
443 policy->governor_data = policy_dbs;
Viresh Kumarc54df072016-02-10 11:00:25 +0530444
445 mutex_lock(&dbs_data->mutex);
446 dbs_data->usage_count++;
447 list_add(&policy_dbs->list, &dbs_data->policy_dbs_list);
448 mutex_unlock(&dbs_data->mutex);
449
Viresh Kumar714a2d92015-06-04 16:43:27 +0530450 return 0;
451 }
452
453 dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100454 if (!dbs_data) {
455 ret = -ENOMEM;
456 goto free_policy_dbs_info;
457 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530458
Viresh Kumarc54df072016-02-10 11:00:25 +0530459 INIT_LIST_HEAD(&dbs_data->policy_dbs_list);
Viresh Kumarc4435632016-02-09 09:01:33 +0530460 mutex_init(&dbs_data->mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530461
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100462 ret = gov->init(dbs_data, !policy->governor->initialized);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530463 if (ret)
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100464 goto free_policy_dbs_info;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530465
466 /* policy latency is in ns. Convert it to us first */
467 latency = policy->cpuinfo.transition_latency / 1000;
468 if (latency == 0)
469 latency = 1;
470
471 /* Bring kernel and HW constraints together */
472 dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate,
473 MIN_LATENCY_MULTIPLIER * latency);
Viresh Kumarff4b1782016-02-09 09:01:32 +0530474 dbs_data->sampling_rate = max(dbs_data->min_sampling_rate,
475 LATENCY_MULTIPLIER * latency);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530476
Viresh Kumar8eec1022015-10-15 21:35:22 +0530477 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100478 gov->gdbs_data = dbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530479
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100480 policy->governor_data = policy_dbs;
Viresh Kumare4b133c2016-01-25 22:33:46 +0530481
Viresh Kumarc54df072016-02-10 11:00:25 +0530482 policy_dbs->dbs_data = dbs_data;
483 dbs_data->usage_count = 1;
484 list_add(&policy_dbs->list, &dbs_data->policy_dbs_list);
485
Viresh Kumarc4435632016-02-09 09:01:33 +0530486 gov->kobj_type.sysfs_ops = &governor_sysfs_ops;
487 ret = kobject_init_and_add(&dbs_data->kobj, &gov->kobj_type,
488 get_governor_parent_kobj(policy),
489 "%s", gov->gov.name);
Rafael J. Wysockifafd5e82016-02-08 23:57:22 +0100490 if (!ret)
491 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530492
Rafael J. Wysockifafd5e82016-02-08 23:57:22 +0100493 /* Failure, so roll back. */
Viresh Kumarc4435632016-02-09 09:01:33 +0530494 pr_err("cpufreq: Governor initialization failed (dbs_data kobject init error %d)\n", ret);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530495
Viresh Kumare4b133c2016-01-25 22:33:46 +0530496 policy->governor_data = NULL;
497
Viresh Kumar8eec1022015-10-15 21:35:22 +0530498 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100499 gov->gdbs_data = NULL;
500 gov->exit(dbs_data, !policy->governor->initialized);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100501 kfree(dbs_data);
502
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100503free_policy_dbs_info:
504 free_policy_dbs_info(policy, gov);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530505 return ret;
506}
507
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100508static int cpufreq_governor_exit(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;
Viresh Kumarc54df072016-02-10 11:00:25 +0530513 int count;
Viresh Kumara72c4952015-07-18 11:31:01 +0530514
Viresh Kumarc54df072016-02-10 11:00:25 +0530515 mutex_lock(&dbs_data->mutex);
516 list_del(&policy_dbs->list);
517 count = --dbs_data->usage_count;
518 mutex_unlock(&dbs_data->mutex);
519
520 if (!count) {
Viresh Kumarc4435632016-02-09 09:01:33 +0530521 kobject_put(&dbs_data->kobj);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530522
Viresh Kumare4b133c2016-01-25 22:33:46 +0530523 policy->governor_data = NULL;
524
Viresh Kumar8eec1022015-10-15 21:35:22 +0530525 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100526 gov->gdbs_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530527
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100528 gov->exit(dbs_data, policy->governor->initialized == 1);
Viresh Kumarc4435632016-02-09 09:01:33 +0530529 mutex_destroy(&dbs_data->mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530530 kfree(dbs_data);
Viresh Kumare4b133c2016-01-25 22:33:46 +0530531 } else {
532 policy->governor_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530533 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530534
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100535 free_policy_dbs_info(policy, gov);
Viresh Kumara72c4952015-07-18 11:31:01 +0530536 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530537}
538
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100539static int cpufreq_governor_start(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530540{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100541 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100542 struct policy_dbs_info *policy_dbs = policy->governor_data;
543 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530544 unsigned int sampling_rate, ignore_nice, j, cpu = policy->cpu;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530545 int io_busy = 0;
546
547 if (!policy->cur)
548 return -EINVAL;
549
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100550 policy_dbs->is_shared = policy_is_shared(policy);
551
Viresh Kumarff4b1782016-02-09 09:01:32 +0530552 sampling_rate = dbs_data->sampling_rate;
553 ignore_nice = dbs_data->ignore_nice_load;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530554
Viresh Kumarff4b1782016-02-09 09:01:32 +0530555 if (gov->governor == GOV_ONDEMAND) {
Viresh Kumar714a2d92015-06-04 16:43:27 +0530556 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
557
Viresh Kumar714a2d92015-06-04 16:43:27 +0530558 io_busy = od_tuners->io_is_busy;
559 }
560
Viresh Kumar714a2d92015-06-04 16:43:27 +0530561 for_each_cpu(j, policy->cpus) {
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100562 struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530563 unsigned int prev_load;
564
Viresh Kumar714a2d92015-06-04 16:43:27 +0530565 j_cdbs->prev_cpu_idle =
566 get_cpu_idle_time(j, &j_cdbs->prev_cpu_wall, io_busy);
567
568 prev_load = (unsigned int)(j_cdbs->prev_cpu_wall -
569 j_cdbs->prev_cpu_idle);
570 j_cdbs->prev_load = 100 * prev_load /
571 (unsigned int)j_cdbs->prev_cpu_wall;
572
573 if (ignore_nice)
574 j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Viresh Kumar714a2d92015-06-04 16:43:27 +0530575 }
576
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100577 if (gov->governor == GOV_CONSERVATIVE) {
Viresh Kumar714a2d92015-06-04 16:43:27 +0530578 struct cs_cpu_dbs_info_s *cs_dbs_info =
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100579 gov->get_cpu_dbs_info_s(cpu);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530580
581 cs_dbs_info->down_skip = 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530582 cs_dbs_info->requested_freq = policy->cur;
583 } else {
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100584 struct od_ops *od_ops = gov->gov_ops;
585 struct od_cpu_dbs_info_s *od_dbs_info = gov->get_cpu_dbs_info_s(cpu);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530586
587 od_dbs_info->rate_mult = 1;
588 od_dbs_info->sample_type = OD_NORMAL_SAMPLE;
589 od_ops->powersave_bias_init_cpu(cpu);
590 }
591
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100592 gov_set_update_util(policy_dbs, sampling_rate);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530593 return 0;
594}
595
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100596static int cpufreq_governor_stop(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530597{
Viresh Kumar581c2142016-02-11 17:31:14 +0530598 gov_cancel_work(policy);
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530599
Viresh Kumara72c4952015-07-18 11:31:01 +0530600 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530601}
602
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100603static int cpufreq_governor_limits(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530604{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100605 struct policy_dbs_info *policy_dbs = policy->governor_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530606
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100607 mutex_lock(&policy_dbs->timer_mutex);
608 if (policy->max < policy->cur)
609 __cpufreq_driver_target(policy, policy->max, CPUFREQ_RELATION_H);
610 else if (policy->min > policy->cur)
611 __cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L);
Rafael J. Wysockid10b5eb2016-02-06 13:50:24 +0100612 dbs_check_cpu(policy);
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100613 mutex_unlock(&policy_dbs->timer_mutex);
Viresh Kumara72c4952015-07-18 11:31:01 +0530614
615 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530616}
617
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100618int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000619{
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100620 int ret = -EINVAL;
Viresh Kumar4471a342012-10-26 00:47:42 +0200621
Viresh Kumar732b6d62015-06-03 15:57:13 +0530622 /* Lock governor to block concurrent initialization of governor */
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +0100623 mutex_lock(&dbs_data_mutex);
Viresh Kumar732b6d62015-06-03 15:57:13 +0530624
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100625 if (event == CPUFREQ_GOV_POLICY_INIT) {
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100626 ret = cpufreq_governor_init(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100627 } else if (policy->governor_data) {
628 switch (event) {
629 case CPUFREQ_GOV_POLICY_EXIT:
630 ret = cpufreq_governor_exit(policy);
631 break;
632 case CPUFREQ_GOV_START:
633 ret = cpufreq_governor_start(policy);
634 break;
635 case CPUFREQ_GOV_STOP:
636 ret = cpufreq_governor_stop(policy);
637 break;
638 case CPUFREQ_GOV_LIMITS:
639 ret = cpufreq_governor_limits(policy);
640 break;
641 }
Viresh Kumar732b6d62015-06-03 15:57:13 +0530642 }
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000643
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +0100644 mutex_unlock(&dbs_data_mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530645 return ret;
Viresh Kumar4471a342012-10-26 00:47:42 +0200646}
647EXPORT_SYMBOL_GPL(cpufreq_governor_dbs);