blob: 81f60351aaf3b9a1cfdab4b2aba9f367d99179ad [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
153 * @next_state: index into drv->states of the state to enter
154 */
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
Sandeep Tripathy30fe6882014-07-02 15:00:58 +0530173 trace_cpu_idle_rcuidle(index, dev->cpu);
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000174 time_start = ktime_get();
175
176 entered_state = target_state->enter(dev, drv, index);
177
178 time_end = ktime_get();
Sandeep Tripathy30fe6882014-07-02 15:00:58 +0530179 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000180
Rafael J. Wysockidf8d9ee2015-04-29 15:19:21 +0200181 if (broadcast) {
182 if (WARN_ON_ONCE(!irqs_disabled()))
183 local_irq_disable();
184
185 tick_broadcast_exit();
186 }
187
Daniel Lezcanoc504b772016-05-17 16:54:00 +0200188 if (!cpuidle_state_is_coupled(drv, index))
Paul Burton0b89e9a2014-03-06 11:02:01 +0000189 local_irq_enable();
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000190
191 diff = ktime_to_us(ktime_sub(time_end, time_start));
192 if (diff > INT_MAX)
193 diff = INT_MAX;
194
195 dev->last_residency = (int) diff;
Colin Cross56cfbf72012-05-07 17:57:39 -0700196
197 if (entered_state >= 0) {
198 /* Update cpuidle counters */
199 /* This can be moved to within driver enter routine
200 * but that results in multiple copies of same code.
201 */
Julius Wernera474a512012-11-27 14:17:58 +0100202 dev->states_usage[entered_state].time += dev->last_residency;
Colin Cross56cfbf72012-05-07 17:57:39 -0700203 dev->states_usage[entered_state].usage++;
204 } else {
205 dev->last_residency = 0;
206 }
207
208 return entered_state;
209}
210
211/**
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100212 * cpuidle_select - ask the cpuidle framework to choose an idle state
Len Brown4f86d3a2007-10-03 18:58:00 -0400213 *
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100214 * @drv: the cpuidle driver
215 * @dev: the cpuidle device
216 *
217 * Returns the index of the idle state.
Len Brown4f86d3a2007-10-03 18:58:00 -0400218 */
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100219int cpuidle_select(struct cpuidle_driver *drv, struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400220{
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100221 return cpuidle_curr_governor->select(drv, dev);
222}
Len Brown4f86d3a2007-10-03 18:58:00 -0400223
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100224/**
225 * cpuidle_enter - enter into the specified idle state
226 *
227 * @drv: the cpuidle driver tied with the cpu
228 * @dev: the cpuidle device
229 * @index: the index in the idle state table
230 *
231 * Returns the index in the idle state, < 0 in case of error.
232 * The error code depends on the backend driver
233 */
234int cpuidle_enter(struct cpuidle_driver *drv, struct cpuidle_device *dev,
235 int index)
236{
Xunlei Pangd3bbf7b2015-08-04 13:48:56 +0800237 if (cpuidle_state_is_coupled(drv, index))
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100238 return cpuidle_enter_state_coupled(dev, drv, index);
239 return cpuidle_enter_state(dev, drv, index);
240}
Len Browna0bfa132011-04-01 19:34:59 -0400241
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100242/**
243 * cpuidle_reflect - tell the underlying governor what was the state
244 * we were in
245 *
246 * @dev : the cpuidle device
247 * @index: the index in the idle state table
248 *
249 */
250void cpuidle_reflect(struct cpuidle_device *dev, int index)
251{
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100252 if (cpuidle_curr_governor->reflect)
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100253 cpuidle_curr_governor->reflect(dev, index);
Len Brown4f86d3a2007-10-03 18:58:00 -0400254}
255
256/**
257 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
258 */
259void cpuidle_install_idle_handler(void)
260{
Len Browna0bfa132011-04-01 19:34:59 -0400261 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400262 /* Make sure all changes finished before we switch to new idle */
263 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400264 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400265 }
266}
267
268/**
269 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
270 */
271void cpuidle_uninstall_idle_handler(void)
272{
Len Browna0bfa132011-04-01 19:34:59 -0400273 if (enabled_devices) {
274 initialized = 0;
Chuansheng Liu2ed903c2014-09-04 15:17:55 +0800275 wake_up_all_idle_cpus();
Len Brown4f86d3a2007-10-03 18:58:00 -0400276 }
Daniel Lezcano442bf3a2014-09-04 11:32:09 -0400277
278 /*
279 * Make sure external observers (such as the scheduler)
280 * are done looking at pointed idle states.
281 */
282 synchronize_rcu();
Len Brown4f86d3a2007-10-03 18:58:00 -0400283}
284
285/**
286 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
287 */
288void cpuidle_pause_and_lock(void)
289{
290 mutex_lock(&cpuidle_lock);
291 cpuidle_uninstall_idle_handler();
292}
293
294EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
295
296/**
297 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
298 */
299void cpuidle_resume_and_unlock(void)
300{
301 cpuidle_install_idle_handler();
302 mutex_unlock(&cpuidle_lock);
303}
304
305EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
306
Preeti U Murthy8651f972012-07-09 10:12:56 +0200307/* Currently used in suspend/resume path to suspend cpuidle */
308void cpuidle_pause(void)
309{
310 mutex_lock(&cpuidle_lock);
311 cpuidle_uninstall_idle_handler();
312 mutex_unlock(&cpuidle_lock);
313}
314
315/* Currently used in suspend/resume path to resume cpuidle */
316void cpuidle_resume(void)
317{
318 mutex_lock(&cpuidle_lock);
319 cpuidle_install_idle_handler();
320 mutex_unlock(&cpuidle_lock);
321}
322
Len Brown4f86d3a2007-10-03 18:58:00 -0400323/**
324 * cpuidle_enable_device - enables idle PM for a CPU
325 * @dev: the CPU
326 *
327 * This function must be called between cpuidle_pause_and_lock and
328 * cpuidle_resume_and_unlock when used externally.
329 */
330int cpuidle_enable_device(struct cpuidle_device *dev)
331{
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200332 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000333 struct cpuidle_driver *drv;
Len Brown4f86d3a2007-10-03 18:58:00 -0400334
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700335 if (!dev)
336 return -EINVAL;
337
Len Brown4f86d3a2007-10-03 18:58:00 -0400338 if (dev->enabled)
339 return 0;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000340
341 drv = cpuidle_get_cpu_driver(dev);
342
Robert Leee1689792012-03-20 15:22:42 -0500343 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400344 return -EIO;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000345
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200346 if (!dev->registered)
347 return -EINVAL;
348
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000349 ret = cpuidle_add_device_sysfs(dev);
350 if (ret)
Len Brown4f86d3a2007-10-03 18:58:00 -0400351 return ret;
352
353 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500354 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400355 goto fail_sysfs;
356
Len Brown4f86d3a2007-10-03 18:58:00 -0400357 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
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200400static void __cpuidle_unregister_device(struct cpuidle_device *dev)
401{
402 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
403
404 list_del(&dev->device_list);
405 per_cpu(cpuidle_devices, dev->cpu) = NULL;
406 module_put(drv->owner);
Dave Gerlach16de7982016-04-05 14:05:38 -0500407
408 dev->registered = 0;
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200409}
410
Viresh Kumar267d4bf2013-10-03 21:26:43 +0530411static void __cpuidle_device_init(struct cpuidle_device *dev)
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200412{
413 memset(dev->states_usage, 0, sizeof(dev->states_usage));
414 dev->last_residency = 0;
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200415}
416
Len Brown4f86d3a2007-10-03 18:58:00 -0400417/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400418 * __cpuidle_register_device - internal register function called before register
419 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400420 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400421 *
422 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400423 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400424static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400425{
426 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000427 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400428
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000429 if (!try_module_get(drv->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400430 return -EINVAL;
431
Len Brown4f86d3a2007-10-03 18:58:00 -0400432 per_cpu(cpuidle_devices, dev->cpu) = dev;
433 list_add(&dev->device_list, &cpuidle_detected_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -0400434
Colin Cross4126c012012-05-07 17:57:41 -0700435 ret = cpuidle_coupled_register_device(dev);
Viresh Kumar47182662013-10-03 21:26:46 +0530436 if (ret)
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200437 __cpuidle_unregister_device(dev);
Viresh Kumar47182662013-10-03 21:26:46 +0530438 else
439 dev->registered = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400440
Viresh Kumar47182662013-10-03 21:26:46 +0530441 return ret;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400442}
443
444/**
445 * cpuidle_register_device - registers a CPU's idle PM feature
446 * @dev: the cpu
447 */
448int cpuidle_register_device(struct cpuidle_device *dev)
449{
Daniel Lezcanoc878a522013-06-12 15:08:55 +0200450 int ret = -EBUSY;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400451
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700452 if (!dev)
453 return -EINVAL;
454
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400455 mutex_lock(&cpuidle_lock);
456
Daniel Lezcanoc878a522013-06-12 15:08:55 +0200457 if (dev->registered)
458 goto out_unlock;
459
Viresh Kumar267d4bf2013-10-03 21:26:43 +0530460 __cpuidle_device_init(dev);
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200461
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200462 ret = __cpuidle_register_device(dev);
463 if (ret)
464 goto out_unlock;
465
466 ret = cpuidle_add_sysfs(dev);
467 if (ret)
468 goto out_unregister;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400469
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200470 ret = cpuidle_enable_device(dev);
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200471 if (ret)
472 goto out_sysfs;
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200473
Len Brown4f86d3a2007-10-03 18:58:00 -0400474 cpuidle_install_idle_handler();
475
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200476out_unlock:
Len Brown4f86d3a2007-10-03 18:58:00 -0400477 mutex_unlock(&cpuidle_lock);
478
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200479 return ret;
480
481out_sysfs:
482 cpuidle_remove_sysfs(dev);
483out_unregister:
484 __cpuidle_unregister_device(dev);
485 goto out_unlock;
Len Brown4f86d3a2007-10-03 18:58:00 -0400486}
487
488EXPORT_SYMBOL_GPL(cpuidle_register_device);
489
490/**
491 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
492 * @dev: the cpu
493 */
494void cpuidle_unregister_device(struct cpuidle_device *dev)
495{
Konrad Rzeszutek Wilk813e8e32013-12-03 10:59:58 -0500496 if (!dev || dev->registered == 0)
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400497 return;
498
Len Brown4f86d3a2007-10-03 18:58:00 -0400499 cpuidle_pause_and_lock();
500
501 cpuidle_disable_device(dev);
502
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200503 cpuidle_remove_sysfs(dev);
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200504
505 __cpuidle_unregister_device(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400506
Colin Cross4126c012012-05-07 17:57:41 -0700507 cpuidle_coupled_unregister_device(dev);
508
Len Brown4f86d3a2007-10-03 18:58:00 -0400509 cpuidle_resume_and_unlock();
Len Brown4f86d3a2007-10-03 18:58:00 -0400510}
511
512EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
513
Daniel Lezcano1c192d02013-04-23 15:28:44 +0000514/**
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000515 * cpuidle_unregister: unregister a driver and the devices. This function
516 * can be used only if the driver has been previously registered through
517 * the cpuidle_register function.
518 *
519 * @drv: a valid pointer to a struct cpuidle_driver
520 */
521void cpuidle_unregister(struct cpuidle_driver *drv)
522{
523 int cpu;
524 struct cpuidle_device *device;
525
Daniel Lezcano82467a52013-06-07 21:53:09 +0000526 for_each_cpu(cpu, drv->cpumask) {
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000527 device = &per_cpu(cpuidle_dev, cpu);
528 cpuidle_unregister_device(device);
529 }
530
531 cpuidle_unregister_driver(drv);
532}
533EXPORT_SYMBOL_GPL(cpuidle_unregister);
534
535/**
536 * cpuidle_register: registers the driver and the cpu devices with the
537 * coupled_cpus passed as parameter. This function is used for all common
538 * initialization pattern there are in the arch specific drivers. The
539 * devices is globally defined in this file.
540 *
541 * @drv : a valid pointer to a struct cpuidle_driver
542 * @coupled_cpus: a cpumask for the coupled states
543 *
544 * Returns 0 on success, < 0 otherwise
545 */
546int cpuidle_register(struct cpuidle_driver *drv,
547 const struct cpumask *const coupled_cpus)
548{
549 int ret, cpu;
550 struct cpuidle_device *device;
551
552 ret = cpuidle_register_driver(drv);
553 if (ret) {
554 pr_err("failed to register cpuidle driver\n");
555 return ret;
556 }
557
Daniel Lezcano82467a52013-06-07 21:53:09 +0000558 for_each_cpu(cpu, drv->cpumask) {
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000559 device = &per_cpu(cpuidle_dev, cpu);
560 device->cpu = cpu;
561
562#ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED
563 /*
Viresh Kumarcaf4a362013-10-03 21:26:41 +0530564 * On multiplatform for ARM, the coupled idle states could be
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000565 * enabled in the kernel even if the cpuidle driver does not
566 * use it. Note, coupled_cpus is a struct copy.
567 */
568 if (coupled_cpus)
569 device->coupled_cpus = *coupled_cpus;
570#endif
571 ret = cpuidle_register_device(device);
572 if (!ret)
573 continue;
574
575 pr_err("Failed to register cpuidle device for cpu%d\n", cpu);
576
577 cpuidle_unregister(drv);
578 break;
579 }
580
581 return ret;
582}
583EXPORT_SYMBOL_GPL(cpuidle_register);
584
Len Brown4f86d3a2007-10-03 18:58:00 -0400585#ifdef CONFIG_SMP
586
Len Brown4f86d3a2007-10-03 18:58:00 -0400587/*
588 * This function gets called when a part of the kernel has a new latency
589 * requirement. This means we need to get all processors out of their C-state,
590 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
591 * wakes them all right up.
592 */
593static int cpuidle_latency_notify(struct notifier_block *b,
594 unsigned long l, void *v)
595{
Chuansheng Liu2ed903c2014-09-04 15:17:55 +0800596 wake_up_all_idle_cpus();
Len Brown4f86d3a2007-10-03 18:58:00 -0400597 return NOTIFY_OK;
598}
599
600static struct notifier_block cpuidle_latency_notifier = {
601 .notifier_call = cpuidle_latency_notify,
602};
603
Mark Grossd82b3512008-02-04 22:30:08 -0800604static inline void latency_notifier_init(struct notifier_block *n)
605{
606 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
607}
Len Brown4f86d3a2007-10-03 18:58:00 -0400608
609#else /* CONFIG_SMP */
610
611#define latency_notifier_init(x) do { } while (0)
612
613#endif /* CONFIG_SMP */
614
615/**
616 * cpuidle_init - core initializer
617 */
618static int __init cpuidle_init(void)
619{
620 int ret;
621
Len Brown62027ae2011-04-01 18:13:10 -0400622 if (cpuidle_disabled())
623 return -ENODEV;
624
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800625 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400626 if (ret)
627 return ret;
628
629 latency_notifier_init(&cpuidle_latency_notifier);
630
631 return 0;
632}
633
Len Brown62027ae2011-04-01 18:13:10 -0400634module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400635core_initcall(cpuidle_init);