blob: 26fbb729bc1c6fe414e03f93a5ee7c08e737eeb9 [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 <asm/cputime.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020020#include <linux/cpufreq.h>
21#include <linux/cpumask.h>
viresh kumar2aacdff2012-10-23 01:28:05 +020022#include <linux/export.h>
23#include <linux/kernel_stat.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020024#include <linux/mutex.h>
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000025#include <linux/slab.h>
viresh kumar2aacdff2012-10-23 01:28:05 +020026#include <linux/tick.h>
27#include <linux/types.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020028#include <linux/workqueue.h>
29
30#include "cpufreq_governor.h"
31
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000032static struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
33{
34 if (have_governor_per_policy())
35 return &policy->kobj;
36 else
37 return cpufreq_global_kobject;
38}
39
40static struct attribute_group *get_sysfs_attr(struct dbs_data *dbs_data)
41{
42 if (have_governor_per_policy())
43 return dbs_data->cdata->attr_group_gov_pol;
44 else
45 return dbs_data->cdata->attr_group_gov_sys;
46}
47
viresh kumar2aacdff2012-10-23 01:28:05 +020048static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
49{
50 u64 idle_time;
51 u64 cur_wall_time;
52 u64 busy_time;
53
54 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
55
56 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
57 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
58 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
59 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
60 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
61 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
62
63 idle_time = cur_wall_time - busy_time;
64 if (wall)
Rafael J. Wysockia0e5af32012-11-24 10:08:47 +010065 *wall = cputime_to_usecs(cur_wall_time);
viresh kumar2aacdff2012-10-23 01:28:05 +020066
Rafael J. Wysockia0e5af32012-11-24 10:08:47 +010067 return cputime_to_usecs(idle_time);
viresh kumar2aacdff2012-10-23 01:28:05 +020068}
69
Viresh Kumar1e7586a2012-10-26 00:51:21 +020070u64 get_cpu_idle_time(unsigned int cpu, u64 *wall)
viresh kumar2aacdff2012-10-23 01:28:05 +020071{
72 u64 idle_time = get_cpu_idle_time_us(cpu, NULL);
73
74 if (idle_time == -1ULL)
75 return get_cpu_idle_time_jiffy(cpu, wall);
76 else
77 idle_time += get_cpu_iowait_time_us(cpu, wall);
78
79 return idle_time;
80}
81EXPORT_SYMBOL_GPL(get_cpu_idle_time);
Viresh Kumar4471a342012-10-26 00:47:42 +020082
83void dbs_check_cpu(struct dbs_data *dbs_data, int cpu)
84{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000085 struct cpu_dbs_common_info *cdbs = dbs_data->cdata->get_cpu_cdbs(cpu);
Viresh Kumar4471a342012-10-26 00:47:42 +020086 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
87 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
88 struct cpufreq_policy *policy;
89 unsigned int max_load = 0;
90 unsigned int ignore_nice;
91 unsigned int j;
92
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000093 if (dbs_data->cdata->governor == GOV_ONDEMAND)
Viresh Kumar4471a342012-10-26 00:47:42 +020094 ignore_nice = od_tuners->ignore_nice;
95 else
96 ignore_nice = cs_tuners->ignore_nice;
97
98 policy = cdbs->cur_policy;
99
100 /* Get Absolute Load (in terms of freq for ondemand gov) */
101 for_each_cpu(j, policy->cpus) {
102 struct cpu_dbs_common_info *j_cdbs;
Viresh Kumar1e7586a2012-10-26 00:51:21 +0200103 u64 cur_wall_time, cur_idle_time, cur_iowait_time;
Viresh Kumar4471a342012-10-26 00:47:42 +0200104 unsigned int idle_time, wall_time, iowait_time;
105 unsigned int load;
106
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000107 j_cdbs = dbs_data->cdata->get_cpu_cdbs(j);
Viresh Kumar4471a342012-10-26 00:47:42 +0200108
109 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time);
110
111 wall_time = (unsigned int)
112 (cur_wall_time - j_cdbs->prev_cpu_wall);
113 j_cdbs->prev_cpu_wall = cur_wall_time;
114
115 idle_time = (unsigned int)
116 (cur_idle_time - j_cdbs->prev_cpu_idle);
117 j_cdbs->prev_cpu_idle = cur_idle_time;
118
119 if (ignore_nice) {
120 u64 cur_nice;
121 unsigned long cur_nice_jiffies;
122
123 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE] -
124 cdbs->prev_cpu_nice;
125 /*
126 * Assumption: nice time between sampling periods will
127 * be less than 2^32 jiffies for 32 bit sys
128 */
129 cur_nice_jiffies = (unsigned long)
130 cputime64_to_jiffies64(cur_nice);
131
132 cdbs->prev_cpu_nice =
133 kcpustat_cpu(j).cpustat[CPUTIME_NICE];
134 idle_time += jiffies_to_usecs(cur_nice_jiffies);
135 }
136
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000137 if (dbs_data->cdata->governor == GOV_ONDEMAND) {
Viresh Kumar4471a342012-10-26 00:47:42 +0200138 struct od_cpu_dbs_info_s *od_j_dbs_info =
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000139 dbs_data->cdata->get_cpu_dbs_info_s(cpu);
Viresh Kumar4471a342012-10-26 00:47:42 +0200140
141 cur_iowait_time = get_cpu_iowait_time_us(j,
142 &cur_wall_time);
143 if (cur_iowait_time == -1ULL)
144 cur_iowait_time = 0;
145
146 iowait_time = (unsigned int) (cur_iowait_time -
147 od_j_dbs_info->prev_cpu_iowait);
148 od_j_dbs_info->prev_cpu_iowait = cur_iowait_time;
149
150 /*
151 * For the purpose of ondemand, waiting for disk IO is
152 * an indication that you're performance critical, and
153 * not that the system is actually idle. So subtract the
154 * iowait time from the cpu idle time.
155 */
156 if (od_tuners->io_is_busy && idle_time >= iowait_time)
157 idle_time -= iowait_time;
158 }
159
160 if (unlikely(!wall_time || wall_time < idle_time))
161 continue;
162
163 load = 100 * (wall_time - idle_time) / wall_time;
164
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000165 if (dbs_data->cdata->governor == GOV_ONDEMAND) {
Viresh Kumar4471a342012-10-26 00:47:42 +0200166 int freq_avg = __cpufreq_driver_getavg(policy, j);
167 if (freq_avg <= 0)
168 freq_avg = policy->cur;
169
170 load *= freq_avg;
171 }
172
173 if (load > max_load)
174 max_load = load;
175 }
176
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000177 dbs_data->cdata->gov_check_cpu(cpu, max_load);
Viresh Kumar4471a342012-10-26 00:47:42 +0200178}
179EXPORT_SYMBOL_GPL(dbs_check_cpu);
180
Fabio Baltieri58ddcea2013-01-30 13:53:37 +0000181static inline void dbs_timer_init(struct dbs_data *dbs_data, int cpu,
182 unsigned int sampling_rate)
Viresh Kumar4471a342012-10-26 00:47:42 +0200183{
184 int delay = delay_for_sampling_rate(sampling_rate);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000185 struct cpu_dbs_common_info *cdbs = dbs_data->cdata->get_cpu_cdbs(cpu);
Viresh Kumar4471a342012-10-26 00:47:42 +0200186
Fabio Baltieri58ddcea2013-01-30 13:53:37 +0000187 schedule_delayed_work_on(cpu, &cdbs->work, delay);
Viresh Kumar4471a342012-10-26 00:47:42 +0200188}
189
Fabio Baltieri58ddcea2013-01-30 13:53:37 +0000190static inline void dbs_timer_exit(struct dbs_data *dbs_data, int cpu)
Viresh Kumar4471a342012-10-26 00:47:42 +0200191{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000192 struct cpu_dbs_common_info *cdbs = dbs_data->cdata->get_cpu_cdbs(cpu);
Fabio Baltieri58ddcea2013-01-30 13:53:37 +0000193
Viresh Kumar4471a342012-10-26 00:47:42 +0200194 cancel_delayed_work_sync(&cdbs->work);
195}
196
Viresh Kumar44472662013-01-31 17:28:02 +0000197/* Will return if we need to evaluate cpu load again or not */
198bool need_load_eval(struct cpu_dbs_common_info *cdbs,
199 unsigned int sampling_rate)
200{
201 if (policy_is_shared(cdbs->cur_policy)) {
202 ktime_t time_now = ktime_get();
203 s64 delta_us = ktime_us_delta(time_now, cdbs->time_stamp);
204
205 /* Do nothing if we recently have sampled */
206 if (delta_us < (s64)(sampling_rate / 2))
207 return false;
208 else
209 cdbs->time_stamp = time_now;
210 }
211
212 return true;
213}
214EXPORT_SYMBOL_GPL(need_load_eval);
215
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000216static void set_sampling_rate(struct dbs_data *dbs_data,
217 unsigned int sampling_rate)
Viresh Kumar4471a342012-10-26 00:47:42 +0200218{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000219 if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
220 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
221 cs_tuners->sampling_rate = sampling_rate;
222 } else {
223 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
224 od_tuners->sampling_rate = sampling_rate;
225 }
226}
227
228int cpufreq_governor_dbs(struct cpufreq_policy *policy,
229 struct common_dbs_data *cdata, unsigned int event)
230{
231 struct dbs_data *dbs_data;
Viresh Kumar4471a342012-10-26 00:47:42 +0200232 struct od_cpu_dbs_info_s *od_dbs_info = NULL;
233 struct cs_cpu_dbs_info_s *cs_dbs_info = NULL;
Viresh Kumar8eeed092013-01-31 17:28:01 +0000234 struct od_ops *od_ops = NULL;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000235 struct od_dbs_tuners *od_tuners = NULL;
236 struct cs_dbs_tuners *cs_tuners = NULL;
Viresh Kumar4471a342012-10-26 00:47:42 +0200237 struct cpu_dbs_common_info *cpu_cdbs;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000238 unsigned int sampling_rate, latency, ignore_nice, j, cpu = policy->cpu;
Viresh Kumar4471a342012-10-26 00:47:42 +0200239 int rc;
240
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000241 if (have_governor_per_policy())
242 dbs_data = policy->governor_data;
243 else
244 dbs_data = cdata->gdbs_data;
Viresh Kumar4471a342012-10-26 00:47:42 +0200245
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000246 WARN_ON(!dbs_data && (event != CPUFREQ_GOV_POLICY_INIT));
247
248 switch (event) {
249 case CPUFREQ_GOV_POLICY_INIT:
250 if (have_governor_per_policy()) {
251 WARN_ON(dbs_data);
252 } else if (dbs_data) {
253 policy->governor_data = dbs_data;
254 return 0;
255 }
256
257 dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL);
258 if (!dbs_data) {
259 pr_err("%s: POLICY_INIT: kzalloc failed\n", __func__);
260 return -ENOMEM;
261 }
262
263 dbs_data->cdata = cdata;
264 rc = cdata->init(dbs_data);
265 if (rc) {
266 pr_err("%s: POLICY_INIT: init() failed\n", __func__);
267 kfree(dbs_data);
268 return rc;
269 }
270
271 rc = sysfs_create_group(get_governor_parent_kobj(policy),
272 get_sysfs_attr(dbs_data));
273 if (rc) {
274 cdata->exit(dbs_data);
275 kfree(dbs_data);
276 return rc;
277 }
278
279 policy->governor_data = dbs_data;
280
281 /* policy latency is in nS. Convert it to uS first */
282 latency = policy->cpuinfo.transition_latency / 1000;
283 if (latency == 0)
284 latency = 1;
285
286 /* Bring kernel and HW constraints together */
287 dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate,
288 MIN_LATENCY_MULTIPLIER * latency);
289 set_sampling_rate(dbs_data, max(dbs_data->min_sampling_rate,
290 latency * LATENCY_MULTIPLIER));
291
292 if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
293 struct cs_ops *cs_ops = dbs_data->cdata->gov_ops;
294
295 cpufreq_register_notifier(cs_ops->notifier_block,
296 CPUFREQ_TRANSITION_NOTIFIER);
297 }
298
299 if (!have_governor_per_policy())
300 cdata->gdbs_data = dbs_data;
301
302 return 0;
303 case CPUFREQ_GOV_POLICY_EXIT:
304 if ((policy->governor->initialized == 1) ||
305 have_governor_per_policy()) {
306 sysfs_remove_group(get_governor_parent_kobj(policy),
307 get_sysfs_attr(dbs_data));
308
309 if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
310 struct cs_ops *cs_ops = dbs_data->cdata->gov_ops;
311
312 cpufreq_unregister_notifier(cs_ops->notifier_block,
313 CPUFREQ_TRANSITION_NOTIFIER);
314 }
315
316 cdata->exit(dbs_data);
317 kfree(dbs_data);
318 cdata->gdbs_data = NULL;
319 }
320
321 policy->governor_data = NULL;
322 return 0;
323 }
324
325 cpu_cdbs = dbs_data->cdata->get_cpu_cdbs(cpu);
326
327 if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
328 cs_tuners = dbs_data->tuners;
329 cs_dbs_info = dbs_data->cdata->get_cpu_dbs_info_s(cpu);
330 sampling_rate = cs_tuners->sampling_rate;
Viresh Kumar4471a342012-10-26 00:47:42 +0200331 ignore_nice = cs_tuners->ignore_nice;
332 } else {
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000333 od_tuners = dbs_data->tuners;
334 od_dbs_info = dbs_data->cdata->get_cpu_dbs_info_s(cpu);
335 sampling_rate = od_tuners->sampling_rate;
Viresh Kumar4471a342012-10-26 00:47:42 +0200336 ignore_nice = od_tuners->ignore_nice;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000337 od_ops = dbs_data->cdata->gov_ops;
Viresh Kumar4471a342012-10-26 00:47:42 +0200338 }
339
340 switch (event) {
341 case CPUFREQ_GOV_START:
Viresh Kumar3361b7b2013-02-04 11:38:51 +0000342 if (!policy->cur)
Viresh Kumar4471a342012-10-26 00:47:42 +0200343 return -EINVAL;
344
345 mutex_lock(&dbs_data->mutex);
346
Viresh Kumar4471a342012-10-26 00:47:42 +0200347 for_each_cpu(j, policy->cpus) {
Viresh Kumar8eeed092013-01-31 17:28:01 +0000348 struct cpu_dbs_common_info *j_cdbs =
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000349 dbs_data->cdata->get_cpu_cdbs(j);
Viresh Kumar4471a342012-10-26 00:47:42 +0200350
Fabio Baltieri09dca5a2013-01-31 10:39:19 +0000351 j_cdbs->cpu = j;
Viresh Kumar4471a342012-10-26 00:47:42 +0200352 j_cdbs->cur_policy = policy;
353 j_cdbs->prev_cpu_idle = get_cpu_idle_time(j,
354 &j_cdbs->prev_cpu_wall);
355 if (ignore_nice)
356 j_cdbs->prev_cpu_nice =
357 kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Rickard Andersson2abfa872012-12-27 14:55:38 +0000358
359 mutex_init(&j_cdbs->timer_mutex);
360 INIT_DEFERRABLE_WORK(&j_cdbs->work,
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000361 dbs_data->cdata->gov_dbs_timer);
Viresh Kumar4471a342012-10-26 00:47:42 +0200362 }
363
Viresh Kumar4471a342012-10-26 00:47:42 +0200364 /*
365 * conservative does not implement micro like ondemand
366 * governor, thus we are bound to jiffes/HZ
367 */
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000368 if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
Viresh Kumar8eeed092013-01-31 17:28:01 +0000369 cs_dbs_info->down_skip = 0;
370 cs_dbs_info->enable = 1;
371 cs_dbs_info->requested_freq = policy->cur;
Viresh Kumar4471a342012-10-26 00:47:42 +0200372 } else {
Viresh Kumar8eeed092013-01-31 17:28:01 +0000373 od_dbs_info->rate_mult = 1;
374 od_dbs_info->sample_type = OD_NORMAL_SAMPLE;
375 od_ops->powersave_bias_init_cpu(cpu);
Viresh Kumar4471a342012-10-26 00:47:42 +0200376 }
377
Viresh Kumar4471a342012-10-26 00:47:42 +0200378 mutex_unlock(&dbs_data->mutex);
379
Fabio Baltieri58ddcea2013-01-30 13:53:37 +0000380 /* Initiate timer time stamp */
381 cpu_cdbs->time_stamp = ktime_get();
Fabio Baltierida53d612012-12-27 14:55:40 +0000382
Fabio Baltieri58ddcea2013-01-30 13:53:37 +0000383 for_each_cpu(j, policy->cpus)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000384 dbs_timer_init(dbs_data, j, sampling_rate);
Viresh Kumar4471a342012-10-26 00:47:42 +0200385 break;
386
387 case CPUFREQ_GOV_STOP:
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000388 if (dbs_data->cdata->governor == GOV_CONSERVATIVE)
Viresh Kumar4471a342012-10-26 00:47:42 +0200389 cs_dbs_info->enable = 0;
390
Fabio Baltieri58ddcea2013-01-30 13:53:37 +0000391 for_each_cpu(j, policy->cpus)
392 dbs_timer_exit(dbs_data, j);
Viresh Kumar4471a342012-10-26 00:47:42 +0200393
394 mutex_lock(&dbs_data->mutex);
395 mutex_destroy(&cpu_cdbs->timer_mutex);
Viresh Kumar4471a342012-10-26 00:47:42 +0200396
Viresh Kumar4471a342012-10-26 00:47:42 +0200397 mutex_unlock(&dbs_data->mutex);
398
399 break;
400
401 case CPUFREQ_GOV_LIMITS:
402 mutex_lock(&cpu_cdbs->timer_mutex);
403 if (policy->max < cpu_cdbs->cur_policy->cur)
404 __cpufreq_driver_target(cpu_cdbs->cur_policy,
405 policy->max, CPUFREQ_RELATION_H);
406 else if (policy->min > cpu_cdbs->cur_policy->cur)
407 __cpufreq_driver_target(cpu_cdbs->cur_policy,
408 policy->min, CPUFREQ_RELATION_L);
409 dbs_check_cpu(dbs_data, cpu);
410 mutex_unlock(&cpu_cdbs->timer_mutex);
411 break;
412 }
413 return 0;
414}
415EXPORT_SYMBOL_GPL(cpufreq_governor_dbs);