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