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