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