fbdev: imsttfb: Fix use after free bug in imsttfb_probe
[linux-block.git] / drivers / cpufreq / cpufreq_conservative.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
b9170836
DJ
2/*
3 * drivers/cpufreq/cpufreq_conservative.c
4 *
5 * Copyright (C) 2001 Russell King
6 * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
7 * Jun Nakajima <jun.nakajima@intel.com>
11a80a9c 8 * (C) 2009 Alexander Clouter <alex@digriz.org.uk>
b9170836
DJ
9 */
10
4d5dcc42 11#include <linux/slab.h>
4471a34f 12#include "cpufreq_governor.h"
b9170836 13
7d5a9956
RW
14struct cs_policy_dbs_info {
15 struct policy_dbs_info policy_dbs;
16 unsigned int down_skip;
abb66279 17 unsigned int requested_freq;
7d5a9956
RW
18};
19
20static inline struct cs_policy_dbs_info *to_dbs_info(struct policy_dbs_info *policy_dbs)
21{
22 return container_of(policy_dbs, struct cs_policy_dbs_info, policy_dbs);
23}
24
47ebaac1
RW
25struct cs_dbs_tuners {
26 unsigned int down_threshold;
27 unsigned int freq_step;
28};
29
c88883cd 30/* Conservative governor macros */
b9170836 31#define DEF_FREQUENCY_UP_THRESHOLD (80)
b9170836 32#define DEF_FREQUENCY_DOWN_THRESHOLD (20)
98765847 33#define DEF_FREQUENCY_STEP (5)
2c906b31
AC
34#define DEF_SAMPLING_DOWN_FACTOR (1)
35#define MAX_SAMPLING_DOWN_FACTOR (10)
b9170836 36
d5f905a9
VK
37static inline unsigned int get_freq_step(struct cs_dbs_tuners *cs_tuners,
38 struct cpufreq_policy *policy)
98765847 39{
d5f905a9 40 unsigned int freq_step = (cs_tuners->freq_step * policy->max) / 100;
98765847
SK
41
42 /* max freq cannot be less than 100. But who knows... */
d5f905a9
VK
43 if (unlikely(freq_step == 0))
44 freq_step = DEF_FREQUENCY_STEP;
98765847 45
d5f905a9 46 return freq_step;
98765847
SK
47}
48
4471a34f
VK
49/*
50 * Every sampling_rate, we check, if current idle time is less than 20%
7af1c056
SK
51 * (default), then we try to increase frequency. Every sampling_rate *
52 * sampling_down_factor, we check, if current idle time is more than 80%
53 * (default), then we try to decrease frequency
4471a34f 54 *
42d951c8
SK
55 * Frequency updates happen at minimum steps of 5% (default) of maximum
56 * frequency
4471a34f 57 */
26f0dbc9 58static unsigned int cs_dbs_update(struct cpufreq_policy *policy)
a8d7c3bc 59{
bc505475 60 struct policy_dbs_info *policy_dbs = policy->governor_data;
7d5a9956 61 struct cs_policy_dbs_info *dbs_info = to_dbs_info(policy_dbs);
abb66279 62 unsigned int requested_freq = dbs_info->requested_freq;
bc505475 63 struct dbs_data *dbs_data = policy_dbs->dbs_data;
4d5dcc42 64 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
4cccf755 65 unsigned int load = dbs_update(policy);
00bfe058 66 unsigned int freq_step;
4471a34f
VK
67
68 /*
69 * break out if we 'cannot' reduce the speed as the user might
70 * want freq_step to be zero
71 */
4d5dcc42 72 if (cs_tuners->freq_step == 0)
4cccf755 73 goto out;
4471a34f 74
abb66279
RW
75 /*
76 * If requested_freq is out of range, it is likely that the limits
77 * changed in the meantime, so fall back to current frequency in that
78 * case.
79 */
da5e79bc 80 if (requested_freq > policy->max || requested_freq < policy->min) {
abb66279 81 requested_freq = policy->cur;
da5e79bc
RW
82 dbs_info->requested_freq = requested_freq;
83 }
abb66279 84
00bfe058
SK
85 freq_step = get_freq_step(cs_tuners, policy);
86
87 /*
88 * Decrease requested_freq one freq_step for each idle period that
89 * we didn't update the frequency.
90 */
91 if (policy_dbs->idle_periods < UINT_MAX) {
92 unsigned int freq_steps = policy_dbs->idle_periods * freq_step;
93
da5e79bc 94 if (requested_freq > policy->min + freq_steps)
00bfe058
SK
95 requested_freq -= freq_steps;
96 else
97 requested_freq = policy->min;
98
99 policy_dbs->idle_periods = UINT_MAX;
100 }
101
4471a34f 102 /* Check for frequency increase */
ff4b1789 103 if (load > dbs_data->up_threshold) {
4471a34f
VK
104 dbs_info->down_skip = 0;
105
106 /* if we are already at full speed then break out early */
d352cf47 107 if (requested_freq == policy->max)
4cccf755 108 goto out;
4471a34f 109
00bfe058 110 requested_freq += freq_step;
abb66279
RW
111 if (requested_freq > policy->max)
112 requested_freq = policy->max;
6d7bcb14 113
b894d20e
VD
114 __cpufreq_driver_target(policy, requested_freq,
115 CPUFREQ_RELATION_HE);
abb66279 116 dbs_info->requested_freq = requested_freq;
4cccf755 117 goto out;
4471a34f
VK
118 }
119
7af1c056 120 /* if sampling_down_factor is active break out early */
ff4b1789 121 if (++dbs_info->down_skip < dbs_data->sampling_down_factor)
4cccf755 122 goto out;
7af1c056
SK
123 dbs_info->down_skip = 0;
124
27ed3cd2
SK
125 /* Check for frequency decrease */
126 if (load < cs_tuners->down_threshold) {
4471a34f
VK
127 /*
128 * if we cannot reduce the frequency anymore, break out early
129 */
d352cf47 130 if (requested_freq == policy->min)
4cccf755 131 goto out;
4471a34f 132
d5f905a9
VK
133 if (requested_freq > freq_step)
134 requested_freq -= freq_step;
3baa976a 135 else
d352cf47 136 requested_freq = policy->min;
ad529a9c 137
b894d20e
VD
138 __cpufreq_driver_target(policy, requested_freq,
139 CPUFREQ_RELATION_LE);
abb66279 140 dbs_info->requested_freq = requested_freq;
4471a34f 141 }
43e0ee36 142
4cccf755 143 out:
07aa4402 144 return dbs_data->sampling_rate;
66df2a01
FB
145}
146
b9170836 147/************************** sysfs interface ************************/
b9170836 148
85750bcd 149static ssize_t sampling_down_factor_store(struct gov_attr_set *attr_set,
0dd3c1d6 150 const char *buf, size_t count)
b9170836 151{
0dd3c1d6 152 struct dbs_data *dbs_data = to_dbs_data(attr_set);
b9170836
DJ
153 unsigned int input;
154 int ret;
9acef487 155 ret = sscanf(buf, "%u", &input);
8e677ce8 156
2c906b31 157 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
b9170836
DJ
158 return -EINVAL;
159
ff4b1789 160 dbs_data->sampling_down_factor = input;
b9170836
DJ
161 return count;
162}
163
85750bcd 164static ssize_t up_threshold_store(struct gov_attr_set *attr_set,
0dd3c1d6 165 const char *buf, size_t count)
b9170836 166{
0dd3c1d6 167 struct dbs_data *dbs_data = to_dbs_data(attr_set);
4d5dcc42 168 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
b9170836
DJ
169 unsigned int input;
170 int ret;
9acef487 171 ret = sscanf(buf, "%u", &input);
b9170836 172
4d5dcc42 173 if (ret != 1 || input > 100 || input <= cs_tuners->down_threshold)
b9170836 174 return -EINVAL;
b9170836 175
ff4b1789 176 dbs_data->up_threshold = input;
b9170836
DJ
177 return count;
178}
179
85750bcd 180static ssize_t down_threshold_store(struct gov_attr_set *attr_set,
0dd3c1d6 181 const char *buf, size_t count)
b9170836 182{
0dd3c1d6 183 struct dbs_data *dbs_data = to_dbs_data(attr_set);
4d5dcc42 184 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
b9170836
DJ
185 unsigned int input;
186 int ret;
9acef487 187 ret = sscanf(buf, "%u", &input);
b9170836 188
b8e11f7d
TW
189 /* cannot be lower than 1 otherwise freq will not fall */
190 if (ret != 1 || input < 1 || input > 100 ||
ff4b1789 191 input >= dbs_data->up_threshold)
b9170836 192 return -EINVAL;
b9170836 193
4d5dcc42 194 cs_tuners->down_threshold = input;
b9170836
DJ
195 return count;
196}
197
85750bcd 198static ssize_t ignore_nice_load_store(struct gov_attr_set *attr_set,
0dd3c1d6 199 const char *buf, size_t count)
b9170836 200{
0dd3c1d6 201 struct dbs_data *dbs_data = to_dbs_data(attr_set);
a33cce1c 202 unsigned int input;
b9170836
DJ
203 int ret;
204
18a7247d
DJ
205 ret = sscanf(buf, "%u", &input);
206 if (ret != 1)
b9170836
DJ
207 return -EINVAL;
208
18a7247d 209 if (input > 1)
b9170836 210 input = 1;
18a7247d 211
ff4b1789 212 if (input == dbs_data->ignore_nice_load) /* nothing to do */
b9170836 213 return count;
326c86de 214
ff4b1789 215 dbs_data->ignore_nice_load = input;
b9170836 216
8e677ce8 217 /* we need to re-evaluate prev_cpu_idle */
8c8f77fd 218 gov_update_cpu_data(dbs_data);
a33cce1c 219
b9170836
DJ
220 return count;
221}
222
85750bcd 223static ssize_t freq_step_store(struct gov_attr_set *attr_set, const char *buf,
0dd3c1d6 224 size_t count)
b9170836 225{
0dd3c1d6 226 struct dbs_data *dbs_data = to_dbs_data(attr_set);
4d5dcc42 227 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
b9170836
DJ
228 unsigned int input;
229 int ret;
18a7247d 230 ret = sscanf(buf, "%u", &input);
b9170836 231
18a7247d 232 if (ret != 1)
b9170836
DJ
233 return -EINVAL;
234
18a7247d 235 if (input > 100)
b9170836 236 input = 100;
18a7247d 237
4471a34f
VK
238 /*
239 * no need to test here if freq_step is zero as the user might actually
240 * want this, they would be crazy though :)
241 */
4d5dcc42 242 cs_tuners->freq_step = input;
b9170836
DJ
243 return count;
244}
245
c4435630
VK
246gov_show_one_common(sampling_rate);
247gov_show_one_common(sampling_down_factor);
248gov_show_one_common(up_threshold);
249gov_show_one_common(ignore_nice_load);
c4435630
VK
250gov_show_one(cs, down_threshold);
251gov_show_one(cs, freq_step);
252
253gov_attr_rw(sampling_rate);
254gov_attr_rw(sampling_down_factor);
255gov_attr_rw(up_threshold);
256gov_attr_rw(ignore_nice_load);
c4435630
VK
257gov_attr_rw(down_threshold);
258gov_attr_rw(freq_step);
259
fe262d5c 260static struct attribute *cs_attrs[] = {
c4435630
VK
261 &sampling_rate.attr,
262 &sampling_down_factor.attr,
263 &up_threshold.attr,
264 &down_threshold.attr,
265 &ignore_nice_load.attr,
266 &freq_step.attr,
b9170836
DJ
267 NULL
268};
fe262d5c 269ATTRIBUTE_GROUPS(cs);
b9170836 270
b9170836
DJ
271/************************** sysfs end ************************/
272
7d5a9956
RW
273static struct policy_dbs_info *cs_alloc(void)
274{
275 struct cs_policy_dbs_info *dbs_info;
276
277 dbs_info = kzalloc(sizeof(*dbs_info), GFP_KERNEL);
278 return dbs_info ? &dbs_info->policy_dbs : NULL;
279}
280
281static void cs_free(struct policy_dbs_info *policy_dbs)
282{
283 kfree(to_dbs_info(policy_dbs));
284}
285
9a15fb2c 286static int cs_init(struct dbs_data *dbs_data)
4d5dcc42
VK
287{
288 struct cs_dbs_tuners *tuners;
289
d5b73cd8 290 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL);
a69d6b29 291 if (!tuners)
4d5dcc42 292 return -ENOMEM;
4d5dcc42 293
4d5dcc42 294 tuners->down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD;
98765847 295 tuners->freq_step = DEF_FREQUENCY_STEP;
ff4b1789
VK
296 dbs_data->up_threshold = DEF_FREQUENCY_UP_THRESHOLD;
297 dbs_data->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR;
298 dbs_data->ignore_nice_load = 0;
4d5dcc42 299 dbs_data->tuners = tuners;
8e0484d2 300
4d5dcc42
VK
301 return 0;
302}
303
9a15fb2c 304static void cs_exit(struct dbs_data *dbs_data)
4d5dcc42
VK
305{
306 kfree(dbs_data->tuners);
307}
308
702c9e54
RW
309static void cs_start(struct cpufreq_policy *policy)
310{
7d5a9956 311 struct cs_policy_dbs_info *dbs_info = to_dbs_info(policy->governor_data);
702c9e54
RW
312
313 dbs_info->down_skip = 0;
abb66279 314 dbs_info->requested_freq = policy->cur;
702c9e54
RW
315}
316
d352cf47
RW
317static struct dbs_governor cs_governor = {
318 .gov = CPUFREQ_DBS_GOVERNOR_INITIALIZER("conservative"),
fe262d5c 319 .kobj_type = { .default_groups = cs_groups },
26f0dbc9 320 .gov_dbs_update = cs_dbs_update,
d352cf47
RW
321 .alloc = cs_alloc,
322 .free = cs_free,
323 .init = cs_init,
324 .exit = cs_exit,
325 .start = cs_start,
4471a34f 326};
b9170836 327
10dd8573 328#define CPU_FREQ_GOV_CONSERVATIVE (cs_governor.gov)
b9170836 329
11a80a9c 330MODULE_AUTHOR("Alexander Clouter <alex@digriz.org.uk>");
9acef487 331MODULE_DESCRIPTION("'cpufreq_conservative' - A dynamic cpufreq governor for "
b9170836
DJ
332 "Low Latency Frequency Transition capable processors "
333 "optimised for use in a battery environment");
9acef487 334MODULE_LICENSE("GPL");
b9170836 335
6915719b 336#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
de1df26b
RW
337struct cpufreq_governor *cpufreq_default_governor(void)
338{
10dd8573 339 return &CPU_FREQ_GOV_CONSERVATIVE;
de1df26b 340}
6915719b 341#endif
10dd8573
QP
342
343cpufreq_governor_init(CPU_FREQ_GOV_CONSERVATIVE);
344cpufreq_governor_exit(CPU_FREQ_GOV_CONSERVATIVE);