blob: f7cab5e9c4d6d894093ccb79e44a8227d0a7723e [file] [log] [blame]
Len Brown4f86d3a2007-10-03 18:58:00 -04001/*
2 * cpuidle.c - core cpuidle infrastructure
3 *
4 * (C) 2006-2007 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
5 * Shaohua Li <shaohua.li@intel.com>
6 * Adam Belay <abelay@novell.com>
7 *
8 * This code is licenced under the GPL.
9 */
10
11#include <linux/kernel.h>
12#include <linux/mutex.h>
13#include <linux/sched.h>
14#include <linux/notifier.h>
Jean Pihete8db0be2011-08-25 15:35:03 +020015#include <linux/pm_qos.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040016#include <linux/cpu.h>
17#include <linux/cpuidle.h>
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -080018#include <linux/ktime.h>
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -070019#include <linux/hrtimer.h>
Paul Gortmaker884b17e2011-08-29 17:52:39 -040020#include <linux/module.h>
Arjan van de Ven288f0232009-09-19 13:35:33 +020021#include <trace/events/power.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040022
23#include "cpuidle.h"
24
25DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -040026
27DEFINE_MUTEX(cpuidle_lock);
28LIST_HEAD(cpuidle_detected_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -040029
30static int enabled_devices;
Len Brown62027ae2011-04-01 18:13:10 -040031static int off __read_mostly;
Len Browna0bfa132011-04-01 19:34:59 -040032static int initialized __read_mostly;
Len Brown62027ae2011-04-01 18:13:10 -040033
34int cpuidle_disabled(void)
35{
36 return off;
37}
Len Brownd91ee582011-04-01 18:28:35 -040038void disable_cpuidle(void)
39{
40 off = 1;
41}
Len Brown4f86d3a2007-10-03 18:58:00 -040042
Venki Pallipadia6869cc2008-02-08 17:05:44 -080043#if defined(CONFIG_ARCH_HAS_CPU_IDLE_WAIT)
44static void cpuidle_kick_cpus(void)
45{
46 cpu_idle_wait();
47}
48#elif defined(CONFIG_SMP)
49# error "Arch needs cpu_idle_wait() equivalent here"
50#else /* !CONFIG_ARCH_HAS_CPU_IDLE_WAIT && !CONFIG_SMP */
51static void cpuidle_kick_cpus(void) {}
52#endif
53
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -040054static int __cpuidle_register_device(struct cpuidle_device *dev);
55
Robert Leee1689792012-03-20 15:22:42 -050056static inline int cpuidle_enter(struct cpuidle_device *dev,
57 struct cpuidle_driver *drv, int index)
58{
59 struct cpuidle_state *target_state = &drv->states[index];
60 return target_state->enter(dev, drv, index);
61}
62
63static inline int cpuidle_enter_tk(struct cpuidle_device *dev,
64 struct cpuidle_driver *drv, int index)
65{
66 return cpuidle_wrap_enter(dev, drv, index, cpuidle_enter);
67}
68
69typedef int (*cpuidle_enter_t)(struct cpuidle_device *dev,
70 struct cpuidle_driver *drv, int index);
71
72static cpuidle_enter_t cpuidle_enter_ops;
73
Len Brown4f86d3a2007-10-03 18:58:00 -040074/**
75 * cpuidle_idle_call - the main idle loop
76 *
77 * NOTE: no locks or semaphores should be used here
Len Browna0bfa132011-04-01 19:34:59 -040078 * return non-zero on failure
Len Brown4f86d3a2007-10-03 18:58:00 -040079 */
Len Browna0bfa132011-04-01 19:34:59 -040080int cpuidle_idle_call(void)
Len Brown4f86d3a2007-10-03 18:58:00 -040081{
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -060082 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053083 struct cpuidle_driver *drv = cpuidle_get_driver();
Deepthi Dharware978aa72011-10-28 16:20:09 +053084 int next_state, entered_state;
Len Brown4f86d3a2007-10-03 18:58:00 -040085
Len Browna0bfa132011-04-01 19:34:59 -040086 if (off)
87 return -ENODEV;
88
89 if (!initialized)
90 return -ENODEV;
91
Len Brown4f86d3a2007-10-03 18:58:00 -040092 /* check if the device is ready */
Len Browna0bfa132011-04-01 19:34:59 -040093 if (!dev || !dev->enabled)
94 return -EBUSY;
Len Brown4f86d3a2007-10-03 18:58:00 -040095
Arjan van de Ven9a655832008-11-09 12:45:10 -080096#if 0
97 /* shows regressions, re-enable for 2.6.29 */
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -070098 /*
99 * run any timers that can be run now, at this point
100 * before calculating the idle duration etc.
101 */
102 hrtimer_peek_ahead_timers();
Arjan van de Ven9a655832008-11-09 12:45:10 -0800103#endif
Ai Li71abbbf2010-08-09 17:20:13 -0700104
Len Brown4f86d3a2007-10-03 18:58:00 -0400105 /* ask the governor for the next state */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530106 next_state = cpuidle_curr_governor->select(drv, dev);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700107 if (need_resched()) {
108 local_irq_enable();
Len Browna0bfa132011-04-01 19:34:59 -0400109 return 0;
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700110 }
111
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100112 trace_power_start(POWER_CSTATE, next_state, dev->cpu);
113 trace_cpu_idle(next_state, dev->cpu);
114
Robert Leee1689792012-03-20 15:22:42 -0500115 entered_state = cpuidle_enter_ops(dev, drv, next_state);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100116
117 trace_power_end(dev->cpu);
118 trace_cpu_idle(PWR_EVENT_EXIT, dev->cpu);
119
Deepthi Dharware978aa72011-10-28 16:20:09 +0530120 if (entered_state >= 0) {
121 /* Update cpuidle counters */
122 /* This can be moved to within driver enter routine
123 * but that results in multiple copies of same code.
124 */
Deepthi Dharwar42027352011-10-28 16:20:33 +0530125 dev->states_usage[entered_state].time +=
Deepthi Dharware978aa72011-10-28 16:20:09 +0530126 (unsigned long long)dev->last_residency;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530127 dev->states_usage[entered_state].usage++;
Robert Leee1689792012-03-20 15:22:42 -0500128 } else {
129 dev->last_residency = 0;
Deepthi Dharware978aa72011-10-28 16:20:09 +0530130 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400131
132 /* give the governor an opportunity to reflect on the outcome */
133 if (cpuidle_curr_governor->reflect)
Deepthi Dharware978aa72011-10-28 16:20:09 +0530134 cpuidle_curr_governor->reflect(dev, entered_state);
Len Browna0bfa132011-04-01 19:34:59 -0400135
136 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400137}
138
139/**
140 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
141 */
142void cpuidle_install_idle_handler(void)
143{
Len Browna0bfa132011-04-01 19:34:59 -0400144 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400145 /* Make sure all changes finished before we switch to new idle */
146 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400147 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400148 }
149}
150
151/**
152 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
153 */
154void cpuidle_uninstall_idle_handler(void)
155{
Len Browna0bfa132011-04-01 19:34:59 -0400156 if (enabled_devices) {
157 initialized = 0;
Venki Pallipadia6869cc2008-02-08 17:05:44 -0800158 cpuidle_kick_cpus();
Len Brown4f86d3a2007-10-03 18:58:00 -0400159 }
160}
161
162/**
163 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
164 */
165void cpuidle_pause_and_lock(void)
166{
167 mutex_lock(&cpuidle_lock);
168 cpuidle_uninstall_idle_handler();
169}
170
171EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
172
173/**
174 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
175 */
176void cpuidle_resume_and_unlock(void)
177{
178 cpuidle_install_idle_handler();
179 mutex_unlock(&cpuidle_lock);
180}
181
182EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
183
Robert Leee1689792012-03-20 15:22:42 -0500184/**
185 * cpuidle_wrap_enter - performs timekeeping and irqen around enter function
186 * @dev: pointer to a valid cpuidle_device object
187 * @drv: pointer to a valid cpuidle_driver object
188 * @index: index of the target cpuidle state.
189 */
190int cpuidle_wrap_enter(struct cpuidle_device *dev,
191 struct cpuidle_driver *drv, int index,
192 int (*enter)(struct cpuidle_device *dev,
193 struct cpuidle_driver *drv, int index))
194{
195 ktime_t time_start, time_end;
196 s64 diff;
197
198 time_start = ktime_get();
199
200 index = enter(dev, drv, index);
201
202 time_end = ktime_get();
203
204 local_irq_enable();
205
206 diff = ktime_to_us(ktime_sub(time_end, time_start));
207 if (diff > INT_MAX)
208 diff = INT_MAX;
209
210 dev->last_residency = (int) diff;
211
212 return index;
213}
214
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100215#ifdef CONFIG_ARCH_HAS_CPU_RELAX
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530216static int poll_idle(struct cpuidle_device *dev,
217 struct cpuidle_driver *drv, int index)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100218{
219 ktime_t t1, t2;
220 s64 diff;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100221
222 t1 = ktime_get();
223 local_irq_enable();
224 while (!need_resched())
225 cpu_relax();
226
227 t2 = ktime_get();
228 diff = ktime_to_us(ktime_sub(t2, t1));
229 if (diff > INT_MAX)
230 diff = INT_MAX;
231
Deepthi Dharware978aa72011-10-28 16:20:09 +0530232 dev->last_residency = (int) diff;
233
234 return index;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100235}
236
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530237static void poll_idle_init(struct cpuidle_driver *drv)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100238{
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530239 struct cpuidle_state *state = &drv->states[0];
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100240
Thomas Renninger720f1c32011-01-07 11:29:43 +0100241 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100242 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
243 state->exit_latency = 0;
244 state->target_residency = 0;
245 state->power_usage = -1;
Len Brownd2476322011-01-12 02:34:59 -0500246 state->flags = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100247 state->enter = poll_idle;
ShuoX Liu3a533962012-03-28 15:19:11 -0700248 state->disable = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100249}
250#else
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530251static void poll_idle_init(struct cpuidle_driver *drv) {}
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100252#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
253
Len Brown4f86d3a2007-10-03 18:58:00 -0400254/**
255 * cpuidle_enable_device - enables idle PM for a CPU
256 * @dev: the CPU
257 *
258 * This function must be called between cpuidle_pause_and_lock and
259 * cpuidle_resume_and_unlock when used externally.
260 */
261int cpuidle_enable_device(struct cpuidle_device *dev)
262{
263 int ret, i;
Robert Leee1689792012-03-20 15:22:42 -0500264 struct cpuidle_driver *drv = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400265
266 if (dev->enabled)
267 return 0;
Robert Leee1689792012-03-20 15:22:42 -0500268 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400269 return -EIO;
270 if (!dev->state_count)
Daniel Lezcanofc850f32012-03-26 14:51:26 +0200271 dev->state_count = drv->state_count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400272
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400273 if (dev->registered == 0) {
274 ret = __cpuidle_register_device(dev);
275 if (ret)
276 return ret;
277 }
278
Robert Leee1689792012-03-20 15:22:42 -0500279 cpuidle_enter_ops = drv->en_core_tk_irqen ?
280 cpuidle_enter_tk : cpuidle_enter;
281
282 poll_idle_init(drv);
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100283
Len Brown4f86d3a2007-10-03 18:58:00 -0400284 if ((ret = cpuidle_add_state_sysfs(dev)))
285 return ret;
286
287 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500288 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400289 goto fail_sysfs;
290
291 for (i = 0; i < dev->state_count; i++) {
Deepthi Dharwar42027352011-10-28 16:20:33 +0530292 dev->states_usage[i].usage = 0;
293 dev->states_usage[i].time = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400294 }
295 dev->last_residency = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400296
297 smp_wmb();
298
299 dev->enabled = 1;
300
301 enabled_devices++;
302 return 0;
303
304fail_sysfs:
305 cpuidle_remove_state_sysfs(dev);
306
307 return ret;
308}
309
310EXPORT_SYMBOL_GPL(cpuidle_enable_device);
311
312/**
313 * cpuidle_disable_device - disables idle PM for a CPU
314 * @dev: the CPU
315 *
316 * This function must be called between cpuidle_pause_and_lock and
317 * cpuidle_resume_and_unlock when used externally.
318 */
319void cpuidle_disable_device(struct cpuidle_device *dev)
320{
321 if (!dev->enabled)
322 return;
Len Brown752138d2010-05-22 16:57:26 -0400323 if (!cpuidle_get_driver() || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400324 return;
325
326 dev->enabled = 0;
327
328 if (cpuidle_curr_governor->disable)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530329 cpuidle_curr_governor->disable(cpuidle_get_driver(), dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400330
331 cpuidle_remove_state_sysfs(dev);
332 enabled_devices--;
333}
334
335EXPORT_SYMBOL_GPL(cpuidle_disable_device);
336
337/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400338 * __cpuidle_register_device - internal register function called before register
339 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400340 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400341 *
342 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400343 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400344static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400345{
346 int ret;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800347 struct device *cpu_dev = get_cpu_device((unsigned long)dev->cpu);
Len Brown752138d2010-05-22 16:57:26 -0400348 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400349
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800350 if (!dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400351 return -EINVAL;
Len Brown752138d2010-05-22 16:57:26 -0400352 if (!try_module_get(cpuidle_driver->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400353 return -EINVAL;
354
355 init_completion(&dev->kobj_unregister);
356
Len Brown4f86d3a2007-10-03 18:58:00 -0400357 per_cpu(cpuidle_devices, dev->cpu) = dev;
358 list_add(&dev->device_list, &cpuidle_detected_devices);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800359 if ((ret = cpuidle_add_sysfs(cpu_dev))) {
Len Brown752138d2010-05-22 16:57:26 -0400360 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400361 return ret;
362 }
363
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400364 dev->registered = 1;
365 return 0;
366}
367
368/**
369 * cpuidle_register_device - registers a CPU's idle PM feature
370 * @dev: the cpu
371 */
372int cpuidle_register_device(struct cpuidle_device *dev)
373{
374 int ret;
375
376 mutex_lock(&cpuidle_lock);
377
378 if ((ret = __cpuidle_register_device(dev))) {
379 mutex_unlock(&cpuidle_lock);
380 return ret;
381 }
382
Len Brown4f86d3a2007-10-03 18:58:00 -0400383 cpuidle_enable_device(dev);
384 cpuidle_install_idle_handler();
385
386 mutex_unlock(&cpuidle_lock);
387
388 return 0;
389
390}
391
392EXPORT_SYMBOL_GPL(cpuidle_register_device);
393
394/**
395 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
396 * @dev: the cpu
397 */
398void cpuidle_unregister_device(struct cpuidle_device *dev)
399{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800400 struct device *cpu_dev = get_cpu_device((unsigned long)dev->cpu);
Len Brown752138d2010-05-22 16:57:26 -0400401 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400402
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400403 if (dev->registered == 0)
404 return;
405
Len Brown4f86d3a2007-10-03 18:58:00 -0400406 cpuidle_pause_and_lock();
407
408 cpuidle_disable_device(dev);
409
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800410 cpuidle_remove_sysfs(cpu_dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400411 list_del(&dev->device_list);
412 wait_for_completion(&dev->kobj_unregister);
413 per_cpu(cpuidle_devices, dev->cpu) = NULL;
414
415 cpuidle_resume_and_unlock();
416
Len Brown752138d2010-05-22 16:57:26 -0400417 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400418}
419
420EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
421
422#ifdef CONFIG_SMP
423
424static void smp_callback(void *v)
425{
426 /* we already woke the CPU up, nothing more to do */
427}
428
429/*
430 * This function gets called when a part of the kernel has a new latency
431 * requirement. This means we need to get all processors out of their C-state,
432 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
433 * wakes them all right up.
434 */
435static int cpuidle_latency_notify(struct notifier_block *b,
436 unsigned long l, void *v)
437{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200438 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400439 return NOTIFY_OK;
440}
441
442static struct notifier_block cpuidle_latency_notifier = {
443 .notifier_call = cpuidle_latency_notify,
444};
445
Mark Grossd82b3512008-02-04 22:30:08 -0800446static inline void latency_notifier_init(struct notifier_block *n)
447{
448 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
449}
Len Brown4f86d3a2007-10-03 18:58:00 -0400450
451#else /* CONFIG_SMP */
452
453#define latency_notifier_init(x) do { } while (0)
454
455#endif /* CONFIG_SMP */
456
457/**
458 * cpuidle_init - core initializer
459 */
460static int __init cpuidle_init(void)
461{
462 int ret;
463
Len Brown62027ae2011-04-01 18:13:10 -0400464 if (cpuidle_disabled())
465 return -ENODEV;
466
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800467 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400468 if (ret)
469 return ret;
470
471 latency_notifier_init(&cpuidle_latency_notifier);
472
473 return 0;
474}
475
Len Brown62027ae2011-04-01 18:13:10 -0400476module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400477core_initcall(cpuidle_init);