blob: 711dd83fd3ba4f8dd9b8ed586f8abacba3e796f5 [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);
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010072 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);
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000131 struct cpuidle_driver *drv;
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
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000144 drv = cpuidle_get_cpu_driver(dev);
145
Len Brown4f86d3a2007-10-03 18:58:00 -0400146 /* ask the governor for the next state */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530147 next_state = cpuidle_curr_governor->select(drv, dev);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700148 if (need_resched()) {
Youquan Songd73d68d2012-10-26 12:26:59 +0200149 dev->last_residency = 0;
150 /* give the governor an opportunity to reflect on the outcome */
151 if (cpuidle_curr_governor->reflect)
152 cpuidle_curr_governor->reflect(dev, next_state);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700153 local_irq_enable();
Len Browna0bfa132011-04-01 19:34:59 -0400154 return 0;
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700155 }
156
Steven Rostedt76027ea2012-02-07 09:46:01 -0500157 trace_power_start_rcuidle(POWER_CSTATE, next_state, dev->cpu);
158 trace_cpu_idle_rcuidle(next_state, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100159
Colin Cross4126c012012-05-07 17:57:41 -0700160 if (cpuidle_state_is_coupled(dev, drv, next_state))
161 entered_state = cpuidle_enter_state_coupled(dev, drv,
162 next_state);
163 else
164 entered_state = cpuidle_enter_state(dev, drv, next_state);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100165
Steven Rostedt76027ea2012-02-07 09:46:01 -0500166 trace_power_end_rcuidle(dev->cpu);
167 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100168
Len Brown4f86d3a2007-10-03 18:58:00 -0400169 /* give the governor an opportunity to reflect on the outcome */
170 if (cpuidle_curr_governor->reflect)
Deepthi Dharware978aa72011-10-28 16:20:09 +0530171 cpuidle_curr_governor->reflect(dev, entered_state);
Len Browna0bfa132011-04-01 19:34:59 -0400172
173 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400174}
175
176/**
177 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
178 */
179void cpuidle_install_idle_handler(void)
180{
Len Browna0bfa132011-04-01 19:34:59 -0400181 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400182 /* Make sure all changes finished before we switch to new idle */
183 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400184 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400185 }
186}
187
188/**
189 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
190 */
191void cpuidle_uninstall_idle_handler(void)
192{
Len Browna0bfa132011-04-01 19:34:59 -0400193 if (enabled_devices) {
194 initialized = 0;
Thomas Gleixner4a162512012-05-07 17:59:48 +0000195 kick_all_cpus_sync();
Len Brown4f86d3a2007-10-03 18:58:00 -0400196 }
197}
198
199/**
200 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
201 */
202void cpuidle_pause_and_lock(void)
203{
204 mutex_lock(&cpuidle_lock);
205 cpuidle_uninstall_idle_handler();
206}
207
208EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
209
210/**
211 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
212 */
213void cpuidle_resume_and_unlock(void)
214{
215 cpuidle_install_idle_handler();
216 mutex_unlock(&cpuidle_lock);
217}
218
219EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
220
Preeti U Murthy8651f972012-07-09 10:12:56 +0200221/* Currently used in suspend/resume path to suspend cpuidle */
222void cpuidle_pause(void)
223{
224 mutex_lock(&cpuidle_lock);
225 cpuidle_uninstall_idle_handler();
226 mutex_unlock(&cpuidle_lock);
227}
228
229/* Currently used in suspend/resume path to resume cpuidle */
230void cpuidle_resume(void)
231{
232 mutex_lock(&cpuidle_lock);
233 cpuidle_install_idle_handler();
234 mutex_unlock(&cpuidle_lock);
235}
236
Robert Leee1689792012-03-20 15:22:42 -0500237/**
238 * cpuidle_wrap_enter - performs timekeeping and irqen around enter function
239 * @dev: pointer to a valid cpuidle_device object
240 * @drv: pointer to a valid cpuidle_driver object
241 * @index: index of the target cpuidle state.
242 */
243int cpuidle_wrap_enter(struct cpuidle_device *dev,
244 struct cpuidle_driver *drv, int index,
245 int (*enter)(struct cpuidle_device *dev,
246 struct cpuidle_driver *drv, int index))
247{
248 ktime_t time_start, time_end;
249 s64 diff;
250
251 time_start = ktime_get();
252
253 index = enter(dev, drv, index);
254
255 time_end = ktime_get();
256
257 local_irq_enable();
258
259 diff = ktime_to_us(ktime_sub(time_end, time_start));
260 if (diff > INT_MAX)
261 diff = INT_MAX;
262
263 dev->last_residency = (int) diff;
264
265 return index;
266}
267
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100268#ifdef CONFIG_ARCH_HAS_CPU_RELAX
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530269static int poll_idle(struct cpuidle_device *dev,
270 struct cpuidle_driver *drv, int index)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100271{
272 ktime_t t1, t2;
273 s64 diff;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100274
275 t1 = ktime_get();
276 local_irq_enable();
277 while (!need_resched())
278 cpu_relax();
279
280 t2 = ktime_get();
281 diff = ktime_to_us(ktime_sub(t2, t1));
282 if (diff > INT_MAX)
283 diff = INT_MAX;
284
Deepthi Dharware978aa72011-10-28 16:20:09 +0530285 dev->last_residency = (int) diff;
286
287 return index;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100288}
289
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530290static void poll_idle_init(struct cpuidle_driver *drv)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100291{
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530292 struct cpuidle_state *state = &drv->states[0];
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100293
Thomas Renninger720f1c32011-01-07 11:29:43 +0100294 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100295 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
296 state->exit_latency = 0;
297 state->target_residency = 0;
298 state->power_usage = -1;
Len Brownd2476322011-01-12 02:34:59 -0500299 state->flags = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100300 state->enter = poll_idle;
Rafael J. Wysockicbc9ef02012-07-03 19:07:42 +0200301 state->disabled = false;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100302}
303#else
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530304static void poll_idle_init(struct cpuidle_driver *drv) {}
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100305#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
306
Len Brown4f86d3a2007-10-03 18:58:00 -0400307/**
308 * cpuidle_enable_device - enables idle PM for a CPU
309 * @dev: the CPU
310 *
311 * This function must be called between cpuidle_pause_and_lock and
312 * cpuidle_resume_and_unlock when used externally.
313 */
314int cpuidle_enable_device(struct cpuidle_device *dev)
315{
316 int ret, i;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000317 struct cpuidle_driver *drv;
Len Brown4f86d3a2007-10-03 18:58:00 -0400318
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700319 if (!dev)
320 return -EINVAL;
321
Len Brown4f86d3a2007-10-03 18:58:00 -0400322 if (dev->enabled)
323 return 0;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000324
325 drv = cpuidle_get_cpu_driver(dev);
326
Robert Leee1689792012-03-20 15:22:42 -0500327 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400328 return -EIO;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000329
Len Brown4f86d3a2007-10-03 18:58:00 -0400330 if (!dev->state_count)
Daniel Lezcanofc850f32012-03-26 14:51:26 +0200331 dev->state_count = drv->state_count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400332
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400333 if (dev->registered == 0) {
334 ret = __cpuidle_register_device(dev);
335 if (ret)
336 return ret;
337 }
338
Robert Leee1689792012-03-20 15:22:42 -0500339 cpuidle_enter_ops = drv->en_core_tk_irqen ?
340 cpuidle_enter_tk : cpuidle_enter;
341
342 poll_idle_init(drv);
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100343
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000344 ret = cpuidle_add_device_sysfs(dev);
345 if (ret)
Len Brown4f86d3a2007-10-03 18:58:00 -0400346 return ret;
347
348 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500349 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400350 goto fail_sysfs;
351
352 for (i = 0; i < dev->state_count; i++) {
Deepthi Dharwar42027352011-10-28 16:20:33 +0530353 dev->states_usage[i].usage = 0;
354 dev->states_usage[i].time = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400355 }
356 dev->last_residency = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400357
358 smp_wmb();
359
360 dev->enabled = 1;
361
362 enabled_devices++;
363 return 0;
364
365fail_sysfs:
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000366 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400367
368 return ret;
369}
370
371EXPORT_SYMBOL_GPL(cpuidle_enable_device);
372
373/**
374 * cpuidle_disable_device - disables idle PM for a CPU
375 * @dev: the CPU
376 *
377 * This function must be called between cpuidle_pause_and_lock and
378 * cpuidle_resume_and_unlock when used externally.
379 */
380void cpuidle_disable_device(struct cpuidle_device *dev)
381{
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000382 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
383
Srivatsa S. Bhatcf31cd12012-10-08 13:43:08 +0530384 if (!dev || !dev->enabled)
Len Brown4f86d3a2007-10-03 18:58:00 -0400385 return;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000386
387 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400388 return;
389
390 dev->enabled = 0;
391
392 if (cpuidle_curr_governor->disable)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000393 cpuidle_curr_governor->disable(drv, dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400394
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000395 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400396 enabled_devices--;
397}
398
399EXPORT_SYMBOL_GPL(cpuidle_disable_device);
400
401/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400402 * __cpuidle_register_device - internal register function called before register
403 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400404 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400405 *
406 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400407 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400408static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400409{
410 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000411 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400412
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000413 if (!try_module_get(drv->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400414 return -EINVAL;
415
Len Brown4f86d3a2007-10-03 18:58:00 -0400416 per_cpu(cpuidle_devices, dev->cpu) = dev;
417 list_add(&dev->device_list, &cpuidle_detected_devices);
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200418 ret = cpuidle_add_sysfs(dev);
Colin Cross3af272a2012-05-07 17:57:40 -0700419 if (ret)
420 goto err_sysfs;
Len Brown4f86d3a2007-10-03 18:58:00 -0400421
Colin Cross4126c012012-05-07 17:57:41 -0700422 ret = cpuidle_coupled_register_device(dev);
423 if (ret)
424 goto err_coupled;
Len Brown4f86d3a2007-10-03 18:58:00 -0400425
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400426 dev->registered = 1;
427 return 0;
Colin Cross3af272a2012-05-07 17:57:40 -0700428
Colin Cross4126c012012-05-07 17:57:41 -0700429err_coupled:
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200430 cpuidle_remove_sysfs(dev);
Colin Cross3af272a2012-05-07 17:57:40 -0700431err_sysfs:
432 list_del(&dev->device_list);
433 per_cpu(cpuidle_devices, dev->cpu) = NULL;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000434 module_put(drv->owner);
Colin Cross3af272a2012-05-07 17:57:40 -0700435 return ret;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400436}
437
438/**
439 * cpuidle_register_device - registers a CPU's idle PM feature
440 * @dev: the cpu
441 */
442int cpuidle_register_device(struct cpuidle_device *dev)
443{
444 int ret;
445
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700446 if (!dev)
447 return -EINVAL;
448
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400449 mutex_lock(&cpuidle_lock);
450
451 if ((ret = __cpuidle_register_device(dev))) {
452 mutex_unlock(&cpuidle_lock);
453 return ret;
454 }
455
Len Brown4f86d3a2007-10-03 18:58:00 -0400456 cpuidle_enable_device(dev);
457 cpuidle_install_idle_handler();
458
459 mutex_unlock(&cpuidle_lock);
460
461 return 0;
462
463}
464
465EXPORT_SYMBOL_GPL(cpuidle_register_device);
466
467/**
468 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
469 * @dev: the cpu
470 */
471void cpuidle_unregister_device(struct cpuidle_device *dev)
472{
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000473 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400474
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400475 if (dev->registered == 0)
476 return;
477
Len Brown4f86d3a2007-10-03 18:58:00 -0400478 cpuidle_pause_and_lock();
479
480 cpuidle_disable_device(dev);
481
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200482 cpuidle_remove_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400483 list_del(&dev->device_list);
Len Brown4f86d3a2007-10-03 18:58:00 -0400484 per_cpu(cpuidle_devices, dev->cpu) = NULL;
485
Colin Cross4126c012012-05-07 17:57:41 -0700486 cpuidle_coupled_unregister_device(dev);
487
Len Brown4f86d3a2007-10-03 18:58:00 -0400488 cpuidle_resume_and_unlock();
489
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000490 module_put(drv->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400491}
492
493EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
494
495#ifdef CONFIG_SMP
496
497static void smp_callback(void *v)
498{
499 /* we already woke the CPU up, nothing more to do */
500}
501
502/*
503 * This function gets called when a part of the kernel has a new latency
504 * requirement. This means we need to get all processors out of their C-state,
505 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
506 * wakes them all right up.
507 */
508static int cpuidle_latency_notify(struct notifier_block *b,
509 unsigned long l, void *v)
510{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200511 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400512 return NOTIFY_OK;
513}
514
515static struct notifier_block cpuidle_latency_notifier = {
516 .notifier_call = cpuidle_latency_notify,
517};
518
Mark Grossd82b3512008-02-04 22:30:08 -0800519static inline void latency_notifier_init(struct notifier_block *n)
520{
521 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
522}
Len Brown4f86d3a2007-10-03 18:58:00 -0400523
524#else /* CONFIG_SMP */
525
526#define latency_notifier_init(x) do { } while (0)
527
528#endif /* CONFIG_SMP */
529
530/**
531 * cpuidle_init - core initializer
532 */
533static int __init cpuidle_init(void)
534{
535 int ret;
536
Len Brown62027ae2011-04-01 18:13:10 -0400537 if (cpuidle_disabled())
538 return -ENODEV;
539
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800540 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400541 if (ret)
542 return ret;
543
544 latency_notifier_init(&cpuidle_latency_notifier);
545
546 return 0;
547}
548
Len Brown62027ae2011-04-01 18:13:10 -0400549module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400550core_initcall(cpuidle_init);