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