blob: 876984c842b1e8a0e7f2fffc3adec54640ea974b [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
Rafael J. Wysockia33cce12016-02-18 02:26:55 +010026static struct dbs_governor cs_dbs_gov;
27
Stratos Karafotis98765842013-03-22 08:03:17 +000028static inline unsigned int get_freq_target(struct cs_dbs_tuners *cs_tuners,
29 struct cpufreq_policy *policy)
30{
31 unsigned int freq_target = (cs_tuners->freq_step * policy->max) / 100;
32
33 /* max freq cannot be less than 100. But who knows... */
34 if (unlikely(freq_target == 0))
35 freq_target = DEF_FREQUENCY_STEP;
36
37 return freq_target;
38}
39
Viresh Kumar4471a342012-10-26 00:47:42 +020040/*
41 * Every sampling_rate, we check, if current idle time is less than 20%
Stratos Karafotis7af1c052013-03-05 22:06:29 +000042 * (default), then we try to increase frequency. Every sampling_rate *
43 * sampling_down_factor, we check, if current idle time is more than 80%
44 * (default), then we try to decrease frequency
Viresh Kumar4471a342012-10-26 00:47:42 +020045 *
46 * Any frequency increase takes it to the maximum frequency. Frequency reduction
47 * happens at minimum steps of 5% (default) of maximum frequency
48 */
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010049static unsigned int cs_dbs_timer(struct cpufreq_policy *policy)
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +020050{
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010051 struct cs_cpu_dbs_info_s *dbs_info = &per_cpu(cs_cpu_dbs_info, policy->cpu);
Rafael J. Wysockibc505472016-02-07 16:24:26 +010052 struct policy_dbs_info *policy_dbs = policy->governor_data;
53 struct dbs_data *dbs_data = policy_dbs->dbs_data;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000054 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010055 unsigned int load = dbs_update(policy);
Alexander Clouterf407a082009-02-13 19:01:51 +000056
57 /*
Viresh Kumar4471a342012-10-26 00:47:42 +020058 * break out if we 'cannot' reduce the speed as the user might
59 * want freq_step to be zero
60 */
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000061 if (cs_tuners->freq_step == 0)
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010062 goto out;
Viresh Kumar4471a342012-10-26 00:47:42 +020063
64 /* Check for frequency increase */
Viresh Kumarff4b1782016-02-09 09:01:32 +053065 if (load > dbs_data->up_threshold) {
Viresh Kumar4471a342012-10-26 00:47:42 +020066 dbs_info->down_skip = 0;
67
68 /* if we are already at full speed then break out early */
69 if (dbs_info->requested_freq == policy->max)
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010070 goto out;
Viresh Kumar4471a342012-10-26 00:47:42 +020071
Stratos Karafotis98765842013-03-22 08:03:17 +000072 dbs_info->requested_freq += get_freq_target(cs_tuners, policy);
Viresh Kumar4471a342012-10-26 00:47:42 +020073
Xiaoguang Chen6d7bcb12013-11-08 13:23:52 +080074 if (dbs_info->requested_freq > policy->max)
75 dbs_info->requested_freq = policy->max;
76
Viresh Kumar4471a342012-10-26 00:47:42 +020077 __cpufreq_driver_target(policy, dbs_info->requested_freq,
78 CPUFREQ_RELATION_H);
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010079 goto out;
Viresh Kumar4471a342012-10-26 00:47:42 +020080 }
81
Stratos Karafotis7af1c052013-03-05 22:06:29 +000082 /* if sampling_down_factor is active break out early */
Viresh Kumarff4b1782016-02-09 09:01:32 +053083 if (++dbs_info->down_skip < dbs_data->sampling_down_factor)
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010084 goto out;
Stratos Karafotis7af1c052013-03-05 22:06:29 +000085 dbs_info->down_skip = 0;
86
Stratos Karafotis27ed3cd2013-03-05 22:06:40 +000087 /* Check for frequency decrease */
88 if (load < cs_tuners->down_threshold) {
Xiaoguang Chen3baa9762013-11-07 10:28:50 +080089 unsigned int freq_target;
Viresh Kumar4471a342012-10-26 00:47:42 +020090 /*
91 * if we cannot reduce the frequency anymore, break out early
92 */
93 if (policy->cur == policy->min)
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +010094 goto out;
Viresh Kumar4471a342012-10-26 00:47:42 +020095
Xiaoguang Chen3baa9762013-11-07 10:28:50 +080096 freq_target = get_freq_target(cs_tuners, policy);
97 if (dbs_info->requested_freq > freq_target)
98 dbs_info->requested_freq -= freq_target;
99 else
100 dbs_info->requested_freq = policy->min;
Namhyung Kimad529a92013-02-28 05:38:01 +0000101
Viresh Kumar4471a342012-10-26 00:47:42 +0200102 __cpufreq_driver_target(policy, dbs_info->requested_freq,
Namhyung Kimfed573d2013-02-28 05:38:02 +0000103 CPUFREQ_RELATION_L);
Viresh Kumar4471a342012-10-26 00:47:42 +0200104 }
Viresh Kumar4471a342012-10-26 00:47:42 +0200105
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100106 out:
Rafael J. Wysocki07aa4402016-02-15 02:22:13 +0100107 return dbs_data->sampling_rate;
Fabio Baltieri66df2a012012-12-27 14:55:41 +0000108}
Viresh Kumar44472662013-01-31 17:28:02 +0000109
Viresh Kumar4471a342012-10-26 00:47:42 +0200110static int dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100111 void *data);
Elias Oltmannsa8d7c3b2007-10-22 09:50:13 +0200112
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530113static struct notifier_block cs_cpufreq_notifier_block = {
114 .notifier_call = dbs_cpufreq_notifier,
115};
116
Dave Jonesb9170832005-05-31 19:03:47 -0700117/************************** sysfs interface ************************/
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100118static struct dbs_governor cs_dbs_gov;
Dave Jonesb9170832005-05-31 19:03:47 -0700119
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000120static ssize_t store_sampling_down_factor(struct dbs_data *dbs_data,
121 const char *buf, size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700122{
123 unsigned int input;
124 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500125 ret = sscanf(buf, "%u", &input);
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000126
Alexander Clouter2c906b32006-03-22 09:54:10 +0000127 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700128 return -EINVAL;
129
Viresh Kumarff4b1782016-02-09 09:01:32 +0530130 dbs_data->sampling_down_factor = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700131 return count;
132}
133
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000134static ssize_t store_up_threshold(struct dbs_data *dbs_data, const char *buf,
135 size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700136{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000137 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
Dave Jonesb9170832005-05-31 19:03:47 -0700138 unsigned int input;
139 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500140 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700141
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000142 if (ret != 1 || input > 100 || input <= cs_tuners->down_threshold)
Dave Jonesb9170832005-05-31 19:03:47 -0700143 return -EINVAL;
Dave Jonesb9170832005-05-31 19:03:47 -0700144
Viresh Kumarff4b1782016-02-09 09:01:32 +0530145 dbs_data->up_threshold = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700146 return count;
147}
148
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000149static ssize_t store_down_threshold(struct dbs_data *dbs_data, const char *buf,
150 size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700151{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000152 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
Dave Jonesb9170832005-05-31 19:03:47 -0700153 unsigned int input;
154 int ret;
Dave Jones9acef482009-01-18 01:39:51 -0500155 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700156
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000157 /* cannot be lower than 11 otherwise freq will not fall */
158 if (ret != 1 || input < 11 || input > 100 ||
Viresh Kumarff4b1782016-02-09 09:01:32 +0530159 input >= dbs_data->up_threshold)
Dave Jonesb9170832005-05-31 19:03:47 -0700160 return -EINVAL;
Dave Jonesb9170832005-05-31 19:03:47 -0700161
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000162 cs_tuners->down_threshold = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700163 return count;
164}
165
Viresh Kumar6c4640c2013-08-05 12:28:02 +0530166static ssize_t store_ignore_nice_load(struct dbs_data *dbs_data,
167 const char *buf, size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700168{
Rafael J. Wysockia33cce12016-02-18 02:26:55 +0100169 unsigned int input;
Dave Jonesb9170832005-05-31 19:03:47 -0700170 int ret;
171
Dave Jones18a72472007-10-22 16:49:09 -0400172 ret = sscanf(buf, "%u", &input);
173 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700174 return -EINVAL;
175
Dave Jones18a72472007-10-22 16:49:09 -0400176 if (input > 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700177 input = 1;
Dave Jones18a72472007-10-22 16:49:09 -0400178
Viresh Kumarff4b1782016-02-09 09:01:32 +0530179 if (input == dbs_data->ignore_nice_load) /* nothing to do */
Dave Jonesb9170832005-05-31 19:03:47 -0700180 return count;
Thomas Renninger326c86d2011-03-03 21:31:27 +0100181
Viresh Kumarff4b1782016-02-09 09:01:32 +0530182 dbs_data->ignore_nice_load = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700183
Alexander Clouter8e677ce2009-02-13 19:02:34 +0000184 /* we need to re-evaluate prev_cpu_idle */
Rafael J. Wysockia33cce12016-02-18 02:26:55 +0100185 gov_update_cpu_data(&cs_dbs_gov, dbs_data);
186
Dave Jonesb9170832005-05-31 19:03:47 -0700187 return count;
188}
189
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000190static ssize_t store_freq_step(struct dbs_data *dbs_data, const char *buf,
191 size_t count)
Dave Jonesb9170832005-05-31 19:03:47 -0700192{
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000193 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners;
Dave Jonesb9170832005-05-31 19:03:47 -0700194 unsigned int input;
195 int ret;
Dave Jones18a72472007-10-22 16:49:09 -0400196 ret = sscanf(buf, "%u", &input);
Dave Jonesb9170832005-05-31 19:03:47 -0700197
Dave Jones18a72472007-10-22 16:49:09 -0400198 if (ret != 1)
Dave Jonesb9170832005-05-31 19:03:47 -0700199 return -EINVAL;
200
Dave Jones18a72472007-10-22 16:49:09 -0400201 if (input > 100)
Dave Jonesb9170832005-05-31 19:03:47 -0700202 input = 100;
Dave Jones18a72472007-10-22 16:49:09 -0400203
Viresh Kumar4471a342012-10-26 00:47:42 +0200204 /*
205 * no need to test here if freq_step is zero as the user might actually
206 * want this, they would be crazy though :)
207 */
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000208 cs_tuners->freq_step = input;
Dave Jonesb9170832005-05-31 19:03:47 -0700209 return count;
210}
211
Viresh Kumarc4435632016-02-09 09:01:33 +0530212gov_show_one_common(sampling_rate);
213gov_show_one_common(sampling_down_factor);
214gov_show_one_common(up_threshold);
215gov_show_one_common(ignore_nice_load);
216gov_show_one_common(min_sampling_rate);
217gov_show_one(cs, down_threshold);
218gov_show_one(cs, freq_step);
Viresh Kumar4471a342012-10-26 00:47:42 +0200219
Viresh Kumarc4435632016-02-09 09:01:33 +0530220gov_attr_rw(sampling_rate);
221gov_attr_rw(sampling_down_factor);
222gov_attr_rw(up_threshold);
223gov_attr_rw(ignore_nice_load);
224gov_attr_ro(min_sampling_rate);
225gov_attr_rw(down_threshold);
226gov_attr_rw(freq_step);
Dave Jonesb9170832005-05-31 19:03:47 -0700227
Viresh Kumarc4435632016-02-09 09:01:33 +0530228static struct attribute *cs_attributes[] = {
229 &min_sampling_rate.attr,
230 &sampling_rate.attr,
231 &sampling_down_factor.attr,
232 &up_threshold.attr,
233 &down_threshold.attr,
234 &ignore_nice_load.attr,
235 &freq_step.attr,
Dave Jonesb9170832005-05-31 19:03:47 -0700236 NULL
237};
238
Dave Jonesb9170832005-05-31 19:03:47 -0700239/************************** sysfs end ************************/
240
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530241static int cs_init(struct dbs_data *dbs_data, bool notify)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000242{
243 struct cs_dbs_tuners *tuners;
244
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530245 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000246 if (!tuners) {
247 pr_err("%s: kzalloc failed\n", __func__);
248 return -ENOMEM;
249 }
250
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000251 tuners->down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD;
Stratos Karafotis98765842013-03-22 08:03:17 +0000252 tuners->freq_step = DEF_FREQUENCY_STEP;
Viresh Kumarff4b1782016-02-09 09:01:32 +0530253 dbs_data->up_threshold = DEF_FREQUENCY_UP_THRESHOLD;
254 dbs_data->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR;
255 dbs_data->ignore_nice_load = 0;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000256
257 dbs_data->tuners = tuners;
258 dbs_data->min_sampling_rate = MIN_SAMPLING_RATE_RATIO *
259 jiffies_to_usecs(10);
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530260
261 if (notify)
262 cpufreq_register_notifier(&cs_cpufreq_notifier_block,
263 CPUFREQ_TRANSITION_NOTIFIER);
264
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000265 return 0;
266}
267
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530268static void cs_exit(struct dbs_data *dbs_data, bool notify)
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000269{
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530270 if (notify)
271 cpufreq_unregister_notifier(&cs_cpufreq_notifier_block,
272 CPUFREQ_TRANSITION_NOTIFIER);
273
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000274 kfree(dbs_data->tuners);
275}
276
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100277static void cs_start(struct cpufreq_policy *policy)
278{
279 struct cs_cpu_dbs_info_s *dbs_info = &per_cpu(cs_cpu_dbs_info, policy->cpu);
280
281 dbs_info->down_skip = 0;
282 dbs_info->requested_freq = policy->cur;
283}
284
Viresh Kumar4471a342012-10-26 00:47:42 +0200285define_get_cpu_dbs_routines(cs_cpu_dbs_info);
Dave Jonesb9170832005-05-31 19:03:47 -0700286
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100287static struct dbs_governor cs_dbs_gov = {
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100288 .gov = {
289 .name = "conservative",
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100290 .governor = cpufreq_governor_dbs,
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100291 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
292 .owner = THIS_MODULE,
293 },
Viresh Kumarc4435632016-02-09 09:01:33 +0530294 .kobj_type = { .default_attrs = cs_attributes },
Viresh Kumar4471a342012-10-26 00:47:42 +0200295 .get_cpu_cdbs = get_cpu_cdbs,
Viresh Kumar4471a342012-10-26 00:47:42 +0200296 .gov_dbs_timer = cs_dbs_timer,
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000297 .init = cs_init,
298 .exit = cs_exit,
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100299 .start = cs_start,
Viresh Kumar4471a342012-10-26 00:47:42 +0200300};
Dave Jonesb9170832005-05-31 19:03:47 -0700301
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100302#define CPU_FREQ_GOV_CONSERVATIVE (&cs_dbs_gov.gov)
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100303
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100304static int dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
305 void *data)
306{
307 struct cpufreq_freqs *freq = data;
308 struct cs_cpu_dbs_info_s *dbs_info =
309 &per_cpu(cs_cpu_dbs_info, freq->cpu);
310 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(freq->cpu);
311
312 if (!policy)
313 return 0;
314
315 /* policy isn't governed by conservative governor */
316 if (policy->governor != CPU_FREQ_GOV_CONSERVATIVE)
317 return 0;
318
319 /*
320 * we only care if our internally tracked freq moves outside the 'valid'
321 * ranges of frequency available to us otherwise we do not change it
322 */
323 if (dbs_info->requested_freq > policy->max
324 || dbs_info->requested_freq < policy->min)
325 dbs_info->requested_freq = freq->new;
326
327 return 0;
328}
329
Dave Jonesb9170832005-05-31 19:03:47 -0700330static int __init cpufreq_gov_dbs_init(void)
331{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100332 return cpufreq_register_governor(CPU_FREQ_GOV_CONSERVATIVE);
Dave Jonesb9170832005-05-31 19:03:47 -0700333}
334
335static void __exit cpufreq_gov_dbs_exit(void)
336{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100337 cpufreq_unregister_governor(CPU_FREQ_GOV_CONSERVATIVE);
Dave Jonesb9170832005-05-31 19:03:47 -0700338}
339
Alexander Clouter11a80a9c762009-02-13 19:01:01 +0000340MODULE_AUTHOR("Alexander Clouter <alex@digriz.org.uk>");
Dave Jones9acef482009-01-18 01:39:51 -0500341MODULE_DESCRIPTION("'cpufreq_conservative' - A dynamic cpufreq governor for "
Dave Jonesb9170832005-05-31 19:03:47 -0700342 "Low Latency Frequency Transition capable processors "
343 "optimised for use in a battery environment");
Dave Jones9acef482009-01-18 01:39:51 -0500344MODULE_LICENSE("GPL");
Dave Jonesb9170832005-05-31 19:03:47 -0700345
Johannes Weiner69157192008-01-17 15:21:08 -0800346#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100347struct cpufreq_governor *cpufreq_default_governor(void)
348{
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100349 return CPU_FREQ_GOV_CONSERVATIVE;
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100350}
351
Johannes Weiner69157192008-01-17 15:21:08 -0800352fs_initcall(cpufreq_gov_dbs_init);
353#else
Dave Jonesb9170832005-05-31 19:03:47 -0700354module_init(cpufreq_gov_dbs_init);
Johannes Weiner69157192008-01-17 15:21:08 -0800355#endif
Dave Jonesb9170832005-05-31 19:03:47 -0700356module_exit(cpufreq_gov_dbs_exit);