blob: 6bc2f50cc1d9774d4e3e962770e25bee0338834f [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
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000025static struct attribute_group *get_sysfs_attr(struct dbs_data *dbs_data)
26{
27 if (have_governor_per_policy())
28 return dbs_data->cdata->attr_group_gov_pol;
29 else
30 return dbs_data->cdata->attr_group_gov_sys;
31}
32
Viresh Kumar4471a342012-10-26 00:47:42 +020033void dbs_check_cpu(struct dbs_data *dbs_data, int cpu)
34{
Viresh Kumar875b8502015-06-19 17:18:03 +053035 struct cpu_dbs_info *cdbs = dbs_data->cdata->get_cpu_cdbs(cpu);
Viresh Kumar4471a342012-10-26 00:47:42 +020036 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
37 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
Viresh Kumar44152cb2015-07-18 11:30:59 +053038 struct cpufreq_policy *policy = cdbs->shared->policy;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +053039 unsigned int sampling_rate;
Viresh Kumar4471a342012-10-26 00:47:42 +020040 unsigned int max_load = 0;
41 unsigned int ignore_nice;
42 unsigned int j;
43
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +053044 if (dbs_data->cdata->governor == GOV_ONDEMAND) {
45 struct od_cpu_dbs_info_s *od_dbs_info =
46 dbs_data->cdata->get_cpu_dbs_info_s(cpu);
47
48 /*
49 * Sometimes, the ondemand governor uses an additional
50 * multiplier to give long delays. So apply this multiplier to
51 * the 'sampling_rate', so as to keep the wake-up-from-idle
52 * detection logic a bit conservative.
53 */
54 sampling_rate = od_tuners->sampling_rate;
55 sampling_rate *= od_dbs_info->rate_mult;
56
Viresh Kumar6c4640c2013-08-05 12:28:02 +053057 ignore_nice = od_tuners->ignore_nice_load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +053058 } else {
59 sampling_rate = cs_tuners->sampling_rate;
Viresh Kumar6c4640c2013-08-05 12:28:02 +053060 ignore_nice = cs_tuners->ignore_nice_load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +053061 }
Viresh Kumar4471a342012-10-26 00:47:42 +020062
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +030063 /* Get Absolute Load */
Viresh Kumar4471a342012-10-26 00:47:42 +020064 for_each_cpu(j, policy->cpus) {
Viresh Kumar875b8502015-06-19 17:18:03 +053065 struct cpu_dbs_info *j_cdbs;
Stratos Karafotis9366d842013-02-28 16:57:32 +000066 u64 cur_wall_time, cur_idle_time;
67 unsigned int idle_time, wall_time;
Viresh Kumar4471a342012-10-26 00:47:42 +020068 unsigned int load;
Stratos Karafotis9366d842013-02-28 16:57:32 +000069 int io_busy = 0;
Viresh Kumar4471a342012-10-26 00:47:42 +020070
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000071 j_cdbs = dbs_data->cdata->get_cpu_cdbs(j);
Viresh Kumar4471a342012-10-26 00:47:42 +020072
Stratos Karafotis9366d842013-02-28 16:57:32 +000073 /*
74 * For the purpose of ondemand, waiting for disk IO is
75 * an indication that you're performance critical, and
76 * not that the system is actually idle. So do not add
77 * the iowait time to the cpu idle time.
78 */
79 if (dbs_data->cdata->governor == GOV_ONDEMAND)
80 io_busy = od_tuners->io_is_busy;
81 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time, io_busy);
Viresh Kumar4471a342012-10-26 00:47:42 +020082
83 wall_time = (unsigned int)
84 (cur_wall_time - j_cdbs->prev_cpu_wall);
85 j_cdbs->prev_cpu_wall = cur_wall_time;
86
Chen Yu0df35022015-12-16 12:20:29 +080087 if (cur_idle_time < j_cdbs->prev_cpu_idle)
88 cur_idle_time = j_cdbs->prev_cpu_idle;
89
Viresh Kumar4471a342012-10-26 00:47:42 +020090 idle_time = (unsigned int)
91 (cur_idle_time - j_cdbs->prev_cpu_idle);
92 j_cdbs->prev_cpu_idle = cur_idle_time;
93
94 if (ignore_nice) {
95 u64 cur_nice;
96 unsigned long cur_nice_jiffies;
97
98 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE] -
99 cdbs->prev_cpu_nice;
100 /*
101 * Assumption: nice time between sampling periods will
102 * be less than 2^32 jiffies for 32 bit sys
103 */
104 cur_nice_jiffies = (unsigned long)
105 cputime64_to_jiffies64(cur_nice);
106
107 cdbs->prev_cpu_nice =
108 kcpustat_cpu(j).cpustat[CPUTIME_NICE];
109 idle_time += jiffies_to_usecs(cur_nice_jiffies);
110 }
111
Viresh Kumar4471a342012-10-26 00:47:42 +0200112 if (unlikely(!wall_time || wall_time < idle_time))
113 continue;
114
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530115 /*
116 * If the CPU had gone completely idle, and a task just woke up
117 * on this CPU now, it would be unfair to calculate 'load' the
118 * usual way for this elapsed time-window, because it will show
119 * near-zero load, irrespective of how CPU intensive that task
120 * actually is. This is undesirable for latency-sensitive bursty
121 * workloads.
122 *
123 * To avoid this, we reuse the 'load' from the previous
124 * time-window and give this task a chance to start with a
125 * reasonably high CPU frequency. (However, we shouldn't over-do
126 * this copy, lest we get stuck at a high load (high frequency)
127 * for too long, even when the current system load has actually
128 * dropped down. So we perform the copy only once, upon the
129 * first wake-up from idle.)
130 *
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100131 * Detecting this situation is easy: the governor's utilization
132 * update handler would not have run during CPU-idle periods.
133 * Hence, an unusually large 'wall_time' (as compared to the
134 * sampling rate) indicates this scenario.
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530135 *
136 * prev_load can be zero in two cases and we must recalculate it
137 * for both cases:
138 * - during long idle intervals
139 * - explicitly set to zero
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530140 */
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530141 if (unlikely(wall_time > (2 * sampling_rate) &&
142 j_cdbs->prev_load)) {
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530143 load = j_cdbs->prev_load;
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530144
145 /*
146 * Perform a destructive copy, to ensure that we copy
147 * the previous load only once, upon the first wake-up
148 * from idle.
149 */
150 j_cdbs->prev_load = 0;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530151 } else {
152 load = 100 * (wall_time - idle_time) / wall_time;
153 j_cdbs->prev_load = load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530154 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200155
Viresh Kumar4471a342012-10-26 00:47:42 +0200156 if (load > max_load)
157 max_load = load;
158 }
159
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000160 dbs_data->cdata->gov_check_cpu(cpu, max_load);
Viresh Kumar4471a342012-10-26 00:47:42 +0200161}
162EXPORT_SYMBOL_GPL(dbs_check_cpu);
163
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100164void gov_set_update_util(struct cpu_common_dbs_info *shared,
165 unsigned int delay_us)
Viresh Kumar4471a342012-10-26 00:47:42 +0200166{
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100167 struct cpufreq_policy *policy = shared->policy;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530168 struct dbs_data *dbs_data = policy->governor_data;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530169 int cpu;
Viresh Kumar4471a342012-10-26 00:47:42 +0200170
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100171 gov_update_sample_delay(shared, delay_us);
172 shared->last_sample_time = 0;
173
Viresh Kumar70f43e52015-12-09 07:34:42 +0530174 for_each_cpu(cpu, policy->cpus) {
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100175 struct cpu_dbs_info *cdbs = dbs_data->cdata->get_cpu_cdbs(cpu);
176
177 cpufreq_set_update_util_data(cpu, &cdbs->update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530178 }
179}
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100180EXPORT_SYMBOL_GPL(gov_set_update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530181
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100182static inline void gov_clear_update_util(struct cpufreq_policy *policy)
Viresh Kumar031299b2013-02-27 12:24:03 +0530183{
Viresh Kumar031299b2013-02-27 12:24:03 +0530184 int i;
185
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100186 for_each_cpu(i, policy->cpus)
187 cpufreq_set_update_util_data(i, NULL);
188
189 synchronize_rcu();
Viresh Kumar4471a342012-10-26 00:47:42 +0200190}
191
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100192static void gov_cancel_work(struct cpu_common_dbs_info *shared)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530193{
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100194 /* Tell dbs_update_util_handler() to skip queuing up work items. */
Rafael J. Wysocki2dd3e722015-12-08 21:44:05 +0100195 atomic_inc(&shared->skip_work);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530196 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100197 * If dbs_update_util_handler() is already running, it may not notice
198 * the incremented skip_work, so wait for it to complete to prevent its
199 * work item from being queued up after the cancel_work_sync() below.
Viresh Kumar70f43e52015-12-09 07:34:42 +0530200 */
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100201 gov_clear_update_util(shared->policy);
202 irq_work_sync(&shared->irq_work);
Rafael J. Wysocki2dd3e722015-12-08 21:44:05 +0100203 cancel_work_sync(&shared->work);
Rafael J. Wysocki2dd3e722015-12-08 21:44:05 +0100204 atomic_set(&shared->skip_work, 0);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530205}
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530206
Viresh Kumar70f43e52015-12-09 07:34:42 +0530207static void dbs_work_handler(struct work_struct *work)
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530208{
Viresh Kumar70f43e52015-12-09 07:34:42 +0530209 struct cpu_common_dbs_info *shared = container_of(work, struct
210 cpu_common_dbs_info, work);
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530211 struct cpufreq_policy *policy;
212 struct dbs_data *dbs_data;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100213 unsigned int delay;
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530214
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530215 policy = shared->policy;
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530216 dbs_data = policy->governor_data;
217
Viresh Kumar70f43e52015-12-09 07:34:42 +0530218 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100219 * Make sure cpufreq_governor_limits() isn't evaluating load or the
220 * ondemand governor isn't updating the sampling rate in parallel.
Viresh Kumar70f43e52015-12-09 07:34:42 +0530221 */
222 mutex_lock(&shared->timer_mutex);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100223 delay = dbs_data->cdata->gov_dbs_timer(policy);
224 shared->sample_delay_ns = jiffies_to_nsecs(delay);
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530225 mutex_unlock(&shared->timer_mutex);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530226
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100227 /*
228 * If the atomic operation below is reordered with respect to the
229 * sample delay modification, the utilization update handler may end
230 * up using a stale sample delay value.
231 */
232 smp_mb__before_atomic();
Rafael J. Wysocki2dd3e722015-12-08 21:44:05 +0100233 atomic_dec(&shared->skip_work);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530234}
235
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100236static void dbs_irq_work(struct irq_work *irq_work)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530237{
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100238 struct cpu_common_dbs_info *shared;
239
240 shared = container_of(irq_work, struct cpu_common_dbs_info, irq_work);
241 schedule_work(&shared->work);
242}
243
244static inline void gov_queue_irq_work(struct cpu_common_dbs_info *shared)
245{
246#ifdef CONFIG_SMP
247 irq_work_queue_on(&shared->irq_work, smp_processor_id());
248#else
249 irq_work_queue(&shared->irq_work);
250#endif
251}
252
253static void dbs_update_util_handler(struct update_util_data *data, u64 time,
254 unsigned long util, unsigned long max)
255{
256 struct cpu_dbs_info *cdbs = container_of(data, struct cpu_dbs_info, update_util);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530257 struct cpu_common_dbs_info *shared = cdbs->shared;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530258
259 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100260 * The work may not be allowed to be queued up right now.
261 * Possible reasons:
262 * - Work has already been queued up or is in progress.
263 * - The governor is being stopped.
264 * - It is too early (too little time from the previous sample).
Viresh Kumar70f43e52015-12-09 07:34:42 +0530265 */
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100266 if (atomic_inc_return(&shared->skip_work) == 1) {
267 u64 delta_ns;
268
269 delta_ns = time - shared->last_sample_time;
270 if ((s64)delta_ns >= shared->sample_delay_ns) {
271 shared->last_sample_time = time;
272 gov_queue_irq_work(shared);
273 return;
274 }
275 }
276 atomic_dec(&shared->skip_work);
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530277}
Viresh Kumar44472662013-01-31 17:28:02 +0000278
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000279static void set_sampling_rate(struct dbs_data *dbs_data,
280 unsigned int sampling_rate)
Viresh Kumar4471a342012-10-26 00:47:42 +0200281{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000282 if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
283 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
284 cs_tuners->sampling_rate = sampling_rate;
285 } else {
286 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
287 od_tuners->sampling_rate = sampling_rate;
288 }
289}
290
Viresh Kumar44152cb2015-07-18 11:30:59 +0530291static int alloc_common_dbs_info(struct cpufreq_policy *policy,
292 struct common_dbs_data *cdata)
293{
294 struct cpu_common_dbs_info *shared;
295 int j;
296
297 /* Allocate memory for the common information for policy->cpus */
298 shared = kzalloc(sizeof(*shared), GFP_KERNEL);
299 if (!shared)
300 return -ENOMEM;
301
302 /* Set shared for all CPUs, online+offline */
303 for_each_cpu(j, policy->related_cpus)
304 cdata->get_cpu_cdbs(j)->shared = shared;
305
Viresh Kumar5e4500d2015-12-03 09:37:52 +0530306 mutex_init(&shared->timer_mutex);
Rafael J. Wysocki2dd3e722015-12-08 21:44:05 +0100307 atomic_set(&shared->skip_work, 0);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100308 init_irq_work(&shared->irq_work, dbs_irq_work);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530309 INIT_WORK(&shared->work, dbs_work_handler);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530310 return 0;
311}
312
313static void free_common_dbs_info(struct cpufreq_policy *policy,
314 struct common_dbs_data *cdata)
315{
316 struct cpu_dbs_info *cdbs = cdata->get_cpu_cdbs(policy->cpu);
317 struct cpu_common_dbs_info *shared = cdbs->shared;
318 int j;
319
Viresh Kumar5e4500d2015-12-03 09:37:52 +0530320 mutex_destroy(&shared->timer_mutex);
321
Viresh Kumar44152cb2015-07-18 11:30:59 +0530322 for_each_cpu(j, policy->cpus)
323 cdata->get_cpu_cdbs(j)->shared = NULL;
324
325 kfree(shared);
326}
327
Viresh Kumar714a2d92015-06-04 16:43:27 +0530328static int cpufreq_governor_init(struct cpufreq_policy *policy,
329 struct dbs_data *dbs_data,
330 struct common_dbs_data *cdata)
331{
332 unsigned int latency;
333 int ret;
334
Viresh Kumara72c4952015-07-18 11:31:01 +0530335 /* State should be equivalent to EXIT */
336 if (policy->governor_data)
337 return -EBUSY;
338
Viresh Kumar714a2d92015-06-04 16:43:27 +0530339 if (dbs_data) {
340 if (WARN_ON(have_governor_per_policy()))
341 return -EINVAL;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530342
343 ret = alloc_common_dbs_info(policy, cdata);
344 if (ret)
345 return ret;
346
Viresh Kumar714a2d92015-06-04 16:43:27 +0530347 dbs_data->usage_count++;
348 policy->governor_data = dbs_data;
349 return 0;
350 }
351
352 dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL);
353 if (!dbs_data)
354 return -ENOMEM;
355
Viresh Kumar44152cb2015-07-18 11:30:59 +0530356 ret = alloc_common_dbs_info(policy, cdata);
357 if (ret)
358 goto free_dbs_data;
359
Viresh Kumar714a2d92015-06-04 16:43:27 +0530360 dbs_data->cdata = cdata;
361 dbs_data->usage_count = 1;
362
363 ret = cdata->init(dbs_data, !policy->governor->initialized);
364 if (ret)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530365 goto free_common_dbs_info;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530366
367 /* policy latency is in ns. Convert it to us first */
368 latency = policy->cpuinfo.transition_latency / 1000;
369 if (latency == 0)
370 latency = 1;
371
372 /* Bring kernel and HW constraints together */
373 dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate,
374 MIN_LATENCY_MULTIPLIER * latency);
375 set_sampling_rate(dbs_data, max(dbs_data->min_sampling_rate,
376 latency * LATENCY_MULTIPLIER));
377
Viresh Kumar8eec1022015-10-15 21:35:22 +0530378 if (!have_governor_per_policy())
Viresh Kumar714a2d92015-06-04 16:43:27 +0530379 cdata->gdbs_data = dbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530380
Viresh Kumare4b133c2016-01-25 22:33:46 +0530381 policy->governor_data = dbs_data;
382
Viresh Kumar714a2d92015-06-04 16:43:27 +0530383 ret = sysfs_create_group(get_governor_parent_kobj(policy),
384 get_sysfs_attr(dbs_data));
385 if (ret)
Viresh Kumar8eec1022015-10-15 21:35:22 +0530386 goto reset_gdbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530387
Viresh Kumar714a2d92015-06-04 16:43:27 +0530388 return 0;
389
Viresh Kumar8eec1022015-10-15 21:35:22 +0530390reset_gdbs_data:
Viresh Kumare4b133c2016-01-25 22:33:46 +0530391 policy->governor_data = NULL;
392
Viresh Kumar8eec1022015-10-15 21:35:22 +0530393 if (!have_governor_per_policy())
Viresh Kumar714a2d92015-06-04 16:43:27 +0530394 cdata->gdbs_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530395 cdata->exit(dbs_data, !policy->governor->initialized);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530396free_common_dbs_info:
397 free_common_dbs_info(policy, cdata);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530398free_dbs_data:
399 kfree(dbs_data);
400 return ret;
401}
402
Viresh Kumara72c4952015-07-18 11:31:01 +0530403static int cpufreq_governor_exit(struct cpufreq_policy *policy,
404 struct dbs_data *dbs_data)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530405{
406 struct common_dbs_data *cdata = dbs_data->cdata;
Viresh Kumara72c4952015-07-18 11:31:01 +0530407 struct cpu_dbs_info *cdbs = cdata->get_cpu_cdbs(policy->cpu);
408
409 /* State should be equivalent to INIT */
410 if (!cdbs->shared || cdbs->shared->policy)
411 return -EBUSY;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530412
Viresh Kumar714a2d92015-06-04 16:43:27 +0530413 if (!--dbs_data->usage_count) {
414 sysfs_remove_group(get_governor_parent_kobj(policy),
415 get_sysfs_attr(dbs_data));
416
Viresh Kumare4b133c2016-01-25 22:33:46 +0530417 policy->governor_data = NULL;
418
Viresh Kumar8eec1022015-10-15 21:35:22 +0530419 if (!have_governor_per_policy())
Viresh Kumar714a2d92015-06-04 16:43:27 +0530420 cdata->gdbs_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530421
422 cdata->exit(dbs_data, policy->governor->initialized == 1);
423 kfree(dbs_data);
Viresh Kumare4b133c2016-01-25 22:33:46 +0530424 } else {
425 policy->governor_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530426 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530427
428 free_common_dbs_info(policy, cdata);
Viresh Kumara72c4952015-07-18 11:31:01 +0530429 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530430}
431
432static int cpufreq_governor_start(struct cpufreq_policy *policy,
433 struct dbs_data *dbs_data)
434{
435 struct common_dbs_data *cdata = dbs_data->cdata;
436 unsigned int sampling_rate, ignore_nice, j, cpu = policy->cpu;
Viresh Kumar49a9a402015-06-19 17:18:04 +0530437 struct cpu_dbs_info *cdbs = cdata->get_cpu_cdbs(cpu);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530438 struct cpu_common_dbs_info *shared = cdbs->shared;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530439 int io_busy = 0;
440
441 if (!policy->cur)
442 return -EINVAL;
443
Viresh Kumara72c4952015-07-18 11:31:01 +0530444 /* State should be equivalent to INIT */
445 if (!shared || shared->policy)
446 return -EBUSY;
447
Viresh Kumar714a2d92015-06-04 16:43:27 +0530448 if (cdata->governor == GOV_CONSERVATIVE) {
449 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
450
451 sampling_rate = cs_tuners->sampling_rate;
452 ignore_nice = cs_tuners->ignore_nice_load;
453 } else {
454 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
455
456 sampling_rate = od_tuners->sampling_rate;
457 ignore_nice = od_tuners->ignore_nice_load;
458 io_busy = od_tuners->io_is_busy;
459 }
460
Viresh Kumar714a2d92015-06-04 16:43:27 +0530461 for_each_cpu(j, policy->cpus) {
Viresh Kumar875b8502015-06-19 17:18:03 +0530462 struct cpu_dbs_info *j_cdbs = cdata->get_cpu_cdbs(j);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530463 unsigned int prev_load;
464
Viresh Kumar714a2d92015-06-04 16:43:27 +0530465 j_cdbs->prev_cpu_idle =
466 get_cpu_idle_time(j, &j_cdbs->prev_cpu_wall, io_busy);
467
468 prev_load = (unsigned int)(j_cdbs->prev_cpu_wall -
469 j_cdbs->prev_cpu_idle);
470 j_cdbs->prev_load = 100 * prev_load /
471 (unsigned int)j_cdbs->prev_cpu_wall;
472
473 if (ignore_nice)
474 j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
475
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100476 j_cdbs->update_util.func = dbs_update_util_handler;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530477 }
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100478 shared->policy = policy;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530479
480 if (cdata->governor == GOV_CONSERVATIVE) {
481 struct cs_cpu_dbs_info_s *cs_dbs_info =
482 cdata->get_cpu_dbs_info_s(cpu);
483
484 cs_dbs_info->down_skip = 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530485 cs_dbs_info->requested_freq = policy->cur;
486 } else {
487 struct od_ops *od_ops = cdata->gov_ops;
488 struct od_cpu_dbs_info_s *od_dbs_info = cdata->get_cpu_dbs_info_s(cpu);
489
490 od_dbs_info->rate_mult = 1;
491 od_dbs_info->sample_type = OD_NORMAL_SAMPLE;
492 od_ops->powersave_bias_init_cpu(cpu);
493 }
494
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100495 gov_set_update_util(shared, sampling_rate);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530496 return 0;
497}
498
Viresh Kumara72c4952015-07-18 11:31:01 +0530499static int cpufreq_governor_stop(struct cpufreq_policy *policy,
500 struct dbs_data *dbs_data)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530501{
Viresh Kumar03d5eec2015-09-08 07:10:34 +0530502 struct cpu_dbs_info *cdbs = dbs_data->cdata->get_cpu_cdbs(policy->cpu);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530503 struct cpu_common_dbs_info *shared = cdbs->shared;
504
Viresh Kumara72c4952015-07-18 11:31:01 +0530505 /* State should be equivalent to START */
506 if (!shared || !shared->policy)
507 return -EBUSY;
508
Viresh Kumar70f43e52015-12-09 07:34:42 +0530509 gov_cancel_work(shared);
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530510 shared->policy = NULL;
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530511
Viresh Kumara72c4952015-07-18 11:31:01 +0530512 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530513}
514
Viresh Kumara72c4952015-07-18 11:31:01 +0530515static int cpufreq_governor_limits(struct cpufreq_policy *policy,
516 struct dbs_data *dbs_data)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530517{
518 struct common_dbs_data *cdata = dbs_data->cdata;
519 unsigned int cpu = policy->cpu;
Viresh Kumar49a9a402015-06-19 17:18:04 +0530520 struct cpu_dbs_info *cdbs = cdata->get_cpu_cdbs(cpu);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530521
Viresh Kumara72c4952015-07-18 11:31:01 +0530522 /* State should be equivalent to START */
Viresh Kumar44152cb2015-07-18 11:30:59 +0530523 if (!cdbs->shared || !cdbs->shared->policy)
Viresh Kumara72c4952015-07-18 11:31:01 +0530524 return -EBUSY;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530525
Viresh Kumar44152cb2015-07-18 11:30:59 +0530526 mutex_lock(&cdbs->shared->timer_mutex);
527 if (policy->max < cdbs->shared->policy->cur)
528 __cpufreq_driver_target(cdbs->shared->policy, policy->max,
Viresh Kumar714a2d92015-06-04 16:43:27 +0530529 CPUFREQ_RELATION_H);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530530 else if (policy->min > cdbs->shared->policy->cur)
531 __cpufreq_driver_target(cdbs->shared->policy, policy->min,
Viresh Kumar714a2d92015-06-04 16:43:27 +0530532 CPUFREQ_RELATION_L);
533 dbs_check_cpu(dbs_data, cpu);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530534 mutex_unlock(&cdbs->shared->timer_mutex);
Viresh Kumara72c4952015-07-18 11:31:01 +0530535
536 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530537}
538
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000539int cpufreq_governor_dbs(struct cpufreq_policy *policy,
Viresh Kumar714a2d92015-06-04 16:43:27 +0530540 struct common_dbs_data *cdata, unsigned int event)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000541{
542 struct dbs_data *dbs_data;
Viresh Kumara72c4952015-07-18 11:31:01 +0530543 int ret;
Viresh Kumar4471a342012-10-26 00:47:42 +0200544
Viresh Kumar732b6d62015-06-03 15:57:13 +0530545 /* Lock governor to block concurrent initialization of governor */
546 mutex_lock(&cdata->mutex);
547
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000548 if (have_governor_per_policy())
549 dbs_data = policy->governor_data;
550 else
551 dbs_data = cdata->gdbs_data;
Viresh Kumar4471a342012-10-26 00:47:42 +0200552
Viresh Kumar871ef3b2015-07-18 11:31:02 +0530553 if (!dbs_data && (event != CPUFREQ_GOV_POLICY_INIT)) {
Viresh Kumar732b6d62015-06-03 15:57:13 +0530554 ret = -EINVAL;
555 goto unlock;
556 }
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000557
558 switch (event) {
559 case CPUFREQ_GOV_POLICY_INIT:
Viresh Kumar714a2d92015-06-04 16:43:27 +0530560 ret = cpufreq_governor_init(policy, dbs_data, cdata);
561 break;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000562 case CPUFREQ_GOV_POLICY_EXIT:
Viresh Kumara72c4952015-07-18 11:31:01 +0530563 ret = cpufreq_governor_exit(policy, dbs_data);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530564 break;
Viresh Kumar4471a342012-10-26 00:47:42 +0200565 case CPUFREQ_GOV_START:
Viresh Kumar714a2d92015-06-04 16:43:27 +0530566 ret = cpufreq_governor_start(policy, dbs_data);
Viresh Kumar4471a342012-10-26 00:47:42 +0200567 break;
Viresh Kumar4471a342012-10-26 00:47:42 +0200568 case CPUFREQ_GOV_STOP:
Viresh Kumara72c4952015-07-18 11:31:01 +0530569 ret = cpufreq_governor_stop(policy, dbs_data);
Viresh Kumar4471a342012-10-26 00:47:42 +0200570 break;
Viresh Kumar4471a342012-10-26 00:47:42 +0200571 case CPUFREQ_GOV_LIMITS:
Viresh Kumara72c4952015-07-18 11:31:01 +0530572 ret = cpufreq_governor_limits(policy, dbs_data);
Viresh Kumar4471a342012-10-26 00:47:42 +0200573 break;
Viresh Kumara72c4952015-07-18 11:31:01 +0530574 default:
575 ret = -EINVAL;
Viresh Kumar4471a342012-10-26 00:47:42 +0200576 }
Viresh Kumar714a2d92015-06-04 16:43:27 +0530577
Viresh Kumar732b6d62015-06-03 15:57:13 +0530578unlock:
579 mutex_unlock(&cdata->mutex);
580
Viresh Kumar714a2d92015-06-04 16:43:27 +0530581 return ret;
Viresh Kumar4471a342012-10-26 00:47:42 +0200582}
583EXPORT_SYMBOL_GPL(cpufreq_governor_dbs);