blob: 039a807b217a80360efb1a445ccd2c1f010ddcc4 [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
Daniel Lezcanob60e6a02013-03-21 12:21:31 +000011#include <linux/clockchips.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040012#include <linux/kernel.h>
13#include <linux/mutex.h>
14#include <linux/sched.h>
15#include <linux/notifier.h>
Jean Pihete8db0be2011-08-25 15:35:03 +020016#include <linux/pm_qos.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040017#include <linux/cpu.h>
18#include <linux/cpuidle.h>
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -080019#include <linux/ktime.h>
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -070020#include <linux/hrtimer.h>
Paul Gortmaker884b17e2011-08-29 17:52:39 -040021#include <linux/module.h>
Arjan van de Ven288f0232009-09-19 13:35:33 +020022#include <trace/events/power.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040023
24#include "cpuidle.h"
25
26DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
Daniel Lezcano4c637b22013-04-23 08:54:33 +000027DEFINE_PER_CPU(struct cpuidle_device, cpuidle_dev);
Len Brown4f86d3a2007-10-03 18:58:00 -040028
29DEFINE_MUTEX(cpuidle_lock);
30LIST_HEAD(cpuidle_detected_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -040031
32static int enabled_devices;
Len Brown62027ae2011-04-01 18:13:10 -040033static int off __read_mostly;
Len Browna0bfa132011-04-01 19:34:59 -040034static int initialized __read_mostly;
Len Brown62027ae2011-04-01 18:13:10 -040035
36int cpuidle_disabled(void)
37{
38 return off;
39}
Len Brownd91ee582011-04-01 18:28:35 -040040void disable_cpuidle(void)
41{
42 off = 1;
43}
Len Brown4f86d3a2007-10-03 18:58:00 -040044
45/**
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010046 * cpuidle_play_dead - cpu off-lining
47 *
Toshi Kaniee01e662012-03-31 21:37:02 -060048 * Returns in case of an error or no driver
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010049 */
50int cpuidle_play_dead(void)
51{
52 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +000053 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Daniel Lezcano8aef33a2013-01-15 14:18:04 +010054 int i;
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010055
Toshi Kaniee01e662012-03-31 21:37:02 -060056 if (!drv)
57 return -ENODEV;
58
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010059 /* Find lowest-power state that supports long-term idle */
Daniel Lezcano8aef33a2013-01-15 14:18:04 +010060 for (i = drv->state_count - 1; i >= CPUIDLE_DRIVER_STATE_START; i--)
61 if (drv->states[i].enter_dead)
62 return drv->states[i].enter_dead(dev, i);
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010063
64 return -ENODEV;
65}
66
67/**
Colin Cross56cfbf72012-05-07 17:57:39 -070068 * cpuidle_enter_state - enter the state and update stats
69 * @dev: cpuidle device for this cpu
70 * @drv: cpuidle driver for this cpu
71 * @next_state: index into drv->states of the state to enter
72 */
73int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv,
Daniel Lezcano554c06b2013-04-23 08:54:31 +000074 int index)
Colin Cross56cfbf72012-05-07 17:57:39 -070075{
76 int entered_state;
77
Daniel Lezcano554c06b2013-04-23 08:54:31 +000078 struct cpuidle_state *target_state = &drv->states[index];
79 ktime_t time_start, time_end;
80 s64 diff;
81
82 time_start = ktime_get();
83
84 entered_state = target_state->enter(dev, drv, index);
85
86 time_end = ktime_get();
87
88 local_irq_enable();
89
90 diff = ktime_to_us(ktime_sub(time_end, time_start));
91 if (diff > INT_MAX)
92 diff = INT_MAX;
93
94 dev->last_residency = (int) diff;
Colin Cross56cfbf72012-05-07 17:57:39 -070095
96 if (entered_state >= 0) {
97 /* Update cpuidle counters */
98 /* This can be moved to within driver enter routine
99 * but that results in multiple copies of same code.
100 */
Julius Wernera474a512012-11-27 14:17:58 +0100101 dev->states_usage[entered_state].time += dev->last_residency;
Colin Cross56cfbf72012-05-07 17:57:39 -0700102 dev->states_usage[entered_state].usage++;
103 } else {
104 dev->last_residency = 0;
105 }
106
107 return entered_state;
108}
109
110/**
Len Brown4f86d3a2007-10-03 18:58:00 -0400111 * cpuidle_idle_call - the main idle loop
112 *
113 * NOTE: no locks or semaphores should be used here
Len Browna0bfa132011-04-01 19:34:59 -0400114 * return non-zero on failure
Len Brown4f86d3a2007-10-03 18:58:00 -0400115 */
Len Browna0bfa132011-04-01 19:34:59 -0400116int cpuidle_idle_call(void)
Len Brown4f86d3a2007-10-03 18:58:00 -0400117{
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -0600118 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000119 struct cpuidle_driver *drv;
Deepthi Dharware978aa72011-10-28 16:20:09 +0530120 int next_state, entered_state;
Viresh Kumarfb11c9c2013-10-03 21:26:48 +0530121 bool broadcast;
Len Brown4f86d3a2007-10-03 18:58:00 -0400122
Viresh Kumar9b29a862013-10-03 21:26:47 +0530123 if (off || !initialized)
Len Browna0bfa132011-04-01 19:34:59 -0400124 return -ENODEV;
125
Len Brown4f86d3a2007-10-03 18:58:00 -0400126 /* check if the device is ready */
Len Browna0bfa132011-04-01 19:34:59 -0400127 if (!dev || !dev->enabled)
128 return -EBUSY;
Len Brown4f86d3a2007-10-03 18:58:00 -0400129
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000130 drv = cpuidle_get_cpu_driver(dev);
131
Len Brown4f86d3a2007-10-03 18:58:00 -0400132 /* ask the governor for the next state */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530133 next_state = cpuidle_curr_governor->select(drv, dev);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700134 if (need_resched()) {
Youquan Songd73d68d2012-10-26 12:26:59 +0200135 dev->last_residency = 0;
136 /* give the governor an opportunity to reflect on the outcome */
137 if (cpuidle_curr_governor->reflect)
138 cpuidle_curr_governor->reflect(dev, next_state);
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700139 local_irq_enable();
Len Browna0bfa132011-04-01 19:34:59 -0400140 return 0;
Kevin Hilman246eb7f2009-10-26 16:50:18 -0700141 }
142
Steven Rostedt76027ea2012-02-07 09:46:01 -0500143 trace_cpu_idle_rcuidle(next_state, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100144
Viresh Kumarfb11c9c2013-10-03 21:26:48 +0530145 broadcast = !!(drv->states[next_state].flags & CPUIDLE_FLAG_TIMER_STOP);
146
147 if (broadcast)
Viresh Kumar6d281e92013-10-03 21:26:49 +0530148 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &dev->cpu);
Daniel Lezcanob60e6a02013-03-21 12:21:31 +0000149
Colin Cross4126c012012-05-07 17:57:41 -0700150 if (cpuidle_state_is_coupled(dev, drv, next_state))
151 entered_state = cpuidle_enter_state_coupled(dev, drv,
152 next_state);
153 else
154 entered_state = cpuidle_enter_state(dev, drv, next_state);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100155
Viresh Kumarfb11c9c2013-10-03 21:26:48 +0530156 if (broadcast)
Viresh Kumar6d281e92013-10-03 21:26:49 +0530157 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &dev->cpu);
Daniel Lezcanob60e6a02013-03-21 12:21:31 +0000158
Steven Rostedt76027ea2012-02-07 09:46:01 -0500159 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100160
Len Brown4f86d3a2007-10-03 18:58:00 -0400161 /* give the governor an opportunity to reflect on the outcome */
162 if (cpuidle_curr_governor->reflect)
Deepthi Dharware978aa72011-10-28 16:20:09 +0530163 cpuidle_curr_governor->reflect(dev, entered_state);
Len Browna0bfa132011-04-01 19:34:59 -0400164
165 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400166}
167
168/**
169 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
170 */
171void cpuidle_install_idle_handler(void)
172{
Len Browna0bfa132011-04-01 19:34:59 -0400173 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400174 /* Make sure all changes finished before we switch to new idle */
175 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400176 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400177 }
178}
179
180/**
181 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
182 */
183void cpuidle_uninstall_idle_handler(void)
184{
Len Browna0bfa132011-04-01 19:34:59 -0400185 if (enabled_devices) {
186 initialized = 0;
Thomas Gleixner4a162512012-05-07 17:59:48 +0000187 kick_all_cpus_sync();
Len Brown4f86d3a2007-10-03 18:58:00 -0400188 }
189}
190
191/**
192 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
193 */
194void cpuidle_pause_and_lock(void)
195{
196 mutex_lock(&cpuidle_lock);
197 cpuidle_uninstall_idle_handler();
198}
199
200EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
201
202/**
203 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
204 */
205void cpuidle_resume_and_unlock(void)
206{
207 cpuidle_install_idle_handler();
208 mutex_unlock(&cpuidle_lock);
209}
210
211EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
212
Preeti U Murthy8651f972012-07-09 10:12:56 +0200213/* Currently used in suspend/resume path to suspend cpuidle */
214void cpuidle_pause(void)
215{
216 mutex_lock(&cpuidle_lock);
217 cpuidle_uninstall_idle_handler();
218 mutex_unlock(&cpuidle_lock);
219}
220
221/* Currently used in suspend/resume path to resume cpuidle */
222void cpuidle_resume(void)
223{
224 mutex_lock(&cpuidle_lock);
225 cpuidle_install_idle_handler();
226 mutex_unlock(&cpuidle_lock);
227}
228
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100229#ifdef CONFIG_ARCH_HAS_CPU_RELAX
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530230static int poll_idle(struct cpuidle_device *dev,
231 struct cpuidle_driver *drv, int index)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100232{
233 ktime_t t1, t2;
234 s64 diff;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100235
236 t1 = ktime_get();
237 local_irq_enable();
238 while (!need_resched())
239 cpu_relax();
240
241 t2 = ktime_get();
242 diff = ktime_to_us(ktime_sub(t2, t1));
243 if (diff > INT_MAX)
244 diff = INT_MAX;
245
Deepthi Dharware978aa72011-10-28 16:20:09 +0530246 dev->last_residency = (int) diff;
247
248 return index;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100249}
250
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530251static void poll_idle_init(struct cpuidle_driver *drv)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100252{
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530253 struct cpuidle_state *state = &drv->states[0];
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100254
Thomas Renninger720f1c32011-01-07 11:29:43 +0100255 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100256 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
257 state->exit_latency = 0;
258 state->target_residency = 0;
259 state->power_usage = -1;
Len Brownd2476322011-01-12 02:34:59 -0500260 state->flags = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100261 state->enter = poll_idle;
Rafael J. Wysockicbc9ef02012-07-03 19:07:42 +0200262 state->disabled = false;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100263}
264#else
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530265static void poll_idle_init(struct cpuidle_driver *drv) {}
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100266#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
267
Len Brown4f86d3a2007-10-03 18:58:00 -0400268/**
269 * cpuidle_enable_device - enables idle PM for a CPU
270 * @dev: the CPU
271 *
272 * This function must be called between cpuidle_pause_and_lock and
273 * cpuidle_resume_and_unlock when used externally.
274 */
275int cpuidle_enable_device(struct cpuidle_device *dev)
276{
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200277 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000278 struct cpuidle_driver *drv;
Len Brown4f86d3a2007-10-03 18:58:00 -0400279
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700280 if (!dev)
281 return -EINVAL;
282
Len Brown4f86d3a2007-10-03 18:58:00 -0400283 if (dev->enabled)
284 return 0;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000285
286 drv = cpuidle_get_cpu_driver(dev);
287
Robert Leee1689792012-03-20 15:22:42 -0500288 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400289 return -EIO;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000290
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200291 if (!dev->registered)
292 return -EINVAL;
293
Len Brown4f86d3a2007-10-03 18:58:00 -0400294 if (!dev->state_count)
Daniel Lezcanofc850f32012-03-26 14:51:26 +0200295 dev->state_count = drv->state_count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400296
Robert Leee1689792012-03-20 15:22:42 -0500297 poll_idle_init(drv);
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100298
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000299 ret = cpuidle_add_device_sysfs(dev);
300 if (ret)
Len Brown4f86d3a2007-10-03 18:58:00 -0400301 return ret;
302
303 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500304 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400305 goto fail_sysfs;
306
Len Brown4f86d3a2007-10-03 18:58:00 -0400307 smp_wmb();
308
309 dev->enabled = 1;
310
311 enabled_devices++;
312 return 0;
313
314fail_sysfs:
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000315 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400316
317 return ret;
318}
319
320EXPORT_SYMBOL_GPL(cpuidle_enable_device);
321
322/**
323 * cpuidle_disable_device - disables idle PM for a CPU
324 * @dev: the CPU
325 *
326 * This function must be called between cpuidle_pause_and_lock and
327 * cpuidle_resume_and_unlock when used externally.
328 */
329void cpuidle_disable_device(struct cpuidle_device *dev)
330{
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000331 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
332
Srivatsa S. Bhatcf31cd12012-10-08 13:43:08 +0530333 if (!dev || !dev->enabled)
Len Brown4f86d3a2007-10-03 18:58:00 -0400334 return;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000335
336 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400337 return;
338
339 dev->enabled = 0;
340
341 if (cpuidle_curr_governor->disable)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000342 cpuidle_curr_governor->disable(drv, dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400343
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000344 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400345 enabled_devices--;
346}
347
348EXPORT_SYMBOL_GPL(cpuidle_disable_device);
349
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200350static void __cpuidle_unregister_device(struct cpuidle_device *dev)
351{
352 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
353
354 list_del(&dev->device_list);
355 per_cpu(cpuidle_devices, dev->cpu) = NULL;
356 module_put(drv->owner);
357}
358
Viresh Kumar267d4bf2013-10-03 21:26:43 +0530359static void __cpuidle_device_init(struct cpuidle_device *dev)
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200360{
361 memset(dev->states_usage, 0, sizeof(dev->states_usage));
362 dev->last_residency = 0;
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200363}
364
Len Brown4f86d3a2007-10-03 18:58:00 -0400365/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400366 * __cpuidle_register_device - internal register function called before register
367 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400368 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400369 *
370 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400371 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400372static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400373{
374 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000375 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400376
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000377 if (!try_module_get(drv->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400378 return -EINVAL;
379
Len Brown4f86d3a2007-10-03 18:58:00 -0400380 per_cpu(cpuidle_devices, dev->cpu) = dev;
381 list_add(&dev->device_list, &cpuidle_detected_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -0400382
Colin Cross4126c012012-05-07 17:57:41 -0700383 ret = cpuidle_coupled_register_device(dev);
Viresh Kumar47182662013-10-03 21:26:46 +0530384 if (ret)
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200385 __cpuidle_unregister_device(dev);
Viresh Kumar47182662013-10-03 21:26:46 +0530386 else
387 dev->registered = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400388
Viresh Kumar47182662013-10-03 21:26:46 +0530389 return ret;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400390}
391
392/**
393 * cpuidle_register_device - registers a CPU's idle PM feature
394 * @dev: the cpu
395 */
396int cpuidle_register_device(struct cpuidle_device *dev)
397{
Daniel Lezcanoc878a522013-06-12 15:08:55 +0200398 int ret = -EBUSY;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400399
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700400 if (!dev)
401 return -EINVAL;
402
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400403 mutex_lock(&cpuidle_lock);
404
Daniel Lezcanoc878a522013-06-12 15:08:55 +0200405 if (dev->registered)
406 goto out_unlock;
407
Viresh Kumar267d4bf2013-10-03 21:26:43 +0530408 __cpuidle_device_init(dev);
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200409
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200410 ret = __cpuidle_register_device(dev);
411 if (ret)
412 goto out_unlock;
413
414 ret = cpuidle_add_sysfs(dev);
415 if (ret)
416 goto out_unregister;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400417
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200418 ret = cpuidle_enable_device(dev);
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200419 if (ret)
420 goto out_sysfs;
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200421
Len Brown4f86d3a2007-10-03 18:58:00 -0400422 cpuidle_install_idle_handler();
423
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200424out_unlock:
Len Brown4f86d3a2007-10-03 18:58:00 -0400425 mutex_unlock(&cpuidle_lock);
426
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200427 return ret;
428
429out_sysfs:
430 cpuidle_remove_sysfs(dev);
431out_unregister:
432 __cpuidle_unregister_device(dev);
433 goto out_unlock;
Len Brown4f86d3a2007-10-03 18:58:00 -0400434}
435
436EXPORT_SYMBOL_GPL(cpuidle_register_device);
437
438/**
439 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
440 * @dev: the cpu
441 */
442void cpuidle_unregister_device(struct cpuidle_device *dev)
443{
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400444 if (dev->registered == 0)
445 return;
446
Len Brown4f86d3a2007-10-03 18:58:00 -0400447 cpuidle_pause_and_lock();
448
449 cpuidle_disable_device(dev);
450
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200451 cpuidle_remove_sysfs(dev);
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200452
453 __cpuidle_unregister_device(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400454
Colin Cross4126c012012-05-07 17:57:41 -0700455 cpuidle_coupled_unregister_device(dev);
456
Len Brown4f86d3a2007-10-03 18:58:00 -0400457 cpuidle_resume_and_unlock();
Len Brown4f86d3a2007-10-03 18:58:00 -0400458}
459
460EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
461
Daniel Lezcano1c192d02013-04-23 15:28:44 +0000462/**
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000463 * cpuidle_unregister: unregister a driver and the devices. This function
464 * can be used only if the driver has been previously registered through
465 * the cpuidle_register function.
466 *
467 * @drv: a valid pointer to a struct cpuidle_driver
468 */
469void cpuidle_unregister(struct cpuidle_driver *drv)
470{
471 int cpu;
472 struct cpuidle_device *device;
473
Daniel Lezcano82467a52013-06-07 21:53:09 +0000474 for_each_cpu(cpu, drv->cpumask) {
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000475 device = &per_cpu(cpuidle_dev, cpu);
476 cpuidle_unregister_device(device);
477 }
478
479 cpuidle_unregister_driver(drv);
480}
481EXPORT_SYMBOL_GPL(cpuidle_unregister);
482
483/**
484 * cpuidle_register: registers the driver and the cpu devices with the
485 * coupled_cpus passed as parameter. This function is used for all common
486 * initialization pattern there are in the arch specific drivers. The
487 * devices is globally defined in this file.
488 *
489 * @drv : a valid pointer to a struct cpuidle_driver
490 * @coupled_cpus: a cpumask for the coupled states
491 *
492 * Returns 0 on success, < 0 otherwise
493 */
494int cpuidle_register(struct cpuidle_driver *drv,
495 const struct cpumask *const coupled_cpus)
496{
497 int ret, cpu;
498 struct cpuidle_device *device;
499
500 ret = cpuidle_register_driver(drv);
501 if (ret) {
502 pr_err("failed to register cpuidle driver\n");
503 return ret;
504 }
505
Daniel Lezcano82467a52013-06-07 21:53:09 +0000506 for_each_cpu(cpu, drv->cpumask) {
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000507 device = &per_cpu(cpuidle_dev, cpu);
508 device->cpu = cpu;
509
510#ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED
511 /*
Viresh Kumarcaf4a362013-10-03 21:26:41 +0530512 * On multiplatform for ARM, the coupled idle states could be
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000513 * enabled in the kernel even if the cpuidle driver does not
514 * use it. Note, coupled_cpus is a struct copy.
515 */
516 if (coupled_cpus)
517 device->coupled_cpus = *coupled_cpus;
518#endif
519 ret = cpuidle_register_device(device);
520 if (!ret)
521 continue;
522
523 pr_err("Failed to register cpuidle device for cpu%d\n", cpu);
524
525 cpuidle_unregister(drv);
526 break;
527 }
528
529 return ret;
530}
531EXPORT_SYMBOL_GPL(cpuidle_register);
532
Len Brown4f86d3a2007-10-03 18:58:00 -0400533#ifdef CONFIG_SMP
534
535static void smp_callback(void *v)
536{
537 /* we already woke the CPU up, nothing more to do */
538}
539
540/*
541 * This function gets called when a part of the kernel has a new latency
542 * requirement. This means we need to get all processors out of their C-state,
543 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
544 * wakes them all right up.
545 */
546static int cpuidle_latency_notify(struct notifier_block *b,
547 unsigned long l, void *v)
548{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200549 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400550 return NOTIFY_OK;
551}
552
553static struct notifier_block cpuidle_latency_notifier = {
554 .notifier_call = cpuidle_latency_notify,
555};
556
Mark Grossd82b3512008-02-04 22:30:08 -0800557static inline void latency_notifier_init(struct notifier_block *n)
558{
559 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
560}
Len Brown4f86d3a2007-10-03 18:58:00 -0400561
562#else /* CONFIG_SMP */
563
564#define latency_notifier_init(x) do { } while (0)
565
566#endif /* CONFIG_SMP */
567
568/**
569 * cpuidle_init - core initializer
570 */
571static int __init cpuidle_init(void)
572{
573 int ret;
574
Len Brown62027ae2011-04-01 18:13:10 -0400575 if (cpuidle_disabled())
576 return -ENODEV;
577
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800578 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400579 if (ret)
580 return ret;
581
582 latency_notifier_init(&cpuidle_latency_notifier);
583
584 return 0;
585}
586
Len Brown62027ae2011-04-01 18:13:10 -0400587module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400588core_initcall(cpuidle_init);