blob: 8ffef26ffdcfb587ad23e2bf8cb40db5574c757f [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/**
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010075 * cpuidle_play_dead - cpu off-lining
76 *
Toshi Kaniee01e662012-03-31 21:37:02 -060077 * Returns in case of an error or no driver
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010078 */
79int cpuidle_play_dead(void)
80{
81 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
82 struct cpuidle_driver *drv = cpuidle_get_driver();
83 int i, dead_state = -1;
84 int power_usage = -1;
85
Toshi Kaniee01e662012-03-31 21:37:02 -060086 if (!drv)
87 return -ENODEV;
88
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010089 /* Find lowest-power state that supports long-term idle */
90 for (i = CPUIDLE_DRIVER_STATE_START; i < drv->state_count; i++) {
91 struct cpuidle_state *s = &drv->states[i];
92
93 if (s->power_usage < power_usage && s->enter_dead) {
94 power_usage = s->power_usage;
95 dead_state = i;
96 }
97 }
98
99 if (dead_state != -1)
100 return drv->states[dead_state].enter_dead(dev, dead_state);
101
102 return -ENODEV;
103}
104
105/**
Len Brown4f86d3a2007-10-03 18:58:00 -0400106 * cpuidle_idle_call - the main idle loop
107 *
108 * NOTE: no locks or semaphores should be used here
Len Browna0bfa132011-04-01 19:34:59 -0400109 * return non-zero on failure
Len Brown4f86d3a2007-10-03 18:58:00 -0400110 */
Len Browna0bfa132011-04-01 19:34:59 -0400111int cpuidle_idle_call(void)
Len Brown4f86d3a2007-10-03 18:58:00 -0400112{
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -0600113 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530114 struct cpuidle_driver *drv = cpuidle_get_driver();
Deepthi Dharware978aa72011-10-28 16:20:09 +0530115 int next_state, entered_state;
Len Brown4f86d3a2007-10-03 18:58:00 -0400116
Len Browna0bfa132011-04-01 19:34:59 -0400117 if (off)
118 return -ENODEV;
119
120 if (!initialized)
121 return -ENODEV;
122
Len Brown4f86d3a2007-10-03 18:58:00 -0400123 /* check if the device is ready */
Len Browna0bfa132011-04-01 19:34:59 -0400124 if (!dev || !dev->enabled)
125 return -EBUSY;
Len Brown4f86d3a2007-10-03 18:58:00 -0400126
127 /* ask the governor for the next state */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530128 next_state = cpuidle_curr_governor->select(drv, dev);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700129 if (need_resched()) {
130 local_irq_enable();
Len Browna0bfa132011-04-01 19:34:59 -0400131 return 0;
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700132 }
133
Steven Rostedt76027ea2012-02-07 09:46:01 -0500134 trace_power_start_rcuidle(POWER_CSTATE, next_state, dev->cpu);
135 trace_cpu_idle_rcuidle(next_state, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100136
Robert Leee1689792012-03-20 15:22:42 -0500137 entered_state = cpuidle_enter_ops(dev, drv, next_state);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100138
Steven Rostedt76027ea2012-02-07 09:46:01 -0500139 trace_power_end_rcuidle(dev->cpu);
140 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100141
Deepthi Dharware978aa72011-10-28 16:20:09 +0530142 if (entered_state >= 0) {
143 /* Update cpuidle counters */
144 /* This can be moved to within driver enter routine
145 * but that results in multiple copies of same code.
146 */
Deepthi Dharwar42027352011-10-28 16:20:33 +0530147 dev->states_usage[entered_state].time +=
Deepthi Dharware978aa72011-10-28 16:20:09 +0530148 (unsigned long long)dev->last_residency;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530149 dev->states_usage[entered_state].usage++;
Robert Leee1689792012-03-20 15:22:42 -0500150 } else {
151 dev->last_residency = 0;
Deepthi Dharware978aa72011-10-28 16:20:09 +0530152 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400153
154 /* give the governor an opportunity to reflect on the outcome */
155 if (cpuidle_curr_governor->reflect)
Deepthi Dharware978aa72011-10-28 16:20:09 +0530156 cpuidle_curr_governor->reflect(dev, entered_state);
Len Browna0bfa132011-04-01 19:34:59 -0400157
158 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400159}
160
161/**
162 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
163 */
164void cpuidle_install_idle_handler(void)
165{
Len Browna0bfa132011-04-01 19:34:59 -0400166 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400167 /* Make sure all changes finished before we switch to new idle */
168 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400169 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400170 }
171}
172
173/**
174 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
175 */
176void cpuidle_uninstall_idle_handler(void)
177{
Len Browna0bfa132011-04-01 19:34:59 -0400178 if (enabled_devices) {
179 initialized = 0;
Venki Pallipadia6869cc2008-02-08 17:05:44 -0800180 cpuidle_kick_cpus();
Len Brown4f86d3a2007-10-03 18:58:00 -0400181 }
182}
183
184/**
185 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
186 */
187void cpuidle_pause_and_lock(void)
188{
189 mutex_lock(&cpuidle_lock);
190 cpuidle_uninstall_idle_handler();
191}
192
193EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
194
195/**
196 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
197 */
198void cpuidle_resume_and_unlock(void)
199{
200 cpuidle_install_idle_handler();
201 mutex_unlock(&cpuidle_lock);
202}
203
204EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
205
Robert Leee1689792012-03-20 15:22:42 -0500206/**
207 * cpuidle_wrap_enter - performs timekeeping and irqen around enter function
208 * @dev: pointer to a valid cpuidle_device object
209 * @drv: pointer to a valid cpuidle_driver object
210 * @index: index of the target cpuidle state.
211 */
212int cpuidle_wrap_enter(struct cpuidle_device *dev,
213 struct cpuidle_driver *drv, int index,
214 int (*enter)(struct cpuidle_device *dev,
215 struct cpuidle_driver *drv, int index))
216{
217 ktime_t time_start, time_end;
218 s64 diff;
219
220 time_start = ktime_get();
221
222 index = enter(dev, drv, index);
223
224 time_end = ktime_get();
225
226 local_irq_enable();
227
228 diff = ktime_to_us(ktime_sub(time_end, time_start));
229 if (diff > INT_MAX)
230 diff = INT_MAX;
231
232 dev->last_residency = (int) diff;
233
234 return index;
235}
236
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100237#ifdef CONFIG_ARCH_HAS_CPU_RELAX
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530238static int poll_idle(struct cpuidle_device *dev,
239 struct cpuidle_driver *drv, int index)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100240{
241 ktime_t t1, t2;
242 s64 diff;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100243
244 t1 = ktime_get();
245 local_irq_enable();
246 while (!need_resched())
247 cpu_relax();
248
249 t2 = ktime_get();
250 diff = ktime_to_us(ktime_sub(t2, t1));
251 if (diff > INT_MAX)
252 diff = INT_MAX;
253
Deepthi Dharware978aa72011-10-28 16:20:09 +0530254 dev->last_residency = (int) diff;
255
256 return index;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100257}
258
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530259static void poll_idle_init(struct cpuidle_driver *drv)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100260{
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530261 struct cpuidle_state *state = &drv->states[0];
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100262
Thomas Renninger720f1c32011-01-07 11:29:43 +0100263 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100264 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
265 state->exit_latency = 0;
266 state->target_residency = 0;
267 state->power_usage = -1;
Len Brownd2476322011-01-12 02:34:59 -0500268 state->flags = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100269 state->enter = poll_idle;
ShuoX Liu3a533962012-03-28 15:19:11 -0700270 state->disable = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100271}
272#else
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530273static void poll_idle_init(struct cpuidle_driver *drv) {}
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100274#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
275
Len Brown4f86d3a2007-10-03 18:58:00 -0400276/**
277 * cpuidle_enable_device - enables idle PM for a CPU
278 * @dev: the CPU
279 *
280 * This function must be called between cpuidle_pause_and_lock and
281 * cpuidle_resume_and_unlock when used externally.
282 */
283int cpuidle_enable_device(struct cpuidle_device *dev)
284{
285 int ret, i;
Robert Leee1689792012-03-20 15:22:42 -0500286 struct cpuidle_driver *drv = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400287
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700288 if (!dev)
289 return -EINVAL;
290
Len Brown4f86d3a2007-10-03 18:58:00 -0400291 if (dev->enabled)
292 return 0;
Robert Leee1689792012-03-20 15:22:42 -0500293 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400294 return -EIO;
295 if (!dev->state_count)
Daniel Lezcanofc850f32012-03-26 14:51:26 +0200296 dev->state_count = drv->state_count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400297
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400298 if (dev->registered == 0) {
299 ret = __cpuidle_register_device(dev);
300 if (ret)
301 return ret;
302 }
303
Robert Leee1689792012-03-20 15:22:42 -0500304 cpuidle_enter_ops = drv->en_core_tk_irqen ?
305 cpuidle_enter_tk : cpuidle_enter;
306
307 poll_idle_init(drv);
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100308
Len Brown4f86d3a2007-10-03 18:58:00 -0400309 if ((ret = cpuidle_add_state_sysfs(dev)))
310 return ret;
311
312 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500313 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400314 goto fail_sysfs;
315
316 for (i = 0; i < dev->state_count; i++) {
Deepthi Dharwar42027352011-10-28 16:20:33 +0530317 dev->states_usage[i].usage = 0;
318 dev->states_usage[i].time = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400319 }
320 dev->last_residency = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400321
322 smp_wmb();
323
324 dev->enabled = 1;
325
326 enabled_devices++;
327 return 0;
328
329fail_sysfs:
330 cpuidle_remove_state_sysfs(dev);
331
332 return ret;
333}
334
335EXPORT_SYMBOL_GPL(cpuidle_enable_device);
336
337/**
338 * cpuidle_disable_device - disables idle PM for a CPU
339 * @dev: the CPU
340 *
341 * This function must be called between cpuidle_pause_and_lock and
342 * cpuidle_resume_and_unlock when used externally.
343 */
344void cpuidle_disable_device(struct cpuidle_device *dev)
345{
346 if (!dev->enabled)
347 return;
Len Brown752138d2010-05-22 16:57:26 -0400348 if (!cpuidle_get_driver() || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400349 return;
350
351 dev->enabled = 0;
352
353 if (cpuidle_curr_governor->disable)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530354 cpuidle_curr_governor->disable(cpuidle_get_driver(), dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400355
356 cpuidle_remove_state_sysfs(dev);
357 enabled_devices--;
358}
359
360EXPORT_SYMBOL_GPL(cpuidle_disable_device);
361
362/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400363 * __cpuidle_register_device - internal register function called before register
364 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400365 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400366 *
367 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400368 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400369static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400370{
371 int ret;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800372 struct device *cpu_dev = get_cpu_device((unsigned long)dev->cpu);
Len Brown752138d2010-05-22 16:57:26 -0400373 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400374
Len Brown752138d2010-05-22 16:57:26 -0400375 if (!try_module_get(cpuidle_driver->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400376 return -EINVAL;
377
378 init_completion(&dev->kobj_unregister);
379
Len Brown4f86d3a2007-10-03 18:58:00 -0400380 per_cpu(cpuidle_devices, dev->cpu) = dev;
381 list_add(&dev->device_list, &cpuidle_detected_devices);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800382 if ((ret = cpuidle_add_sysfs(cpu_dev))) {
Len Brown752138d2010-05-22 16:57:26 -0400383 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400384 return ret;
385 }
386
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400387 dev->registered = 1;
388 return 0;
389}
390
391/**
392 * cpuidle_register_device - registers a CPU's idle PM feature
393 * @dev: the cpu
394 */
395int cpuidle_register_device(struct cpuidle_device *dev)
396{
397 int ret;
398
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700399 if (!dev)
400 return -EINVAL;
401
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400402 mutex_lock(&cpuidle_lock);
403
404 if ((ret = __cpuidle_register_device(dev))) {
405 mutex_unlock(&cpuidle_lock);
406 return ret;
407 }
408
Len Brown4f86d3a2007-10-03 18:58:00 -0400409 cpuidle_enable_device(dev);
410 cpuidle_install_idle_handler();
411
412 mutex_unlock(&cpuidle_lock);
413
414 return 0;
415
416}
417
418EXPORT_SYMBOL_GPL(cpuidle_register_device);
419
420/**
421 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
422 * @dev: the cpu
423 */
424void cpuidle_unregister_device(struct cpuidle_device *dev)
425{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800426 struct device *cpu_dev = get_cpu_device((unsigned long)dev->cpu);
Len Brown752138d2010-05-22 16:57:26 -0400427 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400428
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400429 if (dev->registered == 0)
430 return;
431
Len Brown4f86d3a2007-10-03 18:58:00 -0400432 cpuidle_pause_and_lock();
433
434 cpuidle_disable_device(dev);
435
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800436 cpuidle_remove_sysfs(cpu_dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400437 list_del(&dev->device_list);
438 wait_for_completion(&dev->kobj_unregister);
439 per_cpu(cpuidle_devices, dev->cpu) = NULL;
440
441 cpuidle_resume_and_unlock();
442
Len Brown752138d2010-05-22 16:57:26 -0400443 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400444}
445
446EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
447
448#ifdef CONFIG_SMP
449
450static void smp_callback(void *v)
451{
452 /* we already woke the CPU up, nothing more to do */
453}
454
455/*
456 * This function gets called when a part of the kernel has a new latency
457 * requirement. This means we need to get all processors out of their C-state,
458 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
459 * wakes them all right up.
460 */
461static int cpuidle_latency_notify(struct notifier_block *b,
462 unsigned long l, void *v)
463{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200464 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400465 return NOTIFY_OK;
466}
467
468static struct notifier_block cpuidle_latency_notifier = {
469 .notifier_call = cpuidle_latency_notify,
470};
471
Mark Grossd82b3512008-02-04 22:30:08 -0800472static inline void latency_notifier_init(struct notifier_block *n)
473{
474 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
475}
Len Brown4f86d3a2007-10-03 18:58:00 -0400476
477#else /* CONFIG_SMP */
478
479#define latency_notifier_init(x) do { } while (0)
480
481#endif /* CONFIG_SMP */
482
483/**
484 * cpuidle_init - core initializer
485 */
486static int __init cpuidle_init(void)
487{
488 int ret;
489
Len Brown62027ae2011-04-01 18:13:10 -0400490 if (cpuidle_disabled())
491 return -ENODEV;
492
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800493 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400494 if (ret)
495 return ret;
496
497 latency_notifier_init(&cpuidle_latency_notifier);
498
499 return 0;
500}
501
Len Brown62027ae2011-04-01 18:13:10 -0400502module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400503core_initcall(cpuidle_init);