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