blob: fb4a7dd57f94f479adf8a3dd93e35e4f348b65d3 [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;
Sivaram Nair0e5537b2012-12-18 13:52:50 +010073 int power_usage = INT_MAX;
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010074
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 */
Julius Wernera474a512012-11-27 14:17:58 +0100112 dev->states_usage[entered_state].time += dev->last_residency;
Colin Cross56cfbf72012-05-07 17:57:39 -0700113 dev->states_usage[entered_state].usage++;
114 } else {
115 dev->last_residency = 0;
116 }
117
118 return entered_state;
119}
120
121/**
Len Brown4f86d3a2007-10-03 18:58:00 -0400122 * cpuidle_idle_call - the main idle loop
123 *
124 * NOTE: no locks or semaphores should be used here
Len Browna0bfa132011-04-01 19:34:59 -0400125 * return non-zero on failure
Len Brown4f86d3a2007-10-03 18:58:00 -0400126 */
Len Browna0bfa132011-04-01 19:34:59 -0400127int cpuidle_idle_call(void)
Len Brown4f86d3a2007-10-03 18:58:00 -0400128{
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -0600129 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000130 struct cpuidle_driver *drv;
Deepthi Dharware978aa72011-10-28 16:20:09 +0530131 int next_state, entered_state;
Len Brown4f86d3a2007-10-03 18:58:00 -0400132
Len Browna0bfa132011-04-01 19:34:59 -0400133 if (off)
134 return -ENODEV;
135
136 if (!initialized)
137 return -ENODEV;
138
Len Brown4f86d3a2007-10-03 18:58:00 -0400139 /* check if the device is ready */
Len Browna0bfa132011-04-01 19:34:59 -0400140 if (!dev || !dev->enabled)
141 return -EBUSY;
Len Brown4f86d3a2007-10-03 18:58:00 -0400142
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000143 drv = cpuidle_get_cpu_driver(dev);
144
Len Brown4f86d3a2007-10-03 18:58:00 -0400145 /* ask the governor for the next state */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530146 next_state = cpuidle_curr_governor->select(drv, dev);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700147 if (need_resched()) {
Youquan Songd73d68d2012-10-26 12:26:59 +0200148 dev->last_residency = 0;
149 /* give the governor an opportunity to reflect on the outcome */
150 if (cpuidle_curr_governor->reflect)
151 cpuidle_curr_governor->reflect(dev, next_state);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700152 local_irq_enable();
Len Browna0bfa132011-04-01 19:34:59 -0400153 return 0;
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700154 }
155
Steven Rostedt76027ea2012-02-07 09:46:01 -0500156 trace_power_start_rcuidle(POWER_CSTATE, next_state, dev->cpu);
157 trace_cpu_idle_rcuidle(next_state, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100158
Colin Cross4126c012012-05-07 17:57:41 -0700159 if (cpuidle_state_is_coupled(dev, drv, next_state))
160 entered_state = cpuidle_enter_state_coupled(dev, drv,
161 next_state);
162 else
163 entered_state = cpuidle_enter_state(dev, drv, next_state);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100164
Steven Rostedt76027ea2012-02-07 09:46:01 -0500165 trace_power_end_rcuidle(dev->cpu);
166 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100167
Len Brown4f86d3a2007-10-03 18:58:00 -0400168 /* give the governor an opportunity to reflect on the outcome */
169 if (cpuidle_curr_governor->reflect)
Deepthi Dharware978aa72011-10-28 16:20:09 +0530170 cpuidle_curr_governor->reflect(dev, entered_state);
Len Browna0bfa132011-04-01 19:34:59 -0400171
172 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400173}
174
175/**
176 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
177 */
178void cpuidle_install_idle_handler(void)
179{
Len Browna0bfa132011-04-01 19:34:59 -0400180 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400181 /* Make sure all changes finished before we switch to new idle */
182 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400183 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400184 }
185}
186
187/**
188 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
189 */
190void cpuidle_uninstall_idle_handler(void)
191{
Len Browna0bfa132011-04-01 19:34:59 -0400192 if (enabled_devices) {
193 initialized = 0;
Thomas Gleixner4a162512012-05-07 17:59:48 +0000194 kick_all_cpus_sync();
Len Brown4f86d3a2007-10-03 18:58:00 -0400195 }
196}
197
198/**
199 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
200 */
201void cpuidle_pause_and_lock(void)
202{
203 mutex_lock(&cpuidle_lock);
204 cpuidle_uninstall_idle_handler();
205}
206
207EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
208
209/**
210 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
211 */
212void cpuidle_resume_and_unlock(void)
213{
214 cpuidle_install_idle_handler();
215 mutex_unlock(&cpuidle_lock);
216}
217
218EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
219
Preeti U Murthy8651f972012-07-09 10:12:56 +0200220/* Currently used in suspend/resume path to suspend cpuidle */
221void cpuidle_pause(void)
222{
223 mutex_lock(&cpuidle_lock);
224 cpuidle_uninstall_idle_handler();
225 mutex_unlock(&cpuidle_lock);
226}
227
228/* Currently used in suspend/resume path to resume cpuidle */
229void cpuidle_resume(void)
230{
231 mutex_lock(&cpuidle_lock);
232 cpuidle_install_idle_handler();
233 mutex_unlock(&cpuidle_lock);
234}
235
Robert Leee1689792012-03-20 15:22:42 -0500236/**
237 * cpuidle_wrap_enter - performs timekeeping and irqen around enter function
238 * @dev: pointer to a valid cpuidle_device object
239 * @drv: pointer to a valid cpuidle_driver object
240 * @index: index of the target cpuidle state.
241 */
242int cpuidle_wrap_enter(struct cpuidle_device *dev,
243 struct cpuidle_driver *drv, int index,
244 int (*enter)(struct cpuidle_device *dev,
245 struct cpuidle_driver *drv, int index))
246{
247 ktime_t time_start, time_end;
248 s64 diff;
249
250 time_start = ktime_get();
251
252 index = enter(dev, drv, index);
253
254 time_end = ktime_get();
255
256 local_irq_enable();
257
258 diff = ktime_to_us(ktime_sub(time_end, time_start));
259 if (diff > INT_MAX)
260 diff = INT_MAX;
261
262 dev->last_residency = (int) diff;
263
264 return index;
265}
266
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100267#ifdef CONFIG_ARCH_HAS_CPU_RELAX
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530268static int poll_idle(struct cpuidle_device *dev,
269 struct cpuidle_driver *drv, int index)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100270{
271 ktime_t t1, t2;
272 s64 diff;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100273
274 t1 = ktime_get();
275 local_irq_enable();
276 while (!need_resched())
277 cpu_relax();
278
279 t2 = ktime_get();
280 diff = ktime_to_us(ktime_sub(t2, t1));
281 if (diff > INT_MAX)
282 diff = INT_MAX;
283
Deepthi Dharware978aa72011-10-28 16:20:09 +0530284 dev->last_residency = (int) diff;
285
286 return index;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100287}
288
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530289static void poll_idle_init(struct cpuidle_driver *drv)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100290{
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530291 struct cpuidle_state *state = &drv->states[0];
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100292
Thomas Renninger720f1c32011-01-07 11:29:43 +0100293 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100294 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
295 state->exit_latency = 0;
296 state->target_residency = 0;
297 state->power_usage = -1;
Len Brownd2476322011-01-12 02:34:59 -0500298 state->flags = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100299 state->enter = poll_idle;
Rafael J. Wysockicbc9ef02012-07-03 19:07:42 +0200300 state->disabled = false;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100301}
302#else
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530303static void poll_idle_init(struct cpuidle_driver *drv) {}
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100304#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
305
Len Brown4f86d3a2007-10-03 18:58:00 -0400306/**
307 * cpuidle_enable_device - enables idle PM for a CPU
308 * @dev: the CPU
309 *
310 * This function must be called between cpuidle_pause_and_lock and
311 * cpuidle_resume_and_unlock when used externally.
312 */
313int cpuidle_enable_device(struct cpuidle_device *dev)
314{
315 int ret, i;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000316 struct cpuidle_driver *drv;
Len Brown4f86d3a2007-10-03 18:58:00 -0400317
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700318 if (!dev)
319 return -EINVAL;
320
Len Brown4f86d3a2007-10-03 18:58:00 -0400321 if (dev->enabled)
322 return 0;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000323
324 drv = cpuidle_get_cpu_driver(dev);
325
Robert Leee1689792012-03-20 15:22:42 -0500326 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400327 return -EIO;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000328
Len Brown4f86d3a2007-10-03 18:58:00 -0400329 if (!dev->state_count)
Daniel Lezcanofc850f32012-03-26 14:51:26 +0200330 dev->state_count = drv->state_count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400331
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400332 if (dev->registered == 0) {
333 ret = __cpuidle_register_device(dev);
334 if (ret)
335 return ret;
336 }
337
Robert Leee1689792012-03-20 15:22:42 -0500338 cpuidle_enter_ops = drv->en_core_tk_irqen ?
339 cpuidle_enter_tk : cpuidle_enter;
340
341 poll_idle_init(drv);
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100342
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000343 ret = cpuidle_add_device_sysfs(dev);
344 if (ret)
Len Brown4f86d3a2007-10-03 18:58:00 -0400345 return ret;
346
347 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500348 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400349 goto fail_sysfs;
350
351 for (i = 0; i < dev->state_count; i++) {
Deepthi Dharwar42027352011-10-28 16:20:33 +0530352 dev->states_usage[i].usage = 0;
353 dev->states_usage[i].time = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400354 }
355 dev->last_residency = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400356
357 smp_wmb();
358
359 dev->enabled = 1;
360
361 enabled_devices++;
362 return 0;
363
364fail_sysfs:
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000365 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400366
367 return ret;
368}
369
370EXPORT_SYMBOL_GPL(cpuidle_enable_device);
371
372/**
373 * cpuidle_disable_device - disables idle PM for a CPU
374 * @dev: the CPU
375 *
376 * This function must be called between cpuidle_pause_and_lock and
377 * cpuidle_resume_and_unlock when used externally.
378 */
379void cpuidle_disable_device(struct cpuidle_device *dev)
380{
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000381 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
382
Srivatsa S. Bhatcf31cd12012-10-08 13:43:08 +0530383 if (!dev || !dev->enabled)
Len Brown4f86d3a2007-10-03 18:58:00 -0400384 return;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000385
386 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400387 return;
388
389 dev->enabled = 0;
390
391 if (cpuidle_curr_governor->disable)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000392 cpuidle_curr_governor->disable(drv, dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400393
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000394 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400395 enabled_devices--;
396}
397
398EXPORT_SYMBOL_GPL(cpuidle_disable_device);
399
400/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400401 * __cpuidle_register_device - internal register function called before register
402 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400403 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400404 *
405 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400406 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400407static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400408{
409 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000410 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400411
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000412 if (!try_module_get(drv->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400413 return -EINVAL;
414
Len Brown4f86d3a2007-10-03 18:58:00 -0400415 per_cpu(cpuidle_devices, dev->cpu) = dev;
416 list_add(&dev->device_list, &cpuidle_detected_devices);
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200417 ret = cpuidle_add_sysfs(dev);
Colin Cross3af272a2012-05-07 17:57:40 -0700418 if (ret)
419 goto err_sysfs;
Len Brown4f86d3a2007-10-03 18:58:00 -0400420
Colin Cross4126c012012-05-07 17:57:41 -0700421 ret = cpuidle_coupled_register_device(dev);
422 if (ret)
423 goto err_coupled;
Len Brown4f86d3a2007-10-03 18:58:00 -0400424
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400425 dev->registered = 1;
426 return 0;
Colin Cross3af272a2012-05-07 17:57:40 -0700427
Colin Cross4126c012012-05-07 17:57:41 -0700428err_coupled:
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200429 cpuidle_remove_sysfs(dev);
Colin Cross3af272a2012-05-07 17:57:40 -0700430err_sysfs:
431 list_del(&dev->device_list);
432 per_cpu(cpuidle_devices, dev->cpu) = NULL;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000433 module_put(drv->owner);
Colin Cross3af272a2012-05-07 17:57:40 -0700434 return ret;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400435}
436
437/**
438 * cpuidle_register_device - registers a CPU's idle PM feature
439 * @dev: the cpu
440 */
441int cpuidle_register_device(struct cpuidle_device *dev)
442{
443 int ret;
444
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700445 if (!dev)
446 return -EINVAL;
447
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400448 mutex_lock(&cpuidle_lock);
449
450 if ((ret = __cpuidle_register_device(dev))) {
451 mutex_unlock(&cpuidle_lock);
452 return ret;
453 }
454
Len Brown4f86d3a2007-10-03 18:58:00 -0400455 cpuidle_enable_device(dev);
456 cpuidle_install_idle_handler();
457
458 mutex_unlock(&cpuidle_lock);
459
460 return 0;
461
462}
463
464EXPORT_SYMBOL_GPL(cpuidle_register_device);
465
466/**
467 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
468 * @dev: the cpu
469 */
470void cpuidle_unregister_device(struct cpuidle_device *dev)
471{
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000472 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400473
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400474 if (dev->registered == 0)
475 return;
476
Len Brown4f86d3a2007-10-03 18:58:00 -0400477 cpuidle_pause_and_lock();
478
479 cpuidle_disable_device(dev);
480
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200481 cpuidle_remove_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400482 list_del(&dev->device_list);
Len Brown4f86d3a2007-10-03 18:58:00 -0400483 per_cpu(cpuidle_devices, dev->cpu) = NULL;
484
Colin Cross4126c012012-05-07 17:57:41 -0700485 cpuidle_coupled_unregister_device(dev);
486
Len Brown4f86d3a2007-10-03 18:58:00 -0400487 cpuidle_resume_and_unlock();
488
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000489 module_put(drv->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400490}
491
492EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
493
494#ifdef CONFIG_SMP
495
496static void smp_callback(void *v)
497{
498 /* we already woke the CPU up, nothing more to do */
499}
500
501/*
502 * This function gets called when a part of the kernel has a new latency
503 * requirement. This means we need to get all processors out of their C-state,
504 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
505 * wakes them all right up.
506 */
507static int cpuidle_latency_notify(struct notifier_block *b,
508 unsigned long l, void *v)
509{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200510 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400511 return NOTIFY_OK;
512}
513
514static struct notifier_block cpuidle_latency_notifier = {
515 .notifier_call = cpuidle_latency_notify,
516};
517
Mark Grossd82b3512008-02-04 22:30:08 -0800518static inline void latency_notifier_init(struct notifier_block *n)
519{
520 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
521}
Len Brown4f86d3a2007-10-03 18:58:00 -0400522
523#else /* CONFIG_SMP */
524
525#define latency_notifier_init(x) do { } while (0)
526
527#endif /* CONFIG_SMP */
528
529/**
530 * cpuidle_init - core initializer
531 */
532static int __init cpuidle_init(void)
533{
534 int ret;
535
Len Brown62027ae2011-04-01 18:13:10 -0400536 if (cpuidle_disabled())
537 return -ENODEV;
538
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800539 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400540 if (ret)
541 return ret;
542
543 latency_notifier_init(&cpuidle_latency_notifier);
544
545 return 0;
546}
547
Len Brown62027ae2011-04-01 18:13:10 -0400548module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400549core_initcall(cpuidle_init);