Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/cpufreq/cpufreq_conservative.c |
| 3 | * |
| 4 | * Copyright (C) 2001 Russell King |
| 5 | * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>. |
| 6 | * Jun Nakajima <jun.nakajima@intel.com> |
Alexander Clouter | 11a80a9c76 | 2009-02-13 19:01:01 +0000 | [diff] [blame] | 7 | * (C) 2009 Alexander Clouter <alex@digriz.org.uk> |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 14 | #include <linux/cpufreq.h> |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 15 | #include <linux/init.h> |
| 16 | #include <linux/kernel.h> |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 17 | #include <linux/kernel_stat.h> |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 18 | #include <linux/kobject.h> |
| 19 | #include <linux/module.h> |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 20 | #include <linux/mutex.h> |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 21 | #include <linux/notifier.h> |
| 22 | #include <linux/percpu-defs.h> |
| 23 | #include <linux/sysfs.h> |
| 24 | #include <linux/types.h> |
Alexander Clouter | 8e677ce | 2009-02-13 19:02:34 +0000 | [diff] [blame] | 25 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 26 | #include "cpufreq_governor.h" |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 27 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 28 | /* Conservative governor macors */ |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 29 | #define DEF_FREQUENCY_UP_THRESHOLD (80) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 30 | #define DEF_FREQUENCY_DOWN_THRESHOLD (20) |
Alexander Clouter | 2c906b3 | 2006-03-22 09:54:10 +0000 | [diff] [blame] | 31 | #define DEF_SAMPLING_DOWN_FACTOR (1) |
| 32 | #define MAX_SAMPLING_DOWN_FACTOR (10) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 33 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 34 | static struct dbs_data cs_dbs_data; |
| 35 | static DEFINE_PER_CPU(struct cs_cpu_dbs_info_s, cs_cpu_dbs_info); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 36 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 37 | static struct cs_dbs_tuners cs_tuners = { |
Dave Jones | 18a7247 | 2007-10-22 16:49:09 -0400 | [diff] [blame] | 38 | .up_threshold = DEF_FREQUENCY_UP_THRESHOLD, |
| 39 | .down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD, |
| 40 | .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR, |
| 41 | .ignore_nice = 0, |
| 42 | .freq_step = 5, |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 43 | }; |
| 44 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 45 | /* |
| 46 | * Every sampling_rate, we check, if current idle time is less than 20% |
| 47 | * (default), then we try to increase frequency Every sampling_rate * |
| 48 | * sampling_down_factor, we check, if current idle time is more than 80%, then |
| 49 | * we try to decrease frequency |
| 50 | * |
| 51 | * Any frequency increase takes it to the maximum frequency. Frequency reduction |
| 52 | * happens at minimum steps of 5% (default) of maximum frequency |
| 53 | */ |
| 54 | static void cs_check_cpu(int cpu, unsigned int load) |
Elias Oltmanns | a8d7c3b | 2007-10-22 09:50:13 +0200 | [diff] [blame] | 55 | { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 56 | struct cs_cpu_dbs_info_s *dbs_info = &per_cpu(cs_cpu_dbs_info, cpu); |
| 57 | struct cpufreq_policy *policy = dbs_info->cdbs.cur_policy; |
| 58 | unsigned int freq_target; |
Alexander Clouter | f407a08 | 2009-02-13 19:01:51 +0000 | [diff] [blame] | 59 | |
| 60 | /* |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 61 | * break out if we 'cannot' reduce the speed as the user might |
| 62 | * want freq_step to be zero |
| 63 | */ |
| 64 | if (cs_tuners.freq_step == 0) |
| 65 | return; |
| 66 | |
| 67 | /* Check for frequency increase */ |
| 68 | if (load > cs_tuners.up_threshold) { |
| 69 | dbs_info->down_skip = 0; |
| 70 | |
| 71 | /* if we are already at full speed then break out early */ |
| 72 | if (dbs_info->requested_freq == policy->max) |
| 73 | return; |
| 74 | |
| 75 | freq_target = (cs_tuners.freq_step * policy->max) / 100; |
| 76 | |
| 77 | /* max freq cannot be less than 100. But who knows.... */ |
| 78 | if (unlikely(freq_target == 0)) |
| 79 | freq_target = 5; |
| 80 | |
| 81 | dbs_info->requested_freq += freq_target; |
| 82 | if (dbs_info->requested_freq > policy->max) |
| 83 | dbs_info->requested_freq = policy->max; |
| 84 | |
| 85 | __cpufreq_driver_target(policy, dbs_info->requested_freq, |
| 86 | CPUFREQ_RELATION_H); |
| 87 | return; |
| 88 | } |
| 89 | |
| 90 | /* |
| 91 | * The optimal frequency is the frequency that is the lowest that can |
| 92 | * support the current CPU usage without triggering the up policy. To be |
| 93 | * safe, we focus 10 points under the threshold. |
| 94 | */ |
| 95 | if (load < (cs_tuners.down_threshold - 10)) { |
| 96 | freq_target = (cs_tuners.freq_step * policy->max) / 100; |
| 97 | |
| 98 | dbs_info->requested_freq -= freq_target; |
| 99 | if (dbs_info->requested_freq < policy->min) |
| 100 | dbs_info->requested_freq = policy->min; |
| 101 | |
| 102 | /* |
| 103 | * if we cannot reduce the frequency anymore, break out early |
| 104 | */ |
| 105 | if (policy->cur == policy->min) |
| 106 | return; |
| 107 | |
| 108 | __cpufreq_driver_target(policy, dbs_info->requested_freq, |
| 109 | CPUFREQ_RELATION_H); |
| 110 | return; |
| 111 | } |
| 112 | } |
| 113 | |
Fabio Baltieri | 66df2a01 | 2012-12-27 14:55:41 +0000 | [diff] [blame^] | 114 | static void cs_timer_update(struct cs_cpu_dbs_info_s *dbs_info, bool sample, |
| 115 | struct delayed_work *dw) |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 116 | { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 117 | unsigned int cpu = dbs_info->cdbs.cpu; |
| 118 | int delay = delay_for_sampling_rate(cs_tuners.sampling_rate); |
| 119 | |
Fabio Baltieri | 66df2a01 | 2012-12-27 14:55:41 +0000 | [diff] [blame^] | 120 | if (sample) |
| 121 | dbs_check_cpu(&cs_dbs_data, cpu); |
| 122 | |
| 123 | schedule_delayed_work_on(smp_processor_id(), dw, delay); |
| 124 | } |
| 125 | |
| 126 | static void cs_timer_coordinated(struct cs_cpu_dbs_info_s *dbs_info_local, |
| 127 | struct delayed_work *dw) |
| 128 | { |
| 129 | struct cs_cpu_dbs_info_s *dbs_info; |
| 130 | ktime_t time_now; |
| 131 | s64 delta_us; |
| 132 | bool sample = true; |
| 133 | |
| 134 | /* use leader CPU's dbs_info */ |
| 135 | dbs_info = &per_cpu(cs_cpu_dbs_info, dbs_info_local->cdbs.cpu); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 136 | mutex_lock(&dbs_info->cdbs.timer_mutex); |
| 137 | |
Fabio Baltieri | 66df2a01 | 2012-12-27 14:55:41 +0000 | [diff] [blame^] | 138 | time_now = ktime_get(); |
| 139 | delta_us = ktime_us_delta(time_now, dbs_info->cdbs.time_stamp); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 140 | |
Fabio Baltieri | 66df2a01 | 2012-12-27 14:55:41 +0000 | [diff] [blame^] | 141 | /* Do nothing if we recently have sampled */ |
| 142 | if (delta_us < (s64)(cs_tuners.sampling_rate / 2)) |
| 143 | sample = false; |
| 144 | else |
| 145 | dbs_info->cdbs.time_stamp = time_now; |
| 146 | |
| 147 | cs_timer_update(dbs_info, sample, dw); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 148 | mutex_unlock(&dbs_info->cdbs.timer_mutex); |
| 149 | } |
| 150 | |
Fabio Baltieri | 66df2a01 | 2012-12-27 14:55:41 +0000 | [diff] [blame^] | 151 | static void cs_dbs_timer(struct work_struct *work) |
| 152 | { |
| 153 | struct delayed_work *dw = to_delayed_work(work); |
| 154 | struct cs_cpu_dbs_info_s *dbs_info = container_of(work, |
| 155 | struct cs_cpu_dbs_info_s, cdbs.work.work); |
| 156 | |
| 157 | if (dbs_sw_coordinated_cpus(&dbs_info->cdbs)) { |
| 158 | cs_timer_coordinated(dbs_info, dw); |
| 159 | } else { |
| 160 | mutex_lock(&dbs_info->cdbs.timer_mutex); |
| 161 | cs_timer_update(dbs_info, true, dw); |
| 162 | mutex_unlock(&dbs_info->cdbs.timer_mutex); |
| 163 | } |
| 164 | } |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 165 | static int dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val, |
| 166 | void *data) |
| 167 | { |
| 168 | struct cpufreq_freqs *freq = data; |
| 169 | struct cs_cpu_dbs_info_s *dbs_info = |
| 170 | &per_cpu(cs_cpu_dbs_info, freq->cpu); |
| 171 | struct cpufreq_policy *policy; |
| 172 | |
| 173 | if (!dbs_info->enable) |
| 174 | return 0; |
| 175 | |
| 176 | policy = dbs_info->cdbs.cur_policy; |
| 177 | |
| 178 | /* |
| 179 | * we only care if our internally tracked freq moves outside the 'valid' |
| 180 | * ranges of freqency available to us otherwise we do not change it |
Alexander Clouter | f407a08 | 2009-02-13 19:01:51 +0000 | [diff] [blame] | 181 | */ |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 182 | if (dbs_info->requested_freq > policy->max |
| 183 | || dbs_info->requested_freq < policy->min) |
| 184 | dbs_info->requested_freq = freq->new; |
Elias Oltmanns | a8d7c3b | 2007-10-22 09:50:13 +0200 | [diff] [blame] | 185 | |
| 186 | return 0; |
| 187 | } |
| 188 | |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 189 | /************************** sysfs interface ************************/ |
Thomas Renninger | 49b015c | 2009-10-01 19:49:28 +0200 | [diff] [blame] | 190 | static ssize_t show_sampling_rate_min(struct kobject *kobj, |
| 191 | struct attribute *attr, char *buf) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 192 | { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 193 | return sprintf(buf, "%u\n", cs_dbs_data.min_sampling_rate); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 194 | } |
| 195 | |
Thomas Renninger | 49b015c | 2009-10-01 19:49:28 +0200 | [diff] [blame] | 196 | static ssize_t store_sampling_down_factor(struct kobject *a, |
| 197 | struct attribute *b, |
| 198 | const char *buf, size_t count) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 199 | { |
| 200 | unsigned int input; |
| 201 | int ret; |
Dave Jones | 9acef48 | 2009-01-18 01:39:51 -0500 | [diff] [blame] | 202 | ret = sscanf(buf, "%u", &input); |
Alexander Clouter | 8e677ce | 2009-02-13 19:02:34 +0000 | [diff] [blame] | 203 | |
Alexander Clouter | 2c906b3 | 2006-03-22 09:54:10 +0000 | [diff] [blame] | 204 | if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 205 | return -EINVAL; |
| 206 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 207 | cs_tuners.sampling_down_factor = input; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 208 | return count; |
| 209 | } |
| 210 | |
Thomas Renninger | 49b015c | 2009-10-01 19:49:28 +0200 | [diff] [blame] | 211 | static ssize_t store_sampling_rate(struct kobject *a, struct attribute *b, |
| 212 | const char *buf, size_t count) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 213 | { |
| 214 | unsigned int input; |
| 215 | int ret; |
Dave Jones | 9acef48 | 2009-01-18 01:39:51 -0500 | [diff] [blame] | 216 | ret = sscanf(buf, "%u", &input); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 217 | |
Alexander Clouter | 8e677ce | 2009-02-13 19:02:34 +0000 | [diff] [blame] | 218 | if (ret != 1) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 219 | return -EINVAL; |
Alexander Clouter | 8e677ce | 2009-02-13 19:02:34 +0000 | [diff] [blame] | 220 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 221 | cs_tuners.sampling_rate = max(input, cs_dbs_data.min_sampling_rate); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 222 | return count; |
| 223 | } |
| 224 | |
Thomas Renninger | 49b015c | 2009-10-01 19:49:28 +0200 | [diff] [blame] | 225 | static ssize_t store_up_threshold(struct kobject *a, struct attribute *b, |
| 226 | const char *buf, size_t count) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 227 | { |
| 228 | unsigned int input; |
| 229 | int ret; |
Dave Jones | 9acef48 | 2009-01-18 01:39:51 -0500 | [diff] [blame] | 230 | ret = sscanf(buf, "%u", &input); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 231 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 232 | if (ret != 1 || input > 100 || input <= cs_tuners.down_threshold) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 233 | return -EINVAL; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 234 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 235 | cs_tuners.up_threshold = input; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 236 | return count; |
| 237 | } |
| 238 | |
Thomas Renninger | 49b015c | 2009-10-01 19:49:28 +0200 | [diff] [blame] | 239 | static ssize_t store_down_threshold(struct kobject *a, struct attribute *b, |
| 240 | const char *buf, size_t count) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 241 | { |
| 242 | unsigned int input; |
| 243 | int ret; |
Dave Jones | 9acef48 | 2009-01-18 01:39:51 -0500 | [diff] [blame] | 244 | ret = sscanf(buf, "%u", &input); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 245 | |
Alexander Clouter | 8e677ce | 2009-02-13 19:02:34 +0000 | [diff] [blame] | 246 | /* cannot be lower than 11 otherwise freq will not fall */ |
| 247 | if (ret != 1 || input < 11 || input > 100 || |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 248 | input >= cs_tuners.up_threshold) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 249 | return -EINVAL; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 250 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 251 | cs_tuners.down_threshold = input; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 252 | return count; |
| 253 | } |
| 254 | |
Thomas Renninger | 49b015c | 2009-10-01 19:49:28 +0200 | [diff] [blame] | 255 | static ssize_t store_ignore_nice_load(struct kobject *a, struct attribute *b, |
| 256 | const char *buf, size_t count) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 257 | { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 258 | unsigned int input, j; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 259 | int ret; |
| 260 | |
Dave Jones | 18a7247 | 2007-10-22 16:49:09 -0400 | [diff] [blame] | 261 | ret = sscanf(buf, "%u", &input); |
| 262 | if (ret != 1) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 263 | return -EINVAL; |
| 264 | |
Dave Jones | 18a7247 | 2007-10-22 16:49:09 -0400 | [diff] [blame] | 265 | if (input > 1) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 266 | input = 1; |
Dave Jones | 18a7247 | 2007-10-22 16:49:09 -0400 | [diff] [blame] | 267 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 268 | if (input == cs_tuners.ignore_nice) /* nothing to do */ |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 269 | return count; |
Thomas Renninger | 326c86d | 2011-03-03 21:31:27 +0100 | [diff] [blame] | 270 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 271 | cs_tuners.ignore_nice = input; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 272 | |
Alexander Clouter | 8e677ce | 2009-02-13 19:02:34 +0000 | [diff] [blame] | 273 | /* we need to re-evaluate prev_cpu_idle */ |
Dave Jones | dac1c1a | 2005-05-31 19:03:49 -0700 | [diff] [blame] | 274 | for_each_online_cpu(j) { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 275 | struct cs_cpu_dbs_info_s *dbs_info; |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 276 | dbs_info = &per_cpu(cs_cpu_dbs_info, j); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 277 | dbs_info->cdbs.prev_cpu_idle = get_cpu_idle_time(j, |
| 278 | &dbs_info->cdbs.prev_cpu_wall); |
| 279 | if (cs_tuners.ignore_nice) |
| 280 | dbs_info->cdbs.prev_cpu_nice = |
| 281 | kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 282 | } |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 283 | return count; |
| 284 | } |
| 285 | |
Thomas Renninger | 49b015c | 2009-10-01 19:49:28 +0200 | [diff] [blame] | 286 | static ssize_t store_freq_step(struct kobject *a, struct attribute *b, |
| 287 | const char *buf, size_t count) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 288 | { |
| 289 | unsigned int input; |
| 290 | int ret; |
Dave Jones | 18a7247 | 2007-10-22 16:49:09 -0400 | [diff] [blame] | 291 | ret = sscanf(buf, "%u", &input); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 292 | |
Dave Jones | 18a7247 | 2007-10-22 16:49:09 -0400 | [diff] [blame] | 293 | if (ret != 1) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 294 | return -EINVAL; |
| 295 | |
Dave Jones | 18a7247 | 2007-10-22 16:49:09 -0400 | [diff] [blame] | 296 | if (input > 100) |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 297 | input = 100; |
Dave Jones | 18a7247 | 2007-10-22 16:49:09 -0400 | [diff] [blame] | 298 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 299 | /* |
| 300 | * no need to test here if freq_step is zero as the user might actually |
| 301 | * want this, they would be crazy though :) |
| 302 | */ |
| 303 | cs_tuners.freq_step = input; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 304 | return count; |
| 305 | } |
| 306 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 307 | show_one(cs, sampling_rate, sampling_rate); |
| 308 | show_one(cs, sampling_down_factor, sampling_down_factor); |
| 309 | show_one(cs, up_threshold, up_threshold); |
| 310 | show_one(cs, down_threshold, down_threshold); |
| 311 | show_one(cs, ignore_nice_load, ignore_nice); |
| 312 | show_one(cs, freq_step, freq_step); |
| 313 | |
Borislav Petkov | 6dad2a2 | 2010-03-31 21:56:46 +0200 | [diff] [blame] | 314 | define_one_global_rw(sampling_rate); |
| 315 | define_one_global_rw(sampling_down_factor); |
| 316 | define_one_global_rw(up_threshold); |
| 317 | define_one_global_rw(down_threshold); |
| 318 | define_one_global_rw(ignore_nice_load); |
| 319 | define_one_global_rw(freq_step); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 320 | define_one_global_ro(sampling_rate_min); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 321 | |
Dave Jones | 9acef48 | 2009-01-18 01:39:51 -0500 | [diff] [blame] | 322 | static struct attribute *dbs_attributes[] = { |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 323 | &sampling_rate_min.attr, |
| 324 | &sampling_rate.attr, |
| 325 | &sampling_down_factor.attr, |
| 326 | &up_threshold.attr, |
| 327 | &down_threshold.attr, |
Alexander Clouter | 001893c | 2005-12-01 01:09:25 -0800 | [diff] [blame] | 328 | &ignore_nice_load.attr, |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 329 | &freq_step.attr, |
| 330 | NULL |
| 331 | }; |
| 332 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 333 | static struct attribute_group cs_attr_group = { |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 334 | .attrs = dbs_attributes, |
| 335 | .name = "conservative", |
| 336 | }; |
| 337 | |
| 338 | /************************** sysfs end ************************/ |
| 339 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 340 | define_get_cpu_dbs_routines(cs_cpu_dbs_info); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 341 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 342 | static struct notifier_block cs_cpufreq_notifier_block = { |
| 343 | .notifier_call = dbs_cpufreq_notifier, |
| 344 | }; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 345 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 346 | static struct cs_ops cs_ops = { |
| 347 | .notifier_block = &cs_cpufreq_notifier_block, |
| 348 | }; |
Alexander Clouter | 08a28e2 | 2006-03-22 09:59:16 +0000 | [diff] [blame] | 349 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 350 | static struct dbs_data cs_dbs_data = { |
| 351 | .governor = GOV_CONSERVATIVE, |
| 352 | .attr_group = &cs_attr_group, |
| 353 | .tuners = &cs_tuners, |
| 354 | .get_cpu_cdbs = get_cpu_cdbs, |
| 355 | .get_cpu_dbs_info_s = get_cpu_dbs_info_s, |
| 356 | .gov_dbs_timer = cs_dbs_timer, |
| 357 | .gov_check_cpu = cs_check_cpu, |
| 358 | .gov_ops = &cs_ops, |
| 359 | }; |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 360 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 361 | static int cs_cpufreq_governor_dbs(struct cpufreq_policy *policy, |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 362 | unsigned int event) |
| 363 | { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 364 | return cpufreq_governor_dbs(&cs_dbs_data, policy, event); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 365 | } |
| 366 | |
Sven Wegener | c4d14bc | 2008-09-20 16:50:08 +0200 | [diff] [blame] | 367 | #ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE |
| 368 | static |
| 369 | #endif |
Thomas Renninger | 1c25624 | 2007-10-02 13:28:12 -0700 | [diff] [blame] | 370 | struct cpufreq_governor cpufreq_gov_conservative = { |
| 371 | .name = "conservative", |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 372 | .governor = cs_cpufreq_governor_dbs, |
Thomas Renninger | 1c25624 | 2007-10-02 13:28:12 -0700 | [diff] [blame] | 373 | .max_transition_latency = TRANSITION_LATENCY_LIMIT, |
| 374 | .owner = THIS_MODULE, |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 375 | }; |
| 376 | |
| 377 | static int __init cpufreq_gov_dbs_init(void) |
| 378 | { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 379 | mutex_init(&cs_dbs_data.mutex); |
Tejun Heo | 57df557 | 2011-01-26 12:12:50 +0100 | [diff] [blame] | 380 | return cpufreq_register_governor(&cpufreq_gov_conservative); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | static void __exit cpufreq_gov_dbs_exit(void) |
| 384 | { |
Thomas Renninger | 1c25624 | 2007-10-02 13:28:12 -0700 | [diff] [blame] | 385 | cpufreq_unregister_governor(&cpufreq_gov_conservative); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 386 | } |
| 387 | |
Alexander Clouter | 11a80a9c76 | 2009-02-13 19:01:01 +0000 | [diff] [blame] | 388 | MODULE_AUTHOR("Alexander Clouter <alex@digriz.org.uk>"); |
Dave Jones | 9acef48 | 2009-01-18 01:39:51 -0500 | [diff] [blame] | 389 | MODULE_DESCRIPTION("'cpufreq_conservative' - A dynamic cpufreq governor for " |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 390 | "Low Latency Frequency Transition capable processors " |
| 391 | "optimised for use in a battery environment"); |
Dave Jones | 9acef48 | 2009-01-18 01:39:51 -0500 | [diff] [blame] | 392 | MODULE_LICENSE("GPL"); |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 393 | |
Johannes Weiner | 6915719 | 2008-01-17 15:21:08 -0800 | [diff] [blame] | 394 | #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE |
| 395 | fs_initcall(cpufreq_gov_dbs_init); |
| 396 | #else |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 397 | module_init(cpufreq_gov_dbs_init); |
Johannes Weiner | 6915719 | 2008-01-17 15:21:08 -0800 | [diff] [blame] | 398 | #endif |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 399 | module_exit(cpufreq_gov_dbs_exit); |