blob: efa9a2ca30e7df466564f360817946ffe7be0c88 [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
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -040043static int __cpuidle_register_device(struct cpuidle_device *dev);
44
Robert Leee1689792012-03-20 15:22:42 -050045static inline int cpuidle_enter(struct cpuidle_device *dev,
46 struct cpuidle_driver *drv, int index)
47{
48 struct cpuidle_state *target_state = &drv->states[index];
49 return target_state->enter(dev, drv, index);
50}
51
52static inline int cpuidle_enter_tk(struct cpuidle_device *dev,
53 struct cpuidle_driver *drv, int index)
54{
55 return cpuidle_wrap_enter(dev, drv, index, cpuidle_enter);
56}
57
58typedef int (*cpuidle_enter_t)(struct cpuidle_device *dev,
59 struct cpuidle_driver *drv, int index);
60
61static cpuidle_enter_t cpuidle_enter_ops;
62
Len Brown4f86d3a2007-10-03 18:58:00 -040063/**
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010064 * cpuidle_play_dead - cpu off-lining
65 *
Toshi Kaniee01e662012-03-31 21:37:02 -060066 * Returns in case of an error or no driver
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010067 */
68int cpuidle_play_dead(void)
69{
70 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
71 struct cpuidle_driver *drv = cpuidle_get_driver();
72 int i, dead_state = -1;
73 int power_usage = -1;
74
Toshi Kaniee01e662012-03-31 21:37:02 -060075 if (!drv)
76 return -ENODEV;
77
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010078 /* Find lowest-power state that supports long-term idle */
79 for (i = CPUIDLE_DRIVER_STATE_START; i < drv->state_count; i++) {
80 struct cpuidle_state *s = &drv->states[i];
81
82 if (s->power_usage < power_usage && s->enter_dead) {
83 power_usage = s->power_usage;
84 dead_state = i;
85 }
86 }
87
88 if (dead_state != -1)
89 return drv->states[dead_state].enter_dead(dev, dead_state);
90
91 return -ENODEV;
92}
93
94/**
Len Brown4f86d3a2007-10-03 18:58:00 -040095 * cpuidle_idle_call - the main idle loop
96 *
97 * NOTE: no locks or semaphores should be used here
Len Browna0bfa132011-04-01 19:34:59 -040098 * return non-zero on failure
Len Brown4f86d3a2007-10-03 18:58:00 -040099 */
Len Browna0bfa132011-04-01 19:34:59 -0400100int cpuidle_idle_call(void)
Len Brown4f86d3a2007-10-03 18:58:00 -0400101{
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -0600102 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530103 struct cpuidle_driver *drv = cpuidle_get_driver();
Deepthi Dharware978aa72011-10-28 16:20:09 +0530104 int next_state, entered_state;
Len Brown4f86d3a2007-10-03 18:58:00 -0400105
Len Browna0bfa132011-04-01 19:34:59 -0400106 if (off)
107 return -ENODEV;
108
109 if (!initialized)
110 return -ENODEV;
111
Len Brown4f86d3a2007-10-03 18:58:00 -0400112 /* check if the device is ready */
Len Browna0bfa132011-04-01 19:34:59 -0400113 if (!dev || !dev->enabled)
114 return -EBUSY;
Len Brown4f86d3a2007-10-03 18:58:00 -0400115
Arjan van de Ven9a655832008-11-09 12:45:10 -0800116#if 0
117 /* shows regressions, re-enable for 2.6.29 */
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -0700118 /*
119 * run any timers that can be run now, at this point
120 * before calculating the idle duration etc.
121 */
122 hrtimer_peek_ahead_timers();
Arjan van de Ven9a655832008-11-09 12:45:10 -0800123#endif
Ai Li71abbbf2010-08-09 17:20:13 -0700124
Len Brown4f86d3a2007-10-03 18:58:00 -0400125 /* ask the governor for the next state */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530126 next_state = cpuidle_curr_governor->select(drv, dev);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700127 if (need_resched()) {
128 local_irq_enable();
Len Browna0bfa132011-04-01 19:34:59 -0400129 return 0;
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700130 }
131
Steven Rostedt76027ea2012-02-07 09:46:01 -0500132 trace_power_start_rcuidle(POWER_CSTATE, next_state, dev->cpu);
133 trace_cpu_idle_rcuidle(next_state, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100134
Robert Leee1689792012-03-20 15:22:42 -0500135 entered_state = cpuidle_enter_ops(dev, drv, next_state);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100136
Steven Rostedt76027ea2012-02-07 09:46:01 -0500137 trace_power_end_rcuidle(dev->cpu);
138 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100139
Deepthi Dharware978aa72011-10-28 16:20:09 +0530140 if (entered_state >= 0) {
141 /* Update cpuidle counters */
142 /* This can be moved to within driver enter routine
143 * but that results in multiple copies of same code.
144 */
Deepthi Dharwar42027352011-10-28 16:20:33 +0530145 dev->states_usage[entered_state].time +=
Deepthi Dharware978aa72011-10-28 16:20:09 +0530146 (unsigned long long)dev->last_residency;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530147 dev->states_usage[entered_state].usage++;
Robert Leee1689792012-03-20 15:22:42 -0500148 } else {
149 dev->last_residency = 0;
Deepthi Dharware978aa72011-10-28 16:20:09 +0530150 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400151
152 /* give the governor an opportunity to reflect on the outcome */
153 if (cpuidle_curr_governor->reflect)
Deepthi Dharware978aa72011-10-28 16:20:09 +0530154 cpuidle_curr_governor->reflect(dev, entered_state);
Len Browna0bfa132011-04-01 19:34:59 -0400155
156 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400157}
158
159/**
160 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
161 */
162void cpuidle_install_idle_handler(void)
163{
Len Browna0bfa132011-04-01 19:34:59 -0400164 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400165 /* Make sure all changes finished before we switch to new idle */
166 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400167 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400168 }
169}
170
171/**
172 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
173 */
174void cpuidle_uninstall_idle_handler(void)
175{
Len Browna0bfa132011-04-01 19:34:59 -0400176 if (enabled_devices) {
177 initialized = 0;
Thomas Gleixner4a162512012-05-07 17:59:48 +0000178 kick_all_cpus_sync();
Len Brown4f86d3a2007-10-03 18:58:00 -0400179 }
180}
181
182/**
183 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
184 */
185void cpuidle_pause_and_lock(void)
186{
187 mutex_lock(&cpuidle_lock);
188 cpuidle_uninstall_idle_handler();
189}
190
191EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
192
193/**
194 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
195 */
196void cpuidle_resume_and_unlock(void)
197{
198 cpuidle_install_idle_handler();
199 mutex_unlock(&cpuidle_lock);
200}
201
202EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
203
Preeti U Murthy8651f972012-07-09 10:12:56 +0200204/* Currently used in suspend/resume path to suspend cpuidle */
205void cpuidle_pause(void)
206{
207 mutex_lock(&cpuidle_lock);
208 cpuidle_uninstall_idle_handler();
209 mutex_unlock(&cpuidle_lock);
210}
211
212/* Currently used in suspend/resume path to resume cpuidle */
213void cpuidle_resume(void)
214{
215 mutex_lock(&cpuidle_lock);
216 cpuidle_install_idle_handler();
217 mutex_unlock(&cpuidle_lock);
218}
219
Robert Leee1689792012-03-20 15:22:42 -0500220/**
221 * cpuidle_wrap_enter - performs timekeeping and irqen around enter function
222 * @dev: pointer to a valid cpuidle_device object
223 * @drv: pointer to a valid cpuidle_driver object
224 * @index: index of the target cpuidle state.
225 */
226int cpuidle_wrap_enter(struct cpuidle_device *dev,
227 struct cpuidle_driver *drv, int index,
228 int (*enter)(struct cpuidle_device *dev,
229 struct cpuidle_driver *drv, int index))
230{
231 ktime_t time_start, time_end;
232 s64 diff;
233
234 time_start = ktime_get();
235
236 index = enter(dev, drv, index);
237
238 time_end = ktime_get();
239
240 local_irq_enable();
241
242 diff = ktime_to_us(ktime_sub(time_end, time_start));
243 if (diff > INT_MAX)
244 diff = INT_MAX;
245
246 dev->last_residency = (int) diff;
247
248 return index;
249}
250
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100251#ifdef CONFIG_ARCH_HAS_CPU_RELAX
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530252static int poll_idle(struct cpuidle_device *dev,
253 struct cpuidle_driver *drv, int index)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100254{
255 ktime_t t1, t2;
256 s64 diff;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100257
258 t1 = ktime_get();
259 local_irq_enable();
260 while (!need_resched())
261 cpu_relax();
262
263 t2 = ktime_get();
264 diff = ktime_to_us(ktime_sub(t2, t1));
265 if (diff > INT_MAX)
266 diff = INT_MAX;
267
Deepthi Dharware978aa72011-10-28 16:20:09 +0530268 dev->last_residency = (int) diff;
269
270 return index;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100271}
272
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{
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530275 struct cpuidle_state *state = &drv->states[0];
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100276
Thomas Renninger720f1c32011-01-07 11:29:43 +0100277 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100278 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
279 state->exit_latency = 0;
280 state->target_residency = 0;
281 state->power_usage = -1;
Len Brownd2476322011-01-12 02:34:59 -0500282 state->flags = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100283 state->enter = poll_idle;
284}
285#else
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530286static void poll_idle_init(struct cpuidle_driver *drv) {}
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100287#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
288
Len Brown4f86d3a2007-10-03 18:58:00 -0400289/**
290 * cpuidle_enable_device - enables idle PM for a CPU
291 * @dev: the CPU
292 *
293 * This function must be called between cpuidle_pause_and_lock and
294 * cpuidle_resume_and_unlock when used externally.
295 */
296int cpuidle_enable_device(struct cpuidle_device *dev)
297{
298 int ret, i;
Robert Leee1689792012-03-20 15:22:42 -0500299 struct cpuidle_driver *drv = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400300
301 if (dev->enabled)
302 return 0;
Robert Leee1689792012-03-20 15:22:42 -0500303 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400304 return -EIO;
305 if (!dev->state_count)
Daniel Lezcanofc850f32012-03-26 14:51:26 +0200306 dev->state_count = drv->state_count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400307
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400308 if (dev->registered == 0) {
309 ret = __cpuidle_register_device(dev);
310 if (ret)
311 return ret;
312 }
313
Robert Leee1689792012-03-20 15:22:42 -0500314 cpuidle_enter_ops = drv->en_core_tk_irqen ?
315 cpuidle_enter_tk : cpuidle_enter;
316
317 poll_idle_init(drv);
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100318
Len Brown4f86d3a2007-10-03 18:58:00 -0400319 if ((ret = cpuidle_add_state_sysfs(dev)))
320 return ret;
321
322 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500323 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400324 goto fail_sysfs;
325
326 for (i = 0; i < dev->state_count; i++) {
Deepthi Dharwar42027352011-10-28 16:20:33 +0530327 dev->states_usage[i].usage = 0;
328 dev->states_usage[i].time = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400329 }
330 dev->last_residency = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400331
332 smp_wmb();
333
334 dev->enabled = 1;
335
336 enabled_devices++;
337 return 0;
338
339fail_sysfs:
340 cpuidle_remove_state_sysfs(dev);
341
342 return ret;
343}
344
345EXPORT_SYMBOL_GPL(cpuidle_enable_device);
346
347/**
348 * cpuidle_disable_device - disables idle PM for a CPU
349 * @dev: the CPU
350 *
351 * This function must be called between cpuidle_pause_and_lock and
352 * cpuidle_resume_and_unlock when used externally.
353 */
354void cpuidle_disable_device(struct cpuidle_device *dev)
355{
356 if (!dev->enabled)
357 return;
Len Brown752138d2010-05-22 16:57:26 -0400358 if (!cpuidle_get_driver() || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400359 return;
360
361 dev->enabled = 0;
362
363 if (cpuidle_curr_governor->disable)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530364 cpuidle_curr_governor->disable(cpuidle_get_driver(), dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400365
366 cpuidle_remove_state_sysfs(dev);
367 enabled_devices--;
368}
369
370EXPORT_SYMBOL_GPL(cpuidle_disable_device);
371
372/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400373 * __cpuidle_register_device - internal register function called before register
374 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400375 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400376 *
377 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400378 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400379static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400380{
381 int ret;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800382 struct device *cpu_dev = get_cpu_device((unsigned long)dev->cpu);
Len Brown752138d2010-05-22 16:57:26 -0400383 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400384
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800385 if (!dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400386 return -EINVAL;
Len Brown752138d2010-05-22 16:57:26 -0400387 if (!try_module_get(cpuidle_driver->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400388 return -EINVAL;
389
390 init_completion(&dev->kobj_unregister);
391
Len Brown4f86d3a2007-10-03 18:58:00 -0400392 per_cpu(cpuidle_devices, dev->cpu) = dev;
393 list_add(&dev->device_list, &cpuidle_detected_devices);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800394 if ((ret = cpuidle_add_sysfs(cpu_dev))) {
Len Brown752138d2010-05-22 16:57:26 -0400395 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400396 return ret;
397 }
398
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400399 dev->registered = 1;
400 return 0;
401}
402
403/**
404 * cpuidle_register_device - registers a CPU's idle PM feature
405 * @dev: the cpu
406 */
407int cpuidle_register_device(struct cpuidle_device *dev)
408{
409 int ret;
410
411 mutex_lock(&cpuidle_lock);
412
413 if ((ret = __cpuidle_register_device(dev))) {
414 mutex_unlock(&cpuidle_lock);
415 return ret;
416 }
417
Len Brown4f86d3a2007-10-03 18:58:00 -0400418 cpuidle_enable_device(dev);
419 cpuidle_install_idle_handler();
420
421 mutex_unlock(&cpuidle_lock);
422
423 return 0;
424
425}
426
427EXPORT_SYMBOL_GPL(cpuidle_register_device);
428
429/**
430 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
431 * @dev: the cpu
432 */
433void cpuidle_unregister_device(struct cpuidle_device *dev)
434{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800435 struct device *cpu_dev = get_cpu_device((unsigned long)dev->cpu);
Len Brown752138d2010-05-22 16:57:26 -0400436 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400437
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400438 if (dev->registered == 0)
439 return;
440
Len Brown4f86d3a2007-10-03 18:58:00 -0400441 cpuidle_pause_and_lock();
442
443 cpuidle_disable_device(dev);
444
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800445 cpuidle_remove_sysfs(cpu_dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400446 list_del(&dev->device_list);
447 wait_for_completion(&dev->kobj_unregister);
448 per_cpu(cpuidle_devices, dev->cpu) = NULL;
449
450 cpuidle_resume_and_unlock();
451
Len Brown752138d2010-05-22 16:57:26 -0400452 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400453}
454
455EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
456
457#ifdef CONFIG_SMP
458
459static void smp_callback(void *v)
460{
461 /* we already woke the CPU up, nothing more to do */
462}
463
464/*
465 * This function gets called when a part of the kernel has a new latency
466 * requirement. This means we need to get all processors out of their C-state,
467 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
468 * wakes them all right up.
469 */
470static int cpuidle_latency_notify(struct notifier_block *b,
471 unsigned long l, void *v)
472{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200473 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400474 return NOTIFY_OK;
475}
476
477static struct notifier_block cpuidle_latency_notifier = {
478 .notifier_call = cpuidle_latency_notify,
479};
480
Mark Grossd82b3512008-02-04 22:30:08 -0800481static inline void latency_notifier_init(struct notifier_block *n)
482{
483 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
484}
Len Brown4f86d3a2007-10-03 18:58:00 -0400485
486#else /* CONFIG_SMP */
487
488#define latency_notifier_init(x) do { } while (0)
489
490#endif /* CONFIG_SMP */
491
492/**
493 * cpuidle_init - core initializer
494 */
495static int __init cpuidle_init(void)
496{
497 int ret;
498
Len Brown62027ae2011-04-01 18:13:10 -0400499 if (cpuidle_disabled())
500 return -ENODEV;
501
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800502 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400503 if (ret)
504 return ret;
505
506 latency_notifier_init(&cpuidle_latency_notifier);
507
508 return 0;
509}
510
Len Brown62027ae2011-04-01 18:13:10 -0400511module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400512core_initcall(cpuidle_init);