Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1 | /* |
| 2 | * menu.c - the menu idle governor |
| 3 | * |
| 4 | * Copyright (C) 2006-2007 Adam Belay <abelay@novell.com> |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 5 | * Copyright (C) 2009 Intel Corporation |
| 6 | * Author: |
| 7 | * Arjan van de Ven <arjan@linux.intel.com> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 8 | * |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 9 | * This code is licenced under the GPL version 2 as described |
| 10 | * in the COPYING file that acompanies the Linux Kernel. |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/cpuidle.h> |
Jean Pihet | e8db0be | 2011-08-25 15:35:03 +0200 | [diff] [blame] | 15 | #include <linux/pm_qos.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 16 | #include <linux/time.h> |
| 17 | #include <linux/ktime.h> |
| 18 | #include <linux/hrtimer.h> |
| 19 | #include <linux/tick.h> |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 20 | #include <linux/sched.h> |
Stephen Hemminger | 5787536 | 2010-01-08 14:43:08 -0800 | [diff] [blame] | 21 | #include <linux/math64.h> |
Paul Gortmaker | 884b17e | 2011-08-29 17:52:39 -0400 | [diff] [blame] | 22 | #include <linux/module.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 23 | |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 24 | #define BUCKETS 12 |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 25 | #define INTERVALS 8 |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 26 | #define RESOLUTION 1024 |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 27 | #define DECAY 8 |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 28 | #define MAX_INTERESTING 50000 |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 29 | #define STDDEV_THRESH 400 |
| 30 | |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 31 | |
| 32 | /* |
| 33 | * Concepts and ideas behind the menu governor |
| 34 | * |
| 35 | * For the menu governor, there are 3 decision factors for picking a C |
| 36 | * state: |
| 37 | * 1) Energy break even point |
| 38 | * 2) Performance impact |
| 39 | * 3) Latency tolerance (from pmqos infrastructure) |
| 40 | * These these three factors are treated independently. |
| 41 | * |
| 42 | * Energy break even point |
| 43 | * ----------------------- |
| 44 | * C state entry and exit have an energy cost, and a certain amount of time in |
| 45 | * the C state is required to actually break even on this cost. CPUIDLE |
| 46 | * provides us this duration in the "target_residency" field. So all that we |
| 47 | * need is a good prediction of how long we'll be idle. Like the traditional |
| 48 | * menu governor, we start with the actual known "next timer event" time. |
| 49 | * |
| 50 | * Since there are other source of wakeups (interrupts for example) than |
| 51 | * the next timer event, this estimation is rather optimistic. To get a |
| 52 | * more realistic estimate, a correction factor is applied to the estimate, |
| 53 | * that is based on historic behavior. For example, if in the past the actual |
| 54 | * duration always was 50% of the next timer tick, the correction factor will |
| 55 | * be 0.5. |
| 56 | * |
| 57 | * menu uses a running average for this correction factor, however it uses a |
| 58 | * set of factors, not just a single factor. This stems from the realization |
| 59 | * that the ratio is dependent on the order of magnitude of the expected |
| 60 | * duration; if we expect 500 milliseconds of idle time the likelihood of |
| 61 | * getting an interrupt very early is much higher than if we expect 50 micro |
| 62 | * seconds of idle time. A second independent factor that has big impact on |
| 63 | * the actual factor is if there is (disk) IO outstanding or not. |
| 64 | * (as a special twist, we consider every sleep longer than 50 milliseconds |
| 65 | * as perfect; there are no power gains for sleeping longer than this) |
| 66 | * |
| 67 | * For these two reasons we keep an array of 12 independent factors, that gets |
| 68 | * indexed based on the magnitude of the expected duration as well as the |
| 69 | * "is IO outstanding" property. |
| 70 | * |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 71 | * Repeatable-interval-detector |
| 72 | * ---------------------------- |
| 73 | * There are some cases where "next timer" is a completely unusable predictor: |
| 74 | * Those cases where the interval is fixed, for example due to hardware |
| 75 | * interrupt mitigation, but also due to fixed transfer rate devices such as |
| 76 | * mice. |
| 77 | * For this, we use a different predictor: We track the duration of the last 8 |
| 78 | * intervals and if the stand deviation of these 8 intervals is below a |
| 79 | * threshold value, we use the average of these intervals as prediction. |
| 80 | * |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 81 | * Limiting Performance Impact |
| 82 | * --------------------------- |
| 83 | * C states, especially those with large exit latencies, can have a real |
Lucas De Marchi | 20e3341 | 2010-09-07 12:53:49 -0400 | [diff] [blame] | 84 | * noticeable impact on workloads, which is not acceptable for most sysadmins, |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 85 | * and in addition, less performance has a power price of its own. |
| 86 | * |
| 87 | * As a general rule of thumb, menu assumes that the following heuristic |
| 88 | * holds: |
| 89 | * The busier the system, the less impact of C states is acceptable |
| 90 | * |
| 91 | * This rule-of-thumb is implemented using a performance-multiplier: |
| 92 | * If the exit latency times the performance multiplier is longer than |
| 93 | * the predicted duration, the C state is not considered a candidate |
| 94 | * for selection due to a too high performance impact. So the higher |
| 95 | * this multiplier is, the longer we need to be idle to pick a deep C |
| 96 | * state, and thus the less likely a busy CPU will hit such a deep |
| 97 | * C state. |
| 98 | * |
| 99 | * Two factors are used in determing this multiplier: |
| 100 | * a value of 10 is added for each point of "per cpu load average" we have. |
| 101 | * a value of 5 points is added for each process that is waiting for |
| 102 | * IO on this CPU. |
| 103 | * (these values are experimentally determined) |
| 104 | * |
| 105 | * The load average factor gives a longer term (few seconds) input to the |
| 106 | * decision, while the iowait value gives a cpu local instantanious input. |
| 107 | * The iowait factor may look low, but realize that this is also already |
| 108 | * represented in the system load average. |
| 109 | * |
| 110 | */ |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 111 | |
| 112 | struct menu_device { |
| 113 | int last_state_idx; |
Corrado Zoccolo | 672917d | 2009-09-21 17:04:09 -0700 | [diff] [blame] | 114 | int needs_update; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 115 | |
| 116 | unsigned int expected_us; |
Richard Kennedy | 56e6943b4 | 2010-03-05 13:42:30 -0800 | [diff] [blame] | 117 | u64 predicted_us; |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 118 | unsigned int exit_us; |
| 119 | unsigned int bucket; |
| 120 | u64 correction_factor[BUCKETS]; |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 121 | u32 intervals[INTERVALS]; |
| 122 | int interval_ptr; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 123 | }; |
| 124 | |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 125 | |
| 126 | #define LOAD_INT(x) ((x) >> FSHIFT) |
| 127 | #define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100) |
| 128 | |
| 129 | static int get_loadavg(void) |
| 130 | { |
| 131 | unsigned long this = this_cpu_load(); |
| 132 | |
| 133 | |
| 134 | return LOAD_INT(this) * 10 + LOAD_FRAC(this) / 10; |
| 135 | } |
| 136 | |
| 137 | static inline int which_bucket(unsigned int duration) |
| 138 | { |
| 139 | int bucket = 0; |
| 140 | |
| 141 | /* |
| 142 | * We keep two groups of stats; one with no |
| 143 | * IO pending, one without. |
| 144 | * This allows us to calculate |
| 145 | * E(duration)|iowait |
| 146 | */ |
Peter Zijlstra | 8c215bd | 2010-07-01 09:07:17 +0200 | [diff] [blame] | 147 | if (nr_iowait_cpu(smp_processor_id())) |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 148 | bucket = BUCKETS/2; |
| 149 | |
| 150 | if (duration < 10) |
| 151 | return bucket; |
| 152 | if (duration < 100) |
| 153 | return bucket + 1; |
| 154 | if (duration < 1000) |
| 155 | return bucket + 2; |
| 156 | if (duration < 10000) |
| 157 | return bucket + 3; |
| 158 | if (duration < 100000) |
| 159 | return bucket + 4; |
| 160 | return bucket + 5; |
| 161 | } |
| 162 | |
| 163 | /* |
| 164 | * Return a multiplier for the exit latency that is intended |
| 165 | * to take performance requirements into account. |
| 166 | * The more performance critical we estimate the system |
| 167 | * to be, the higher this multiplier, and thus the higher |
| 168 | * the barrier to go to an expensive C state. |
| 169 | */ |
| 170 | static inline int performance_multiplier(void) |
| 171 | { |
| 172 | int mult = 1; |
| 173 | |
| 174 | /* for higher loadavg, we are more reluctant */ |
| 175 | |
| 176 | mult += 2 * get_loadavg(); |
| 177 | |
| 178 | /* for IO wait tasks (per cpu!) we add 5x each */ |
Peter Zijlstra | 8c215bd | 2010-07-01 09:07:17 +0200 | [diff] [blame] | 179 | mult += 10 * nr_iowait_cpu(smp_processor_id()); |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 180 | |
| 181 | return mult; |
| 182 | } |
| 183 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 184 | static DEFINE_PER_CPU(struct menu_device, menu_devices); |
| 185 | |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 186 | static void menu_update(struct cpuidle_driver *drv, struct cpuidle_device *dev); |
Corrado Zoccolo | 672917d | 2009-09-21 17:04:09 -0700 | [diff] [blame] | 187 | |
Stephen Hemminger | 5787536 | 2010-01-08 14:43:08 -0800 | [diff] [blame] | 188 | /* This implements DIV_ROUND_CLOSEST but avoids 64 bit division */ |
| 189 | static u64 div_round64(u64 dividend, u32 divisor) |
| 190 | { |
| 191 | return div_u64(dividend + (divisor / 2), divisor); |
| 192 | } |
| 193 | |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 194 | /* |
| 195 | * Try detecting repeating patterns by keeping track of the last 8 |
| 196 | * intervals, and checking if the standard deviation of that set |
| 197 | * of points is below a threshold. If it is... then use the |
| 198 | * average of these 8 points as the estimated value. |
| 199 | */ |
Rafael J. Wysocki | 1485191 | 2013-07-27 01:41:34 +0200 | [diff] [blame] | 200 | static void get_typical_interval(struct menu_device *data) |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 201 | { |
Tuukka Tikkanen | 4cd46bc | 2013-08-14 19:02:37 +0300 | [diff] [blame^] | 202 | int i, divisor; |
| 203 | uint64_t max, avg, stddev; |
Youquan Song | c96ca4f | 2012-10-26 12:27:07 +0200 | [diff] [blame] | 204 | int64_t thresh = LLONG_MAX; /* Discard outliers above this value. */ |
Youquan Song | c96ca4f | 2012-10-26 12:27:07 +0200 | [diff] [blame] | 205 | |
| 206 | again: |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 207 | |
| 208 | /* first calculate average and standard deviation of the past */ |
Tuukka Tikkanen | 4cd46bc | 2013-08-14 19:02:37 +0300 | [diff] [blame^] | 209 | max = 0; |
| 210 | avg = 0; |
| 211 | divisor = 0; |
| 212 | stddev = 0; |
Youquan Song | c96ca4f | 2012-10-26 12:27:07 +0200 | [diff] [blame] | 213 | for (i = 0; i < INTERVALS; i++) { |
| 214 | int64_t value = data->intervals[i]; |
| 215 | if (value <= thresh) { |
| 216 | avg += value; |
| 217 | divisor++; |
| 218 | if (value > max) |
| 219 | max = value; |
| 220 | } |
| 221 | } |
| 222 | do_div(avg, divisor); |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 223 | |
Youquan Song | c96ca4f | 2012-10-26 12:27:07 +0200 | [diff] [blame] | 224 | for (i = 0; i < INTERVALS; i++) { |
| 225 | int64_t value = data->intervals[i]; |
| 226 | if (value <= thresh) { |
| 227 | int64_t diff = value - avg; |
| 228 | stddev += diff * diff; |
| 229 | } |
| 230 | } |
| 231 | do_div(stddev, divisor); |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 232 | /* |
Youquan Song | c96ca4f | 2012-10-26 12:27:07 +0200 | [diff] [blame] | 233 | * The typical interval is obtained when standard deviation is small |
| 234 | * or standard deviation is small compared to the average interval. |
Tuukka Tikkanen | 330647a | 2013-08-14 19:02:34 +0300 | [diff] [blame] | 235 | * |
Tuukka Tikkanen | 0d6a7ff | 2013-08-14 19:02:36 +0300 | [diff] [blame] | 236 | * int_sqrt() formal parameter type is unsigned long. When the |
| 237 | * greatest difference to an outlier exceeds ~65 ms * sqrt(divisor) |
| 238 | * the resulting squared standard deviation exceeds the input domain |
| 239 | * of int_sqrt on platforms where unsigned long is 32 bits in size. |
| 240 | * In such case reject the candidate average. |
| 241 | * |
Tuukka Tikkanen | 330647a | 2013-08-14 19:02:34 +0300 | [diff] [blame] | 242 | * Use this result only if there is no timer to wake us up sooner. |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 243 | */ |
Tuukka Tikkanen | 0d6a7ff | 2013-08-14 19:02:36 +0300 | [diff] [blame] | 244 | if (likely(stddev <= ULONG_MAX)) { |
| 245 | stddev = int_sqrt(stddev); |
| 246 | if (((avg > stddev * 6) && (divisor * 4 >= INTERVALS * 3)) |
Youquan Song | c96ca4f | 2012-10-26 12:27:07 +0200 | [diff] [blame] | 247 | || stddev <= 20) { |
Tuukka Tikkanen | 0d6a7ff | 2013-08-14 19:02:36 +0300 | [diff] [blame] | 248 | if (data->expected_us > avg) |
| 249 | data->predicted_us = avg; |
| 250 | return; |
| 251 | } |
Youquan Song | 69a37be | 2012-10-26 12:26:41 +0200 | [diff] [blame] | 252 | } |
Tuukka Tikkanen | 017099e | 2013-08-14 19:02:35 +0300 | [diff] [blame] | 253 | |
| 254 | /* |
| 255 | * If we have outliers to the upside in our distribution, discard |
| 256 | * those by setting the threshold to exclude these outliers, then |
| 257 | * calculate the average and standard deviation again. Once we get |
| 258 | * down to the bottom 3/4 of our samples, stop excluding samples. |
| 259 | * |
| 260 | * This can deal with workloads that have long pauses interspersed |
| 261 | * with sporadic activity with a bunch of short pauses. |
| 262 | */ |
| 263 | if ((divisor * 4) <= INTERVALS * 3) |
| 264 | return; |
| 265 | |
| 266 | thresh = max - 1; |
| 267 | goto again; |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 270 | /** |
| 271 | * menu_select - selects the next idle state to enter |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 272 | * @drv: cpuidle driver containing state data |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 273 | * @dev: the CPU |
| 274 | */ |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 275 | static int menu_select(struct cpuidle_driver *drv, struct cpuidle_device *dev) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 276 | { |
| 277 | struct menu_device *data = &__get_cpu_var(menu_devices); |
Mark Gross | ed77134 | 2010-05-06 01:59:26 +0200 | [diff] [blame] | 278 | int latency_req = pm_qos_request(PM_QOS_CPU_DMA_LATENCY); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 279 | int i; |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 280 | int multiplier; |
Tero Kristo | 7467571 | 2011-02-24 17:19:23 +0200 | [diff] [blame] | 281 | struct timespec t; |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 282 | |
Corrado Zoccolo | 672917d | 2009-09-21 17:04:09 -0700 | [diff] [blame] | 283 | if (data->needs_update) { |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 284 | menu_update(drv, dev); |
Corrado Zoccolo | 672917d | 2009-09-21 17:04:09 -0700 | [diff] [blame] | 285 | data->needs_update = 0; |
| 286 | } |
| 287 | |
Arjan van de Ven | 1c6fe03 | 2010-05-08 15:47:37 -0700 | [diff] [blame] | 288 | data->last_state_idx = 0; |
| 289 | data->exit_us = 0; |
| 290 | |
venkatesh.pallipadi@intel.com | a2bd9202 | 2008-07-30 19:21:42 -0700 | [diff] [blame] | 291 | /* Special case when user has set very strict latency requirement */ |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 292 | if (unlikely(latency_req == 0)) |
venkatesh.pallipadi@intel.com | a2bd9202 | 2008-07-30 19:21:42 -0700 | [diff] [blame] | 293 | return 0; |
venkatesh.pallipadi@intel.com | a2bd9202 | 2008-07-30 19:21:42 -0700 | [diff] [blame] | 294 | |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 295 | /* determine the expected residency time, round up */ |
Tero Kristo | 7467571 | 2011-02-24 17:19:23 +0200 | [diff] [blame] | 296 | t = ktime_to_timespec(tick_nohz_get_sleep_length()); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 297 | data->expected_us = |
Tero Kristo | 7467571 | 2011-02-24 17:19:23 +0200 | [diff] [blame] | 298 | t.tv_sec * USEC_PER_SEC + t.tv_nsec / NSEC_PER_USEC; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 299 | |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 300 | |
| 301 | data->bucket = which_bucket(data->expected_us); |
| 302 | |
| 303 | multiplier = performance_multiplier(); |
| 304 | |
| 305 | /* |
| 306 | * if the correction factor is 0 (eg first time init or cpu hotplug |
| 307 | * etc), we actually want to start out with a unity factor. |
| 308 | */ |
| 309 | if (data->correction_factor[data->bucket] == 0) |
| 310 | data->correction_factor[data->bucket] = RESOLUTION * DECAY; |
| 311 | |
| 312 | /* Make sure to round up for half microseconds */ |
Stephen Hemminger | 5787536 | 2010-01-08 14:43:08 -0800 | [diff] [blame] | 313 | data->predicted_us = div_round64(data->expected_us * data->correction_factor[data->bucket], |
| 314 | RESOLUTION * DECAY); |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 315 | |
Rafael J. Wysocki | 1485191 | 2013-07-27 01:41:34 +0200 | [diff] [blame] | 316 | get_typical_interval(data); |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 317 | |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 318 | /* |
| 319 | * We want to default to C1 (hlt), not to busy polling |
| 320 | * unless the timer is happening really really soon. |
| 321 | */ |
ShuoX Liu | 3a53396b | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 322 | if (data->expected_us > 5 && |
Rafael J. Wysocki | cbc9ef0 | 2012-07-03 19:07:42 +0200 | [diff] [blame] | 323 | !drv->states[CPUIDLE_DRIVER_STATE_START].disabled && |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 324 | dev->states_usage[CPUIDLE_DRIVER_STATE_START].disable == 0) |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 325 | data->last_state_idx = CPUIDLE_DRIVER_STATE_START; |
| 326 | |
Ai Li | 71abbbf | 2010-08-09 17:20:13 -0700 | [diff] [blame] | 327 | /* |
| 328 | * Find the idle state with the lowest power while satisfying |
| 329 | * our constraints. |
| 330 | */ |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 331 | for (i = CPUIDLE_DRIVER_STATE_START; i < drv->state_count; i++) { |
| 332 | struct cpuidle_state *s = &drv->states[i]; |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 333 | struct cpuidle_state_usage *su = &dev->states_usage[i]; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 334 | |
Rafael J. Wysocki | cbc9ef0 | 2012-07-03 19:07:42 +0200 | [diff] [blame] | 335 | if (s->disabled || su->disable) |
ShuoX Liu | 3a53396b | 2012-03-28 15:19:11 -0700 | [diff] [blame] | 336 | continue; |
Rafael J. Wysocki | 1485191 | 2013-07-27 01:41:34 +0200 | [diff] [blame] | 337 | if (s->target_residency > data->predicted_us) |
Ai Li | 71abbbf | 2010-08-09 17:20:13 -0700 | [diff] [blame] | 338 | continue; |
venkatesh.pallipadi@intel.com | a2bd9202 | 2008-07-30 19:21:42 -0700 | [diff] [blame] | 339 | if (s->exit_latency > latency_req) |
Ai Li | 71abbbf | 2010-08-09 17:20:13 -0700 | [diff] [blame] | 340 | continue; |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 341 | if (s->exit_latency * multiplier > data->predicted_us) |
Ai Li | 71abbbf | 2010-08-09 17:20:13 -0700 | [diff] [blame] | 342 | continue; |
| 343 | |
Daniel Lezcano | 8aef33a | 2013-01-15 14:18:04 +0100 | [diff] [blame] | 344 | data->last_state_idx = i; |
| 345 | data->exit_us = s->exit_latency; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 346 | } |
| 347 | |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 348 | return data->last_state_idx; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | /** |
Corrado Zoccolo | 672917d | 2009-09-21 17:04:09 -0700 | [diff] [blame] | 352 | * menu_reflect - records that data structures need update |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 353 | * @dev: the CPU |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 354 | * @index: the index of actual entered state |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 355 | * |
| 356 | * NOTE: it's important to be fast here because this operation will add to |
| 357 | * the overall exit latency. |
| 358 | */ |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 359 | static void menu_reflect(struct cpuidle_device *dev, int index) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 360 | { |
| 361 | struct menu_device *data = &__get_cpu_var(menu_devices); |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 362 | data->last_state_idx = index; |
| 363 | if (index >= 0) |
| 364 | data->needs_update = 1; |
Corrado Zoccolo | 672917d | 2009-09-21 17:04:09 -0700 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | /** |
| 368 | * menu_update - attempts to guess what happened after entry |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 369 | * @drv: cpuidle driver containing state data |
Corrado Zoccolo | 672917d | 2009-09-21 17:04:09 -0700 | [diff] [blame] | 370 | * @dev: the CPU |
| 371 | */ |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 372 | static void menu_update(struct cpuidle_driver *drv, struct cpuidle_device *dev) |
Corrado Zoccolo | 672917d | 2009-09-21 17:04:09 -0700 | [diff] [blame] | 373 | { |
| 374 | struct menu_device *data = &__get_cpu_var(menu_devices); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 375 | int last_idx = data->last_state_idx; |
venkatesh.pallipadi@intel.com | 320eee7 | 2008-07-30 19:21:43 -0700 | [diff] [blame] | 376 | unsigned int last_idle_us = cpuidle_get_last_residency(dev); |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 377 | struct cpuidle_state *target = &drv->states[last_idx]; |
venkatesh.pallipadi@intel.com | 320eee7 | 2008-07-30 19:21:43 -0700 | [diff] [blame] | 378 | unsigned int measured_us; |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 379 | u64 new_factor; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 380 | |
| 381 | /* |
| 382 | * Ugh, this idle state doesn't support residency measurements, so we |
| 383 | * are basically lost in the dark. As a compromise, assume we slept |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 384 | * for the whole expected time. |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 385 | */ |
venkatesh.pallipadi@intel.com | 320eee7 | 2008-07-30 19:21:43 -0700 | [diff] [blame] | 386 | if (unlikely(!(target->flags & CPUIDLE_FLAG_TIME_VALID))) |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 387 | last_idle_us = data->expected_us; |
| 388 | |
| 389 | |
| 390 | measured_us = last_idle_us; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 391 | |
venkatesh.pallipadi@intel.com | 320eee7 | 2008-07-30 19:21:43 -0700 | [diff] [blame] | 392 | /* |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 393 | * We correct for the exit latency; we are assuming here that the |
| 394 | * exit latency happens after the event that we're interested in. |
venkatesh.pallipadi@intel.com | 320eee7 | 2008-07-30 19:21:43 -0700 | [diff] [blame] | 395 | */ |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 396 | if (measured_us > data->exit_us) |
| 397 | measured_us -= data->exit_us; |
| 398 | |
| 399 | |
| 400 | /* update our correction ratio */ |
| 401 | |
| 402 | new_factor = data->correction_factor[data->bucket] |
| 403 | * (DECAY - 1) / DECAY; |
| 404 | |
Arjan van de Ven | 1c6fe03 | 2010-05-08 15:47:37 -0700 | [diff] [blame] | 405 | if (data->expected_us > 0 && measured_us < MAX_INTERESTING) |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 406 | new_factor += RESOLUTION * measured_us / data->expected_us; |
venkatesh.pallipadi@intel.com | 320eee7 | 2008-07-30 19:21:43 -0700 | [diff] [blame] | 407 | else |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 408 | /* |
| 409 | * we were idle so long that we count it as a perfect |
| 410 | * prediction |
| 411 | */ |
| 412 | new_factor += RESOLUTION; |
venkatesh.pallipadi@intel.com | 320eee7 | 2008-07-30 19:21:43 -0700 | [diff] [blame] | 413 | |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 414 | /* |
| 415 | * We don't want 0 as factor; we always want at least |
| 416 | * a tiny bit of estimated time. |
| 417 | */ |
| 418 | if (new_factor == 0) |
| 419 | new_factor = 1; |
venkatesh.pallipadi@intel.com | 320eee7 | 2008-07-30 19:21:43 -0700 | [diff] [blame] | 420 | |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 421 | data->correction_factor[data->bucket] = new_factor; |
Arjan van de Ven | 1f85f87 | 2010-05-24 14:32:59 -0700 | [diff] [blame] | 422 | |
| 423 | /* update the repeating-pattern data */ |
| 424 | data->intervals[data->interval_ptr++] = last_idle_us; |
| 425 | if (data->interval_ptr >= INTERVALS) |
| 426 | data->interval_ptr = 0; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | /** |
| 430 | * menu_enable_device - scans a CPU's states and does setup |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 431 | * @drv: cpuidle driver |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 432 | * @dev: the CPU |
| 433 | */ |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 434 | static int menu_enable_device(struct cpuidle_driver *drv, |
| 435 | struct cpuidle_device *dev) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 436 | { |
| 437 | struct menu_device *data = &per_cpu(menu_devices, dev->cpu); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 438 | |
| 439 | memset(data, 0, sizeof(struct menu_device)); |
| 440 | |
| 441 | return 0; |
| 442 | } |
| 443 | |
| 444 | static struct cpuidle_governor menu_governor = { |
| 445 | .name = "menu", |
| 446 | .rating = 20, |
| 447 | .enable = menu_enable_device, |
| 448 | .select = menu_select, |
| 449 | .reflect = menu_reflect, |
| 450 | .owner = THIS_MODULE, |
| 451 | }; |
| 452 | |
| 453 | /** |
| 454 | * init_menu - initializes the governor |
| 455 | */ |
| 456 | static int __init init_menu(void) |
| 457 | { |
| 458 | return cpuidle_register_governor(&menu_governor); |
| 459 | } |
| 460 | |
Daniel Lezcano | 137b944 | 2013-06-12 15:08:48 +0200 | [diff] [blame] | 461 | postcore_initcall(init_menu); |