blob: 939197ffa4ac0c0fa80ecbc854a24a9473b9a961 [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
87 idle_time = (unsigned int)
88 (cur_idle_time - j_cdbs->prev_cpu_idle);
89 j_cdbs->prev_cpu_idle = cur_idle_time;
90
91 if (ignore_nice) {
92 u64 cur_nice;
93 unsigned long cur_nice_jiffies;
94
95 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE] -
96 cdbs->prev_cpu_nice;
97 /*
98 * Assumption: nice time between sampling periods will
99 * be less than 2^32 jiffies for 32 bit sys
100 */
101 cur_nice_jiffies = (unsigned long)
102 cputime64_to_jiffies64(cur_nice);
103
104 cdbs->prev_cpu_nice =
105 kcpustat_cpu(j).cpustat[CPUTIME_NICE];
106 idle_time += jiffies_to_usecs(cur_nice_jiffies);
107 }
108
Viresh Kumar4471a342012-10-26 00:47:42 +0200109 if (unlikely(!wall_time || wall_time < idle_time))
110 continue;
111
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530112 /*
113 * If the CPU had gone completely idle, and a task just woke up
114 * on this CPU now, it would be unfair to calculate 'load' the
115 * usual way for this elapsed time-window, because it will show
116 * near-zero load, irrespective of how CPU intensive that task
117 * actually is. This is undesirable for latency-sensitive bursty
118 * workloads.
119 *
120 * To avoid this, we reuse the 'load' from the previous
121 * time-window and give this task a chance to start with a
122 * reasonably high CPU frequency. (However, we shouldn't over-do
123 * this copy, lest we get stuck at a high load (high frequency)
124 * for too long, even when the current system load has actually
125 * dropped down. So we perform the copy only once, upon the
126 * first wake-up from idle.)
127 *
128 * Detecting this situation is easy: the governor's deferrable
129 * timer would not have fired during CPU-idle periods. Hence
130 * an unusually large 'wall_time' (as compared to the sampling
131 * rate) indicates this scenario.
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530132 *
133 * prev_load can be zero in two cases and we must recalculate it
134 * for both cases:
135 * - during long idle intervals
136 * - explicitly set to zero
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530137 */
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530138 if (unlikely(wall_time > (2 * sampling_rate) &&
139 j_cdbs->prev_load)) {
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530140 load = j_cdbs->prev_load;
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530141
142 /*
143 * Perform a destructive copy, to ensure that we copy
144 * the previous load only once, upon the first wake-up
145 * from idle.
146 */
147 j_cdbs->prev_load = 0;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530148 } else {
149 load = 100 * (wall_time - idle_time) / wall_time;
150 j_cdbs->prev_load = load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530151 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200152
Viresh Kumar4471a342012-10-26 00:47:42 +0200153 if (load > max_load)
154 max_load = load;
155 }
156
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000157 dbs_data->cdata->gov_check_cpu(cpu, max_load);
Viresh Kumar4471a342012-10-26 00:47:42 +0200158}
159EXPORT_SYMBOL_GPL(dbs_check_cpu);
160
Viresh Kumar031299b2013-02-27 12:24:03 +0530161static inline void __gov_queue_work(int cpu, struct dbs_data *dbs_data,
162 unsigned int delay)
Viresh Kumar4471a342012-10-26 00:47:42 +0200163{
Viresh Kumar875b8502015-06-19 17:18:03 +0530164 struct cpu_dbs_info *cdbs = dbs_data->cdata->get_cpu_cdbs(cpu);
Viresh Kumar4471a342012-10-26 00:47:42 +0200165
Viresh Kumar386d46e2015-06-19 17:18:01 +0530166 mod_delayed_work_on(cpu, system_wq, &cdbs->dwork, delay);
Viresh Kumar4471a342012-10-26 00:47:42 +0200167}
168
Viresh Kumar031299b2013-02-27 12:24:03 +0530169void gov_queue_work(struct dbs_data *dbs_data, struct cpufreq_policy *policy,
170 unsigned int delay, bool all_cpus)
Viresh Kumar4471a342012-10-26 00:47:42 +0200171{
Viresh Kumar031299b2013-02-27 12:24:03 +0530172 int i;
Fabio Baltieri58ddcea2013-01-30 13:53:37 +0000173
Jane Li6f1e4ef2014-01-03 17:17:41 +0800174 mutex_lock(&cpufreq_governor_lock);
Stephen Boyd3617f2c2013-08-27 11:47:29 -0700175 if (!policy->governor_enabled)
Jane Li6f1e4ef2014-01-03 17:17:41 +0800176 goto out_unlock;
Stephen Boyd3617f2c2013-08-27 11:47:29 -0700177
Viresh Kumar031299b2013-02-27 12:24:03 +0530178 if (!all_cpus) {
Stephen Boyd69320782013-08-28 14:24:45 -0700179 /*
180 * Use raw_smp_processor_id() to avoid preemptible warnings.
181 * We know that this is only called with all_cpus == false from
182 * works that have been queued with *_work_on() functions and
183 * those works are canceled during CPU_DOWN_PREPARE so they
184 * can't possibly run on any other CPU.
185 */
186 __gov_queue_work(raw_smp_processor_id(), dbs_data, delay);
Viresh Kumar031299b2013-02-27 12:24:03 +0530187 } else {
188 for_each_cpu(i, policy->cpus)
189 __gov_queue_work(i, dbs_data, delay);
190 }
Jane Li6f1e4ef2014-01-03 17:17:41 +0800191
192out_unlock:
193 mutex_unlock(&cpufreq_governor_lock);
Viresh Kumar031299b2013-02-27 12:24:03 +0530194}
195EXPORT_SYMBOL_GPL(gov_queue_work);
196
197static inline void gov_cancel_work(struct dbs_data *dbs_data,
198 struct cpufreq_policy *policy)
199{
Viresh Kumar875b8502015-06-19 17:18:03 +0530200 struct cpu_dbs_info *cdbs;
Viresh Kumar031299b2013-02-27 12:24:03 +0530201 int i;
202
203 for_each_cpu(i, policy->cpus) {
204 cdbs = dbs_data->cdata->get_cpu_cdbs(i);
Viresh Kumar386d46e2015-06-19 17:18:01 +0530205 cancel_delayed_work_sync(&cdbs->dwork);
Viresh Kumar031299b2013-02-27 12:24:03 +0530206 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200207}
208
Viresh Kumar44472662013-01-31 17:28:02 +0000209/* Will return if we need to evaluate cpu load again or not */
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530210static bool need_load_eval(struct cpu_common_dbs_info *shared,
211 unsigned int sampling_rate)
Viresh Kumar44472662013-01-31 17:28:02 +0000212{
Viresh Kumar44152cb2015-07-18 11:30:59 +0530213 if (policy_is_shared(shared->policy)) {
Viresh Kumar44472662013-01-31 17:28:02 +0000214 ktime_t time_now = ktime_get();
Viresh Kumar44152cb2015-07-18 11:30:59 +0530215 s64 delta_us = ktime_us_delta(time_now, shared->time_stamp);
Viresh Kumar44472662013-01-31 17:28:02 +0000216
217 /* Do nothing if we recently have sampled */
218 if (delta_us < (s64)(sampling_rate / 2))
219 return false;
220 else
Viresh Kumar44152cb2015-07-18 11:30:59 +0530221 shared->time_stamp = time_now;
Viresh Kumar44472662013-01-31 17:28:02 +0000222 }
223
224 return true;
225}
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530226
227static void dbs_timer(struct work_struct *work)
228{
229 struct cpu_dbs_info *cdbs = container_of(work, struct cpu_dbs_info,
230 dwork.work);
231 struct cpu_common_dbs_info *shared = cdbs->shared;
232 struct cpufreq_policy *policy = shared->policy;
233 struct dbs_data *dbs_data = policy->governor_data;
234 unsigned int sampling_rate, delay;
235 bool modify_all = true;
236
237 mutex_lock(&shared->timer_mutex);
238
239 if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
240 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
241
242 sampling_rate = cs_tuners->sampling_rate;
243 } else {
244 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
245
246 sampling_rate = od_tuners->sampling_rate;
247 }
248
249 if (!need_load_eval(cdbs->shared, sampling_rate))
250 modify_all = false;
251
252 delay = dbs_data->cdata->gov_dbs_timer(cdbs, dbs_data, modify_all);
253 gov_queue_work(dbs_data, policy, delay, modify_all);
254
255 mutex_unlock(&shared->timer_mutex);
256}
Viresh Kumar44472662013-01-31 17:28:02 +0000257
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000258static void set_sampling_rate(struct dbs_data *dbs_data,
259 unsigned int sampling_rate)
Viresh Kumar4471a342012-10-26 00:47:42 +0200260{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000261 if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
262 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
263 cs_tuners->sampling_rate = sampling_rate;
264 } else {
265 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
266 od_tuners->sampling_rate = sampling_rate;
267 }
268}
269
Viresh Kumar44152cb2015-07-18 11:30:59 +0530270static int alloc_common_dbs_info(struct cpufreq_policy *policy,
271 struct common_dbs_data *cdata)
272{
273 struct cpu_common_dbs_info *shared;
274 int j;
275
276 /* Allocate memory for the common information for policy->cpus */
277 shared = kzalloc(sizeof(*shared), GFP_KERNEL);
278 if (!shared)
279 return -ENOMEM;
280
281 /* Set shared for all CPUs, online+offline */
282 for_each_cpu(j, policy->related_cpus)
283 cdata->get_cpu_cdbs(j)->shared = shared;
284
285 return 0;
286}
287
288static void free_common_dbs_info(struct cpufreq_policy *policy,
289 struct common_dbs_data *cdata)
290{
291 struct cpu_dbs_info *cdbs = cdata->get_cpu_cdbs(policy->cpu);
292 struct cpu_common_dbs_info *shared = cdbs->shared;
293 int j;
294
295 for_each_cpu(j, policy->cpus)
296 cdata->get_cpu_cdbs(j)->shared = NULL;
297
298 kfree(shared);
299}
300
Viresh Kumar714a2d92015-06-04 16:43:27 +0530301static int cpufreq_governor_init(struct cpufreq_policy *policy,
302 struct dbs_data *dbs_data,
303 struct common_dbs_data *cdata)
304{
305 unsigned int latency;
306 int ret;
307
Viresh Kumara72c4952015-07-18 11:31:01 +0530308 /* State should be equivalent to EXIT */
309 if (policy->governor_data)
310 return -EBUSY;
311
Viresh Kumar714a2d92015-06-04 16:43:27 +0530312 if (dbs_data) {
313 if (WARN_ON(have_governor_per_policy()))
314 return -EINVAL;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530315
316 ret = alloc_common_dbs_info(policy, cdata);
317 if (ret)
318 return ret;
319
Viresh Kumar714a2d92015-06-04 16:43:27 +0530320 dbs_data->usage_count++;
321 policy->governor_data = dbs_data;
322 return 0;
323 }
324
325 dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL);
326 if (!dbs_data)
327 return -ENOMEM;
328
Viresh Kumar44152cb2015-07-18 11:30:59 +0530329 ret = alloc_common_dbs_info(policy, cdata);
330 if (ret)
331 goto free_dbs_data;
332
Viresh Kumar714a2d92015-06-04 16:43:27 +0530333 dbs_data->cdata = cdata;
334 dbs_data->usage_count = 1;
335
336 ret = cdata->init(dbs_data, !policy->governor->initialized);
337 if (ret)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530338 goto free_common_dbs_info;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530339
340 /* policy latency is in ns. Convert it to us first */
341 latency = policy->cpuinfo.transition_latency / 1000;
342 if (latency == 0)
343 latency = 1;
344
345 /* Bring kernel and HW constraints together */
346 dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate,
347 MIN_LATENCY_MULTIPLIER * latency);
348 set_sampling_rate(dbs_data, max(dbs_data->min_sampling_rate,
349 latency * LATENCY_MULTIPLIER));
350
351 if (!have_governor_per_policy()) {
352 if (WARN_ON(cpufreq_get_global_kobject())) {
353 ret = -EINVAL;
354 goto cdata_exit;
355 }
356 cdata->gdbs_data = dbs_data;
357 }
358
359 ret = sysfs_create_group(get_governor_parent_kobj(policy),
360 get_sysfs_attr(dbs_data));
361 if (ret)
362 goto put_kobj;
363
364 policy->governor_data = dbs_data;
365
366 return 0;
367
368put_kobj:
369 if (!have_governor_per_policy()) {
370 cdata->gdbs_data = NULL;
371 cpufreq_put_global_kobject();
372 }
373cdata_exit:
374 cdata->exit(dbs_data, !policy->governor->initialized);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530375free_common_dbs_info:
376 free_common_dbs_info(policy, cdata);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530377free_dbs_data:
378 kfree(dbs_data);
379 return ret;
380}
381
Viresh Kumara72c4952015-07-18 11:31:01 +0530382static int cpufreq_governor_exit(struct cpufreq_policy *policy,
383 struct dbs_data *dbs_data)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530384{
385 struct common_dbs_data *cdata = dbs_data->cdata;
Viresh Kumara72c4952015-07-18 11:31:01 +0530386 struct cpu_dbs_info *cdbs = cdata->get_cpu_cdbs(policy->cpu);
387
388 /* State should be equivalent to INIT */
389 if (!cdbs->shared || cdbs->shared->policy)
390 return -EBUSY;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530391
392 policy->governor_data = NULL;
393 if (!--dbs_data->usage_count) {
394 sysfs_remove_group(get_governor_parent_kobj(policy),
395 get_sysfs_attr(dbs_data));
396
397 if (!have_governor_per_policy()) {
398 cdata->gdbs_data = NULL;
399 cpufreq_put_global_kobject();
400 }
401
402 cdata->exit(dbs_data, policy->governor->initialized == 1);
403 kfree(dbs_data);
404 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530405
406 free_common_dbs_info(policy, cdata);
Viresh Kumara72c4952015-07-18 11:31:01 +0530407 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530408}
409
410static int cpufreq_governor_start(struct cpufreq_policy *policy,
411 struct dbs_data *dbs_data)
412{
413 struct common_dbs_data *cdata = dbs_data->cdata;
414 unsigned int sampling_rate, ignore_nice, j, cpu = policy->cpu;
Viresh Kumar49a9a402015-06-19 17:18:04 +0530415 struct cpu_dbs_info *cdbs = cdata->get_cpu_cdbs(cpu);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530416 struct cpu_common_dbs_info *shared = cdbs->shared;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530417 int io_busy = 0;
418
419 if (!policy->cur)
420 return -EINVAL;
421
Viresh Kumara72c4952015-07-18 11:31:01 +0530422 /* State should be equivalent to INIT */
423 if (!shared || shared->policy)
424 return -EBUSY;
425
Viresh Kumar714a2d92015-06-04 16:43:27 +0530426 if (cdata->governor == GOV_CONSERVATIVE) {
427 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
428
429 sampling_rate = cs_tuners->sampling_rate;
430 ignore_nice = cs_tuners->ignore_nice_load;
431 } else {
432 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
433
434 sampling_rate = od_tuners->sampling_rate;
435 ignore_nice = od_tuners->ignore_nice_load;
436 io_busy = od_tuners->io_is_busy;
437 }
438
Viresh Kumar44152cb2015-07-18 11:30:59 +0530439 shared->policy = policy;
440 shared->time_stamp = ktime_get();
441 mutex_init(&shared->timer_mutex);
442
Viresh Kumar714a2d92015-06-04 16:43:27 +0530443 for_each_cpu(j, policy->cpus) {
Viresh Kumar875b8502015-06-19 17:18:03 +0530444 struct cpu_dbs_info *j_cdbs = cdata->get_cpu_cdbs(j);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530445 unsigned int prev_load;
446
Viresh Kumar714a2d92015-06-04 16:43:27 +0530447 j_cdbs->prev_cpu_idle =
448 get_cpu_idle_time(j, &j_cdbs->prev_cpu_wall, io_busy);
449
450 prev_load = (unsigned int)(j_cdbs->prev_cpu_wall -
451 j_cdbs->prev_cpu_idle);
452 j_cdbs->prev_load = 100 * prev_load /
453 (unsigned int)j_cdbs->prev_cpu_wall;
454
455 if (ignore_nice)
456 j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
457
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530458 INIT_DEFERRABLE_WORK(&j_cdbs->dwork, dbs_timer);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530459 }
460
461 if (cdata->governor == GOV_CONSERVATIVE) {
462 struct cs_cpu_dbs_info_s *cs_dbs_info =
463 cdata->get_cpu_dbs_info_s(cpu);
464
465 cs_dbs_info->down_skip = 0;
466 cs_dbs_info->enable = 1;
467 cs_dbs_info->requested_freq = policy->cur;
468 } else {
469 struct od_ops *od_ops = cdata->gov_ops;
470 struct od_cpu_dbs_info_s *od_dbs_info = cdata->get_cpu_dbs_info_s(cpu);
471
472 od_dbs_info->rate_mult = 1;
473 od_dbs_info->sample_type = OD_NORMAL_SAMPLE;
474 od_ops->powersave_bias_init_cpu(cpu);
475 }
476
Viresh Kumar714a2d92015-06-04 16:43:27 +0530477 gov_queue_work(dbs_data, policy, delay_for_sampling_rate(sampling_rate),
478 true);
479 return 0;
480}
481
Viresh Kumara72c4952015-07-18 11:31:01 +0530482static int cpufreq_governor_stop(struct cpufreq_policy *policy,
483 struct dbs_data *dbs_data)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530484{
485 struct common_dbs_data *cdata = dbs_data->cdata;
486 unsigned int cpu = policy->cpu;
Viresh Kumar49a9a402015-06-19 17:18:04 +0530487 struct cpu_dbs_info *cdbs = cdata->get_cpu_cdbs(cpu);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530488 struct cpu_common_dbs_info *shared = cdbs->shared;
489
Viresh Kumara72c4952015-07-18 11:31:01 +0530490 /* State should be equivalent to START */
491 if (!shared || !shared->policy)
492 return -EBUSY;
493
Viresh Kumar44152cb2015-07-18 11:30:59 +0530494 gov_cancel_work(dbs_data, policy);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530495
496 if (cdata->governor == GOV_CONSERVATIVE) {
497 struct cs_cpu_dbs_info_s *cs_dbs_info =
498 cdata->get_cpu_dbs_info_s(cpu);
499
500 cs_dbs_info->enable = 0;
501 }
502
Viresh Kumar44152cb2015-07-18 11:30:59 +0530503 shared->policy = NULL;
504 mutex_destroy(&shared->timer_mutex);
Viresh Kumara72c4952015-07-18 11:31:01 +0530505 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530506}
507
Viresh Kumara72c4952015-07-18 11:31:01 +0530508static int cpufreq_governor_limits(struct cpufreq_policy *policy,
509 struct dbs_data *dbs_data)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530510{
511 struct common_dbs_data *cdata = dbs_data->cdata;
512 unsigned int cpu = policy->cpu;
Viresh Kumar49a9a402015-06-19 17:18:04 +0530513 struct cpu_dbs_info *cdbs = cdata->get_cpu_cdbs(cpu);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530514
Viresh Kumara72c4952015-07-18 11:31:01 +0530515 /* State should be equivalent to START */
Viresh Kumar44152cb2015-07-18 11:30:59 +0530516 if (!cdbs->shared || !cdbs->shared->policy)
Viresh Kumara72c4952015-07-18 11:31:01 +0530517 return -EBUSY;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530518
Viresh Kumar44152cb2015-07-18 11:30:59 +0530519 mutex_lock(&cdbs->shared->timer_mutex);
520 if (policy->max < cdbs->shared->policy->cur)
521 __cpufreq_driver_target(cdbs->shared->policy, policy->max,
Viresh Kumar714a2d92015-06-04 16:43:27 +0530522 CPUFREQ_RELATION_H);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530523 else if (policy->min > cdbs->shared->policy->cur)
524 __cpufreq_driver_target(cdbs->shared->policy, policy->min,
Viresh Kumar714a2d92015-06-04 16:43:27 +0530525 CPUFREQ_RELATION_L);
526 dbs_check_cpu(dbs_data, cpu);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530527 mutex_unlock(&cdbs->shared->timer_mutex);
Viresh Kumara72c4952015-07-18 11:31:01 +0530528
529 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530530}
531
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000532int cpufreq_governor_dbs(struct cpufreq_policy *policy,
Viresh Kumar714a2d92015-06-04 16:43:27 +0530533 struct common_dbs_data *cdata, unsigned int event)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000534{
535 struct dbs_data *dbs_data;
Viresh Kumara72c4952015-07-18 11:31:01 +0530536 int ret;
Viresh Kumar4471a342012-10-26 00:47:42 +0200537
Viresh Kumar732b6d62015-06-03 15:57:13 +0530538 /* Lock governor to block concurrent initialization of governor */
539 mutex_lock(&cdata->mutex);
540
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000541 if (have_governor_per_policy())
542 dbs_data = policy->governor_data;
543 else
544 dbs_data = cdata->gdbs_data;
Viresh Kumar4471a342012-10-26 00:47:42 +0200545
Viresh Kumar871ef3b2015-07-18 11:31:02 +0530546 if (!dbs_data && (event != CPUFREQ_GOV_POLICY_INIT)) {
Viresh Kumar732b6d62015-06-03 15:57:13 +0530547 ret = -EINVAL;
548 goto unlock;
549 }
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000550
551 switch (event) {
552 case CPUFREQ_GOV_POLICY_INIT:
Viresh Kumar714a2d92015-06-04 16:43:27 +0530553 ret = cpufreq_governor_init(policy, dbs_data, cdata);
554 break;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000555 case CPUFREQ_GOV_POLICY_EXIT:
Viresh Kumara72c4952015-07-18 11:31:01 +0530556 ret = cpufreq_governor_exit(policy, dbs_data);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530557 break;
Viresh Kumar4471a342012-10-26 00:47:42 +0200558 case CPUFREQ_GOV_START:
Viresh Kumar714a2d92015-06-04 16:43:27 +0530559 ret = cpufreq_governor_start(policy, dbs_data);
Viresh Kumar4471a342012-10-26 00:47:42 +0200560 break;
Viresh Kumar4471a342012-10-26 00:47:42 +0200561 case CPUFREQ_GOV_STOP:
Viresh Kumara72c4952015-07-18 11:31:01 +0530562 ret = cpufreq_governor_stop(policy, dbs_data);
Viresh Kumar4471a342012-10-26 00:47:42 +0200563 break;
Viresh Kumar4471a342012-10-26 00:47:42 +0200564 case CPUFREQ_GOV_LIMITS:
Viresh Kumara72c4952015-07-18 11:31:01 +0530565 ret = cpufreq_governor_limits(policy, dbs_data);
Viresh Kumar4471a342012-10-26 00:47:42 +0200566 break;
Viresh Kumara72c4952015-07-18 11:31:01 +0530567 default:
568 ret = -EINVAL;
Viresh Kumar4471a342012-10-26 00:47:42 +0200569 }
Viresh Kumar714a2d92015-06-04 16:43:27 +0530570
Viresh Kumar732b6d62015-06-03 15:57:13 +0530571unlock:
572 mutex_unlock(&cdata->mutex);
573
Viresh Kumar714a2d92015-06-04 16:43:27 +0530574 return ret;
Viresh Kumar4471a342012-10-26 00:47:42 +0200575}
576EXPORT_SYMBOL_GPL(cpufreq_governor_dbs);