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 | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame^] | 143 | unsigned int dbs_update(struct cpufreq_policy *policy) |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 144 | { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 145 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 146 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 147 | struct dbs_data *dbs_data = policy_dbs->dbs_data; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 148 | struct od_dbs_tuners *od_tuners = dbs_data->tuners; |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 149 | unsigned int sampling_rate = dbs_data->sampling_rate; |
| 150 | unsigned int ignore_nice = dbs_data->ignore_nice_load; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 151 | unsigned int max_load = 0; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 152 | unsigned int j; |
| 153 | |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 154 | if (gov->governor == GOV_ONDEMAND) { |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 155 | struct od_cpu_dbs_info_s *od_dbs_info = |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame^] | 156 | gov->get_cpu_dbs_info_s(policy->cpu); |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 157 | |
| 158 | /* |
| 159 | * Sometimes, the ondemand governor uses an additional |
| 160 | * multiplier to give long delays. So apply this multiplier to |
| 161 | * the 'sampling_rate', so as to keep the wake-up-from-idle |
| 162 | * detection logic a bit conservative. |
| 163 | */ |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 164 | sampling_rate *= od_dbs_info->rate_mult; |
| 165 | |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 166 | } |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 167 | |
Stratos Karafotis | dfa5bb6 | 2013-06-05 19:01:25 +0300 | [diff] [blame] | 168 | /* Get Absolute Load */ |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 169 | for_each_cpu(j, policy->cpus) { |
Viresh Kumar | 875b850 | 2015-06-19 17:18:03 +0530 | [diff] [blame] | 170 | struct cpu_dbs_info *j_cdbs; |
Stratos Karafotis | 9366d84 | 2013-02-28 16:57:32 +0000 | [diff] [blame] | 171 | u64 cur_wall_time, cur_idle_time; |
| 172 | unsigned int idle_time, wall_time; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 173 | unsigned int load; |
Stratos Karafotis | 9366d84 | 2013-02-28 16:57:32 +0000 | [diff] [blame] | 174 | int io_busy = 0; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 175 | |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 176 | j_cdbs = gov->get_cpu_cdbs(j); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 177 | |
Stratos Karafotis | 9366d84 | 2013-02-28 16:57:32 +0000 | [diff] [blame] | 178 | /* |
| 179 | * For the purpose of ondemand, waiting for disk IO is |
| 180 | * an indication that you're performance critical, and |
| 181 | * not that the system is actually idle. So do not add |
| 182 | * the iowait time to the cpu idle time. |
| 183 | */ |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 184 | if (gov->governor == GOV_ONDEMAND) |
Stratos Karafotis | 9366d84 | 2013-02-28 16:57:32 +0000 | [diff] [blame] | 185 | io_busy = od_tuners->io_is_busy; |
| 186 | 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] | 187 | |
Rafael J. Wysocki | 57eb832 | 2016-02-16 00:58:47 +0100 | [diff] [blame] | 188 | wall_time = cur_wall_time - j_cdbs->prev_cpu_wall; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 189 | j_cdbs->prev_cpu_wall = cur_wall_time; |
| 190 | |
Rafael J. Wysocki | 57eb832 | 2016-02-16 00:58:47 +0100 | [diff] [blame] | 191 | if (cur_idle_time <= j_cdbs->prev_cpu_idle) { |
| 192 | idle_time = 0; |
| 193 | } else { |
| 194 | idle_time = cur_idle_time - j_cdbs->prev_cpu_idle; |
| 195 | j_cdbs->prev_cpu_idle = cur_idle_time; |
| 196 | } |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 197 | |
| 198 | if (ignore_nice) { |
Rafael J. Wysocki | 679b8fe | 2016-02-15 02:15:50 +0100 | [diff] [blame] | 199 | u64 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 200 | |
Rafael J. Wysocki | 679b8fe | 2016-02-15 02:15:50 +0100 | [diff] [blame] | 201 | idle_time += cputime_to_usecs(cur_nice - j_cdbs->prev_cpu_nice); |
| 202 | j_cdbs->prev_cpu_nice = cur_nice; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 203 | } |
| 204 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 205 | if (unlikely(!wall_time || wall_time < idle_time)) |
| 206 | continue; |
| 207 | |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 208 | /* |
| 209 | * If the CPU had gone completely idle, and a task just woke up |
| 210 | * on this CPU now, it would be unfair to calculate 'load' the |
| 211 | * usual way for this elapsed time-window, because it will show |
| 212 | * near-zero load, irrespective of how CPU intensive that task |
| 213 | * actually is. This is undesirable for latency-sensitive bursty |
| 214 | * workloads. |
| 215 | * |
| 216 | * To avoid this, we reuse the 'load' from the previous |
| 217 | * time-window and give this task a chance to start with a |
| 218 | * reasonably high CPU frequency. (However, we shouldn't over-do |
| 219 | * this copy, lest we get stuck at a high load (high frequency) |
| 220 | * for too long, even when the current system load has actually |
| 221 | * dropped down. So we perform the copy only once, upon the |
| 222 | * first wake-up from idle.) |
| 223 | * |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 224 | * Detecting this situation is easy: the governor's utilization |
| 225 | * update handler would not have run during CPU-idle periods. |
| 226 | * Hence, an unusually large 'wall_time' (as compared to the |
| 227 | * sampling rate) indicates this scenario. |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 228 | * |
| 229 | * prev_load can be zero in two cases and we must recalculate it |
| 230 | * for both cases: |
| 231 | * - during long idle intervals |
| 232 | * - explicitly set to zero |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 233 | */ |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 234 | if (unlikely(wall_time > (2 * sampling_rate) && |
| 235 | j_cdbs->prev_load)) { |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 236 | load = j_cdbs->prev_load; |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 237 | |
| 238 | /* |
| 239 | * Perform a destructive copy, to ensure that we copy |
| 240 | * the previous load only once, upon the first wake-up |
| 241 | * from idle. |
| 242 | */ |
| 243 | j_cdbs->prev_load = 0; |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 244 | } else { |
| 245 | load = 100 * (wall_time - idle_time) / wall_time; |
| 246 | j_cdbs->prev_load = load; |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 247 | } |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 248 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 249 | if (load > max_load) |
| 250 | max_load = load; |
| 251 | } |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame^] | 252 | return max_load; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 253 | } |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame^] | 254 | EXPORT_SYMBOL_GPL(dbs_update); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 255 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 256 | void gov_set_update_util(struct policy_dbs_info *policy_dbs, |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 257 | unsigned int delay_us) |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 258 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 259 | struct cpufreq_policy *policy = policy_dbs->policy; |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 260 | struct dbs_governor *gov = dbs_governor_of(policy); |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 261 | int cpu; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 262 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 263 | gov_update_sample_delay(policy_dbs, delay_us); |
| 264 | policy_dbs->last_sample_time = 0; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 265 | |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 266 | for_each_cpu(cpu, policy->cpus) { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 267 | struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(cpu); |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 268 | |
| 269 | cpufreq_set_update_util_data(cpu, &cdbs->update_util); |
Viresh Kumar | 031299b | 2013-02-27 12:24:03 +0530 | [diff] [blame] | 270 | } |
| 271 | } |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 272 | EXPORT_SYMBOL_GPL(gov_set_update_util); |
Viresh Kumar | 031299b | 2013-02-27 12:24:03 +0530 | [diff] [blame] | 273 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 274 | static inline void gov_clear_update_util(struct cpufreq_policy *policy) |
Viresh Kumar | 031299b | 2013-02-27 12:24:03 +0530 | [diff] [blame] | 275 | { |
Viresh Kumar | 031299b | 2013-02-27 12:24:03 +0530 | [diff] [blame] | 276 | int i; |
| 277 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 278 | for_each_cpu(i, policy->cpus) |
| 279 | cpufreq_set_update_util_data(i, NULL); |
| 280 | |
| 281 | synchronize_rcu(); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 282 | } |
| 283 | |
Viresh Kumar | 581c214 | 2016-02-11 17:31:14 +0530 | [diff] [blame] | 284 | static void gov_cancel_work(struct cpufreq_policy *policy) |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 285 | { |
Viresh Kumar | 581c214 | 2016-02-11 17:31:14 +0530 | [diff] [blame] | 286 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 287 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 288 | gov_clear_update_util(policy_dbs->policy); |
| 289 | irq_work_sync(&policy_dbs->irq_work); |
| 290 | cancel_work_sync(&policy_dbs->work); |
Rafael J. Wysocki | 686cc63 | 2016-02-08 23:41:10 +0100 | [diff] [blame] | 291 | atomic_set(&policy_dbs->work_count, 0); |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 292 | policy_dbs->work_in_progress = false; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 293 | } |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 294 | |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 295 | static void dbs_work_handler(struct work_struct *work) |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 296 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 297 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 3a91b069 | 2015-10-29 08:08:38 +0530 | [diff] [blame] | 298 | struct cpufreq_policy *policy; |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 299 | struct dbs_governor *gov; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 300 | unsigned int delay; |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 301 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 302 | policy_dbs = container_of(work, struct policy_dbs_info, work); |
| 303 | policy = policy_dbs->policy; |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 304 | gov = dbs_governor_of(policy); |
Viresh Kumar | 3a91b069 | 2015-10-29 08:08:38 +0530 | [diff] [blame] | 305 | |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 306 | /* |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 307 | * Make sure cpufreq_governor_limits() isn't evaluating load or the |
| 308 | * ondemand governor isn't updating the sampling rate in parallel. |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 309 | */ |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 310 | mutex_lock(&policy_dbs->timer_mutex); |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 311 | delay = gov->gov_dbs_timer(policy); |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 312 | policy_dbs->sample_delay_ns = jiffies_to_nsecs(delay); |
| 313 | mutex_unlock(&policy_dbs->timer_mutex); |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 314 | |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 315 | /* Allow the utilization update handler to queue up more work. */ |
| 316 | atomic_set(&policy_dbs->work_count, 0); |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 317 | /* |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 318 | * If the update below is reordered with respect to the sample delay |
| 319 | * modification, the utilization update handler may end up using a stale |
| 320 | * sample delay value. |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 321 | */ |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 322 | smp_wmb(); |
| 323 | policy_dbs->work_in_progress = false; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 324 | } |
| 325 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 326 | static void dbs_irq_work(struct irq_work *irq_work) |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 327 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 328 | struct policy_dbs_info *policy_dbs; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 329 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 330 | policy_dbs = container_of(irq_work, struct policy_dbs_info, irq_work); |
| 331 | schedule_work(&policy_dbs->work); |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 332 | } |
| 333 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 334 | static void dbs_update_util_handler(struct update_util_data *data, u64 time, |
| 335 | unsigned long util, unsigned long max) |
| 336 | { |
| 337 | 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] | 338 | struct policy_dbs_info *policy_dbs = cdbs->policy_dbs; |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 339 | u64 delta_ns; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 340 | |
| 341 | /* |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 342 | * The work may not be allowed to be queued up right now. |
| 343 | * Possible reasons: |
| 344 | * - Work has already been queued up or is in progress. |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 345 | * - It is too early (too little time from the previous sample). |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 346 | */ |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 347 | if (policy_dbs->work_in_progress) |
| 348 | return; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 349 | |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 350 | /* |
| 351 | * If the reads below are reordered before the check above, the value |
| 352 | * of sample_delay_ns used in the computation may be stale. |
| 353 | */ |
| 354 | smp_rmb(); |
| 355 | delta_ns = time - policy_dbs->last_sample_time; |
| 356 | if ((s64)delta_ns < policy_dbs->sample_delay_ns) |
| 357 | return; |
| 358 | |
| 359 | /* |
| 360 | * If the policy is not shared, the irq_work may be queued up right away |
| 361 | * at this point. Otherwise, we need to ensure that only one of the |
| 362 | * CPUs sharing the policy will do that. |
| 363 | */ |
| 364 | if (policy_dbs->is_shared && |
| 365 | !atomic_add_unless(&policy_dbs->work_count, 1, 1)) |
| 366 | return; |
| 367 | |
| 368 | policy_dbs->last_sample_time = time; |
| 369 | policy_dbs->work_in_progress = true; |
| 370 | irq_work_queue(&policy_dbs->irq_work); |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 371 | } |
Viresh Kumar | 4447266 | 2013-01-31 17:28:02 +0000 | [diff] [blame] | 372 | |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 373 | static struct policy_dbs_info *alloc_policy_dbs_info(struct cpufreq_policy *policy, |
| 374 | struct dbs_governor *gov) |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 375 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 376 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 377 | int j; |
| 378 | |
| 379 | /* Allocate memory for the common information for policy->cpus */ |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 380 | policy_dbs = kzalloc(sizeof(*policy_dbs), GFP_KERNEL); |
| 381 | if (!policy_dbs) |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 382 | return NULL; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 383 | |
Viresh Kumar | 581c214 | 2016-02-11 17:31:14 +0530 | [diff] [blame] | 384 | policy_dbs->policy = policy; |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 385 | mutex_init(&policy_dbs->timer_mutex); |
Rafael J. Wysocki | 686cc63 | 2016-02-08 23:41:10 +0100 | [diff] [blame] | 386 | atomic_set(&policy_dbs->work_count, 0); |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 387 | init_irq_work(&policy_dbs->irq_work, dbs_irq_work); |
| 388 | INIT_WORK(&policy_dbs->work, dbs_work_handler); |
Rafael J. Wysocki | cea6a9e | 2016-02-07 16:25:02 +0100 | [diff] [blame] | 389 | |
| 390 | /* Set policy_dbs for all CPUs, online+offline */ |
| 391 | for_each_cpu(j, policy->related_cpus) { |
| 392 | struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j); |
| 393 | |
| 394 | j_cdbs->policy_dbs = policy_dbs; |
| 395 | j_cdbs->update_util.func = dbs_update_util_handler; |
| 396 | } |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 397 | return policy_dbs; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 398 | } |
| 399 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 400 | static void free_policy_dbs_info(struct cpufreq_policy *policy, |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 401 | struct dbs_governor *gov) |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 402 | { |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 403 | struct cpu_dbs_info *cdbs = gov->get_cpu_cdbs(policy->cpu); |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 404 | struct policy_dbs_info *policy_dbs = cdbs->policy_dbs; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 405 | int j; |
| 406 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 407 | mutex_destroy(&policy_dbs->timer_mutex); |
Viresh Kumar | 5e4500d | 2015-12-03 09:37:52 +0530 | [diff] [blame] | 408 | |
Rafael J. Wysocki | cea6a9e | 2016-02-07 16:25:02 +0100 | [diff] [blame] | 409 | for_each_cpu(j, policy->related_cpus) { |
| 410 | struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j); |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 411 | |
Rafael J. Wysocki | cea6a9e | 2016-02-07 16:25:02 +0100 | [diff] [blame] | 412 | j_cdbs->policy_dbs = NULL; |
| 413 | j_cdbs->update_util.func = NULL; |
| 414 | } |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 415 | kfree(policy_dbs); |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 416 | } |
| 417 | |
Rafael J. Wysocki | 906a6e5 | 2016-02-07 16:07:51 +0100 | [diff] [blame] | 418 | static int cpufreq_governor_init(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 419 | { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 420 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 421 | struct dbs_data *dbs_data = gov->gdbs_data; |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 422 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 423 | unsigned int latency; |
| 424 | int ret; |
| 425 | |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 426 | /* State should be equivalent to EXIT */ |
| 427 | if (policy->governor_data) |
| 428 | return -EBUSY; |
| 429 | |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 430 | policy_dbs = alloc_policy_dbs_info(policy, gov); |
| 431 | if (!policy_dbs) |
| 432 | return -ENOMEM; |
| 433 | |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 434 | if (dbs_data) { |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 435 | if (WARN_ON(have_governor_per_policy())) { |
| 436 | ret = -EINVAL; |
| 437 | goto free_policy_dbs_info; |
| 438 | } |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 439 | policy_dbs->dbs_data = dbs_data; |
| 440 | policy->governor_data = policy_dbs; |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 441 | |
| 442 | mutex_lock(&dbs_data->mutex); |
| 443 | dbs_data->usage_count++; |
| 444 | list_add(&policy_dbs->list, &dbs_data->policy_dbs_list); |
| 445 | mutex_unlock(&dbs_data->mutex); |
| 446 | |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 447 | return 0; |
| 448 | } |
| 449 | |
| 450 | dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 451 | if (!dbs_data) { |
| 452 | ret = -ENOMEM; |
| 453 | goto free_policy_dbs_info; |
| 454 | } |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 455 | |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 456 | INIT_LIST_HEAD(&dbs_data->policy_dbs_list); |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 457 | mutex_init(&dbs_data->mutex); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 458 | |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 459 | ret = gov->init(dbs_data, !policy->governor->initialized); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 460 | if (ret) |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 461 | goto free_policy_dbs_info; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 462 | |
| 463 | /* policy latency is in ns. Convert it to us first */ |
| 464 | latency = policy->cpuinfo.transition_latency / 1000; |
| 465 | if (latency == 0) |
| 466 | latency = 1; |
| 467 | |
| 468 | /* Bring kernel and HW constraints together */ |
| 469 | dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate, |
| 470 | MIN_LATENCY_MULTIPLIER * latency); |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 471 | dbs_data->sampling_rate = max(dbs_data->min_sampling_rate, |
| 472 | LATENCY_MULTIPLIER * latency); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 473 | |
Viresh Kumar | 8eec102 | 2015-10-15 21:35:22 +0530 | [diff] [blame] | 474 | if (!have_governor_per_policy()) |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 475 | gov->gdbs_data = dbs_data; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 476 | |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 477 | policy->governor_data = policy_dbs; |
Viresh Kumar | e4b133c | 2016-01-25 22:33:46 +0530 | [diff] [blame] | 478 | |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 479 | policy_dbs->dbs_data = dbs_data; |
| 480 | dbs_data->usage_count = 1; |
| 481 | list_add(&policy_dbs->list, &dbs_data->policy_dbs_list); |
| 482 | |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 483 | gov->kobj_type.sysfs_ops = &governor_sysfs_ops; |
| 484 | ret = kobject_init_and_add(&dbs_data->kobj, &gov->kobj_type, |
| 485 | get_governor_parent_kobj(policy), |
| 486 | "%s", gov->gov.name); |
Rafael J. Wysocki | fafd5e8 | 2016-02-08 23:57:22 +0100 | [diff] [blame] | 487 | if (!ret) |
| 488 | return 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 489 | |
Rafael J. Wysocki | fafd5e8 | 2016-02-08 23:57:22 +0100 | [diff] [blame] | 490 | /* Failure, so roll back. */ |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 491 | 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] | 492 | |
Viresh Kumar | e4b133c | 2016-01-25 22:33:46 +0530 | [diff] [blame] | 493 | policy->governor_data = NULL; |
| 494 | |
Viresh Kumar | 8eec102 | 2015-10-15 21:35:22 +0530 | [diff] [blame] | 495 | if (!have_governor_per_policy()) |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 496 | gov->gdbs_data = NULL; |
| 497 | gov->exit(dbs_data, !policy->governor->initialized); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 498 | kfree(dbs_data); |
| 499 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 500 | free_policy_dbs_info: |
| 501 | free_policy_dbs_info(policy, gov); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 502 | return ret; |
| 503 | } |
| 504 | |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 505 | static int cpufreq_governor_exit(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 506 | { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 507 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 508 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 509 | struct dbs_data *dbs_data = policy_dbs->dbs_data; |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 510 | int count; |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 511 | |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 512 | mutex_lock(&dbs_data->mutex); |
| 513 | list_del(&policy_dbs->list); |
| 514 | count = --dbs_data->usage_count; |
| 515 | mutex_unlock(&dbs_data->mutex); |
| 516 | |
| 517 | if (!count) { |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 518 | kobject_put(&dbs_data->kobj); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 519 | |
Viresh Kumar | e4b133c | 2016-01-25 22:33:46 +0530 | [diff] [blame] | 520 | policy->governor_data = NULL; |
| 521 | |
Viresh Kumar | 8eec102 | 2015-10-15 21:35:22 +0530 | [diff] [blame] | 522 | if (!have_governor_per_policy()) |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 523 | gov->gdbs_data = NULL; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 524 | |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 525 | gov->exit(dbs_data, policy->governor->initialized == 1); |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 526 | mutex_destroy(&dbs_data->mutex); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 527 | kfree(dbs_data); |
Viresh Kumar | e4b133c | 2016-01-25 22:33:46 +0530 | [diff] [blame] | 528 | } else { |
| 529 | policy->governor_data = NULL; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 530 | } |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 531 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 532 | free_policy_dbs_info(policy, gov); |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 533 | return 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 534 | } |
| 535 | |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 536 | static int cpufreq_governor_start(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 537 | { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 538 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 539 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 540 | struct dbs_data *dbs_data = policy_dbs->dbs_data; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 541 | unsigned int sampling_rate, ignore_nice, j, cpu = policy->cpu; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 542 | int io_busy = 0; |
| 543 | |
| 544 | if (!policy->cur) |
| 545 | return -EINVAL; |
| 546 | |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 547 | policy_dbs->is_shared = policy_is_shared(policy); |
| 548 | |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 549 | sampling_rate = dbs_data->sampling_rate; |
| 550 | ignore_nice = dbs_data->ignore_nice_load; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 551 | |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 552 | if (gov->governor == GOV_ONDEMAND) { |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 553 | struct od_dbs_tuners *od_tuners = dbs_data->tuners; |
| 554 | |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 555 | io_busy = od_tuners->io_is_busy; |
| 556 | } |
| 557 | |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 558 | for_each_cpu(j, policy->cpus) { |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 559 | struct cpu_dbs_info *j_cdbs = gov->get_cpu_cdbs(j); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 560 | unsigned int prev_load; |
| 561 | |
Rafael J. Wysocki | 57eb832 | 2016-02-16 00:58:47 +0100 | [diff] [blame] | 562 | j_cdbs->prev_cpu_idle = get_cpu_idle_time(j, &j_cdbs->prev_cpu_wall, io_busy); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 563 | |
Rafael J. Wysocki | 57eb832 | 2016-02-16 00:58:47 +0100 | [diff] [blame] | 564 | prev_load = j_cdbs->prev_cpu_wall - j_cdbs->prev_cpu_idle; |
| 565 | j_cdbs->prev_load = 100 * prev_load / (unsigned int)j_cdbs->prev_cpu_wall; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 566 | |
| 567 | if (ignore_nice) |
| 568 | j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 569 | } |
| 570 | |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 571 | if (gov->governor == GOV_CONSERVATIVE) { |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 572 | struct cs_cpu_dbs_info_s *cs_dbs_info = |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 573 | gov->get_cpu_dbs_info_s(cpu); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 574 | |
| 575 | cs_dbs_info->down_skip = 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 576 | cs_dbs_info->requested_freq = policy->cur; |
| 577 | } else { |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 578 | struct od_ops *od_ops = gov->gov_ops; |
| 579 | 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] | 580 | |
| 581 | od_dbs_info->rate_mult = 1; |
| 582 | od_dbs_info->sample_type = OD_NORMAL_SAMPLE; |
| 583 | od_ops->powersave_bias_init_cpu(cpu); |
| 584 | } |
| 585 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 586 | gov_set_update_util(policy_dbs, sampling_rate); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 587 | return 0; |
| 588 | } |
| 589 | |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 590 | static int cpufreq_governor_stop(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 591 | { |
Viresh Kumar | 581c214 | 2016-02-11 17:31:14 +0530 | [diff] [blame] | 592 | gov_cancel_work(policy); |
Viresh Kumar | 3a91b069 | 2015-10-29 08:08:38 +0530 | [diff] [blame] | 593 | |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 594 | return 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 595 | } |
| 596 | |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 597 | static int cpufreq_governor_limits(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 598 | { |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 599 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 600 | |
Rafael J. Wysocki | e975189 | 2016-02-07 16:23:49 +0100 | [diff] [blame] | 601 | mutex_lock(&policy_dbs->timer_mutex); |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame^] | 602 | |
Rafael J. Wysocki | e975189 | 2016-02-07 16:23:49 +0100 | [diff] [blame] | 603 | if (policy->max < policy->cur) |
| 604 | __cpufreq_driver_target(policy, policy->max, CPUFREQ_RELATION_H); |
| 605 | else if (policy->min > policy->cur) |
| 606 | __cpufreq_driver_target(policy, policy->min, CPUFREQ_RELATION_L); |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame^] | 607 | |
| 608 | gov_update_sample_delay(policy_dbs, 0); |
| 609 | |
Rafael J. Wysocki | e975189 | 2016-02-07 16:23:49 +0100 | [diff] [blame] | 610 | mutex_unlock(&policy_dbs->timer_mutex); |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 611 | |
| 612 | return 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 613 | } |
| 614 | |
Rafael J. Wysocki | 906a6e5 | 2016-02-07 16:07:51 +0100 | [diff] [blame] | 615 | int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event) |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 616 | { |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 617 | int ret = -EINVAL; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 618 | |
Viresh Kumar | 732b6d6 | 2015-06-03 15:57:13 +0530 | [diff] [blame] | 619 | /* Lock governor to block concurrent initialization of governor */ |
Rafael J. Wysocki | 2bb8d94 | 2016-02-07 16:01:31 +0100 | [diff] [blame] | 620 | mutex_lock(&dbs_data_mutex); |
Viresh Kumar | 732b6d6 | 2015-06-03 15:57:13 +0530 | [diff] [blame] | 621 | |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 622 | if (event == CPUFREQ_GOV_POLICY_INIT) { |
Rafael J. Wysocki | 906a6e5 | 2016-02-07 16:07:51 +0100 | [diff] [blame] | 623 | ret = cpufreq_governor_init(policy); |
Rafael J. Wysocki | 5da3dd1 | 2016-02-05 03:15:24 +0100 | [diff] [blame] | 624 | } else if (policy->governor_data) { |
| 625 | switch (event) { |
| 626 | case CPUFREQ_GOV_POLICY_EXIT: |
| 627 | ret = cpufreq_governor_exit(policy); |
| 628 | break; |
| 629 | case CPUFREQ_GOV_START: |
| 630 | ret = cpufreq_governor_start(policy); |
| 631 | break; |
| 632 | case CPUFREQ_GOV_STOP: |
| 633 | ret = cpufreq_governor_stop(policy); |
| 634 | break; |
| 635 | case CPUFREQ_GOV_LIMITS: |
| 636 | ret = cpufreq_governor_limits(policy); |
| 637 | break; |
| 638 | } |
Viresh Kumar | 732b6d6 | 2015-06-03 15:57:13 +0530 | [diff] [blame] | 639 | } |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 640 | |
Rafael J. Wysocki | 2bb8d94 | 2016-02-07 16:01:31 +0100 | [diff] [blame] | 641 | mutex_unlock(&dbs_data_mutex); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 642 | return ret; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 643 | } |
| 644 | EXPORT_SYMBOL_GPL(cpufreq_governor_dbs); |