viresh kumar | 2aacdff | 2012-10-23 01:28:05 +0200 | [diff] [blame] | 1 | /* |
| 2 | * drivers/cpufreq/cpufreq_governor.c |
| 3 | * |
| 4 | * CPUFREQ governors common code |
| 5 | * |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 6 | * Copyright (C) 2001 Russell King |
| 7 | * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>. |
| 8 | * (C) 2003 Jun Nakajima <jun.nakajima@intel.com> |
| 9 | * (C) 2009 Alexander Clouter <alex@digriz.org.uk> |
| 10 | * (c) 2012 Viresh Kumar <viresh.kumar@linaro.org> |
| 11 | * |
viresh kumar | 2aacdff | 2012-10-23 01:28:05 +0200 | [diff] [blame] | 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License version 2 as |
| 14 | * published by the Free Software Foundation. |
| 15 | */ |
| 16 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 18 | |
viresh kumar | 2aacdff | 2012-10-23 01:28:05 +0200 | [diff] [blame] | 19 | #include <linux/export.h> |
| 20 | #include <linux/kernel_stat.h> |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 21 | #include <linux/slab.h> |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 22 | |
| 23 | #include "cpufreq_governor.h" |
| 24 | |
Rafael J. Wysocki | 2bb8d94 | 2016-02-07 16:01:31 +0100 | [diff] [blame] | 25 | DEFINE_MUTEX(dbs_data_mutex); |
| 26 | EXPORT_SYMBOL_GPL(dbs_data_mutex); |
| 27 | |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 28 | /* Common sysfs tunables */ |
| 29 | /** |
| 30 | * store_sampling_rate - update sampling rate effective immediately if needed. |
| 31 | * |
| 32 | * If new rate is smaller than the old, simply updating |
| 33 | * dbs.sampling_rate might not be appropriate. For example, if the |
| 34 | * original sampling_rate was 1 second and the requested new sampling rate is 10 |
| 35 | * ms because the user needs immediate reaction from ondemand governor, but not |
| 36 | * sure if higher frequency will be required or not, then, the governor may |
| 37 | * change the sampling rate too late; up to 1 second later. Thus, if we are |
| 38 | * reducing the sampling rate, we need to make the new value effective |
| 39 | * immediately. |
| 40 | * |
| 41 | * On the other hand, if new rate is larger than the old, then we may evaluate |
| 42 | * the load too soon, and it might we worth updating sample_delay_ns then as |
| 43 | * well. |
| 44 | * |
| 45 | * This must be called with dbs_data->mutex held, otherwise traversing |
| 46 | * policy_dbs_list isn't safe. |
| 47 | */ |
| 48 | ssize_t store_sampling_rate(struct dbs_data *dbs_data, const char *buf, |
| 49 | size_t count) |
| 50 | { |
| 51 | struct policy_dbs_info *policy_dbs; |
| 52 | unsigned int rate; |
| 53 | int ret; |
| 54 | ret = sscanf(buf, "%u", &rate); |
| 55 | if (ret != 1) |
| 56 | return -EINVAL; |
| 57 | |
| 58 | dbs_data->sampling_rate = max(rate, dbs_data->min_sampling_rate); |
| 59 | |
| 60 | /* |
| 61 | * We are operating under dbs_data->mutex and so the list and its |
| 62 | * entries can't be freed concurrently. |
| 63 | */ |
| 64 | list_for_each_entry(policy_dbs, &dbs_data->policy_dbs_list, list) { |
| 65 | mutex_lock(&policy_dbs->timer_mutex); |
| 66 | /* |
| 67 | * On 32-bit architectures this may race with the |
| 68 | * sample_delay_ns read in dbs_update_util_handler(), but that |
| 69 | * really doesn't matter. If the read returns a value that's |
| 70 | * too big, the sample will be skipped, but the next invocation |
| 71 | * of dbs_update_util_handler() (when the update has been |
| 72 | * completed) will take a sample. If the returned value is too |
| 73 | * small, the sample will be taken immediately, but that isn't a |
| 74 | * problem, as we want the new rate to take effect immediately |
| 75 | * anyway. |
| 76 | * |
| 77 | * If this runs in parallel with dbs_work_handler(), we may end |
| 78 | * up overwriting the sample_delay_ns value that it has just |
| 79 | * written, but the difference should not be too big and it will |
| 80 | * be corrected next time a sample is taken, so it shouldn't be |
| 81 | * significant. |
| 82 | */ |
| 83 | gov_update_sample_delay(policy_dbs, dbs_data->sampling_rate); |
| 84 | mutex_unlock(&policy_dbs->timer_mutex); |
| 85 | } |
| 86 | |
| 87 | return count; |
| 88 | } |
| 89 | EXPORT_SYMBOL_GPL(store_sampling_rate); |
| 90 | |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 91 | static inline struct dbs_data *to_dbs_data(struct kobject *kobj) |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 92 | { |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 93 | return container_of(kobj, struct dbs_data, kobj); |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 96 | static inline struct governor_attr *to_gov_attr(struct attribute *attr) |
| 97 | { |
| 98 | return container_of(attr, struct governor_attr, attr); |
| 99 | } |
| 100 | |
| 101 | static ssize_t governor_show(struct kobject *kobj, struct attribute *attr, |
| 102 | char *buf) |
| 103 | { |
| 104 | struct dbs_data *dbs_data = to_dbs_data(kobj); |
| 105 | struct governor_attr *gattr = to_gov_attr(attr); |
| 106 | int ret = -EIO; |
| 107 | |
| 108 | if (gattr->show) |
| 109 | ret = gattr->show(dbs_data, buf); |
| 110 | |
| 111 | return ret; |
| 112 | } |
| 113 | |
| 114 | static ssize_t governor_store(struct kobject *kobj, struct attribute *attr, |
| 115 | const char *buf, size_t count) |
| 116 | { |
| 117 | struct dbs_data *dbs_data = to_dbs_data(kobj); |
| 118 | struct governor_attr *gattr = to_gov_attr(attr); |
| 119 | int ret = -EIO; |
| 120 | |
| 121 | mutex_lock(&dbs_data->mutex); |
| 122 | |
| 123 | if (gattr->store) |
| 124 | ret = gattr->store(dbs_data, buf, count); |
| 125 | |
| 126 | mutex_unlock(&dbs_data->mutex); |
| 127 | |
| 128 | return ret; |
| 129 | } |
| 130 | |
| 131 | /* |
| 132 | * Sysfs Ops for accessing governor attributes. |
| 133 | * |
| 134 | * All show/store invocations for governor specific sysfs attributes, will first |
| 135 | * call the below show/store callbacks and the attribute specific callback will |
| 136 | * be called from within it. |
| 137 | */ |
| 138 | static const struct sysfs_ops governor_sysfs_ops = { |
| 139 | .show = governor_show, |
| 140 | .store = governor_store, |
| 141 | }; |
| 142 | |
Rafael J. Wysocki | d10b5eb | 2016-02-06 13:50:24 +0100 | [diff] [blame] | 143 | void dbs_check_cpu(struct cpufreq_policy *policy) |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 144 | { |
Rafael J. Wysocki | d10b5eb | 2016-02-06 13:50:24 +0100 | [diff] [blame] | 145 | int cpu = policy->cpu; |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 146 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 147 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 148 | struct dbs_data *dbs_data = policy_dbs->dbs_data; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 149 | struct od_dbs_tuners *od_tuners = dbs_data->tuners; |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 150 | unsigned int sampling_rate = dbs_data->sampling_rate; |
| 151 | unsigned int ignore_nice = dbs_data->ignore_nice_load; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 152 | unsigned int max_load = 0; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 153 | unsigned int j; |
| 154 | |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 155 | if (gov->governor == GOV_ONDEMAND) { |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 156 | struct od_cpu_dbs_info_s *od_dbs_info = |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 157 | gov->get_cpu_dbs_info_s(cpu); |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 158 | |
| 159 | /* |
| 160 | * Sometimes, the ondemand governor uses an additional |
| 161 | * multiplier to give long delays. So apply this multiplier to |
| 162 | * the 'sampling_rate', so as to keep the wake-up-from-idle |
| 163 | * detection logic a bit conservative. |
| 164 | */ |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 165 | sampling_rate *= od_dbs_info->rate_mult; |
| 166 | |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 167 | } |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 168 | |
Stratos Karafotis | dfa5bb6 | 2013-06-05 19:01:25 +0300 | [diff] [blame] | 169 | /* Get Absolute Load */ |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 170 | for_each_cpu(j, policy->cpus) { |
Viresh Kumar | 875b850 | 2015-06-19 17:18:03 +0530 | [diff] [blame] | 171 | struct cpu_dbs_info *j_cdbs; |
Stratos Karafotis | 9366d84 | 2013-02-28 16:57:32 +0000 | [diff] [blame] | 172 | u64 cur_wall_time, cur_idle_time; |
| 173 | unsigned int idle_time, wall_time; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 174 | unsigned int load; |
Stratos Karafotis | 9366d84 | 2013-02-28 16:57:32 +0000 | [diff] [blame] | 175 | int io_busy = 0; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 176 | |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 177 | j_cdbs = gov->get_cpu_cdbs(j); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 178 | |
Stratos Karafotis | 9366d84 | 2013-02-28 16:57:32 +0000 | [diff] [blame] | 179 | /* |
| 180 | * For the purpose of ondemand, waiting for disk IO is |
| 181 | * an indication that you're performance critical, and |
| 182 | * not that the system is actually idle. So do not add |
| 183 | * the iowait time to the cpu idle time. |
| 184 | */ |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 185 | if (gov->governor == GOV_ONDEMAND) |
Stratos Karafotis | 9366d84 | 2013-02-28 16:57:32 +0000 | [diff] [blame] | 186 | io_busy = od_tuners->io_is_busy; |
| 187 | cur_idle_time = get_cpu_idle_time(j, &cur_wall_time, io_busy); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 188 | |
| 189 | wall_time = (unsigned int) |
| 190 | (cur_wall_time - j_cdbs->prev_cpu_wall); |
| 191 | j_cdbs->prev_cpu_wall = cur_wall_time; |
| 192 | |
Chen Yu | 0df3502 | 2015-12-16 12:20:29 +0800 | [diff] [blame] | 193 | if (cur_idle_time < j_cdbs->prev_cpu_idle) |
| 194 | cur_idle_time = j_cdbs->prev_cpu_idle; |
| 195 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 196 | idle_time = (unsigned int) |
| 197 | (cur_idle_time - j_cdbs->prev_cpu_idle); |
| 198 | j_cdbs->prev_cpu_idle = cur_idle_time; |
| 199 | |
| 200 | if (ignore_nice) { |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 201 | struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(cpu); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 202 | u64 cur_nice; |
| 203 | unsigned long cur_nice_jiffies; |
| 204 | |
| 205 | cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE] - |
| 206 | cdbs->prev_cpu_nice; |
| 207 | /* |
| 208 | * Assumption: nice time between sampling periods will |
| 209 | * be less than 2^32 jiffies for 32 bit sys |
| 210 | */ |
| 211 | cur_nice_jiffies = (unsigned long) |
| 212 | cputime64_to_jiffies64(cur_nice); |
| 213 | |
| 214 | cdbs->prev_cpu_nice = |
| 215 | kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
| 216 | idle_time += jiffies_to_usecs(cur_nice_jiffies); |
| 217 | } |
| 218 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 219 | if (unlikely(!wall_time || wall_time < idle_time)) |
| 220 | continue; |
| 221 | |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 222 | /* |
| 223 | * If the CPU had gone completely idle, and a task just woke up |
| 224 | * on this CPU now, it would be unfair to calculate 'load' the |
| 225 | * usual way for this elapsed time-window, because it will show |
| 226 | * near-zero load, irrespective of how CPU intensive that task |
| 227 | * actually is. This is undesirable for latency-sensitive bursty |
| 228 | * workloads. |
| 229 | * |
| 230 | * To avoid this, we reuse the 'load' from the previous |
| 231 | * time-window and give this task a chance to start with a |
| 232 | * reasonably high CPU frequency. (However, we shouldn't over-do |
| 233 | * this copy, lest we get stuck at a high load (high frequency) |
| 234 | * for too long, even when the current system load has actually |
| 235 | * dropped down. So we perform the copy only once, upon the |
| 236 | * first wake-up from idle.) |
| 237 | * |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 238 | * Detecting this situation is easy: the governor's utilization |
| 239 | * update handler would not have run during CPU-idle periods. |
| 240 | * Hence, an unusually large 'wall_time' (as compared to the |
| 241 | * sampling rate) indicates this scenario. |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 242 | * |
| 243 | * prev_load can be zero in two cases and we must recalculate it |
| 244 | * for both cases: |
| 245 | * - during long idle intervals |
| 246 | * - explicitly set to zero |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 247 | */ |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 248 | if (unlikely(wall_time > (2 * sampling_rate) && |
| 249 | j_cdbs->prev_load)) { |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 250 | load = j_cdbs->prev_load; |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 251 | |
| 252 | /* |
| 253 | * Perform a destructive copy, to ensure that we copy |
| 254 | * the previous load only once, upon the first wake-up |
| 255 | * from idle. |
| 256 | */ |
| 257 | j_cdbs->prev_load = 0; |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 258 | } else { |
| 259 | load = 100 * (wall_time - idle_time) / wall_time; |
| 260 | j_cdbs->prev_load = load; |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 261 | } |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 262 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 263 | if (load > max_load) |
| 264 | max_load = load; |
| 265 | } |
| 266 | |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 267 | gov->gov_check_cpu(cpu, max_load); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 268 | } |
| 269 | EXPORT_SYMBOL_GPL(dbs_check_cpu); |
| 270 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 271 | void gov_set_update_util(struct policy_dbs_info *policy_dbs, |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 272 | unsigned int delay_us) |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 273 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 274 | struct cpufreq_policy *policy = policy_dbs->policy; |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 275 | struct dbs_governor *gov = dbs_governor_of(policy); |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 276 | int cpu; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 277 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 278 | gov_update_sample_delay(policy_dbs, delay_us); |
| 279 | policy_dbs->last_sample_time = 0; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 280 | |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 281 | for_each_cpu(cpu, policy->cpus) { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 282 | struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(cpu); |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 283 | |
| 284 | cpufreq_set_update_util_data(cpu, &cdbs->update_util); |
Viresh Kumar | 031299b | 2013-02-27 12:24:03 +0530 | [diff] [blame] | 285 | } |
| 286 | } |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 287 | EXPORT_SYMBOL_GPL(gov_set_update_util); |
Viresh Kumar | 031299b | 2013-02-27 12:24:03 +0530 | [diff] [blame] | 288 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 289 | static inline void gov_clear_update_util(struct cpufreq_policy *policy) |
Viresh Kumar | 031299b | 2013-02-27 12:24:03 +0530 | [diff] [blame] | 290 | { |
Viresh Kumar | 031299b | 2013-02-27 12:24:03 +0530 | [diff] [blame] | 291 | int i; |
| 292 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 293 | for_each_cpu(i, policy->cpus) |
| 294 | cpufreq_set_update_util_data(i, NULL); |
| 295 | |
| 296 | synchronize_rcu(); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 297 | } |
| 298 | |
Viresh Kumar | 581c214 | 2016-02-11 17:31:14 +0530 | [diff] [blame] | 299 | static void gov_cancel_work(struct cpufreq_policy *policy) |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 300 | { |
Viresh Kumar | 581c214 | 2016-02-11 17:31:14 +0530 | [diff] [blame] | 301 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 302 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 303 | gov_clear_update_util(policy_dbs->policy); |
| 304 | irq_work_sync(&policy_dbs->irq_work); |
| 305 | cancel_work_sync(&policy_dbs->work); |
Rafael J. Wysocki | 686cc63 | 2016-02-08 23:41:10 +0100 | [diff] [blame] | 306 | atomic_set(&policy_dbs->work_count, 0); |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame^] | 307 | policy_dbs->work_in_progress = false; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 308 | } |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 309 | |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 310 | static void dbs_work_handler(struct work_struct *work) |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 311 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 312 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 3a91b069 | 2015-10-29 08:08:38 +0530 | [diff] [blame] | 313 | struct cpufreq_policy *policy; |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 314 | struct dbs_governor *gov; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 315 | unsigned int delay; |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 316 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 317 | policy_dbs = container_of(work, struct policy_dbs_info, work); |
| 318 | policy = policy_dbs->policy; |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 319 | gov = dbs_governor_of(policy); |
Viresh Kumar | 3a91b069 | 2015-10-29 08:08:38 +0530 | [diff] [blame] | 320 | |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 321 | /* |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 322 | * Make sure cpufreq_governor_limits() isn't evaluating load or the |
| 323 | * ondemand governor isn't updating the sampling rate in parallel. |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 324 | */ |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 325 | mutex_lock(&policy_dbs->timer_mutex); |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 326 | delay = gov->gov_dbs_timer(policy); |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 327 | policy_dbs->sample_delay_ns = jiffies_to_nsecs(delay); |
| 328 | mutex_unlock(&policy_dbs->timer_mutex); |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 329 | |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame^] | 330 | /* Allow the utilization update handler to queue up more work. */ |
| 331 | atomic_set(&policy_dbs->work_count, 0); |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 332 | /* |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame^] | 333 | * If the update below is reordered with respect to the sample delay |
| 334 | * modification, the utilization update handler may end up using a stale |
| 335 | * sample delay value. |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 336 | */ |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame^] | 337 | smp_wmb(); |
| 338 | policy_dbs->work_in_progress = false; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 339 | } |
| 340 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 341 | static void dbs_irq_work(struct irq_work *irq_work) |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 342 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 343 | struct policy_dbs_info *policy_dbs; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 344 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 345 | policy_dbs = container_of(irq_work, struct policy_dbs_info, irq_work); |
| 346 | schedule_work(&policy_dbs->work); |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 347 | } |
| 348 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 349 | static void dbs_update_util_handler(struct update_util_data *data, u64 time, |
| 350 | unsigned long util, unsigned long max) |
| 351 | { |
| 352 | struct cpu_dbs_info *cdbs = container_of(data, struct cpu_dbs_info, update_util); |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 353 | struct policy_dbs_info *policy_dbs = cdbs->policy_dbs; |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame^] | 354 | u64 delta_ns; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 355 | |
| 356 | /* |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 357 | * The work may not be allowed to be queued up right now. |
| 358 | * Possible reasons: |
| 359 | * - Work has already been queued up or is in progress. |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 360 | * - It is too early (too little time from the previous sample). |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 361 | */ |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame^] | 362 | if (policy_dbs->work_in_progress) |
| 363 | return; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 364 | |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame^] | 365 | /* |
| 366 | * If the reads below are reordered before the check above, the value |
| 367 | * of sample_delay_ns used in the computation may be stale. |
| 368 | */ |
| 369 | smp_rmb(); |
| 370 | delta_ns = time - policy_dbs->last_sample_time; |
| 371 | if ((s64)delta_ns < policy_dbs->sample_delay_ns) |
| 372 | return; |
| 373 | |
| 374 | /* |
| 375 | * If the policy is not shared, the irq_work may be queued up right away |
| 376 | * at this point. Otherwise, we need to ensure that only one of the |
| 377 | * CPUs sharing the policy will do that. |
| 378 | */ |
| 379 | if (policy_dbs->is_shared && |
| 380 | !atomic_add_unless(&policy_dbs->work_count, 1, 1)) |
| 381 | return; |
| 382 | |
| 383 | policy_dbs->last_sample_time = time; |
| 384 | policy_dbs->work_in_progress = true; |
| 385 | irq_work_queue(&policy_dbs->irq_work); |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 386 | } |
Viresh Kumar | 4447266 | 2013-01-31 17:28:02 +0000 | [diff] [blame] | 387 | |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 388 | static struct policy_dbs_info *alloc_policy_dbs_info(struct cpufreq_policy *policy, |
| 389 | struct dbs_governor *gov) |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 390 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 391 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 392 | int j; |
| 393 | |
| 394 | /* Allocate memory for the common information for policy->cpus */ |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 395 | policy_dbs = kzalloc(sizeof(*policy_dbs), GFP_KERNEL); |
| 396 | if (!policy_dbs) |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 397 | return NULL; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 398 | |
Viresh Kumar | 581c214 | 2016-02-11 17:31:14 +0530 | [diff] [blame] | 399 | policy_dbs->policy = policy; |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 400 | mutex_init(&policy_dbs->timer_mutex); |
Rafael J. Wysocki | 686cc63 | 2016-02-08 23:41:10 +0100 | [diff] [blame] | 401 | atomic_set(&policy_dbs->work_count, 0); |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 402 | init_irq_work(&policy_dbs->irq_work, dbs_irq_work); |
| 403 | INIT_WORK(&policy_dbs->work, dbs_work_handler); |
Rafael J. Wysocki | cea6a9e | 2016-02-07 16:25:02 +0100 | [diff] [blame] | 404 | |
| 405 | /* Set policy_dbs for all CPUs, online+offline */ |
| 406 | for_each_cpu(j, policy->related_cpus) { |
| 407 | struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j); |
| 408 | |
| 409 | j_cdbs->policy_dbs = policy_dbs; |
| 410 | j_cdbs->update_util.func = dbs_update_util_handler; |
| 411 | } |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 412 | return policy_dbs; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 413 | } |
| 414 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 415 | static void free_policy_dbs_info(struct cpufreq_policy *policy, |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 416 | struct dbs_governor *gov) |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 417 | { |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 418 | struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(policy->cpu); |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 419 | struct policy_dbs_info *policy_dbs = cdbs->policy_dbs; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 420 | int j; |
| 421 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 422 | mutex_destroy(&policy_dbs->timer_mutex); |
Viresh Kumar | 5e4500d | 2015-12-03 09:37:52 +0530 | [diff] [blame] | 423 | |
Rafael J. Wysocki | cea6a9e | 2016-02-07 16:25:02 +0100 | [diff] [blame] | 424 | for_each_cpu(j, policy->related_cpus) { |
| 425 | struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j); |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 426 | |
Rafael J. Wysocki | cea6a9e | 2016-02-07 16:25:02 +0100 | [diff] [blame] | 427 | j_cdbs->policy_dbs = NULL; |
| 428 | j_cdbs->update_util.func = NULL; |
| 429 | } |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 430 | kfree(policy_dbs); |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 431 | } |
| 432 | |
Rafael J. Wysocki | 906a6e5 | 2016-02-07 16:07:51 +0100 | [diff] [blame] | 433 | static int cpufreq_governor_init(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 434 | { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 435 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 436 | struct dbs_data *dbs_data = gov->gdbs_data; |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 437 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 438 | unsigned int latency; |
| 439 | int ret; |
| 440 | |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 441 | /* State should be equivalent to EXIT */ |
| 442 | if (policy->governor_data) |
| 443 | return -EBUSY; |
| 444 | |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 445 | policy_dbs = alloc_policy_dbs_info(policy, gov); |
| 446 | if (!policy_dbs) |
| 447 | return -ENOMEM; |
| 448 | |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 449 | if (dbs_data) { |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 450 | if (WARN_ON(have_governor_per_policy())) { |
| 451 | ret = -EINVAL; |
| 452 | goto free_policy_dbs_info; |
| 453 | } |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 454 | policy_dbs->dbs_data = dbs_data; |
| 455 | policy->governor_data = policy_dbs; |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 456 | |
| 457 | mutex_lock(&dbs_data->mutex); |
| 458 | dbs_data->usage_count++; |
| 459 | list_add(&policy_dbs->list, &dbs_data->policy_dbs_list); |
| 460 | mutex_unlock(&dbs_data->mutex); |
| 461 | |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 462 | return 0; |
| 463 | } |
| 464 | |
| 465 | dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 466 | if (!dbs_data) { |
| 467 | ret = -ENOMEM; |
| 468 | goto free_policy_dbs_info; |
| 469 | } |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 470 | |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 471 | INIT_LIST_HEAD(&dbs_data->policy_dbs_list); |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 472 | mutex_init(&dbs_data->mutex); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 473 | |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 474 | ret = gov->init(dbs_data, !policy->governor->initialized); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 475 | if (ret) |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 476 | goto free_policy_dbs_info; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 477 | |
| 478 | /* policy latency is in ns. Convert it to us first */ |
| 479 | latency = policy->cpuinfo.transition_latency / 1000; |
| 480 | if (latency == 0) |
| 481 | latency = 1; |
| 482 | |
| 483 | /* Bring kernel and HW constraints together */ |
| 484 | dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate, |
| 485 | MIN_LATENCY_MULTIPLIER * latency); |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 486 | dbs_data->sampling_rate = max(dbs_data->min_sampling_rate, |
| 487 | LATENCY_MULTIPLIER * latency); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 488 | |
Viresh Kumar | 8eec102 | 2015-10-15 21:35:22 +0530 | [diff] [blame] | 489 | if (!have_governor_per_policy()) |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 490 | gov->gdbs_data = dbs_data; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 491 | |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 492 | policy->governor_data = policy_dbs; |
Viresh Kumar | e4b133c | 2016-01-25 22:33:46 +0530 | [diff] [blame] | 493 | |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 494 | policy_dbs->dbs_data = dbs_data; |
| 495 | dbs_data->usage_count = 1; |
| 496 | list_add(&policy_dbs->list, &dbs_data->policy_dbs_list); |
| 497 | |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 498 | gov->kobj_type.sysfs_ops = &governor_sysfs_ops; |
| 499 | ret = kobject_init_and_add(&dbs_data->kobj, &gov->kobj_type, |
| 500 | get_governor_parent_kobj(policy), |
| 501 | "%s", gov->gov.name); |
Rafael J. Wysocki | fafd5e8 | 2016-02-08 23:57:22 +0100 | [diff] [blame] | 502 | if (!ret) |
| 503 | return 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 504 | |
Rafael J. Wysocki | fafd5e8 | 2016-02-08 23:57:22 +0100 | [diff] [blame] | 505 | /* Failure, so roll back. */ |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 506 | pr_err("cpufreq: Governor initialization failed (dbs_data kobject init error %d)\n", ret); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 507 | |
Viresh Kumar | e4b133c | 2016-01-25 22:33:46 +0530 | [diff] [blame] | 508 | policy->governor_data = NULL; |
| 509 | |
Viresh Kumar | 8eec102 | 2015-10-15 21:35:22 +0530 | [diff] [blame] | 510 | if (!have_governor_per_policy()) |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 511 | gov->gdbs_data = NULL; |
| 512 | gov->exit(dbs_data, !policy->governor->initialized); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 513 | kfree(dbs_data); |
| 514 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 515 | free_policy_dbs_info: |
| 516 | free_policy_dbs_info(policy, gov); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 517 | return ret; |
| 518 | } |
| 519 | |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 520 | static int cpufreq_governor_exit(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 521 | { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 522 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 523 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 524 | struct dbs_data *dbs_data = policy_dbs->dbs_data; |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 525 | int count; |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 526 | |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 527 | mutex_lock(&dbs_data->mutex); |
| 528 | list_del(&policy_dbs->list); |
| 529 | count = --dbs_data->usage_count; |
| 530 | mutex_unlock(&dbs_data->mutex); |
| 531 | |
| 532 | if (!count) { |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 533 | kobject_put(&dbs_data->kobj); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 534 | |
Viresh Kumar | e4b133c | 2016-01-25 22:33:46 +0530 | [diff] [blame] | 535 | policy->governor_data = NULL; |
| 536 | |
Viresh Kumar | 8eec102 | 2015-10-15 21:35:22 +0530 | [diff] [blame] | 537 | if (!have_governor_per_policy()) |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 538 | gov->gdbs_data = NULL; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 539 | |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 540 | gov->exit(dbs_data, policy->governor->initialized == 1); |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 541 | mutex_destroy(&dbs_data->mutex); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 542 | kfree(dbs_data); |
Viresh Kumar | e4b133c | 2016-01-25 22:33:46 +0530 | [diff] [blame] | 543 | } else { |
| 544 | policy->governor_data = NULL; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 545 | } |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 546 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 547 | free_policy_dbs_info(policy, gov); |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 548 | return 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 549 | } |
| 550 | |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 551 | static int cpufreq_governor_start(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 552 | { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 553 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 554 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 555 | struct dbs_data *dbs_data = policy_dbs->dbs_data; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 556 | unsigned int sampling_rate, ignore_nice, j, cpu = policy->cpu; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 557 | int io_busy = 0; |
| 558 | |
| 559 | if (!policy->cur) |
| 560 | return -EINVAL; |
| 561 | |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame^] | 562 | policy_dbs->is_shared = policy_is_shared(policy); |
| 563 | |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 564 | sampling_rate = dbs_data->sampling_rate; |
| 565 | ignore_nice = dbs_data->ignore_nice_load; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 566 | |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 567 | if (gov->governor == GOV_ONDEMAND) { |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 568 | struct od_dbs_tuners *od_tuners = dbs_data->tuners; |
| 569 | |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 570 | io_busy = od_tuners->io_is_busy; |
| 571 | } |
| 572 | |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 573 | for_each_cpu(j, policy->cpus) { |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 574 | struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 575 | unsigned int prev_load; |
| 576 | |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 577 | j_cdbs->prev_cpu_idle = |
| 578 | get_cpu_idle_time(j, &j_cdbs->prev_cpu_wall, io_busy); |
| 579 | |
| 580 | prev_load = (unsigned int)(j_cdbs->prev_cpu_wall - |
| 581 | j_cdbs->prev_cpu_idle); |
| 582 | j_cdbs->prev_load = 100 * prev_load / |
| 583 | (unsigned int)j_cdbs->prev_cpu_wall; |
| 584 | |
| 585 | if (ignore_nice) |
| 586 | j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 587 | } |
| 588 | |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 589 | if (gov->governor == GOV_CONSERVATIVE) { |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 590 | struct cs_cpu_dbs_info_s *cs_dbs_info = |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 591 | gov->get_cpu_dbs_info_s(cpu); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 592 | |
| 593 | cs_dbs_info->down_skip = 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 594 | cs_dbs_info->requested_freq = policy->cur; |
| 595 | } else { |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 596 | struct od_ops *od_ops = gov->gov_ops; |
| 597 | struct od_cpu_dbs_info_s *od_dbs_info = gov->get_cpu_dbs_info_s(cpu); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 598 | |
| 599 | od_dbs_info->rate_mult = 1; |
| 600 | od_dbs_info->sample_type = OD_NORMAL_SAMPLE; |
| 601 | od_ops->powersave_bias_init_cpu(cpu); |
| 602 | } |
| 603 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 604 | gov_set_update_util(policy_dbs, sampling_rate); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 605 | return 0; |
| 606 | } |
| 607 | |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 608 | static int cpufreq_governor_stop(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 609 | { |
Viresh Kumar | 581c214 | 2016-02-11 17:31:14 +0530 | [diff] [blame] | 610 | gov_cancel_work(policy); |
Viresh Kumar | 3a91b069 | 2015-10-29 08:08:38 +0530 | [diff] [blame] | 611 | |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 612 | return 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 613 | } |
| 614 | |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 615 | static int cpufreq_governor_limits(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 616 | { |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 617 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 618 | |
Rafael J. Wysocki | e975189 | 2016-02-07 16:23:49 +0100 | [diff] [blame] | 619 | mutex_lock(&policy_dbs->timer_mutex); |
| 620 | if (policy->max < policy->cur) |
| 621 | __cpufreq_driver_target(policy, policy->max, CPUFREQ_RELATION_H); |
| 622 | else if (policy->min > policy->cur) |
| 623 | __cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L); |
Rafael J. Wysocki | d10b5eb | 2016-02-06 13:50:24 +0100 | [diff] [blame] | 624 | dbs_check_cpu(policy); |
Rafael J. Wysocki | e975189 | 2016-02-07 16:23:49 +0100 | [diff] [blame] | 625 | mutex_unlock(&policy_dbs->timer_mutex); |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 626 | |
| 627 | return 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 628 | } |
| 629 | |
Rafael J. Wysocki | 906a6e5 | 2016-02-07 16:07:51 +0100 | [diff] [blame] | 630 | int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event) |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 631 | { |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 632 | int ret = -EINVAL; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 633 | |
Viresh Kumar | 732b6d6 | 2015-06-03 15:57:13 +0530 | [diff] [blame] | 634 | /* Lock governor to block concurrent initialization of governor */ |
Rafael J. Wysocki | 2bb8d94 | 2016-02-07 16:01:31 +0100 | [diff] [blame] | 635 | mutex_lock(&dbs_data_mutex); |
Viresh Kumar | 732b6d6 | 2015-06-03 15:57:13 +0530 | [diff] [blame] | 636 | |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 637 | if (event == CPUFREQ_GOV_POLICY_INIT) { |
Rafael J. Wysocki | 906a6e5 | 2016-02-07 16:07:51 +0100 | [diff] [blame] | 638 | ret = cpufreq_governor_init(policy); |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 639 | } else if (policy->governor_data) { |
| 640 | switch (event) { |
| 641 | case CPUFREQ_GOV_POLICY_EXIT: |
| 642 | ret = cpufreq_governor_exit(policy); |
| 643 | break; |
| 644 | case CPUFREQ_GOV_START: |
| 645 | ret = cpufreq_governor_start(policy); |
| 646 | break; |
| 647 | case CPUFREQ_GOV_STOP: |
| 648 | ret = cpufreq_governor_stop(policy); |
| 649 | break; |
| 650 | case CPUFREQ_GOV_LIMITS: |
| 651 | ret = cpufreq_governor_limits(policy); |
| 652 | break; |
| 653 | } |
Viresh Kumar | 732b6d6 | 2015-06-03 15:57:13 +0530 | [diff] [blame] | 654 | } |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 655 | |
Rafael J. Wysocki | 2bb8d94 | 2016-02-07 16:01:31 +0100 | [diff] [blame] | 656 | mutex_unlock(&dbs_data_mutex); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 657 | return ret; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 658 | } |
| 659 | EXPORT_SYMBOL_GPL(cpufreq_governor_dbs); |