blob: b81ad9c731ae3a153b5c9f8fb1f6c8539407c695 [file] [log] [blame]
Len Brown4f86d3a2007-10-03 18:58:00 -04001/*
2 * menu.c - the menu idle governor
3 *
4 * Copyright (C) 2006-2007 Adam Belay <abelay@novell.com>
Arjan van de Ven69d25872009-09-21 17:04:08 -07005 * Copyright (C) 2009 Intel Corporation
6 * Author:
7 * Arjan van de Ven <arjan@linux.intel.com>
Len Brown4f86d3a2007-10-03 18:58:00 -04008 *
Arjan van de Ven69d25872009-09-21 17:04:08 -07009 * This code is licenced under the GPL version 2 as described
10 * in the COPYING file that acompanies the Linux Kernel.
Len Brown4f86d3a2007-10-03 18:58:00 -040011 */
12
13#include <linux/kernel.h>
14#include <linux/cpuidle.h>
Mark Grossd82b3512008-02-04 22:30:08 -080015#include <linux/pm_qos_params.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040016#include <linux/time.h>
17#include <linux/ktime.h>
18#include <linux/hrtimer.h>
19#include <linux/tick.h>
Arjan van de Ven69d25872009-09-21 17:04:08 -070020#include <linux/sched.h>
Stephen Hemminger57875362010-01-08 14:43:08 -080021#include <linux/math64.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040022
Arjan van de Ven69d25872009-09-21 17:04:08 -070023#define BUCKETS 12
24#define RESOLUTION 1024
25#define DECAY 4
26#define MAX_INTERESTING 50000
27
28/*
29 * Concepts and ideas behind the menu governor
30 *
31 * For the menu governor, there are 3 decision factors for picking a C
32 * state:
33 * 1) Energy break even point
34 * 2) Performance impact
35 * 3) Latency tolerance (from pmqos infrastructure)
36 * These these three factors are treated independently.
37 *
38 * Energy break even point
39 * -----------------------
40 * C state entry and exit have an energy cost, and a certain amount of time in
41 * the C state is required to actually break even on this cost. CPUIDLE
42 * provides us this duration in the "target_residency" field. So all that we
43 * need is a good prediction of how long we'll be idle. Like the traditional
44 * menu governor, we start with the actual known "next timer event" time.
45 *
46 * Since there are other source of wakeups (interrupts for example) than
47 * the next timer event, this estimation is rather optimistic. To get a
48 * more realistic estimate, a correction factor is applied to the estimate,
49 * that is based on historic behavior. For example, if in the past the actual
50 * duration always was 50% of the next timer tick, the correction factor will
51 * be 0.5.
52 *
53 * menu uses a running average for this correction factor, however it uses a
54 * set of factors, not just a single factor. This stems from the realization
55 * that the ratio is dependent on the order of magnitude of the expected
56 * duration; if we expect 500 milliseconds of idle time the likelihood of
57 * getting an interrupt very early is much higher than if we expect 50 micro
58 * seconds of idle time. A second independent factor that has big impact on
59 * the actual factor is if there is (disk) IO outstanding or not.
60 * (as a special twist, we consider every sleep longer than 50 milliseconds
61 * as perfect; there are no power gains for sleeping longer than this)
62 *
63 * For these two reasons we keep an array of 12 independent factors, that gets
64 * indexed based on the magnitude of the expected duration as well as the
65 * "is IO outstanding" property.
66 *
67 * Limiting Performance Impact
68 * ---------------------------
69 * C states, especially those with large exit latencies, can have a real
70 * noticable impact on workloads, which is not acceptable for most sysadmins,
71 * and in addition, less performance has a power price of its own.
72 *
73 * As a general rule of thumb, menu assumes that the following heuristic
74 * holds:
75 * The busier the system, the less impact of C states is acceptable
76 *
77 * This rule-of-thumb is implemented using a performance-multiplier:
78 * If the exit latency times the performance multiplier is longer than
79 * the predicted duration, the C state is not considered a candidate
80 * for selection due to a too high performance impact. So the higher
81 * this multiplier is, the longer we need to be idle to pick a deep C
82 * state, and thus the less likely a busy CPU will hit such a deep
83 * C state.
84 *
85 * Two factors are used in determing this multiplier:
86 * a value of 10 is added for each point of "per cpu load average" we have.
87 * a value of 5 points is added for each process that is waiting for
88 * IO on this CPU.
89 * (these values are experimentally determined)
90 *
91 * The load average factor gives a longer term (few seconds) input to the
92 * decision, while the iowait value gives a cpu local instantanious input.
93 * The iowait factor may look low, but realize that this is also already
94 * represented in the system load average.
95 *
96 */
Len Brown4f86d3a2007-10-03 18:58:00 -040097
98struct menu_device {
99 int last_state_idx;
Corrado Zoccolo672917d2009-09-21 17:04:09 -0700100 int needs_update;
Len Brown4f86d3a2007-10-03 18:58:00 -0400101
102 unsigned int expected_us;
Richard Kennedy56e6943b42010-03-05 13:42:30 -0800103 u64 predicted_us;
Arjan van de Ven69d25872009-09-21 17:04:08 -0700104 unsigned int exit_us;
105 unsigned int bucket;
106 u64 correction_factor[BUCKETS];
Len Brown4f86d3a2007-10-03 18:58:00 -0400107};
108
Arjan van de Ven69d25872009-09-21 17:04:08 -0700109
110#define LOAD_INT(x) ((x) >> FSHIFT)
111#define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)
112
113static int get_loadavg(void)
114{
115 unsigned long this = this_cpu_load();
116
117
118 return LOAD_INT(this) * 10 + LOAD_FRAC(this) / 10;
119}
120
121static inline int which_bucket(unsigned int duration)
122{
123 int bucket = 0;
124
125 /*
126 * We keep two groups of stats; one with no
127 * IO pending, one without.
128 * This allows us to calculate
129 * E(duration)|iowait
130 */
131 if (nr_iowait_cpu())
132 bucket = BUCKETS/2;
133
134 if (duration < 10)
135 return bucket;
136 if (duration < 100)
137 return bucket + 1;
138 if (duration < 1000)
139 return bucket + 2;
140 if (duration < 10000)
141 return bucket + 3;
142 if (duration < 100000)
143 return bucket + 4;
144 return bucket + 5;
145}
146
147/*
148 * Return a multiplier for the exit latency that is intended
149 * to take performance requirements into account.
150 * The more performance critical we estimate the system
151 * to be, the higher this multiplier, and thus the higher
152 * the barrier to go to an expensive C state.
153 */
154static inline int performance_multiplier(void)
155{
156 int mult = 1;
157
158 /* for higher loadavg, we are more reluctant */
159
160 mult += 2 * get_loadavg();
161
162 /* for IO wait tasks (per cpu!) we add 5x each */
163 mult += 10 * nr_iowait_cpu();
164
165 return mult;
166}
167
Len Brown4f86d3a2007-10-03 18:58:00 -0400168static DEFINE_PER_CPU(struct menu_device, menu_devices);
169
Corrado Zoccolo672917d2009-09-21 17:04:09 -0700170static void menu_update(struct cpuidle_device *dev);
171
Stephen Hemminger57875362010-01-08 14:43:08 -0800172/* This implements DIV_ROUND_CLOSEST but avoids 64 bit division */
173static u64 div_round64(u64 dividend, u32 divisor)
174{
175 return div_u64(dividend + (divisor / 2), divisor);
176}
177
Len Brown4f86d3a2007-10-03 18:58:00 -0400178/**
179 * menu_select - selects the next idle state to enter
180 * @dev: the CPU
181 */
182static int menu_select(struct cpuidle_device *dev)
183{
184 struct menu_device *data = &__get_cpu_var(menu_devices);
Mark Grossed771342010-05-06 01:59:26 +0200185 int latency_req = pm_qos_request(PM_QOS_CPU_DMA_LATENCY);
Len Brown4f86d3a2007-10-03 18:58:00 -0400186 int i;
Arjan van de Ven69d25872009-09-21 17:04:08 -0700187 int multiplier;
188
Corrado Zoccolo672917d2009-09-21 17:04:09 -0700189 if (data->needs_update) {
190 menu_update(dev);
191 data->needs_update = 0;
192 }
193
Arjan van de Ven1c6fe032010-05-08 15:47:37 -0700194 data->last_state_idx = 0;
195 data->exit_us = 0;
196
venkatesh.pallipadi@intel.coma2bd92022008-07-30 19:21:42 -0700197 /* Special case when user has set very strict latency requirement */
Arjan van de Ven69d25872009-09-21 17:04:08 -0700198 if (unlikely(latency_req == 0))
venkatesh.pallipadi@intel.coma2bd92022008-07-30 19:21:42 -0700199 return 0;
venkatesh.pallipadi@intel.coma2bd92022008-07-30 19:21:42 -0700200
Arjan van de Ven69d25872009-09-21 17:04:08 -0700201 /* determine the expected residency time, round up */
Len Brown4f86d3a2007-10-03 18:58:00 -0400202 data->expected_us =
Arjan van de Ven69d25872009-09-21 17:04:08 -0700203 DIV_ROUND_UP((u32)ktime_to_ns(tick_nohz_get_sleep_length()), 1000);
Len Brown4f86d3a2007-10-03 18:58:00 -0400204
Arjan van de Ven69d25872009-09-21 17:04:08 -0700205
206 data->bucket = which_bucket(data->expected_us);
207
208 multiplier = performance_multiplier();
209
210 /*
211 * if the correction factor is 0 (eg first time init or cpu hotplug
212 * etc), we actually want to start out with a unity factor.
213 */
214 if (data->correction_factor[data->bucket] == 0)
215 data->correction_factor[data->bucket] = RESOLUTION * DECAY;
216
217 /* Make sure to round up for half microseconds */
Stephen Hemminger57875362010-01-08 14:43:08 -0800218 data->predicted_us = div_round64(data->expected_us * data->correction_factor[data->bucket],
219 RESOLUTION * DECAY);
Arjan van de Ven69d25872009-09-21 17:04:08 -0700220
221 /*
222 * We want to default to C1 (hlt), not to busy polling
223 * unless the timer is happening really really soon.
224 */
225 if (data->expected_us > 5)
226 data->last_state_idx = CPUIDLE_DRIVER_STATE_START;
227
Pallipadi, Venkatesh816bb612008-12-30 14:46:02 -0800228
Len Brown4f86d3a2007-10-03 18:58:00 -0400229 /* find the deepest idle state that satisfies our constraints */
Arjan van de Ven69d25872009-09-21 17:04:08 -0700230 for (i = CPUIDLE_DRIVER_STATE_START; i < dev->state_count; i++) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400231 struct cpuidle_state *s = &dev->states[i];
232
Len Brown4f86d3a2007-10-03 18:58:00 -0400233 if (s->target_residency > data->predicted_us)
234 break;
venkatesh.pallipadi@intel.coma2bd92022008-07-30 19:21:42 -0700235 if (s->exit_latency > latency_req)
Len Brown4f86d3a2007-10-03 18:58:00 -0400236 break;
Arjan van de Ven69d25872009-09-21 17:04:08 -0700237 if (s->exit_latency * multiplier > data->predicted_us)
238 break;
239 data->exit_us = s->exit_latency;
240 data->last_state_idx = i;
Len Brown4f86d3a2007-10-03 18:58:00 -0400241 }
242
Arjan van de Ven69d25872009-09-21 17:04:08 -0700243 return data->last_state_idx;
Len Brown4f86d3a2007-10-03 18:58:00 -0400244}
245
246/**
Corrado Zoccolo672917d2009-09-21 17:04:09 -0700247 * menu_reflect - records that data structures need update
Len Brown4f86d3a2007-10-03 18:58:00 -0400248 * @dev: the CPU
249 *
250 * NOTE: it's important to be fast here because this operation will add to
251 * the overall exit latency.
252 */
253static void menu_reflect(struct cpuidle_device *dev)
254{
255 struct menu_device *data = &__get_cpu_var(menu_devices);
Corrado Zoccolo672917d2009-09-21 17:04:09 -0700256 data->needs_update = 1;
257}
258
259/**
260 * menu_update - attempts to guess what happened after entry
261 * @dev: the CPU
262 */
263static void menu_update(struct cpuidle_device *dev)
264{
265 struct menu_device *data = &__get_cpu_var(menu_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -0400266 int last_idx = data->last_state_idx;
venkatesh.pallipadi@intel.com320eee72008-07-30 19:21:43 -0700267 unsigned int last_idle_us = cpuidle_get_last_residency(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400268 struct cpuidle_state *target = &dev->states[last_idx];
venkatesh.pallipadi@intel.com320eee72008-07-30 19:21:43 -0700269 unsigned int measured_us;
Arjan van de Ven69d25872009-09-21 17:04:08 -0700270 u64 new_factor;
Len Brown4f86d3a2007-10-03 18:58:00 -0400271
272 /*
273 * Ugh, this idle state doesn't support residency measurements, so we
274 * are basically lost in the dark. As a compromise, assume we slept
Arjan van de Ven69d25872009-09-21 17:04:08 -0700275 * for the whole expected time.
Len Brown4f86d3a2007-10-03 18:58:00 -0400276 */
venkatesh.pallipadi@intel.com320eee72008-07-30 19:21:43 -0700277 if (unlikely(!(target->flags & CPUIDLE_FLAG_TIME_VALID)))
Arjan van de Ven69d25872009-09-21 17:04:08 -0700278 last_idle_us = data->expected_us;
279
280
281 measured_us = last_idle_us;
Len Brown4f86d3a2007-10-03 18:58:00 -0400282
venkatesh.pallipadi@intel.com320eee72008-07-30 19:21:43 -0700283 /*
Arjan van de Ven69d25872009-09-21 17:04:08 -0700284 * We correct for the exit latency; we are assuming here that the
285 * exit latency happens after the event that we're interested in.
venkatesh.pallipadi@intel.com320eee72008-07-30 19:21:43 -0700286 */
Arjan van de Ven69d25872009-09-21 17:04:08 -0700287 if (measured_us > data->exit_us)
288 measured_us -= data->exit_us;
289
290
291 /* update our correction ratio */
292
293 new_factor = data->correction_factor[data->bucket]
294 * (DECAY - 1) / DECAY;
295
Arjan van de Ven1c6fe032010-05-08 15:47:37 -0700296 if (data->expected_us > 0 && measured_us < MAX_INTERESTING)
Arjan van de Ven69d25872009-09-21 17:04:08 -0700297 new_factor += RESOLUTION * measured_us / data->expected_us;
venkatesh.pallipadi@intel.com320eee72008-07-30 19:21:43 -0700298 else
Arjan van de Ven69d25872009-09-21 17:04:08 -0700299 /*
300 * we were idle so long that we count it as a perfect
301 * prediction
302 */
303 new_factor += RESOLUTION;
venkatesh.pallipadi@intel.com320eee72008-07-30 19:21:43 -0700304
Arjan van de Ven69d25872009-09-21 17:04:08 -0700305 /*
306 * We don't want 0 as factor; we always want at least
307 * a tiny bit of estimated time.
308 */
309 if (new_factor == 0)
310 new_factor = 1;
venkatesh.pallipadi@intel.com320eee72008-07-30 19:21:43 -0700311
Arjan van de Ven69d25872009-09-21 17:04:08 -0700312 data->correction_factor[data->bucket] = new_factor;
Len Brown4f86d3a2007-10-03 18:58:00 -0400313}
314
315/**
316 * menu_enable_device - scans a CPU's states and does setup
317 * @dev: the CPU
318 */
319static int menu_enable_device(struct cpuidle_device *dev)
320{
321 struct menu_device *data = &per_cpu(menu_devices, dev->cpu);
322
323 memset(data, 0, sizeof(struct menu_device));
324
325 return 0;
326}
327
328static struct cpuidle_governor menu_governor = {
329 .name = "menu",
330 .rating = 20,
331 .enable = menu_enable_device,
332 .select = menu_select,
333 .reflect = menu_reflect,
334 .owner = THIS_MODULE,
335};
336
337/**
338 * init_menu - initializes the governor
339 */
340static int __init init_menu(void)
341{
342 return cpuidle_register_governor(&menu_governor);
343}
344
345/**
346 * exit_menu - exits the governor
347 */
348static void __exit exit_menu(void)
349{
350 cpuidle_unregister_governor(&menu_governor);
351}
352
353MODULE_LICENSE("GPL");
354module_init(init_menu);
355module_exit(exit_menu);