blob: ee9df5e3f5eba2a5bb705e8be1898c2a370ccd21 [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;
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020035static bool use_deepest_state __read_mostly;
Len Brown62027ae2011-04-01 18:13:10 -040036
37int cpuidle_disabled(void)
38{
39 return off;
40}
Len Brownd91ee582011-04-01 18:28:35 -040041void disable_cpuidle(void)
42{
43 off = 1;
44}
Len Brown4f86d3a2007-10-03 18:58:00 -040045
46/**
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010047 * cpuidle_play_dead - cpu off-lining
48 *
Toshi Kaniee01e662012-03-31 21:37:02 -060049 * Returns in case of an error or no driver
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010050 */
51int cpuidle_play_dead(void)
52{
53 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +000054 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Daniel Lezcano8aef33a2013-01-15 14:18:04 +010055 int i;
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010056
Toshi Kaniee01e662012-03-31 21:37:02 -060057 if (!drv)
58 return -ENODEV;
59
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010060 /* Find lowest-power state that supports long-term idle */
Daniel Lezcano8aef33a2013-01-15 14:18:04 +010061 for (i = drv->state_count - 1; i >= CPUIDLE_DRIVER_STATE_START; i--)
62 if (drv->states[i].enter_dead)
63 return drv->states[i].enter_dead(dev, i);
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010064
65 return -ENODEV;
66}
67
68/**
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020069 * cpuidle_use_deepest_state - Enable/disable the "deepest idle" mode.
70 * @enable: Whether enable or disable the feature.
71 *
72 * If the "deepest idle" mode is enabled, cpuidle will ignore the governor and
73 * always use the state with the greatest exit latency (out of the states that
74 * are not disabled).
75 *
76 * This function can only be called after cpuidle_pause() to avoid races.
77 */
78void cpuidle_use_deepest_state(bool enable)
79{
80 use_deepest_state = enable;
81}
82
83/**
84 * cpuidle_find_deepest_state - Find the state of the greatest exit latency.
85 * @drv: cpuidle driver for a given CPU.
86 * @dev: cpuidle device for a given CPU.
87 */
88static int cpuidle_find_deepest_state(struct cpuidle_driver *drv,
89 struct cpuidle_device *dev)
90{
91 unsigned int latency_req = 0;
92 int i, ret = CPUIDLE_DRIVER_STATE_START - 1;
93
94 for (i = CPUIDLE_DRIVER_STATE_START; i < drv->state_count; i++) {
95 struct cpuidle_state *s = &drv->states[i];
96 struct cpuidle_state_usage *su = &dev->states_usage[i];
97
98 if (s->disabled || su->disable || s->exit_latency <= latency_req)
99 continue;
100
101 latency_req = s->exit_latency;
102 ret = i;
103 }
104 return ret;
105}
106
107/**
Colin Cross56cfbf72012-05-07 17:57:39 -0700108 * cpuidle_enter_state - enter the state and update stats
109 * @dev: cpuidle device for this cpu
110 * @drv: cpuidle driver for this cpu
111 * @next_state: index into drv->states of the state to enter
112 */
113int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv,
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000114 int index)
Colin Cross56cfbf72012-05-07 17:57:39 -0700115{
116 int entered_state;
117
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000118 struct cpuidle_state *target_state = &drv->states[index];
119 ktime_t time_start, time_end;
120 s64 diff;
121
Sandeep Tripathy30fe6882014-07-02 15:00:58 +0530122 trace_cpu_idle_rcuidle(index, dev->cpu);
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000123 time_start = ktime_get();
124
125 entered_state = target_state->enter(dev, drv, index);
126
127 time_end = ktime_get();
Sandeep Tripathy30fe6882014-07-02 15:00:58 +0530128 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000129
Paul Burton0b89e9a2014-03-06 11:02:01 +0000130 if (!cpuidle_state_is_coupled(dev, drv, entered_state))
131 local_irq_enable();
Daniel Lezcano554c06b2013-04-23 08:54:31 +0000132
133 diff = ktime_to_us(ktime_sub(time_end, time_start));
134 if (diff > INT_MAX)
135 diff = INT_MAX;
136
137 dev->last_residency = (int) diff;
Colin Cross56cfbf72012-05-07 17:57:39 -0700138
139 if (entered_state >= 0) {
140 /* Update cpuidle counters */
141 /* This can be moved to within driver enter routine
142 * but that results in multiple copies of same code.
143 */
Julius Wernera474a512012-11-27 14:17:58 +0100144 dev->states_usage[entered_state].time += dev->last_residency;
Colin Cross56cfbf72012-05-07 17:57:39 -0700145 dev->states_usage[entered_state].usage++;
146 } else {
147 dev->last_residency = 0;
148 }
149
150 return entered_state;
151}
152
153/**
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100154 * cpuidle_select - ask the cpuidle framework to choose an idle state
Len Brown4f86d3a2007-10-03 18:58:00 -0400155 *
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100156 * @drv: the cpuidle driver
157 * @dev: the cpuidle device
158 *
159 * Returns the index of the idle state.
Len Brown4f86d3a2007-10-03 18:58:00 -0400160 */
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100161int cpuidle_select(struct cpuidle_driver *drv, struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400162{
Rafael J. Wysocki52c324f2014-05-01 00:13:47 +0200163 if (off || !initialized)
164 return -ENODEV;
165
166 if (!drv || !dev || !dev->enabled)
167 return -EBUSY;
168
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +0200169 if (unlikely(use_deepest_state))
170 return cpuidle_find_deepest_state(drv, dev);
171
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100172 return cpuidle_curr_governor->select(drv, dev);
173}
Len Brown4f86d3a2007-10-03 18:58:00 -0400174
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100175/**
176 * cpuidle_enter - enter into the specified idle state
177 *
178 * @drv: the cpuidle driver tied with the cpu
179 * @dev: the cpuidle device
180 * @index: the index in the idle state table
181 *
182 * Returns the index in the idle state, < 0 in case of error.
183 * The error code depends on the backend driver
184 */
185int cpuidle_enter(struct cpuidle_driver *drv, struct cpuidle_device *dev,
186 int index)
187{
188 if (cpuidle_state_is_coupled(dev, drv, index))
189 return cpuidle_enter_state_coupled(dev, drv, index);
190 return cpuidle_enter_state(dev, drv, index);
191}
Len Browna0bfa132011-04-01 19:34:59 -0400192
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100193/**
194 * cpuidle_reflect - tell the underlying governor what was the state
195 * we were in
196 *
197 * @dev : the cpuidle device
198 * @index: the index in the idle state table
199 *
200 */
201void cpuidle_reflect(struct cpuidle_device *dev, int index)
202{
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +0200203 if (cpuidle_curr_governor->reflect && !unlikely(use_deepest_state))
Daniel Lezcano907e30f2014-03-03 08:48:50 +0100204 cpuidle_curr_governor->reflect(dev, index);
Len Brown4f86d3a2007-10-03 18:58:00 -0400205}
206
207/**
208 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
209 */
210void cpuidle_install_idle_handler(void)
211{
Len Browna0bfa132011-04-01 19:34:59 -0400212 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400213 /* Make sure all changes finished before we switch to new idle */
214 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400215 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400216 }
217}
218
219/**
220 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
221 */
222void cpuidle_uninstall_idle_handler(void)
223{
Len Browna0bfa132011-04-01 19:34:59 -0400224 if (enabled_devices) {
225 initialized = 0;
Thomas Gleixner4a162512012-05-07 17:59:48 +0000226 kick_all_cpus_sync();
Len Brown4f86d3a2007-10-03 18:58:00 -0400227 }
228}
229
230/**
231 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
232 */
233void cpuidle_pause_and_lock(void)
234{
235 mutex_lock(&cpuidle_lock);
236 cpuidle_uninstall_idle_handler();
237}
238
239EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
240
241/**
242 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
243 */
244void cpuidle_resume_and_unlock(void)
245{
246 cpuidle_install_idle_handler();
247 mutex_unlock(&cpuidle_lock);
248}
249
250EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
251
Preeti U Murthy8651f972012-07-09 10:12:56 +0200252/* Currently used in suspend/resume path to suspend cpuidle */
253void cpuidle_pause(void)
254{
255 mutex_lock(&cpuidle_lock);
256 cpuidle_uninstall_idle_handler();
257 mutex_unlock(&cpuidle_lock);
258}
259
260/* Currently used in suspend/resume path to resume cpuidle */
261void cpuidle_resume(void)
262{
263 mutex_lock(&cpuidle_lock);
264 cpuidle_install_idle_handler();
265 mutex_unlock(&cpuidle_lock);
266}
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
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000297 ret = cpuidle_add_device_sysfs(dev);
298 if (ret)
Len Brown4f86d3a2007-10-03 18:58:00 -0400299 return ret;
300
301 if (cpuidle_curr_governor->enable &&
Robert Leee1689792012-03-20 15:22:42 -0500302 (ret = cpuidle_curr_governor->enable(drv, dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400303 goto fail_sysfs;
304
Len Brown4f86d3a2007-10-03 18:58:00 -0400305 smp_wmb();
306
307 dev->enabled = 1;
308
309 enabled_devices++;
310 return 0;
311
312fail_sysfs:
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000313 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400314
315 return ret;
316}
317
318EXPORT_SYMBOL_GPL(cpuidle_enable_device);
319
320/**
321 * cpuidle_disable_device - disables idle PM for a CPU
322 * @dev: the CPU
323 *
324 * This function must be called between cpuidle_pause_and_lock and
325 * cpuidle_resume_and_unlock when used externally.
326 */
327void cpuidle_disable_device(struct cpuidle_device *dev)
328{
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000329 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
330
Srivatsa S. Bhatcf31cd12012-10-08 13:43:08 +0530331 if (!dev || !dev->enabled)
Len Brown4f86d3a2007-10-03 18:58:00 -0400332 return;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000333
334 if (!drv || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400335 return;
336
337 dev->enabled = 0;
338
339 if (cpuidle_curr_governor->disable)
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000340 cpuidle_curr_governor->disable(drv, dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400341
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000342 cpuidle_remove_device_sysfs(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400343 enabled_devices--;
344}
345
346EXPORT_SYMBOL_GPL(cpuidle_disable_device);
347
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200348static void __cpuidle_unregister_device(struct cpuidle_device *dev)
349{
350 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
351
352 list_del(&dev->device_list);
353 per_cpu(cpuidle_devices, dev->cpu) = NULL;
354 module_put(drv->owner);
355}
356
Viresh Kumar267d4bf2013-10-03 21:26:43 +0530357static void __cpuidle_device_init(struct cpuidle_device *dev)
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200358{
359 memset(dev->states_usage, 0, sizeof(dev->states_usage));
360 dev->last_residency = 0;
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200361}
362
Len Brown4f86d3a2007-10-03 18:58:00 -0400363/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400364 * __cpuidle_register_device - internal register function called before register
365 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400366 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400367 *
368 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400369 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400370static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400371{
372 int ret;
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000373 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400374
Daniel Lezcanobf4d1b52012-10-31 16:44:48 +0000375 if (!try_module_get(drv->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400376 return -EINVAL;
377
Len Brown4f86d3a2007-10-03 18:58:00 -0400378 per_cpu(cpuidle_devices, dev->cpu) = dev;
379 list_add(&dev->device_list, &cpuidle_detected_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -0400380
Colin Cross4126c012012-05-07 17:57:41 -0700381 ret = cpuidle_coupled_register_device(dev);
Viresh Kumar47182662013-10-03 21:26:46 +0530382 if (ret)
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200383 __cpuidle_unregister_device(dev);
Viresh Kumar47182662013-10-03 21:26:46 +0530384 else
385 dev->registered = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400386
Viresh Kumar47182662013-10-03 21:26:46 +0530387 return ret;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400388}
389
390/**
391 * cpuidle_register_device - registers a CPU's idle PM feature
392 * @dev: the cpu
393 */
394int cpuidle_register_device(struct cpuidle_device *dev)
395{
Daniel Lezcanoc878a522013-06-12 15:08:55 +0200396 int ret = -EBUSY;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400397
Srivatsa S. Bhat1b0a0e92012-05-04 14:06:02 -0700398 if (!dev)
399 return -EINVAL;
400
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400401 mutex_lock(&cpuidle_lock);
402
Daniel Lezcanoc878a522013-06-12 15:08:55 +0200403 if (dev->registered)
404 goto out_unlock;
405
Viresh Kumar267d4bf2013-10-03 21:26:43 +0530406 __cpuidle_device_init(dev);
Daniel Lezcano5df0aa72013-06-12 15:08:54 +0200407
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200408 ret = __cpuidle_register_device(dev);
409 if (ret)
410 goto out_unlock;
411
412 ret = cpuidle_add_sysfs(dev);
413 if (ret)
414 goto out_unregister;
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400415
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200416 ret = cpuidle_enable_device(dev);
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200417 if (ret)
418 goto out_sysfs;
Daniel Lezcano10b9d3f2013-06-12 15:08:49 +0200419
Len Brown4f86d3a2007-10-03 18:58:00 -0400420 cpuidle_install_idle_handler();
421
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200422out_unlock:
Len Brown4f86d3a2007-10-03 18:58:00 -0400423 mutex_unlock(&cpuidle_lock);
424
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200425 return ret;
426
427out_sysfs:
428 cpuidle_remove_sysfs(dev);
429out_unregister:
430 __cpuidle_unregister_device(dev);
431 goto out_unlock;
Len Brown4f86d3a2007-10-03 18:58:00 -0400432}
433
434EXPORT_SYMBOL_GPL(cpuidle_register_device);
435
436/**
437 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
438 * @dev: the cpu
439 */
440void cpuidle_unregister_device(struct cpuidle_device *dev)
441{
Konrad Rzeszutek Wilk813e8e32013-12-03 10:59:58 -0500442 if (!dev || dev->registered == 0)
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400443 return;
444
Len Brown4f86d3a2007-10-03 18:58:00 -0400445 cpuidle_pause_and_lock();
446
447 cpuidle_disable_device(dev);
448
Daniel Lezcano1aef40e2012-10-26 12:26:24 +0200449 cpuidle_remove_sysfs(dev);
Daniel Lezcanof6bb51a2013-06-12 15:08:53 +0200450
451 __cpuidle_unregister_device(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400452
Colin Cross4126c012012-05-07 17:57:41 -0700453 cpuidle_coupled_unregister_device(dev);
454
Len Brown4f86d3a2007-10-03 18:58:00 -0400455 cpuidle_resume_and_unlock();
Len Brown4f86d3a2007-10-03 18:58:00 -0400456}
457
458EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
459
Daniel Lezcano1c192d02013-04-23 15:28:44 +0000460/**
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000461 * cpuidle_unregister: unregister a driver and the devices. This function
462 * can be used only if the driver has been previously registered through
463 * the cpuidle_register function.
464 *
465 * @drv: a valid pointer to a struct cpuidle_driver
466 */
467void cpuidle_unregister(struct cpuidle_driver *drv)
468{
469 int cpu;
470 struct cpuidle_device *device;
471
Daniel Lezcano82467a52013-06-07 21:53:09 +0000472 for_each_cpu(cpu, drv->cpumask) {
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000473 device = &per_cpu(cpuidle_dev, cpu);
474 cpuidle_unregister_device(device);
475 }
476
477 cpuidle_unregister_driver(drv);
478}
479EXPORT_SYMBOL_GPL(cpuidle_unregister);
480
481/**
482 * cpuidle_register: registers the driver and the cpu devices with the
483 * coupled_cpus passed as parameter. This function is used for all common
484 * initialization pattern there are in the arch specific drivers. The
485 * devices is globally defined in this file.
486 *
487 * @drv : a valid pointer to a struct cpuidle_driver
488 * @coupled_cpus: a cpumask for the coupled states
489 *
490 * Returns 0 on success, < 0 otherwise
491 */
492int cpuidle_register(struct cpuidle_driver *drv,
493 const struct cpumask *const coupled_cpus)
494{
495 int ret, cpu;
496 struct cpuidle_device *device;
497
498 ret = cpuidle_register_driver(drv);
499 if (ret) {
500 pr_err("failed to register cpuidle driver\n");
501 return ret;
502 }
503
Daniel Lezcano82467a52013-06-07 21:53:09 +0000504 for_each_cpu(cpu, drv->cpumask) {
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000505 device = &per_cpu(cpuidle_dev, cpu);
506 device->cpu = cpu;
507
508#ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED
509 /*
Viresh Kumarcaf4a362013-10-03 21:26:41 +0530510 * On multiplatform for ARM, the coupled idle states could be
Daniel Lezcano4c637b22013-04-23 08:54:33 +0000511 * enabled in the kernel even if the cpuidle driver does not
512 * use it. Note, coupled_cpus is a struct copy.
513 */
514 if (coupled_cpus)
515 device->coupled_cpus = *coupled_cpus;
516#endif
517 ret = cpuidle_register_device(device);
518 if (!ret)
519 continue;
520
521 pr_err("Failed to register cpuidle device for cpu%d\n", cpu);
522
523 cpuidle_unregister(drv);
524 break;
525 }
526
527 return ret;
528}
529EXPORT_SYMBOL_GPL(cpuidle_register);
530
Len Brown4f86d3a2007-10-03 18:58:00 -0400531#ifdef CONFIG_SMP
532
533static void smp_callback(void *v)
534{
535 /* we already woke the CPU up, nothing more to do */
536}
537
538/*
539 * This function gets called when a part of the kernel has a new latency
540 * requirement. This means we need to get all processors out of their C-state,
541 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
542 * wakes them all right up.
543 */
544static int cpuidle_latency_notify(struct notifier_block *b,
545 unsigned long l, void *v)
546{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200547 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400548 return NOTIFY_OK;
549}
550
551static struct notifier_block cpuidle_latency_notifier = {
552 .notifier_call = cpuidle_latency_notify,
553};
554
Mark Grossd82b3512008-02-04 22:30:08 -0800555static inline void latency_notifier_init(struct notifier_block *n)
556{
557 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
558}
Len Brown4f86d3a2007-10-03 18:58:00 -0400559
560#else /* CONFIG_SMP */
561
562#define latency_notifier_init(x) do { } while (0)
563
564#endif /* CONFIG_SMP */
565
566/**
567 * cpuidle_init - core initializer
568 */
569static int __init cpuidle_init(void)
570{
571 int ret;
572
Len Brown62027ae2011-04-01 18:13:10 -0400573 if (cpuidle_disabled())
574 return -ENODEV;
575
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800576 ret = cpuidle_add_interface(cpu_subsys.dev_root);
Len Brown4f86d3a2007-10-03 18:58:00 -0400577 if (ret)
578 return ret;
579
580 latency_notifier_init(&cpuidle_latency_notifier);
581
582 return 0;
583}
584
Len Brown62027ae2011-04-01 18:13:10 -0400585module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400586core_initcall(cpuidle_init);