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> |
Rafael J. Wysocki | adaf9fc | 2016-03-10 20:44:47 +0100 | [diff] [blame] | 21 | #include <linux/sched.h> |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 22 | #include <linux/slab.h> |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 23 | |
| 24 | #include "cpufreq_governor.h" |
| 25 | |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 26 | static DEFINE_PER_CPU(struct cpu_dbs_info, cpu_dbs); |
| 27 | |
Rafael J. Wysocki | 1112e9d | 2016-02-21 00:53:06 +0100 | [diff] [blame] | 28 | static DEFINE_MUTEX(gov_dbs_data_mutex); |
Rafael J. Wysocki | 2bb8d94 | 2016-02-07 16:01:31 +0100 | [diff] [blame] | 29 | |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 30 | /* Common sysfs tunables */ |
| 31 | /** |
| 32 | * store_sampling_rate - update sampling rate effective immediately if needed. |
| 33 | * |
| 34 | * If new rate is smaller than the old, simply updating |
| 35 | * dbs.sampling_rate might not be appropriate. For example, if the |
| 36 | * original sampling_rate was 1 second and the requested new sampling rate is 10 |
| 37 | * ms because the user needs immediate reaction from ondemand governor, but not |
| 38 | * sure if higher frequency will be required or not, then, the governor may |
| 39 | * change the sampling rate too late; up to 1 second later. Thus, if we are |
| 40 | * reducing the sampling rate, we need to make the new value effective |
| 41 | * immediately. |
| 42 | * |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 43 | * This must be called with dbs_data->mutex held, otherwise traversing |
| 44 | * policy_dbs_list isn't safe. |
| 45 | */ |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 46 | ssize_t store_sampling_rate(struct gov_attr_set *attr_set, const char *buf, |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 47 | size_t count) |
| 48 | { |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 49 | struct dbs_data *dbs_data = to_dbs_data(attr_set); |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 50 | struct policy_dbs_info *policy_dbs; |
| 51 | unsigned int rate; |
| 52 | int ret; |
| 53 | ret = sscanf(buf, "%u", &rate); |
| 54 | if (ret != 1) |
| 55 | return -EINVAL; |
| 56 | |
| 57 | dbs_data->sampling_rate = max(rate, dbs_data->min_sampling_rate); |
| 58 | |
| 59 | /* |
| 60 | * We are operating under dbs_data->mutex and so the list and its |
| 61 | * entries can't be freed concurrently. |
| 62 | */ |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 63 | list_for_each_entry(policy_dbs, &attr_set->policy_list, list) { |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 64 | mutex_lock(&policy_dbs->timer_mutex); |
| 65 | /* |
| 66 | * On 32-bit architectures this may race with the |
| 67 | * sample_delay_ns read in dbs_update_util_handler(), but that |
| 68 | * really doesn't matter. If the read returns a value that's |
| 69 | * too big, the sample will be skipped, but the next invocation |
| 70 | * of dbs_update_util_handler() (when the update has been |
Rafael J. Wysocki | 78347cd | 2016-02-15 02:20:11 +0100 | [diff] [blame] | 71 | * completed) will take a sample. |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 72 | * |
| 73 | * If this runs in parallel with dbs_work_handler(), we may end |
| 74 | * up overwriting the sample_delay_ns value that it has just |
Rafael J. Wysocki | 78347cd | 2016-02-15 02:20:11 +0100 | [diff] [blame] | 75 | * written, but it will be corrected next time a sample is |
| 76 | * taken, so it shouldn't be significant. |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 77 | */ |
Rafael J. Wysocki | 78347cd | 2016-02-15 02:20:11 +0100 | [diff] [blame] | 78 | gov_update_sample_delay(policy_dbs, 0); |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 79 | mutex_unlock(&policy_dbs->timer_mutex); |
| 80 | } |
| 81 | |
| 82 | return count; |
| 83 | } |
| 84 | EXPORT_SYMBOL_GPL(store_sampling_rate); |
| 85 | |
Rafael J. Wysocki | a33cce1 | 2016-02-18 02:26:55 +0100 | [diff] [blame] | 86 | /** |
| 87 | * gov_update_cpu_data - Update CPU load data. |
Rafael J. Wysocki | a33cce1 | 2016-02-18 02:26:55 +0100 | [diff] [blame] | 88 | * @dbs_data: Top-level governor data pointer. |
| 89 | * |
| 90 | * Update CPU load data for all CPUs in the domain governed by @dbs_data |
| 91 | * (that may be a single policy or a bunch of them if governor tunables are |
| 92 | * system-wide). |
| 93 | * |
| 94 | * Call under the @dbs_data mutex. |
| 95 | */ |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 96 | void gov_update_cpu_data(struct dbs_data *dbs_data) |
Rafael J. Wysocki | a33cce1 | 2016-02-18 02:26:55 +0100 | [diff] [blame] | 97 | { |
| 98 | struct policy_dbs_info *policy_dbs; |
| 99 | |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 100 | list_for_each_entry(policy_dbs, &dbs_data->attr_set.policy_list, list) { |
Rafael J. Wysocki | a33cce1 | 2016-02-18 02:26:55 +0100 | [diff] [blame] | 101 | unsigned int j; |
| 102 | |
| 103 | for_each_cpu(j, policy_dbs->policy->cpus) { |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 104 | struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j); |
Rafael J. Wysocki | a33cce1 | 2016-02-18 02:26:55 +0100 | [diff] [blame] | 105 | |
Rafael J. Wysocki | b4f4b4b | 2016-04-28 01:19:03 +0200 | [diff] [blame] | 106 | j_cdbs->prev_cpu_idle = get_cpu_idle_time(j, &j_cdbs->prev_update_time, |
Rafael J. Wysocki | a33cce1 | 2016-02-18 02:26:55 +0100 | [diff] [blame] | 107 | dbs_data->io_is_busy); |
| 108 | if (dbs_data->ignore_nice_load) |
| 109 | j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
| 110 | } |
| 111 | } |
| 112 | } |
| 113 | EXPORT_SYMBOL_GPL(gov_update_cpu_data); |
| 114 | |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame] | 115 | unsigned int dbs_update(struct cpufreq_policy *policy) |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 116 | { |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 117 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 118 | struct dbs_data *dbs_data = policy_dbs->dbs_data; |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 119 | unsigned int ignore_nice = dbs_data->ignore_nice_load; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 120 | unsigned int max_load = 0; |
Rafael J. Wysocki | 8847e03 | 2016-02-18 02:20:13 +0100 | [diff] [blame] | 121 | unsigned int sampling_rate, io_busy, j; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 122 | |
Rafael J. Wysocki | 57dc3bc | 2016-02-15 02:20:51 +0100 | [diff] [blame] | 123 | /* |
| 124 | * Sometimes governors may use an additional multiplier to increase |
| 125 | * sample delays temporarily. Apply that multiplier to sampling_rate |
| 126 | * so as to keep the wake-up-from-idle detection logic a bit |
| 127 | * conservative. |
| 128 | */ |
| 129 | sampling_rate = dbs_data->sampling_rate * policy_dbs->rate_mult; |
Rafael J. Wysocki | 8847e03 | 2016-02-18 02:20:13 +0100 | [diff] [blame] | 130 | /* |
| 131 | * For the purpose of ondemand, waiting for disk IO is an indication |
| 132 | * that you're performance critical, and not that the system is actually |
| 133 | * idle, so do not add the iowait time to the CPU idle time then. |
| 134 | */ |
| 135 | io_busy = dbs_data->io_is_busy; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 136 | |
Stratos Karafotis | dfa5bb6 | 2013-06-05 19:01:25 +0300 | [diff] [blame] | 137 | /* Get Absolute Load */ |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 138 | for_each_cpu(j, policy->cpus) { |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 139 | struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j); |
Rafael J. Wysocki | b4f4b4b | 2016-04-28 01:19:03 +0200 | [diff] [blame] | 140 | u64 update_time, cur_idle_time; |
| 141 | unsigned int idle_time, time_elapsed; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 142 | unsigned int load; |
| 143 | |
Rafael J. Wysocki | b4f4b4b | 2016-04-28 01:19:03 +0200 | [diff] [blame] | 144 | cur_idle_time = get_cpu_idle_time(j, &update_time, io_busy); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 145 | |
Rafael J. Wysocki | b4f4b4b | 2016-04-28 01:19:03 +0200 | [diff] [blame] | 146 | time_elapsed = update_time - j_cdbs->prev_update_time; |
| 147 | j_cdbs->prev_update_time = update_time; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 148 | |
Rafael J. Wysocki | 94862a6 | 2016-04-21 20:57:47 +0200 | [diff] [blame] | 149 | idle_time = cur_idle_time - j_cdbs->prev_cpu_idle; |
| 150 | j_cdbs->prev_cpu_idle = cur_idle_time; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 151 | |
| 152 | if (ignore_nice) { |
Rafael J. Wysocki | 679b8fe | 2016-02-15 02:15:50 +0100 | [diff] [blame] | 153 | u64 cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 154 | |
Rafael J. Wysocki | 679b8fe | 2016-02-15 02:15:50 +0100 | [diff] [blame] | 155 | idle_time += cputime_to_usecs(cur_nice - j_cdbs->prev_cpu_nice); |
| 156 | j_cdbs->prev_cpu_nice = cur_nice; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 157 | } |
| 158 | |
Rafael J. Wysocki | 9485e4c | 2016-05-06 01:30:37 +0200 | [diff] [blame] | 159 | if (unlikely(!time_elapsed)) { |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 160 | /* |
Rafael J. Wysocki | 9485e4c | 2016-05-06 01:30:37 +0200 | [diff] [blame] | 161 | * That can only happen when this function is called |
| 162 | * twice in a row with a very short interval between the |
| 163 | * calls, so the previous load value can be used then. |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 164 | */ |
Rafael J. Wysocki | 9485e4c | 2016-05-06 01:30:37 +0200 | [diff] [blame] | 165 | load = j_cdbs->prev_load; |
| 166 | } else if (unlikely(time_elapsed > 2 * sampling_rate && |
| 167 | j_cdbs->prev_load)) { |
| 168 | /* |
| 169 | * If the CPU had gone completely idle and a task has |
| 170 | * just woken up on this CPU now, it would be unfair to |
| 171 | * calculate 'load' the usual way for this elapsed |
| 172 | * time-window, because it would show near-zero load, |
| 173 | * irrespective of how CPU intensive that task actually |
| 174 | * was. This is undesirable for latency-sensitive bursty |
| 175 | * workloads. |
| 176 | * |
| 177 | * To avoid this, reuse the 'load' from the previous |
| 178 | * time-window and give this task a chance to start with |
| 179 | * a reasonably high CPU frequency. However, that |
| 180 | * shouldn't be over-done, lest we get stuck at a high |
| 181 | * load (high frequency) for too long, even when the |
| 182 | * current system load has actually dropped down, so |
| 183 | * clear prev_load to guarantee that the load will be |
| 184 | * computed again next time. |
| 185 | * |
| 186 | * Detecting this situation is easy: the governor's |
| 187 | * utilization update handler would not have run during |
| 188 | * CPU-idle periods. Hence, an unusually large |
| 189 | * 'time_elapsed' (as compared to the sampling rate) |
| 190 | * indicates this scenario. |
| 191 | */ |
| 192 | load = j_cdbs->prev_load; |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 193 | j_cdbs->prev_load = 0; |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 194 | } else { |
Rafael J. Wysocki | 9485e4c | 2016-05-06 01:30:37 +0200 | [diff] [blame] | 195 | if (time_elapsed >= idle_time) { |
| 196 | load = 100 * (time_elapsed - idle_time) / time_elapsed; |
| 197 | } else { |
| 198 | /* |
| 199 | * That can happen if idle_time is returned by |
| 200 | * get_cpu_idle_time_jiffy(). In that case |
| 201 | * idle_time is roughly equal to the difference |
| 202 | * between time_elapsed and "busy time" obtained |
| 203 | * from CPU statistics. Then, the "busy time" |
| 204 | * can end up being greater than time_elapsed |
| 205 | * (for example, if jiffies_64 and the CPU |
| 206 | * statistics are updated by different CPUs), |
| 207 | * so idle_time may in fact be negative. That |
| 208 | * means, though, that the CPU was busy all |
| 209 | * the time (on the rough average) during the |
| 210 | * last sampling interval and 100 can be |
| 211 | * returned as the load. |
| 212 | */ |
| 213 | load = (int)idle_time < 0 ? 100 : 0; |
| 214 | } |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 215 | j_cdbs->prev_load = load; |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 216 | } |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 217 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 218 | if (load > max_load) |
| 219 | max_load = load; |
| 220 | } |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame] | 221 | return max_load; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 222 | } |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame] | 223 | EXPORT_SYMBOL_GPL(dbs_update); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 224 | |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 225 | static void dbs_work_handler(struct work_struct *work) |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 226 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 227 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 3a91b069 | 2015-10-29 08:08:38 +0530 | [diff] [blame] | 228 | struct cpufreq_policy *policy; |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 229 | struct dbs_governor *gov; |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 230 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 231 | policy_dbs = container_of(work, struct policy_dbs_info, work); |
| 232 | policy = policy_dbs->policy; |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 233 | gov = dbs_governor_of(policy); |
Viresh Kumar | 3a91b069 | 2015-10-29 08:08:38 +0530 | [diff] [blame] | 234 | |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 235 | /* |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 236 | * Make sure cpufreq_governor_limits() isn't evaluating load or the |
| 237 | * ondemand governor isn't updating the sampling rate in parallel. |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 238 | */ |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 239 | mutex_lock(&policy_dbs->timer_mutex); |
Rafael J. Wysocki | 07aa440 | 2016-02-15 02:22:13 +0100 | [diff] [blame] | 240 | gov_update_sample_delay(policy_dbs, gov->gov_dbs_timer(policy)); |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 241 | mutex_unlock(&policy_dbs->timer_mutex); |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 242 | |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 243 | /* Allow the utilization update handler to queue up more work. */ |
| 244 | atomic_set(&policy_dbs->work_count, 0); |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 245 | /* |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 246 | * If the update below is reordered with respect to the sample delay |
| 247 | * modification, the utilization update handler may end up using a stale |
| 248 | * sample delay value. |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 249 | */ |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 250 | smp_wmb(); |
| 251 | policy_dbs->work_in_progress = false; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 252 | } |
| 253 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 254 | static void dbs_irq_work(struct irq_work *irq_work) |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 255 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 256 | struct policy_dbs_info *policy_dbs; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 257 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 258 | policy_dbs = container_of(irq_work, struct policy_dbs_info, irq_work); |
Rafael J. Wysocki | 539a4c4 | 2016-03-22 01:17:43 +0100 | [diff] [blame] | 259 | schedule_work_on(smp_processor_id(), &policy_dbs->work); |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 260 | } |
| 261 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 262 | static void dbs_update_util_handler(struct update_util_data *data, u64 time, |
Rafael J. Wysocki | 58919e8 | 2016-08-16 22:14:55 +0200 | [diff] [blame] | 263 | unsigned int flags) |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 264 | { |
| 265 | 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] | 266 | struct policy_dbs_info *policy_dbs = cdbs->policy_dbs; |
Rafael J. Wysocki | 27de348 | 2016-02-22 14:14:34 +0100 | [diff] [blame] | 267 | u64 delta_ns, lst; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 268 | |
| 269 | /* |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 270 | * The work may not be allowed to be queued up right now. |
| 271 | * Possible reasons: |
| 272 | * - Work has already been queued up or is in progress. |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 273 | * - It is too early (too little time from the previous sample). |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 274 | */ |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 275 | if (policy_dbs->work_in_progress) |
| 276 | return; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 277 | |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 278 | /* |
| 279 | * If the reads below are reordered before the check above, the value |
| 280 | * of sample_delay_ns used in the computation may be stale. |
| 281 | */ |
| 282 | smp_rmb(); |
Rafael J. Wysocki | 27de348 | 2016-02-22 14:14:34 +0100 | [diff] [blame] | 283 | lst = READ_ONCE(policy_dbs->last_sample_time); |
| 284 | delta_ns = time - lst; |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 285 | if ((s64)delta_ns < policy_dbs->sample_delay_ns) |
| 286 | return; |
| 287 | |
| 288 | /* |
| 289 | * If the policy is not shared, the irq_work may be queued up right away |
| 290 | * at this point. Otherwise, we need to ensure that only one of the |
| 291 | * CPUs sharing the policy will do that. |
| 292 | */ |
Rafael J. Wysocki | 27de348 | 2016-02-22 14:14:34 +0100 | [diff] [blame] | 293 | if (policy_dbs->is_shared) { |
| 294 | if (!atomic_add_unless(&policy_dbs->work_count, 1, 1)) |
| 295 | return; |
| 296 | |
| 297 | /* |
| 298 | * If another CPU updated last_sample_time in the meantime, we |
| 299 | * shouldn't be here, so clear the work counter and bail out. |
| 300 | */ |
| 301 | if (unlikely(lst != READ_ONCE(policy_dbs->last_sample_time))) { |
| 302 | atomic_set(&policy_dbs->work_count, 0); |
| 303 | return; |
| 304 | } |
| 305 | } |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 306 | |
| 307 | policy_dbs->last_sample_time = time; |
| 308 | policy_dbs->work_in_progress = true; |
| 309 | irq_work_queue(&policy_dbs->irq_work); |
Viresh Kumar | 43e0ee3 | 2015-07-18 11:31:00 +0530 | [diff] [blame] | 310 | } |
Viresh Kumar | 4447266 | 2013-01-31 17:28:02 +0000 | [diff] [blame] | 311 | |
Rafael J. Wysocki | 0bed612 | 2016-04-02 01:08:43 +0200 | [diff] [blame] | 312 | static void gov_set_update_util(struct policy_dbs_info *policy_dbs, |
| 313 | unsigned int delay_us) |
| 314 | { |
| 315 | struct cpufreq_policy *policy = policy_dbs->policy; |
| 316 | int cpu; |
| 317 | |
| 318 | gov_update_sample_delay(policy_dbs, delay_us); |
| 319 | policy_dbs->last_sample_time = 0; |
| 320 | |
| 321 | for_each_cpu(cpu, policy->cpus) { |
| 322 | struct cpu_dbs_info *cdbs = &per_cpu(cpu_dbs, cpu); |
| 323 | |
| 324 | cpufreq_add_update_util_hook(cpu, &cdbs->update_util, |
| 325 | dbs_update_util_handler); |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | static inline void gov_clear_update_util(struct cpufreq_policy *policy) |
| 330 | { |
| 331 | int i; |
| 332 | |
| 333 | for_each_cpu(i, policy->cpus) |
| 334 | cpufreq_remove_update_util_hook(i); |
| 335 | |
| 336 | synchronize_sched(); |
| 337 | } |
| 338 | |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 339 | static struct policy_dbs_info *alloc_policy_dbs_info(struct cpufreq_policy *policy, |
| 340 | struct dbs_governor *gov) |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 341 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 342 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 343 | int j; |
| 344 | |
Rafael J. Wysocki | 7d5a995 | 2016-02-18 18:40:14 +0100 | [diff] [blame] | 345 | /* Allocate memory for per-policy governor data. */ |
| 346 | policy_dbs = gov->alloc(); |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 347 | if (!policy_dbs) |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 348 | return NULL; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 349 | |
Viresh Kumar | 581c214 | 2016-02-11 17:31:14 +0530 | [diff] [blame] | 350 | policy_dbs->policy = policy; |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 351 | mutex_init(&policy_dbs->timer_mutex); |
Rafael J. Wysocki | 686cc63 | 2016-02-08 23:41:10 +0100 | [diff] [blame] | 352 | atomic_set(&policy_dbs->work_count, 0); |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 353 | init_irq_work(&policy_dbs->irq_work, dbs_irq_work); |
| 354 | INIT_WORK(&policy_dbs->work, dbs_work_handler); |
Rafael J. Wysocki | cea6a9e | 2016-02-07 16:25:02 +0100 | [diff] [blame] | 355 | |
| 356 | /* Set policy_dbs for all CPUs, online+offline */ |
| 357 | for_each_cpu(j, policy->related_cpus) { |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 358 | struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j); |
Rafael J. Wysocki | cea6a9e | 2016-02-07 16:25:02 +0100 | [diff] [blame] | 359 | |
| 360 | j_cdbs->policy_dbs = policy_dbs; |
Rafael J. Wysocki | cea6a9e | 2016-02-07 16:25:02 +0100 | [diff] [blame] | 361 | } |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 362 | return policy_dbs; |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 363 | } |
| 364 | |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 365 | static void free_policy_dbs_info(struct policy_dbs_info *policy_dbs, |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 366 | struct dbs_governor *gov) |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 367 | { |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 368 | int j; |
| 369 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 370 | mutex_destroy(&policy_dbs->timer_mutex); |
Viresh Kumar | 5e4500d | 2015-12-03 09:37:52 +0530 | [diff] [blame] | 371 | |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 372 | for_each_cpu(j, policy_dbs->policy->related_cpus) { |
| 373 | struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j); |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 374 | |
Rafael J. Wysocki | cea6a9e | 2016-02-07 16:25:02 +0100 | [diff] [blame] | 375 | j_cdbs->policy_dbs = NULL; |
| 376 | j_cdbs->update_util.func = NULL; |
| 377 | } |
Rafael J. Wysocki | 7d5a995 | 2016-02-18 18:40:14 +0100 | [diff] [blame] | 378 | gov->free(policy_dbs); |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 379 | } |
| 380 | |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 381 | int cpufreq_dbs_governor_init(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 382 | { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 383 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | 1112e9d | 2016-02-21 00:53:06 +0100 | [diff] [blame] | 384 | struct dbs_data *dbs_data; |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 385 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 386 | unsigned int latency; |
Rafael J. Wysocki | 1112e9d | 2016-02-21 00:53:06 +0100 | [diff] [blame] | 387 | int ret = 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 388 | |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 389 | /* State should be equivalent to EXIT */ |
| 390 | if (policy->governor_data) |
| 391 | return -EBUSY; |
| 392 | |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 393 | policy_dbs = alloc_policy_dbs_info(policy, gov); |
| 394 | if (!policy_dbs) |
| 395 | return -ENOMEM; |
| 396 | |
Rafael J. Wysocki | 1112e9d | 2016-02-21 00:53:06 +0100 | [diff] [blame] | 397 | /* Protect gov->gdbs_data against concurrent updates. */ |
| 398 | mutex_lock(&gov_dbs_data_mutex); |
| 399 | |
| 400 | dbs_data = gov->gdbs_data; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 401 | if (dbs_data) { |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 402 | if (WARN_ON(have_governor_per_policy())) { |
| 403 | ret = -EINVAL; |
| 404 | goto free_policy_dbs_info; |
| 405 | } |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 406 | policy_dbs->dbs_data = dbs_data; |
| 407 | policy->governor_data = policy_dbs; |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 408 | |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 409 | gov_attr_set_get(&dbs_data->attr_set, &policy_dbs->list); |
Rafael J. Wysocki | 1112e9d | 2016-02-21 00:53:06 +0100 | [diff] [blame] | 410 | goto out; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | dbs_data = kzalloc(sizeof(*dbs_data), GFP_KERNEL); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 414 | if (!dbs_data) { |
| 415 | ret = -ENOMEM; |
| 416 | goto free_policy_dbs_info; |
| 417 | } |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 418 | |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 419 | gov_attr_set_init(&dbs_data->attr_set, &policy_dbs->list); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 420 | |
Rafael J. Wysocki | 9a15fb2 | 2016-05-18 22:59:49 +0200 | [diff] [blame] | 421 | ret = gov->init(dbs_data); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 422 | if (ret) |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 423 | goto free_policy_dbs_info; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 424 | |
| 425 | /* policy latency is in ns. Convert it to us first */ |
| 426 | latency = policy->cpuinfo.transition_latency / 1000; |
| 427 | if (latency == 0) |
| 428 | latency = 1; |
| 429 | |
| 430 | /* Bring kernel and HW constraints together */ |
| 431 | dbs_data->min_sampling_rate = max(dbs_data->min_sampling_rate, |
| 432 | MIN_LATENCY_MULTIPLIER * latency); |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 433 | dbs_data->sampling_rate = max(dbs_data->min_sampling_rate, |
| 434 | LATENCY_MULTIPLIER * latency); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 435 | |
Viresh Kumar | 8eec102 | 2015-10-15 21:35:22 +0530 | [diff] [blame] | 436 | if (!have_governor_per_policy()) |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 437 | gov->gdbs_data = dbs_data; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 438 | |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 439 | policy_dbs->dbs_data = dbs_data; |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 440 | policy->governor_data = policy_dbs; |
Viresh Kumar | e4b133c | 2016-01-25 22:33:46 +0530 | [diff] [blame] | 441 | |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 442 | gov->kobj_type.sysfs_ops = &governor_sysfs_ops; |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 443 | ret = kobject_init_and_add(&dbs_data->attr_set.kobj, &gov->kobj_type, |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 444 | get_governor_parent_kobj(policy), |
| 445 | "%s", gov->gov.name); |
Rafael J. Wysocki | fafd5e8 | 2016-02-08 23:57:22 +0100 | [diff] [blame] | 446 | if (!ret) |
Rafael J. Wysocki | 1112e9d | 2016-02-21 00:53:06 +0100 | [diff] [blame] | 447 | goto out; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 448 | |
Rafael J. Wysocki | fafd5e8 | 2016-02-08 23:57:22 +0100 | [diff] [blame] | 449 | /* Failure, so roll back. */ |
Viresh Kumar | 666f4cc | 2016-05-18 17:55:27 +0530 | [diff] [blame] | 450 | pr_err("initialization failed (dbs_data kobject init error %d)\n", ret); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 451 | |
Viresh Kumar | e4b133c | 2016-01-25 22:33:46 +0530 | [diff] [blame] | 452 | policy->governor_data = NULL; |
| 453 | |
Viresh Kumar | 8eec102 | 2015-10-15 21:35:22 +0530 | [diff] [blame] | 454 | if (!have_governor_per_policy()) |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 455 | gov->gdbs_data = NULL; |
Rafael J. Wysocki | 9a15fb2 | 2016-05-18 22:59:49 +0200 | [diff] [blame] | 456 | gov->exit(dbs_data); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 457 | kfree(dbs_data); |
| 458 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 459 | free_policy_dbs_info: |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 460 | free_policy_dbs_info(policy_dbs, gov); |
Rafael J. Wysocki | 1112e9d | 2016-02-21 00:53:06 +0100 | [diff] [blame] | 461 | |
| 462 | out: |
| 463 | mutex_unlock(&gov_dbs_data_mutex); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 464 | return ret; |
| 465 | } |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 466 | EXPORT_SYMBOL_GPL(cpufreq_dbs_governor_init); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 467 | |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 468 | void cpufreq_dbs_governor_exit(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 469 | { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 470 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 471 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 472 | struct dbs_data *dbs_data = policy_dbs->dbs_data; |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 473 | unsigned int count; |
Viresh Kumar | a72c495 | 2015-07-18 11:31:01 +0530 | [diff] [blame] | 474 | |
Rafael J. Wysocki | 1112e9d | 2016-02-21 00:53:06 +0100 | [diff] [blame] | 475 | /* Protect gov->gdbs_data against concurrent updates. */ |
| 476 | mutex_lock(&gov_dbs_data_mutex); |
| 477 | |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 478 | count = gov_attr_set_put(&dbs_data->attr_set, &policy_dbs->list); |
| 479 | |
| 480 | policy->governor_data = NULL; |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 481 | |
| 482 | if (!count) { |
Viresh Kumar | 8eec102 | 2015-10-15 21:35:22 +0530 | [diff] [blame] | 483 | if (!have_governor_per_policy()) |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 484 | gov->gdbs_data = NULL; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 485 | |
Rafael J. Wysocki | 9a15fb2 | 2016-05-18 22:59:49 +0200 | [diff] [blame] | 486 | gov->exit(dbs_data); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 487 | kfree(dbs_data); |
| 488 | } |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 489 | |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 490 | free_policy_dbs_info(policy_dbs, gov); |
Rafael J. Wysocki | 1112e9d | 2016-02-21 00:53:06 +0100 | [diff] [blame] | 491 | |
| 492 | mutex_unlock(&gov_dbs_data_mutex); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 493 | } |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 494 | EXPORT_SYMBOL_GPL(cpufreq_dbs_governor_exit); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 495 | |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 496 | int cpufreq_dbs_governor_start(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 497 | { |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 498 | struct dbs_governor *gov = dbs_governor_of(policy); |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 499 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 500 | struct dbs_data *dbs_data = policy_dbs->dbs_data; |
Rafael J. Wysocki | 702c9e5 | 2016-02-18 02:21:21 +0100 | [diff] [blame] | 501 | unsigned int sampling_rate, ignore_nice, j; |
Rafael J. Wysocki | 8847e03 | 2016-02-18 02:20:13 +0100 | [diff] [blame] | 502 | unsigned int io_busy; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 503 | |
| 504 | if (!policy->cur) |
| 505 | return -EINVAL; |
| 506 | |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 507 | policy_dbs->is_shared = policy_is_shared(policy); |
Rafael J. Wysocki | 57dc3bc | 2016-02-15 02:20:51 +0100 | [diff] [blame] | 508 | policy_dbs->rate_mult = 1; |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 509 | |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 510 | sampling_rate = dbs_data->sampling_rate; |
| 511 | ignore_nice = dbs_data->ignore_nice_load; |
Rafael J. Wysocki | 8847e03 | 2016-02-18 02:20:13 +0100 | [diff] [blame] | 512 | io_busy = dbs_data->io_is_busy; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 513 | |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 514 | for_each_cpu(j, policy->cpus) { |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 515 | struct cpu_dbs_info *j_cdbs = &per_cpu(cpu_dbs, j); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 516 | |
Rafael J. Wysocki | b4f4b4b | 2016-04-28 01:19:03 +0200 | [diff] [blame] | 517 | j_cdbs->prev_cpu_idle = get_cpu_idle_time(j, &j_cdbs->prev_update_time, io_busy); |
Rafael J. Wysocki | ba1ca65 | 2016-04-25 16:21:34 +0200 | [diff] [blame] | 518 | /* |
| 519 | * Make the first invocation of dbs_update() compute the load. |
| 520 | */ |
| 521 | j_cdbs->prev_load = 0; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 522 | |
| 523 | if (ignore_nice) |
| 524 | j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 525 | } |
| 526 | |
Rafael J. Wysocki | 702c9e5 | 2016-02-18 02:21:21 +0100 | [diff] [blame] | 527 | gov->start(policy); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 528 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 529 | gov_set_update_util(policy_dbs, sampling_rate); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 530 | return 0; |
| 531 | } |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 532 | EXPORT_SYMBOL_GPL(cpufreq_dbs_governor_start); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 533 | |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 534 | void cpufreq_dbs_governor_stop(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 535 | { |
Rafael J. Wysocki | f6709b8 | 2016-06-09 01:45:32 +0200 | [diff] [blame] | 536 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
| 537 | |
| 538 | gov_clear_update_util(policy_dbs->policy); |
| 539 | irq_work_sync(&policy_dbs->irq_work); |
| 540 | cancel_work_sync(&policy_dbs->work); |
| 541 | atomic_set(&policy_dbs->work_count, 0); |
| 542 | policy_dbs->work_in_progress = false; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 543 | } |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 544 | EXPORT_SYMBOL_GPL(cpufreq_dbs_governor_stop); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 545 | |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 546 | void cpufreq_dbs_governor_limits(struct cpufreq_policy *policy) |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 547 | { |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 548 | struct policy_dbs_info *policy_dbs = policy->governor_data; |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 549 | |
Rafael J. Wysocki | e975189 | 2016-02-07 16:23:49 +0100 | [diff] [blame] | 550 | mutex_lock(&policy_dbs->timer_mutex); |
Viresh Kumar | bf2be2d | 2016-05-18 17:55:31 +0530 | [diff] [blame] | 551 | cpufreq_policy_apply_limits(policy); |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame] | 552 | gov_update_sample_delay(policy_dbs, 0); |
| 553 | |
Rafael J. Wysocki | e975189 | 2016-02-07 16:23:49 +0100 | [diff] [blame] | 554 | mutex_unlock(&policy_dbs->timer_mutex); |
Viresh Kumar | 714a2d9 | 2015-06-04 16:43:27 +0530 | [diff] [blame] | 555 | } |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 556 | EXPORT_SYMBOL_GPL(cpufreq_dbs_governor_limits); |