blob: 7c08d8360f72113b0372f752912594b6bb08d3d7 [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);
Rafael J. Wysockibc505472016-02-07 16:24:26 +010038 struct policy_dbs_info *policy_dbs = policy->governor_data;
39 struct dbs_data *dbs_data = policy_dbs->dbs_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) {
Rafael J. Wysockibc505472016-02-07 16:24:26 +010098 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(cpu);
Viresh Kumar4471a342012-10-26 00:47:42 +020099 u64 cur_nice;
100 unsigned long cur_nice_jiffies;
101
102 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE] -
103 cdbs->prev_cpu_nice;
104 /*
105 * Assumption: nice time between sampling periods will
106 * be less than 2^32 jiffies for 32 bit sys
107 */
108 cur_nice_jiffies = (unsigned long)
109 cputime64_to_jiffies64(cur_nice);
110
111 cdbs->prev_cpu_nice =
112 kcpustat_cpu(j).cpustat[CPUTIME_NICE];
113 idle_time += jiffies_to_usecs(cur_nice_jiffies);
114 }
115
Viresh Kumar4471a342012-10-26 00:47:42 +0200116 if (unlikely(!wall_time || wall_time < idle_time))
117 continue;
118
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530119 /*
120 * If the CPU had gone completely idle, and a task just woke up
121 * on this CPU now, it would be unfair to calculate 'load' the
122 * usual way for this elapsed time-window, because it will show
123 * near-zero load, irrespective of how CPU intensive that task
124 * actually is. This is undesirable for latency-sensitive bursty
125 * workloads.
126 *
127 * To avoid this, we reuse the 'load' from the previous
128 * time-window and give this task a chance to start with a
129 * reasonably high CPU frequency. (However, we shouldn't over-do
130 * this copy, lest we get stuck at a high load (high frequency)
131 * for too long, even when the current system load has actually
132 * dropped down. So we perform the copy only once, upon the
133 * first wake-up from idle.)
134 *
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100135 * Detecting this situation is easy: the governor's utilization
136 * update handler would not have run during CPU-idle periods.
137 * Hence, an unusually large 'wall_time' (as compared to the
138 * sampling rate) indicates this scenario.
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530139 *
140 * prev_load can be zero in two cases and we must recalculate it
141 * for both cases:
142 * - during long idle intervals
143 * - explicitly set to zero
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530144 */
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530145 if (unlikely(wall_time > (2 * sampling_rate) &&
146 j_cdbs->prev_load)) {
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530147 load = j_cdbs->prev_load;
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530148
149 /*
150 * Perform a destructive copy, to ensure that we copy
151 * the previous load only once, upon the first wake-up
152 * from idle.
153 */
154 j_cdbs->prev_load = 0;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530155 } else {
156 load = 100 * (wall_time - idle_time) / wall_time;
157 j_cdbs->prev_load = load;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530158 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200159
Viresh Kumar4471a342012-10-26 00:47:42 +0200160 if (load > max_load)
161 max_load = load;
162 }
163
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100164 gov->gov_check_cpu(cpu, max_load);
Viresh Kumar4471a342012-10-26 00:47:42 +0200165}
166EXPORT_SYMBOL_GPL(dbs_check_cpu);
167
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100168void gov_set_update_util(struct policy_dbs_info *policy_dbs,
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100169 unsigned int delay_us)
Viresh Kumar4471a342012-10-26 00:47:42 +0200170{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100171 struct cpufreq_policy *policy = policy_dbs->policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100172 struct dbs_governor *gov = dbs_governor_of(policy);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530173 int cpu;
Viresh Kumar4471a342012-10-26 00:47:42 +0200174
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100175 gov_update_sample_delay(policy_dbs, delay_us);
176 policy_dbs->last_sample_time = 0;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100177
Viresh Kumar70f43e52015-12-09 07:34:42 +0530178 for_each_cpu(cpu, policy->cpus) {
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100179 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(cpu);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100180
181 cpufreq_set_update_util_data(cpu, &cdbs->update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530182 }
183}
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100184EXPORT_SYMBOL_GPL(gov_set_update_util);
Viresh Kumar031299b2013-02-27 12:24:03 +0530185
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100186static inline void gov_clear_update_util(struct cpufreq_policy *policy)
Viresh Kumar031299b2013-02-27 12:24:03 +0530187{
Viresh Kumar031299b2013-02-27 12:24:03 +0530188 int i;
189
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100190 for_each_cpu(i, policy->cpus)
191 cpufreq_set_update_util_data(i, NULL);
192
193 synchronize_rcu();
Viresh Kumar4471a342012-10-26 00:47:42 +0200194}
195
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100196static void gov_cancel_work(struct policy_dbs_info *policy_dbs)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530197{
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100198 /* Tell dbs_update_util_handler() to skip queuing up work items. */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100199 atomic_inc(&policy_dbs->skip_work);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530200 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100201 * If dbs_update_util_handler() is already running, it may not notice
202 * the incremented skip_work, so wait for it to complete to prevent its
203 * work item from being queued up after the cancel_work_sync() below.
Viresh Kumar70f43e52015-12-09 07:34:42 +0530204 */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100205 gov_clear_update_util(policy_dbs->policy);
206 irq_work_sync(&policy_dbs->irq_work);
207 cancel_work_sync(&policy_dbs->work);
208 atomic_set(&policy_dbs->skip_work, 0);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530209}
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530210
Viresh Kumar70f43e52015-12-09 07:34:42 +0530211static void dbs_work_handler(struct work_struct *work)
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530212{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100213 struct policy_dbs_info *policy_dbs;
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530214 struct cpufreq_policy *policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100215 struct dbs_governor *gov;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100216 unsigned int delay;
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530217
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100218 policy_dbs = container_of(work, struct policy_dbs_info, work);
219 policy = policy_dbs->policy;
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100220 gov = dbs_governor_of(policy);
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530221
Viresh Kumar70f43e52015-12-09 07:34:42 +0530222 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100223 * Make sure cpufreq_governor_limits() isn't evaluating load or the
224 * ondemand governor isn't updating the sampling rate in parallel.
Viresh Kumar70f43e52015-12-09 07:34:42 +0530225 */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100226 mutex_lock(&policy_dbs->timer_mutex);
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100227 delay = gov->gov_dbs_timer(policy);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100228 policy_dbs->sample_delay_ns = jiffies_to_nsecs(delay);
229 mutex_unlock(&policy_dbs->timer_mutex);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530230
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100231 /*
232 * If the atomic operation below is reordered with respect to the
233 * sample delay modification, the utilization update handler may end
234 * up using a stale sample delay value.
235 */
236 smp_mb__before_atomic();
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100237 atomic_dec(&policy_dbs->skip_work);
Viresh Kumar70f43e52015-12-09 07:34:42 +0530238}
239
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100240static void dbs_irq_work(struct irq_work *irq_work)
Viresh Kumar70f43e52015-12-09 07:34:42 +0530241{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100242 struct policy_dbs_info *policy_dbs;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100243
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100244 policy_dbs = container_of(irq_work, struct policy_dbs_info, irq_work);
245 schedule_work(&policy_dbs->work);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100246}
247
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100248static inline void gov_queue_irq_work(struct policy_dbs_info *policy_dbs)
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100249{
250#ifdef CONFIG_SMP
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100251 irq_work_queue_on(&policy_dbs->irq_work, smp_processor_id());
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100252#else
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100253 irq_work_queue(&policy_dbs->irq_work);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100254#endif
255}
256
257static void dbs_update_util_handler(struct update_util_data *data, u64 time,
258 unsigned long util, unsigned long max)
259{
260 struct cpu_dbs_info *cdbs = container_of(data, struct cpu_dbs_info, update_util);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100261 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530262
263 /*
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100264 * The work may not be allowed to be queued up right now.
265 * Possible reasons:
266 * - Work has already been queued up or is in progress.
267 * - The governor is being stopped.
268 * - It is too early (too little time from the previous sample).
Viresh Kumar70f43e52015-12-09 07:34:42 +0530269 */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100270 if (atomic_inc_return(&policy_dbs->skip_work) == 1) {
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100271 u64 delta_ns;
272
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100273 delta_ns = time - policy_dbs->last_sample_time;
274 if ((s64)delta_ns >= policy_dbs->sample_delay_ns) {
275 policy_dbs->last_sample_time = time;
276 gov_queue_irq_work(policy_dbs);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100277 return;
278 }
279 }
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100280 atomic_dec(&policy_dbs->skip_work);
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530281}
Viresh Kumar44472662013-01-31 17:28:02 +0000282
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000283static void set_sampling_rate(struct dbs_data *dbs_data,
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100284 struct dbs_governor *gov,
285 unsigned int sampling_rate)
Viresh Kumar4471a342012-10-26 00:47:42 +0200286{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100287 if (gov->governor == GOV_CONSERVATIVE) {
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000288 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
289 cs_tuners->sampling_rate = sampling_rate;
290 } else {
291 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
292 od_tuners->sampling_rate = sampling_rate;
293 }
294}
295
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100296static struct policy_dbs_info *alloc_policy_dbs_info(struct cpufreq_policy *policy,
297 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530298{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100299 struct policy_dbs_info *policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530300 int j;
301
302 /* Allocate memory for the common information for policy->cpus */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100303 policy_dbs = kzalloc(sizeof(*policy_dbs), GFP_KERNEL);
304 if (!policy_dbs)
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100305 return NULL;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530306
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100307 mutex_init(&policy_dbs->timer_mutex);
308 atomic_set(&policy_dbs->skip_work, 0);
309 init_irq_work(&policy_dbs->irq_work, dbs_irq_work);
310 INIT_WORK(&policy_dbs->work, dbs_work_handler);
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100311
312 /* Set policy_dbs for all CPUs, online+offline */
313 for_each_cpu(j, policy->related_cpus) {
314 struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j);
315
316 j_cdbs->policy_dbs = policy_dbs;
317 j_cdbs->update_util.func = dbs_update_util_handler;
318 }
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100319 return policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530320}
321
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100322static void free_policy_dbs_info(struct cpufreq_policy *policy,
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100323 struct dbs_governor *gov)
Viresh Kumar44152cb2015-07-18 11:30:59 +0530324{
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100325 struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(policy->cpu);
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100326 struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530327 int j;
328
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100329 mutex_destroy(&policy_dbs->timer_mutex);
Viresh Kumar5e4500d2015-12-03 09:37:52 +0530330
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100331 for_each_cpu(j, policy->related_cpus) {
332 struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530333
Rafael J. Wysockicea6a9e2016-02-07 16:25:02 +0100334 j_cdbs->policy_dbs = NULL;
335 j_cdbs->update_util.func = NULL;
336 }
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100337 kfree(policy_dbs);
Viresh Kumar44152cb2015-07-18 11:30:59 +0530338}
339
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100340static int cpufreq_governor_init(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530341{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100342 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100343 struct dbs_data *dbs_data = gov->gdbs_data;
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100344 struct policy_dbs_info *policy_dbs;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530345 unsigned int latency;
346 int ret;
347
Viresh Kumara72c4952015-07-18 11:31:01 +0530348 /* State should be equivalent to EXIT */
349 if (policy->governor_data)
350 return -EBUSY;
351
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100352 policy_dbs = alloc_policy_dbs_info(policy, gov);
353 if (!policy_dbs)
354 return -ENOMEM;
355
Viresh Kumar714a2d92015-06-04 16:43:27 +0530356 if (dbs_data) {
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100357 if (WARN_ON(have_governor_per_policy())) {
358 ret = -EINVAL;
359 goto free_policy_dbs_info;
360 }
Viresh Kumar714a2d92015-06-04 16:43:27 +0530361 dbs_data->usage_count++;
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100362 policy_dbs->dbs_data = dbs_data;
363 policy->governor_data = policy_dbs;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530364 return 0;
365 }
366
367 dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100368 if (!dbs_data) {
369 ret = -ENOMEM;
370 goto free_policy_dbs_info;
371 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530372
Viresh Kumar714a2d92015-06-04 16:43:27 +0530373 dbs_data->usage_count = 1;
374
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100375 ret = gov->init(dbs_data, !policy->governor->initialized);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530376 if (ret)
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100377 goto free_policy_dbs_info;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530378
379 /* policy latency is in ns. Convert it to us first */
380 latency = policy->cpuinfo.transition_latency / 1000;
381 if (latency == 0)
382 latency = 1;
383
384 /* Bring kernel and HW constraints together */
385 dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate,
386 MIN_LATENCY_MULTIPLIER * latency);
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100387 set_sampling_rate(dbs_data, gov, max(dbs_data->min_sampling_rate,
Viresh Kumar714a2d92015-06-04 16:43:27 +0530388 latency * LATENCY_MULTIPLIER));
389
Viresh Kumar8eec1022015-10-15 21:35:22 +0530390 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100391 gov->gdbs_data = dbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530392
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100393 policy_dbs->dbs_data = dbs_data;
394 policy->governor_data = policy_dbs;
Viresh Kumare4b133c2016-01-25 22:33:46 +0530395
Viresh Kumar714a2d92015-06-04 16:43:27 +0530396 ret = sysfs_create_group(get_governor_parent_kobj(policy),
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100397 get_sysfs_attr(gov));
Viresh Kumar714a2d92015-06-04 16:43:27 +0530398 if (ret)
Viresh Kumar8eec1022015-10-15 21:35:22 +0530399 goto reset_gdbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530400
Viresh Kumar714a2d92015-06-04 16:43:27 +0530401 return 0;
402
Viresh Kumar8eec1022015-10-15 21:35:22 +0530403reset_gdbs_data:
Viresh Kumare4b133c2016-01-25 22:33:46 +0530404 policy->governor_data = NULL;
405
Viresh Kumar8eec1022015-10-15 21:35:22 +0530406 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100407 gov->gdbs_data = NULL;
408 gov->exit(dbs_data, !policy->governor->initialized);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100409 kfree(dbs_data);
410
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100411free_policy_dbs_info:
412 free_policy_dbs_info(policy, gov);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530413 return ret;
414}
415
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100416static int cpufreq_governor_exit(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530417{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100418 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100419 struct policy_dbs_info *policy_dbs = policy->governor_data;
420 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumara72c4952015-07-18 11:31:01 +0530421
422 /* State should be equivalent to INIT */
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100423 if (policy_dbs->policy)
Viresh Kumara72c4952015-07-18 11:31:01 +0530424 return -EBUSY;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530425
Viresh Kumar714a2d92015-06-04 16:43:27 +0530426 if (!--dbs_data->usage_count) {
427 sysfs_remove_group(get_governor_parent_kobj(policy),
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100428 get_sysfs_attr(gov));
Viresh Kumar714a2d92015-06-04 16:43:27 +0530429
Viresh Kumare4b133c2016-01-25 22:33:46 +0530430 policy->governor_data = NULL;
431
Viresh Kumar8eec1022015-10-15 21:35:22 +0530432 if (!have_governor_per_policy())
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100433 gov->gdbs_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530434
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100435 gov->exit(dbs_data, policy->governor->initialized == 1);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530436 kfree(dbs_data);
Viresh Kumare4b133c2016-01-25 22:33:46 +0530437 } else {
438 policy->governor_data = NULL;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530439 }
Viresh Kumar44152cb2015-07-18 11:30:59 +0530440
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100441 free_policy_dbs_info(policy, gov);
Viresh Kumara72c4952015-07-18 11:31:01 +0530442 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530443}
444
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100445static int cpufreq_governor_start(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530446{
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100447 struct dbs_governor *gov = dbs_governor_of(policy);
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100448 struct policy_dbs_info *policy_dbs = policy->governor_data;
449 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530450 unsigned int sampling_rate, ignore_nice, j, cpu = policy->cpu;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530451 int io_busy = 0;
452
453 if (!policy->cur)
454 return -EINVAL;
455
Viresh Kumara72c4952015-07-18 11:31:01 +0530456 /* State should be equivalent to INIT */
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100457 if (policy_dbs->policy)
Viresh Kumara72c4952015-07-18 11:31:01 +0530458 return -EBUSY;
459
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100460 if (gov->governor == GOV_CONSERVATIVE) {
Viresh Kumar714a2d92015-06-04 16:43:27 +0530461 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
462
463 sampling_rate = cs_tuners->sampling_rate;
464 ignore_nice = cs_tuners->ignore_nice_load;
465 } else {
466 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
467
468 sampling_rate = od_tuners->sampling_rate;
469 ignore_nice = od_tuners->ignore_nice_load;
470 io_busy = od_tuners->io_is_busy;
471 }
472
Viresh Kumar714a2d92015-06-04 16:43:27 +0530473 for_each_cpu(j, policy->cpus) {
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100474 struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530475 unsigned int prev_load;
476
Viresh Kumar714a2d92015-06-04 16:43:27 +0530477 j_cdbs->prev_cpu_idle =
478 get_cpu_idle_time(j, &j_cdbs->prev_cpu_wall, io_busy);
479
480 prev_load = (unsigned int)(j_cdbs->prev_cpu_wall -
481 j_cdbs->prev_cpu_idle);
482 j_cdbs->prev_load = 100 * prev_load /
483 (unsigned int)j_cdbs->prev_cpu_wall;
484
485 if (ignore_nice)
486 j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Viresh Kumar714a2d92015-06-04 16:43:27 +0530487 }
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100488 policy_dbs->policy = policy;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530489
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100490 if (gov->governor == GOV_CONSERVATIVE) {
Viresh Kumar714a2d92015-06-04 16:43:27 +0530491 struct cs_cpu_dbs_info_s *cs_dbs_info =
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100492 gov->get_cpu_dbs_info_s(cpu);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530493
494 cs_dbs_info->down_skip = 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530495 cs_dbs_info->requested_freq = policy->cur;
496 } else {
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100497 struct od_ops *od_ops = gov->gov_ops;
498 struct od_cpu_dbs_info_s *od_dbs_info = gov->get_cpu_dbs_info_s(cpu);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530499
500 od_dbs_info->rate_mult = 1;
501 od_dbs_info->sample_type = OD_NORMAL_SAMPLE;
502 od_ops->powersave_bias_init_cpu(cpu);
503 }
504
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100505 gov_set_update_util(policy_dbs, sampling_rate);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530506 return 0;
507}
508
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100509static int cpufreq_governor_stop(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530510{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100511 struct policy_dbs_info *policy_dbs = policy->governor_data;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530512
Viresh Kumara72c4952015-07-18 11:31:01 +0530513 /* State should be equivalent to START */
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100514 if (!policy_dbs->policy)
Viresh Kumara72c4952015-07-18 11:31:01 +0530515 return -EBUSY;
516
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100517 gov_cancel_work(policy_dbs);
518 policy_dbs->policy = NULL;
Viresh Kumar3a91b0692015-10-29 08:08:38 +0530519
Viresh Kumara72c4952015-07-18 11:31:01 +0530520 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530521}
522
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100523static int cpufreq_governor_limits(struct cpufreq_policy *policy)
Viresh Kumar714a2d92015-06-04 16:43:27 +0530524{
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100525 struct policy_dbs_info *policy_dbs = policy->governor_data;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530526
Viresh Kumara72c4952015-07-18 11:31:01 +0530527 /* State should be equivalent to START */
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100528 if (!policy_dbs->policy)
Viresh Kumara72c4952015-07-18 11:31:01 +0530529 return -EBUSY;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530530
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100531 mutex_lock(&policy_dbs->timer_mutex);
532 if (policy->max < policy->cur)
533 __cpufreq_driver_target(policy, policy->max, CPUFREQ_RELATION_H);
534 else if (policy->min > policy->cur)
535 __cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L);
Rafael J. Wysockid10b5eb2016-02-06 13:50:24 +0100536 dbs_check_cpu(policy);
Rafael J. Wysockie9751892016-02-07 16:23:49 +0100537 mutex_unlock(&policy_dbs->timer_mutex);
Viresh Kumara72c4952015-07-18 11:31:01 +0530538
539 return 0;
Viresh Kumar714a2d92015-06-04 16:43:27 +0530540}
541
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100542int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000543{
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100544 int ret = -EINVAL;
Viresh Kumar4471a342012-10-26 00:47:42 +0200545
Viresh Kumar732b6d62015-06-03 15:57:13 +0530546 /* Lock governor to block concurrent initialization of governor */
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +0100547 mutex_lock(&dbs_data_mutex);
Viresh Kumar732b6d62015-06-03 15:57:13 +0530548
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100549 if (event == CPUFREQ_GOV_POLICY_INIT) {
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100550 ret = cpufreq_governor_init(policy);
Rafael J. Wysocki5da3dd12016-02-05 03:15:24 +0100551 } else if (policy->governor_data) {
552 switch (event) {
553 case CPUFREQ_GOV_POLICY_EXIT:
554 ret = cpufreq_governor_exit(policy);
555 break;
556 case CPUFREQ_GOV_START:
557 ret = cpufreq_governor_start(policy);
558 break;
559 case CPUFREQ_GOV_STOP:
560 ret = cpufreq_governor_stop(policy);
561 break;
562 case CPUFREQ_GOV_LIMITS:
563 ret = cpufreq_governor_limits(policy);
564 break;
565 }
Viresh Kumar732b6d62015-06-03 15:57:13 +0530566 }
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000567
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +0100568 mutex_unlock(&dbs_data_mutex);
Viresh Kumar714a2d92015-06-04 16:43:27 +0530569 return ret;
Viresh Kumar4471a342012-10-26 00:47:42 +0200570}
571EXPORT_SYMBOL_GPL(cpufreq_governor_dbs);