blob: ce4cac706dd163f3ff4fda3c8bcca4e2c24a983f [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/**
Colin Cross56cfbf72012-05-07 17:57:39 -070095 * cpuidle_enter_state - enter the state and update stats
96 * @dev: cpuidle device for this cpu
97 * @drv: cpuidle driver for this cpu
98 * @next_state: index into drv->states of the state to enter
99 */
100int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv,
101 int next_state)
102{
103 int entered_state;
104
105 entered_state = cpuidle_enter_ops(dev, drv, next_state);
106
107 if (entered_state >= 0) {
108 /* Update cpuidle counters */
109 /* This can be moved to within driver enter routine
110 * but that results in multiple copies of same code.
111 */
112 dev->states_usage[entered_state].time +=
113 (unsigned long long)dev->last_residency;
114 dev->states_usage[entered_state].usage++;
115 } else {
116 dev->last_residency = 0;
117 }
118
119 return entered_state;
120}
121
122/**
Len Brown4f86d3a2007-10-03 18:58:00 -0400123 * cpuidle_idle_call - the main idle loop
124 *
125 * NOTE: no locks or semaphores should be used here
Len Browna0bfa132011-04-01 19:34:59 -0400126 * return non-zero on failure
Len Brown4f86d3a2007-10-03 18:58:00 -0400127 */
Len Browna0bfa132011-04-01 19:34:59 -0400128int cpuidle_idle_call(void)
Len Brown4f86d3a2007-10-03 18:58:00 -0400129{
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -0600130 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530131 struct cpuidle_driver *drv = cpuidle_get_driver();
Deepthi Dharware978aa72011-10-28 16:20:09 +0530132 int next_state, entered_state;
Len Brown4f86d3a2007-10-03 18:58:00 -0400133
Len Browna0bfa132011-04-01 19:34:59 -0400134 if (off)
135 return -ENODEV;
136
137 if (!initialized)
138 return -ENODEV;
139
Len Brown4f86d3a2007-10-03 18:58:00 -0400140 /* check if the device is ready */
Len Browna0bfa132011-04-01 19:34:59 -0400141 if (!dev || !dev->enabled)
142 return -EBUSY;
Len Brown4f86d3a2007-10-03 18:58:00 -0400143
144 /* ask the governor for the next state */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530145 next_state = cpuidle_curr_governor->select(drv, dev);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700146 if (need_resched()) {
Youquan Songd73d68d2012-10-26 12:26:59 +0200147 dev->last_residency = 0;
148 /* give the governor an opportunity to reflect on the outcome */
149 if (cpuidle_curr_governor->reflect)
150 cpuidle_curr_governor->reflect(dev, next_state);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700151 local_irq_enable();
Len Browna0bfa132011-04-01 19:34:59 -0400152 return 0;
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700153 }
154
Steven Rostedt76027ea2012-02-07 09:46:01 -0500155 trace_power_start_rcuidle(POWER_CSTATE, next_state, dev->cpu);
156 trace_cpu_idle_rcuidle(next_state, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100157
Colin Cross4126c012012-05-07 17:57:41 -0700158 if (cpuidle_state_is_coupled(dev, drv, next_state))
159 entered_state = cpuidle_enter_state_coupled(dev, drv,
160 next_state);
161 else
162 entered_state = cpuidle_enter_state(dev, drv, next_state);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100163
Steven Rostedt76027ea2012-02-07 09:46:01 -0500164 trace_power_end_rcuidle(dev->cpu);
165 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100166
Len Brown4f86d3a2007-10-03 18:58:00 -0400167 /* give the governor an opportunity to reflect on the outcome */
168 if (cpuidle_curr_governor->reflect)
Deepthi Dharware978aa72011-10-28 16:20:09 +0530169 cpuidle_curr_governor->reflect(dev, entered_state);
Len Browna0bfa132011-04-01 19:34:59 -0400170
171 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400172}
173
174/**
175 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
176 */
177void cpuidle_install_idle_handler(void)
178{
Len Browna0bfa132011-04-01 19:34:59 -0400179 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400180 /* Make sure all changes finished before we switch to new idle */
181 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400182 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400183 }
184}
185
186/**
187 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
188 */
189void cpuidle_uninstall_idle_handler(void)
190{
Len Browna0bfa132011-04-01 19:34:59 -0400191 if (enabled_devices) {
192 initialized = 0;
Thomas Gleixner4a162512012-05-07 17:59:48 +0000193 kick_all_cpus_sync();
Len Brown4f86d3a2007-10-03 18:58:00 -0400194 }
195}
196
197/**
198 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
199 */
200void cpuidle_pause_and_lock(void)
201{
202 mutex_lock(&cpuidle_lock);
203 cpuidle_uninstall_idle_handler();
204}
205
206EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
207
208/**
209 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
210 */
211void cpuidle_resume_and_unlock(void)
212{
213 cpuidle_install_idle_handler();
214 mutex_unlock(&cpuidle_lock);
215}
216
217EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
218
Preeti U Murthy8651f972012-07-09 10:12:56 +0200219/* Currently used in suspend/resume path to suspend cpuidle */
220void cpuidle_pause(void)
221{
222 mutex_lock(&cpuidle_lock);
223 cpuidle_uninstall_idle_handler();
224 mutex_unlock(&cpuidle_lock);
225}
226
227/* Currently used in suspend/resume path to resume cpuidle */
228void cpuidle_resume(void)
229{
230 mutex_lock(&cpuidle_lock);
231 cpuidle_install_idle_handler();
232 mutex_unlock(&cpuidle_lock);
233}
234
Robert Leee1689792012-03-20 15:22:42 -0500235/**
236 * cpuidle_wrap_enter - performs timekeeping and irqen around enter function
237 * @dev: pointer to a valid cpuidle_device object
238 * @drv: pointer to a valid cpuidle_driver object
239 * @index: index of the target cpuidle state.
240 */
241int cpuidle_wrap_enter(struct cpuidle_device *dev,
242 struct cpuidle_driver *drv, int index,
243 int (*enter)(struct cpuidle_device *dev,
244 struct cpuidle_driver *drv, int index))
245{
246 ktime_t time_start, time_end;
247 s64 diff;
248
249 time_start = ktime_get();
250
251 index = enter(dev, drv, index);
252
253 time_end = ktime_get();
254
255 local_irq_enable();
256
257 diff = ktime_to_us(ktime_sub(time_end, time_start));
258 if (diff > INT_MAX)
259 diff = INT_MAX;
260
261 dev->last_residency = (int) diff;
262
263 return index;
264}
265
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100266#ifdef CONFIG_ARCH_HAS_CPU_RELAX
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530267static int poll_idle(struct cpuidle_device *dev,
268 struct cpuidle_driver *drv, int index)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100269{
270 ktime_t t1, t2;
271 s64 diff;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100272
273 t1 = ktime_get();
274 local_irq_enable();
275 while (!need_resched())
276 cpu_relax();
277
278 t2 = ktime_get();
279 diff = ktime_to_us(ktime_sub(t2, t1));
280 if (diff > INT_MAX)
281 diff = INT_MAX;
282
Deepthi Dharware978aa72011-10-28 16:20:09 +0530283 dev->last_residency = (int) diff;
284
285 return index;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100286}
287
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530288static void poll_idle_init(struct cpuidle_driver *drv)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100289{
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530290 struct cpuidle_state *state = &drv->states[0];
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100291
Thomas Renninger720f1c32011-01-07 11:29:43 +0100292 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100293 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
294 state->exit_latency = 0;
295 state->target_residency = 0;
296 state->power_usage = -1;
Len Brownd2476322011-01-12 02:34:59 -0500297 state->flags = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100298 state->enter = poll_idle;
Rafael J. Wysockicbc9ef02012-07-03 19:07:42 +0200299 state->disabled = false;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100300}
301#else
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530302static void poll_idle_init(struct cpuidle_driver *drv) {}
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100303#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
304
Len Brown4f86d3a2007-10-03 18:58:00 -0400305/**
306 * cpuidle_enable_device - enables idle PM for a CPU
307 * @dev: the CPU
308 *
309 * This function must be called between cpuidle_pause_and_lock and
310 * cpuidle_resume_and_unlock when used externally.
311 */
312int cpuidle_enable_device(struct cpuidle_device *dev)
313{
314 int ret, i;
Robert Leee1689792012-03-20 15:22:42 -0500315 struct cpuidle_driver *drv = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400316
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700317 if (!dev)
318 return -EINVAL;
319
Len Brown4f86d3a2007-10-03 18:58:00 -0400320 if (dev->enabled)
321 return 0;
Robert Leee1689792012-03-20 15:22:42 -0500322 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400323 return -EIO;
324 if (!dev->state_count)
Daniel Lezcanofc850f32012-03-26 14:51:26 +0200325 dev->state_count = drv->state_count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400326
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400327 if (dev->registered == 0) {
328 ret = __cpuidle_register_device(dev);
329 if (ret)
330 return ret;
331 }
332
Robert Leee1689792012-03-20 15:22:42 -0500333 cpuidle_enter_ops = drv->en_core_tk_irqen ?
334 cpuidle_enter_tk : cpuidle_enter;
335
336 poll_idle_init(drv);
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100337
Len Brown4f86d3a2007-10-03 18:58:00 -0400338 if ((ret = cpuidle_add_state_sysfs(dev)))
339 return ret;
340
341 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500342 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400343 goto fail_sysfs;
344
345 for (i = 0; i < dev->state_count; i++) {
Deepthi Dharwar42027352011-10-28 16:20:33 +0530346 dev->states_usage[i].usage = 0;
347 dev->states_usage[i].time = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400348 }
349 dev->last_residency = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400350
351 smp_wmb();
352
353 dev->enabled = 1;
354
355 enabled_devices++;
356 return 0;
357
358fail_sysfs:
359 cpuidle_remove_state_sysfs(dev);
360
361 return ret;
362}
363
364EXPORT_SYMBOL_GPL(cpuidle_enable_device);
365
366/**
367 * cpuidle_disable_device - disables idle PM for a CPU
368 * @dev: the CPU
369 *
370 * This function must be called between cpuidle_pause_and_lock and
371 * cpuidle_resume_and_unlock when used externally.
372 */
373void cpuidle_disable_device(struct cpuidle_device *dev)
374{
Srivatsa S. Bhatcf31cd12012-10-08 13:43:08 +0530375 if (!dev || !dev->enabled)
Len Brown4f86d3a2007-10-03 18:58:00 -0400376 return;
Len Brown752138d2010-05-22 16:57:26 -0400377 if (!cpuidle_get_driver() || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400378 return;
379
380 dev->enabled = 0;
381
382 if (cpuidle_curr_governor->disable)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530383 cpuidle_curr_governor->disable(cpuidle_get_driver(), dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400384
385 cpuidle_remove_state_sysfs(dev);
386 enabled_devices--;
387}
388
389EXPORT_SYMBOL_GPL(cpuidle_disable_device);
390
391/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400392 * __cpuidle_register_device - internal register function called before register
393 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400394 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400395 *
396 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400397 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400398static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400399{
400 int ret;
Len Brown752138d2010-05-22 16:57:26 -0400401 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400402
Len Brown752138d2010-05-22 16:57:26 -0400403 if (!try_module_get(cpuidle_driver->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400404 return -EINVAL;
405
Len Brown4f86d3a2007-10-03 18:58:00 -0400406 per_cpu(cpuidle_devices, dev->cpu) = dev;
407 list_add(&dev->device_list, &cpuidle_detected_devices);
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200408 ret = cpuidle_add_sysfs(dev);
Colin Cross3af272a2012-05-07 17:57:40 -0700409 if (ret)
410 goto err_sysfs;
Len Brown4f86d3a2007-10-03 18:58:00 -0400411
Colin Cross4126c012012-05-07 17:57:41 -0700412 ret = cpuidle_coupled_register_device(dev);
413 if (ret)
414 goto err_coupled;
Len Brown4f86d3a2007-10-03 18:58:00 -0400415
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400416 dev->registered = 1;
417 return 0;
Colin Cross3af272a2012-05-07 17:57:40 -0700418
Colin Cross4126c012012-05-07 17:57:41 -0700419err_coupled:
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200420 cpuidle_remove_sysfs(dev);
Colin Cross3af272a2012-05-07 17:57:40 -0700421err_sysfs:
422 list_del(&dev->device_list);
423 per_cpu(cpuidle_devices, dev->cpu) = NULL;
424 module_put(cpuidle_driver->owner);
425 return ret;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400426}
427
428/**
429 * cpuidle_register_device - registers a CPU's idle PM feature
430 * @dev: the cpu
431 */
432int cpuidle_register_device(struct cpuidle_device *dev)
433{
434 int ret;
435
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700436 if (!dev)
437 return -EINVAL;
438
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400439 mutex_lock(&cpuidle_lock);
440
441 if ((ret = __cpuidle_register_device(dev))) {
442 mutex_unlock(&cpuidle_lock);
443 return ret;
444 }
445
Len Brown4f86d3a2007-10-03 18:58:00 -0400446 cpuidle_enable_device(dev);
447 cpuidle_install_idle_handler();
448
449 mutex_unlock(&cpuidle_lock);
450
451 return 0;
452
453}
454
455EXPORT_SYMBOL_GPL(cpuidle_register_device);
456
457/**
458 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
459 * @dev: the cpu
460 */
461void cpuidle_unregister_device(struct cpuidle_device *dev)
462{
Len Brown752138d2010-05-22 16:57:26 -0400463 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400464
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400465 if (dev->registered == 0)
466 return;
467
Len Brown4f86d3a2007-10-03 18:58:00 -0400468 cpuidle_pause_and_lock();
469
470 cpuidle_disable_device(dev);
471
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200472 cpuidle_remove_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400473 list_del(&dev->device_list);
Len Brown4f86d3a2007-10-03 18:58:00 -0400474 per_cpu(cpuidle_devices, dev->cpu) = NULL;
475
Colin Cross4126c012012-05-07 17:57:41 -0700476 cpuidle_coupled_unregister_device(dev);
477
Len Brown4f86d3a2007-10-03 18:58:00 -0400478 cpuidle_resume_and_unlock();
479
Len Brown752138d2010-05-22 16:57:26 -0400480 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400481}
482
483EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
484
485#ifdef CONFIG_SMP
486
487static void smp_callback(void *v)
488{
489 /* we already woke the CPU up, nothing more to do */
490}
491
492/*
493 * This function gets called when a part of the kernel has a new latency
494 * requirement. This means we need to get all processors out of their C-state,
495 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
496 * wakes them all right up.
497 */
498static int cpuidle_latency_notify(struct notifier_block *b,
499 unsigned long l, void *v)
500{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200501 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400502 return NOTIFY_OK;
503}
504
505static struct notifier_block cpuidle_latency_notifier = {
506 .notifier_call = cpuidle_latency_notify,
507};
508
Mark Grossd82b3512008-02-04 22:30:08 -0800509static inline void latency_notifier_init(struct notifier_block *n)
510{
511 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
512}
Len Brown4f86d3a2007-10-03 18:58:00 -0400513
514#else /* CONFIG_SMP */
515
516#define latency_notifier_init(x) do { } while (0)
517
518#endif /* CONFIG_SMP */
519
520/**
521 * cpuidle_init - core initializer
522 */
523static int __init cpuidle_init(void)
524{
525 int ret;
526
Len Brown62027ae2011-04-01 18:13:10 -0400527 if (cpuidle_disabled())
528 return -ENODEV;
529
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800530 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400531 if (ret)
532 return ret;
533
534 latency_notifier_init(&cpuidle_latency_notifier);
535
536 return 0;
537}
538
Len Brown62027ae2011-04-01 18:13:10 -0400539module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400540core_initcall(cpuidle_init);