blob: 7a57b11eaa8d0b91a0814609e5c16354ae0e57f5 [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
11#include <linux/kernel.h>
12#include <linux/mutex.h>
13#include <linux/sched.h>
14#include <linux/notifier.h>
Mark Grossd82b3512008-02-04 22:30:08 -080015#include <linux/pm_qos_params.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040016#include <linux/cpu.h>
17#include <linux/cpuidle.h>
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -080018#include <linux/ktime.h>
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -070019#include <linux/hrtimer.h>
Arjan van de Ven288f0232009-09-19 13:35:33 +020020#include <trace/events/power.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040021
22#include "cpuidle.h"
23
24DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -040025
26DEFINE_MUTEX(cpuidle_lock);
27LIST_HEAD(cpuidle_detected_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -040028
29static int enabled_devices;
Len Brown62027ae2011-04-01 18:13:10 -040030static int off __read_mostly;
Len Browna0bfa132011-04-01 19:34:59 -040031static int initialized __read_mostly;
Len Brown62027ae2011-04-01 18:13:10 -040032
33int cpuidle_disabled(void)
34{
35 return off;
36}
Len Brownd91ee582011-04-01 18:28:35 -040037void disable_cpuidle(void)
38{
39 off = 1;
40}
Len Brown4f86d3a2007-10-03 18:58:00 -040041
Venki Pallipadia6869cc2008-02-08 17:05:44 -080042#if defined(CONFIG_ARCH_HAS_CPU_IDLE_WAIT)
43static void cpuidle_kick_cpus(void)
44{
45 cpu_idle_wait();
46}
47#elif defined(CONFIG_SMP)
48# error "Arch needs cpu_idle_wait() equivalent here"
49#else /* !CONFIG_ARCH_HAS_CPU_IDLE_WAIT && !CONFIG_SMP */
50static void cpuidle_kick_cpus(void) {}
51#endif
52
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -040053static int __cpuidle_register_device(struct cpuidle_device *dev);
54
Len Brown4f86d3a2007-10-03 18:58:00 -040055/**
56 * cpuidle_idle_call - the main idle loop
57 *
58 * NOTE: no locks or semaphores should be used here
Len Browna0bfa132011-04-01 19:34:59 -040059 * return non-zero on failure
Len Brown4f86d3a2007-10-03 18:58:00 -040060 */
Len Browna0bfa132011-04-01 19:34:59 -040061int cpuidle_idle_call(void)
Len Brown4f86d3a2007-10-03 18:58:00 -040062{
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -060063 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053064 struct cpuidle_driver *drv = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -040065 struct cpuidle_state *target_state;
Deepthi Dharware978aa72011-10-28 16:20:09 +053066 int next_state, entered_state;
Len Brown4f86d3a2007-10-03 18:58:00 -040067
Len Browna0bfa132011-04-01 19:34:59 -040068 if (off)
69 return -ENODEV;
70
71 if (!initialized)
72 return -ENODEV;
73
Len Brown4f86d3a2007-10-03 18:58:00 -040074 /* check if the device is ready */
Len Browna0bfa132011-04-01 19:34:59 -040075 if (!dev || !dev->enabled)
76 return -EBUSY;
Len Brown4f86d3a2007-10-03 18:58:00 -040077
Arjan van de Ven9a655832008-11-09 12:45:10 -080078#if 0
79 /* shows regressions, re-enable for 2.6.29 */
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -070080 /*
81 * run any timers that can be run now, at this point
82 * before calculating the idle duration etc.
83 */
84 hrtimer_peek_ahead_timers();
Arjan van de Ven9a655832008-11-09 12:45:10 -080085#endif
Ai Li71abbbf2010-08-09 17:20:13 -070086
Len Brown4f86d3a2007-10-03 18:58:00 -040087 /* ask the governor for the next state */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053088 next_state = cpuidle_curr_governor->select(drv, dev);
Kevin Hilman246eb7f2009-10-26 16:50:18 -070089 if (need_resched()) {
90 local_irq_enable();
Len Browna0bfa132011-04-01 19:34:59 -040091 return 0;
Kevin Hilman246eb7f2009-10-26 16:50:18 -070092 }
93
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053094 target_state = &drv->states[next_state];
Len Brown4f86d3a2007-10-03 18:58:00 -040095
Thomas Renningerf77cfe42011-01-07 11:29:44 +010096 trace_power_start(POWER_CSTATE, next_state, dev->cpu);
97 trace_cpu_idle(next_state, dev->cpu);
98
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053099 entered_state = target_state->enter(dev, drv, next_state);
Thomas Renningerf77cfe42011-01-07 11:29:44 +0100100
101 trace_power_end(dev->cpu);
102 trace_cpu_idle(PWR_EVENT_EXIT, dev->cpu);
103
Deepthi Dharware978aa72011-10-28 16:20:09 +0530104 if (entered_state >= 0) {
105 /* Update cpuidle counters */
106 /* This can be moved to within driver enter routine
107 * but that results in multiple copies of same code.
108 */
Deepthi Dharwar42027352011-10-28 16:20:33 +0530109 dev->states_usage[entered_state].time +=
Deepthi Dharware978aa72011-10-28 16:20:09 +0530110 (unsigned long long)dev->last_residency;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530111 dev->states_usage[entered_state].usage++;
Deepthi Dharware978aa72011-10-28 16:20:09 +0530112 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400113
114 /* give the governor an opportunity to reflect on the outcome */
115 if (cpuidle_curr_governor->reflect)
Deepthi Dharware978aa72011-10-28 16:20:09 +0530116 cpuidle_curr_governor->reflect(dev, entered_state);
Len Browna0bfa132011-04-01 19:34:59 -0400117
118 return 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400119}
120
121/**
122 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
123 */
124void cpuidle_install_idle_handler(void)
125{
Len Browna0bfa132011-04-01 19:34:59 -0400126 if (enabled_devices) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400127 /* Make sure all changes finished before we switch to new idle */
128 smp_wmb();
Len Browna0bfa132011-04-01 19:34:59 -0400129 initialized = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400130 }
131}
132
133/**
134 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
135 */
136void cpuidle_uninstall_idle_handler(void)
137{
Len Browna0bfa132011-04-01 19:34:59 -0400138 if (enabled_devices) {
139 initialized = 0;
Venki Pallipadia6869cc2008-02-08 17:05:44 -0800140 cpuidle_kick_cpus();
Len Brown4f86d3a2007-10-03 18:58:00 -0400141 }
142}
143
144/**
145 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
146 */
147void cpuidle_pause_and_lock(void)
148{
149 mutex_lock(&cpuidle_lock);
150 cpuidle_uninstall_idle_handler();
151}
152
153EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
154
155/**
156 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
157 */
158void cpuidle_resume_and_unlock(void)
159{
160 cpuidle_install_idle_handler();
161 mutex_unlock(&cpuidle_lock);
162}
163
164EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
165
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100166#ifdef CONFIG_ARCH_HAS_CPU_RELAX
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530167static int poll_idle(struct cpuidle_device *dev,
168 struct cpuidle_driver *drv, int index)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100169{
170 ktime_t t1, t2;
171 s64 diff;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100172
173 t1 = ktime_get();
174 local_irq_enable();
175 while (!need_resched())
176 cpu_relax();
177
178 t2 = ktime_get();
179 diff = ktime_to_us(ktime_sub(t2, t1));
180 if (diff > INT_MAX)
181 diff = INT_MAX;
182
Deepthi Dharware978aa72011-10-28 16:20:09 +0530183 dev->last_residency = (int) diff;
184
185 return index;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100186}
187
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530188static void poll_idle_init(struct cpuidle_driver *drv)
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100189{
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530190 struct cpuidle_state *state = &drv->states[0];
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100191
Thomas Renninger720f1c32011-01-07 11:29:43 +0100192 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100193 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
194 state->exit_latency = 0;
195 state->target_residency = 0;
196 state->power_usage = -1;
Len Brownd2476322011-01-12 02:34:59 -0500197 state->flags = 0;
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100198 state->enter = poll_idle;
199}
200#else
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530201static void poll_idle_init(struct cpuidle_driver *drv) {}
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100202#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
203
Len Brown4f86d3a2007-10-03 18:58:00 -0400204/**
205 * cpuidle_enable_device - enables idle PM for a CPU
206 * @dev: the CPU
207 *
208 * This function must be called between cpuidle_pause_and_lock and
209 * cpuidle_resume_and_unlock when used externally.
210 */
211int cpuidle_enable_device(struct cpuidle_device *dev)
212{
213 int ret, i;
214
215 if (dev->enabled)
216 return 0;
Len Brown752138d2010-05-22 16:57:26 -0400217 if (!cpuidle_get_driver() || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400218 return -EIO;
219 if (!dev->state_count)
220 return -EINVAL;
221
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400222 if (dev->registered == 0) {
223 ret = __cpuidle_register_device(dev);
224 if (ret)
225 return ret;
226 }
227
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530228 poll_idle_init(cpuidle_get_driver());
Rafael J. Wysockid8c216c2011-01-08 00:29:20 +0100229
Len Brown4f86d3a2007-10-03 18:58:00 -0400230 if ((ret = cpuidle_add_state_sysfs(dev)))
231 return ret;
232
233 if (cpuidle_curr_governor->enable &&
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530234 (ret = cpuidle_curr_governor->enable(cpuidle_get_driver(), dev)))
Len Brown4f86d3a2007-10-03 18:58:00 -0400235 goto fail_sysfs;
236
237 for (i = 0; i < dev->state_count; i++) {
Deepthi Dharwar42027352011-10-28 16:20:33 +0530238 dev->states_usage[i].usage = 0;
239 dev->states_usage[i].time = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400240 }
241 dev->last_residency = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400242
243 smp_wmb();
244
245 dev->enabled = 1;
246
247 enabled_devices++;
248 return 0;
249
250fail_sysfs:
251 cpuidle_remove_state_sysfs(dev);
252
253 return ret;
254}
255
256EXPORT_SYMBOL_GPL(cpuidle_enable_device);
257
258/**
259 * cpuidle_disable_device - disables idle PM for a CPU
260 * @dev: the CPU
261 *
262 * This function must be called between cpuidle_pause_and_lock and
263 * cpuidle_resume_and_unlock when used externally.
264 */
265void cpuidle_disable_device(struct cpuidle_device *dev)
266{
267 if (!dev->enabled)
268 return;
Len Brown752138d2010-05-22 16:57:26 -0400269 if (!cpuidle_get_driver() || !cpuidle_curr_governor)
Len Brown4f86d3a2007-10-03 18:58:00 -0400270 return;
271
272 dev->enabled = 0;
273
274 if (cpuidle_curr_governor->disable)
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530275 cpuidle_curr_governor->disable(cpuidle_get_driver(), dev);
Len Brown4f86d3a2007-10-03 18:58:00 -0400276
277 cpuidle_remove_state_sysfs(dev);
278 enabled_devices--;
279}
280
281EXPORT_SYMBOL_GPL(cpuidle_disable_device);
282
283/**
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400284 * __cpuidle_register_device - internal register function called before register
285 * and enable routines
Len Brown4f86d3a2007-10-03 18:58:00 -0400286 * @dev: the cpu
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400287 *
288 * cpuidle_lock mutex must be held before this is called
Len Brown4f86d3a2007-10-03 18:58:00 -0400289 */
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400290static int __cpuidle_register_device(struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400291{
292 int ret;
293 struct sys_device *sys_dev = get_cpu_sysdev((unsigned long)dev->cpu);
Len Brown752138d2010-05-22 16:57:26 -0400294 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400295
296 if (!sys_dev)
297 return -EINVAL;
Len Brown752138d2010-05-22 16:57:26 -0400298 if (!try_module_get(cpuidle_driver->owner))
Len Brown4f86d3a2007-10-03 18:58:00 -0400299 return -EINVAL;
300
301 init_completion(&dev->kobj_unregister);
302
Len Brown4f86d3a2007-10-03 18:58:00 -0400303 per_cpu(cpuidle_devices, dev->cpu) = dev;
304 list_add(&dev->device_list, &cpuidle_detected_devices);
305 if ((ret = cpuidle_add_sysfs(sys_dev))) {
Len Brown752138d2010-05-22 16:57:26 -0400306 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400307 return ret;
308 }
309
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400310 dev->registered = 1;
311 return 0;
312}
313
314/**
315 * cpuidle_register_device - registers a CPU's idle PM feature
316 * @dev: the cpu
317 */
318int cpuidle_register_device(struct cpuidle_device *dev)
319{
320 int ret;
321
322 mutex_lock(&cpuidle_lock);
323
324 if ((ret = __cpuidle_register_device(dev))) {
325 mutex_unlock(&cpuidle_lock);
326 return ret;
327 }
328
Len Brown4f86d3a2007-10-03 18:58:00 -0400329 cpuidle_enable_device(dev);
330 cpuidle_install_idle_handler();
331
332 mutex_unlock(&cpuidle_lock);
333
334 return 0;
335
336}
337
338EXPORT_SYMBOL_GPL(cpuidle_register_device);
339
340/**
341 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
342 * @dev: the cpu
343 */
344void cpuidle_unregister_device(struct cpuidle_device *dev)
345{
346 struct sys_device *sys_dev = get_cpu_sysdev((unsigned long)dev->cpu);
Len Brown752138d2010-05-22 16:57:26 -0400347 struct cpuidle_driver *cpuidle_driver = cpuidle_get_driver();
Len Brown4f86d3a2007-10-03 18:58:00 -0400348
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400349 if (dev->registered == 0)
350 return;
351
Len Brown4f86d3a2007-10-03 18:58:00 -0400352 cpuidle_pause_and_lock();
353
354 cpuidle_disable_device(dev);
355
356 cpuidle_remove_sysfs(sys_dev);
357 list_del(&dev->device_list);
358 wait_for_completion(&dev->kobj_unregister);
359 per_cpu(cpuidle_devices, dev->cpu) = NULL;
360
361 cpuidle_resume_and_unlock();
362
Len Brown752138d2010-05-22 16:57:26 -0400363 module_put(cpuidle_driver->owner);
Len Brown4f86d3a2007-10-03 18:58:00 -0400364}
365
366EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
367
368#ifdef CONFIG_SMP
369
370static void smp_callback(void *v)
371{
372 /* we already woke the CPU up, nothing more to do */
373}
374
375/*
376 * This function gets called when a part of the kernel has a new latency
377 * requirement. This means we need to get all processors out of their C-state,
378 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
379 * wakes them all right up.
380 */
381static int cpuidle_latency_notify(struct notifier_block *b,
382 unsigned long l, void *v)
383{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200384 smp_call_function(smp_callback, NULL, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400385 return NOTIFY_OK;
386}
387
388static struct notifier_block cpuidle_latency_notifier = {
389 .notifier_call = cpuidle_latency_notify,
390};
391
Mark Grossd82b3512008-02-04 22:30:08 -0800392static inline void latency_notifier_init(struct notifier_block *n)
393{
394 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
395}
Len Brown4f86d3a2007-10-03 18:58:00 -0400396
397#else /* CONFIG_SMP */
398
399#define latency_notifier_init(x) do { } while (0)
400
401#endif /* CONFIG_SMP */
402
403/**
404 * cpuidle_init - core initializer
405 */
406static int __init cpuidle_init(void)
407{
408 int ret;
409
Len Brown62027ae2011-04-01 18:13:10 -0400410 if (cpuidle_disabled())
411 return -ENODEV;
412
Len Brown4f86d3a2007-10-03 18:58:00 -0400413 ret = cpuidle_add_class_sysfs(&cpu_sysdev_class);
414 if (ret)
415 return ret;
416
417 latency_notifier_init(&cpuidle_latency_notifier);
418
419 return 0;
420}
421
Len Brown62027ae2011-04-01 18:13:10 -0400422module_param(off, int, 0444);
Len Brown4f86d3a2007-10-03 18:58:00 -0400423core_initcall(cpuidle_init);