blob: 91e767a058a763995971b6e98f8c1336a78df471 [file] [log] [blame]
Viresh Kumar4471a342012-10-26 00:47:42 +02001/*
2 * drivers/cpufreq/cpufreq_governor.h
3 *
4 * Header file for 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
Borislav Petkovbeb0ff32013-04-02 12:26:15 +000017#ifndef _CPUFREQ_GOVERNOR_H
18#define _CPUFREQ_GOVERNOR_H
Viresh Kumar4471a342012-10-26 00:47:42 +020019
Rafael J. Wysocki2dd3e722015-12-08 21:44:05 +010020#include <linux/atomic.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020021#include <linux/cpufreq.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053022#include <linux/kernel_stat.h>
23#include <linux/module.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020024#include <linux/mutex.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020025
26/*
27 * The polling frequency depends on the capability of the processor. Default
28 * polling frequency is 1000 times the transition latency of the processor. The
Stratos Karafotisc4afc412013-08-26 21:42:21 +030029 * governor will work on any processor with transition latency <= 10ms, using
Viresh Kumar4471a342012-10-26 00:47:42 +020030 * appropriate sampling rate.
31 *
Stratos Karafotisc4afc412013-08-26 21:42:21 +030032 * For CPUs with transition latency > 10ms (mostly drivers with CPUFREQ_ETERNAL)
33 * this governor will not work. All times here are in us (micro seconds).
Viresh Kumar4471a342012-10-26 00:47:42 +020034 */
35#define MIN_SAMPLING_RATE_RATIO (2)
36#define LATENCY_MULTIPLIER (1000)
Viresh Kumar98104ee2013-02-26 15:07:24 +053037#define MIN_LATENCY_MULTIPLIER (20)
Viresh Kumar4471a342012-10-26 00:47:42 +020038#define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000)
39
40/* Ondemand Sampling types */
41enum {OD_NORMAL_SAMPLE, OD_SUB_SAMPLE};
42
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000043/*
44 * Macro for creating governors sysfs routines
45 *
46 * - gov_sys: One governor instance per whole system
47 * - gov_pol: One governor instance per policy
48 */
49
50/* Create attributes */
51#define gov_sys_attr_ro(_name) \
52static struct global_attr _name##_gov_sys = \
53__ATTR(_name, 0444, show_##_name##_gov_sys, NULL)
54
55#define gov_sys_attr_rw(_name) \
56static struct global_attr _name##_gov_sys = \
57__ATTR(_name, 0644, show_##_name##_gov_sys, store_##_name##_gov_sys)
58
59#define gov_pol_attr_ro(_name) \
60static struct freq_attr _name##_gov_pol = \
61__ATTR(_name, 0444, show_##_name##_gov_pol, NULL)
62
63#define gov_pol_attr_rw(_name) \
64static struct freq_attr _name##_gov_pol = \
65__ATTR(_name, 0644, show_##_name##_gov_pol, store_##_name##_gov_pol)
66
67#define gov_sys_pol_attr_rw(_name) \
68 gov_sys_attr_rw(_name); \
69 gov_pol_attr_rw(_name)
70
71#define gov_sys_pol_attr_ro(_name) \
72 gov_sys_attr_ro(_name); \
73 gov_pol_attr_ro(_name)
74
75/* Create show/store routines */
76#define show_one(_gov, file_name) \
77static ssize_t show_##file_name##_gov_sys \
Viresh Kumar4471a342012-10-26 00:47:42 +020078(struct kobject *kobj, struct attribute *attr, char *buf) \
79{ \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000080 struct _gov##_dbs_tuners *tuners = _gov##_dbs_cdata.gdbs_data->tuners; \
81 return sprintf(buf, "%u\n", tuners->file_name); \
82} \
83 \
Viresh Kumarbb176f72013-06-19 14:19:33 +053084static ssize_t show_##file_name##_gov_pol \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000085(struct cpufreq_policy *policy, char *buf) \
86{ \
87 struct dbs_data *dbs_data = policy->governor_data; \
88 struct _gov##_dbs_tuners *tuners = dbs_data->tuners; \
89 return sprintf(buf, "%u\n", tuners->file_name); \
Viresh Kumar4471a342012-10-26 00:47:42 +020090}
91
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000092#define store_one(_gov, file_name) \
93static ssize_t store_##file_name##_gov_sys \
Viresh Kumarbb176f72013-06-19 14:19:33 +053094(struct kobject *kobj, struct attribute *attr, const char *buf, size_t count) \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000095{ \
96 struct dbs_data *dbs_data = _gov##_dbs_cdata.gdbs_data; \
97 return store_##file_name(dbs_data, buf, count); \
98} \
99 \
100static ssize_t store_##file_name##_gov_pol \
101(struct cpufreq_policy *policy, const char *buf, size_t count) \
102{ \
103 struct dbs_data *dbs_data = policy->governor_data; \
104 return store_##file_name(dbs_data, buf, count); \
105}
106
107#define show_store_one(_gov, file_name) \
108show_one(_gov, file_name); \
109store_one(_gov, file_name)
110
111/* create helper routines */
Viresh Kumar4471a342012-10-26 00:47:42 +0200112#define define_get_cpu_dbs_routines(_dbs_info) \
Viresh Kumar875b8502015-06-19 17:18:03 +0530113static struct cpu_dbs_info *get_cpu_cdbs(int cpu) \
Viresh Kumar4471a342012-10-26 00:47:42 +0200114{ \
115 return &per_cpu(_dbs_info, cpu).cdbs; \
116} \
117 \
118static void *get_cpu_dbs_info_s(int cpu) \
119{ \
120 return &per_cpu(_dbs_info, cpu); \
121}
122
123/*
124 * Abbreviations:
125 * dbs: used as a shortform for demand based switching It helps to keep variable
126 * names smaller, simpler
127 * cdbs: common dbs
Namhyung Kime5dde922013-02-28 05:38:00 +0000128 * od_*: On-demand governor
Viresh Kumar4471a342012-10-26 00:47:42 +0200129 * cs_*: Conservative governor
130 */
131
Viresh Kumar44152cb2015-07-18 11:30:59 +0530132/* Common to all CPUs of a policy */
133struct cpu_common_dbs_info {
134 struct cpufreq_policy *policy;
135 /*
Viresh Kumar70f43e52015-12-09 07:34:42 +0530136 * Per policy mutex that serializes load evaluation from limit-change
137 * and work-handler.
Viresh Kumar44152cb2015-07-18 11:30:59 +0530138 */
139 struct mutex timer_mutex;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530140
Viresh Kumar44152cb2015-07-18 11:30:59 +0530141 ktime_t time_stamp;
Rafael J. Wysocki2dd3e722015-12-08 21:44:05 +0100142 atomic_t skip_work;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530143 struct work_struct work;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530144};
145
Viresh Kumar4471a342012-10-26 00:47:42 +0200146/* Per cpu structures */
Viresh Kumar875b8502015-06-19 17:18:03 +0530147struct cpu_dbs_info {
Viresh Kumar1e7586a2012-10-26 00:51:21 +0200148 u64 prev_cpu_idle;
149 u64 prev_cpu_wall;
150 u64 prev_cpu_nice;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530151 /*
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530152 * Used to keep track of load in the previous interval. However, when
153 * explicitly set to zero, it is used as a flag to ensure that we copy
154 * the previous load to the current interval only once, upon the first
155 * wake-up from idle.
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530156 */
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530157 unsigned int prev_load;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530158 struct timer_list timer;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530159 struct cpu_common_dbs_info *shared;
Viresh Kumar4471a342012-10-26 00:47:42 +0200160};
161
162struct od_cpu_dbs_info_s {
Viresh Kumar875b8502015-06-19 17:18:03 +0530163 struct cpu_dbs_info cdbs;
Viresh Kumar4471a342012-10-26 00:47:42 +0200164 struct cpufreq_frequency_table *freq_table;
165 unsigned int freq_lo;
166 unsigned int freq_lo_jiffies;
167 unsigned int freq_hi_jiffies;
168 unsigned int rate_mult;
169 unsigned int sample_type:1;
170};
171
172struct cs_cpu_dbs_info_s {
Viresh Kumar875b8502015-06-19 17:18:03 +0530173 struct cpu_dbs_info cdbs;
Viresh Kumar4471a342012-10-26 00:47:42 +0200174 unsigned int down_skip;
175 unsigned int requested_freq;
Viresh Kumar4471a342012-10-26 00:47:42 +0200176};
177
Stratos Karafotisc4afc412013-08-26 21:42:21 +0300178/* Per policy Governors sysfs tunables */
Viresh Kumar4471a342012-10-26 00:47:42 +0200179struct od_dbs_tuners {
Viresh Kumar6c4640c2013-08-05 12:28:02 +0530180 unsigned int ignore_nice_load;
Viresh Kumar4471a342012-10-26 00:47:42 +0200181 unsigned int sampling_rate;
182 unsigned int sampling_down_factor;
183 unsigned int up_threshold;
Viresh Kumar4471a342012-10-26 00:47:42 +0200184 unsigned int powersave_bias;
185 unsigned int io_is_busy;
186};
187
188struct cs_dbs_tuners {
Viresh Kumar6c4640c2013-08-05 12:28:02 +0530189 unsigned int ignore_nice_load;
Viresh Kumar4471a342012-10-26 00:47:42 +0200190 unsigned int sampling_rate;
191 unsigned int sampling_down_factor;
192 unsigned int up_threshold;
193 unsigned int down_threshold;
194 unsigned int freq_step;
195};
196
Stratos Karafotisc4afc412013-08-26 21:42:21 +0300197/* Common Governor data across policies */
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000198struct dbs_data;
199struct common_dbs_data {
Viresh Kumar4471a342012-10-26 00:47:42 +0200200 /* Common across governors */
201 #define GOV_ONDEMAND 0
202 #define GOV_CONSERVATIVE 1
203 int governor;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000204 struct attribute_group *attr_group_gov_sys; /* one governor - system */
205 struct attribute_group *attr_group_gov_pol; /* one governor - policy */
Viresh Kumar4471a342012-10-26 00:47:42 +0200206
Viresh Kumar0b981e72013-10-02 14:13:18 +0530207 /*
208 * Common data for platforms that don't set
209 * CPUFREQ_HAVE_GOVERNOR_PER_POLICY
210 */
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000211 struct dbs_data *gdbs_data;
Viresh Kumar4471a342012-10-26 00:47:42 +0200212
Viresh Kumar875b8502015-06-19 17:18:03 +0530213 struct cpu_dbs_info *(*get_cpu_cdbs)(int cpu);
Viresh Kumar4471a342012-10-26 00:47:42 +0200214 void *(*get_cpu_dbs_info_s)(int cpu);
Viresh Kumaraffde5d2015-12-03 09:37:51 +0530215 unsigned int (*gov_dbs_timer)(struct cpufreq_policy *policy,
Viresh Kumar43e0ee32015-07-18 11:31:00 +0530216 bool modify_all);
Viresh Kumar4471a342012-10-26 00:47:42 +0200217 void (*gov_check_cpu)(int cpu, unsigned int load);
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530218 int (*init)(struct dbs_data *dbs_data, bool notify);
219 void (*exit)(struct dbs_data *dbs_data, bool notify);
Viresh Kumar4471a342012-10-26 00:47:42 +0200220
221 /* Governor specific ops, see below */
222 void *gov_ops;
Viresh Kumar732b6d62015-06-03 15:57:13 +0530223
224 /*
225 * Protects governor's data (struct dbs_data and struct common_dbs_data)
226 */
227 struct mutex mutex;
Viresh Kumar4471a342012-10-26 00:47:42 +0200228};
229
Stratos Karafotisc4afc412013-08-26 21:42:21 +0300230/* Governor Per policy data */
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000231struct dbs_data {
232 struct common_dbs_data *cdata;
233 unsigned int min_sampling_rate;
Viresh Kumara97c98a2013-04-30 14:32:17 +0000234 int usage_count;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000235 void *tuners;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000236};
237
Viresh Kumar4471a342012-10-26 00:47:42 +0200238/* Governor specific ops, will be passed to dbs_data->gov_ops */
239struct od_ops {
Viresh Kumar4471a342012-10-26 00:47:42 +0200240 void (*powersave_bias_init_cpu)(int cpu);
241 unsigned int (*powersave_bias_target)(struct cpufreq_policy *policy,
242 unsigned int freq_next, unsigned int relation);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530243 void (*freq_increase)(struct cpufreq_policy *policy, unsigned int freq);
Viresh Kumar4471a342012-10-26 00:47:42 +0200244};
245
Viresh Kumar4471a342012-10-26 00:47:42 +0200246static inline int delay_for_sampling_rate(unsigned int sampling_rate)
247{
248 int delay = usecs_to_jiffies(sampling_rate);
249
250 /* We want all CPUs to do sampling nearly on same jiffy */
251 if (num_online_cpus() > 1)
252 delay -= jiffies % delay;
253
254 return delay;
255}
256
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000257#define declare_show_sampling_rate_min(_gov) \
258static ssize_t show_sampling_rate_min_gov_sys \
259(struct kobject *kobj, struct attribute *attr, char *buf) \
260{ \
261 struct dbs_data *dbs_data = _gov##_dbs_cdata.gdbs_data; \
262 return sprintf(buf, "%u\n", dbs_data->min_sampling_rate); \
263} \
264 \
265static ssize_t show_sampling_rate_min_gov_pol \
266(struct cpufreq_policy *policy, char *buf) \
267{ \
268 struct dbs_data *dbs_data = policy->governor_data; \
269 return sprintf(buf, "%u\n", dbs_data->min_sampling_rate); \
270}
271
Jane Li6f1e4ef2014-01-03 17:17:41 +0800272extern struct mutex cpufreq_governor_lock;
273
Viresh Kumar70f43e52015-12-09 07:34:42 +0530274void gov_add_timers(struct cpufreq_policy *policy, unsigned int delay);
275void gov_cancel_work(struct cpu_common_dbs_info *shared);
Viresh Kumar4471a342012-10-26 00:47:42 +0200276void dbs_check_cpu(struct dbs_data *dbs_data, int cpu);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000277int cpufreq_governor_dbs(struct cpufreq_policy *policy,
278 struct common_dbs_data *cdata, unsigned int event);
Jacob Shinfb308092013-04-02 09:56:56 -0500279void od_register_powersave_bias_handler(unsigned int (*f)
280 (struct cpufreq_policy *, unsigned int, unsigned int),
281 unsigned int powersave_bias);
282void od_unregister_powersave_bias_handler(void);
Borislav Petkovbeb0ff32013-04-02 12:26:15 +0000283#endif /* _CPUFREQ_GOVERNOR_H */