blob: 8b3e132b6a01390d56c9c02bfbcbcdacfb99e057 [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. Wysocki31a34092015-02-27 00:39:56 +010047static bool cpuidle_not_available(struct cpuidle_driver *drv,
48 struct cpuidle_device *dev)
49{
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
75/**
Rafael J. Wysocki38106312015-02-12 23:33:15 +010076 * cpuidle_find_deepest_state - Find deepest state meeting specific conditions.
77 * @drv: cpuidle driver for the given CPU.
78 * @dev: cpuidle device for the given CPU.
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +010079 * @freeze: Whether or not the state should be suitable for suspend-to-idle.
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020080 */
81static int cpuidle_find_deepest_state(struct cpuidle_driver *drv,
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +010082 struct cpuidle_device *dev, bool freeze)
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020083{
84 unsigned int latency_req = 0;
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +010085 int i, ret = freeze ? -1 : CPUIDLE_DRIVER_STATE_START - 1;
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020086
87 for (i = CPUIDLE_DRIVER_STATE_START; i < drv->state_count; i++) {
88 struct cpuidle_state *s = &drv->states[i];
89 struct cpuidle_state_usage *su = &dev->states_usage[i];
90
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +010091 if (s->disabled || su->disable || s->exit_latency <= latency_req
92 || (freeze && !s->enter_freeze))
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020093 continue;
94
95 latency_req = s->exit_latency;
96 ret = i;
97 }
98 return ret;
99}
100
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +0100101static void enter_freeze_proper(struct cpuidle_driver *drv,
102 struct cpuidle_device *dev, int index)
103{
104 tick_freeze();
105 /*
106 * The state used here cannot be a "coupled" one, because the "coupled"
107 * cpuidle mechanism enables interrupts and doing that with timekeeping
108 * suspended is generally unsafe.
109 */
110 drv->states[index].enter_freeze(dev, drv, index);
111 WARN_ON(!irqs_disabled());
112 /*
113 * timekeeping_resume() that will be called by tick_unfreeze() for the
114 * last CPU executing it calls functions containing RCU read-side
115 * critical sections, so tell RCU about that.
116 */
117 RCU_NONIDLE(tick_unfreeze());
118}
119
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +0200120/**
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100121 * cpuidle_enter_freeze - Enter an idle state suitable for suspend-to-idle.
122 *
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +0100123 * If there are states with the ->enter_freeze callback, find the deepest of
124 * them and enter it with frozen tick. Otherwise, find the deepest state
125 * available and enter it normally.
Rafael J. Wysocki01e04f42015-02-27 00:39:21 +0100126 *
127 * Returns with enabled interrupts.
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100128 */
129void cpuidle_enter_freeze(void)
130{
131 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
132 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
133 int index;
134
Rafael J. Wysocki31a34092015-02-27 00:39:56 +0100135 if (cpuidle_not_available(drv, dev))
136 goto fallback;
137
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +0100138 /*
139 * Find the deepest state with ->enter_freeze present, which guarantees
140 * that interrupts won't be enabled when it exits and allows the tick to
141 * be frozen safely.
142 */
143 index = cpuidle_find_deepest_state(drv, dev, true);
144 if (index >= 0) {
145 enter_freeze_proper(drv, dev, index);
Rafael J. Wysocki01e04f42015-02-27 00:39:21 +0100146 local_irq_enable();
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +0100147 return;
148 }
149
150 /*
151 * It is not safe to freeze the tick, find the deepest state available
152 * at all and try to enter it normally.
153 */
154 index = cpuidle_find_deepest_state(drv, dev, false);
Rafael J. Wysocki31a34092015-02-27 00:39:56 +0100155 if (index >= 0) {
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100156 cpuidle_enter(drv, dev, index);
Rafael J. Wysocki31a34092015-02-27 00:39:56 +0100157 return;
158 }
159
160 fallback:
161 arch_cpu_idle();
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100162}
163
164/**
Colin Cross56cfbf72012-05-07 17:57:39 -0700165 * cpuidle_enter_state - enter the state and update stats
166 * @dev: cpuidle device for this cpu
167 * @drv: cpuidle driver for this cpu
168 * @next_state: index into drv->states of the state to enter
169 */
170int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv,
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000171 int index)
Colin Cross56cfbf72012-05-07 17:57:39 -0700172{
173 int entered_state;
174
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000175 struct cpuidle_state *target_state = &drv->states[index];
176 ktime_t time_start, time_end;
177 s64 diff;
178
Sandeep Tripathy30fe6882014-07-02 15:00:58 +0530179 trace_cpu_idle_rcuidle(index, dev->cpu);
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000180 time_start = ktime_get();
181
182 entered_state = target_state->enter(dev, drv, index);
183
184 time_end = ktime_get();
Sandeep Tripathy30fe6882014-07-02 15:00:58 +0530185 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000186
Paul Burton0b89e9a2014-03-06 11:02:01 +0000187 if (!cpuidle_state_is_coupled(dev, drv, entered_state))
188 local_irq_enable();
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000189
190 diff = ktime_to_us(ktime_sub(time_end, time_start));
191 if (diff > INT_MAX)
192 diff = INT_MAX;
193
194 dev->last_residency = (int) diff;
Colin Cross56cfbf72012-05-07 17:57:39 -0700195
196 if (entered_state >= 0) {
197 /* Update cpuidle counters */
198 /* This can be moved to within driver enter routine
199 * but that results in multiple copies of same code.
200 */
Julius Wernera474a512012-11-27 14:17:58 +0100201 dev->states_usage[entered_state].time += dev->last_residency;
Colin Cross56cfbf72012-05-07 17:57:39 -0700202 dev->states_usage[entered_state].usage++;
203 } else {
204 dev->last_residency = 0;
205 }
206
207 return entered_state;
208}
209
210/**
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100211 * cpuidle_select - ask the cpuidle framework to choose an idle state
Len Brown4f86d3a2007-10-03 18:58:00 -0400212 *
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100213 * @drv: the cpuidle driver
214 * @dev: the cpuidle device
215 *
216 * Returns the index of the idle state.
Len Brown4f86d3a2007-10-03 18:58:00 -0400217 */
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100218int cpuidle_select(struct cpuidle_driver *drv, struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400219{
Rafael J. Wysocki31a34092015-02-27 00:39:56 +0100220 if (cpuidle_not_available(drv, dev))
Rafael J. Wysocki52c324f2014-05-01 00:13:47 +0200221 return -ENODEV;
222
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100223 return cpuidle_curr_governor->select(drv, dev);
224}
Len Brown4f86d3a2007-10-03 18:58:00 -0400225
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100226/**
227 * cpuidle_enter - enter into the specified idle state
228 *
229 * @drv: the cpuidle driver tied with the cpu
230 * @dev: the cpuidle device
231 * @index: the index in the idle state table
232 *
233 * Returns the index in the idle state, < 0 in case of error.
234 * The error code depends on the backend driver
235 */
236int cpuidle_enter(struct cpuidle_driver *drv, struct cpuidle_device *dev,
237 int index)
238{
239 if (cpuidle_state_is_coupled(dev, drv, index))
240 return cpuidle_enter_state_coupled(dev, drv, index);
241 return cpuidle_enter_state(dev, drv, index);
242}
Len Browna0bfa132011-04-01 19:34:59 -0400243
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100244/**
245 * cpuidle_reflect - tell the underlying governor what was the state
246 * we were in
247 *
248 * @dev : the cpuidle device
249 * @index: the index in the idle state table
250 *
251 */
252void cpuidle_reflect(struct cpuidle_device *dev, int index)
253{
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100254 if (cpuidle_curr_governor->reflect)
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100255 cpuidle_curr_governor->reflect(dev, index);
Len Brown4f86d3a2007-10-03 18:58:00 -0400256}
257
258/**
259 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
260 */
261void cpuidle_install_idle_handler(void)
262{
Len Browna0bfa132011-04-01 19:34:59 -0400263 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400264 /* Make sure all changes finished before we switch to new idle */
265 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400266 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400267 }
268}
269
270/**
271 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
272 */
273void cpuidle_uninstall_idle_handler(void)
274{
Len Browna0bfa132011-04-01 19:34:59 -0400275 if (enabled_devices) {
276 initialized = 0;
Chuansheng Liu2ed903c2014-09-04 15:17:55 +0800277 wake_up_all_idle_cpus();
Len Brown4f86d3a2007-10-03 18:58:00 -0400278 }
Daniel Lezcano442bf3a2014-09-04 11:32:09 -0400279
280 /*
281 * Make sure external observers (such as the scheduler)
282 * are done looking at pointed idle states.
283 */
284 synchronize_rcu();
Len Brown4f86d3a2007-10-03 18:58:00 -0400285}
286
287/**
288 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
289 */
290void cpuidle_pause_and_lock(void)
291{
292 mutex_lock(&cpuidle_lock);
293 cpuidle_uninstall_idle_handler();
294}
295
296EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
297
298/**
299 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
300 */
301void cpuidle_resume_and_unlock(void)
302{
303 cpuidle_install_idle_handler();
304 mutex_unlock(&cpuidle_lock);
305}
306
307EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
308
Preeti U Murthy8651f972012-07-09 10:12:56 +0200309/* Currently used in suspend/resume path to suspend cpuidle */
310void cpuidle_pause(void)
311{
312 mutex_lock(&cpuidle_lock);
313 cpuidle_uninstall_idle_handler();
314 mutex_unlock(&cpuidle_lock);
315}
316
317/* Currently used in suspend/resume path to resume cpuidle */
318void cpuidle_resume(void)
319{
320 mutex_lock(&cpuidle_lock);
321 cpuidle_install_idle_handler();
322 mutex_unlock(&cpuidle_lock);
323}
324
Len Brown4f86d3a2007-10-03 18:58:00 -0400325/**
326 * cpuidle_enable_device - enables idle PM for a CPU
327 * @dev: the CPU
328 *
329 * This function must be called between cpuidle_pause_and_lock and
330 * cpuidle_resume_and_unlock when used externally.
331 */
332int cpuidle_enable_device(struct cpuidle_device *dev)
333{
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200334 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000335 struct cpuidle_driver *drv;
Len Brown4f86d3a2007-10-03 18:58:00 -0400336
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700337 if (!dev)
338 return -EINVAL;
339
Len Brown4f86d3a2007-10-03 18:58:00 -0400340 if (dev->enabled)
341 return 0;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000342
343 drv = cpuidle_get_cpu_driver(dev);
344
Robert Leee1689792012-03-20 15:22:42 -0500345 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400346 return -EIO;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000347
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200348 if (!dev->registered)
349 return -EINVAL;
350
Len Brown4f86d3a2007-10-03 18:58:00 -0400351 if (!dev->state_count)
Daniel Lezcanofc850f32012-03-26 14:51:26 +0200352 dev->state_count = drv->state_count;
Len Brown4f86d3a2007-10-03 18:58:00 -0400353
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000354 ret = cpuidle_add_device_sysfs(dev);
355 if (ret)
Len Brown4f86d3a2007-10-03 18:58:00 -0400356 return ret;
357
358 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500359 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400360 goto fail_sysfs;
361
Len Brown4f86d3a2007-10-03 18:58:00 -0400362 smp_wmb();
363
364 dev->enabled = 1;
365
366 enabled_devices++;
367 return 0;
368
369fail_sysfs:
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000370 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400371
372 return ret;
373}
374
375EXPORT_SYMBOL_GPL(cpuidle_enable_device);
376
377/**
378 * cpuidle_disable_device - disables idle PM for a CPU
379 * @dev: the CPU
380 *
381 * This function must be called between cpuidle_pause_and_lock and
382 * cpuidle_resume_and_unlock when used externally.
383 */
384void cpuidle_disable_device(struct cpuidle_device *dev)
385{
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000386 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
387
Srivatsa S. Bhatcf31cd12012-10-08 13:43:08 +0530388 if (!dev || !dev->enabled)
Len Brown4f86d3a2007-10-03 18:58:00 -0400389 return;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000390
391 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400392 return;
393
394 dev->enabled = 0;
395
396 if (cpuidle_curr_governor->disable)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000397 cpuidle_curr_governor->disable(drv, dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400398
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000399 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400400 enabled_devices--;
401}
402
403EXPORT_SYMBOL_GPL(cpuidle_disable_device);
404
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200405static void __cpuidle_unregister_device(struct cpuidle_device *dev)
406{
407 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
408
409 list_del(&dev->device_list);
410 per_cpu(cpuidle_devices, dev->cpu) = NULL;
411 module_put(drv->owner);
412}
413
Viresh Kumar267d4bf2013-10-03 21:26:43 +0530414static void __cpuidle_device_init(struct cpuidle_device *dev)
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200415{
416 memset(dev->states_usage, 0, sizeof(dev->states_usage));
417 dev->last_residency = 0;
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200418}
419
Len Brown4f86d3a2007-10-03 18:58:00 -0400420/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400421 * __cpuidle_register_device - internal register function called before register
422 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400423 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400424 *
425 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400426 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400427static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400428{
429 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000430 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400431
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000432 if (!try_module_get(drv->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400433 return -EINVAL;
434
Len Brown4f86d3a2007-10-03 18:58:00 -0400435 per_cpu(cpuidle_devices, dev->cpu) = dev;
436 list_add(&dev->device_list, &cpuidle_detected_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -0400437
Colin Cross4126c012012-05-07 17:57:41 -0700438 ret = cpuidle_coupled_register_device(dev);
Viresh Kumar47182662013-10-03 21:26:46 +0530439 if (ret)
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200440 __cpuidle_unregister_device(dev);
Viresh Kumar47182662013-10-03 21:26:46 +0530441 else
442 dev->registered = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400443
Viresh Kumar47182662013-10-03 21:26:46 +0530444 return ret;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400445}
446
447/**
448 * cpuidle_register_device - registers a CPU's idle PM feature
449 * @dev: the cpu
450 */
451int cpuidle_register_device(struct cpuidle_device *dev)
452{
Daniel Lezcanoc878a522013-06-12 15:08:55 +0200453 int ret = -EBUSY;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400454
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700455 if (!dev)
456 return -EINVAL;
457
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400458 mutex_lock(&cpuidle_lock);
459
Daniel Lezcanoc878a522013-06-12 15:08:55 +0200460 if (dev->registered)
461 goto out_unlock;
462
Viresh Kumar267d4bf2013-10-03 21:26:43 +0530463 __cpuidle_device_init(dev);
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200464
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200465 ret = __cpuidle_register_device(dev);
466 if (ret)
467 goto out_unlock;
468
469 ret = cpuidle_add_sysfs(dev);
470 if (ret)
471 goto out_unregister;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400472
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200473 ret = cpuidle_enable_device(dev);
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200474 if (ret)
475 goto out_sysfs;
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200476
Len Brown4f86d3a2007-10-03 18:58:00 -0400477 cpuidle_install_idle_handler();
478
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200479out_unlock:
Len Brown4f86d3a2007-10-03 18:58:00 -0400480 mutex_unlock(&cpuidle_lock);
481
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200482 return ret;
483
484out_sysfs:
485 cpuidle_remove_sysfs(dev);
486out_unregister:
487 __cpuidle_unregister_device(dev);
488 goto out_unlock;
Len Brown4f86d3a2007-10-03 18:58:00 -0400489}
490
491EXPORT_SYMBOL_GPL(cpuidle_register_device);
492
493/**
494 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
495 * @dev: the cpu
496 */
497void cpuidle_unregister_device(struct cpuidle_device *dev)
498{
Konrad Rzeszutek Wilk813e8e32013-12-03 10:59:58 -0500499 if (!dev || dev->registered == 0)
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400500 return;
501
Len Brown4f86d3a2007-10-03 18:58:00 -0400502 cpuidle_pause_and_lock();
503
504 cpuidle_disable_device(dev);
505
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200506 cpuidle_remove_sysfs(dev);
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200507
508 __cpuidle_unregister_device(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400509
Colin Cross4126c012012-05-07 17:57:41 -0700510 cpuidle_coupled_unregister_device(dev);
511
Len Brown4f86d3a2007-10-03 18:58:00 -0400512 cpuidle_resume_and_unlock();
Len Brown4f86d3a2007-10-03 18:58:00 -0400513}
514
515EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
516
Daniel Lezcano1c192d02013-04-23 15:28:44 +0000517/**
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000518 * cpuidle_unregister: unregister a driver and the devices. This function
519 * can be used only if the driver has been previously registered through
520 * the cpuidle_register function.
521 *
522 * @drv: a valid pointer to a struct cpuidle_driver
523 */
524void cpuidle_unregister(struct cpuidle_driver *drv)
525{
526 int cpu;
527 struct cpuidle_device *device;
528
Daniel Lezcano82467a52013-06-07 21:53:09 +0000529 for_each_cpu(cpu, drv->cpumask) {
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000530 device = &per_cpu(cpuidle_dev, cpu);
531 cpuidle_unregister_device(device);
532 }
533
534 cpuidle_unregister_driver(drv);
535}
536EXPORT_SYMBOL_GPL(cpuidle_unregister);
537
538/**
539 * cpuidle_register: registers the driver and the cpu devices with the
540 * coupled_cpus passed as parameter. This function is used for all common
541 * initialization pattern there are in the arch specific drivers. The
542 * devices is globally defined in this file.
543 *
544 * @drv : a valid pointer to a struct cpuidle_driver
545 * @coupled_cpus: a cpumask for the coupled states
546 *
547 * Returns 0 on success, < 0 otherwise
548 */
549int cpuidle_register(struct cpuidle_driver *drv,
550 const struct cpumask *const coupled_cpus)
551{
552 int ret, cpu;
553 struct cpuidle_device *device;
554
555 ret = cpuidle_register_driver(drv);
556 if (ret) {
557 pr_err("failed to register cpuidle driver\n");
558 return ret;
559 }
560
Daniel Lezcano82467a52013-06-07 21:53:09 +0000561 for_each_cpu(cpu, drv->cpumask) {
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000562 device = &per_cpu(cpuidle_dev, cpu);
563 device->cpu = cpu;
564
565#ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED
566 /*
Viresh Kumarcaf4a362013-10-03 21:26:41 +0530567 * On multiplatform for ARM, the coupled idle states could be
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000568 * enabled in the kernel even if the cpuidle driver does not
569 * use it. Note, coupled_cpus is a struct copy.
570 */
571 if (coupled_cpus)
572 device->coupled_cpus = *coupled_cpus;
573#endif
574 ret = cpuidle_register_device(device);
575 if (!ret)
576 continue;
577
578 pr_err("Failed to register cpuidle device for cpu%d\n", cpu);
579
580 cpuidle_unregister(drv);
581 break;
582 }
583
584 return ret;
585}
586EXPORT_SYMBOL_GPL(cpuidle_register);
587
Len Brown4f86d3a2007-10-03 18:58:00 -0400588#ifdef CONFIG_SMP
589
Len Brown4f86d3a2007-10-03 18:58:00 -0400590/*
591 * This function gets called when a part of the kernel has a new latency
592 * requirement. This means we need to get all processors out of their C-state,
593 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
594 * wakes them all right up.
595 */
596static int cpuidle_latency_notify(struct notifier_block *b,
597 unsigned long l, void *v)
598{
Chuansheng Liu2ed903c2014-09-04 15:17:55 +0800599 wake_up_all_idle_cpus();
Len Brown4f86d3a2007-10-03 18:58:00 -0400600 return NOTIFY_OK;
601}
602
603static struct notifier_block cpuidle_latency_notifier = {
604 .notifier_call = cpuidle_latency_notify,
605};
606
Mark Grossd82b3512008-02-04 22:30:08 -0800607static inline void latency_notifier_init(struct notifier_block *n)
608{
609 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
610}
Len Brown4f86d3a2007-10-03 18:58:00 -0400611
612#else /* CONFIG_SMP */
613
614#define latency_notifier_init(x) do { } while (0)
615
616#endif /* CONFIG_SMP */
617
618/**
619 * cpuidle_init - core initializer
620 */
621static int __init cpuidle_init(void)
622{
623 int ret;
624
Len Brown62027ae2011-04-01 18:13:10 -0400625 if (cpuidle_disabled())
626 return -ENODEV;
627
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800628 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400629 if (ret)
630 return ret;
631
632 latency_notifier_init(&cpuidle_latency_notifier);
633
634 return 0;
635}
636
Len Brown62027ae2011-04-01 18:13:10 -0400637module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400638core_initcall(cpuidle_init);