ipv6: gre: fix wrong skb->protocol in WCCP
[firefly-linux-kernel-4.4.55.git] / drivers / cpufreq / cpufreq_governor.c
1 /*
2  * drivers/cpufreq/cpufreq_governor.c
3  *
4  * CPUFREQ governors common code
5  *
6  * 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  *
12  * 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
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
19 #include <asm/cputime.h>
20 #include <linux/cpufreq.h>
21 #include <linux/cpumask.h>
22 #include <linux/export.h>
23 #include <linux/kernel_stat.h>
24 #include <linux/mutex.h>
25 #include <linux/slab.h>
26 #include <linux/tick.h>
27 #include <linux/types.h>
28 #include <linux/workqueue.h>
29
30 #include "cpufreq_governor.h"
31
32 static 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
40 static 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
48 static 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)
65                 *wall = cputime_to_usecs(cur_wall_time);
66
67         return cputime_to_usecs(idle_time);
68 }
69
70 u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
71 {
72         u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
73
74         if (idle_time == -1ULL)
75                 return get_cpu_idle_time_jiffy(cpu, wall);
76         else if (!io_busy)
77                 idle_time += get_cpu_iowait_time_us(cpu, wall);
78
79         return idle_time;
80 }
81 EXPORT_SYMBOL_GPL(get_cpu_idle_time);
82
83 void dbs_check_cpu(struct dbs_data *dbs_data, int cpu)
84 {
85         struct cpu_dbs_common_info *cdbs = dbs_data->cdata->get_cpu_cdbs(cpu);
86         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
93         if (dbs_data->cdata->governor == GOV_ONDEMAND)
94                 ignore_nice = od_tuners->ignore_nice_load;
95         else
96                 ignore_nice = cs_tuners->ignore_nice_load;
97
98         policy = cdbs->cur_policy;
99
100         /* Get Absolute Load */
101         for_each_cpu(j, policy->cpus) {
102                 struct cpu_dbs_common_info *j_cdbs;
103                 u64 cur_wall_time, cur_idle_time;
104                 unsigned int idle_time, wall_time;
105                 unsigned int load;
106                 int io_busy = 0;
107
108                 j_cdbs = dbs_data->cdata->get_cpu_cdbs(j);
109
110                 /*
111                  * For the purpose of ondemand, waiting for disk IO is
112                  * an indication that you're performance critical, and
113                  * not that the system is actually idle. So do not add
114                  * the iowait time to the cpu idle time.
115                  */
116                 if (dbs_data->cdata->governor == GOV_ONDEMAND)
117                         io_busy = od_tuners->io_is_busy;
118                 cur_idle_time = get_cpu_idle_time(j, &cur_wall_time, io_busy);
119
120                 wall_time = (unsigned int)
121                         (cur_wall_time - j_cdbs->prev_cpu_wall);
122                 j_cdbs->prev_cpu_wall = cur_wall_time;
123
124                 idle_time = (unsigned int)
125                         (cur_idle_time - j_cdbs->prev_cpu_idle);
126                 j_cdbs->prev_cpu_idle = cur_idle_time;
127
128                 if (ignore_nice) {
129                         u64 cur_nice;
130                         unsigned long cur_nice_jiffies;
131
132                         cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE] -
133                                          cdbs->prev_cpu_nice;
134                         /*
135                          * Assumption: nice time between sampling periods will
136                          * be less than 2^32 jiffies for 32 bit sys
137                          */
138                         cur_nice_jiffies = (unsigned long)
139                                         cputime64_to_jiffies64(cur_nice);
140
141                         cdbs->prev_cpu_nice =
142                                 kcpustat_cpu(j).cpustat[CPUTIME_NICE];
143                         idle_time += jiffies_to_usecs(cur_nice_jiffies);
144                 }
145
146                 if (unlikely(!wall_time || wall_time < idle_time))
147                         continue;
148
149                 load = 100 * (wall_time - idle_time) / wall_time;
150
151                 if (load > max_load)
152                         max_load = load;
153         }
154
155         dbs_data->cdata->gov_check_cpu(cpu, max_load);
156 }
157 EXPORT_SYMBOL_GPL(dbs_check_cpu);
158
159 static inline void __gov_queue_work(int cpu, struct dbs_data *dbs_data,
160                 unsigned int delay)
161 {
162         struct cpu_dbs_common_info *cdbs = dbs_data->cdata->get_cpu_cdbs(cpu);
163
164         mod_delayed_work_on(cpu, system_wq, &cdbs->work, delay);
165 }
166
167 void gov_queue_work(struct dbs_data *dbs_data, struct cpufreq_policy *policy,
168                 unsigned int delay, bool all_cpus)
169 {
170         int i;
171
172         if (!policy->governor_enabled)
173                 return;
174
175         if (!all_cpus) {
176                 __gov_queue_work(smp_processor_id(), dbs_data, delay);
177         } else {
178                 for_each_cpu(i, policy->cpus)
179                         __gov_queue_work(i, dbs_data, delay);
180         }
181 }
182 EXPORT_SYMBOL_GPL(gov_queue_work);
183
184 static inline void gov_cancel_work(struct dbs_data *dbs_data,
185                 struct cpufreq_policy *policy)
186 {
187         struct cpu_dbs_common_info *cdbs;
188         int i;
189
190         for_each_cpu(i, policy->cpus) {
191                 cdbs = dbs_data->cdata->get_cpu_cdbs(i);
192                 cancel_delayed_work_sync(&cdbs->work);
193         }
194 }
195
196 /* Will return if we need to evaluate cpu load again or not */
197 bool need_load_eval(struct cpu_dbs_common_info *cdbs,
198                 unsigned int sampling_rate)
199 {
200         if (policy_is_shared(cdbs->cur_policy)) {
201                 ktime_t time_now = ktime_get();
202                 s64 delta_us = ktime_us_delta(time_now, cdbs->time_stamp);
203
204                 /* Do nothing if we recently have sampled */
205                 if (delta_us < (s64)(sampling_rate / 2))
206                         return false;
207                 else
208                         cdbs->time_stamp = time_now;
209         }
210
211         return true;
212 }
213 EXPORT_SYMBOL_GPL(need_load_eval);
214
215 static void set_sampling_rate(struct dbs_data *dbs_data,
216                 unsigned int sampling_rate)
217 {
218         if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
219                 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
220                 cs_tuners->sampling_rate = sampling_rate;
221         } else {
222                 struct od_dbs_tuners *od_tuners = dbs_data->tuners;
223                 od_tuners->sampling_rate = sampling_rate;
224         }
225 }
226
227 int cpufreq_governor_dbs(struct cpufreq_policy *policy,
228                 struct common_dbs_data *cdata, unsigned int event)
229 {
230         struct dbs_data *dbs_data;
231         struct od_cpu_dbs_info_s *od_dbs_info = NULL;
232         struct cs_cpu_dbs_info_s *cs_dbs_info = NULL;
233         struct od_ops *od_ops = NULL;
234         struct od_dbs_tuners *od_tuners = NULL;
235         struct cs_dbs_tuners *cs_tuners = NULL;
236         struct cpu_dbs_common_info *cpu_cdbs;
237         unsigned int sampling_rate, latency, ignore_nice, j, cpu = policy->cpu;
238         int io_busy = 0;
239         int rc;
240
241         if (have_governor_per_policy())
242                 dbs_data = policy->governor_data;
243         else
244                 dbs_data = cdata->gdbs_data;
245
246         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                         dbs_data->usage_count++;
254                         policy->governor_data = dbs_data;
255                         return 0;
256                 }
257
258                 dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL);
259                 if (!dbs_data) {
260                         pr_err("%s: POLICY_INIT: kzalloc failed\n", __func__);
261                         return -ENOMEM;
262                 }
263
264                 dbs_data->cdata = cdata;
265                 dbs_data->usage_count = 1;
266                 rc = cdata->init(dbs_data);
267                 if (rc) {
268                         pr_err("%s: POLICY_INIT: init() failed\n", __func__);
269                         kfree(dbs_data);
270                         return rc;
271                 }
272
273                 rc = sysfs_create_group(get_governor_parent_kobj(policy),
274                                 get_sysfs_attr(dbs_data));
275                 if (rc) {
276                         cdata->exit(dbs_data);
277                         kfree(dbs_data);
278                         return rc;
279                 }
280
281                 policy->governor_data = dbs_data;
282
283                 /* policy latency is in nS. Convert it to uS first */
284                 latency = policy->cpuinfo.transition_latency / 1000;
285                 if (latency == 0)
286                         latency = 1;
287
288                 /* Bring kernel and HW constraints together */
289                 dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate,
290                                 MIN_LATENCY_MULTIPLIER * latency);
291                 set_sampling_rate(dbs_data, max(dbs_data->min_sampling_rate,
292                                         latency * LATENCY_MULTIPLIER));
293
294                 if ((cdata->governor == GOV_CONSERVATIVE) &&
295                                 (!policy->governor->initialized)) {
296                         struct cs_ops *cs_ops = dbs_data->cdata->gov_ops;
297
298                         cpufreq_register_notifier(cs_ops->notifier_block,
299                                         CPUFREQ_TRANSITION_NOTIFIER);
300                 }
301
302                 if (!have_governor_per_policy())
303                         cdata->gdbs_data = dbs_data;
304
305                 return 0;
306         case CPUFREQ_GOV_POLICY_EXIT:
307                 if (!--dbs_data->usage_count) {
308                         sysfs_remove_group(get_governor_parent_kobj(policy),
309                                         get_sysfs_attr(dbs_data));
310
311                         if ((dbs_data->cdata->governor == GOV_CONSERVATIVE) &&
312                                 (policy->governor->initialized == 1)) {
313                                 struct cs_ops *cs_ops = dbs_data->cdata->gov_ops;
314
315                                 cpufreq_unregister_notifier(cs_ops->notifier_block,
316                                                 CPUFREQ_TRANSITION_NOTIFIER);
317                         }
318
319                         cdata->exit(dbs_data);
320                         kfree(dbs_data);
321                         cdata->gdbs_data = NULL;
322                 }
323
324                 policy->governor_data = NULL;
325                 return 0;
326         }
327
328         cpu_cdbs = dbs_data->cdata->get_cpu_cdbs(cpu);
329
330         if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
331                 cs_tuners = dbs_data->tuners;
332                 cs_dbs_info = dbs_data->cdata->get_cpu_dbs_info_s(cpu);
333                 sampling_rate = cs_tuners->sampling_rate;
334                 ignore_nice = cs_tuners->ignore_nice_load;
335         } else {
336                 od_tuners = dbs_data->tuners;
337                 od_dbs_info = dbs_data->cdata->get_cpu_dbs_info_s(cpu);
338                 sampling_rate = od_tuners->sampling_rate;
339                 ignore_nice = od_tuners->ignore_nice_load;
340                 od_ops = dbs_data->cdata->gov_ops;
341                 io_busy = od_tuners->io_is_busy;
342         }
343
344         switch (event) {
345         case CPUFREQ_GOV_START:
346                 if (!policy->cur)
347                         return -EINVAL;
348
349                 mutex_lock(&dbs_data->mutex);
350
351                 for_each_cpu(j, policy->cpus) {
352                         struct cpu_dbs_common_info *j_cdbs =
353                                 dbs_data->cdata->get_cpu_cdbs(j);
354
355                         j_cdbs->cpu = j;
356                         j_cdbs->cur_policy = policy;
357                         j_cdbs->prev_cpu_idle = get_cpu_idle_time(j,
358                                                &j_cdbs->prev_cpu_wall, io_busy);
359                         if (ignore_nice)
360                                 j_cdbs->prev_cpu_nice =
361                                         kcpustat_cpu(j).cpustat[CPUTIME_NICE];
362
363                         mutex_init(&j_cdbs->timer_mutex);
364                         INIT_DEFERRABLE_WORK(&j_cdbs->work,
365                                              dbs_data->cdata->gov_dbs_timer);
366                 }
367
368                 /*
369                  * conservative does not implement micro like ondemand
370                  * governor, thus we are bound to jiffes/HZ
371                  */
372                 if (dbs_data->cdata->governor == GOV_CONSERVATIVE) {
373                         cs_dbs_info->down_skip = 0;
374                         cs_dbs_info->enable = 1;
375                         cs_dbs_info->requested_freq = policy->cur;
376                 } else {
377                         od_dbs_info->rate_mult = 1;
378                         od_dbs_info->sample_type = OD_NORMAL_SAMPLE;
379                         od_ops->powersave_bias_init_cpu(cpu);
380                 }
381
382                 mutex_unlock(&dbs_data->mutex);
383
384                 /* Initiate timer time stamp */
385                 cpu_cdbs->time_stamp = ktime_get();
386
387                 gov_queue_work(dbs_data, policy,
388                                 delay_for_sampling_rate(sampling_rate), true);
389                 break;
390
391         case CPUFREQ_GOV_STOP:
392                 if (dbs_data->cdata->governor == GOV_CONSERVATIVE)
393                         cs_dbs_info->enable = 0;
394
395                 gov_cancel_work(dbs_data, policy);
396
397                 mutex_lock(&dbs_data->mutex);
398                 mutex_destroy(&cpu_cdbs->timer_mutex);
399
400                 mutex_unlock(&dbs_data->mutex);
401
402                 break;
403
404         case CPUFREQ_GOV_LIMITS:
405                 mutex_lock(&cpu_cdbs->timer_mutex);
406                 if (policy->max < cpu_cdbs->cur_policy->cur)
407                         __cpufreq_driver_target(cpu_cdbs->cur_policy,
408                                         policy->max, CPUFREQ_RELATION_H);
409                 else if (policy->min > cpu_cdbs->cur_policy->cur)
410                         __cpufreq_driver_target(cpu_cdbs->cur_policy,
411                                         policy->min, CPUFREQ_RELATION_L);
412                 dbs_check_cpu(dbs_data, cpu);
413                 mutex_unlock(&cpu_cdbs->timer_mutex);
414                 break;
415         }
416         return 0;
417 }
418 EXPORT_SYMBOL_GPL(cpufreq_governor_dbs);