1 /*
2 * drivers/base/power/wakeup.c - System wakeup events framework
3 *
4 * Copyright (c) 2010 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
5 *
6 * This file is released under the GPLv2.
7 */
8
9 #include <linux/device.h>
10 #include <linux/slab.h>
11 #include <linux/sched.h>
12 #include <linux/capability.h>
13 #include <linux/export.h>
14 #include <linux/suspend.h>
15 #include <linux/seq_file.h>
16 #include <linux/debugfs.h>
17 #include <linux/pm_wakeirq.h>
18 #include <linux/types.h>
19 #include <trace/events/power.h>
20
21 #include "power.h"
22
23 /*
24 * If set, the suspend/hibernate code will abort transitions to a sleep state
25 * if wakeup events are registered during or immediately before the transition.
26 */
27 bool events_check_enabled __read_mostly;
28
29 /* First wakeup IRQ seen by the kernel in the last cycle. */
30 unsigned int pm_wakeup_irq __read_mostly;
31
32 /* If set and the system is suspending, terminate the suspend. */
33 static bool pm_abort_suspend __read_mostly;
34
35 /*
36 * Combined counters of registered wakeup events and wakeup events in progress.
37 * They need to be modified together atomically, so it's better to use one
38 * atomic variable to hold them both.
39 */
40 static atomic_t combined_event_count = ATOMIC_INIT(0);
41
42 #define IN_PROGRESS_BITS (sizeof(int) * 4)
43 #define MAX_IN_PROGRESS ((1 << IN_PROGRESS_BITS) - 1)
44
split_counters(unsigned int * cnt,unsigned int * inpr)45 static void split_counters(unsigned int *cnt, unsigned int *inpr)
46 {
47 unsigned int comb = atomic_read(&combined_event_count);
48
49 *cnt = (comb >> IN_PROGRESS_BITS);
50 *inpr = comb & MAX_IN_PROGRESS;
51 }
52
53 /* A preserved old value of the events counter. */
54 static unsigned int saved_count;
55
56 static DEFINE_SPINLOCK(events_lock);
57
58 static void pm_wakeup_timer_fn(unsigned long data);
59
60 static LIST_HEAD(wakeup_sources);
61
62 static DECLARE_WAIT_QUEUE_HEAD(wakeup_count_wait_queue);
63
64 DEFINE_STATIC_SRCU(wakeup_srcu);
65
66 static struct wakeup_source deleted_ws = {
67 .name = "deleted",
68 .lock = __SPIN_LOCK_UNLOCKED(deleted_ws.lock),
69 };
70
71 /**
72 * wakeup_source_prepare - Prepare a new wakeup source for initialization.
73 * @ws: Wakeup source to prepare.
74 * @name: Pointer to the name of the new wakeup source.
75 *
76 * Callers must ensure that the @name string won't be freed when @ws is still in
77 * use.
78 */
wakeup_source_prepare(struct wakeup_source * ws,const char * name)79 void wakeup_source_prepare(struct wakeup_source *ws, const char *name)
80 {
81 if (ws) {
82 memset(ws, 0, sizeof(*ws));
83 ws->name = name;
84 }
85 }
86 EXPORT_SYMBOL_GPL(wakeup_source_prepare);
87
88 /**
89 * wakeup_source_create - Create a struct wakeup_source object.
90 * @name: Name of the new wakeup source.
91 */
wakeup_source_create(const char * name)92 struct wakeup_source *wakeup_source_create(const char *name)
93 {
94 struct wakeup_source *ws;
95
96 ws = kmalloc(sizeof(*ws), GFP_KERNEL);
97 if (!ws)
98 return NULL;
99
100 wakeup_source_prepare(ws, name ? kstrdup_const(name, GFP_KERNEL) : NULL);
101 return ws;
102 }
103 EXPORT_SYMBOL_GPL(wakeup_source_create);
104
105 /**
106 * wakeup_source_drop - Prepare a struct wakeup_source object for destruction.
107 * @ws: Wakeup source to prepare for destruction.
108 *
109 * Callers must ensure that __pm_stay_awake() or __pm_wakeup_event() will never
110 * be run in parallel with this function for the same wakeup source object.
111 */
wakeup_source_drop(struct wakeup_source * ws)112 void wakeup_source_drop(struct wakeup_source *ws)
113 {
114 if (!ws)
115 return;
116
117 __pm_relax(ws);
118 }
119 EXPORT_SYMBOL_GPL(wakeup_source_drop);
120
121 /*
122 * Record wakeup_source statistics being deleted into a dummy wakeup_source.
123 */
wakeup_source_record(struct wakeup_source * ws)124 static void wakeup_source_record(struct wakeup_source *ws)
125 {
126 unsigned long flags;
127
128 spin_lock_irqsave(&deleted_ws.lock, flags);
129
130 if (ws->event_count) {
131 deleted_ws.total_time =
132 ktime_add(deleted_ws.total_time, ws->total_time);
133 deleted_ws.prevent_sleep_time =
134 ktime_add(deleted_ws.prevent_sleep_time,
135 ws->prevent_sleep_time);
136 deleted_ws.max_time =
137 ktime_compare(deleted_ws.max_time, ws->max_time) > 0 ?
138 deleted_ws.max_time : ws->max_time;
139 deleted_ws.event_count += ws->event_count;
140 deleted_ws.active_count += ws->active_count;
141 deleted_ws.relax_count += ws->relax_count;
142 deleted_ws.expire_count += ws->expire_count;
143 deleted_ws.wakeup_count += ws->wakeup_count;
144 }
145
146 spin_unlock_irqrestore(&deleted_ws.lock, flags);
147 }
148
149 /**
150 * wakeup_source_destroy - Destroy a struct wakeup_source object.
151 * @ws: Wakeup source to destroy.
152 *
153 * Use only for wakeup source objects created with wakeup_source_create().
154 */
wakeup_source_destroy(struct wakeup_source * ws)155 void wakeup_source_destroy(struct wakeup_source *ws)
156 {
157 if (!ws)
158 return;
159
160 wakeup_source_drop(ws);
161 wakeup_source_record(ws);
162 kfree_const(ws->name);
163 kfree(ws);
164 }
165 EXPORT_SYMBOL_GPL(wakeup_source_destroy);
166
167 /**
168 * wakeup_source_add - Add given object to the list of wakeup sources.
169 * @ws: Wakeup source object to add to the list.
170 */
wakeup_source_add(struct wakeup_source * ws)171 void wakeup_source_add(struct wakeup_source *ws)
172 {
173 unsigned long flags;
174
175 if (WARN_ON(!ws))
176 return;
177
178 spin_lock_init(&ws->lock);
179 setup_timer(&ws->timer, pm_wakeup_timer_fn, (unsigned long)ws);
180 ws->active = false;
181 ws->last_time = ktime_get();
182
183 spin_lock_irqsave(&events_lock, flags);
184 list_add_rcu(&ws->entry, &wakeup_sources);
185 spin_unlock_irqrestore(&events_lock, flags);
186 }
187 EXPORT_SYMBOL_GPL(wakeup_source_add);
188
189 /**
190 * wakeup_source_remove - Remove given object from the wakeup sources list.
191 * @ws: Wakeup source object to remove from the list.
192 */
wakeup_source_remove(struct wakeup_source * ws)193 void wakeup_source_remove(struct wakeup_source *ws)
194 {
195 unsigned long flags;
196
197 if (WARN_ON(!ws))
198 return;
199
200 spin_lock_irqsave(&events_lock, flags);
201 list_del_rcu(&ws->entry);
202 spin_unlock_irqrestore(&events_lock, flags);
203 synchronize_srcu(&wakeup_srcu);
204
205 del_timer_sync(&ws->timer);
206 /*
207 * Clear timer.function to make wakeup_source_not_registered() treat
208 * this wakeup source as not registered.
209 */
210 ws->timer.function = NULL;
211 }
212 EXPORT_SYMBOL_GPL(wakeup_source_remove);
213
214 /**
215 * wakeup_source_register - Create wakeup source and add it to the list.
216 * @name: Name of the wakeup source to register.
217 */
wakeup_source_register(const char * name)218 struct wakeup_source *wakeup_source_register(const char *name)
219 {
220 struct wakeup_source *ws;
221
222 ws = wakeup_source_create(name);
223 if (ws)
224 wakeup_source_add(ws);
225
226 return ws;
227 }
228 EXPORT_SYMBOL_GPL(wakeup_source_register);
229
230 /**
231 * wakeup_source_unregister - Remove wakeup source from the list and remove it.
232 * @ws: Wakeup source object to unregister.
233 */
wakeup_source_unregister(struct wakeup_source * ws)234 void wakeup_source_unregister(struct wakeup_source *ws)
235 {
236 if (ws) {
237 wakeup_source_remove(ws);
238 wakeup_source_destroy(ws);
239 }
240 }
241 EXPORT_SYMBOL_GPL(wakeup_source_unregister);
242
243 /**
244 * device_wakeup_attach - Attach a wakeup source object to a device object.
245 * @dev: Device to handle.
246 * @ws: Wakeup source object to attach to @dev.
247 *
248 * This causes @dev to be treated as a wakeup device.
249 */
device_wakeup_attach(struct device * dev,struct wakeup_source * ws)250 static int device_wakeup_attach(struct device *dev, struct wakeup_source *ws)
251 {
252 spin_lock_irq(&dev->power.lock);
253 if (dev->power.wakeup) {
254 spin_unlock_irq(&dev->power.lock);
255 return -EEXIST;
256 }
257 dev->power.wakeup = ws;
258 spin_unlock_irq(&dev->power.lock);
259 return 0;
260 }
261
262 /**
263 * device_wakeup_enable - Enable given device to be a wakeup source.
264 * @dev: Device to handle.
265 *
266 * Create a wakeup source object, register it and attach it to @dev.
267 */
device_wakeup_enable(struct device * dev)268 int device_wakeup_enable(struct device *dev)
269 {
270 struct wakeup_source *ws;
271 int ret;
272
273 if (!dev || !dev->power.can_wakeup)
274 return -EINVAL;
275
276 ws = wakeup_source_register(dev_name(dev));
277 if (!ws)
278 return -ENOMEM;
279
280 ret = device_wakeup_attach(dev, ws);
281 if (ret)
282 wakeup_source_unregister(ws);
283
284 return ret;
285 }
286 EXPORT_SYMBOL_GPL(device_wakeup_enable);
287
288 /**
289 * device_wakeup_attach_irq - Attach a wakeirq to a wakeup source
290 * @dev: Device to handle
291 * @wakeirq: Device specific wakeirq entry
292 *
293 * Attach a device wakeirq to the wakeup source so the device
294 * wake IRQ can be configured automatically for suspend and
295 * resume.
296 *
297 * Call under the device's power.lock lock.
298 */
device_wakeup_attach_irq(struct device * dev,struct wake_irq * wakeirq)299 int device_wakeup_attach_irq(struct device *dev,
300 struct wake_irq *wakeirq)
301 {
302 struct wakeup_source *ws;
303
304 ws = dev->power.wakeup;
305 if (!ws) {
306 dev_err(dev, "forgot to call call device_init_wakeup?\n");
307 return -EINVAL;
308 }
309
310 if (ws->wakeirq)
311 return -EEXIST;
312
313 ws->wakeirq = wakeirq;
314 return 0;
315 }
316
317 /**
318 * device_wakeup_detach_irq - Detach a wakeirq from a wakeup source
319 * @dev: Device to handle
320 *
321 * Removes a device wakeirq from the wakeup source.
322 *
323 * Call under the device's power.lock lock.
324 */
device_wakeup_detach_irq(struct device * dev)325 void device_wakeup_detach_irq(struct device *dev)
326 {
327 struct wakeup_source *ws;
328
329 ws = dev->power.wakeup;
330 if (ws)
331 ws->wakeirq = NULL;
332 }
333
334 /**
335 * device_wakeup_arm_wake_irqs(void)
336 *
337 * Itereates over the list of device wakeirqs to arm them.
338 */
device_wakeup_arm_wake_irqs(void)339 void device_wakeup_arm_wake_irqs(void)
340 {
341 struct wakeup_source *ws;
342 int srcuidx;
343
344 srcuidx = srcu_read_lock(&wakeup_srcu);
345 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
346 if (ws->wakeirq)
347 dev_pm_arm_wake_irq(ws->wakeirq);
348 }
349 srcu_read_unlock(&wakeup_srcu, srcuidx);
350 }
351
352 /**
353 * device_wakeup_disarm_wake_irqs(void)
354 *
355 * Itereates over the list of device wakeirqs to disarm them.
356 */
device_wakeup_disarm_wake_irqs(void)357 void device_wakeup_disarm_wake_irqs(void)
358 {
359 struct wakeup_source *ws;
360 int srcuidx;
361
362 srcuidx = srcu_read_lock(&wakeup_srcu);
363 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
364 if (ws->wakeirq)
365 dev_pm_disarm_wake_irq(ws->wakeirq);
366 }
367 srcu_read_unlock(&wakeup_srcu, srcuidx);
368 }
369
370 /**
371 * device_wakeup_detach - Detach a device's wakeup source object from it.
372 * @dev: Device to detach the wakeup source object from.
373 *
374 * After it returns, @dev will not be treated as a wakeup device any more.
375 */
device_wakeup_detach(struct device * dev)376 static struct wakeup_source *device_wakeup_detach(struct device *dev)
377 {
378 struct wakeup_source *ws;
379
380 spin_lock_irq(&dev->power.lock);
381 ws = dev->power.wakeup;
382 dev->power.wakeup = NULL;
383 spin_unlock_irq(&dev->power.lock);
384 return ws;
385 }
386
387 /**
388 * device_wakeup_disable - Do not regard a device as a wakeup source any more.
389 * @dev: Device to handle.
390 *
391 * Detach the @dev's wakeup source object from it, unregister this wakeup source
392 * object and destroy it.
393 */
device_wakeup_disable(struct device * dev)394 int device_wakeup_disable(struct device *dev)
395 {
396 struct wakeup_source *ws;
397
398 if (!dev || !dev->power.can_wakeup)
399 return -EINVAL;
400
401 ws = device_wakeup_detach(dev);
402 if (ws)
403 wakeup_source_unregister(ws);
404
405 return 0;
406 }
407 EXPORT_SYMBOL_GPL(device_wakeup_disable);
408
409 /**
410 * device_set_wakeup_capable - Set/reset device wakeup capability flag.
411 * @dev: Device to handle.
412 * @capable: Whether or not @dev is capable of waking up the system from sleep.
413 *
414 * If @capable is set, set the @dev's power.can_wakeup flag and add its
415 * wakeup-related attributes to sysfs. Otherwise, unset the @dev's
416 * power.can_wakeup flag and remove its wakeup-related attributes from sysfs.
417 *
418 * This function may sleep and it can't be called from any context where
419 * sleeping is not allowed.
420 */
device_set_wakeup_capable(struct device * dev,bool capable)421 void device_set_wakeup_capable(struct device *dev, bool capable)
422 {
423 if (!!dev->power.can_wakeup == !!capable)
424 return;
425
426 if (device_is_registered(dev) && !list_empty(&dev->power.entry)) {
427 if (capable) {
428 if (wakeup_sysfs_add(dev))
429 return;
430 } else {
431 wakeup_sysfs_remove(dev);
432 }
433 }
434 dev->power.can_wakeup = capable;
435 }
436 EXPORT_SYMBOL_GPL(device_set_wakeup_capable);
437
438 /**
439 * device_init_wakeup - Device wakeup initialization.
440 * @dev: Device to handle.
441 * @enable: Whether or not to enable @dev as a wakeup device.
442 *
443 * By default, most devices should leave wakeup disabled. The exceptions are
444 * devices that everyone expects to be wakeup sources: keyboards, power buttons,
445 * possibly network interfaces, etc. Also, devices that don't generate their
446 * own wakeup requests but merely forward requests from one bus to another
447 * (like PCI bridges) should have wakeup enabled by default.
448 */
device_init_wakeup(struct device * dev,bool enable)449 int device_init_wakeup(struct device *dev, bool enable)
450 {
451 int ret = 0;
452
453 if (!dev)
454 return -EINVAL;
455
456 if (enable) {
457 device_set_wakeup_capable(dev, true);
458 ret = device_wakeup_enable(dev);
459 } else {
460 if (dev->power.can_wakeup)
461 device_wakeup_disable(dev);
462
463 device_set_wakeup_capable(dev, false);
464 }
465
466 return ret;
467 }
468 EXPORT_SYMBOL_GPL(device_init_wakeup);
469
470 /**
471 * device_set_wakeup_enable - Enable or disable a device to wake up the system.
472 * @dev: Device to handle.
473 */
device_set_wakeup_enable(struct device * dev,bool enable)474 int device_set_wakeup_enable(struct device *dev, bool enable)
475 {
476 if (!dev || !dev->power.can_wakeup)
477 return -EINVAL;
478
479 return enable ? device_wakeup_enable(dev) : device_wakeup_disable(dev);
480 }
481 EXPORT_SYMBOL_GPL(device_set_wakeup_enable);
482
483 /**
484 * wakeup_source_not_registered - validate the given wakeup source.
485 * @ws: Wakeup source to be validated.
486 */
wakeup_source_not_registered(struct wakeup_source * ws)487 static bool wakeup_source_not_registered(struct wakeup_source *ws)
488 {
489 /*
490 * Use timer struct to check if the given source is initialized
491 * by wakeup_source_add.
492 */
493 return ws->timer.function != pm_wakeup_timer_fn ||
494 ws->timer.data != (unsigned long)ws;
495 }
496
497 /*
498 * The functions below use the observation that each wakeup event starts a
499 * period in which the system should not be suspended. The moment this period
500 * will end depends on how the wakeup event is going to be processed after being
501 * detected and all of the possible cases can be divided into two distinct
502 * groups.
503 *
504 * First, a wakeup event may be detected by the same functional unit that will
505 * carry out the entire processing of it and possibly will pass it to user space
506 * for further processing. In that case the functional unit that has detected
507 * the event may later "close" the "no suspend" period associated with it
508 * directly as soon as it has been dealt with. The pair of pm_stay_awake() and
509 * pm_relax(), balanced with each other, is supposed to be used in such
510 * situations.
511 *
512 * Second, a wakeup event may be detected by one functional unit and processed
513 * by another one. In that case the unit that has detected it cannot really
514 * "close" the "no suspend" period associated with it, unless it knows in
515 * advance what's going to happen to the event during processing. This
516 * knowledge, however, may not be available to it, so it can simply specify time
517 * to wait before the system can be suspended and pass it as the second
518 * argument of pm_wakeup_event().
519 *
520 * It is valid to call pm_relax() after pm_wakeup_event(), in which case the
521 * "no suspend" period will be ended either by the pm_relax(), or by the timer
522 * function executed when the timer expires, whichever comes first.
523 */
524
525 /**
526 * wakup_source_activate - Mark given wakeup source as active.
527 * @ws: Wakeup source to handle.
528 *
529 * Update the @ws' statistics and, if @ws has just been activated, notify the PM
530 * core of the event by incrementing the counter of of wakeup events being
531 * processed.
532 */
wakeup_source_activate(struct wakeup_source * ws)533 static void wakeup_source_activate(struct wakeup_source *ws)
534 {
535 unsigned int cec;
536
537 if (WARN_ONCE(wakeup_source_not_registered(ws),
538 "unregistered wakeup source\n"))
539 return;
540
541 /*
542 * active wakeup source should bring the system
543 * out of PM_SUSPEND_FREEZE state
544 */
545 freeze_wake();
546
547 ws->active = true;
548 ws->active_count++;
549 ws->last_time = ktime_get();
550 if (ws->autosleep_enabled)
551 ws->start_prevent_time = ws->last_time;
552
553 /* Increment the counter of events in progress. */
554 cec = atomic_inc_return(&combined_event_count);
555
556 trace_wakeup_source_activate(ws->name, cec);
557 }
558
559 /**
560 * wakeup_source_report_event - Report wakeup event using the given source.
561 * @ws: Wakeup source to report the event for.
562 */
wakeup_source_report_event(struct wakeup_source * ws)563 static void wakeup_source_report_event(struct wakeup_source *ws)
564 {
565 ws->event_count++;
566 /* This is racy, but the counter is approximate anyway. */
567 if (events_check_enabled)
568 ws->wakeup_count++;
569
570 if (!ws->active)
571 wakeup_source_activate(ws);
572 }
573
574 /**
575 * __pm_stay_awake - Notify the PM core of a wakeup event.
576 * @ws: Wakeup source object associated with the source of the event.
577 *
578 * It is safe to call this function from interrupt context.
579 */
__pm_stay_awake(struct wakeup_source * ws)580 void __pm_stay_awake(struct wakeup_source *ws)
581 {
582 unsigned long flags;
583
584 if (!ws)
585 return;
586
587 spin_lock_irqsave(&ws->lock, flags);
588
589 wakeup_source_report_event(ws);
590 del_timer(&ws->timer);
591 ws->timer_expires = 0;
592
593 spin_unlock_irqrestore(&ws->lock, flags);
594 }
595 EXPORT_SYMBOL_GPL(__pm_stay_awake);
596
597 /**
598 * pm_stay_awake - Notify the PM core that a wakeup event is being processed.
599 * @dev: Device the wakeup event is related to.
600 *
601 * Notify the PM core of a wakeup event (signaled by @dev) by calling
602 * __pm_stay_awake for the @dev's wakeup source object.
603 *
604 * Call this function after detecting of a wakeup event if pm_relax() is going
605 * to be called directly after processing the event (and possibly passing it to
606 * user space for further processing).
607 */
pm_stay_awake(struct device * dev)608 void pm_stay_awake(struct device *dev)
609 {
610 unsigned long flags;
611
612 if (!dev)
613 return;
614
615 spin_lock_irqsave(&dev->power.lock, flags);
616 __pm_stay_awake(dev->power.wakeup);
617 spin_unlock_irqrestore(&dev->power.lock, flags);
618 }
619 EXPORT_SYMBOL_GPL(pm_stay_awake);
620
621 #ifdef CONFIG_PM_AUTOSLEEP
update_prevent_sleep_time(struct wakeup_source * ws,ktime_t now)622 static void update_prevent_sleep_time(struct wakeup_source *ws, ktime_t now)
623 {
624 ktime_t delta = ktime_sub(now, ws->start_prevent_time);
625 ws->prevent_sleep_time = ktime_add(ws->prevent_sleep_time, delta);
626 }
627 #else
update_prevent_sleep_time(struct wakeup_source * ws,ktime_t now)628 static inline void update_prevent_sleep_time(struct wakeup_source *ws,
629 ktime_t now) {}
630 #endif
631
632 /**
633 * wakup_source_deactivate - Mark given wakeup source as inactive.
634 * @ws: Wakeup source to handle.
635 *
636 * Update the @ws' statistics and notify the PM core that the wakeup source has
637 * become inactive by decrementing the counter of wakeup events being processed
638 * and incrementing the counter of registered wakeup events.
639 */
wakeup_source_deactivate(struct wakeup_source * ws)640 static void wakeup_source_deactivate(struct wakeup_source *ws)
641 {
642 unsigned int cnt, inpr, cec;
643 ktime_t duration;
644 ktime_t now;
645
646 ws->relax_count++;
647 /*
648 * __pm_relax() may be called directly or from a timer function.
649 * If it is called directly right after the timer function has been
650 * started, but before the timer function calls __pm_relax(), it is
651 * possible that __pm_stay_awake() will be called in the meantime and
652 * will set ws->active. Then, ws->active may be cleared immediately
653 * by the __pm_relax() called from the timer function, but in such a
654 * case ws->relax_count will be different from ws->active_count.
655 */
656 if (ws->relax_count != ws->active_count) {
657 ws->relax_count--;
658 return;
659 }
660
661 ws->active = false;
662
663 now = ktime_get();
664 duration = ktime_sub(now, ws->last_time);
665 ws->total_time = ktime_add(ws->total_time, duration);
666 if (ktime_to_ns(duration) > ktime_to_ns(ws->max_time))
667 ws->max_time = duration;
668
669 ws->last_time = now;
670 del_timer(&ws->timer);
671 ws->timer_expires = 0;
672
673 if (ws->autosleep_enabled)
674 update_prevent_sleep_time(ws, now);
675
676 /*
677 * Increment the counter of registered wakeup events and decrement the
678 * couter of wakeup events in progress simultaneously.
679 */
680 cec = atomic_add_return(MAX_IN_PROGRESS, &combined_event_count);
681 trace_wakeup_source_deactivate(ws->name, cec);
682
683 split_counters(&cnt, &inpr);
684 if (!inpr && waitqueue_active(&wakeup_count_wait_queue))
685 wake_up(&wakeup_count_wait_queue);
686 }
687
688 /**
689 * __pm_relax - Notify the PM core that processing of a wakeup event has ended.
690 * @ws: Wakeup source object associated with the source of the event.
691 *
692 * Call this function for wakeup events whose processing started with calling
693 * __pm_stay_awake().
694 *
695 * It is safe to call it from interrupt context.
696 */
__pm_relax(struct wakeup_source * ws)697 void __pm_relax(struct wakeup_source *ws)
698 {
699 unsigned long flags;
700
701 if (!ws)
702 return;
703
704 spin_lock_irqsave(&ws->lock, flags);
705 if (ws->active)
706 wakeup_source_deactivate(ws);
707 spin_unlock_irqrestore(&ws->lock, flags);
708 }
709 EXPORT_SYMBOL_GPL(__pm_relax);
710
711 /**
712 * pm_relax - Notify the PM core that processing of a wakeup event has ended.
713 * @dev: Device that signaled the event.
714 *
715 * Execute __pm_relax() for the @dev's wakeup source object.
716 */
pm_relax(struct device * dev)717 void pm_relax(struct device *dev)
718 {
719 unsigned long flags;
720
721 if (!dev)
722 return;
723
724 spin_lock_irqsave(&dev->power.lock, flags);
725 __pm_relax(dev->power.wakeup);
726 spin_unlock_irqrestore(&dev->power.lock, flags);
727 }
728 EXPORT_SYMBOL_GPL(pm_relax);
729
730 /**
731 * pm_wakeup_timer_fn - Delayed finalization of a wakeup event.
732 * @data: Address of the wakeup source object associated with the event source.
733 *
734 * Call wakeup_source_deactivate() for the wakeup source whose address is stored
735 * in @data if it is currently active and its timer has not been canceled and
736 * the expiration time of the timer is not in future.
737 */
pm_wakeup_timer_fn(unsigned long data)738 static void pm_wakeup_timer_fn(unsigned long data)
739 {
740 struct wakeup_source *ws = (struct wakeup_source *)data;
741 unsigned long flags;
742
743 spin_lock_irqsave(&ws->lock, flags);
744
745 if (ws->active && ws->timer_expires
746 && time_after_eq(jiffies, ws->timer_expires)) {
747 wakeup_source_deactivate(ws);
748 ws->expire_count++;
749 }
750
751 spin_unlock_irqrestore(&ws->lock, flags);
752 }
753
754 /**
755 * __pm_wakeup_event - Notify the PM core of a wakeup event.
756 * @ws: Wakeup source object associated with the event source.
757 * @msec: Anticipated event processing time (in milliseconds).
758 *
759 * Notify the PM core of a wakeup event whose source is @ws that will take
760 * approximately @msec milliseconds to be processed by the kernel. If @ws is
761 * not active, activate it. If @msec is nonzero, set up the @ws' timer to
762 * execute pm_wakeup_timer_fn() in future.
763 *
764 * It is safe to call this function from interrupt context.
765 */
__pm_wakeup_event(struct wakeup_source * ws,unsigned int msec)766 void __pm_wakeup_event(struct wakeup_source *ws, unsigned int msec)
767 {
768 unsigned long flags;
769 unsigned long expires;
770
771 if (!ws)
772 return;
773
774 spin_lock_irqsave(&ws->lock, flags);
775
776 wakeup_source_report_event(ws);
777
778 if (!msec) {
779 wakeup_source_deactivate(ws);
780 goto unlock;
781 }
782
783 expires = jiffies + msecs_to_jiffies(msec);
784 if (!expires)
785 expires = 1;
786
787 if (!ws->timer_expires || time_after(expires, ws->timer_expires)) {
788 mod_timer(&ws->timer, expires);
789 ws->timer_expires = expires;
790 }
791
792 unlock:
793 spin_unlock_irqrestore(&ws->lock, flags);
794 }
795 EXPORT_SYMBOL_GPL(__pm_wakeup_event);
796
797
798 /**
799 * pm_wakeup_event - Notify the PM core of a wakeup event.
800 * @dev: Device the wakeup event is related to.
801 * @msec: Anticipated event processing time (in milliseconds).
802 *
803 * Call __pm_wakeup_event() for the @dev's wakeup source object.
804 */
pm_wakeup_event(struct device * dev,unsigned int msec)805 void pm_wakeup_event(struct device *dev, unsigned int msec)
806 {
807 unsigned long flags;
808
809 if (!dev)
810 return;
811
812 spin_lock_irqsave(&dev->power.lock, flags);
813 __pm_wakeup_event(dev->power.wakeup, msec);
814 spin_unlock_irqrestore(&dev->power.lock, flags);
815 }
816 EXPORT_SYMBOL_GPL(pm_wakeup_event);
817
pm_get_active_wakeup_sources(char * pending_wakeup_source,size_t max)818 void pm_get_active_wakeup_sources(char *pending_wakeup_source, size_t max)
819 {
820 struct wakeup_source *ws, *last_active_ws = NULL;
821 int len = 0;
822 bool active = false;
823
824 rcu_read_lock();
825 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
826 if (ws->active && len < max) {
827 if (!active)
828 len += scnprintf(pending_wakeup_source, max,
829 "Pending Wakeup Sources: ");
830 len += scnprintf(pending_wakeup_source + len, max - len,
831 "%s ", ws->name);
832 active = true;
833 } else if (!active &&
834 (!last_active_ws ||
835 ktime_to_ns(ws->last_time) >
836 ktime_to_ns(last_active_ws->last_time))) {
837 last_active_ws = ws;
838 }
839 }
840 if (!active && last_active_ws) {
841 scnprintf(pending_wakeup_source, max,
842 "Last active Wakeup Source: %s",
843 last_active_ws->name);
844 }
845 rcu_read_unlock();
846 }
847 EXPORT_SYMBOL_GPL(pm_get_active_wakeup_sources);
848
pm_print_active_wakeup_sources(void)849 void pm_print_active_wakeup_sources(void)
850 {
851 struct wakeup_source *ws;
852 int srcuidx, active = 0;
853 struct wakeup_source *last_activity_ws = NULL;
854
855 srcuidx = srcu_read_lock(&wakeup_srcu);
856 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
857 if (ws->active) {
858 pr_info("active wakeup source: %s\n", ws->name);
859 active = 1;
860 } else if (!active &&
861 (!last_activity_ws ||
862 ktime_to_ns(ws->last_time) >
863 ktime_to_ns(last_activity_ws->last_time))) {
864 last_activity_ws = ws;
865 }
866 }
867
868 if (!active && last_activity_ws)
869 pr_info("last active wakeup source: %s\n",
870 last_activity_ws->name);
871 srcu_read_unlock(&wakeup_srcu, srcuidx);
872 }
873 EXPORT_SYMBOL_GPL(pm_print_active_wakeup_sources);
874
875 /**
876 * pm_wakeup_pending - Check if power transition in progress should be aborted.
877 *
878 * Compare the current number of registered wakeup events with its preserved
879 * value from the past and return true if new wakeup events have been registered
880 * since the old value was stored. Also return true if the current number of
881 * wakeup events being processed is different from zero.
882 */
pm_wakeup_pending(void)883 bool pm_wakeup_pending(void)
884 {
885 unsigned long flags;
886 bool ret = false;
887
888 spin_lock_irqsave(&events_lock, flags);
889 if (events_check_enabled) {
890 unsigned int cnt, inpr;
891
892 split_counters(&cnt, &inpr);
893 ret = (cnt != saved_count || inpr > 0);
894 events_check_enabled = !ret;
895 }
896 spin_unlock_irqrestore(&events_lock, flags);
897
898 if (ret) {
899 pr_info("PM: Wakeup pending, aborting suspend\n");
900 pm_print_active_wakeup_sources();
901 }
902
903 return ret || pm_abort_suspend;
904 }
905
pm_system_wakeup(void)906 void pm_system_wakeup(void)
907 {
908 pm_abort_suspend = true;
909 freeze_wake();
910 }
911 EXPORT_SYMBOL_GPL(pm_system_wakeup);
912
pm_wakeup_clear(void)913 void pm_wakeup_clear(void)
914 {
915 pm_abort_suspend = false;
916 pm_wakeup_irq = 0;
917 }
918
pm_system_irq_wakeup(unsigned int irq_number)919 void pm_system_irq_wakeup(unsigned int irq_number)
920 {
921 if (pm_wakeup_irq == 0) {
922 pm_wakeup_irq = irq_number;
923 pm_system_wakeup();
924 }
925 }
926
927 /**
928 * pm_get_wakeup_count - Read the number of registered wakeup events.
929 * @count: Address to store the value at.
930 * @block: Whether or not to block.
931 *
932 * Store the number of registered wakeup events at the address in @count. If
933 * @block is set, block until the current number of wakeup events being
934 * processed is zero.
935 *
936 * Return 'false' if the current number of wakeup events being processed is
937 * nonzero. Otherwise return 'true'.
938 */
pm_get_wakeup_count(unsigned int * count,bool block)939 bool pm_get_wakeup_count(unsigned int *count, bool block)
940 {
941 unsigned int cnt, inpr;
942
943 if (block) {
944 DEFINE_WAIT(wait);
945
946 for (;;) {
947 prepare_to_wait(&wakeup_count_wait_queue, &wait,
948 TASK_INTERRUPTIBLE);
949 split_counters(&cnt, &inpr);
950 if (inpr == 0 || signal_pending(current))
951 break;
952
953 schedule();
954 }
955 finish_wait(&wakeup_count_wait_queue, &wait);
956 }
957
958 split_counters(&cnt, &inpr);
959 *count = cnt;
960 return !inpr;
961 }
962
963 /**
964 * pm_save_wakeup_count - Save the current number of registered wakeup events.
965 * @count: Value to compare with the current number of registered wakeup events.
966 *
967 * If @count is equal to the current number of registered wakeup events and the
968 * current number of wakeup events being processed is zero, store @count as the
969 * old number of registered wakeup events for pm_check_wakeup_events(), enable
970 * wakeup events detection and return 'true'. Otherwise disable wakeup events
971 * detection and return 'false'.
972 */
pm_save_wakeup_count(unsigned int count)973 bool pm_save_wakeup_count(unsigned int count)
974 {
975 unsigned int cnt, inpr;
976 unsigned long flags;
977
978 events_check_enabled = false;
979 spin_lock_irqsave(&events_lock, flags);
980 split_counters(&cnt, &inpr);
981 if (cnt == count && inpr == 0) {
982 saved_count = count;
983 events_check_enabled = true;
984 }
985 spin_unlock_irqrestore(&events_lock, flags);
986 return events_check_enabled;
987 }
988
989 #ifdef CONFIG_PM_AUTOSLEEP
990 /**
991 * pm_wakep_autosleep_enabled - Modify autosleep_enabled for all wakeup sources.
992 * @enabled: Whether to set or to clear the autosleep_enabled flags.
993 */
pm_wakep_autosleep_enabled(bool set)994 void pm_wakep_autosleep_enabled(bool set)
995 {
996 struct wakeup_source *ws;
997 ktime_t now = ktime_get();
998 int srcuidx;
999
1000 srcuidx = srcu_read_lock(&wakeup_srcu);
1001 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
1002 spin_lock_irq(&ws->lock);
1003 if (ws->autosleep_enabled != set) {
1004 ws->autosleep_enabled = set;
1005 if (ws->active) {
1006 if (set)
1007 ws->start_prevent_time = now;
1008 else
1009 update_prevent_sleep_time(ws, now);
1010 }
1011 }
1012 spin_unlock_irq(&ws->lock);
1013 }
1014 srcu_read_unlock(&wakeup_srcu, srcuidx);
1015 }
1016 #endif /* CONFIG_PM_AUTOSLEEP */
1017
1018 static struct dentry *wakeup_sources_stats_dentry;
1019
1020 /**
1021 * print_wakeup_source_stats - Print wakeup source statistics information.
1022 * @m: seq_file to print the statistics into.
1023 * @ws: Wakeup source object to print the statistics for.
1024 */
print_wakeup_source_stats(struct seq_file * m,struct wakeup_source * ws)1025 static int print_wakeup_source_stats(struct seq_file *m,
1026 struct wakeup_source *ws)
1027 {
1028 unsigned long flags;
1029 ktime_t total_time;
1030 ktime_t max_time;
1031 unsigned long active_count;
1032 ktime_t active_time;
1033 ktime_t prevent_sleep_time;
1034
1035 spin_lock_irqsave(&ws->lock, flags);
1036
1037 total_time = ws->total_time;
1038 max_time = ws->max_time;
1039 prevent_sleep_time = ws->prevent_sleep_time;
1040 active_count = ws->active_count;
1041 if (ws->active) {
1042 ktime_t now = ktime_get();
1043
1044 active_time = ktime_sub(now, ws->last_time);
1045 total_time = ktime_add(total_time, active_time);
1046 if (active_time.tv64 > max_time.tv64)
1047 max_time = active_time;
1048
1049 if (ws->autosleep_enabled)
1050 prevent_sleep_time = ktime_add(prevent_sleep_time,
1051 ktime_sub(now, ws->start_prevent_time));
1052 } else {
1053 active_time = ktime_set(0, 0);
1054 }
1055
1056 seq_printf(m, "%-32s\t%lu\t\t%lu\t\t%lu\t\t%lu\t\t%lld\t\t%lld\t\t%lld\t\t%lld\t\t%lld\n",
1057 ws->name, active_count, ws->event_count,
1058 ws->wakeup_count, ws->expire_count,
1059 ktime_to_ms(active_time), ktime_to_ms(total_time),
1060 ktime_to_ms(max_time), ktime_to_ms(ws->last_time),
1061 ktime_to_ms(prevent_sleep_time));
1062
1063 spin_unlock_irqrestore(&ws->lock, flags);
1064
1065 return 0;
1066 }
1067
1068 /**
1069 * wakeup_sources_stats_show - Print wakeup sources statistics information.
1070 * @m: seq_file to print the statistics into.
1071 */
wakeup_sources_stats_show(struct seq_file * m,void * unused)1072 static int wakeup_sources_stats_show(struct seq_file *m, void *unused)
1073 {
1074 struct wakeup_source *ws;
1075 int srcuidx;
1076
1077 seq_puts(m, "name\t\t\t\t\tactive_count\tevent_count\twakeup_count\t"
1078 "expire_count\tactive_since\ttotal_time\tmax_time\t"
1079 "last_change\tprevent_suspend_time\n");
1080
1081 srcuidx = srcu_read_lock(&wakeup_srcu);
1082 list_for_each_entry_rcu(ws, &wakeup_sources, entry)
1083 print_wakeup_source_stats(m, ws);
1084 srcu_read_unlock(&wakeup_srcu, srcuidx);
1085
1086 print_wakeup_source_stats(m, &deleted_ws);
1087
1088 return 0;
1089 }
1090
wakeup_sources_stats_open(struct inode * inode,struct file * file)1091 static int wakeup_sources_stats_open(struct inode *inode, struct file *file)
1092 {
1093 return single_open(file, wakeup_sources_stats_show, NULL);
1094 }
1095
1096 static const struct file_operations wakeup_sources_stats_fops = {
1097 .owner = THIS_MODULE,
1098 .open = wakeup_sources_stats_open,
1099 .read = seq_read,
1100 .llseek = seq_lseek,
1101 .release = single_release,
1102 };
1103
wakeup_sources_debugfs_init(void)1104 static int __init wakeup_sources_debugfs_init(void)
1105 {
1106 wakeup_sources_stats_dentry = debugfs_create_file("wakeup_sources",
1107 S_IRUGO, NULL, NULL, &wakeup_sources_stats_fops);
1108 return 0;
1109 }
1110
1111 postcore_initcall(wakeup_sources_debugfs_init);
1112