blob: 7127e92fa8a1d921980d968a370dfd42cac47013 [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>
Mark Grossd82b3512008-02-04 22:30:08 -080015#include <linux/pm_qos_params.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>
Arjan van de Ven288f0232009-09-19 13:35:33 +020020#include <trace/events/power.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040021
22#include "cpuidle.h"
23
24DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -040025
26DEFINE_MUTEX(cpuidle_lock);
27LIST_HEAD(cpuidle_detected_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -040028
29static int enabled_devices;
Len Brown62027ae2011-04-01 18:13:10 -040030static int off __read_mostly;
Len Browna0bfa132011-04-01 19:34:59 -040031static int initialized __read_mostly;
Len Brown62027ae2011-04-01 18:13:10 -040032
33int cpuidle_disabled(void)
34{
35 return off;
36}
Len Brownd91ee582011-04-01 18:28:35 -040037void disable_cpuidle(void)
38{
39 off = 1;
40}
Len Brown4f86d3a2007-10-03 18:58:00 -040041
Venki Pallipadia6869cc2008-02-08 17:05:44 -080042#if defined(CONFIG_ARCH_HAS_CPU_IDLE_WAIT)
43static void cpuidle_kick_cpus(void)
44{
45 cpu_idle_wait();
46}
47#elif defined(CONFIG_SMP)
48# error "Arch needs cpu_idle_wait() equivalent here"
49#else /* !CONFIG_ARCH_HAS_CPU_IDLE_WAIT && !CONFIG_SMP */
50static void cpuidle_kick_cpus(void) {}
51#endif
52
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -040053static int __cpuidle_register_device(struct cpuidle_device *dev);
54
Len Brown4f86d3a2007-10-03 18:58:00 -040055/**
56 * cpuidle_idle_call - the main idle loop
57 *
58 * NOTE: no locks or semaphores should be used here
Len Browna0bfa132011-04-01 19:34:59 -040059 * return non-zero on failure
Len Brown4f86d3a2007-10-03 18:58:00 -040060 */
Len Browna0bfa132011-04-01 19:34:59 -040061int cpuidle_idle_call(void)
Len Brown4f86d3a2007-10-03 18:58:00 -040062{
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -060063 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -040064 struct cpuidle_state *target_state;
Deepthi Dharware978aa72011-10-28 16:20:09 +053065 int next_state, entered_state;
Len Brown4f86d3a2007-10-03 18:58:00 -040066
Len Browna0bfa132011-04-01 19:34:59 -040067 if (off)
68 return -ENODEV;
69
70 if (!initialized)
71 return -ENODEV;
72
Len Brown4f86d3a2007-10-03 18:58:00 -040073 /* check if the device is ready */
Len Browna0bfa132011-04-01 19:34:59 -040074 if (!dev || !dev->enabled)
75 return -EBUSY;
Len Brown4f86d3a2007-10-03 18:58:00 -040076
Arjan van de Ven9a655832008-11-09 12:45:10 -080077#if 0
78 /* shows regressions, re-enable for 2.6.29 */
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -070079 /*
80 * run any timers that can be run now, at this point
81 * before calculating the idle duration etc.
82 */
83 hrtimer_peek_ahead_timers();
Arjan van de Ven9a655832008-11-09 12:45:10 -080084#endif
Ai Li71abbbf2010-08-09 17:20:13 -070085
Len Brown4f86d3a2007-10-03 18:58:00 -040086 /* ask the governor for the next state */
87 next_state = cpuidle_curr_governor->select(dev);
Kevin Hilman246eb7f2009-10-26 16:50:18 -070088 if (need_resched()) {
89 local_irq_enable();
Len Browna0bfa132011-04-01 19:34:59 -040090 return 0;
Kevin Hilman246eb7f2009-10-26 16:50:18 -070091 }
92
Len Brown4f86d3a2007-10-03 18:58:00 -040093 target_state = &dev->states[next_state];
94
Thomas Renningerf77cfe42011-01-07 11:29:44 +010095 trace_power_start(POWER_CSTATE, next_state, dev->cpu);
96 trace_cpu_idle(next_state, dev->cpu);
97
Deepthi Dharware978aa72011-10-28 16:20:09 +053098 entered_state = target_state->enter(dev, next_state);
Thomas Renningerf77cfe42011-01-07 11:29:44 +010099
100 trace_power_end(dev->cpu);
101 trace_cpu_idle(PWR_EVENT_EXIT, dev->cpu);
102
Deepthi Dharware978aa72011-10-28 16:20:09 +0530103 if (entered_state >= 0) {
104 /* Update cpuidle counters */
105 /* This can be moved to within driver enter routine
106 * but that results in multiple copies of same code.
107 */
Deepthi Dharwar42027352011-10-28 16:20:33 +0530108 dev->states_usage[entered_state].time +=
Deepthi Dharware978aa72011-10-28 16:20:09 +0530109 (unsigned long long)dev->last_residency;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530110 dev->states_usage[entered_state].usage++;
Deepthi Dharware978aa72011-10-28 16:20:09 +0530111 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400112
113 /* give the governor an opportunity to reflect on the outcome */
114 if (cpuidle_curr_governor->reflect)
Deepthi Dharware978aa72011-10-28 16:20:09 +0530115 cpuidle_curr_governor->reflect(dev, entered_state);
Len Browna0bfa132011-04-01 19:34:59 -0400116
117 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400118}
119
120/**
121 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
122 */
123void cpuidle_install_idle_handler(void)
124{
Len Browna0bfa132011-04-01 19:34:59 -0400125 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400126 /* Make sure all changes finished before we switch to new idle */
127 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400128 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400129 }
130}
131
132/**
133 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
134 */
135void cpuidle_uninstall_idle_handler(void)
136{
Len Browna0bfa132011-04-01 19:34:59 -0400137 if (enabled_devices) {
138 initialized = 0;
Venki Pallipadia6869cc2008-02-08 17:05:44 -0800139 cpuidle_kick_cpus();
Len Brown4f86d3a2007-10-03 18:58:00 -0400140 }
141}
142
143/**
144 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
145 */
146void cpuidle_pause_and_lock(void)
147{
148 mutex_lock(&cpuidle_lock);
149 cpuidle_uninstall_idle_handler();
150}
151
152EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
153
154/**
155 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
156 */
157void cpuidle_resume_and_unlock(void)
158{
159 cpuidle_install_idle_handler();
160 mutex_unlock(&cpuidle_lock);
161}
162
163EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
164
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100165#ifdef CONFIG_ARCH_HAS_CPU_RELAX
Deepthi Dharware978aa72011-10-28 16:20:09 +0530166static int poll_idle(struct cpuidle_device *dev, int index)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100167{
168 ktime_t t1, t2;
169 s64 diff;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100170
171 t1 = ktime_get();
172 local_irq_enable();
173 while (!need_resched())
174 cpu_relax();
175
176 t2 = ktime_get();
177 diff = ktime_to_us(ktime_sub(t2, t1));
178 if (diff > INT_MAX)
179 diff = INT_MAX;
180
Deepthi Dharware978aa72011-10-28 16:20:09 +0530181 dev->last_residency = (int) diff;
182
183 return index;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100184}
185
186static void poll_idle_init(struct cpuidle_device *dev)
187{
188 struct cpuidle_state *state = &dev->states[0];
Deepthi Dharwar42027352011-10-28 16:20:33 +0530189 struct cpuidle_state_usage *state_usage = &dev->states_usage[0];
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100190
Deepthi Dharwar42027352011-10-28 16:20:33 +0530191 cpuidle_set_statedata(state_usage, NULL);
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100192
Thomas Renninger720f1c32011-01-07 11:29:43 +0100193 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100194 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
195 state->exit_latency = 0;
196 state->target_residency = 0;
197 state->power_usage = -1;
Len Brownd2476322011-01-12 02:34:59 -0500198 state->flags = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100199 state->enter = poll_idle;
200}
201#else
202static void poll_idle_init(struct cpuidle_device *dev) {}
203#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
204
Len Brown4f86d3a2007-10-03 18:58:00 -0400205/**
206 * cpuidle_enable_device - enables idle PM for a CPU
207 * @dev: the CPU
208 *
209 * This function must be called between cpuidle_pause_and_lock and
210 * cpuidle_resume_and_unlock when used externally.
211 */
212int cpuidle_enable_device(struct cpuidle_device *dev)
213{
214 int ret, i;
215
216 if (dev->enabled)
217 return 0;
Len Brown752138d2010-05-22 16:57:26 -0400218 if (!cpuidle_get_driver() || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400219 return -EIO;
220 if (!dev->state_count)
221 return -EINVAL;
222
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400223 if (dev->registered == 0) {
224 ret = __cpuidle_register_device(dev);
225 if (ret)
226 return ret;
227 }
228
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100229 poll_idle_init(dev);
230
Len Brown4f86d3a2007-10-03 18:58:00 -0400231 if ((ret = cpuidle_add_state_sysfs(dev)))
232 return ret;
233
234 if (cpuidle_curr_governor->enable &&
235 (ret = cpuidle_curr_governor->enable(dev)))
236 goto fail_sysfs;
237
238 for (i = 0; i < dev->state_count; i++) {
Deepthi Dharwar42027352011-10-28 16:20:33 +0530239 dev->states_usage[i].usage = 0;
240 dev->states_usage[i].time = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400241 }
242 dev->last_residency = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400243
244 smp_wmb();
245
246 dev->enabled = 1;
247
248 enabled_devices++;
249 return 0;
250
251fail_sysfs:
252 cpuidle_remove_state_sysfs(dev);
253
254 return ret;
255}
256
257EXPORT_SYMBOL_GPL(cpuidle_enable_device);
258
259/**
260 * cpuidle_disable_device - disables idle PM for a CPU
261 * @dev: the CPU
262 *
263 * This function must be called between cpuidle_pause_and_lock and
264 * cpuidle_resume_and_unlock when used externally.
265 */
266void cpuidle_disable_device(struct cpuidle_device *dev)
267{
268 if (!dev->enabled)
269 return;
Len Brown752138d2010-05-22 16:57:26 -0400270 if (!cpuidle_get_driver() || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400271 return;
272
273 dev->enabled = 0;
274
275 if (cpuidle_curr_governor->disable)
276 cpuidle_curr_governor->disable(dev);
277
278 cpuidle_remove_state_sysfs(dev);
279 enabled_devices--;
280}
281
282EXPORT_SYMBOL_GPL(cpuidle_disable_device);
283
284/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400285 * __cpuidle_register_device - internal register function called before register
286 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400287 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400288 *
289 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400290 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400291static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400292{
293 int ret;
294 struct sys_device *sys_dev = get_cpu_sysdev((unsigned long)dev->cpu);
Len Brown752138d2010-05-22 16:57:26 -0400295 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400296
297 if (!sys_dev)
298 return -EINVAL;
Len Brown752138d2010-05-22 16:57:26 -0400299 if (!try_module_get(cpuidle_driver->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400300 return -EINVAL;
301
302 init_completion(&dev->kobj_unregister);
303
Ai Li71abbbf2010-08-09 17:20:13 -0700304 /*
305 * cpuidle driver should set the dev->power_specified bit
306 * before registering the device if the driver provides
307 * power_usage numbers.
308 *
309 * For those devices whose ->power_specified is not set,
310 * we fill in power_usage with decreasing values as the
311 * cpuidle code has an implicit assumption that state Cn
312 * uses less power than C(n-1).
313 *
314 * With CONFIG_ARCH_HAS_CPU_RELAX, C0 is already assigned
315 * an power value of -1. So we use -2, -3, etc, for other
316 * c-states.
317 */
318 if (!dev->power_specified) {
319 int i;
320 for (i = CPUIDLE_DRIVER_STATE_START; i < dev->state_count; i++)
321 dev->states[i].power_usage = -1 - i;
322 }
323
Len Brown4f86d3a2007-10-03 18:58:00 -0400324 per_cpu(cpuidle_devices, dev->cpu) = dev;
325 list_add(&dev->device_list, &cpuidle_detected_devices);
326 if ((ret = cpuidle_add_sysfs(sys_dev))) {
Len Brown752138d2010-05-22 16:57:26 -0400327 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400328 return ret;
329 }
330
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400331 dev->registered = 1;
332 return 0;
333}
334
335/**
336 * cpuidle_register_device - registers a CPU's idle PM feature
337 * @dev: the cpu
338 */
339int cpuidle_register_device(struct cpuidle_device *dev)
340{
341 int ret;
342
343 mutex_lock(&cpuidle_lock);
344
345 if ((ret = __cpuidle_register_device(dev))) {
346 mutex_unlock(&cpuidle_lock);
347 return ret;
348 }
349
Len Brown4f86d3a2007-10-03 18:58:00 -0400350 cpuidle_enable_device(dev);
351 cpuidle_install_idle_handler();
352
353 mutex_unlock(&cpuidle_lock);
354
355 return 0;
356
357}
358
359EXPORT_SYMBOL_GPL(cpuidle_register_device);
360
361/**
362 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
363 * @dev: the cpu
364 */
365void cpuidle_unregister_device(struct cpuidle_device *dev)
366{
367 struct sys_device *sys_dev = get_cpu_sysdev((unsigned long)dev->cpu);
Len Brown752138d2010-05-22 16:57:26 -0400368 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400369
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400370 if (dev->registered == 0)
371 return;
372
Len Brown4f86d3a2007-10-03 18:58:00 -0400373 cpuidle_pause_and_lock();
374
375 cpuidle_disable_device(dev);
376
377 cpuidle_remove_sysfs(sys_dev);
378 list_del(&dev->device_list);
379 wait_for_completion(&dev->kobj_unregister);
380 per_cpu(cpuidle_devices, dev->cpu) = NULL;
381
382 cpuidle_resume_and_unlock();
383
Len Brown752138d2010-05-22 16:57:26 -0400384 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400385}
386
387EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
388
389#ifdef CONFIG_SMP
390
391static void smp_callback(void *v)
392{
393 /* we already woke the CPU up, nothing more to do */
394}
395
396/*
397 * This function gets called when a part of the kernel has a new latency
398 * requirement. This means we need to get all processors out of their C-state,
399 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
400 * wakes them all right up.
401 */
402static int cpuidle_latency_notify(struct notifier_block *b,
403 unsigned long l, void *v)
404{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200405 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400406 return NOTIFY_OK;
407}
408
409static struct notifier_block cpuidle_latency_notifier = {
410 .notifier_call = cpuidle_latency_notify,
411};
412
Mark Grossd82b3512008-02-04 22:30:08 -0800413static inline void latency_notifier_init(struct notifier_block *n)
414{
415 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
416}
Len Brown4f86d3a2007-10-03 18:58:00 -0400417
418#else /* CONFIG_SMP */
419
420#define latency_notifier_init(x) do { } while (0)
421
422#endif /* CONFIG_SMP */
423
424/**
425 * cpuidle_init - core initializer
426 */
427static int __init cpuidle_init(void)
428{
429 int ret;
430
Len Brown62027ae2011-04-01 18:13:10 -0400431 if (cpuidle_disabled())
432 return -ENODEV;
433
Len Brown4f86d3a2007-10-03 18:58:00 -0400434 ret = cpuidle_add_class_sysfs(&cpu_sysdev_class);
435 if (ret)
436 return ret;
437
438 latency_notifier_init(&cpuidle_latency_notifier);
439
440 return 0;
441}
442
Len Brown62027ae2011-04-01 18:13:10 -0400443module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400444core_initcall(cpuidle_init);