blob: 4a6f8e1ed72e276d2abda2337f68d513be8b9c4b [file] [log] [blame]
Dave Jonesb9170832005-05-31 19:03:47 -07001/*
2 * drivers/cpufreq/cpufreq_conservative.c
3 *
4 * Copyright (C) 2001 Russell King
5 * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
6 * Jun Nakajima <jun.nakajima@intel.com>
Alexander Clouter11a80a9c762009-02-13 19:01:01 +00007 * (C) 2009 Alexander Clouter <alex@digriz.org.uk>
Dave Jonesb9170832005-05-31 19:03:47 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000014#include <linux/slab.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020015#include "cpufreq_governor.h"
Dave Jonesb9170832005-05-31 19:03:47 -070016
Stratos Karafotisc88883c2013-02-08 17:24:24 +000017/* Conservative governor macros */
Dave Jonesb9170832005-05-31 19:03:47 -070018#define DEF_FREQUENCY_UP_THRESHOLD (80)
Dave Jonesb9170832005-05-31 19:03:47 -070019#define DEF_FREQUENCY_DOWN_THRESHOLD (20)
Stratos Karafotis98765842013-03-22 08:03:17 +000020#define DEF_FREQUENCY_STEP (5)
Alexander Clouter2c906b32006-03-22 09:54:10 +000021#define DEF_SAMPLING_DOWN_FACTOR (1)
22#define MAX_SAMPLING_DOWN_FACTOR (10)
Dave Jonesb9170832005-05-31 19:03:47 -070023
Viresh Kumar4471a342012-10-26 00:47:42 +020024static DEFINE_PER_CPU(struct cs_cpu_dbs_info_s, cs_cpu_dbs_info);
Dave Jonesb9170832005-05-31 19:03:47 -070025
Stratos Karafotis98765842013-03-22 08:03:17 +000026static inline unsigned int get_freq_target(struct cs_dbs_tuners *cs_tuners,
27 struct cpufreq_policy *policy)
28{
29 unsigned int freq_target = (cs_tuners->freq_step * policy->max) / 100;
30
31 /* max freq cannot be less than 100. But who knows... */
32 if (unlikely(freq_target == 0))
33 freq_target = DEF_FREQUENCY_STEP;
34
35 return freq_target;
36}
37
Viresh Kumar4471a342012-10-26 00:47:42 +020038/*
39 * Every sampling_rate, we check, if current idle time is less than 20%
Stratos Karafotis7af1c052013-03-05 22:06:29 +000040 * (default), then we try to increase frequency. Every sampling_rate *
41 * sampling_down_factor, we check, if current idle time is more than 80%
42 * (default), then we try to decrease frequency
Viresh Kumar4471a342012-10-26 00:47:42 +020043 *
44 * Any frequency increase takes it to the maximum frequency. Frequency reduction
45 * happens at minimum steps of 5% (default) of maximum frequency
46 */
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010047static unsigned int cs_dbs_timer(struct cpufreq_policy *policy)
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +020048{
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010049 struct cs_cpu_dbs_info_s *dbs_info = &per_cpu(cs_cpu_dbs_info, policy->cpu);
Rafael J. Wysockibc505472016-02-07 16:24:26 +010050 struct policy_dbs_info *policy_dbs = policy->governor_data;
51 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000052 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010053 unsigned int load = dbs_update(policy);
Alexander Clouterf407a082009-02-13 19:01:51 +000054
55 /*
Viresh Kumar4471a342012-10-26 00:47:42 +020056 * break out if we 'cannot' reduce the speed as the user might
57 * want freq_step to be zero
58 */
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000059 if (cs_tuners->freq_step == 0)
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010060 goto out;
Viresh Kumar4471a342012-10-26 00:47:42 +020061
62 /* Check for frequency increase */
Viresh Kumarff4b1782016-02-09 09:01:32 +053063 if (load > dbs_data->up_threshold) {
Viresh Kumar4471a342012-10-26 00:47:42 +020064 dbs_info->down_skip = 0;
65
66 /* if we are already at full speed then break out early */
67 if (dbs_info->requested_freq == policy->max)
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010068 goto out;
Viresh Kumar4471a342012-10-26 00:47:42 +020069
Stratos Karafotis98765842013-03-22 08:03:17 +000070 dbs_info->requested_freq += get_freq_target(cs_tuners, policy);
Viresh Kumar4471a342012-10-26 00:47:42 +020071
Xiaoguang Chen6d7bcb12013-11-08 13:23:52 +080072 if (dbs_info->requested_freq > policy->max)
73 dbs_info->requested_freq = policy->max;
74
Viresh Kumar4471a342012-10-26 00:47:42 +020075 __cpufreq_driver_target(policy, dbs_info->requested_freq,
76 CPUFREQ_RELATION_H);
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010077 goto out;
Viresh Kumar4471a342012-10-26 00:47:42 +020078 }
79
Stratos Karafotis7af1c052013-03-05 22:06:29 +000080 /* if sampling_down_factor is active break out early */
Viresh Kumarff4b1782016-02-09 09:01:32 +053081 if (++dbs_info->down_skip < dbs_data->sampling_down_factor)
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010082 goto out;
Stratos Karafotis7af1c052013-03-05 22:06:29 +000083 dbs_info->down_skip = 0;
84
Stratos Karafotis27ed3cd2013-03-05 22:06:40 +000085 /* Check for frequency decrease */
86 if (load < cs_tuners->down_threshold) {
Xiaoguang Chen3baa9762013-11-07 10:28:50 +080087 unsigned int freq_target;
Viresh Kumar4471a342012-10-26 00:47:42 +020088 /*
89 * if we cannot reduce the frequency anymore, break out early
90 */
91 if (policy->cur == policy->min)
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010092 goto out;
Viresh Kumar4471a342012-10-26 00:47:42 +020093
Xiaoguang Chen3baa9762013-11-07 10:28:50 +080094 freq_target = get_freq_target(cs_tuners, policy);
95 if (dbs_info->requested_freq > freq_target)
96 dbs_info->requested_freq -= freq_target;
97 else
98 dbs_info->requested_freq = policy->min;
Namhyung Kimad529a92013-02-28 05:38:01 +000099
Viresh Kumar4471a342012-10-26 00:47:42 +0200100 __cpufreq_driver_target(policy, dbs_info->requested_freq,
Namhyung Kimfed573d2013-02-28 05:38:02 +0000101 CPUFREQ_RELATION_L);
Viresh Kumar4471a342012-10-26 00:47:42 +0200102 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200103
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100104 out:
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100105 return dbs_data->sampling_rate;
Fabio Baltieri66df2a012012-12-27 14:55:41 +0000106}
Viresh Kumar44472662013-01-31 17:28:02 +0000107
Viresh Kumar4471a342012-10-26 00:47:42 +0200108static int dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100109 void *data);
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200110
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530111static struct notifier_block cs_cpufreq_notifier_block = {
112 .notifier_call = dbs_cpufreq_notifier,
113};
114
Dave Jonesb9170832005-05-31 19:03:47 -0700115/************************** sysfs interface ************************/
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100116static struct dbs_governor cs_dbs_gov;
Dave Jonesb9170832005-05-31 19:03:47 -0700117
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000118static ssize_t store_sampling_down_factor(struct dbs_data *dbs_data,
119 const char *buf, size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700120{
121 unsigned int input;
122 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500123 ret = sscanf(buf, "%u", &input);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000124
Alexander Clouter2c906b32006-03-22 09:54:10 +0000125 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700126 return -EINVAL;
127
Viresh Kumarff4b1782016-02-09 09:01:32 +0530128 dbs_data->sampling_down_factor = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700129 return count;
130}
131
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000132static ssize_t store_up_threshold(struct dbs_data *dbs_data, const char *buf,
133 size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700134{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000135 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
Dave Jonesb9170832005-05-31 19:03:47 -0700136 unsigned int input;
137 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500138 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700139
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000140 if (ret != 1 || input > 100 || input <= cs_tuners->down_threshold)
Dave Jonesb9170832005-05-31 19:03:47 -0700141 return -EINVAL;
Dave Jonesb9170832005-05-31 19:03:47 -0700142
Viresh Kumarff4b1782016-02-09 09:01:32 +0530143 dbs_data->up_threshold = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700144 return count;
145}
146
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000147static ssize_t store_down_threshold(struct dbs_data *dbs_data, const char *buf,
148 size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700149{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000150 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
Dave Jonesb9170832005-05-31 19:03:47 -0700151 unsigned int input;
152 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500153 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700154
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000155 /* cannot be lower than 11 otherwise freq will not fall */
156 if (ret != 1 || input < 11 || input > 100 ||
Viresh Kumarff4b1782016-02-09 09:01:32 +0530157 input >= dbs_data->up_threshold)
Dave Jonesb9170832005-05-31 19:03:47 -0700158 return -EINVAL;
Dave Jonesb9170832005-05-31 19:03:47 -0700159
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000160 cs_tuners->down_threshold = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700161 return count;
162}
163
Viresh Kumar6c4640c2013-08-05 12:28:02 +0530164static ssize_t store_ignore_nice_load(struct dbs_data *dbs_data,
165 const char *buf, size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700166{
Viresh Kumar4471a342012-10-26 00:47:42 +0200167 unsigned int input, j;
Dave Jonesb9170832005-05-31 19:03:47 -0700168 int ret;
169
Dave Jones18a72472007-10-22 16:49:09 -0400170 ret = sscanf(buf, "%u", &input);
171 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700172 return -EINVAL;
173
Dave Jones18a72472007-10-22 16:49:09 -0400174 if (input > 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700175 input = 1;
Dave Jones18a72472007-10-22 16:49:09 -0400176
Viresh Kumarff4b1782016-02-09 09:01:32 +0530177 if (input == dbs_data->ignore_nice_load) /* nothing to do */
Dave Jonesb9170832005-05-31 19:03:47 -0700178 return count;
Thomas Renninger326c86d2011-03-03 21:31:27 +0100179
Viresh Kumarff4b1782016-02-09 09:01:32 +0530180 dbs_data->ignore_nice_load = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700181
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000182 /* we need to re-evaluate prev_cpu_idle */
Dave Jonesdac1c1a2005-05-31 19:03:49 -0700183 for_each_online_cpu(j) {
Viresh Kumar4471a342012-10-26 00:47:42 +0200184 struct cs_cpu_dbs_info_s *dbs_info;
Tejun Heo245b2e72009-06-24 15:13:48 +0900185 dbs_info = &per_cpu(cs_cpu_dbs_info, j);
Viresh Kumar4471a342012-10-26 00:47:42 +0200186 dbs_info->cdbs.prev_cpu_idle = get_cpu_idle_time(j,
Stratos Karafotis9366d842013-02-28 16:57:32 +0000187 &dbs_info->cdbs.prev_cpu_wall, 0);
Viresh Kumarff4b1782016-02-09 09:01:32 +0530188 if (dbs_data->ignore_nice_load)
Viresh Kumar4471a342012-10-26 00:47:42 +0200189 dbs_info->cdbs.prev_cpu_nice =
190 kcpustat_cpu(j).cpustat[CPUTIME_NICE];
Dave Jonesb9170832005-05-31 19:03:47 -0700191 }
Dave Jonesb9170832005-05-31 19:03:47 -0700192 return count;
193}
194
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000195static ssize_t store_freq_step(struct dbs_data *dbs_data, const char *buf,
196 size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700197{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000198 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
Dave Jonesb9170832005-05-31 19:03:47 -0700199 unsigned int input;
200 int ret;
Dave Jones18a72472007-10-22 16:49:09 -0400201 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700202
Dave Jones18a72472007-10-22 16:49:09 -0400203 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700204 return -EINVAL;
205
Dave Jones18a72472007-10-22 16:49:09 -0400206 if (input > 100)
Dave Jonesb9170832005-05-31 19:03:47 -0700207 input = 100;
Dave Jones18a72472007-10-22 16:49:09 -0400208
Viresh Kumar4471a342012-10-26 00:47:42 +0200209 /*
210 * no need to test here if freq_step is zero as the user might actually
211 * want this, they would be crazy though :)
212 */
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000213 cs_tuners->freq_step = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700214 return count;
215}
216
Viresh Kumarc4435632016-02-09 09:01:33 +0530217gov_show_one_common(sampling_rate);
218gov_show_one_common(sampling_down_factor);
219gov_show_one_common(up_threshold);
220gov_show_one_common(ignore_nice_load);
221gov_show_one_common(min_sampling_rate);
222gov_show_one(cs, down_threshold);
223gov_show_one(cs, freq_step);
Viresh Kumar4471a342012-10-26 00:47:42 +0200224
Viresh Kumarc4435632016-02-09 09:01:33 +0530225gov_attr_rw(sampling_rate);
226gov_attr_rw(sampling_down_factor);
227gov_attr_rw(up_threshold);
228gov_attr_rw(ignore_nice_load);
229gov_attr_ro(min_sampling_rate);
230gov_attr_rw(down_threshold);
231gov_attr_rw(freq_step);
Dave Jonesb9170832005-05-31 19:03:47 -0700232
Viresh Kumarc4435632016-02-09 09:01:33 +0530233static struct attribute *cs_attributes[] = {
234 &min_sampling_rate.attr,
235 &sampling_rate.attr,
236 &sampling_down_factor.attr,
237 &up_threshold.attr,
238 &down_threshold.attr,
239 &ignore_nice_load.attr,
240 &freq_step.attr,
Dave Jonesb9170832005-05-31 19:03:47 -0700241 NULL
242};
243
Dave Jonesb9170832005-05-31 19:03:47 -0700244/************************** sysfs end ************************/
245
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530246static int cs_init(struct dbs_data *dbs_data, bool notify)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000247{
248 struct cs_dbs_tuners *tuners;
249
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530250 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000251 if (!tuners) {
252 pr_err("%s: kzalloc failed\n", __func__);
253 return -ENOMEM;
254 }
255
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000256 tuners->down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD;
Stratos Karafotis98765842013-03-22 08:03:17 +0000257 tuners->freq_step = DEF_FREQUENCY_STEP;
Viresh Kumarff4b1782016-02-09 09:01:32 +0530258 dbs_data->up_threshold = DEF_FREQUENCY_UP_THRESHOLD;
259 dbs_data->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR;
260 dbs_data->ignore_nice_load = 0;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000261
262 dbs_data->tuners = tuners;
263 dbs_data->min_sampling_rate = MIN_SAMPLING_RATE_RATIO *
264 jiffies_to_usecs(10);
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530265
266 if (notify)
267 cpufreq_register_notifier(&cs_cpufreq_notifier_block,
268 CPUFREQ_TRANSITION_NOTIFIER);
269
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000270 return 0;
271}
272
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530273static void cs_exit(struct dbs_data *dbs_data, bool notify)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000274{
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530275 if (notify)
276 cpufreq_unregister_notifier(&cs_cpufreq_notifier_block,
277 CPUFREQ_TRANSITION_NOTIFIER);
278
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000279 kfree(dbs_data->tuners);
280}
281
Viresh Kumar4471a342012-10-26 00:47:42 +0200282define_get_cpu_dbs_routines(cs_cpu_dbs_info);
Dave Jonesb9170832005-05-31 19:03:47 -0700283
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100284static struct dbs_governor cs_dbs_gov = {
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100285 .gov = {
286 .name = "conservative",
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100287 .governor = cpufreq_governor_dbs,
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100288 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
289 .owner = THIS_MODULE,
290 },
Viresh Kumar4471a342012-10-26 00:47:42 +0200291 .governor = GOV_CONSERVATIVE,
Viresh Kumarc4435632016-02-09 09:01:33 +0530292 .kobj_type = { .default_attrs = cs_attributes },
Viresh Kumar4471a342012-10-26 00:47:42 +0200293 .get_cpu_cdbs = get_cpu_cdbs,
294 .get_cpu_dbs_info_s = get_cpu_dbs_info_s,
295 .gov_dbs_timer = cs_dbs_timer,
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000296 .init = cs_init,
297 .exit = cs_exit,
Viresh Kumar4471a342012-10-26 00:47:42 +0200298};
Dave Jonesb9170832005-05-31 19:03:47 -0700299
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100300#define CPU_FREQ_GOV_CONSERVATIVE (&cs_dbs_gov.gov)
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100301
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100302static int dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
303 void *data)
304{
305 struct cpufreq_freqs *freq = data;
306 struct cs_cpu_dbs_info_s *dbs_info =
307 &per_cpu(cs_cpu_dbs_info, freq->cpu);
308 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(freq->cpu);
309
310 if (!policy)
311 return 0;
312
313 /* policy isn't governed by conservative governor */
314 if (policy->governor != CPU_FREQ_GOV_CONSERVATIVE)
315 return 0;
316
317 /*
318 * we only care if our internally tracked freq moves outside the 'valid'
319 * ranges of frequency available to us otherwise we do not change it
320 */
321 if (dbs_info->requested_freq > policy->max
322 || dbs_info->requested_freq < policy->min)
323 dbs_info->requested_freq = freq->new;
324
325 return 0;
326}
327
Dave Jonesb9170832005-05-31 19:03:47 -0700328static int __init cpufreq_gov_dbs_init(void)
329{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100330 return cpufreq_register_governor(CPU_FREQ_GOV_CONSERVATIVE);
Dave Jonesb9170832005-05-31 19:03:47 -0700331}
332
333static void __exit cpufreq_gov_dbs_exit(void)
334{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100335 cpufreq_unregister_governor(CPU_FREQ_GOV_CONSERVATIVE);
Dave Jonesb9170832005-05-31 19:03:47 -0700336}
337
Alexander Clouter11a80a9c762009-02-13 19:01:01 +0000338MODULE_AUTHOR("Alexander Clouter <alex@digriz.org.uk>");
Dave Jones9acef482009-01-18 01:39:51 -0500339MODULE_DESCRIPTION("'cpufreq_conservative' - A dynamic cpufreq governor for "
Dave Jonesb9170832005-05-31 19:03:47 -0700340 "Low Latency Frequency Transition capable processors "
341 "optimised for use in a battery environment");
Dave Jones9acef482009-01-18 01:39:51 -0500342MODULE_LICENSE("GPL");
Dave Jonesb9170832005-05-31 19:03:47 -0700343
Johannes Weiner69157192008-01-17 15:21:08 -0800344#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100345struct cpufreq_governor *cpufreq_default_governor(void)
346{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100347 return CPU_FREQ_GOV_CONSERVATIVE;
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100348}
349
Johannes Weiner69157192008-01-17 15:21:08 -0800350fs_initcall(cpufreq_gov_dbs_init);
351#else
Dave Jonesb9170832005-05-31 19:03:47 -0700352module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800353#endif
Dave Jonesb9170832005-05-31 19:03:47 -0700354module_exit(cpufreq_gov_dbs_exit);