blob: 9306dd5f460eefc99c6a83900a6193688fd202f0 [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>
Rafael J. Wysocki38106312015-02-12 23:33:15 +010022#include <linux/suspend.h>
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +010023#include <linux/tick.h>
Arjan van de Ven288f0232009-09-19 13:35:33 +020024#include <trace/events/power.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040025
26#include "cpuidle.h"
27
28DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
Daniel Lezcano4c637b22013-04-23 08:54:33 +000029DEFINE_PER_CPU(struct cpuidle_device, cpuidle_dev);
Len Brown4f86d3a2007-10-03 18:58:00 -040030
31DEFINE_MUTEX(cpuidle_lock);
32LIST_HEAD(cpuidle_detected_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -040033
34static int enabled_devices;
Len Brown62027ae2011-04-01 18:13:10 -040035static int off __read_mostly;
Len Browna0bfa132011-04-01 19:34:59 -040036static int initialized __read_mostly;
Len Brown62027ae2011-04-01 18:13:10 -040037
38int cpuidle_disabled(void)
39{
40 return off;
41}
Len Brownd91ee582011-04-01 18:28:35 -040042void disable_cpuidle(void)
43{
44 off = 1;
45}
Len Brown4f86d3a2007-10-03 18:58:00 -040046
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +010047bool cpuidle_not_available(struct cpuidle_driver *drv,
48 struct cpuidle_device *dev)
Rafael J. Wysocki31a34092015-02-27 00:39:56 +010049{
50 return off || !initialized || !drv || !dev || !dev->enabled;
51}
52
Len Brown4f86d3a2007-10-03 18:58:00 -040053/**
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010054 * cpuidle_play_dead - cpu off-lining
55 *
Toshi Kaniee01e662012-03-31 21:37:02 -060056 * Returns in case of an error or no driver
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010057 */
58int cpuidle_play_dead(void)
59{
60 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +000061 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Daniel Lezcano8aef33a2013-01-15 14:18:04 +010062 int i;
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010063
Toshi Kaniee01e662012-03-31 21:37:02 -060064 if (!drv)
65 return -ENODEV;
66
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010067 /* Find lowest-power state that supports long-term idle */
Daniel Lezcano8aef33a2013-01-15 14:18:04 +010068 for (i = drv->state_count - 1; i >= CPUIDLE_DRIVER_STATE_START; i--)
69 if (drv->states[i].enter_dead)
70 return drv->states[i].enter_dead(dev, i);
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010071
72 return -ENODEV;
73}
74
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +010075static int find_deepest_state(struct cpuidle_driver *drv,
76 struct cpuidle_device *dev, bool freeze)
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020077{
78 unsigned int latency_req = 0;
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +010079 int i, ret = freeze ? -1 : CPUIDLE_DRIVER_STATE_START - 1;
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020080
81 for (i = CPUIDLE_DRIVER_STATE_START; i < drv->state_count; i++) {
82 struct cpuidle_state *s = &drv->states[i];
83 struct cpuidle_state_usage *su = &dev->states_usage[i];
84
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +010085 if (s->disabled || su->disable || s->exit_latency <= latency_req
86 || (freeze && !s->enter_freeze))
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020087 continue;
88
89 latency_req = s->exit_latency;
90 ret = i;
91 }
92 return ret;
93}
94
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +010095/**
96 * cpuidle_find_deepest_state - Find the deepest available idle state.
97 * @drv: cpuidle driver for the given CPU.
98 * @dev: cpuidle device for the given CPU.
99 */
100int cpuidle_find_deepest_state(struct cpuidle_driver *drv,
101 struct cpuidle_device *dev)
102{
103 return find_deepest_state(drv, dev, false);
104}
105
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +0100106static void enter_freeze_proper(struct cpuidle_driver *drv,
107 struct cpuidle_device *dev, int index)
108{
109 tick_freeze();
110 /*
111 * The state used here cannot be a "coupled" one, because the "coupled"
112 * cpuidle mechanism enables interrupts and doing that with timekeeping
113 * suspended is generally unsafe.
114 */
115 drv->states[index].enter_freeze(dev, drv, index);
116 WARN_ON(!irqs_disabled());
117 /*
118 * timekeeping_resume() that will be called by tick_unfreeze() for the
119 * last CPU executing it calls functions containing RCU read-side
120 * critical sections, so tell RCU about that.
121 */
122 RCU_NONIDLE(tick_unfreeze());
123}
124
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +0200125/**
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100126 * cpuidle_enter_freeze - Enter an idle state suitable for suspend-to-idle.
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +0100127 * @drv: cpuidle driver for the given CPU.
128 * @dev: cpuidle device for the given CPU.
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100129 *
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +0100130 * If there are states with the ->enter_freeze callback, find the deepest of
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +0100131 * them and enter it with frozen tick.
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100132 */
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +0100133int cpuidle_enter_freeze(struct cpuidle_driver *drv, struct cpuidle_device *dev)
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100134{
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100135 int index;
136
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +0100137 /*
138 * Find the deepest state with ->enter_freeze present, which guarantees
139 * that interrupts won't be enabled when it exits and allows the tick to
140 * be frozen safely.
141 */
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +0100142 index = find_deepest_state(drv, dev, true);
143 if (index >= 0)
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +0100144 enter_freeze_proper(drv, dev, index);
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +0100145
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +0100146 return index;
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100147}
148
149/**
Colin Cross56cfbf72012-05-07 17:57:39 -0700150 * cpuidle_enter_state - enter the state and update stats
151 * @dev: cpuidle device for this cpu
152 * @drv: cpuidle driver for this cpu
Rafael J. Wysocki73122802015-05-09 21:50:32 +0200153 * @index: index into the states table in @drv of the state to enter
Colin Cross56cfbf72012-05-07 17:57:39 -0700154 */
155int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv,
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000156 int index)
Colin Cross56cfbf72012-05-07 17:57:39 -0700157{
158 int entered_state;
159
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000160 struct cpuidle_state *target_state = &drv->states[index];
Rafael J. Wysockidf8d9ee2015-04-29 15:19:21 +0200161 bool broadcast = !!(target_state->flags & CPUIDLE_FLAG_TIMER_STOP);
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000162 ktime_t time_start, time_end;
163 s64 diff;
164
Rafael J. Wysockidf8d9ee2015-04-29 15:19:21 +0200165 /*
166 * Tell the time framework to switch to a broadcast timer because our
167 * local timer will be shut down. If a local timer is used from another
168 * CPU as a broadcast timer, this call may fail if it is not available.
169 */
170 if (broadcast && tick_broadcast_enter())
171 return -EBUSY;
172
Rafael J. Wysockifaad3842015-05-10 01:18:03 +0200173 /* Take note of the planned idle state. */
174 sched_idle_set_state(target_state);
175
Sandeep Tripathy30fe6882014-07-02 15:00:58 +0530176 trace_cpu_idle_rcuidle(index, dev->cpu);
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000177 time_start = ktime_get();
178
179 entered_state = target_state->enter(dev, drv, index);
180
181 time_end = ktime_get();
Sandeep Tripathy30fe6882014-07-02 15:00:58 +0530182 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000183
Rafael J. Wysockifaad3842015-05-10 01:18:03 +0200184 /* The cpu is no longer idle or about to enter idle. */
185 sched_idle_set_state(NULL);
186
Rafael J. Wysockidf8d9ee2015-04-29 15:19:21 +0200187 if (broadcast) {
188 if (WARN_ON_ONCE(!irqs_disabled()))
189 local_irq_disable();
190
191 tick_broadcast_exit();
192 }
193
Paul Burton0b89e9a2014-03-06 11:02:01 +0000194 if (!cpuidle_state_is_coupled(dev, drv, entered_state))
195 local_irq_enable();
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000196
197 diff = ktime_to_us(ktime_sub(time_end, time_start));
198 if (diff > INT_MAX)
199 diff = INT_MAX;
200
201 dev->last_residency = (int) diff;
Colin Cross56cfbf72012-05-07 17:57:39 -0700202
203 if (entered_state >= 0) {
204 /* Update cpuidle counters */
205 /* This can be moved to within driver enter routine
206 * but that results in multiple copies of same code.
207 */
Julius Wernera474a512012-11-27 14:17:58 +0100208 dev->states_usage[entered_state].time += dev->last_residency;
Colin Cross56cfbf72012-05-07 17:57:39 -0700209 dev->states_usage[entered_state].usage++;
210 } else {
211 dev->last_residency = 0;
212 }
213
214 return entered_state;
215}
216
217/**
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100218 * cpuidle_select - ask the cpuidle framework to choose an idle state
Len Brown4f86d3a2007-10-03 18:58:00 -0400219 *
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100220 * @drv: the cpuidle driver
221 * @dev: the cpuidle device
222 *
223 * Returns the index of the idle state.
Len Brown4f86d3a2007-10-03 18:58:00 -0400224 */
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100225int cpuidle_select(struct cpuidle_driver *drv, struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400226{
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100227 return cpuidle_curr_governor->select(drv, dev);
228}
Len Brown4f86d3a2007-10-03 18:58:00 -0400229
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100230/**
231 * cpuidle_enter - enter into the specified idle state
232 *
233 * @drv: the cpuidle driver tied with the cpu
234 * @dev: the cpuidle device
235 * @index: the index in the idle state table
236 *
237 * Returns the index in the idle state, < 0 in case of error.
238 * The error code depends on the backend driver
239 */
240int cpuidle_enter(struct cpuidle_driver *drv, struct cpuidle_device *dev,
241 int index)
242{
243 if (cpuidle_state_is_coupled(dev, drv, index))
244 return cpuidle_enter_state_coupled(dev, drv, index);
245 return cpuidle_enter_state(dev, drv, index);
246}
Len Browna0bfa132011-04-01 19:34:59 -0400247
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100248/**
249 * cpuidle_reflect - tell the underlying governor what was the state
250 * we were in
251 *
252 * @dev : the cpuidle device
253 * @index: the index in the idle state table
254 *
255 */
256void cpuidle_reflect(struct cpuidle_device *dev, int index)
257{
Rafael J. Wysockia802ea92015-05-04 22:53:28 +0200258 if (cpuidle_curr_governor->reflect && index >= 0)
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100259 cpuidle_curr_governor->reflect(dev, index);
Len Brown4f86d3a2007-10-03 18:58:00 -0400260}
261
262/**
263 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
264 */
265void cpuidle_install_idle_handler(void)
266{
Len Browna0bfa132011-04-01 19:34:59 -0400267 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400268 /* Make sure all changes finished before we switch to new idle */
269 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400270 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400271 }
272}
273
274/**
275 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
276 */
277void cpuidle_uninstall_idle_handler(void)
278{
Len Browna0bfa132011-04-01 19:34:59 -0400279 if (enabled_devices) {
280 initialized = 0;
Chuansheng Liu2ed903c2014-09-04 15:17:55 +0800281 wake_up_all_idle_cpus();
Len Brown4f86d3a2007-10-03 18:58:00 -0400282 }
Daniel Lezcano442bf3a2014-09-04 11:32:09 -0400283
284 /*
285 * Make sure external observers (such as the scheduler)
286 * are done looking at pointed idle states.
287 */
288 synchronize_rcu();
Len Brown4f86d3a2007-10-03 18:58:00 -0400289}
290
291/**
292 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
293 */
294void cpuidle_pause_and_lock(void)
295{
296 mutex_lock(&cpuidle_lock);
297 cpuidle_uninstall_idle_handler();
298}
299
300EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
301
302/**
303 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
304 */
305void cpuidle_resume_and_unlock(void)
306{
307 cpuidle_install_idle_handler();
308 mutex_unlock(&cpuidle_lock);
309}
310
311EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
312
Preeti U Murthy8651f972012-07-09 10:12:56 +0200313/* Currently used in suspend/resume path to suspend cpuidle */
314void cpuidle_pause(void)
315{
316 mutex_lock(&cpuidle_lock);
317 cpuidle_uninstall_idle_handler();
318 mutex_unlock(&cpuidle_lock);
319}
320
321/* Currently used in suspend/resume path to resume cpuidle */
322void cpuidle_resume(void)
323{
324 mutex_lock(&cpuidle_lock);
325 cpuidle_install_idle_handler();
326 mutex_unlock(&cpuidle_lock);
327}
328
Len Brown4f86d3a2007-10-03 18:58:00 -0400329/**
330 * cpuidle_enable_device - enables idle PM for a CPU
331 * @dev: the CPU
332 *
333 * This function must be called between cpuidle_pause_and_lock and
334 * cpuidle_resume_and_unlock when used externally.
335 */
336int cpuidle_enable_device(struct cpuidle_device *dev)
337{
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200338 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000339 struct cpuidle_driver *drv;
Len Brown4f86d3a2007-10-03 18:58:00 -0400340
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700341 if (!dev)
342 return -EINVAL;
343
Len Brown4f86d3a2007-10-03 18:58:00 -0400344 if (dev->enabled)
345 return 0;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000346
347 drv = cpuidle_get_cpu_driver(dev);
348
Robert Leee1689792012-03-20 15:22:42 -0500349 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400350 return -EIO;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000351
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200352 if (!dev->registered)
353 return -EINVAL;
354
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000355 ret = cpuidle_add_device_sysfs(dev);
356 if (ret)
Len Brown4f86d3a2007-10-03 18:58:00 -0400357 return ret;
358
359 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500360 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400361 goto fail_sysfs;
362
Len Brown4f86d3a2007-10-03 18:58:00 -0400363 smp_wmb();
364
365 dev->enabled = 1;
366
367 enabled_devices++;
368 return 0;
369
370fail_sysfs:
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000371 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400372
373 return ret;
374}
375
376EXPORT_SYMBOL_GPL(cpuidle_enable_device);
377
378/**
379 * cpuidle_disable_device - disables idle PM for a CPU
380 * @dev: the CPU
381 *
382 * This function must be called between cpuidle_pause_and_lock and
383 * cpuidle_resume_and_unlock when used externally.
384 */
385void cpuidle_disable_device(struct cpuidle_device *dev)
386{
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000387 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
388
Srivatsa S. Bhatcf31cd12012-10-08 13:43:08 +0530389 if (!dev || !dev->enabled)
Len Brown4f86d3a2007-10-03 18:58:00 -0400390 return;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000391
392 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400393 return;
394
395 dev->enabled = 0;
396
397 if (cpuidle_curr_governor->disable)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000398 cpuidle_curr_governor->disable(drv, dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400399
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000400 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400401 enabled_devices--;
402}
403
404EXPORT_SYMBOL_GPL(cpuidle_disable_device);
405
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200406static void __cpuidle_unregister_device(struct cpuidle_device *dev)
407{
408 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
409
410 list_del(&dev->device_list);
411 per_cpu(cpuidle_devices, dev->cpu) = NULL;
412 module_put(drv->owner);
413}
414
Viresh Kumar267d4bf2013-10-03 21:26:43 +0530415static void __cpuidle_device_init(struct cpuidle_device *dev)
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200416{
417 memset(dev->states_usage, 0, sizeof(dev->states_usage));
418 dev->last_residency = 0;
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200419}
420
Len Brown4f86d3a2007-10-03 18:58:00 -0400421/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400422 * __cpuidle_register_device - internal register function called before register
423 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400424 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400425 *
426 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400427 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400428static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400429{
430 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000431 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400432
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000433 if (!try_module_get(drv->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400434 return -EINVAL;
435
Len Brown4f86d3a2007-10-03 18:58:00 -0400436 per_cpu(cpuidle_devices, dev->cpu) = dev;
437 list_add(&dev->device_list, &cpuidle_detected_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -0400438
Colin Cross4126c012012-05-07 17:57:41 -0700439 ret = cpuidle_coupled_register_device(dev);
Viresh Kumar47182662013-10-03 21:26:46 +0530440 if (ret)
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200441 __cpuidle_unregister_device(dev);
Viresh Kumar47182662013-10-03 21:26:46 +0530442 else
443 dev->registered = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400444
Viresh Kumar47182662013-10-03 21:26:46 +0530445 return ret;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400446}
447
448/**
449 * cpuidle_register_device - registers a CPU's idle PM feature
450 * @dev: the cpu
451 */
452int cpuidle_register_device(struct cpuidle_device *dev)
453{
Daniel Lezcanoc878a522013-06-12 15:08:55 +0200454 int ret = -EBUSY;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400455
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700456 if (!dev)
457 return -EINVAL;
458
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400459 mutex_lock(&cpuidle_lock);
460
Daniel Lezcanoc878a522013-06-12 15:08:55 +0200461 if (dev->registered)
462 goto out_unlock;
463
Viresh Kumar267d4bf2013-10-03 21:26:43 +0530464 __cpuidle_device_init(dev);
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200465
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200466 ret = __cpuidle_register_device(dev);
467 if (ret)
468 goto out_unlock;
469
470 ret = cpuidle_add_sysfs(dev);
471 if (ret)
472 goto out_unregister;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400473
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200474 ret = cpuidle_enable_device(dev);
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200475 if (ret)
476 goto out_sysfs;
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200477
Len Brown4f86d3a2007-10-03 18:58:00 -0400478 cpuidle_install_idle_handler();
479
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200480out_unlock:
Len Brown4f86d3a2007-10-03 18:58:00 -0400481 mutex_unlock(&cpuidle_lock);
482
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200483 return ret;
484
485out_sysfs:
486 cpuidle_remove_sysfs(dev);
487out_unregister:
488 __cpuidle_unregister_device(dev);
489 goto out_unlock;
Len Brown4f86d3a2007-10-03 18:58:00 -0400490}
491
492EXPORT_SYMBOL_GPL(cpuidle_register_device);
493
494/**
495 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
496 * @dev: the cpu
497 */
498void cpuidle_unregister_device(struct cpuidle_device *dev)
499{
Konrad Rzeszutek Wilk813e8e32013-12-03 10:59:58 -0500500 if (!dev || dev->registered == 0)
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400501 return;
502
Len Brown4f86d3a2007-10-03 18:58:00 -0400503 cpuidle_pause_and_lock();
504
505 cpuidle_disable_device(dev);
506
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200507 cpuidle_remove_sysfs(dev);
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200508
509 __cpuidle_unregister_device(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400510
Colin Cross4126c012012-05-07 17:57:41 -0700511 cpuidle_coupled_unregister_device(dev);
512
Len Brown4f86d3a2007-10-03 18:58:00 -0400513 cpuidle_resume_and_unlock();
Len Brown4f86d3a2007-10-03 18:58:00 -0400514}
515
516EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
517
Daniel Lezcano1c192d02013-04-23 15:28:44 +0000518/**
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000519 * cpuidle_unregister: unregister a driver and the devices. This function
520 * can be used only if the driver has been previously registered through
521 * the cpuidle_register function.
522 *
523 * @drv: a valid pointer to a struct cpuidle_driver
524 */
525void cpuidle_unregister(struct cpuidle_driver *drv)
526{
527 int cpu;
528 struct cpuidle_device *device;
529
Daniel Lezcano82467a52013-06-07 21:53:09 +0000530 for_each_cpu(cpu, drv->cpumask) {
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000531 device = &per_cpu(cpuidle_dev, cpu);
532 cpuidle_unregister_device(device);
533 }
534
535 cpuidle_unregister_driver(drv);
536}
537EXPORT_SYMBOL_GPL(cpuidle_unregister);
538
539/**
540 * cpuidle_register: registers the driver and the cpu devices with the
541 * coupled_cpus passed as parameter. This function is used for all common
542 * initialization pattern there are in the arch specific drivers. The
543 * devices is globally defined in this file.
544 *
545 * @drv : a valid pointer to a struct cpuidle_driver
546 * @coupled_cpus: a cpumask for the coupled states
547 *
548 * Returns 0 on success, < 0 otherwise
549 */
550int cpuidle_register(struct cpuidle_driver *drv,
551 const struct cpumask *const coupled_cpus)
552{
553 int ret, cpu;
554 struct cpuidle_device *device;
555
556 ret = cpuidle_register_driver(drv);
557 if (ret) {
558 pr_err("failed to register cpuidle driver\n");
559 return ret;
560 }
561
Daniel Lezcano82467a52013-06-07 21:53:09 +0000562 for_each_cpu(cpu, drv->cpumask) {
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000563 device = &per_cpu(cpuidle_dev, cpu);
564 device->cpu = cpu;
565
566#ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED
567 /*
Viresh Kumarcaf4a362013-10-03 21:26:41 +0530568 * On multiplatform for ARM, the coupled idle states could be
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000569 * enabled in the kernel even if the cpuidle driver does not
570 * use it. Note, coupled_cpus is a struct copy.
571 */
572 if (coupled_cpus)
573 device->coupled_cpus = *coupled_cpus;
574#endif
575 ret = cpuidle_register_device(device);
576 if (!ret)
577 continue;
578
579 pr_err("Failed to register cpuidle device for cpu%d\n", cpu);
580
581 cpuidle_unregister(drv);
582 break;
583 }
584
585 return ret;
586}
587EXPORT_SYMBOL_GPL(cpuidle_register);
588
Len Brown4f86d3a2007-10-03 18:58:00 -0400589#ifdef CONFIG_SMP
590
Len Brown4f86d3a2007-10-03 18:58:00 -0400591/*
592 * This function gets called when a part of the kernel has a new latency
593 * requirement. This means we need to get all processors out of their C-state,
594 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
595 * wakes them all right up.
596 */
597static int cpuidle_latency_notify(struct notifier_block *b,
598 unsigned long l, void *v)
599{
Chuansheng Liu2ed903c2014-09-04 15:17:55 +0800600 wake_up_all_idle_cpus();
Len Brown4f86d3a2007-10-03 18:58:00 -0400601 return NOTIFY_OK;
602}
603
604static struct notifier_block cpuidle_latency_notifier = {
605 .notifier_call = cpuidle_latency_notify,
606};
607
Mark Grossd82b3512008-02-04 22:30:08 -0800608static inline void latency_notifier_init(struct notifier_block *n)
609{
610 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
611}
Len Brown4f86d3a2007-10-03 18:58:00 -0400612
613#else /* CONFIG_SMP */
614
615#define latency_notifier_init(x) do { } while (0)
616
617#endif /* CONFIG_SMP */
618
619/**
620 * cpuidle_init - core initializer
621 */
622static int __init cpuidle_init(void)
623{
624 int ret;
625
Len Brown62027ae2011-04-01 18:13:10 -0400626 if (cpuidle_disabled())
627 return -ENODEV;
628
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800629 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400630 if (ret)
631 return ret;
632
633 latency_notifier_init(&cpuidle_latency_notifier);
634
635 return 0;
636}
637
Len Brown62027ae2011-04-01 18:13:10 -0400638module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400639core_initcall(cpuidle_init);