cpufreq: governor: Move common tunables to 'struct dbs_data'
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / drivers / cpufreq / cpufreq_governor.h
CommitLineData
4471a34f
VK
1/*
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
beb0ff39
BP
17#ifndef _CPUFREQ_GOVERNOR_H
18#define _CPUFREQ_GOVERNOR_H
4471a34f 19
2dd3e724 20#include <linux/atomic.h>
9be4fd2c 21#include <linux/irq_work.h>
4471a34f 22#include <linux/cpufreq.h>
5ff0a268
VK
23#include <linux/kernel_stat.h>
24#include <linux/module.h>
4471a34f 25#include <linux/mutex.h>
4471a34f
VK
26
27/*
28 * The polling frequency depends on the capability of the processor. Default
29 * polling frequency is 1000 times the transition latency of the processor. The
c4afc410 30 * governor will work on any processor with transition latency <= 10ms, using
4471a34f
VK
31 * appropriate sampling rate.
32 *
c4afc410
SK
33 * For CPUs with transition latency > 10ms (mostly drivers with CPUFREQ_ETERNAL)
34 * this governor will not work. All times here are in us (micro seconds).
4471a34f
VK
35 */
36#define MIN_SAMPLING_RATE_RATIO (2)
37#define LATENCY_MULTIPLIER (1000)
98104ee2 38#define MIN_LATENCY_MULTIPLIER (20)
4471a34f
VK
39#define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000)
40
41/* Ondemand Sampling types */
42enum {OD_NORMAL_SAMPLE, OD_SUB_SAMPLE};
43
4d5dcc42
VK
44/*
45 * Macro for creating governors sysfs routines
46 *
47 * - gov_sys: One governor instance per whole system
48 * - gov_pol: One governor instance per policy
49 */
50
51/* Create attributes */
52#define gov_sys_attr_ro(_name) \
53static struct global_attr _name##_gov_sys = \
54__ATTR(_name, 0444, show_##_name##_gov_sys, NULL)
55
56#define gov_sys_attr_rw(_name) \
57static struct global_attr _name##_gov_sys = \
58__ATTR(_name, 0644, show_##_name##_gov_sys, store_##_name##_gov_sys)
59
60#define gov_pol_attr_ro(_name) \
61static struct freq_attr _name##_gov_pol = \
62__ATTR(_name, 0444, show_##_name##_gov_pol, NULL)
63
64#define gov_pol_attr_rw(_name) \
65static struct freq_attr _name##_gov_pol = \
66__ATTR(_name, 0644, show_##_name##_gov_pol, store_##_name##_gov_pol)
67
68#define gov_sys_pol_attr_rw(_name) \
69 gov_sys_attr_rw(_name); \
70 gov_pol_attr_rw(_name)
71
72#define gov_sys_pol_attr_ro(_name) \
73 gov_sys_attr_ro(_name); \
74 gov_pol_attr_ro(_name)
75
76/* Create show/store routines */
77#define show_one(_gov, file_name) \
78static ssize_t show_##file_name##_gov_sys \
4471a34f
VK
79(struct kobject *kobj, struct attribute *attr, char *buf) \
80{ \
7bdad34d 81 struct _gov##_dbs_tuners *tuners = _gov##_dbs_gov.gdbs_data->tuners; \
4d5dcc42
VK
82 return sprintf(buf, "%u\n", tuners->file_name); \
83} \
84 \
bb176f7d 85static ssize_t show_##file_name##_gov_pol \
4d5dcc42
VK
86(struct cpufreq_policy *policy, char *buf) \
87{ \
bc505475
RW
88 struct policy_dbs_info *policy_dbs = policy->governor_data; \
89 struct dbs_data *dbs_data = policy_dbs->dbs_data; \
4d5dcc42
VK
90 struct _gov##_dbs_tuners *tuners = dbs_data->tuners; \
91 return sprintf(buf, "%u\n", tuners->file_name); \
92}
93
94#define store_one(_gov, file_name) \
95static ssize_t store_##file_name##_gov_sys \
bb176f7d 96(struct kobject *kobj, struct attribute *attr, const char *buf, size_t count) \
4d5dcc42 97{ \
7bdad34d 98 struct dbs_data *dbs_data = _gov##_dbs_gov.gdbs_data; \
4d5dcc42
VK
99 return store_##file_name(dbs_data, buf, count); \
100} \
101 \
102static ssize_t store_##file_name##_gov_pol \
103(struct cpufreq_policy *policy, const char *buf, size_t count) \
104{ \
bc505475
RW
105 struct policy_dbs_info *policy_dbs = policy->governor_data; \
106 return store_##file_name(policy_dbs->dbs_data, buf, count); \
4471a34f
VK
107}
108
4d5dcc42
VK
109#define show_store_one(_gov, file_name) \
110show_one(_gov, file_name); \
111store_one(_gov, file_name)
112
d0684d3b
VK
113#define show_one_common(_gov, file_name) \
114static ssize_t show_##file_name##_gov_sys \
115(struct kobject *kobj, struct attribute *attr, char *buf) \
116{ \
117 struct dbs_data *dbs_data = _gov##_dbs_gov.gdbs_data; \
118 return sprintf(buf, "%u\n", dbs_data->file_name); \
119} \
120 \
121static ssize_t show_##file_name##_gov_pol \
122(struct cpufreq_policy *policy, char *buf) \
123{ \
124 struct policy_dbs_info *policy_dbs = policy->governor_data; \
125 struct dbs_data *dbs_data = policy_dbs->dbs_data; \
126 return sprintf(buf, "%u\n", dbs_data->file_name); \
127}
128
129#define show_store_one_common(_gov, file_name) \
130show_one_common(_gov, file_name); \
131store_one(_gov, file_name)
132
4d5dcc42 133/* create helper routines */
4471a34f 134#define define_get_cpu_dbs_routines(_dbs_info) \
875b8508 135static struct cpu_dbs_info *get_cpu_cdbs(int cpu) \
4471a34f
VK
136{ \
137 return &per_cpu(_dbs_info, cpu).cdbs; \
138} \
139 \
140static void *get_cpu_dbs_info_s(int cpu) \
141{ \
142 return &per_cpu(_dbs_info, cpu); \
143}
144
145/*
146 * Abbreviations:
147 * dbs: used as a shortform for demand based switching It helps to keep variable
148 * names smaller, simpler
149 * cdbs: common dbs
e5dde92c 150 * od_*: On-demand governor
4471a34f
VK
151 * cs_*: Conservative governor
152 */
153
bc505475
RW
154/* Governor demand based switching data (per-policy or global). */
155struct dbs_data {
bc505475
RW
156 int usage_count;
157 void *tuners;
ff4b1789
VK
158 unsigned int min_sampling_rate;
159 unsigned int ignore_nice_load;
160 unsigned int sampling_rate;
161 unsigned int sampling_down_factor;
162 unsigned int up_threshold;
bc505475
RW
163};
164
44152cb8 165/* Common to all CPUs of a policy */
e40e7b25 166struct policy_dbs_info {
44152cb8
VK
167 struct cpufreq_policy *policy;
168 /*
70f43e5e
VK
169 * Per policy mutex that serializes load evaluation from limit-change
170 * and work-handler.
44152cb8
VK
171 */
172 struct mutex timer_mutex;
70f43e5e 173
9be4fd2c
RW
174 u64 last_sample_time;
175 s64 sample_delay_ns;
686cc637 176 atomic_t work_count;
9be4fd2c 177 struct irq_work irq_work;
70f43e5e 178 struct work_struct work;
bc505475
RW
179 /* dbs_data may be shared between multiple policy objects */
180 struct dbs_data *dbs_data;
44152cb8
VK
181};
182
e40e7b25 183static inline void gov_update_sample_delay(struct policy_dbs_info *policy_dbs,
9be4fd2c
RW
184 unsigned int delay_us)
185{
e40e7b25 186 policy_dbs->sample_delay_ns = delay_us * NSEC_PER_USEC;
9be4fd2c
RW
187}
188
4471a34f 189/* Per cpu structures */
875b8508 190struct cpu_dbs_info {
1e7586a1
VK
191 u64 prev_cpu_idle;
192 u64 prev_cpu_wall;
193 u64 prev_cpu_nice;
18b46abd 194 /*
c8ae481b
VK
195 * Used to keep track of load in the previous interval. However, when
196 * explicitly set to zero, it is used as a flag to ensure that we copy
197 * the previous load to the current interval only once, upon the first
198 * wake-up from idle.
18b46abd 199 */
c8ae481b 200 unsigned int prev_load;
9be4fd2c 201 struct update_util_data update_util;
e40e7b25 202 struct policy_dbs_info *policy_dbs;
4471a34f
VK
203};
204
205struct od_cpu_dbs_info_s {
875b8508 206 struct cpu_dbs_info cdbs;
4471a34f
VK
207 struct cpufreq_frequency_table *freq_table;
208 unsigned int freq_lo;
209 unsigned int freq_lo_jiffies;
210 unsigned int freq_hi_jiffies;
211 unsigned int rate_mult;
212 unsigned int sample_type:1;
213};
214
215struct cs_cpu_dbs_info_s {
875b8508 216 struct cpu_dbs_info cdbs;
4471a34f
VK
217 unsigned int down_skip;
218 unsigned int requested_freq;
4471a34f
VK
219};
220
c4afc410 221/* Per policy Governors sysfs tunables */
4471a34f 222struct od_dbs_tuners {
4471a34f
VK
223 unsigned int powersave_bias;
224 unsigned int io_is_busy;
225};
226
227struct cs_dbs_tuners {
4471a34f
VK
228 unsigned int down_threshold;
229 unsigned int freq_step;
230};
231
c4afc410 232/* Common Governor data across policies */
7bdad34d 233struct dbs_governor {
af926185
RW
234 struct cpufreq_governor gov;
235
4471a34f
VK
236 #define GOV_ONDEMAND 0
237 #define GOV_CONSERVATIVE 1
238 int governor;
4d5dcc42
VK
239 struct attribute_group *attr_group_gov_sys; /* one governor - system */
240 struct attribute_group *attr_group_gov_pol; /* one governor - policy */
4471a34f 241
0b981e70
VK
242 /*
243 * Common data for platforms that don't set
244 * CPUFREQ_HAVE_GOVERNOR_PER_POLICY
245 */
4d5dcc42 246 struct dbs_data *gdbs_data;
4471a34f 247
875b8508 248 struct cpu_dbs_info *(*get_cpu_cdbs)(int cpu);
4471a34f 249 void *(*get_cpu_dbs_info_s)(int cpu);
9be4fd2c 250 unsigned int (*gov_dbs_timer)(struct cpufreq_policy *policy);
4471a34f 251 void (*gov_check_cpu)(int cpu, unsigned int load);
8e0484d2
VK
252 int (*init)(struct dbs_data *dbs_data, bool notify);
253 void (*exit)(struct dbs_data *dbs_data, bool notify);
4471a34f
VK
254
255 /* Governor specific ops, see below */
256 void *gov_ops;
257};
258
ea59ee0d
RW
259static inline struct dbs_governor *dbs_governor_of(struct cpufreq_policy *policy)
260{
261 return container_of(policy->governor, struct dbs_governor, gov);
262}
263
4471a34f
VK
264/* Governor specific ops, will be passed to dbs_data->gov_ops */
265struct od_ops {
4471a34f
VK
266 void (*powersave_bias_init_cpu)(int cpu);
267 unsigned int (*powersave_bias_target)(struct cpufreq_policy *policy,
268 unsigned int freq_next, unsigned int relation);
3a3e9e06 269 void (*freq_increase)(struct cpufreq_policy *policy, unsigned int freq);
4471a34f
VK
270};
271
4471a34f
VK
272static inline int delay_for_sampling_rate(unsigned int sampling_rate)
273{
274 int delay = usecs_to_jiffies(sampling_rate);
275
276 /* We want all CPUs to do sampling nearly on same jiffy */
277 if (num_online_cpus() > 1)
278 delay -= jiffies % delay;
279
280 return delay;
281}
282
2bb8d94f 283extern struct mutex dbs_data_mutex;
6f1e4efd 284extern struct mutex cpufreq_governor_lock;
d10b5eb5 285void dbs_check_cpu(struct cpufreq_policy *policy);
906a6e5a 286int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event);
fb30809e
JS
287void od_register_powersave_bias_handler(unsigned int (*f)
288 (struct cpufreq_policy *, unsigned int, unsigned int),
289 unsigned int powersave_bias);
290void od_unregister_powersave_bias_handler(void);
beb0ff39 291#endif /* _CPUFREQ_GOVERNOR_H */