blob: eba69290e0748b8fe5ee201bab4392916675c363 [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);
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +000071 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Daniel Lezcano8aef33a2013-01-15 14:18:04 +010072 int i;
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010073
Toshi Kaniee01e662012-03-31 21:37:02 -060074 if (!drv)
75 return -ENODEV;
76
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010077 /* Find lowest-power state that supports long-term idle */
Daniel Lezcano8aef33a2013-01-15 14:18:04 +010078 for (i = drv->state_count - 1; i >= CPUIDLE_DRIVER_STATE_START; i--)
79 if (drv->states[i].enter_dead)
80 return drv->states[i].enter_dead(dev, i);
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010081
82 return -ENODEV;
83}
84
85/**
Colin Cross56cfbf72012-05-07 17:57:39 -070086 * cpuidle_enter_state - enter the state and update stats
87 * @dev: cpuidle device for this cpu
88 * @drv: cpuidle driver for this cpu
89 * @next_state: index into drv->states of the state to enter
90 */
91int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv,
92 int next_state)
93{
94 int entered_state;
95
96 entered_state = cpuidle_enter_ops(dev, drv, next_state);
97
98 if (entered_state >= 0) {
99 /* Update cpuidle counters */
100 /* This can be moved to within driver enter routine
101 * but that results in multiple copies of same code.
102 */
Julius Wernera474a512012-11-27 14:17:58 +0100103 dev->states_usage[entered_state].time += dev->last_residency;
Colin Cross56cfbf72012-05-07 17:57:39 -0700104 dev->states_usage[entered_state].usage++;
105 } else {
106 dev->last_residency = 0;
107 }
108
109 return entered_state;
110}
111
112/**
Len Brown4f86d3a2007-10-03 18:58:00 -0400113 * cpuidle_idle_call - the main idle loop
114 *
115 * NOTE: no locks or semaphores should be used here
Len Browna0bfa132011-04-01 19:34:59 -0400116 * return non-zero on failure
Len Brown4f86d3a2007-10-03 18:58:00 -0400117 */
Len Browna0bfa132011-04-01 19:34:59 -0400118int cpuidle_idle_call(void)
Len Brown4f86d3a2007-10-03 18:58:00 -0400119{
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -0600120 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000121 struct cpuidle_driver *drv;
Deepthi Dharware978aa72011-10-28 16:20:09 +0530122 int next_state, entered_state;
Len Brown4f86d3a2007-10-03 18:58:00 -0400123
Len Browna0bfa132011-04-01 19:34:59 -0400124 if (off)
125 return -ENODEV;
126
127 if (!initialized)
128 return -ENODEV;
129
Len Brown4f86d3a2007-10-03 18:58:00 -0400130 /* check if the device is ready */
Len Browna0bfa132011-04-01 19:34:59 -0400131 if (!dev || !dev->enabled)
132 return -EBUSY;
Len Brown4f86d3a2007-10-03 18:58:00 -0400133
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000134 drv = cpuidle_get_cpu_driver(dev);
135
Len Brown4f86d3a2007-10-03 18:58:00 -0400136 /* ask the governor for the next state */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530137 next_state = cpuidle_curr_governor->select(drv, dev);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700138 if (need_resched()) {
Youquan Songd73d68d2012-10-26 12:26:59 +0200139 dev->last_residency = 0;
140 /* give the governor an opportunity to reflect on the outcome */
141 if (cpuidle_curr_governor->reflect)
142 cpuidle_curr_governor->reflect(dev, next_state);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700143 local_irq_enable();
Len Browna0bfa132011-04-01 19:34:59 -0400144 return 0;
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700145 }
146
Steven Rostedt76027ea2012-02-07 09:46:01 -0500147 trace_cpu_idle_rcuidle(next_state, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100148
Colin Cross4126c012012-05-07 17:57:41 -0700149 if (cpuidle_state_is_coupled(dev, drv, next_state))
150 entered_state = cpuidle_enter_state_coupled(dev, drv,
151 next_state);
152 else
153 entered_state = cpuidle_enter_state(dev, drv, next_state);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100154
Steven Rostedt76027ea2012-02-07 09:46:01 -0500155 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100156
Len Brown4f86d3a2007-10-03 18:58:00 -0400157 /* give the governor an opportunity to reflect on the outcome */
158 if (cpuidle_curr_governor->reflect)
Deepthi Dharware978aa72011-10-28 16:20:09 +0530159 cpuidle_curr_governor->reflect(dev, entered_state);
Len Browna0bfa132011-04-01 19:34:59 -0400160
161 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400162}
163
164/**
165 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
166 */
167void cpuidle_install_idle_handler(void)
168{
Len Browna0bfa132011-04-01 19:34:59 -0400169 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400170 /* Make sure all changes finished before we switch to new idle */
171 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400172 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400173 }
174}
175
176/**
177 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
178 */
179void cpuidle_uninstall_idle_handler(void)
180{
Len Browna0bfa132011-04-01 19:34:59 -0400181 if (enabled_devices) {
182 initialized = 0;
Thomas Gleixner4a162512012-05-07 17:59:48 +0000183 kick_all_cpus_sync();
Len Brown4f86d3a2007-10-03 18:58:00 -0400184 }
185}
186
187/**
188 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
189 */
190void cpuidle_pause_and_lock(void)
191{
192 mutex_lock(&cpuidle_lock);
193 cpuidle_uninstall_idle_handler();
194}
195
196EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
197
198/**
199 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
200 */
201void cpuidle_resume_and_unlock(void)
202{
203 cpuidle_install_idle_handler();
204 mutex_unlock(&cpuidle_lock);
205}
206
207EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
208
Preeti U Murthy8651f972012-07-09 10:12:56 +0200209/* Currently used in suspend/resume path to suspend cpuidle */
210void cpuidle_pause(void)
211{
212 mutex_lock(&cpuidle_lock);
213 cpuidle_uninstall_idle_handler();
214 mutex_unlock(&cpuidle_lock);
215}
216
217/* Currently used in suspend/resume path to resume cpuidle */
218void cpuidle_resume(void)
219{
220 mutex_lock(&cpuidle_lock);
221 cpuidle_install_idle_handler();
222 mutex_unlock(&cpuidle_lock);
223}
224
Robert Leee1689792012-03-20 15:22:42 -0500225/**
226 * cpuidle_wrap_enter - performs timekeeping and irqen around enter function
227 * @dev: pointer to a valid cpuidle_device object
228 * @drv: pointer to a valid cpuidle_driver object
229 * @index: index of the target cpuidle state.
230 */
231int cpuidle_wrap_enter(struct cpuidle_device *dev,
232 struct cpuidle_driver *drv, int index,
233 int (*enter)(struct cpuidle_device *dev,
234 struct cpuidle_driver *drv, int index))
235{
236 ktime_t time_start, time_end;
237 s64 diff;
238
239 time_start = ktime_get();
240
241 index = enter(dev, drv, index);
242
243 time_end = ktime_get();
244
245 local_irq_enable();
246
247 diff = ktime_to_us(ktime_sub(time_end, time_start));
248 if (diff > INT_MAX)
249 diff = INT_MAX;
250
251 dev->last_residency = (int) diff;
252
253 return index;
254}
255
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100256#ifdef CONFIG_ARCH_HAS_CPU_RELAX
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530257static int poll_idle(struct cpuidle_device *dev,
258 struct cpuidle_driver *drv, int index)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100259{
260 ktime_t t1, t2;
261 s64 diff;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100262
263 t1 = ktime_get();
264 local_irq_enable();
265 while (!need_resched())
266 cpu_relax();
267
268 t2 = ktime_get();
269 diff = ktime_to_us(ktime_sub(t2, t1));
270 if (diff > INT_MAX)
271 diff = INT_MAX;
272
Deepthi Dharware978aa72011-10-28 16:20:09 +0530273 dev->last_residency = (int) diff;
274
275 return index;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100276}
277
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530278static void poll_idle_init(struct cpuidle_driver *drv)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100279{
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530280 struct cpuidle_state *state = &drv->states[0];
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100281
Thomas Renninger720f1c32011-01-07 11:29:43 +0100282 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100283 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
284 state->exit_latency = 0;
285 state->target_residency = 0;
286 state->power_usage = -1;
Len Brownd2476322011-01-12 02:34:59 -0500287 state->flags = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100288 state->enter = poll_idle;
Rafael J. Wysockicbc9ef02012-07-03 19:07:42 +0200289 state->disabled = false;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100290}
291#else
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530292static void poll_idle_init(struct cpuidle_driver *drv) {}
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100293#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
294
Len Brown4f86d3a2007-10-03 18:58:00 -0400295/**
296 * cpuidle_enable_device - enables idle PM for a CPU
297 * @dev: the CPU
298 *
299 * This function must be called between cpuidle_pause_and_lock and
300 * cpuidle_resume_and_unlock when used externally.
301 */
302int cpuidle_enable_device(struct cpuidle_device *dev)
303{
304 int ret, i;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000305 struct cpuidle_driver *drv;
Len Brown4f86d3a2007-10-03 18:58:00 -0400306
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700307 if (!dev)
308 return -EINVAL;
309
Len Brown4f86d3a2007-10-03 18:58:00 -0400310 if (dev->enabled)
311 return 0;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000312
313 drv = cpuidle_get_cpu_driver(dev);
314
Robert Leee1689792012-03-20 15:22:42 -0500315 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400316 return -EIO;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000317
Len Brown4f86d3a2007-10-03 18:58:00 -0400318 if (!dev->state_count)
Daniel Lezcanofc850f32012-03-26 14:51:26 +0200319 dev->state_count = drv->state_count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400320
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400321 if (dev->registered == 0) {
322 ret = __cpuidle_register_device(dev);
323 if (ret)
324 return ret;
325 }
326
Robert Leee1689792012-03-20 15:22:42 -0500327 cpuidle_enter_ops = drv->en_core_tk_irqen ?
328 cpuidle_enter_tk : cpuidle_enter;
329
330 poll_idle_init(drv);
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100331
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000332 ret = cpuidle_add_device_sysfs(dev);
333 if (ret)
Len Brown4f86d3a2007-10-03 18:58:00 -0400334 return ret;
335
336 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500337 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400338 goto fail_sysfs;
339
340 for (i = 0; i < dev->state_count; i++) {
Deepthi Dharwar42027352011-10-28 16:20:33 +0530341 dev->states_usage[i].usage = 0;
342 dev->states_usage[i].time = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400343 }
344 dev->last_residency = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400345
346 smp_wmb();
347
348 dev->enabled = 1;
349
350 enabled_devices++;
351 return 0;
352
353fail_sysfs:
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000354 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400355
356 return ret;
357}
358
359EXPORT_SYMBOL_GPL(cpuidle_enable_device);
360
361/**
362 * cpuidle_disable_device - disables idle PM for a CPU
363 * @dev: the CPU
364 *
365 * This function must be called between cpuidle_pause_and_lock and
366 * cpuidle_resume_and_unlock when used externally.
367 */
368void cpuidle_disable_device(struct cpuidle_device *dev)
369{
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000370 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
371
Srivatsa S. Bhatcf31cd12012-10-08 13:43:08 +0530372 if (!dev || !dev->enabled)
Len Brown4f86d3a2007-10-03 18:58:00 -0400373 return;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000374
375 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400376 return;
377
378 dev->enabled = 0;
379
380 if (cpuidle_curr_governor->disable)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000381 cpuidle_curr_governor->disable(drv, dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400382
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000383 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400384 enabled_devices--;
385}
386
387EXPORT_SYMBOL_GPL(cpuidle_disable_device);
388
389/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400390 * __cpuidle_register_device - internal register function called before register
391 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400392 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400393 *
394 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400395 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400396static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400397{
398 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000399 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400400
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000401 if (!try_module_get(drv->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400402 return -EINVAL;
403
Len Brown4f86d3a2007-10-03 18:58:00 -0400404 per_cpu(cpuidle_devices, dev->cpu) = dev;
405 list_add(&dev->device_list, &cpuidle_detected_devices);
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200406 ret = cpuidle_add_sysfs(dev);
Colin Cross3af272a2012-05-07 17:57:40 -0700407 if (ret)
408 goto err_sysfs;
Len Brown4f86d3a2007-10-03 18:58:00 -0400409
Colin Cross4126c012012-05-07 17:57:41 -0700410 ret = cpuidle_coupled_register_device(dev);
411 if (ret)
412 goto err_coupled;
Len Brown4f86d3a2007-10-03 18:58:00 -0400413
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400414 dev->registered = 1;
415 return 0;
Colin Cross3af272a2012-05-07 17:57:40 -0700416
Colin Cross4126c012012-05-07 17:57:41 -0700417err_coupled:
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200418 cpuidle_remove_sysfs(dev);
Colin Cross3af272a2012-05-07 17:57:40 -0700419err_sysfs:
420 list_del(&dev->device_list);
421 per_cpu(cpuidle_devices, dev->cpu) = NULL;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000422 module_put(drv->owner);
Colin Cross3af272a2012-05-07 17:57:40 -0700423 return ret;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400424}
425
426/**
427 * cpuidle_register_device - registers a CPU's idle PM feature
428 * @dev: the cpu
429 */
430int cpuidle_register_device(struct cpuidle_device *dev)
431{
432 int ret;
433
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700434 if (!dev)
435 return -EINVAL;
436
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400437 mutex_lock(&cpuidle_lock);
438
439 if ((ret = __cpuidle_register_device(dev))) {
440 mutex_unlock(&cpuidle_lock);
441 return ret;
442 }
443
Len Brown4f86d3a2007-10-03 18:58:00 -0400444 cpuidle_enable_device(dev);
445 cpuidle_install_idle_handler();
446
447 mutex_unlock(&cpuidle_lock);
448
449 return 0;
450
451}
452
453EXPORT_SYMBOL_GPL(cpuidle_register_device);
454
455/**
456 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
457 * @dev: the cpu
458 */
459void cpuidle_unregister_device(struct cpuidle_device *dev)
460{
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000461 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400462
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400463 if (dev->registered == 0)
464 return;
465
Len Brown4f86d3a2007-10-03 18:58:00 -0400466 cpuidle_pause_and_lock();
467
468 cpuidle_disable_device(dev);
469
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200470 cpuidle_remove_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400471 list_del(&dev->device_list);
Len Brown4f86d3a2007-10-03 18:58:00 -0400472 per_cpu(cpuidle_devices, dev->cpu) = NULL;
473
Colin Cross4126c012012-05-07 17:57:41 -0700474 cpuidle_coupled_unregister_device(dev);
475
Len Brown4f86d3a2007-10-03 18:58:00 -0400476 cpuidle_resume_and_unlock();
477
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000478 module_put(drv->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400479}
480
481EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
482
483#ifdef CONFIG_SMP
484
485static void smp_callback(void *v)
486{
487 /* we already woke the CPU up, nothing more to do */
488}
489
490/*
491 * This function gets called when a part of the kernel has a new latency
492 * requirement. This means we need to get all processors out of their C-state,
493 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
494 * wakes them all right up.
495 */
496static int cpuidle_latency_notify(struct notifier_block *b,
497 unsigned long l, void *v)
498{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200499 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400500 return NOTIFY_OK;
501}
502
503static struct notifier_block cpuidle_latency_notifier = {
504 .notifier_call = cpuidle_latency_notify,
505};
506
Mark Grossd82b3512008-02-04 22:30:08 -0800507static inline void latency_notifier_init(struct notifier_block *n)
508{
509 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
510}
Len Brown4f86d3a2007-10-03 18:58:00 -0400511
512#else /* CONFIG_SMP */
513
514#define latency_notifier_init(x) do { } while (0)
515
516#endif /* CONFIG_SMP */
517
518/**
519 * cpuidle_init - core initializer
520 */
521static int __init cpuidle_init(void)
522{
523 int ret;
524
Len Brown62027ae2011-04-01 18:13:10 -0400525 if (cpuidle_disabled())
526 return -ENODEV;
527
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800528 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400529 if (ret)
530 return ret;
531
532 latency_notifier_init(&cpuidle_latency_notifier);
533
534 return 0;
535}
536
Len Brown62027ae2011-04-01 18:13:10 -0400537module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400538core_initcall(cpuidle_init);