]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/cpuidle/cpuidle.c
cpuidle: rearrange code in __cpuidle_driver_init()
[mirror_ubuntu-bionic-kernel.git] / drivers / cpuidle / cpuidle.c
CommitLineData
4f86d3a8
LB
1/*
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
b60e6a0e 11#include <linux/clockchips.h>
4f86d3a8
LB
12#include <linux/kernel.h>
13#include <linux/mutex.h>
14#include <linux/sched.h>
15#include <linux/notifier.h>
e8db0be1 16#include <linux/pm_qos.h>
4f86d3a8
LB
17#include <linux/cpu.h>
18#include <linux/cpuidle.h>
9a0b8415 19#include <linux/ktime.h>
2e94d1f7 20#include <linux/hrtimer.h>
884b17e1 21#include <linux/module.h>
288f023e 22#include <trace/events/power.h>
4f86d3a8
LB
23
24#include "cpuidle.h"
25
26DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
4c637b21 27DEFINE_PER_CPU(struct cpuidle_device, cpuidle_dev);
4f86d3a8
LB
28
29DEFINE_MUTEX(cpuidle_lock);
30LIST_HEAD(cpuidle_detected_devices);
4f86d3a8
LB
31
32static int enabled_devices;
62027aea 33static int off __read_mostly;
a0bfa137 34static int initialized __read_mostly;
62027aea
LB
35
36int cpuidle_disabled(void)
37{
38 return off;
39}
d91ee586
LB
40void disable_cpuidle(void)
41{
42 off = 1;
43}
4f86d3a8 44
1a022e3f
BO
45/**
46 * cpuidle_play_dead - cpu off-lining
47 *
ee01e663 48 * Returns in case of an error or no driver
1a022e3f
BO
49 */
50int cpuidle_play_dead(void)
51{
52 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
bf4d1b5d 53 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
8aef33a7 54 int i;
1a022e3f 55
ee01e663
TK
56 if (!drv)
57 return -ENODEV;
58
1a022e3f 59 /* Find lowest-power state that supports long-term idle */
8aef33a7
DL
60 for (i = drv->state_count - 1; i >= CPUIDLE_DRIVER_STATE_START; i--)
61 if (drv->states[i].enter_dead)
62 return drv->states[i].enter_dead(dev, i);
1a022e3f
BO
63
64 return -ENODEV;
65}
66
56cfbf74
CC
67/**
68 * cpuidle_enter_state - enter the state and update stats
69 * @dev: cpuidle device for this cpu
70 * @drv: cpuidle driver for this cpu
71 * @next_state: index into drv->states of the state to enter
72 */
73int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv,
554c06ba 74 int index)
56cfbf74
CC
75{
76 int entered_state;
77
554c06ba
DL
78 struct cpuidle_state *target_state = &drv->states[index];
79 ktime_t time_start, time_end;
80 s64 diff;
81
82 time_start = ktime_get();
83
84 entered_state = target_state->enter(dev, drv, index);
85
86 time_end = ktime_get();
87
88 local_irq_enable();
89
90 diff = ktime_to_us(ktime_sub(time_end, time_start));
91 if (diff > INT_MAX)
92 diff = INT_MAX;
93
94 dev->last_residency = (int) diff;
56cfbf74
CC
95
96 if (entered_state >= 0) {
97 /* Update cpuidle counters */
98 /* This can be moved to within driver enter routine
99 * but that results in multiple copies of same code.
100 */
a474a515 101 dev->states_usage[entered_state].time += dev->last_residency;
56cfbf74
CC
102 dev->states_usage[entered_state].usage++;
103 } else {
104 dev->last_residency = 0;
105 }
106
107 return entered_state;
108}
109
4f86d3a8
LB
110/**
111 * cpuidle_idle_call - the main idle loop
112 *
113 * NOTE: no locks or semaphores should be used here
a0bfa137 114 * return non-zero on failure
4f86d3a8 115 */
a0bfa137 116int cpuidle_idle_call(void)
4f86d3a8 117{
4a6f4fe8 118 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
bf4d1b5d 119 struct cpuidle_driver *drv;
e978aa7d 120 int next_state, entered_state;
4f86d3a8 121
a0bfa137
LB
122 if (off)
123 return -ENODEV;
124
125 if (!initialized)
126 return -ENODEV;
127
4f86d3a8 128 /* check if the device is ready */
a0bfa137
LB
129 if (!dev || !dev->enabled)
130 return -EBUSY;
4f86d3a8 131
bf4d1b5d
DL
132 drv = cpuidle_get_cpu_driver(dev);
133
4f86d3a8 134 /* ask the governor for the next state */
46bcfad7 135 next_state = cpuidle_curr_governor->select(drv, dev);
246eb7f0 136 if (need_resched()) {
d73d68dc
YS
137 dev->last_residency = 0;
138 /* give the governor an opportunity to reflect on the outcome */
139 if (cpuidle_curr_governor->reflect)
140 cpuidle_curr_governor->reflect(dev, next_state);
246eb7f0 141 local_irq_enable();
a0bfa137 142 return 0;
246eb7f0
KH
143 }
144
76027ea8 145 trace_cpu_idle_rcuidle(next_state, dev->cpu);
f77cfe4e 146
b60e6a0e
DL
147 if (drv->states[next_state].flags & CPUIDLE_FLAG_TIMER_STOP)
148 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER,
149 &dev->cpu);
150
4126c019
CC
151 if (cpuidle_state_is_coupled(dev, drv, next_state))
152 entered_state = cpuidle_enter_state_coupled(dev, drv,
153 next_state);
154 else
155 entered_state = cpuidle_enter_state(dev, drv, next_state);
f77cfe4e 156
b60e6a0e
DL
157 if (drv->states[next_state].flags & CPUIDLE_FLAG_TIMER_STOP)
158 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT,
159 &dev->cpu);
160
76027ea8 161 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
f77cfe4e 162
4f86d3a8
LB
163 /* give the governor an opportunity to reflect on the outcome */
164 if (cpuidle_curr_governor->reflect)
e978aa7d 165 cpuidle_curr_governor->reflect(dev, entered_state);
a0bfa137
LB
166
167 return 0;
4f86d3a8
LB
168}
169
170/**
171 * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
172 */
173void cpuidle_install_idle_handler(void)
174{
a0bfa137 175 if (enabled_devices) {
4f86d3a8
LB
176 /* Make sure all changes finished before we switch to new idle */
177 smp_wmb();
a0bfa137 178 initialized = 1;
4f86d3a8
LB
179 }
180}
181
182/**
183 * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
184 */
185void cpuidle_uninstall_idle_handler(void)
186{
a0bfa137
LB
187 if (enabled_devices) {
188 initialized = 0;
4a162513 189 kick_all_cpus_sync();
4f86d3a8
LB
190 }
191}
192
193/**
194 * cpuidle_pause_and_lock - temporarily disables CPUIDLE
195 */
196void cpuidle_pause_and_lock(void)
197{
198 mutex_lock(&cpuidle_lock);
199 cpuidle_uninstall_idle_handler();
200}
201
202EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
203
204/**
205 * cpuidle_resume_and_unlock - resumes CPUIDLE operation
206 */
207void cpuidle_resume_and_unlock(void)
208{
209 cpuidle_install_idle_handler();
210 mutex_unlock(&cpuidle_lock);
211}
212
213EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
214
8651f97b
PM
215/* Currently used in suspend/resume path to suspend cpuidle */
216void cpuidle_pause(void)
217{
218 mutex_lock(&cpuidle_lock);
219 cpuidle_uninstall_idle_handler();
220 mutex_unlock(&cpuidle_lock);
221}
222
223/* Currently used in suspend/resume path to resume cpuidle */
224void cpuidle_resume(void)
225{
226 mutex_lock(&cpuidle_lock);
227 cpuidle_install_idle_handler();
228 mutex_unlock(&cpuidle_lock);
229}
230
d8c216cf 231#ifdef CONFIG_ARCH_HAS_CPU_RELAX
46bcfad7
DD
232static int poll_idle(struct cpuidle_device *dev,
233 struct cpuidle_driver *drv, int index)
d8c216cf
RW
234{
235 ktime_t t1, t2;
236 s64 diff;
d8c216cf
RW
237
238 t1 = ktime_get();
239 local_irq_enable();
240 while (!need_resched())
241 cpu_relax();
242
243 t2 = ktime_get();
244 diff = ktime_to_us(ktime_sub(t2, t1));
245 if (diff > INT_MAX)
246 diff = INT_MAX;
247
e978aa7d
DD
248 dev->last_residency = (int) diff;
249
250 return index;
d8c216cf
RW
251}
252
46bcfad7 253static void poll_idle_init(struct cpuidle_driver *drv)
d8c216cf 254{
46bcfad7 255 struct cpuidle_state *state = &drv->states[0];
d8c216cf 256
720f1c30 257 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
d8c216cf
RW
258 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
259 state->exit_latency = 0;
260 state->target_residency = 0;
261 state->power_usage = -1;
d247632c 262 state->flags = 0;
d8c216cf 263 state->enter = poll_idle;
cbc9ef02 264 state->disabled = false;
d8c216cf
RW
265}
266#else
46bcfad7 267static void poll_idle_init(struct cpuidle_driver *drv) {}
d8c216cf
RW
268#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
269
4f86d3a8
LB
270/**
271 * cpuidle_enable_device - enables idle PM for a CPU
272 * @dev: the CPU
273 *
274 * This function must be called between cpuidle_pause_and_lock and
275 * cpuidle_resume_and_unlock when used externally.
276 */
277int cpuidle_enable_device(struct cpuidle_device *dev)
278{
5df0aa73 279 int ret;
bf4d1b5d 280 struct cpuidle_driver *drv;
4f86d3a8 281
1b0a0e9a
SB
282 if (!dev)
283 return -EINVAL;
284
4f86d3a8
LB
285 if (dev->enabled)
286 return 0;
bf4d1b5d
DL
287
288 drv = cpuidle_get_cpu_driver(dev);
289
e1689795 290 if (!drv || !cpuidle_curr_governor)
4f86d3a8 291 return -EIO;
bf4d1b5d 292
10b9d3f8
DL
293 if (!dev->registered)
294 return -EINVAL;
295
4f86d3a8 296 if (!dev->state_count)
fc850f39 297 dev->state_count = drv->state_count;
4f86d3a8 298
e1689795 299 poll_idle_init(drv);
d8c216cf 300
bf4d1b5d
DL
301 ret = cpuidle_add_device_sysfs(dev);
302 if (ret)
4f86d3a8
LB
303 return ret;
304
305 if (cpuidle_curr_governor->enable &&
e1689795 306 (ret = cpuidle_curr_governor->enable(drv, dev)))
4f86d3a8
LB
307 goto fail_sysfs;
308
4f86d3a8
LB
309 smp_wmb();
310
311 dev->enabled = 1;
312
313 enabled_devices++;
314 return 0;
315
316fail_sysfs:
bf4d1b5d 317 cpuidle_remove_device_sysfs(dev);
4f86d3a8
LB
318
319 return ret;
320}
321
322EXPORT_SYMBOL_GPL(cpuidle_enable_device);
323
324/**
325 * cpuidle_disable_device - disables idle PM for a CPU
326 * @dev: the CPU
327 *
328 * This function must be called between cpuidle_pause_and_lock and
329 * cpuidle_resume_and_unlock when used externally.
330 */
331void cpuidle_disable_device(struct cpuidle_device *dev)
332{
bf4d1b5d
DL
333 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
334
cf31cd1a 335 if (!dev || !dev->enabled)
4f86d3a8 336 return;
bf4d1b5d
DL
337
338 if (!drv || !cpuidle_curr_governor)
4f86d3a8
LB
339 return;
340
341 dev->enabled = 0;
342
343 if (cpuidle_curr_governor->disable)
bf4d1b5d 344 cpuidle_curr_governor->disable(drv, dev);
4f86d3a8 345
bf4d1b5d 346 cpuidle_remove_device_sysfs(dev);
4f86d3a8
LB
347 enabled_devices--;
348}
349
350EXPORT_SYMBOL_GPL(cpuidle_disable_device);
351
f6bb51a5
DL
352static void __cpuidle_unregister_device(struct cpuidle_device *dev)
353{
354 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
355
356 list_del(&dev->device_list);
357 per_cpu(cpuidle_devices, dev->cpu) = NULL;
358 module_put(drv->owner);
359}
360
267d4bf8 361static void __cpuidle_device_init(struct cpuidle_device *dev)
5df0aa73
DL
362{
363 memset(dev->states_usage, 0, sizeof(dev->states_usage));
364 dev->last_residency = 0;
5df0aa73
DL
365}
366
4f86d3a8 367/**
dcb84f33
VP
368 * __cpuidle_register_device - internal register function called before register
369 * and enable routines
4f86d3a8 370 * @dev: the cpu
dcb84f33
VP
371 *
372 * cpuidle_lock mutex must be held before this is called
4f86d3a8 373 */
dcb84f33 374static int __cpuidle_register_device(struct cpuidle_device *dev)
4f86d3a8
LB
375{
376 int ret;
bf4d1b5d 377 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
4f86d3a8 378
bf4d1b5d 379 if (!try_module_get(drv->owner))
4f86d3a8
LB
380 return -EINVAL;
381
4f86d3a8
LB
382 per_cpu(cpuidle_devices, dev->cpu) = dev;
383 list_add(&dev->device_list, &cpuidle_detected_devices);
4f86d3a8 384
4126c019 385 ret = cpuidle_coupled_register_device(dev);
f6bb51a5
DL
386 if (ret) {
387 __cpuidle_unregister_device(dev);
388 return ret;
389 }
4f86d3a8 390
dcb84f33
VP
391 dev->registered = 1;
392 return 0;
393}
394
395/**
396 * cpuidle_register_device - registers a CPU's idle PM feature
397 * @dev: the cpu
398 */
399int cpuidle_register_device(struct cpuidle_device *dev)
400{
c878a52d 401 int ret = -EBUSY;
dcb84f33 402
1b0a0e9a
SB
403 if (!dev)
404 return -EINVAL;
405
dcb84f33
VP
406 mutex_lock(&cpuidle_lock);
407
c878a52d
DL
408 if (dev->registered)
409 goto out_unlock;
410
267d4bf8 411 __cpuidle_device_init(dev);
5df0aa73 412
f6bb51a5
DL
413 ret = __cpuidle_register_device(dev);
414 if (ret)
415 goto out_unlock;
416
417 ret = cpuidle_add_sysfs(dev);
418 if (ret)
419 goto out_unregister;
dcb84f33 420
10b9d3f8 421 ret = cpuidle_enable_device(dev);
f6bb51a5
DL
422 if (ret)
423 goto out_sysfs;
10b9d3f8 424
4f86d3a8
LB
425 cpuidle_install_idle_handler();
426
f6bb51a5 427out_unlock:
4f86d3a8
LB
428 mutex_unlock(&cpuidle_lock);
429
f6bb51a5
DL
430 return ret;
431
432out_sysfs:
433 cpuidle_remove_sysfs(dev);
434out_unregister:
435 __cpuidle_unregister_device(dev);
436 goto out_unlock;
4f86d3a8
LB
437}
438
439EXPORT_SYMBOL_GPL(cpuidle_register_device);
440
441/**
442 * cpuidle_unregister_device - unregisters a CPU's idle PM feature
443 * @dev: the cpu
444 */
445void cpuidle_unregister_device(struct cpuidle_device *dev)
446{
dcb84f33
VP
447 if (dev->registered == 0)
448 return;
449
4f86d3a8
LB
450 cpuidle_pause_and_lock();
451
452 cpuidle_disable_device(dev);
453
1aef40e2 454 cpuidle_remove_sysfs(dev);
f6bb51a5
DL
455
456 __cpuidle_unregister_device(dev);
4f86d3a8 457
4126c019
CC
458 cpuidle_coupled_unregister_device(dev);
459
4f86d3a8 460 cpuidle_resume_and_unlock();
4f86d3a8
LB
461}
462
463EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
464
1c192d04 465/**
4c637b21
DL
466 * cpuidle_unregister: unregister a driver and the devices. This function
467 * can be used only if the driver has been previously registered through
468 * the cpuidle_register function.
469 *
470 * @drv: a valid pointer to a struct cpuidle_driver
471 */
472void cpuidle_unregister(struct cpuidle_driver *drv)
473{
474 int cpu;
475 struct cpuidle_device *device;
476
82467a5a 477 for_each_cpu(cpu, drv->cpumask) {
4c637b21
DL
478 device = &per_cpu(cpuidle_dev, cpu);
479 cpuidle_unregister_device(device);
480 }
481
482 cpuidle_unregister_driver(drv);
483}
484EXPORT_SYMBOL_GPL(cpuidle_unregister);
485
486/**
487 * cpuidle_register: registers the driver and the cpu devices with the
488 * coupled_cpus passed as parameter. This function is used for all common
489 * initialization pattern there are in the arch specific drivers. The
490 * devices is globally defined in this file.
491 *
492 * @drv : a valid pointer to a struct cpuidle_driver
493 * @coupled_cpus: a cpumask for the coupled states
494 *
495 * Returns 0 on success, < 0 otherwise
496 */
497int cpuidle_register(struct cpuidle_driver *drv,
498 const struct cpumask *const coupled_cpus)
499{
500 int ret, cpu;
501 struct cpuidle_device *device;
502
503 ret = cpuidle_register_driver(drv);
504 if (ret) {
505 pr_err("failed to register cpuidle driver\n");
506 return ret;
507 }
508
82467a5a 509 for_each_cpu(cpu, drv->cpumask) {
4c637b21
DL
510 device = &per_cpu(cpuidle_dev, cpu);
511 device->cpu = cpu;
512
513#ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED
514 /*
caf4a36e 515 * On multiplatform for ARM, the coupled idle states could be
4c637b21
DL
516 * enabled in the kernel even if the cpuidle driver does not
517 * use it. Note, coupled_cpus is a struct copy.
518 */
519 if (coupled_cpus)
520 device->coupled_cpus = *coupled_cpus;
521#endif
522 ret = cpuidle_register_device(device);
523 if (!ret)
524 continue;
525
526 pr_err("Failed to register cpuidle device for cpu%d\n", cpu);
527
528 cpuidle_unregister(drv);
529 break;
530 }
531
532 return ret;
533}
534EXPORT_SYMBOL_GPL(cpuidle_register);
535
4f86d3a8
LB
536#ifdef CONFIG_SMP
537
538static void smp_callback(void *v)
539{
540 /* we already woke the CPU up, nothing more to do */
541}
542
543/*
544 * This function gets called when a part of the kernel has a new latency
545 * requirement. This means we need to get all processors out of their C-state,
546 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
547 * wakes them all right up.
548 */
549static int cpuidle_latency_notify(struct notifier_block *b,
550 unsigned long l, void *v)
551{
8691e5a8 552 smp_call_function(smp_callback, NULL, 1);
4f86d3a8
LB
553 return NOTIFY_OK;
554}
555
556static struct notifier_block cpuidle_latency_notifier = {
557 .notifier_call = cpuidle_latency_notify,
558};
559
d82b3518
MG
560static inline void latency_notifier_init(struct notifier_block *n)
561{
562 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
563}
4f86d3a8
LB
564
565#else /* CONFIG_SMP */
566
567#define latency_notifier_init(x) do { } while (0)
568
569#endif /* CONFIG_SMP */
570
571/**
572 * cpuidle_init - core initializer
573 */
574static int __init cpuidle_init(void)
575{
576 int ret;
577
62027aea
LB
578 if (cpuidle_disabled())
579 return -ENODEV;
580
8a25a2fd 581 ret = cpuidle_add_interface(cpu_subsys.dev_root);
4f86d3a8
LB
582 if (ret)
583 return ret;
584
585 latency_notifier_init(&cpuidle_latency_notifier);
586
587 return 0;
588}
589
62027aea 590module_param(off, int, 0444);
4f86d3a8 591core_initcall(cpuidle_init);