blob: 15d27d782dc1f3243faf536ec7dc8c88e1c1e13a [file] [log] [blame]
Rafael J. Wysockic125e962010-07-05 22:43:53 +02001/*
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>
Paul Gortmaker1b6bc322011-05-27 07:12:15 -040013#include <linux/export.h>
Rafael J. Wysockic125e962010-07-05 22:43:53 +020014#include <linux/suspend.h>
Rafael J. Wysocki9c034392010-10-19 23:42:49 +020015#include <linux/seq_file.h>
16#include <linux/debugfs.h>
Tony Lindgren4990d4f2015-05-18 15:40:29 -070017#include <linux/pm_wakeirq.h>
Arve Hjønnevåg6791e362012-04-29 22:53:02 +020018#include <trace/events/power.h>
Rafael J. Wysocki074037e2010-09-22 22:09:10 +020019
20#include "power.h"
21
Rafael J. Wysockic125e962010-07-05 22:43:53 +020022/*
23 * If set, the suspend/hibernate code will abort transitions to a sleep state
24 * if wakeup events are registered during or immediately before the transition.
25 */
Rafael J. Wysocki30e3ce62012-04-29 22:52:52 +020026bool events_check_enabled __read_mostly;
Rafael J. Wysockic125e962010-07-05 22:43:53 +020027
Rafael J. Wysocki068765b2014-09-01 13:47:49 +020028/* If set and the system is suspending, terminate the suspend. */
29static bool pm_abort_suspend __read_mostly;
30
Rafael J. Wysocki023d3772011-01-31 11:06:39 +010031/*
32 * Combined counters of registered wakeup events and wakeup events in progress.
33 * They need to be modified together atomically, so it's better to use one
34 * atomic variable to hold them both.
35 */
36static atomic_t combined_event_count = ATOMIC_INIT(0);
37
38#define IN_PROGRESS_BITS (sizeof(int) * 4)
39#define MAX_IN_PROGRESS ((1 << IN_PROGRESS_BITS) - 1)
40
41static void split_counters(unsigned int *cnt, unsigned int *inpr)
42{
43 unsigned int comb = atomic_read(&combined_event_count);
44
45 *cnt = (comb >> IN_PROGRESS_BITS);
46 *inpr = comb & MAX_IN_PROGRESS;
47}
48
49/* A preserved old value of the events counter. */
Rafael J. Wysocki074037e2010-09-22 22:09:10 +020050static unsigned int saved_count;
Rafael J. Wysockic125e962010-07-05 22:43:53 +020051
52static DEFINE_SPINLOCK(events_lock);
53
Rafael J. Wysocki4eb241e2010-07-07 23:43:51 +020054static void pm_wakeup_timer_fn(unsigned long data);
55
Rafael J. Wysocki074037e2010-09-22 22:09:10 +020056static LIST_HEAD(wakeup_sources);
57
Rafael J. Wysocki60af1062012-04-29 22:52:34 +020058static DECLARE_WAIT_QUEUE_HEAD(wakeup_count_wait_queue);
59
Rafael J. Wysocki074037e2010-09-22 22:09:10 +020060/**
Rafael J. Wysocki8671bbc2012-02-21 23:47:56 +010061 * wakeup_source_prepare - Prepare a new wakeup source for initialization.
62 * @ws: Wakeup source to prepare.
63 * @name: Pointer to the name of the new wakeup source.
64 *
65 * Callers must ensure that the @name string won't be freed when @ws is still in
66 * use.
67 */
68void wakeup_source_prepare(struct wakeup_source *ws, const char *name)
69{
70 if (ws) {
71 memset(ws, 0, sizeof(*ws));
72 ws->name = name;
73 }
74}
75EXPORT_SYMBOL_GPL(wakeup_source_prepare);
76
77/**
Rafael J. Wysocki074037e2010-09-22 22:09:10 +020078 * wakeup_source_create - Create a struct wakeup_source object.
79 * @name: Name of the new wakeup source.
80 */
81struct wakeup_source *wakeup_source_create(const char *name)
82{
83 struct wakeup_source *ws;
84
Rafael J. Wysocki8671bbc2012-02-21 23:47:56 +010085 ws = kmalloc(sizeof(*ws), GFP_KERNEL);
Rafael J. Wysocki074037e2010-09-22 22:09:10 +020086 if (!ws)
87 return NULL;
88
Rafael J. Wysocki8671bbc2012-02-21 23:47:56 +010089 wakeup_source_prepare(ws, name ? kstrdup(name, GFP_KERNEL) : NULL);
Rafael J. Wysocki074037e2010-09-22 22:09:10 +020090 return ws;
91}
92EXPORT_SYMBOL_GPL(wakeup_source_create);
93
94/**
Rafael J. Wysocki8671bbc2012-02-21 23:47:56 +010095 * wakeup_source_drop - Prepare a struct wakeup_source object for destruction.
96 * @ws: Wakeup source to prepare for destruction.
Rafael J. Wysockid94aff82012-02-17 23:39:20 +010097 *
98 * Callers must ensure that __pm_stay_awake() or __pm_wakeup_event() will never
99 * be run in parallel with this function for the same wakeup source object.
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200100 */
Rafael J. Wysocki8671bbc2012-02-21 23:47:56 +0100101void wakeup_source_drop(struct wakeup_source *ws)
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200102{
103 if (!ws)
104 return;
105
Rafael J. Wysockid94aff82012-02-17 23:39:20 +0100106 del_timer_sync(&ws->timer);
107 __pm_relax(ws);
Rafael J. Wysocki8671bbc2012-02-21 23:47:56 +0100108}
109EXPORT_SYMBOL_GPL(wakeup_source_drop);
110
111/**
112 * wakeup_source_destroy - Destroy a struct wakeup_source object.
113 * @ws: Wakeup source to destroy.
114 *
115 * Use only for wakeup source objects created with wakeup_source_create().
116 */
117void wakeup_source_destroy(struct wakeup_source *ws)
118{
119 if (!ws)
120 return;
121
122 wakeup_source_drop(ws);
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200123 kfree(ws->name);
124 kfree(ws);
125}
126EXPORT_SYMBOL_GPL(wakeup_source_destroy);
127
128/**
129 * wakeup_source_add - Add given object to the list of wakeup sources.
130 * @ws: Wakeup source object to add to the list.
131 */
132void wakeup_source_add(struct wakeup_source *ws)
133{
John Stultz49550702012-09-06 23:19:06 +0200134 unsigned long flags;
135
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200136 if (WARN_ON(!ws))
137 return;
138
Rafael J. Wysocki7c951492012-02-11 00:00:11 +0100139 spin_lock_init(&ws->lock);
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200140 setup_timer(&ws->timer, pm_wakeup_timer_fn, (unsigned long)ws);
141 ws->active = false;
Rafael J. Wysockib86ff9822012-04-29 22:53:42 +0200142 ws->last_time = ktime_get();
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200143
John Stultz49550702012-09-06 23:19:06 +0200144 spin_lock_irqsave(&events_lock, flags);
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200145 list_add_rcu(&ws->entry, &wakeup_sources);
John Stultz49550702012-09-06 23:19:06 +0200146 spin_unlock_irqrestore(&events_lock, flags);
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200147}
148EXPORT_SYMBOL_GPL(wakeup_source_add);
149
150/**
151 * wakeup_source_remove - Remove given object from the wakeup sources list.
152 * @ws: Wakeup source object to remove from the list.
153 */
154void wakeup_source_remove(struct wakeup_source *ws)
155{
John Stultz49550702012-09-06 23:19:06 +0200156 unsigned long flags;
157
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200158 if (WARN_ON(!ws))
159 return;
160
John Stultz49550702012-09-06 23:19:06 +0200161 spin_lock_irqsave(&events_lock, flags);
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200162 list_del_rcu(&ws->entry);
John Stultz49550702012-09-06 23:19:06 +0200163 spin_unlock_irqrestore(&events_lock, flags);
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200164 synchronize_rcu();
165}
166EXPORT_SYMBOL_GPL(wakeup_source_remove);
167
168/**
169 * wakeup_source_register - Create wakeup source and add it to the list.
170 * @name: Name of the wakeup source to register.
171 */
172struct wakeup_source *wakeup_source_register(const char *name)
173{
174 struct wakeup_source *ws;
175
176 ws = wakeup_source_create(name);
177 if (ws)
178 wakeup_source_add(ws);
179
180 return ws;
181}
182EXPORT_SYMBOL_GPL(wakeup_source_register);
183
184/**
185 * wakeup_source_unregister - Remove wakeup source from the list and remove it.
186 * @ws: Wakeup source object to unregister.
187 */
188void wakeup_source_unregister(struct wakeup_source *ws)
189{
Rafael J. Wysocki8671bbc2012-02-21 23:47:56 +0100190 if (ws) {
191 wakeup_source_remove(ws);
192 wakeup_source_destroy(ws);
193 }
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200194}
195EXPORT_SYMBOL_GPL(wakeup_source_unregister);
196
197/**
198 * device_wakeup_attach - Attach a wakeup source object to a device object.
199 * @dev: Device to handle.
200 * @ws: Wakeup source object to attach to @dev.
201 *
202 * This causes @dev to be treated as a wakeup device.
203 */
204static int device_wakeup_attach(struct device *dev, struct wakeup_source *ws)
205{
206 spin_lock_irq(&dev->power.lock);
207 if (dev->power.wakeup) {
208 spin_unlock_irq(&dev->power.lock);
209 return -EEXIST;
210 }
211 dev->power.wakeup = ws;
212 spin_unlock_irq(&dev->power.lock);
213 return 0;
214}
215
216/**
217 * device_wakeup_enable - Enable given device to be a wakeup source.
218 * @dev: Device to handle.
219 *
220 * Create a wakeup source object, register it and attach it to @dev.
221 */
222int device_wakeup_enable(struct device *dev)
223{
224 struct wakeup_source *ws;
225 int ret;
226
227 if (!dev || !dev->power.can_wakeup)
228 return -EINVAL;
229
230 ws = wakeup_source_register(dev_name(dev));
231 if (!ws)
232 return -ENOMEM;
233
234 ret = device_wakeup_attach(dev, ws);
235 if (ret)
236 wakeup_source_unregister(ws);
237
238 return ret;
239}
240EXPORT_SYMBOL_GPL(device_wakeup_enable);
241
242/**
Tony Lindgren4990d4f2015-05-18 15:40:29 -0700243 * device_wakeup_attach_irq - Attach a wakeirq to a wakeup source
244 * @dev: Device to handle
245 * @wakeirq: Device specific wakeirq entry
246 *
247 * Attach a device wakeirq to the wakeup source so the device
248 * wake IRQ can be configured automatically for suspend and
249 * resume.
Rafael J. Wysocki6d3dab72015-07-07 13:08:39 +0200250 *
251 * Call under the device's power.lock lock.
Tony Lindgren4990d4f2015-05-18 15:40:29 -0700252 */
253int device_wakeup_attach_irq(struct device *dev,
254 struct wake_irq *wakeirq)
255{
256 struct wakeup_source *ws;
Tony Lindgren4990d4f2015-05-18 15:40:29 -0700257
Tony Lindgren4990d4f2015-05-18 15:40:29 -0700258 ws = dev->power.wakeup;
259 if (!ws) {
260 dev_err(dev, "forgot to call call device_init_wakeup?\n");
Rafael J. Wysocki6d3dab72015-07-07 13:08:39 +0200261 return -EINVAL;
Tony Lindgren4990d4f2015-05-18 15:40:29 -0700262 }
263
Rafael J. Wysocki6d3dab72015-07-07 13:08:39 +0200264 if (ws->wakeirq)
265 return -EEXIST;
Tony Lindgren4990d4f2015-05-18 15:40:29 -0700266
267 ws->wakeirq = wakeirq;
Rafael J. Wysocki6d3dab72015-07-07 13:08:39 +0200268 return 0;
Tony Lindgren4990d4f2015-05-18 15:40:29 -0700269}
270
271/**
272 * device_wakeup_detach_irq - Detach a wakeirq from a wakeup source
273 * @dev: Device to handle
274 *
275 * Removes a device wakeirq from the wakeup source.
Rafael J. Wysocki6d3dab72015-07-07 13:08:39 +0200276 *
277 * Call under the device's power.lock lock.
Tony Lindgren4990d4f2015-05-18 15:40:29 -0700278 */
279void device_wakeup_detach_irq(struct device *dev)
280{
281 struct wakeup_source *ws;
282
Tony Lindgren4990d4f2015-05-18 15:40:29 -0700283 ws = dev->power.wakeup;
Rafael J. Wysocki6d3dab72015-07-07 13:08:39 +0200284 if (ws)
285 ws->wakeirq = NULL;
Tony Lindgren4990d4f2015-05-18 15:40:29 -0700286}
287
288/**
289 * device_wakeup_arm_wake_irqs(void)
290 *
291 * Itereates over the list of device wakeirqs to arm them.
292 */
293void device_wakeup_arm_wake_irqs(void)
294{
295 struct wakeup_source *ws;
296
297 rcu_read_lock();
298 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
299 if (ws->wakeirq)
300 dev_pm_arm_wake_irq(ws->wakeirq);
301 }
302 rcu_read_unlock();
303}
304
305/**
306 * device_wakeup_disarm_wake_irqs(void)
307 *
308 * Itereates over the list of device wakeirqs to disarm them.
309 */
310void device_wakeup_disarm_wake_irqs(void)
311{
312 struct wakeup_source *ws;
313
314 rcu_read_lock();
315 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
316 if (ws->wakeirq)
317 dev_pm_disarm_wake_irq(ws->wakeirq);
318 }
319 rcu_read_unlock();
320}
321
322/**
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200323 * device_wakeup_detach - Detach a device's wakeup source object from it.
324 * @dev: Device to detach the wakeup source object from.
325 *
326 * After it returns, @dev will not be treated as a wakeup device any more.
327 */
328static struct wakeup_source *device_wakeup_detach(struct device *dev)
329{
330 struct wakeup_source *ws;
331
332 spin_lock_irq(&dev->power.lock);
333 ws = dev->power.wakeup;
334 dev->power.wakeup = NULL;
335 spin_unlock_irq(&dev->power.lock);
336 return ws;
337}
338
339/**
340 * device_wakeup_disable - Do not regard a device as a wakeup source any more.
341 * @dev: Device to handle.
342 *
343 * Detach the @dev's wakeup source object from it, unregister this wakeup source
344 * object and destroy it.
345 */
346int device_wakeup_disable(struct device *dev)
347{
348 struct wakeup_source *ws;
349
350 if (!dev || !dev->power.can_wakeup)
351 return -EINVAL;
352
353 ws = device_wakeup_detach(dev);
354 if (ws)
355 wakeup_source_unregister(ws);
356
357 return 0;
358}
359EXPORT_SYMBOL_GPL(device_wakeup_disable);
360
361/**
Rafael J. Wysockicb8f51b2011-02-08 23:26:02 +0100362 * device_set_wakeup_capable - Set/reset device wakeup capability flag.
363 * @dev: Device to handle.
364 * @capable: Whether or not @dev is capable of waking up the system from sleep.
365 *
366 * If @capable is set, set the @dev's power.can_wakeup flag and add its
367 * wakeup-related attributes to sysfs. Otherwise, unset the @dev's
368 * power.can_wakeup flag and remove its wakeup-related attributes from sysfs.
369 *
370 * This function may sleep and it can't be called from any context where
371 * sleeping is not allowed.
372 */
373void device_set_wakeup_capable(struct device *dev, bool capable)
374{
375 if (!!dev->power.can_wakeup == !!capable)
376 return;
377
Rafael J. Wysocki22110fa2011-04-26 11:33:09 +0200378 if (device_is_registered(dev) && !list_empty(&dev->power.entry)) {
Rafael J. Wysockicb8f51b2011-02-08 23:26:02 +0100379 if (capable) {
380 if (wakeup_sysfs_add(dev))
381 return;
382 } else {
383 wakeup_sysfs_remove(dev);
384 }
385 }
386 dev->power.can_wakeup = capable;
387}
388EXPORT_SYMBOL_GPL(device_set_wakeup_capable);
389
390/**
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200391 * device_init_wakeup - Device wakeup initialization.
392 * @dev: Device to handle.
393 * @enable: Whether or not to enable @dev as a wakeup device.
394 *
395 * By default, most devices should leave wakeup disabled. The exceptions are
396 * devices that everyone expects to be wakeup sources: keyboards, power buttons,
Alan Stern8f888932011-09-26 17:38:50 +0200397 * possibly network interfaces, etc. Also, devices that don't generate their
398 * own wakeup requests but merely forward requests from one bus to another
399 * (like PCI bridges) should have wakeup enabled by default.
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200400 */
401int device_init_wakeup(struct device *dev, bool enable)
402{
403 int ret = 0;
404
Zhang Rui0c5ff0e2014-05-28 15:23:35 +0800405 if (!dev)
406 return -EINVAL;
407
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200408 if (enable) {
409 device_set_wakeup_capable(dev, true);
410 ret = device_wakeup_enable(dev);
411 } else {
Zhang Rui0c5ff0e2014-05-28 15:23:35 +0800412 if (dev->power.can_wakeup)
413 device_wakeup_disable(dev);
414
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200415 device_set_wakeup_capable(dev, false);
416 }
417
418 return ret;
419}
420EXPORT_SYMBOL_GPL(device_init_wakeup);
421
422/**
423 * device_set_wakeup_enable - Enable or disable a device to wake up the system.
424 * @dev: Device to handle.
425 */
426int device_set_wakeup_enable(struct device *dev, bool enable)
427{
428 if (!dev || !dev->power.can_wakeup)
429 return -EINVAL;
430
431 return enable ? device_wakeup_enable(dev) : device_wakeup_disable(dev);
432}
433EXPORT_SYMBOL_GPL(device_set_wakeup_enable);
Rafael J. Wysocki4eb241e2010-07-07 23:43:51 +0200434
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200435/*
436 * The functions below use the observation that each wakeup event starts a
437 * period in which the system should not be suspended. The moment this period
438 * will end depends on how the wakeup event is going to be processed after being
439 * detected and all of the possible cases can be divided into two distinct
440 * groups.
441 *
442 * First, a wakeup event may be detected by the same functional unit that will
443 * carry out the entire processing of it and possibly will pass it to user space
444 * for further processing. In that case the functional unit that has detected
445 * the event may later "close" the "no suspend" period associated with it
446 * directly as soon as it has been dealt with. The pair of pm_stay_awake() and
447 * pm_relax(), balanced with each other, is supposed to be used in such
448 * situations.
449 *
450 * Second, a wakeup event may be detected by one functional unit and processed
451 * by another one. In that case the unit that has detected it cannot really
452 * "close" the "no suspend" period associated with it, unless it knows in
453 * advance what's going to happen to the event during processing. This
454 * knowledge, however, may not be available to it, so it can simply specify time
455 * to wait before the system can be suspended and pass it as the second
456 * argument of pm_wakeup_event().
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200457 *
458 * It is valid to call pm_relax() after pm_wakeup_event(), in which case the
459 * "no suspend" period will be ended either by the pm_relax(), or by the timer
460 * function executed when the timer expires, whichever comes first.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200461 */
462
463/**
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200464 * wakup_source_activate - Mark given wakeup source as active.
465 * @ws: Wakeup source to handle.
466 *
467 * Update the @ws' statistics and, if @ws has just been activated, notify the PM
468 * core of the event by incrementing the counter of of wakeup events being
469 * processed.
470 */
471static void wakeup_source_activate(struct wakeup_source *ws)
472{
Arve Hjønnevåg6791e362012-04-29 22:53:02 +0200473 unsigned int cec;
474
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100475 /*
476 * active wakeup source should bring the system
477 * out of PM_SUSPEND_FREEZE state
478 */
479 freeze_wake();
480
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200481 ws->active = true;
482 ws->active_count++;
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200483 ws->last_time = ktime_get();
Rafael J. Wysocki55850942012-04-29 22:53:32 +0200484 if (ws->autosleep_enabled)
485 ws->start_prevent_time = ws->last_time;
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200486
Rafael J. Wysocki023d3772011-01-31 11:06:39 +0100487 /* Increment the counter of events in progress. */
Arve Hjønnevåg6791e362012-04-29 22:53:02 +0200488 cec = atomic_inc_return(&combined_event_count);
489
490 trace_wakeup_source_activate(ws->name, cec);
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200491}
492
493/**
Rafael J. Wysocki30e3ce62012-04-29 22:52:52 +0200494 * wakeup_source_report_event - Report wakeup event using the given source.
495 * @ws: Wakeup source to report the event for.
496 */
497static void wakeup_source_report_event(struct wakeup_source *ws)
498{
499 ws->event_count++;
500 /* This is racy, but the counter is approximate anyway. */
501 if (events_check_enabled)
502 ws->wakeup_count++;
503
504 if (!ws->active)
505 wakeup_source_activate(ws);
506}
507
508/**
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200509 * __pm_stay_awake - Notify the PM core of a wakeup event.
510 * @ws: Wakeup source object associated with the source of the event.
511 *
512 * It is safe to call this function from interrupt context.
513 */
514void __pm_stay_awake(struct wakeup_source *ws)
515{
516 unsigned long flags;
517
518 if (!ws)
519 return;
520
521 spin_lock_irqsave(&ws->lock, flags);
Rafael J. Wysocki4782e162012-02-17 23:39:39 +0100522
Rafael J. Wysocki30e3ce62012-04-29 22:52:52 +0200523 wakeup_source_report_event(ws);
Rafael J. Wysocki4782e162012-02-17 23:39:39 +0100524 del_timer(&ws->timer);
525 ws->timer_expires = 0;
526
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200527 spin_unlock_irqrestore(&ws->lock, flags);
528}
529EXPORT_SYMBOL_GPL(__pm_stay_awake);
530
531/**
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200532 * pm_stay_awake - Notify the PM core that a wakeup event is being processed.
533 * @dev: Device the wakeup event is related to.
534 *
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200535 * Notify the PM core of a wakeup event (signaled by @dev) by calling
536 * __pm_stay_awake for the @dev's wakeup source object.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200537 *
538 * Call this function after detecting of a wakeup event if pm_relax() is going
539 * to be called directly after processing the event (and possibly passing it to
540 * user space for further processing).
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200541 */
542void pm_stay_awake(struct device *dev)
543{
544 unsigned long flags;
545
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200546 if (!dev)
547 return;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200548
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200549 spin_lock_irqsave(&dev->power.lock, flags);
550 __pm_stay_awake(dev->power.wakeup);
551 spin_unlock_irqrestore(&dev->power.lock, flags);
552}
553EXPORT_SYMBOL_GPL(pm_stay_awake);
554
Rafael J. Wysocki55850942012-04-29 22:53:32 +0200555#ifdef CONFIG_PM_AUTOSLEEP
556static void update_prevent_sleep_time(struct wakeup_source *ws, ktime_t now)
557{
558 ktime_t delta = ktime_sub(now, ws->start_prevent_time);
559 ws->prevent_sleep_time = ktime_add(ws->prevent_sleep_time, delta);
560}
561#else
562static inline void update_prevent_sleep_time(struct wakeup_source *ws,
563 ktime_t now) {}
564#endif
565
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200566/**
567 * wakup_source_deactivate - Mark given wakeup source as inactive.
568 * @ws: Wakeup source to handle.
569 *
570 * Update the @ws' statistics and notify the PM core that the wakeup source has
571 * become inactive by decrementing the counter of wakeup events being processed
572 * and incrementing the counter of registered wakeup events.
573 */
574static void wakeup_source_deactivate(struct wakeup_source *ws)
575{
Arve Hjønnevåg6791e362012-04-29 22:53:02 +0200576 unsigned int cnt, inpr, cec;
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200577 ktime_t duration;
578 ktime_t now;
579
580 ws->relax_count++;
581 /*
582 * __pm_relax() may be called directly or from a timer function.
583 * If it is called directly right after the timer function has been
584 * started, but before the timer function calls __pm_relax(), it is
585 * possible that __pm_stay_awake() will be called in the meantime and
586 * will set ws->active. Then, ws->active may be cleared immediately
587 * by the __pm_relax() called from the timer function, but in such a
588 * case ws->relax_count will be different from ws->active_count.
589 */
590 if (ws->relax_count != ws->active_count) {
591 ws->relax_count--;
592 return;
593 }
594
595 ws->active = false;
596
597 now = ktime_get();
598 duration = ktime_sub(now, ws->last_time);
599 ws->total_time = ktime_add(ws->total_time, duration);
600 if (ktime_to_ns(duration) > ktime_to_ns(ws->max_time))
601 ws->max_time = duration;
602
Rafael J. Wysocki30e3ce62012-04-29 22:52:52 +0200603 ws->last_time = now;
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200604 del_timer(&ws->timer);
Rafael J. Wysockida863cd2012-02-17 23:39:33 +0100605 ws->timer_expires = 0;
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200606
Rafael J. Wysocki55850942012-04-29 22:53:32 +0200607 if (ws->autosleep_enabled)
608 update_prevent_sleep_time(ws, now);
609
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200610 /*
Rafael J. Wysocki023d3772011-01-31 11:06:39 +0100611 * Increment the counter of registered wakeup events and decrement the
612 * couter of wakeup events in progress simultaneously.
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200613 */
Arve Hjønnevåg6791e362012-04-29 22:53:02 +0200614 cec = atomic_add_return(MAX_IN_PROGRESS, &combined_event_count);
615 trace_wakeup_source_deactivate(ws->name, cec);
Rafael J. Wysocki60af1062012-04-29 22:52:34 +0200616
617 split_counters(&cnt, &inpr);
618 if (!inpr && waitqueue_active(&wakeup_count_wait_queue))
619 wake_up(&wakeup_count_wait_queue);
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200620}
621
622/**
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200623 * __pm_relax - Notify the PM core that processing of a wakeup event has ended.
624 * @ws: Wakeup source object associated with the source of the event.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200625 *
626 * Call this function for wakeup events whose processing started with calling
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200627 * __pm_stay_awake().
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200628 *
629 * It is safe to call it from interrupt context.
630 */
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200631void __pm_relax(struct wakeup_source *ws)
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200632{
633 unsigned long flags;
634
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200635 if (!ws)
636 return;
637
638 spin_lock_irqsave(&ws->lock, flags);
639 if (ws->active)
640 wakeup_source_deactivate(ws);
641 spin_unlock_irqrestore(&ws->lock, flags);
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200642}
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200643EXPORT_SYMBOL_GPL(__pm_relax);
644
645/**
646 * pm_relax - Notify the PM core that processing of a wakeup event has ended.
647 * @dev: Device that signaled the event.
648 *
649 * Execute __pm_relax() for the @dev's wakeup source object.
650 */
651void pm_relax(struct device *dev)
652{
653 unsigned long flags;
654
655 if (!dev)
656 return;
657
658 spin_lock_irqsave(&dev->power.lock, flags);
659 __pm_relax(dev->power.wakeup);
660 spin_unlock_irqrestore(&dev->power.lock, flags);
661}
662EXPORT_SYMBOL_GPL(pm_relax);
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200663
664/**
Rafael J. Wysocki4eb241e2010-07-07 23:43:51 +0200665 * pm_wakeup_timer_fn - Delayed finalization of a wakeup event.
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200666 * @data: Address of the wakeup source object associated with the event source.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200667 *
Rafael J. Wysockida863cd2012-02-17 23:39:33 +0100668 * Call wakeup_source_deactivate() for the wakeup source whose address is stored
669 * in @data if it is currently active and its timer has not been canceled and
670 * the expiration time of the timer is not in future.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200671 */
Rafael J. Wysocki4eb241e2010-07-07 23:43:51 +0200672static void pm_wakeup_timer_fn(unsigned long data)
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200673{
Rafael J. Wysockida863cd2012-02-17 23:39:33 +0100674 struct wakeup_source *ws = (struct wakeup_source *)data;
675 unsigned long flags;
676
677 spin_lock_irqsave(&ws->lock, flags);
678
679 if (ws->active && ws->timer_expires
Rafael J. Wysocki30e3ce62012-04-29 22:52:52 +0200680 && time_after_eq(jiffies, ws->timer_expires)) {
Rafael J. Wysockida863cd2012-02-17 23:39:33 +0100681 wakeup_source_deactivate(ws);
Rafael J. Wysocki30e3ce62012-04-29 22:52:52 +0200682 ws->expire_count++;
683 }
Rafael J. Wysockida863cd2012-02-17 23:39:33 +0100684
685 spin_unlock_irqrestore(&ws->lock, flags);
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200686}
687
688/**
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200689 * __pm_wakeup_event - Notify the PM core of a wakeup event.
690 * @ws: Wakeup source object associated with the event source.
691 * @msec: Anticipated event processing time (in milliseconds).
692 *
693 * Notify the PM core of a wakeup event whose source is @ws that will take
694 * approximately @msec milliseconds to be processed by the kernel. If @ws is
695 * not active, activate it. If @msec is nonzero, set up the @ws' timer to
696 * execute pm_wakeup_timer_fn() in future.
697 *
698 * It is safe to call this function from interrupt context.
699 */
700void __pm_wakeup_event(struct wakeup_source *ws, unsigned int msec)
701{
702 unsigned long flags;
703 unsigned long expires;
704
705 if (!ws)
706 return;
707
708 spin_lock_irqsave(&ws->lock, flags);
709
Rafael J. Wysocki30e3ce62012-04-29 22:52:52 +0200710 wakeup_source_report_event(ws);
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200711
712 if (!msec) {
713 wakeup_source_deactivate(ws);
714 goto unlock;
715 }
716
717 expires = jiffies + msecs_to_jiffies(msec);
718 if (!expires)
719 expires = 1;
720
Rafael J. Wysocki4782e162012-02-17 23:39:39 +0100721 if (!ws->timer_expires || time_after(expires, ws->timer_expires)) {
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200722 mod_timer(&ws->timer, expires);
723 ws->timer_expires = expires;
724 }
725
726 unlock:
727 spin_unlock_irqrestore(&ws->lock, flags);
728}
729EXPORT_SYMBOL_GPL(__pm_wakeup_event);
730
731
732/**
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200733 * pm_wakeup_event - Notify the PM core of a wakeup event.
734 * @dev: Device the wakeup event is related to.
735 * @msec: Anticipated event processing time (in milliseconds).
736 *
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200737 * Call __pm_wakeup_event() for the @dev's wakeup source object.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200738 */
739void pm_wakeup_event(struct device *dev, unsigned int msec)
740{
741 unsigned long flags;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200742
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200743 if (!dev)
744 return;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200745
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200746 spin_lock_irqsave(&dev->power.lock, flags);
747 __pm_wakeup_event(dev->power.wakeup, msec);
748 spin_unlock_irqrestore(&dev->power.lock, flags);
749}
750EXPORT_SYMBOL_GPL(pm_wakeup_event);
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200751
Julius Wernerbb177fe2013-06-12 12:55:22 -0700752void pm_print_active_wakeup_sources(void)
Todd Poynora938da02012-08-12 00:17:02 +0200753{
754 struct wakeup_source *ws;
755 int active = 0;
756 struct wakeup_source *last_activity_ws = NULL;
757
758 rcu_read_lock();
759 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
760 if (ws->active) {
761 pr_info("active wakeup source: %s\n", ws->name);
762 active = 1;
763 } else if (!active &&
764 (!last_activity_ws ||
765 ktime_to_ns(ws->last_time) >
766 ktime_to_ns(last_activity_ws->last_time))) {
767 last_activity_ws = ws;
768 }
769 }
770
771 if (!active && last_activity_ws)
772 pr_info("last active wakeup source: %s\n",
773 last_activity_ws->name);
774 rcu_read_unlock();
775}
Julius Wernerbb177fe2013-06-12 12:55:22 -0700776EXPORT_SYMBOL_GPL(pm_print_active_wakeup_sources);
Todd Poynora938da02012-08-12 00:17:02 +0200777
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200778/**
Rafael J. Wysockia2867e02010-12-03 22:58:31 +0100779 * pm_wakeup_pending - Check if power transition in progress should be aborted.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200780 *
781 * Compare the current number of registered wakeup events with its preserved
Rafael J. Wysockia2867e02010-12-03 22:58:31 +0100782 * value from the past and return true if new wakeup events have been registered
783 * since the old value was stored. Also return true if the current number of
784 * wakeup events being processed is different from zero.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200785 */
Rafael J. Wysockia2867e02010-12-03 22:58:31 +0100786bool pm_wakeup_pending(void)
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200787{
788 unsigned long flags;
Rafael J. Wysockia2867e02010-12-03 22:58:31 +0100789 bool ret = false;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200790
791 spin_lock_irqsave(&events_lock, flags);
792 if (events_check_enabled) {
Rafael J. Wysocki023d3772011-01-31 11:06:39 +0100793 unsigned int cnt, inpr;
794
795 split_counters(&cnt, &inpr);
796 ret = (cnt != saved_count || inpr > 0);
Rafael J. Wysockia2867e02010-12-03 22:58:31 +0100797 events_check_enabled = !ret;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200798 }
799 spin_unlock_irqrestore(&events_lock, flags);
Todd Poynora938da02012-08-12 00:17:02 +0200800
Bernie Thompson9350de062013-06-01 00:47:43 +0000801 if (ret) {
802 pr_info("PM: Wakeup pending, aborting suspend\n");
Julius Wernerbb177fe2013-06-12 12:55:22 -0700803 pm_print_active_wakeup_sources();
Bernie Thompson9350de062013-06-01 00:47:43 +0000804 }
Todd Poynora938da02012-08-12 00:17:02 +0200805
Rafael J. Wysocki068765b2014-09-01 13:47:49 +0200806 return ret || pm_abort_suspend;
807}
808
809void pm_system_wakeup(void)
810{
811 pm_abort_suspend = true;
812 freeze_wake();
813}
Boris BREZILLON432ec922015-03-02 10:18:13 +0100814EXPORT_SYMBOL_GPL(pm_system_wakeup);
Rafael J. Wysocki068765b2014-09-01 13:47:49 +0200815
816void pm_wakeup_clear(void)
817{
818 pm_abort_suspend = false;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200819}
820
821/**
822 * pm_get_wakeup_count - Read the number of registered wakeup events.
823 * @count: Address to store the value at.
Rafael J. Wysocki7483b4a2012-04-29 22:53:22 +0200824 * @block: Whether or not to block.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200825 *
Rafael J. Wysocki7483b4a2012-04-29 22:53:22 +0200826 * Store the number of registered wakeup events at the address in @count. If
827 * @block is set, block until the current number of wakeup events being
828 * processed is zero.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200829 *
Rafael J. Wysocki7483b4a2012-04-29 22:53:22 +0200830 * Return 'false' if the current number of wakeup events being processed is
831 * nonzero. Otherwise return 'true'.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200832 */
Rafael J. Wysocki7483b4a2012-04-29 22:53:22 +0200833bool pm_get_wakeup_count(unsigned int *count, bool block)
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200834{
Rafael J. Wysocki023d3772011-01-31 11:06:39 +0100835 unsigned int cnt, inpr;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200836
Rafael J. Wysocki7483b4a2012-04-29 22:53:22 +0200837 if (block) {
838 DEFINE_WAIT(wait);
Rafael J. Wysocki60af1062012-04-29 22:52:34 +0200839
Rafael J. Wysocki7483b4a2012-04-29 22:53:22 +0200840 for (;;) {
841 prepare_to_wait(&wakeup_count_wait_queue, &wait,
842 TASK_INTERRUPTIBLE);
843 split_counters(&cnt, &inpr);
844 if (inpr == 0 || signal_pending(current))
845 break;
846
847 schedule();
848 }
849 finish_wait(&wakeup_count_wait_queue, &wait);
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200850 }
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200851
Rafael J. Wysocki023d3772011-01-31 11:06:39 +0100852 split_counters(&cnt, &inpr);
853 *count = cnt;
854 return !inpr;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200855}
856
857/**
858 * pm_save_wakeup_count - Save the current number of registered wakeup events.
859 * @count: Value to compare with the current number of registered wakeup events.
860 *
861 * If @count is equal to the current number of registered wakeup events and the
862 * current number of wakeup events being processed is zero, store @count as the
Rafael J. Wysocki378eef92011-01-31 11:06:50 +0100863 * old number of registered wakeup events for pm_check_wakeup_events(), enable
864 * wakeup events detection and return 'true'. Otherwise disable wakeup events
865 * detection and return 'false'.
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200866 */
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200867bool pm_save_wakeup_count(unsigned int count)
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200868{
Rafael J. Wysocki023d3772011-01-31 11:06:39 +0100869 unsigned int cnt, inpr;
John Stultz49550702012-09-06 23:19:06 +0200870 unsigned long flags;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200871
Rafael J. Wysocki378eef92011-01-31 11:06:50 +0100872 events_check_enabled = false;
John Stultz49550702012-09-06 23:19:06 +0200873 spin_lock_irqsave(&events_lock, flags);
Rafael J. Wysocki023d3772011-01-31 11:06:39 +0100874 split_counters(&cnt, &inpr);
875 if (cnt == count && inpr == 0) {
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200876 saved_count = count;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200877 events_check_enabled = true;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200878 }
John Stultz49550702012-09-06 23:19:06 +0200879 spin_unlock_irqrestore(&events_lock, flags);
Rafael J. Wysocki378eef92011-01-31 11:06:50 +0100880 return events_check_enabled;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200881}
Rafael J. Wysocki9c034392010-10-19 23:42:49 +0200882
Rafael J. Wysocki55850942012-04-29 22:53:32 +0200883#ifdef CONFIG_PM_AUTOSLEEP
884/**
885 * pm_wakep_autosleep_enabled - Modify autosleep_enabled for all wakeup sources.
886 * @enabled: Whether to set or to clear the autosleep_enabled flags.
887 */
888void pm_wakep_autosleep_enabled(bool set)
889{
890 struct wakeup_source *ws;
891 ktime_t now = ktime_get();
892
893 rcu_read_lock();
894 list_for_each_entry_rcu(ws, &wakeup_sources, entry) {
895 spin_lock_irq(&ws->lock);
896 if (ws->autosleep_enabled != set) {
897 ws->autosleep_enabled = set;
898 if (ws->active) {
899 if (set)
900 ws->start_prevent_time = now;
901 else
902 update_prevent_sleep_time(ws, now);
903 }
904 }
905 spin_unlock_irq(&ws->lock);
906 }
907 rcu_read_unlock();
908}
909#endif /* CONFIG_PM_AUTOSLEEP */
910
Rafael J. Wysocki9c034392010-10-19 23:42:49 +0200911static struct dentry *wakeup_sources_stats_dentry;
912
913/**
914 * print_wakeup_source_stats - Print wakeup source statistics information.
915 * @m: seq_file to print the statistics into.
916 * @ws: Wakeup source object to print the statistics for.
917 */
918static int print_wakeup_source_stats(struct seq_file *m,
919 struct wakeup_source *ws)
920{
921 unsigned long flags;
922 ktime_t total_time;
923 ktime_t max_time;
924 unsigned long active_count;
925 ktime_t active_time;
Rafael J. Wysocki55850942012-04-29 22:53:32 +0200926 ktime_t prevent_sleep_time;
Rafael J. Wysocki9c034392010-10-19 23:42:49 +0200927
928 spin_lock_irqsave(&ws->lock, flags);
929
930 total_time = ws->total_time;
931 max_time = ws->max_time;
Rafael J. Wysocki55850942012-04-29 22:53:32 +0200932 prevent_sleep_time = ws->prevent_sleep_time;
Rafael J. Wysocki9c034392010-10-19 23:42:49 +0200933 active_count = ws->active_count;
934 if (ws->active) {
Rafael J. Wysocki55850942012-04-29 22:53:32 +0200935 ktime_t now = ktime_get();
936
937 active_time = ktime_sub(now, ws->last_time);
Rafael J. Wysocki9c034392010-10-19 23:42:49 +0200938 total_time = ktime_add(total_time, active_time);
939 if (active_time.tv64 > max_time.tv64)
940 max_time = active_time;
Rafael J. Wysocki55850942012-04-29 22:53:32 +0200941
942 if (ws->autosleep_enabled)
943 prevent_sleep_time = ktime_add(prevent_sleep_time,
944 ktime_sub(now, ws->start_prevent_time));
Rafael J. Wysocki9c034392010-10-19 23:42:49 +0200945 } else {
946 active_time = ktime_set(0, 0);
947 }
948
Joe Perches9f6a2402015-04-15 16:17:48 -0700949 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",
950 ws->name, active_count, ws->event_count,
951 ws->wakeup_count, ws->expire_count,
952 ktime_to_ms(active_time), ktime_to_ms(total_time),
953 ktime_to_ms(max_time), ktime_to_ms(ws->last_time),
954 ktime_to_ms(prevent_sleep_time));
Rafael J. Wysocki9c034392010-10-19 23:42:49 +0200955
956 spin_unlock_irqrestore(&ws->lock, flags);
957
Joe Perches9f6a2402015-04-15 16:17:48 -0700958 return 0;
Rafael J. Wysocki9c034392010-10-19 23:42:49 +0200959}
960
961/**
962 * wakeup_sources_stats_show - Print wakeup sources statistics information.
963 * @m: seq_file to print the statistics into.
964 */
965static int wakeup_sources_stats_show(struct seq_file *m, void *unused)
966{
967 struct wakeup_source *ws;
968
Rafael J. Wysocki30e3ce62012-04-29 22:52:52 +0200969 seq_puts(m, "name\t\tactive_count\tevent_count\twakeup_count\t"
970 "expire_count\tactive_since\ttotal_time\tmax_time\t"
Rafael J. Wysocki55850942012-04-29 22:53:32 +0200971 "last_change\tprevent_suspend_time\n");
Rafael J. Wysocki9c034392010-10-19 23:42:49 +0200972
973 rcu_read_lock();
974 list_for_each_entry_rcu(ws, &wakeup_sources, entry)
975 print_wakeup_source_stats(m, ws);
976 rcu_read_unlock();
977
978 return 0;
979}
980
981static int wakeup_sources_stats_open(struct inode *inode, struct file *file)
982{
983 return single_open(file, wakeup_sources_stats_show, NULL);
984}
985
986static const struct file_operations wakeup_sources_stats_fops = {
987 .owner = THIS_MODULE,
988 .open = wakeup_sources_stats_open,
989 .read = seq_read,
990 .llseek = seq_lseek,
991 .release = single_release,
992};
993
994static int __init wakeup_sources_debugfs_init(void)
995{
996 wakeup_sources_stats_dentry = debugfs_create_file("wakeup_sources",
997 S_IRUGO, NULL, NULL, &wakeup_sources_stats_fops);
998 return 0;
999}
1000
1001postcore_initcall(wakeup_sources_debugfs_init);