blob: ff247a7ac774215d1b3ff166aff2d0d6c0490d9b [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
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +010028static struct attribute_group *get_sysfs_attr(struct dbs_governor *gov)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000029{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +010030 return have_governor_per_policy() ?
31 gov->attr_group_gov_pol : gov->attr_group_gov_sys;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000032}
33
Rafael J. Wysockid10b5eb2016-02-06 13:50:24 +010034void dbs_check_cpu(struct cpufreq_policy *policy)
Viresh Kumar4471a342012-10-26 00:47:42 +020035{
Rafael J. Wysockid10b5eb2016-02-06 13:50:24 +010036 int cpu = policy->cpu;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +010037 struct dbs_governor *gov = dbs_governor_of(policy);
38 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(cpu);
39 struct dbs_data *dbs_data = policy->governor_data;
Viresh Kumar4471a342012-10-26 00:47:42 +020040 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
41 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +053042 unsigned int sampling_rate;
Viresh Kumar4471a342012-10-26 00:47:42 +020043 unsigned int max_load = 0;
44 unsigned int ignore_nice;
45 unsigned int j;
46
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +010047 if (gov->governor == GOV_ONDEMAND) {
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +053048 struct od_cpu_dbs_info_s *od_dbs_info =
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +010049 gov->get_cpu_dbs_info_s(cpu);
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +053050
51 /*
52 * Sometimes, the ondemand governor uses an additional
53 * multiplier to give long delays. So apply this multiplier to
54 * the 'sampling_rate', so as to keep the wake-up-from-idle
55 * detection logic a bit conservative.
56 */
57 sampling_rate = od_tuners->sampling_rate;
58 sampling_rate *= od_dbs_info->rate_mult;
59
Viresh Kumar6c4640c2013-08-05 12:28:02 +053060 ignore_nice = od_tuners->ignore_nice_load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +053061 } else {
62 sampling_rate = cs_tuners->sampling_rate;
Viresh Kumar6c4640c2013-08-05 12:28:02 +053063 ignore_nice = cs_tuners->ignore_nice_load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +053064 }
Viresh Kumar4471a342012-10-26 00:47:42 +020065
Stratos Karafotisdfa5bb62013-06-05 19:01:25 +030066 /* Get Absolute Load */
Viresh Kumar4471a342012-10-26 00:47:42 +020067 for_each_cpu(j, policy->cpus) {
Viresh Kumar875b8502015-06-19 17:18:03 +053068 struct cpu_dbs_info *j_cdbs;
Stratos Karafotis9366d842013-02-28 16:57:32 +000069 u64 cur_wall_time, cur_idle_time;
70 unsigned int idle_time, wall_time;
Viresh Kumar4471a342012-10-26 00:47:42 +020071 unsigned int load;
Stratos Karafotis9366d842013-02-28 16:57:32 +000072 int io_busy = 0;
Viresh Kumar4471a342012-10-26 00:47:42 +020073
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +010074 j_cdbs = gov->get_cpu_cdbs(j);
Viresh Kumar4471a342012-10-26 00:47:42 +020075
Stratos Karafotis9366d842013-02-28 16:57:32 +000076 /*
77 * For the purpose of ondemand, waiting for disk IO is
78 * an indication that you're performance critical, and
79 * not that the system is actually idle. So do not add
80 * the iowait time to the cpu idle time.
81 */
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +010082 if (gov->governor == GOV_ONDEMAND)
Stratos Karafotis9366d842013-02-28 16:57:32 +000083 io_busy = od_tuners->io_is_busy;
84 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time, io_busy);
Viresh Kumar4471a342012-10-26 00:47:42 +020085
86 wall_time = (unsigned int)
87 (cur_wall_time - j_cdbs->prev_cpu_wall);
88 j_cdbs->prev_cpu_wall = cur_wall_time;
89
Chen Yu0df35022015-12-16 12:20:29 +080090 if (cur_idle_time < j_cdbs->prev_cpu_idle)
91 cur_idle_time = j_cdbs->prev_cpu_idle;
92
Viresh Kumar4471a342012-10-26 00:47:42 +020093 idle_time = (unsigned int)
94 (cur_idle_time - j_cdbs->prev_cpu_idle);
95 j_cdbs->prev_cpu_idle = cur_idle_time;
96
97 if (ignore_nice) {
98 u64 cur_nice;
99 unsigned long cur_nice_jiffies;
100
101 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE] -
102 cdbs->prev_cpu_nice;
103 /*
104 * Assumption: nice time between sampling periods will
105 * be less than 2^32 jiffies for 32 bit sys
106 */
107 cur_nice_jiffies = (unsigned long)
108 cputime64_to_jiffies64(cur_nice);
109
110 cdbs->prev_cpu_nice =
111 kcpustat_cpu(j).cpustat[CPUTIME_NICE];
112 idle_time += jiffies_to_usecs(cur_nice_jiffies);
113 }
114
Viresh Kumar4471a342012-10-26 00:47:42 +0200115 if (unlikely(!wall_time || wall_time < idle_time))
116 continue;
117
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530118 /*
119 * If the CPU had gone completely idle, and a task just woke up
120 * on this CPU now, it would be unfair to calculate 'load' the
121 * usual way for this elapsed time-window, because it will show
122 * near-zero load, irrespective of how CPU intensive that task
123 * actually is. This is undesirable for latency-sensitive bursty
124 * workloads.
125 *
126 * To avoid this, we reuse the 'load' from the previous
127 * time-window and give this task a chance to start with a
128 * reasonably high CPU frequency. (However, we shouldn't over-do
129 * this copy, lest we get stuck at a high load (high frequency)
130 * for too long, even when the current system load has actually
131 * dropped down. So we perform the copy only once, upon the
132 * first wake-up from idle.)
133 *
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100134 * Detecting this situation is easy: the governor's utilization
135 * update handler would not have run during CPU-idle periods.
136 * Hence, an unusually large 'wall_time' (as compared to the
137 * sampling rate) indicates this scenario.
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530138 *
139 * prev_load can be zero in two cases and we must recalculate it
140 * for both cases:
141 * - during long idle intervals
142 * - explicitly set to zero
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530143 */
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530144 if (unlikely(wall_time > (2 * sampling_rate) &&
145 j_cdbs->prev_load)) {
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530146 load = j_cdbs->prev_load;
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530147
148 /*
149 * Perform a destructive copy, to ensure that we copy
150 * the previous load only once, upon the first wake-up
151 * from idle.
152 */
153 j_cdbs->prev_load = 0;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530154 } else {
155 load = 100 * (wall_time - idle_time) / wall_time;
156 j_cdbs->prev_load = load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530157 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200158
Viresh Kumar4471a342012-10-26 00:47:42 +0200159 if (load > max_load)
160 max_load = load;
161 }
162
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100163 gov->gov_check_cpu(cpu, max_load);
Viresh Kumar4471a342012-10-26 00:47:42 +0200164}
165EXPORT_SYMBOL_GPL(dbs_check_cpu);
166
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100167void gov_set_update_util(struct policy_dbs_info *policy_dbs,
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100168 unsigned int delay_us)
Viresh Kumar4471a342012-10-26 00:47:42 +0200169{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100170 struct cpufreq_policy *policy = policy_dbs->policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100171 struct dbs_governor *gov = dbs_governor_of(policy);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530172 int cpu;
Viresh Kumar4471a342012-10-26 00:47:42 +0200173
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100174 gov_update_sample_delay(policy_dbs, delay_us);
175 policy_dbs->last_sample_time = 0;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100176
Viresh Kumar70f43e52015-12-09 07:34:42 +0530177 for_each_cpu(cpu, policy->cpus) {
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100178 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(cpu);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100179
180 cpufreq_set_update_util_data(cpu, &cdbs->update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530181 }
182}
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100183EXPORT_SYMBOL_GPL(gov_set_update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530184
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100185static inline void gov_clear_update_util(struct cpufreq_policy *policy)
Viresh Kumar031299b2013-02-27 12:24:03 +0530186{
Viresh Kumar031299b2013-02-27 12:24:03 +0530187 int i;
188
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100189 for_each_cpu(i, policy->cpus)
190 cpufreq_set_update_util_data(i, NULL);
191
192 synchronize_rcu();
Viresh Kumar4471a342012-10-26 00:47:42 +0200193}
194
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100195static void gov_cancel_work(struct policy_dbs_info *policy_dbs)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530196{
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100197 /* Tell dbs_update_util_handler() to skip queuing up work items. */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100198 atomic_inc(&policy_dbs->skip_work);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530199 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100200 * If dbs_update_util_handler() is already running, it may not notice
201 * the incremented skip_work, so wait for it to complete to prevent its
202 * work item from being queued up after the cancel_work_sync() below.
Viresh Kumar70f43e52015-12-09 07:34:42 +0530203 */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100204 gov_clear_update_util(policy_dbs->policy);
205 irq_work_sync(&policy_dbs->irq_work);
206 cancel_work_sync(&policy_dbs->work);
207 atomic_set(&policy_dbs->skip_work, 0);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530208}
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530209
Viresh Kumar70f43e52015-12-09 07:34:42 +0530210static void dbs_work_handler(struct work_struct *work)
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530211{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100212 struct policy_dbs_info *policy_dbs;
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530213 struct cpufreq_policy *policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100214 struct dbs_governor *gov;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100215 unsigned int delay;
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530216
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100217 policy_dbs = container_of(work, struct policy_dbs_info, work);
218 policy = policy_dbs->policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100219 gov = dbs_governor_of(policy);
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530220
Viresh Kumar70f43e52015-12-09 07:34:42 +0530221 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100222 * Make sure cpufreq_governor_limits() isn't evaluating load or the
223 * ondemand governor isn't updating the sampling rate in parallel.
Viresh Kumar70f43e52015-12-09 07:34:42 +0530224 */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100225 mutex_lock(&policy_dbs->timer_mutex);
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100226 delay = gov->gov_dbs_timer(policy);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100227 policy_dbs->sample_delay_ns = jiffies_to_nsecs(delay);
228 mutex_unlock(&policy_dbs->timer_mutex);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530229
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100230 /*
231 * If the atomic operation below is reordered with respect to the
232 * sample delay modification, the utilization update handler may end
233 * up using a stale sample delay value.
234 */
235 smp_mb__before_atomic();
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100236 atomic_dec(&policy_dbs->skip_work);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530237}
238
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100239static void dbs_irq_work(struct irq_work *irq_work)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530240{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100241 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100242
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100243 policy_dbs = container_of(irq_work, struct policy_dbs_info, irq_work);
244 schedule_work(&policy_dbs->work);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100245}
246
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100247static inline void gov_queue_irq_work(struct policy_dbs_info *policy_dbs)
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100248{
249#ifdef CONFIG_SMP
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100250 irq_work_queue_on(&policy_dbs->irq_work, smp_processor_id());
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100251#else
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100252 irq_work_queue(&policy_dbs->irq_work);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100253#endif
254}
255
256static void dbs_update_util_handler(struct update_util_data *data, u64 time,
257 unsigned long util, unsigned long max)
258{
259 struct cpu_dbs_info *cdbs = container_of(data, struct cpu_dbs_info, update_util);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100260 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530261
262 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100263 * The work may not be allowed to be queued up right now.
264 * Possible reasons:
265 * - Work has already been queued up or is in progress.
266 * - The governor is being stopped.
267 * - It is too early (too little time from the previous sample).
Viresh Kumar70f43e52015-12-09 07:34:42 +0530268 */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100269 if (atomic_inc_return(&policy_dbs->skip_work) == 1) {
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100270 u64 delta_ns;
271
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100272 delta_ns = time - policy_dbs->last_sample_time;
273 if ((s64)delta_ns >= policy_dbs->sample_delay_ns) {
274 policy_dbs->last_sample_time = time;
275 gov_queue_irq_work(policy_dbs);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100276 return;
277 }
278 }
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100279 atomic_dec(&policy_dbs->skip_work);
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530280}
Viresh Kumar44472662013-01-31 17:28:02 +0000281
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000282static void set_sampling_rate(struct dbs_data *dbs_data,
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100283 struct dbs_governor *gov,
284 unsigned int sampling_rate)
Viresh Kumar4471a342012-10-26 00:47:42 +0200285{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100286 if (gov->governor == GOV_CONSERVATIVE) {
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000287 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
288 cs_tuners->sampling_rate = sampling_rate;
289 } else {
290 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
291 od_tuners->sampling_rate = sampling_rate;
292 }
293}
294
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100295static int alloc_policy_dbs_info(struct cpufreq_policy *policy,
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100296 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530297{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100298 struct policy_dbs_info *policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530299 int j;
300
301 /* Allocate memory for the common information for policy->cpus */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100302 policy_dbs = kzalloc(sizeof(*policy_dbs), GFP_KERNEL);
303 if (!policy_dbs)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530304 return -ENOMEM;
305
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100306 /* Set policy_dbs for all CPUs, online+offline */
Viresh Kumar44152cb2015-07-18 11:30:59 +0530307 for_each_cpu(j, policy->related_cpus)
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100308 gov->get_cpu_cdbs(j)->policy_dbs = policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530309
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100310 mutex_init(&policy_dbs->timer_mutex);
311 atomic_set(&policy_dbs->skip_work, 0);
312 init_irq_work(&policy_dbs->irq_work, dbs_irq_work);
313 INIT_WORK(&policy_dbs->work, dbs_work_handler);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530314 return 0;
315}
316
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100317static void free_policy_dbs_info(struct cpufreq_policy *policy,
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100318 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530319{
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100320 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(policy->cpu);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100321 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530322 int j;
323
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100324 mutex_destroy(&policy_dbs->timer_mutex);
Viresh Kumar5e4500d2015-12-03 09:37:52 +0530325
Viresh Kumar44152cb2015-07-18 11:30:59 +0530326 for_each_cpu(j, policy->cpus)
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100327 gov->get_cpu_cdbs(j)->policy_dbs = NULL;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530328
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100329 kfree(policy_dbs);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530330}
331
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100332static int cpufreq_governor_init(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530333{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100334 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100335 struct dbs_data *dbs_data = gov->gdbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530336 unsigned int latency;
337 int ret;
338
Viresh Kumara72c4952015-07-18 11:31:01 +0530339 /* State should be equivalent to EXIT */
340 if (policy->governor_data)
341 return -EBUSY;
342
Viresh Kumar714a2d92015-06-04 16:43:27 +0530343 if (dbs_data) {
344 if (WARN_ON(have_governor_per_policy()))
345 return -EINVAL;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530346
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100347 ret = alloc_policy_dbs_info(policy, gov);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530348 if (ret)
349 return ret;
350
Viresh Kumar714a2d92015-06-04 16:43:27 +0530351 dbs_data->usage_count++;
352 policy->governor_data = dbs_data;
353 return 0;
354 }
355
356 dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL);
357 if (!dbs_data)
358 return -ENOMEM;
359
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100360 ret = alloc_policy_dbs_info(policy, gov);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530361 if (ret)
362 goto free_dbs_data;
363
Viresh Kumar714a2d92015-06-04 16:43:27 +0530364 dbs_data->usage_count = 1;
365
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100366 ret = gov->init(dbs_data, !policy->governor->initialized);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530367 if (ret)
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100368 goto free_policy_dbs_info;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530369
370 /* policy latency is in ns. Convert it to us first */
371 latency = policy->cpuinfo.transition_latency / 1000;
372 if (latency == 0)
373 latency = 1;
374
375 /* Bring kernel and HW constraints together */
376 dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate,
377 MIN_LATENCY_MULTIPLIER * latency);
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100378 set_sampling_rate(dbs_data, gov, max(dbs_data->min_sampling_rate,
Viresh Kumar714a2d92015-06-04 16:43:27 +0530379 latency * LATENCY_MULTIPLIER));
380
Viresh Kumar8eec1022015-10-15 21:35:22 +0530381 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100382 gov->gdbs_data = dbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530383
Viresh Kumare4b133c2016-01-25 22:33:46 +0530384 policy->governor_data = dbs_data;
385
Viresh Kumar714a2d92015-06-04 16:43:27 +0530386 ret = sysfs_create_group(get_governor_parent_kobj(policy),
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100387 get_sysfs_attr(gov));
Viresh Kumar714a2d92015-06-04 16:43:27 +0530388 if (ret)
Viresh Kumar8eec1022015-10-15 21:35:22 +0530389 goto reset_gdbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530390
Viresh Kumar714a2d92015-06-04 16:43:27 +0530391 return 0;
392
Viresh Kumar8eec1022015-10-15 21:35:22 +0530393reset_gdbs_data:
Viresh Kumare4b133c2016-01-25 22:33:46 +0530394 policy->governor_data = NULL;
395
Viresh Kumar8eec1022015-10-15 21:35:22 +0530396 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100397 gov->gdbs_data = NULL;
398 gov->exit(dbs_data, !policy->governor->initialized);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100399free_policy_dbs_info:
400 free_policy_dbs_info(policy, gov);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530401free_dbs_data:
402 kfree(dbs_data);
403 return ret;
404}
405
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100406static int cpufreq_governor_exit(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530407{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100408 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100409 struct dbs_data *dbs_data = policy->governor_data;
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100410 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(policy->cpu);
Viresh Kumara72c4952015-07-18 11:31:01 +0530411
412 /* State should be equivalent to INIT */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100413 if (!cdbs->policy_dbs || cdbs->policy_dbs->policy)
Viresh Kumara72c4952015-07-18 11:31:01 +0530414 return -EBUSY;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530415
Viresh Kumar714a2d92015-06-04 16:43:27 +0530416 if (!--dbs_data->usage_count) {
417 sysfs_remove_group(get_governor_parent_kobj(policy),
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100418 get_sysfs_attr(gov));
Viresh Kumar714a2d92015-06-04 16:43:27 +0530419
Viresh Kumare4b133c2016-01-25 22:33:46 +0530420 policy->governor_data = NULL;
421
Viresh Kumar8eec1022015-10-15 21:35:22 +0530422 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100423 gov->gdbs_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530424
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100425 gov->exit(dbs_data, policy->governor->initialized == 1);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530426 kfree(dbs_data);
Viresh Kumare4b133c2016-01-25 22:33:46 +0530427 } else {
428 policy->governor_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530429 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530430
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100431 free_policy_dbs_info(policy, gov);
Viresh Kumara72c4952015-07-18 11:31:01 +0530432 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530433}
434
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100435static int cpufreq_governor_start(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530436{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100437 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100438 struct dbs_data *dbs_data = policy->governor_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530439 unsigned int sampling_rate, ignore_nice, j, cpu = policy->cpu;
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100440 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(cpu);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100441 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530442 int io_busy = 0;
443
444 if (!policy->cur)
445 return -EINVAL;
446
Viresh Kumara72c4952015-07-18 11:31:01 +0530447 /* State should be equivalent to INIT */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100448 if (!policy_dbs || policy_dbs->policy)
Viresh Kumara72c4952015-07-18 11:31:01 +0530449 return -EBUSY;
450
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100451 if (gov->governor == GOV_CONSERVATIVE) {
Viresh Kumar714a2d92015-06-04 16:43:27 +0530452 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
453
454 sampling_rate = cs_tuners->sampling_rate;
455 ignore_nice = cs_tuners->ignore_nice_load;
456 } else {
457 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
458
459 sampling_rate = od_tuners->sampling_rate;
460 ignore_nice = od_tuners->ignore_nice_load;
461 io_busy = od_tuners->io_is_busy;
462 }
463
Viresh Kumar714a2d92015-06-04 16:43:27 +0530464 for_each_cpu(j, policy->cpus) {
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100465 struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530466 unsigned int prev_load;
467
Viresh Kumar714a2d92015-06-04 16:43:27 +0530468 j_cdbs->prev_cpu_idle =
469 get_cpu_idle_time(j, &j_cdbs->prev_cpu_wall, io_busy);
470
471 prev_load = (unsigned int)(j_cdbs->prev_cpu_wall -
472 j_cdbs->prev_cpu_idle);
473 j_cdbs->prev_load = 100 * prev_load /
474 (unsigned int)j_cdbs->prev_cpu_wall;
475
476 if (ignore_nice)
477 j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
478
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100479 j_cdbs->update_util.func = dbs_update_util_handler;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530480 }
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100481 policy_dbs->policy = policy;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530482
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100483 if (gov->governor == GOV_CONSERVATIVE) {
Viresh Kumar714a2d92015-06-04 16:43:27 +0530484 struct cs_cpu_dbs_info_s *cs_dbs_info =
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100485 gov->get_cpu_dbs_info_s(cpu);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530486
487 cs_dbs_info->down_skip = 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530488 cs_dbs_info->requested_freq = policy->cur;
489 } else {
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100490 struct od_ops *od_ops = gov->gov_ops;
491 struct od_cpu_dbs_info_s *od_dbs_info = gov->get_cpu_dbs_info_s(cpu);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530492
493 od_dbs_info->rate_mult = 1;
494 od_dbs_info->sample_type = OD_NORMAL_SAMPLE;
495 od_ops->powersave_bias_init_cpu(cpu);
496 }
497
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100498 gov_set_update_util(policy_dbs, sampling_rate);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530499 return 0;
500}
501
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100502static int cpufreq_governor_stop(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530503{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100504 struct dbs_governor *gov = dbs_governor_of(policy);
505 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(policy->cpu);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100506 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530507
Viresh Kumara72c4952015-07-18 11:31:01 +0530508 /* State should be equivalent to START */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100509 if (!policy_dbs || !policy_dbs->policy)
Viresh Kumara72c4952015-07-18 11:31:01 +0530510 return -EBUSY;
511
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100512 gov_cancel_work(policy_dbs);
513 policy_dbs->policy = NULL;
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530514
Viresh Kumara72c4952015-07-18 11:31:01 +0530515 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530516}
517
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100518static int cpufreq_governor_limits(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530519{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100520 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockid10b5eb2016-02-06 13:50:24 +0100521 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(policy->cpu);
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100522 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530523
Viresh Kumara72c4952015-07-18 11:31:01 +0530524 /* State should be equivalent to START */
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100525 if (!policy_dbs || !policy_dbs->policy)
Viresh Kumara72c4952015-07-18 11:31:01 +0530526 return -EBUSY;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530527
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100528 mutex_lock(&policy_dbs->timer_mutex);
529 if (policy->max < policy->cur)
530 __cpufreq_driver_target(policy, policy->max, CPUFREQ_RELATION_H);
531 else if (policy->min > policy->cur)
532 __cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L);
Rafael J. Wysockid10b5eb2016-02-06 13:50:24 +0100533 dbs_check_cpu(policy);
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100534 mutex_unlock(&policy_dbs->timer_mutex);
Viresh Kumara72c4952015-07-18 11:31:01 +0530535
536 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530537}
538
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100539int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000540{
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100541 int ret = -EINVAL;
Viresh Kumar4471a342012-10-26 00:47:42 +0200542
Viresh Kumar732b6d62015-06-03 15:57:13 +0530543 /* Lock governor to block concurrent initialization of governor */
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +0100544 mutex_lock(&dbs_data_mutex);
Viresh Kumar732b6d62015-06-03 15:57:13 +0530545
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100546 if (event == CPUFREQ_GOV_POLICY_INIT) {
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100547 ret = cpufreq_governor_init(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100548 } else if (policy->governor_data) {
549 switch (event) {
550 case CPUFREQ_GOV_POLICY_EXIT:
551 ret = cpufreq_governor_exit(policy);
552 break;
553 case CPUFREQ_GOV_START:
554 ret = cpufreq_governor_start(policy);
555 break;
556 case CPUFREQ_GOV_STOP:
557 ret = cpufreq_governor_stop(policy);
558 break;
559 case CPUFREQ_GOV_LIMITS:
560 ret = cpufreq_governor_limits(policy);
561 break;
562 }
Viresh Kumar732b6d62015-06-03 15:57:13 +0530563 }
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000564
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +0100565 mutex_unlock(&dbs_data_mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530566 return ret;
Viresh Kumar4471a342012-10-26 00:47:42 +0200567}
568EXPORT_SYMBOL_GPL(cpufreq_governor_dbs);