Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/cpufreq/cpufreq_ondemand.c |
| 3 | * |
| 4 | * Copyright (C) 2001 Russell King |
| 5 | * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>. |
| 6 | * Jun Nakajima <jun.nakajima@intel.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/cpufreq.h> |
Andrew Morton | 138a0128 | 2006-06-23 03:31:19 -0700 | [diff] [blame] | 17 | #include <linux/cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/jiffies.h> |
| 19 | #include <linux/kernel_stat.h> |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 20 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | /* |
| 23 | * dbs is used in this file as a shortform for demandbased switching |
| 24 | * It helps to keep variable names smaller, simpler |
| 25 | */ |
| 26 | |
| 27 | #define DEF_FREQUENCY_UP_THRESHOLD (80) |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 28 | #define MIN_FREQUENCY_UP_THRESHOLD (11) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #define MAX_FREQUENCY_UP_THRESHOLD (100) |
| 30 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 31 | /* |
| 32 | * The polling frequency of this governor depends on the capability of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | * the processor. Default polling frequency is 1000 times the transition |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 34 | * latency of the processor. The governor will work on any processor with |
| 35 | * transition latency <= 10mS, using appropriate sampling |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | * rate. |
| 37 | * For CPUs with transition latency > 10mS (mostly drivers with CPUFREQ_ETERNAL) |
| 38 | * this governor will not work. |
| 39 | * All times here are in uS. |
| 40 | */ |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 41 | static unsigned int def_sampling_rate; |
Dave Jones | df8b59b | 2005-09-20 12:39:35 -0700 | [diff] [blame] | 42 | #define MIN_SAMPLING_RATE_RATIO (2) |
| 43 | /* for correct statistics, we need at least 10 ticks between each measure */ |
| 44 | #define MIN_STAT_SAMPLING_RATE (MIN_SAMPLING_RATE_RATIO * jiffies_to_usecs(10)) |
| 45 | #define MIN_SAMPLING_RATE (def_sampling_rate / MIN_SAMPLING_RATE_RATIO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #define MAX_SAMPLING_RATE (500 * def_sampling_rate) |
| 47 | #define DEF_SAMPLING_RATE_LATENCY_MULTIPLIER (1000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #define TRANSITION_LATENCY_LIMIT (10 * 1000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | static void do_dbs_timer(void *data); |
| 51 | |
| 52 | struct cpu_dbs_info_s { |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 53 | cputime64_t prev_cpu_idle; |
| 54 | cputime64_t prev_cpu_wall; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 55 | struct cpufreq_policy *cur_policy; |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 56 | struct work_struct work; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 57 | unsigned int enable; |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 58 | struct cpufreq_frequency_table *freq_table; |
| 59 | unsigned int freq_lo; |
| 60 | unsigned int freq_lo_jiffies; |
| 61 | unsigned int freq_hi_jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | }; |
| 63 | static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info); |
| 64 | |
| 65 | static unsigned int dbs_enable; /* number of CPUs using this policy */ |
| 66 | |
Venkatesh Pallipadi | 4ec223d | 2006-06-21 15:18:34 -0700 | [diff] [blame] | 67 | /* |
| 68 | * DEADLOCK ALERT! There is a ordering requirement between cpu_hotplug |
| 69 | * lock and dbs_mutex. cpu_hotplug lock should always be held before |
| 70 | * dbs_mutex. If any function that can potentially take cpu_hotplug lock |
| 71 | * (like __cpufreq_driver_target()) is being called with dbs_mutex taken, then |
| 72 | * cpu_hotplug lock should be taken before that. Note that cpu_hotplug lock |
| 73 | * is recursive for the same process. -Venki |
| 74 | */ |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 75 | static DEFINE_MUTEX(dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 77 | static struct workqueue_struct *kondemand_wq; |
Andi Kleen | 6810b54 | 2006-05-08 15:17:31 +0200 | [diff] [blame] | 78 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 79 | static struct dbs_tuners { |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 80 | unsigned int sampling_rate; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 81 | unsigned int up_threshold; |
| 82 | unsigned int ignore_nice; |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 83 | unsigned int powersave_bias; |
| 84 | } dbs_tuners_ins = { |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 85 | .up_threshold = DEF_FREQUENCY_UP_THRESHOLD, |
Eric Piel | 9cbad61 | 2006-03-10 11:35:27 +0200 | [diff] [blame] | 86 | .ignore_nice = 0, |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 87 | .powersave_bias = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | }; |
| 89 | |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 90 | static inline cputime64_t get_cpu_idle_time(unsigned int cpu) |
Dave Jones | dac1c1a | 2005-05-31 19:03:49 -0700 | [diff] [blame] | 91 | { |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 92 | cputime64_t retval; |
| 93 | |
| 94 | retval = cputime64_add(kstat_cpu(cpu).cpustat.idle, |
| 95 | kstat_cpu(cpu).cpustat.iowait); |
| 96 | |
| 97 | if (dbs_tuners_ins.ignore_nice) |
| 98 | retval = cputime64_add(retval, kstat_cpu(cpu).cpustat.nice); |
| 99 | |
| 100 | return retval; |
Dave Jones | dac1c1a | 2005-05-31 19:03:49 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 103 | /* |
| 104 | * Find right freq to be set now with powersave_bias on. |
| 105 | * Returns the freq_hi to be used right now and will set freq_hi_jiffies, |
| 106 | * freq_lo, and freq_lo_jiffies in percpu area for averaging freqs. |
| 107 | */ |
| 108 | unsigned int powersave_bias_target(struct cpufreq_policy *policy, |
| 109 | unsigned int freq_next, unsigned int relation) |
| 110 | { |
| 111 | unsigned int freq_req, freq_reduc, freq_avg; |
| 112 | unsigned int freq_hi, freq_lo; |
| 113 | unsigned int index = 0; |
| 114 | unsigned int jiffies_total, jiffies_hi, jiffies_lo; |
| 115 | struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, policy->cpu); |
| 116 | |
| 117 | if (!dbs_info->freq_table) { |
| 118 | dbs_info->freq_lo = 0; |
| 119 | dbs_info->freq_lo_jiffies = 0; |
| 120 | return freq_next; |
| 121 | } |
| 122 | |
| 123 | cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_next, |
| 124 | relation, &index); |
| 125 | freq_req = dbs_info->freq_table[index].frequency; |
| 126 | freq_reduc = freq_req * dbs_tuners_ins.powersave_bias / 1000; |
| 127 | freq_avg = freq_req - freq_reduc; |
| 128 | |
| 129 | /* Find freq bounds for freq_avg in freq_table */ |
| 130 | index = 0; |
| 131 | cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg, |
| 132 | CPUFREQ_RELATION_H, &index); |
| 133 | freq_lo = dbs_info->freq_table[index].frequency; |
| 134 | index = 0; |
| 135 | cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg, |
| 136 | CPUFREQ_RELATION_L, &index); |
| 137 | freq_hi = dbs_info->freq_table[index].frequency; |
| 138 | |
| 139 | /* Find out how long we have to be in hi and lo freqs */ |
| 140 | if (freq_hi == freq_lo) { |
| 141 | dbs_info->freq_lo = 0; |
| 142 | dbs_info->freq_lo_jiffies = 0; |
| 143 | return freq_lo; |
| 144 | } |
| 145 | jiffies_total = usecs_to_jiffies(dbs_tuners_ins.sampling_rate); |
| 146 | jiffies_hi = (freq_avg - freq_lo) * jiffies_total; |
| 147 | jiffies_hi += ((freq_hi - freq_lo) / 2); |
| 148 | jiffies_hi /= (freq_hi - freq_lo); |
| 149 | jiffies_lo = jiffies_total - jiffies_hi; |
| 150 | dbs_info->freq_lo = freq_lo; |
| 151 | dbs_info->freq_lo_jiffies = jiffies_lo; |
| 152 | dbs_info->freq_hi_jiffies = jiffies_hi; |
| 153 | return freq_hi; |
| 154 | } |
| 155 | |
| 156 | static void ondemand_powersave_bias_init(void) |
| 157 | { |
| 158 | int i; |
| 159 | for_each_online_cpu(i) { |
| 160 | struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, i); |
| 161 | dbs_info->freq_table = cpufreq_frequency_get_table(i); |
| 162 | dbs_info->freq_lo = 0; |
| 163 | } |
| 164 | } |
| 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | /************************** sysfs interface ************************/ |
| 167 | static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf) |
| 168 | { |
| 169 | return sprintf (buf, "%u\n", MAX_SAMPLING_RATE); |
| 170 | } |
| 171 | |
| 172 | static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf) |
| 173 | { |
| 174 | return sprintf (buf, "%u\n", MIN_SAMPLING_RATE); |
| 175 | } |
| 176 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 177 | #define define_one_ro(_name) \ |
| 178 | static struct freq_attr _name = \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | __ATTR(_name, 0444, show_##_name, NULL) |
| 180 | |
| 181 | define_one_ro(sampling_rate_max); |
| 182 | define_one_ro(sampling_rate_min); |
| 183 | |
| 184 | /* cpufreq_ondemand Governor Tunables */ |
| 185 | #define show_one(file_name, object) \ |
| 186 | static ssize_t show_##file_name \ |
| 187 | (struct cpufreq_policy *unused, char *buf) \ |
| 188 | { \ |
| 189 | return sprintf(buf, "%u\n", dbs_tuners_ins.object); \ |
| 190 | } |
| 191 | show_one(sampling_rate, sampling_rate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | show_one(up_threshold, up_threshold); |
Alexander Clouter | 001893c | 2005-12-01 01:09:25 -0800 | [diff] [blame] | 193 | show_one(ignore_nice_load, ignore_nice); |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 194 | show_one(powersave_bias, powersave_bias); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 196 | static ssize_t store_sampling_rate(struct cpufreq_policy *unused, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | const char *buf, size_t count) |
| 198 | { |
| 199 | unsigned int input; |
| 200 | int ret; |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 201 | ret = sscanf(buf, "%u", &input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 203 | mutex_lock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | if (ret != 1 || input > MAX_SAMPLING_RATE || input < MIN_SAMPLING_RATE) { |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 205 | mutex_unlock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | return -EINVAL; |
| 207 | } |
| 208 | |
| 209 | dbs_tuners_ins.sampling_rate = input; |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 210 | mutex_unlock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | return count; |
| 213 | } |
| 214 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 215 | static ssize_t store_up_threshold(struct cpufreq_policy *unused, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | const char *buf, size_t count) |
| 217 | { |
| 218 | unsigned int input; |
| 219 | int ret; |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 220 | ret = sscanf(buf, "%u", &input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 222 | mutex_lock(&dbs_mutex); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 223 | if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD || |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 224 | input < MIN_FREQUENCY_UP_THRESHOLD) { |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 225 | mutex_unlock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return -EINVAL; |
| 227 | } |
| 228 | |
| 229 | dbs_tuners_ins.up_threshold = input; |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 230 | mutex_unlock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
| 232 | return count; |
| 233 | } |
| 234 | |
Alexander Clouter | 001893c | 2005-12-01 01:09:25 -0800 | [diff] [blame] | 235 | static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy, |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 236 | const char *buf, size_t count) |
| 237 | { |
| 238 | unsigned int input; |
| 239 | int ret; |
| 240 | |
| 241 | unsigned int j; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 242 | |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 243 | ret = sscanf(buf, "%u", &input); |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 244 | if ( ret != 1 ) |
| 245 | return -EINVAL; |
| 246 | |
| 247 | if ( input > 1 ) |
| 248 | input = 1; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 249 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 250 | mutex_lock(&dbs_mutex); |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 251 | if ( input == dbs_tuners_ins.ignore_nice ) { /* nothing to do */ |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 252 | mutex_unlock(&dbs_mutex); |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 253 | return count; |
| 254 | } |
| 255 | dbs_tuners_ins.ignore_nice = input; |
| 256 | |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 257 | /* we need to re-evaluate prev_cpu_idle */ |
Dave Jones | dac1c1a | 2005-05-31 19:03:49 -0700 | [diff] [blame] | 258 | for_each_online_cpu(j) { |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 259 | struct cpu_dbs_info_s *dbs_info; |
| 260 | dbs_info = &per_cpu(cpu_dbs_info, j); |
| 261 | dbs_info->prev_cpu_idle = get_cpu_idle_time(j); |
| 262 | dbs_info->prev_cpu_wall = get_jiffies_64(); |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 263 | } |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 264 | mutex_unlock(&dbs_mutex); |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 265 | |
| 266 | return count; |
| 267 | } |
| 268 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 269 | static ssize_t store_powersave_bias(struct cpufreq_policy *unused, |
| 270 | const char *buf, size_t count) |
| 271 | { |
| 272 | unsigned int input; |
| 273 | int ret; |
| 274 | ret = sscanf(buf, "%u", &input); |
| 275 | |
| 276 | if (ret != 1) |
| 277 | return -EINVAL; |
| 278 | |
| 279 | if (input > 1000) |
| 280 | input = 1000; |
| 281 | |
| 282 | mutex_lock(&dbs_mutex); |
| 283 | dbs_tuners_ins.powersave_bias = input; |
| 284 | ondemand_powersave_bias_init(); |
| 285 | mutex_unlock(&dbs_mutex); |
| 286 | |
| 287 | return count; |
| 288 | } |
| 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | #define define_one_rw(_name) \ |
| 291 | static struct freq_attr _name = \ |
| 292 | __ATTR(_name, 0644, show_##_name, store_##_name) |
| 293 | |
| 294 | define_one_rw(sampling_rate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | define_one_rw(up_threshold); |
Alexander Clouter | 001893c | 2005-12-01 01:09:25 -0800 | [diff] [blame] | 296 | define_one_rw(ignore_nice_load); |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 297 | define_one_rw(powersave_bias); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | static struct attribute * dbs_attributes[] = { |
| 300 | &sampling_rate_max.attr, |
| 301 | &sampling_rate_min.attr, |
| 302 | &sampling_rate.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | &up_threshold.attr, |
Alexander Clouter | 001893c | 2005-12-01 01:09:25 -0800 | [diff] [blame] | 304 | &ignore_nice_load.attr, |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 305 | &powersave_bias.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | NULL |
| 307 | }; |
| 308 | |
| 309 | static struct attribute_group dbs_attr_group = { |
| 310 | .attrs = dbs_attributes, |
| 311 | .name = "ondemand", |
| 312 | }; |
| 313 | |
| 314 | /************************** sysfs end ************************/ |
| 315 | |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 316 | static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 318 | unsigned int idle_ticks, total_ticks; |
| 319 | unsigned int load; |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 320 | cputime64_t cur_jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
| 322 | struct cpufreq_policy *policy; |
| 323 | unsigned int j; |
| 324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | if (!this_dbs_info->enable) |
| 326 | return; |
| 327 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 328 | this_dbs_info->freq_lo = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | policy = this_dbs_info->cur_policy; |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 330 | cur_jiffies = jiffies64_to_cputime64(get_jiffies_64()); |
| 331 | total_ticks = (unsigned int) cputime64_sub(cur_jiffies, |
| 332 | this_dbs_info->prev_cpu_wall); |
| 333 | this_dbs_info->prev_cpu_wall = cur_jiffies; |
Linus Torvalds | 2cd7cbd | 2006-07-23 12:05:00 -0700 | [diff] [blame] | 334 | if (!total_ticks) |
| 335 | return; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 336 | /* |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 337 | * Every sampling_rate, we check, if current idle time is less |
| 338 | * than 20% (default), then we try to increase frequency |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 339 | * Every sampling_rate, we look for a the lowest |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 340 | * frequency which can sustain the load while keeping idle time over |
| 341 | * 30%. If such a frequency exist, we try to decrease to this frequency. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | * |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 343 | * Any frequency increase takes it to the maximum frequency. |
| 344 | * Frequency reduction happens at minimum steps of |
| 345 | * 5% (default) of current frequency |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | */ |
| 347 | |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 348 | /* Get Idle Time */ |
Dave Jones | 9c7d269 | 2005-05-31 19:03:49 -0700 | [diff] [blame] | 349 | idle_ticks = UINT_MAX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | for_each_cpu_mask(j, policy->cpus) { |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 351 | cputime64_t total_idle_ticks; |
| 352 | unsigned int tmp_idle_ticks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | struct cpu_dbs_info_s *j_dbs_info; |
| 354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | j_dbs_info = &per_cpu(cpu_dbs_info, j); |
Dave Jones | dac1c1a | 2005-05-31 19:03:49 -0700 | [diff] [blame] | 356 | total_idle_ticks = get_cpu_idle_time(j); |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 357 | tmp_idle_ticks = (unsigned int) cputime64_sub(total_idle_ticks, |
| 358 | j_dbs_info->prev_cpu_idle); |
| 359 | j_dbs_info->prev_cpu_idle = total_idle_ticks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
| 361 | if (tmp_idle_ticks < idle_ticks) |
| 362 | idle_ticks = tmp_idle_ticks; |
| 363 | } |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 364 | load = (100 * (total_ticks - idle_ticks)) / total_ticks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 366 | /* Check for frequency increase */ |
| 367 | if (load > dbs_tuners_ins.up_threshold) { |
Dave Jones | c11420a | 2005-05-31 19:03:48 -0700 | [diff] [blame] | 368 | /* if we are already at full speed then break out early */ |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 369 | if (!dbs_tuners_ins.powersave_bias) { |
| 370 | if (policy->cur == policy->max) |
| 371 | return; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 372 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 373 | __cpufreq_driver_target(policy, policy->max, |
| 374 | CPUFREQ_RELATION_H); |
| 375 | } else { |
| 376 | int freq = powersave_bias_target(policy, policy->max, |
| 377 | CPUFREQ_RELATION_H); |
| 378 | __cpufreq_driver_target(policy, freq, |
| 379 | CPUFREQ_RELATION_L); |
| 380 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | return; |
| 382 | } |
| 383 | |
| 384 | /* Check for frequency decrease */ |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 385 | /* if we cannot reduce the frequency anymore, break out early */ |
| 386 | if (policy->cur == policy->min) |
| 387 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 389 | /* |
| 390 | * The optimal frequency is the frequency that is the lowest that |
| 391 | * can support the current CPU usage without triggering the up |
| 392 | * policy. To be safe, we focus 10 points under the threshold. |
| 393 | */ |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 394 | if (load < (dbs_tuners_ins.up_threshold - 10)) { |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 395 | unsigned int freq_next = (policy->cur * load) / |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 396 | (dbs_tuners_ins.up_threshold - 10); |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 397 | if (!dbs_tuners_ins.powersave_bias) { |
| 398 | __cpufreq_driver_target(policy, freq_next, |
| 399 | CPUFREQ_RELATION_L); |
| 400 | } else { |
| 401 | int freq = powersave_bias_target(policy, freq_next, |
| 402 | CPUFREQ_RELATION_L); |
| 403 | __cpufreq_driver_target(policy, freq, |
| 404 | CPUFREQ_RELATION_L); |
| 405 | } |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 406 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 409 | /* Sampling types */ |
| 410 | enum {DBS_NORMAL_SAMPLE, DBS_SUB_SAMPLE}; |
| 411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | static void do_dbs_timer(void *data) |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 413 | { |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 414 | unsigned int cpu = smp_processor_id(); |
| 415 | struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, cpu); |
Alexey Starikovskiy | 1ce28d6 | 2006-07-31 22:25:20 +0400 | [diff] [blame] | 416 | /* We want all CPUs to do sampling nearly on same jiffy */ |
| 417 | int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate); |
| 418 | delay -= jiffies % delay; |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 419 | |
Linus Torvalds | 2cd7cbd | 2006-07-23 12:05:00 -0700 | [diff] [blame] | 420 | if (!dbs_info->enable) |
| 421 | return; |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 422 | /* Common NORMAL_SAMPLE setup */ |
| 423 | INIT_WORK(&dbs_info->work, do_dbs_timer, (void *)DBS_NORMAL_SAMPLE); |
| 424 | if (!dbs_tuners_ins.powersave_bias || |
| 425 | (unsigned long) data == DBS_NORMAL_SAMPLE) { |
| 426 | lock_cpu_hotplug(); |
| 427 | dbs_check_cpu(dbs_info); |
| 428 | unlock_cpu_hotplug(); |
| 429 | if (dbs_info->freq_lo) { |
| 430 | /* Setup timer for SUB_SAMPLE */ |
| 431 | INIT_WORK(&dbs_info->work, do_dbs_timer, |
| 432 | (void *)DBS_SUB_SAMPLE); |
| 433 | delay = dbs_info->freq_hi_jiffies; |
| 434 | } |
| 435 | } else { |
| 436 | __cpufreq_driver_target(dbs_info->cur_policy, |
| 437 | dbs_info->freq_lo, |
| 438 | CPUFREQ_RELATION_H); |
| 439 | } |
Alexey Starikovskiy | 1ce28d6 | 2006-07-31 22:25:20 +0400 | [diff] [blame] | 440 | queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 441 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 443 | static inline void dbs_timer_init(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | { |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 445 | struct cpu_dbs_info_s *dbs_info = &per_cpu(cpu_dbs_info, cpu); |
Alexey Starikovskiy | 1ce28d6 | 2006-07-31 22:25:20 +0400 | [diff] [blame] | 446 | /* We want all CPUs to do sampling nearly on same jiffy */ |
| 447 | int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate); |
| 448 | delay -= jiffies % delay; |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 449 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame^] | 450 | ondemand_powersave_bias_init(); |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 451 | INIT_WORK(&dbs_info->work, do_dbs_timer, 0); |
Alexey Starikovskiy | 1ce28d6 | 2006-07-31 22:25:20 +0400 | [diff] [blame] | 452 | queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | } |
| 454 | |
Linus Torvalds | 2cd7cbd | 2006-07-23 12:05:00 -0700 | [diff] [blame] | 455 | static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | { |
Linus Torvalds | 2cd7cbd | 2006-07-23 12:05:00 -0700 | [diff] [blame] | 457 | dbs_info->enable = 0; |
| 458 | cancel_delayed_work(&dbs_info->work); |
| 459 | flush_workqueue(kondemand_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
| 461 | |
| 462 | static int cpufreq_governor_dbs(struct cpufreq_policy *policy, |
| 463 | unsigned int event) |
| 464 | { |
| 465 | unsigned int cpu = policy->cpu; |
| 466 | struct cpu_dbs_info_s *this_dbs_info; |
| 467 | unsigned int j; |
| 468 | |
| 469 | this_dbs_info = &per_cpu(cpu_dbs_info, cpu); |
| 470 | |
| 471 | switch (event) { |
| 472 | case CPUFREQ_GOV_START: |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 473 | if ((!cpu_online(cpu)) || (!policy->cur)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | return -EINVAL; |
| 475 | |
| 476 | if (policy->cpuinfo.transition_latency > |
Eric Piel | ff8c288 | 2006-03-10 11:34:16 +0200 | [diff] [blame] | 477 | (TRANSITION_LATENCY_LIMIT * 1000)) { |
| 478 | printk(KERN_WARNING "ondemand governor failed to load " |
| 479 | "due to too long transition latency\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | return -EINVAL; |
Eric Piel | ff8c288 | 2006-03-10 11:34:16 +0200 | [diff] [blame] | 481 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | if (this_dbs_info->enable) /* Already enabled */ |
| 483 | break; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 484 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 485 | mutex_lock(&dbs_mutex); |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 486 | dbs_enable++; |
| 487 | if (dbs_enable == 1) { |
| 488 | kondemand_wq = create_workqueue("kondemand"); |
| 489 | if (!kondemand_wq) { |
| 490 | printk(KERN_ERR "Creation of kondemand failed\n"); |
| 491 | dbs_enable--; |
| 492 | mutex_unlock(&dbs_mutex); |
| 493 | return -ENOSPC; |
| 494 | } |
| 495 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | for_each_cpu_mask(j, policy->cpus) { |
| 497 | struct cpu_dbs_info_s *j_dbs_info; |
| 498 | j_dbs_info = &per_cpu(cpu_dbs_info, j); |
| 499 | j_dbs_info->cur_policy = policy; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 500 | |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 501 | j_dbs_info->prev_cpu_idle = get_cpu_idle_time(j); |
| 502 | j_dbs_info->prev_cpu_wall = get_jiffies_64(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | } |
| 504 | this_dbs_info->enable = 1; |
| 505 | sysfs_create_group(&policy->kobj, &dbs_attr_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | /* |
| 507 | * Start the timerschedule work, when this governor |
| 508 | * is used for first time |
| 509 | */ |
| 510 | if (dbs_enable == 1) { |
| 511 | unsigned int latency; |
| 512 | /* policy latency is in nS. Convert it to uS first */ |
Dave Jones | df8b59b | 2005-09-20 12:39:35 -0700 | [diff] [blame] | 513 | latency = policy->cpuinfo.transition_latency / 1000; |
| 514 | if (latency == 0) |
| 515 | latency = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
Dave Jones | df8b59b | 2005-09-20 12:39:35 -0700 | [diff] [blame] | 517 | def_sampling_rate = latency * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | DEF_SAMPLING_RATE_LATENCY_MULTIPLIER; |
Dave Jones | df8b59b | 2005-09-20 12:39:35 -0700 | [diff] [blame] | 519 | |
| 520 | if (def_sampling_rate < MIN_STAT_SAMPLING_RATE) |
| 521 | def_sampling_rate = MIN_STAT_SAMPLING_RATE; |
| 522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | dbs_tuners_ins.sampling_rate = def_sampling_rate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 525 | dbs_timer_init(policy->cpu); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 526 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 527 | mutex_unlock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | break; |
| 529 | |
| 530 | case CPUFREQ_GOV_STOP: |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 531 | mutex_lock(&dbs_mutex); |
Linus Torvalds | 2cd7cbd | 2006-07-23 12:05:00 -0700 | [diff] [blame] | 532 | dbs_timer_exit(this_dbs_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | sysfs_remove_group(&policy->kobj, &dbs_attr_group); |
| 534 | dbs_enable--; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 535 | if (dbs_enable == 0) |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 536 | destroy_workqueue(kondemand_wq); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 537 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 538 | mutex_unlock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | |
| 540 | break; |
| 541 | |
| 542 | case CPUFREQ_GOV_LIMITS: |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 543 | mutex_lock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | if (policy->max < this_dbs_info->cur_policy->cur) |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 545 | __cpufreq_driver_target(this_dbs_info->cur_policy, |
| 546 | policy->max, |
| 547 | CPUFREQ_RELATION_H); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | else if (policy->min > this_dbs_info->cur_policy->cur) |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 549 | __cpufreq_driver_target(this_dbs_info->cur_policy, |
| 550 | policy->min, |
| 551 | CPUFREQ_RELATION_L); |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 552 | mutex_unlock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | break; |
| 554 | } |
| 555 | return 0; |
| 556 | } |
| 557 | |
Dave Jones | 7f335d4 | 2005-05-31 19:03:46 -0700 | [diff] [blame] | 558 | static struct cpufreq_governor cpufreq_gov_dbs = { |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 559 | .name = "ondemand", |
| 560 | .governor = cpufreq_governor_dbs, |
| 561 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
| 564 | static int __init cpufreq_gov_dbs_init(void) |
| 565 | { |
| 566 | return cpufreq_register_governor(&cpufreq_gov_dbs); |
| 567 | } |
| 568 | |
| 569 | static void __exit cpufreq_gov_dbs_exit(void) |
| 570 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | cpufreq_unregister_governor(&cpufreq_gov_dbs); |
| 572 | } |
| 573 | |
| 574 | |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 575 | MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>"); |
| 576 | MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>"); |
| 577 | MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for " |
| 578 | "Low Latency Frequency Transition capable processors"); |
| 579 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | |
| 581 | module_init(cpufreq_gov_dbs_init); |
| 582 | module_exit(cpufreq_gov_dbs_exit); |