1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/base/power/wakeup.c - System wakeup events framework
7 #define pr_fmt(fmt) "PM: " fmt
9 #include <linux/device.h>
10 #include <linux/slab.h>
11 #include <linux/sched/signal.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 <trace/events/power.h>
22 #ifndef CONFIG_SUSPEND
23 suspend_state_t pm_suspend_target_state;
24 #define pm_suspend_target_state (PM_SUSPEND_ON)
28 * If set, the suspend/hibernate code will abort transitions to a sleep state
29 * if wakeup events are registered during or immediately before the transition.
31 bool events_check_enabled __read_mostly;
33 /* First wakeup IRQ seen by the kernel in the last cycle. */
34 unsigned int pm_wakeup_irq __read_mostly;
36 /* If greater than 0 and the system is suspending, terminate the suspend. */
37 static atomic_t pm_abort_suspend __read_mostly;
40 * Combined counters of registered wakeup events and wakeup events in progress.
41 * They need to be modified together atomically, so it's better to use one
42 * atomic variable to hold them both.
44 static atomic_t combined_event_count = ATOMIC_INIT(0);
46 #define IN_PROGRESS_BITS (sizeof(int) * 4)
47 #define MAX_IN_PROGRESS ((1 << IN_PROGRESS_BITS) - 1)
49 static void split_counters(unsigned int *cnt, unsigned int *inpr)
51 unsigned int comb = atomic_read(&combined_event_count);
53 *cnt = (comb >> IN_PROGRESS_BITS);
54 *inpr = comb & MAX_IN_PROGRESS;
57 /* A preserved old value of the events counter. */
58 static unsigned int saved_count;
60 static DEFINE_RAW_SPINLOCK(events_lock);
62 static void pm_wakeup_timer_fn(struct timer_list *t);
64 static LIST_HEAD(wakeup_sources);
66 static DECLARE_WAIT_QUEUE_HEAD(wakeup_count_wait_queue);
68 DEFINE_STATIC_SRCU(wakeup_srcu);
70 static struct wakeup_source deleted_ws = {
72 .lock = __SPIN_LOCK_UNLOCKED(deleted_ws.lock),
75 static DEFINE_IDA(wakeup_ida);
78 * wakeup_source_create - Create a struct wakeup_source object.
79 * @name: Name of the new wakeup source.
81 struct wakeup_source *wakeup_source_create(const char *name)
83 struct wakeup_source *ws;
87 ws = kzalloc(sizeof(*ws), GFP_KERNEL);
91 ws_name = kstrdup_const(name, GFP_KERNEL);
96 id = ida_alloc(&wakeup_ida, GFP_KERNEL);
104 kfree_const(ws->name);
110 EXPORT_SYMBOL_GPL(wakeup_source_create);
113 * Record wakeup_source statistics being deleted into a dummy wakeup_source.
115 static void wakeup_source_record(struct wakeup_source *ws)
119 spin_lock_irqsave(&deleted_ws.lock, flags);
121 if (ws->event_count) {
122 deleted_ws.total_time =
123 ktime_add(deleted_ws.total_time, ws->total_time);
124 deleted_ws.prevent_sleep_time =
125 ktime_add(deleted_ws.prevent_sleep_time,
126 ws->prevent_sleep_time);
127 deleted_ws.max_time =
128 ktime_compare(deleted_ws.max_time, ws->max_time) > 0 ?
129 deleted_ws.max_time : ws->max_time;
130 deleted_ws.event_count += ws->event_count;
131 deleted_ws.active_count += ws->active_count;
132 deleted_ws.relax_count += ws->relax_count;
133 deleted_ws.expire_count += ws->expire_count;
134 deleted_ws.wakeup_count += ws->wakeup_count;
137 spin_unlock_irqrestore(&deleted_ws.lock, flags);
140 static void wakeup_source_free(struct wakeup_source *ws)
142 ida_free(&wakeup_ida, ws->id);
143 kfree_const(ws->name);
148 * wakeup_source_destroy - Destroy a struct wakeup_source object.
149 * @ws: Wakeup source to destroy.
151 * Use only for wakeup source objects created with wakeup_source_create().
153 void wakeup_source_destroy(struct wakeup_source *ws)
159 wakeup_source_record(ws);
160 wakeup_source_free(ws);
162 EXPORT_SYMBOL_GPL(wakeup_source_destroy);
165 * wakeup_source_add - Add given object to the list of wakeup sources.
166 * @ws: Wakeup source object to add to the list.
168 void wakeup_source_add(struct wakeup_source *ws)
175 spin_lock_init(&ws->lock);
176 timer_setup(&ws->timer, pm_wakeup_timer_fn, 0);
179 raw_spin_lock_irqsave(&events_lock, flags);
180 list_add_rcu(&ws->entry, &wakeup_sources);
181 raw_spin_unlock_irqrestore(&events_lock, flags);
183 EXPORT_SYMBOL_GPL(wakeup_source_add);
186 * wakeup_source_remove - Remove given object from the wakeup sources list.
187 * @ws: Wakeup source object to remove from the list.
189 void wakeup_source_remove(struct wakeup_source *ws)
196 raw_spin_lock_irqsave(&events_lock, flags);
197 list_del_rcu(&ws->entry);
198 raw_spin_unlock_irqrestore(&events_lock, flags);
199 synchronize_srcu(&wakeup_srcu);
201 del_timer_sync(&ws->timer);
203 * Clear timer.function to make wakeup_source_not_registered() treat
204 * this wakeup source as not registered.
206 ws->timer.function = NULL;
208 EXPORT_SYMBOL_GPL(wakeup_source_remove);
211 * wakeup_source_register - Create wakeup source and add it to the list.
212 * @dev: Device this wakeup source is associated with (or NULL if virtual).
213 * @name: Name of the wakeup source to register.
215 struct wakeup_source *wakeup_source_register(struct device *dev,
218 struct wakeup_source *ws;
221 ws = wakeup_source_create(name);
223 if (!dev || device_is_registered(dev)) {
224 ret = wakeup_source_sysfs_add(dev, ws);
226 wakeup_source_free(ws);
230 wakeup_source_add(ws);
234 EXPORT_SYMBOL_GPL(wakeup_source_register);
237 * wakeup_source_unregister - Remove wakeup source from the list and remove it.
238 * @ws: Wakeup source object to unregister.
240 void wakeup_source_unregister(struct wakeup_source *ws)
243 wakeup_source_remove(ws);
244 wakeup_source_sysfs_remove(ws);
245 wakeup_source_destroy(ws);
248 EXPORT_SYMBOL_GPL(wakeup_source_unregister);
251 * wakeup_sources_read_lock - Lock wakeup source list for read.
253 * Returns an index of srcu lock for struct wakeup_srcu.
254 * This index must be passed to the matching wakeup_sources_read_unlock().
256 int wakeup_sources_read_lock(void)
258 return srcu_read_lock(&wakeup_srcu);
260 EXPORT_SYMBOL_GPL(wakeup_sources_read_lock);
263 * wakeup_sources_read_unlock - Unlock wakeup source list.
264 * @idx: return value from corresponding wakeup_sources_read_lock()
266 void wakeup_sources_read_unlock(int idx)
268 srcu_read_unlock(&wakeup_srcu, idx);
270 EXPORT_SYMBOL_GPL(wakeup_sources_read_unlock);
273 * wakeup_sources_walk_start - Begin a walk on wakeup source list
275 * Returns first object of the list of wakeup sources.
277 * Note that to be safe, wakeup sources list needs to be locked by calling
278 * wakeup_source_read_lock() for this.
280 struct wakeup_source *wakeup_sources_walk_start(void)
282 struct list_head *ws_head = &wakeup_sources;
284 return list_entry_rcu(ws_head->next, struct wakeup_source, entry);
286 EXPORT_SYMBOL_GPL(wakeup_sources_walk_start);
289 * wakeup_sources_walk_next - Get next wakeup source from the list
290 * @ws: Previous wakeup source object
292 * Note that to be safe, wakeup sources list needs to be locked by calling
293 * wakeup_source_read_lock() for this.
295 struct wakeup_source *wakeup_sources_walk_next(struct wakeup_source *ws)
297 struct list_head *ws_head = &wakeup_sources;
299 return list_next_or_null_rcu(ws_head, &ws->entry,
300 struct wakeup_source, entry);
302 EXPORT_SYMBOL_GPL(wakeup_sources_walk_next);
305 * device_wakeup_attach - Attach a wakeup source object to a device object.
306 * @dev: Device to handle.
307 * @ws: Wakeup source object to attach to @dev.
309 * This causes @dev to be treated as a wakeup device.
311 static int device_wakeup_attach(struct device *dev, struct wakeup_source *ws)
313 spin_lock_irq(&dev->power.lock);
314 if (dev->power.wakeup) {
315 spin_unlock_irq(&dev->power.lock);
318 dev->power.wakeup = ws;
319 if (dev->power.wakeirq)
320 device_wakeup_attach_irq(dev, dev->power.wakeirq);
321 spin_unlock_irq(&dev->power.lock);
326 * device_wakeup_enable - Enable given device to be a wakeup source.
327 * @dev: Device to handle.
329 * Create a wakeup source object, register it and attach it to @dev.
331 int device_wakeup_enable(struct device *dev)
333 struct wakeup_source *ws;
336 if (!dev || !dev->power.can_wakeup)
339 if (pm_suspend_target_state != PM_SUSPEND_ON)
340 dev_dbg(dev, "Suspicious %s() during system transition!\n", __func__);
342 ws = wakeup_source_register(dev, dev_name(dev));
346 ret = device_wakeup_attach(dev, ws);
348 wakeup_source_unregister(ws);
352 EXPORT_SYMBOL_GPL(device_wakeup_enable);
355 * device_wakeup_attach_irq - Attach a wakeirq to a wakeup source
356 * @dev: Device to handle
357 * @wakeirq: Device specific wakeirq entry
359 * Attach a device wakeirq to the wakeup source so the device
360 * wake IRQ can be configured automatically for suspend and
363 * Call under the device's power.lock lock.
365 void device_wakeup_attach_irq(struct device *dev,
366 struct wake_irq *wakeirq)
368 struct wakeup_source *ws;
370 ws = dev->power.wakeup;
375 dev_err(dev, "Leftover wakeup IRQ found, overriding\n");
377 ws->wakeirq = wakeirq;
381 * device_wakeup_detach_irq - Detach a wakeirq from a wakeup source
382 * @dev: Device to handle
384 * Removes a device wakeirq from the wakeup source.
386 * Call under the device's power.lock lock.
388 void device_wakeup_detach_irq(struct device *dev)
390 struct wakeup_source *ws;
392 ws = dev->power.wakeup;
398 * device_wakeup_arm_wake_irqs(void)
400 * Itereates over the list of device wakeirqs to arm them.
402 void device_wakeup_arm_wake_irqs(void)
404 struct wakeup_source *ws;
407 srcuidx = srcu_read_lock(&wakeup_srcu);
408 list_for_each_entry_rcu(ws, &wakeup_sources, entry)
409 dev_pm_arm_wake_irq(ws->wakeirq);
410 srcu_read_unlock(&wakeup_srcu, srcuidx);
414 * device_wakeup_disarm_wake_irqs(void)
416 * Itereates over the list of device wakeirqs to disarm them.
418 void device_wakeup_disarm_wake_irqs(void)
420 struct wakeup_source *ws;
423 srcuidx = srcu_read_lock(&wakeup_srcu);
424 list_for_each_entry_rcu(ws, &wakeup_sources, entry)
425 dev_pm_disarm_wake_irq(ws->wakeirq);
426 srcu_read_unlock(&wakeup_srcu, srcuidx);
430 * device_wakeup_detach - Detach a device's wakeup source object from it.
431 * @dev: Device to detach the wakeup source object from.
433 * After it returns, @dev will not be treated as a wakeup device any more.
435 static struct wakeup_source *device_wakeup_detach(struct device *dev)
437 struct wakeup_source *ws;
439 spin_lock_irq(&dev->power.lock);
440 ws = dev->power.wakeup;
441 dev->power.wakeup = NULL;
442 spin_unlock_irq(&dev->power.lock);
447 * device_wakeup_disable - Do not regard a device as a wakeup source any more.
448 * @dev: Device to handle.
450 * Detach the @dev's wakeup source object from it, unregister this wakeup source
451 * object and destroy it.
453 int device_wakeup_disable(struct device *dev)
455 struct wakeup_source *ws;
457 if (!dev || !dev->power.can_wakeup)
460 ws = device_wakeup_detach(dev);
461 wakeup_source_unregister(ws);
464 EXPORT_SYMBOL_GPL(device_wakeup_disable);
467 * device_set_wakeup_capable - Set/reset device wakeup capability flag.
468 * @dev: Device to handle.
469 * @capable: Whether or not @dev is capable of waking up the system from sleep.
471 * If @capable is set, set the @dev's power.can_wakeup flag and add its
472 * wakeup-related attributes to sysfs. Otherwise, unset the @dev's
473 * power.can_wakeup flag and remove its wakeup-related attributes from sysfs.
475 * This function may sleep and it can't be called from any context where
476 * sleeping is not allowed.
478 void device_set_wakeup_capable(struct device *dev, bool capable)
480 if (!!dev->power.can_wakeup == !!capable)
483 dev->power.can_wakeup = capable;
484 if (device_is_registered(dev) && !list_empty(&dev->power.entry)) {
486 int ret = wakeup_sysfs_add(dev);
489 dev_info(dev, "Wakeup sysfs attributes not added\n");
491 wakeup_sysfs_remove(dev);
495 EXPORT_SYMBOL_GPL(device_set_wakeup_capable);
498 * device_init_wakeup - Device wakeup initialization.
499 * @dev: Device to handle.
500 * @enable: Whether or not to enable @dev as a wakeup device.
502 * By default, most devices should leave wakeup disabled. The exceptions are
503 * devices that everyone expects to be wakeup sources: keyboards, power buttons,
504 * possibly network interfaces, etc. Also, devices that don't generate their
505 * own wakeup requests but merely forward requests from one bus to another
506 * (like PCI bridges) should have wakeup enabled by default.
508 int device_init_wakeup(struct device *dev, bool enable)
516 device_set_wakeup_capable(dev, true);
517 ret = device_wakeup_enable(dev);
519 device_wakeup_disable(dev);
520 device_set_wakeup_capable(dev, false);
525 EXPORT_SYMBOL_GPL(device_init_wakeup);
528 * device_set_wakeup_enable - Enable or disable a device to wake up the system.
529 * @dev: Device to handle.
531 int device_set_wakeup_enable(struct device *dev, bool enable)
533 return enable ? device_wakeup_enable(dev) : device_wakeup_disable(dev);
535 EXPORT_SYMBOL_GPL(device_set_wakeup_enable);
538 * wakeup_source_not_registered - validate the given wakeup source.
539 * @ws: Wakeup source to be validated.
541 static bool wakeup_source_not_registered(struct wakeup_source *ws)
544 * Use timer struct to check if the given source is initialized
545 * by wakeup_source_add.
547 return ws->timer.function != pm_wakeup_timer_fn;
551 * The functions below use the observation that each wakeup event starts a
552 * period in which the system should not be suspended. The moment this period
553 * will end depends on how the wakeup event is going to be processed after being
554 * detected and all of the possible cases can be divided into two distinct
557 * First, a wakeup event may be detected by the same functional unit that will
558 * carry out the entire processing of it and possibly will pass it to user space
559 * for further processing. In that case the functional unit that has detected
560 * the event may later "close" the "no suspend" period associated with it
561 * directly as soon as it has been dealt with. The pair of pm_stay_awake() and
562 * pm_relax(), balanced with each other, is supposed to be used in such
565 * Second, a wakeup event may be detected by one functional unit and processed
566 * by another one. In that case the unit that has detected it cannot really
567 * "close" the "no suspend" period associated with it, unless it knows in
568 * advance what's going to happen to the event during processing. This
569 * knowledge, however, may not be available to it, so it can simply specify time
570 * to wait before the system can be suspended and pass it as the second
571 * argument of pm_wakeup_event().
573 * It is valid to call pm_relax() after pm_wakeup_event(), in which case the
574 * "no suspend" period will be ended either by the pm_relax(), or by the timer
575 * function executed when the timer expires, whichever comes first.
579 * wakup_source_activate - Mark given wakeup source as active.
580 * @ws: Wakeup source to handle.
582 * Update the @ws' statistics and, if @ws has just been activated, notify the PM
583 * core of the event by incrementing the counter of of wakeup events being
586 static void wakeup_source_activate(struct wakeup_source *ws)
590 if (WARN_ONCE(wakeup_source_not_registered(ws),
591 "unregistered wakeup source\n"))
596 ws->last_time = ktime_get();
597 if (ws->autosleep_enabled)
598 ws->start_prevent_time = ws->last_time;
600 /* Increment the counter of events in progress. */
601 cec = atomic_inc_return(&combined_event_count);
603 trace_wakeup_source_activate(ws->name, cec);
607 * wakeup_source_report_event - Report wakeup event using the given source.
608 * @ws: Wakeup source to report the event for.
609 * @hard: If set, abort suspends in progress and wake up from suspend-to-idle.
611 static void wakeup_source_report_event(struct wakeup_source *ws, bool hard)
614 /* This is racy, but the counter is approximate anyway. */
615 if (events_check_enabled)
619 wakeup_source_activate(ws);
626 * __pm_stay_awake - Notify the PM core of a wakeup event.
627 * @ws: Wakeup source object associated with the source of the event.
629 * It is safe to call this function from interrupt context.
631 void __pm_stay_awake(struct wakeup_source *ws)
638 spin_lock_irqsave(&ws->lock, flags);
640 wakeup_source_report_event(ws, false);
641 del_timer(&ws->timer);
642 ws->timer_expires = 0;
644 spin_unlock_irqrestore(&ws->lock, flags);
646 EXPORT_SYMBOL_GPL(__pm_stay_awake);
649 * pm_stay_awake - Notify the PM core that a wakeup event is being processed.
650 * @dev: Device the wakeup event is related to.
652 * Notify the PM core of a wakeup event (signaled by @dev) by calling
653 * __pm_stay_awake for the @dev's wakeup source object.
655 * Call this function after detecting of a wakeup event if pm_relax() is going
656 * to be called directly after processing the event (and possibly passing it to
657 * user space for further processing).
659 void pm_stay_awake(struct device *dev)
666 spin_lock_irqsave(&dev->power.lock, flags);
667 __pm_stay_awake(dev->power.wakeup);
668 spin_unlock_irqrestore(&dev->power.lock, flags);
670 EXPORT_SYMBOL_GPL(pm_stay_awake);
672 #ifdef CONFIG_PM_AUTOSLEEP
673 static void update_prevent_sleep_time(struct wakeup_source *ws, ktime_t now)
675 ktime_t delta = ktime_sub(now, ws->start_prevent_time);
676 ws->prevent_sleep_time = ktime_add(ws->prevent_sleep_time, delta);
679 static inline void update_prevent_sleep_time(struct wakeup_source *ws,
684 * wakup_source_deactivate - Mark given wakeup source as inactive.
685 * @ws: Wakeup source to handle.
687 * Update the @ws' statistics and notify the PM core that the wakeup source has
688 * become inactive by decrementing the counter of wakeup events being processed
689 * and incrementing the counter of registered wakeup events.
691 static void wakeup_source_deactivate(struct wakeup_source *ws)
693 unsigned int cnt, inpr, cec;
699 * __pm_relax() may be called directly or from a timer function.
700 * If it is called directly right after the timer function has been
701 * started, but before the timer function calls __pm_relax(), it is
702 * possible that __pm_stay_awake() will be called in the meantime and
703 * will set ws->active. Then, ws->active may be cleared immediately
704 * by the __pm_relax() called from the timer function, but in such a
705 * case ws->relax_count will be different from ws->active_count.
707 if (ws->relax_count != ws->active_count) {
715 duration = ktime_sub(now, ws->last_time);
716 ws->total_time = ktime_add(ws->total_time, duration);
717 if (ktime_to_ns(duration) > ktime_to_ns(ws->max_time))
718 ws->max_time = duration;
721 del_timer(&ws->timer);
722 ws->timer_expires = 0;
724 if (ws->autosleep_enabled)
725 update_prevent_sleep_time(ws, now);
728 * Increment the counter of registered wakeup events and decrement the
729 * couter of wakeup events in progress simultaneously.
731 cec = atomic_add_return(MAX_IN_PROGRESS, &combined_event_count);
732 trace_wakeup_source_deactivate(ws->name, cec);
734 split_counters(&cnt, &inpr);
735 if (!inpr && waitqueue_active(&wakeup_count_wait_queue))
736 wake_up(&wakeup_count_wait_queue);
740 * __pm_relax - Notify the PM core that processing of a wakeup event has ended.
741 * @ws: Wakeup source object associated with the source of the event.
743 * Call this function for wakeup events whose processing started with calling
746 * It is safe to call it from interrupt context.
748 void __pm_relax(struct wakeup_source *ws)
755 spin_lock_irqsave(&ws->lock, flags);
757 wakeup_source_deactivate(ws);
758 spin_unlock_irqrestore(&ws->lock, flags);
760 EXPORT_SYMBOL_GPL(__pm_relax);
763 * pm_relax - Notify the PM core that processing of a wakeup event has ended.
764 * @dev: Device that signaled the event.
766 * Execute __pm_relax() for the @dev's wakeup source object.
768 void pm_relax(struct device *dev)
775 spin_lock_irqsave(&dev->power.lock, flags);
776 __pm_relax(dev->power.wakeup);
777 spin_unlock_irqrestore(&dev->power.lock, flags);
779 EXPORT_SYMBOL_GPL(pm_relax);
782 * pm_wakeup_timer_fn - Delayed finalization of a wakeup event.
783 * @data: Address of the wakeup source object associated with the event source.
785 * Call wakeup_source_deactivate() for the wakeup source whose address is stored
786 * in @data if it is currently active and its timer has not been canceled and
787 * the expiration time of the timer is not in future.
789 static void pm_wakeup_timer_fn(struct timer_list *t)
791 struct wakeup_source *ws = from_timer(ws, t, timer);
794 spin_lock_irqsave(&ws->lock, flags);
796 if (ws->active && ws->timer_expires
797 && time_after_eq(jiffies, ws->timer_expires)) {
798 wakeup_source_deactivate(ws);
802 spin_unlock_irqrestore(&ws->lock, flags);
806 * pm_wakeup_ws_event - Notify the PM core of a wakeup event.
807 * @ws: Wakeup source object associated with the event source.
808 * @msec: Anticipated event processing time (in milliseconds).
809 * @hard: If set, abort suspends in progress and wake up from suspend-to-idle.
811 * Notify the PM core of a wakeup event whose source is @ws that will take
812 * approximately @msec milliseconds to be processed by the kernel. If @ws is
813 * not active, activate it. If @msec is nonzero, set up the @ws' timer to
814 * execute pm_wakeup_timer_fn() in future.
816 * It is safe to call this function from interrupt context.
818 void pm_wakeup_ws_event(struct wakeup_source *ws, unsigned int msec, bool hard)
821 unsigned long expires;
826 spin_lock_irqsave(&ws->lock, flags);
828 wakeup_source_report_event(ws, hard);
831 wakeup_source_deactivate(ws);
835 expires = jiffies + msecs_to_jiffies(msec);
839 if (!ws->timer_expires || time_after(expires, ws->timer_expires)) {
840 mod_timer(&ws->timer, expires);
841 ws->timer_expires = expires;
845 spin_unlock_irqrestore(&ws->lock, flags);
847 EXPORT_SYMBOL_GPL(pm_wakeup_ws_event);
850 * pm_wakeup_dev_event - Notify the PM core of a wakeup event.
851 * @dev: Device the wakeup event is related to.
852 * @msec: Anticipated event processing time (in milliseconds).
853 * @hard: If set, abort suspends in progress and wake up from suspend-to-idle.
855 * Call pm_wakeup_ws_event() for the @dev's wakeup source object.
857 void pm_wakeup_dev_event(struct device *dev, unsigned int msec, bool hard)
864 spin_lock_irqsave(&dev->power.lock, flags);
865 pm_wakeup_ws_event(dev->power.wakeup, msec, hard);
866 spin_unlock_irqrestore(&dev->power.lock, flags);
868 EXPORT_SYMBOL_GPL(pm_wakeup_dev_event);
870 void pm_print_active_wakeup_sources(void)
872 struct wakeup_source *ws;
873 int srcuidx, active = 0;
874 struct wakeup_source *last_activity_ws = NULL;
876 srcuidx = srcu_read_lock(&wakeup_srcu);
877 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
879 pm_pr_dbg("active wakeup source: %s\n", ws->name);
881 } else if (!active &&
882 (!last_activity_ws ||
883 ktime_to_ns(ws->last_time) >
884 ktime_to_ns(last_activity_ws->last_time))) {
885 last_activity_ws = ws;
889 if (!active && last_activity_ws)
890 pm_pr_dbg("last active wakeup source: %s\n",
891 last_activity_ws->name);
892 srcu_read_unlock(&wakeup_srcu, srcuidx);
894 EXPORT_SYMBOL_GPL(pm_print_active_wakeup_sources);
897 * pm_wakeup_pending - Check if power transition in progress should be aborted.
899 * Compare the current number of registered wakeup events with its preserved
900 * value from the past and return true if new wakeup events have been registered
901 * since the old value was stored. Also return true if the current number of
902 * wakeup events being processed is different from zero.
904 bool pm_wakeup_pending(void)
909 raw_spin_lock_irqsave(&events_lock, flags);
910 if (events_check_enabled) {
911 unsigned int cnt, inpr;
913 split_counters(&cnt, &inpr);
914 ret = (cnt != saved_count || inpr > 0);
915 events_check_enabled = !ret;
917 raw_spin_unlock_irqrestore(&events_lock, flags);
920 pm_pr_dbg("Wakeup pending, aborting suspend\n");
921 pm_print_active_wakeup_sources();
924 return ret || atomic_read(&pm_abort_suspend) > 0;
927 void pm_system_wakeup(void)
929 atomic_inc(&pm_abort_suspend);
932 EXPORT_SYMBOL_GPL(pm_system_wakeup);
934 void pm_system_cancel_wakeup(void)
936 atomic_dec_if_positive(&pm_abort_suspend);
939 void pm_wakeup_clear(bool reset)
943 atomic_set(&pm_abort_suspend, 0);
946 void pm_system_irq_wakeup(unsigned int irq_number)
948 if (pm_wakeup_irq == 0) {
949 pm_wakeup_irq = irq_number;
955 * pm_get_wakeup_count - Read the number of registered wakeup events.
956 * @count: Address to store the value at.
957 * @block: Whether or not to block.
959 * Store the number of registered wakeup events at the address in @count. If
960 * @block is set, block until the current number of wakeup events being
963 * Return 'false' if the current number of wakeup events being processed is
964 * nonzero. Otherwise return 'true'.
966 bool pm_get_wakeup_count(unsigned int *count, bool block)
968 unsigned int cnt, inpr;
974 prepare_to_wait(&wakeup_count_wait_queue, &wait,
976 split_counters(&cnt, &inpr);
977 if (inpr == 0 || signal_pending(current))
979 pm_print_active_wakeup_sources();
982 finish_wait(&wakeup_count_wait_queue, &wait);
985 split_counters(&cnt, &inpr);
991 * pm_save_wakeup_count - Save the current number of registered wakeup events.
992 * @count: Value to compare with the current number of registered wakeup events.
994 * If @count is equal to the current number of registered wakeup events and the
995 * current number of wakeup events being processed is zero, store @count as the
996 * old number of registered wakeup events for pm_check_wakeup_events(), enable
997 * wakeup events detection and return 'true'. Otherwise disable wakeup events
998 * detection and return 'false'.
1000 bool pm_save_wakeup_count(unsigned int count)
1002 unsigned int cnt, inpr;
1003 unsigned long flags;
1005 events_check_enabled = false;
1006 raw_spin_lock_irqsave(&events_lock, flags);
1007 split_counters(&cnt, &inpr);
1008 if (cnt == count && inpr == 0) {
1009 saved_count = count;
1010 events_check_enabled = true;
1012 raw_spin_unlock_irqrestore(&events_lock, flags);
1013 return events_check_enabled;
1016 #ifdef CONFIG_PM_AUTOSLEEP
1018 * pm_wakep_autosleep_enabled - Modify autosleep_enabled for all wakeup sources.
1019 * @enabled: Whether to set or to clear the autosleep_enabled flags.
1021 void pm_wakep_autosleep_enabled(bool set)
1023 struct wakeup_source *ws;
1024 ktime_t now = ktime_get();
1027 srcuidx = srcu_read_lock(&wakeup_srcu);
1028 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
1029 spin_lock_irq(&ws->lock);
1030 if (ws->autosleep_enabled != set) {
1031 ws->autosleep_enabled = set;
1034 ws->start_prevent_time = now;
1036 update_prevent_sleep_time(ws, now);
1039 spin_unlock_irq(&ws->lock);
1041 srcu_read_unlock(&wakeup_srcu, srcuidx);
1043 #endif /* CONFIG_PM_AUTOSLEEP */
1046 * print_wakeup_source_stats - Print wakeup source statistics information.
1047 * @m: seq_file to print the statistics into.
1048 * @ws: Wakeup source object to print the statistics for.
1050 static int print_wakeup_source_stats(struct seq_file *m,
1051 struct wakeup_source *ws)
1053 unsigned long flags;
1056 unsigned long active_count;
1057 ktime_t active_time;
1058 ktime_t prevent_sleep_time;
1060 spin_lock_irqsave(&ws->lock, flags);
1062 total_time = ws->total_time;
1063 max_time = ws->max_time;
1064 prevent_sleep_time = ws->prevent_sleep_time;
1065 active_count = ws->active_count;
1067 ktime_t now = ktime_get();
1069 active_time = ktime_sub(now, ws->last_time);
1070 total_time = ktime_add(total_time, active_time);
1071 if (active_time > max_time)
1072 max_time = active_time;
1074 if (ws->autosleep_enabled)
1075 prevent_sleep_time = ktime_add(prevent_sleep_time,
1076 ktime_sub(now, ws->start_prevent_time));
1081 seq_printf(m, "%-12s\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",
1082 ws->name, active_count, ws->event_count,
1083 ws->wakeup_count, ws->expire_count,
1084 ktime_to_ms(active_time), ktime_to_ms(total_time),
1085 ktime_to_ms(max_time), ktime_to_ms(ws->last_time),
1086 ktime_to_ms(prevent_sleep_time));
1088 spin_unlock_irqrestore(&ws->lock, flags);
1093 static void *wakeup_sources_stats_seq_start(struct seq_file *m,
1096 struct wakeup_source *ws;
1098 int *srcuidx = m->private;
1101 seq_puts(m, "name\t\tactive_count\tevent_count\twakeup_count\t"
1102 "expire_count\tactive_since\ttotal_time\tmax_time\t"
1103 "last_change\tprevent_suspend_time\n");
1106 *srcuidx = srcu_read_lock(&wakeup_srcu);
1107 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
1115 static void *wakeup_sources_stats_seq_next(struct seq_file *m,
1116 void *v, loff_t *pos)
1118 struct wakeup_source *ws = v;
1119 struct wakeup_source *next_ws = NULL;
1123 list_for_each_entry_continue_rcu(ws, &wakeup_sources, entry) {
1129 print_wakeup_source_stats(m, &deleted_ws);
1134 static void wakeup_sources_stats_seq_stop(struct seq_file *m, void *v)
1136 int *srcuidx = m->private;
1138 srcu_read_unlock(&wakeup_srcu, *srcuidx);
1142 * wakeup_sources_stats_seq_show - Print wakeup sources statistics information.
1143 * @m: seq_file to print the statistics into.
1144 * @v: wakeup_source of each iteration
1146 static int wakeup_sources_stats_seq_show(struct seq_file *m, void *v)
1148 struct wakeup_source *ws = v;
1150 print_wakeup_source_stats(m, ws);
1155 static const struct seq_operations wakeup_sources_stats_seq_ops = {
1156 .start = wakeup_sources_stats_seq_start,
1157 .next = wakeup_sources_stats_seq_next,
1158 .stop = wakeup_sources_stats_seq_stop,
1159 .show = wakeup_sources_stats_seq_show,
1162 static int wakeup_sources_stats_open(struct inode *inode, struct file *file)
1164 return seq_open_private(file, &wakeup_sources_stats_seq_ops, sizeof(int));
1167 static const struct file_operations wakeup_sources_stats_fops = {
1168 .owner = THIS_MODULE,
1169 .open = wakeup_sources_stats_open,
1171 .llseek = seq_lseek,
1172 .release = seq_release_private,
1175 static int __init wakeup_sources_debugfs_init(void)
1177 debugfs_create_file("wakeup_sources", S_IRUGO, NULL, NULL,
1178 &wakeup_sources_stats_fops);
1182 postcore_initcall(wakeup_sources_debugfs_init);