Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 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> |
Paul Gortmaker | 1b6bc32 | 2011-05-27 07:12:15 -0400 | [diff] [blame] | 13 | #include <linux/export.h> |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 14 | #include <linux/suspend.h> |
Rafael J. Wysocki | 9c03439 | 2010-10-19 23:42:49 +0200 | [diff] [blame] | 15 | #include <linux/seq_file.h> |
| 16 | #include <linux/debugfs.h> |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 17 | #include <linux/pm_wakeirq.h> |
Arve Hjønnevåg | 6791e36 | 2012-04-29 22:53:02 +0200 | [diff] [blame] | 18 | #include <trace/events/power.h> |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 19 | |
| 20 | #include "power.h" |
| 21 | |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 22 | /* |
| 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. Wysocki | 30e3ce6 | 2012-04-29 22:52:52 +0200 | [diff] [blame] | 26 | bool events_check_enabled __read_mostly; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 27 | |
Rafael J. Wysocki | 068765b | 2014-09-01 13:47:49 +0200 | [diff] [blame] | 28 | /* If set and the system is suspending, terminate the suspend. */ |
| 29 | static bool pm_abort_suspend __read_mostly; |
| 30 | |
Rafael J. Wysocki | 023d377 | 2011-01-31 11:06:39 +0100 | [diff] [blame] | 31 | /* |
| 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 | */ |
| 36 | static 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 | |
| 41 | static 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. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 50 | static unsigned int saved_count; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 51 | |
| 52 | static DEFINE_SPINLOCK(events_lock); |
| 53 | |
Rafael J. Wysocki | 4eb241e | 2010-07-07 23:43:51 +0200 | [diff] [blame] | 54 | static void pm_wakeup_timer_fn(unsigned long data); |
| 55 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 56 | static LIST_HEAD(wakeup_sources); |
| 57 | |
Rafael J. Wysocki | 60af106 | 2012-04-29 22:52:34 +0200 | [diff] [blame] | 58 | static DECLARE_WAIT_QUEUE_HEAD(wakeup_count_wait_queue); |
| 59 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 60 | /** |
Rafael J. Wysocki | 8671bbc | 2012-02-21 23:47:56 +0100 | [diff] [blame] | 61 | * 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 | */ |
| 68 | void 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 | } |
| 75 | EXPORT_SYMBOL_GPL(wakeup_source_prepare); |
| 76 | |
| 77 | /** |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 78 | * wakeup_source_create - Create a struct wakeup_source object. |
| 79 | * @name: Name of the new wakeup source. |
| 80 | */ |
| 81 | struct wakeup_source *wakeup_source_create(const char *name) |
| 82 | { |
| 83 | struct wakeup_source *ws; |
| 84 | |
Rafael J. Wysocki | 8671bbc | 2012-02-21 23:47:56 +0100 | [diff] [blame] | 85 | ws = kmalloc(sizeof(*ws), GFP_KERNEL); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 86 | if (!ws) |
| 87 | return NULL; |
| 88 | |
Rafael J. Wysocki | 8671bbc | 2012-02-21 23:47:56 +0100 | [diff] [blame] | 89 | wakeup_source_prepare(ws, name ? kstrdup(name, GFP_KERNEL) : NULL); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 90 | return ws; |
| 91 | } |
| 92 | EXPORT_SYMBOL_GPL(wakeup_source_create); |
| 93 | |
| 94 | /** |
Rafael J. Wysocki | 8671bbc | 2012-02-21 23:47:56 +0100 | [diff] [blame] | 95 | * wakeup_source_drop - Prepare a struct wakeup_source object for destruction. |
| 96 | * @ws: Wakeup source to prepare for destruction. |
Rafael J. Wysocki | d94aff8 | 2012-02-17 23:39:20 +0100 | [diff] [blame] | 97 | * |
| 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. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 100 | */ |
Rafael J. Wysocki | 8671bbc | 2012-02-21 23:47:56 +0100 | [diff] [blame] | 101 | void wakeup_source_drop(struct wakeup_source *ws) |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 102 | { |
| 103 | if (!ws) |
| 104 | return; |
| 105 | |
Rafael J. Wysocki | d94aff8 | 2012-02-17 23:39:20 +0100 | [diff] [blame] | 106 | del_timer_sync(&ws->timer); |
| 107 | __pm_relax(ws); |
Rafael J. Wysocki | 8671bbc | 2012-02-21 23:47:56 +0100 | [diff] [blame] | 108 | } |
| 109 | EXPORT_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 | */ |
| 117 | void wakeup_source_destroy(struct wakeup_source *ws) |
| 118 | { |
| 119 | if (!ws) |
| 120 | return; |
| 121 | |
| 122 | wakeup_source_drop(ws); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 123 | kfree(ws->name); |
| 124 | kfree(ws); |
| 125 | } |
| 126 | EXPORT_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 | */ |
| 132 | void wakeup_source_add(struct wakeup_source *ws) |
| 133 | { |
John Stultz | 4955070 | 2012-09-06 23:19:06 +0200 | [diff] [blame] | 134 | unsigned long flags; |
| 135 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 136 | if (WARN_ON(!ws)) |
| 137 | return; |
| 138 | |
Rafael J. Wysocki | 7c95149 | 2012-02-11 00:00:11 +0100 | [diff] [blame] | 139 | spin_lock_init(&ws->lock); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 140 | setup_timer(&ws->timer, pm_wakeup_timer_fn, (unsigned long)ws); |
| 141 | ws->active = false; |
Rafael J. Wysocki | b86ff982 | 2012-04-29 22:53:42 +0200 | [diff] [blame] | 142 | ws->last_time = ktime_get(); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 143 | |
John Stultz | 4955070 | 2012-09-06 23:19:06 +0200 | [diff] [blame] | 144 | spin_lock_irqsave(&events_lock, flags); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 145 | list_add_rcu(&ws->entry, &wakeup_sources); |
John Stultz | 4955070 | 2012-09-06 23:19:06 +0200 | [diff] [blame] | 146 | spin_unlock_irqrestore(&events_lock, flags); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 147 | } |
| 148 | EXPORT_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 | */ |
| 154 | void wakeup_source_remove(struct wakeup_source *ws) |
| 155 | { |
John Stultz | 4955070 | 2012-09-06 23:19:06 +0200 | [diff] [blame] | 156 | unsigned long flags; |
| 157 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 158 | if (WARN_ON(!ws)) |
| 159 | return; |
| 160 | |
John Stultz | 4955070 | 2012-09-06 23:19:06 +0200 | [diff] [blame] | 161 | spin_lock_irqsave(&events_lock, flags); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 162 | list_del_rcu(&ws->entry); |
John Stultz | 4955070 | 2012-09-06 23:19:06 +0200 | [diff] [blame] | 163 | spin_unlock_irqrestore(&events_lock, flags); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 164 | synchronize_rcu(); |
| 165 | } |
| 166 | EXPORT_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 | */ |
| 172 | struct 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 | } |
| 182 | EXPORT_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 | */ |
| 188 | void wakeup_source_unregister(struct wakeup_source *ws) |
| 189 | { |
Rafael J. Wysocki | 8671bbc | 2012-02-21 23:47:56 +0100 | [diff] [blame] | 190 | if (ws) { |
| 191 | wakeup_source_remove(ws); |
| 192 | wakeup_source_destroy(ws); |
| 193 | } |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 194 | } |
| 195 | EXPORT_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 | */ |
| 204 | static 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 | */ |
| 222 | int 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 | } |
| 240 | EXPORT_SYMBOL_GPL(device_wakeup_enable); |
| 241 | |
| 242 | /** |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 243 | * 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. Wysocki | 6d3dab7 | 2015-07-07 13:08:39 +0200 | [diff] [blame^] | 250 | * |
| 251 | * Call under the device's power.lock lock. |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 252 | */ |
| 253 | int device_wakeup_attach_irq(struct device *dev, |
| 254 | struct wake_irq *wakeirq) |
| 255 | { |
| 256 | struct wakeup_source *ws; |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 257 | |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 258 | ws = dev->power.wakeup; |
| 259 | if (!ws) { |
| 260 | dev_err(dev, "forgot to call call device_init_wakeup?\n"); |
Rafael J. Wysocki | 6d3dab7 | 2015-07-07 13:08:39 +0200 | [diff] [blame^] | 261 | return -EINVAL; |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 262 | } |
| 263 | |
Rafael J. Wysocki | 6d3dab7 | 2015-07-07 13:08:39 +0200 | [diff] [blame^] | 264 | if (ws->wakeirq) |
| 265 | return -EEXIST; |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 266 | |
| 267 | ws->wakeirq = wakeirq; |
Rafael J. Wysocki | 6d3dab7 | 2015-07-07 13:08:39 +0200 | [diff] [blame^] | 268 | return 0; |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 269 | } |
| 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. Wysocki | 6d3dab7 | 2015-07-07 13:08:39 +0200 | [diff] [blame^] | 276 | * |
| 277 | * Call under the device's power.lock lock. |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 278 | */ |
| 279 | void device_wakeup_detach_irq(struct device *dev) |
| 280 | { |
| 281 | struct wakeup_source *ws; |
| 282 | |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 283 | ws = dev->power.wakeup; |
Rafael J. Wysocki | 6d3dab7 | 2015-07-07 13:08:39 +0200 | [diff] [blame^] | 284 | if (ws) |
| 285 | ws->wakeirq = NULL; |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | /** |
| 289 | * device_wakeup_arm_wake_irqs(void) |
| 290 | * |
| 291 | * Itereates over the list of device wakeirqs to arm them. |
| 292 | */ |
| 293 | void 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 | */ |
| 310 | void 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. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 323 | * 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 | */ |
| 328 | static 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 | */ |
| 346 | int 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 | } |
| 359 | EXPORT_SYMBOL_GPL(device_wakeup_disable); |
| 360 | |
| 361 | /** |
Rafael J. Wysocki | cb8f51b | 2011-02-08 23:26:02 +0100 | [diff] [blame] | 362 | * 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 | */ |
| 373 | void device_set_wakeup_capable(struct device *dev, bool capable) |
| 374 | { |
| 375 | if (!!dev->power.can_wakeup == !!capable) |
| 376 | return; |
| 377 | |
Rafael J. Wysocki | 22110fa | 2011-04-26 11:33:09 +0200 | [diff] [blame] | 378 | if (device_is_registered(dev) && !list_empty(&dev->power.entry)) { |
Rafael J. Wysocki | cb8f51b | 2011-02-08 23:26:02 +0100 | [diff] [blame] | 379 | 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 | } |
| 388 | EXPORT_SYMBOL_GPL(device_set_wakeup_capable); |
| 389 | |
| 390 | /** |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 391 | * 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 Stern | 8f88893 | 2011-09-26 17:38:50 +0200 | [diff] [blame] | 397 | * 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. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 400 | */ |
| 401 | int device_init_wakeup(struct device *dev, bool enable) |
| 402 | { |
| 403 | int ret = 0; |
| 404 | |
Zhang Rui | 0c5ff0e | 2014-05-28 15:23:35 +0800 | [diff] [blame] | 405 | if (!dev) |
| 406 | return -EINVAL; |
| 407 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 408 | if (enable) { |
| 409 | device_set_wakeup_capable(dev, true); |
| 410 | ret = device_wakeup_enable(dev); |
| 411 | } else { |
Zhang Rui | 0c5ff0e | 2014-05-28 15:23:35 +0800 | [diff] [blame] | 412 | if (dev->power.can_wakeup) |
| 413 | device_wakeup_disable(dev); |
| 414 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 415 | device_set_wakeup_capable(dev, false); |
| 416 | } |
| 417 | |
| 418 | return ret; |
| 419 | } |
| 420 | EXPORT_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 | */ |
| 426 | int 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 | } |
| 433 | EXPORT_SYMBOL_GPL(device_set_wakeup_enable); |
Rafael J. Wysocki | 4eb241e | 2010-07-07 23:43:51 +0200 | [diff] [blame] | 434 | |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 435 | /* |
| 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. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 457 | * |
| 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. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 461 | */ |
| 462 | |
| 463 | /** |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 464 | * 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 | */ |
| 471 | static void wakeup_source_activate(struct wakeup_source *ws) |
| 472 | { |
Arve Hjønnevåg | 6791e36 | 2012-04-29 22:53:02 +0200 | [diff] [blame] | 473 | unsigned int cec; |
| 474 | |
Zhang Rui | 7e73c5a | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 475 | /* |
| 476 | * active wakeup source should bring the system |
| 477 | * out of PM_SUSPEND_FREEZE state |
| 478 | */ |
| 479 | freeze_wake(); |
| 480 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 481 | ws->active = true; |
| 482 | ws->active_count++; |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 483 | ws->last_time = ktime_get(); |
Rafael J. Wysocki | 5585094 | 2012-04-29 22:53:32 +0200 | [diff] [blame] | 484 | if (ws->autosleep_enabled) |
| 485 | ws->start_prevent_time = ws->last_time; |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 486 | |
Rafael J. Wysocki | 023d377 | 2011-01-31 11:06:39 +0100 | [diff] [blame] | 487 | /* Increment the counter of events in progress. */ |
Arve Hjønnevåg | 6791e36 | 2012-04-29 22:53:02 +0200 | [diff] [blame] | 488 | cec = atomic_inc_return(&combined_event_count); |
| 489 | |
| 490 | trace_wakeup_source_activate(ws->name, cec); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | /** |
Rafael J. Wysocki | 30e3ce6 | 2012-04-29 22:52:52 +0200 | [diff] [blame] | 494 | * wakeup_source_report_event - Report wakeup event using the given source. |
| 495 | * @ws: Wakeup source to report the event for. |
| 496 | */ |
| 497 | static 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. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 509 | * __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 | */ |
| 514 | void __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. Wysocki | 4782e16 | 2012-02-17 23:39:39 +0100 | [diff] [blame] | 522 | |
Rafael J. Wysocki | 30e3ce6 | 2012-04-29 22:52:52 +0200 | [diff] [blame] | 523 | wakeup_source_report_event(ws); |
Rafael J. Wysocki | 4782e16 | 2012-02-17 23:39:39 +0100 | [diff] [blame] | 524 | del_timer(&ws->timer); |
| 525 | ws->timer_expires = 0; |
| 526 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 527 | spin_unlock_irqrestore(&ws->lock, flags); |
| 528 | } |
| 529 | EXPORT_SYMBOL_GPL(__pm_stay_awake); |
| 530 | |
| 531 | /** |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 532 | * 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. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 535 | * 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. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 537 | * |
| 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. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 541 | */ |
| 542 | void pm_stay_awake(struct device *dev) |
| 543 | { |
| 544 | unsigned long flags; |
| 545 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 546 | if (!dev) |
| 547 | return; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 548 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 549 | spin_lock_irqsave(&dev->power.lock, flags); |
| 550 | __pm_stay_awake(dev->power.wakeup); |
| 551 | spin_unlock_irqrestore(&dev->power.lock, flags); |
| 552 | } |
| 553 | EXPORT_SYMBOL_GPL(pm_stay_awake); |
| 554 | |
Rafael J. Wysocki | 5585094 | 2012-04-29 22:53:32 +0200 | [diff] [blame] | 555 | #ifdef CONFIG_PM_AUTOSLEEP |
| 556 | static 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 |
| 562 | static inline void update_prevent_sleep_time(struct wakeup_source *ws, |
| 563 | ktime_t now) {} |
| 564 | #endif |
| 565 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 566 | /** |
| 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 | */ |
| 574 | static void wakeup_source_deactivate(struct wakeup_source *ws) |
| 575 | { |
Arve Hjønnevåg | 6791e36 | 2012-04-29 22:53:02 +0200 | [diff] [blame] | 576 | unsigned int cnt, inpr, cec; |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 577 | 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. Wysocki | 30e3ce6 | 2012-04-29 22:52:52 +0200 | [diff] [blame] | 603 | ws->last_time = now; |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 604 | del_timer(&ws->timer); |
Rafael J. Wysocki | da863cd | 2012-02-17 23:39:33 +0100 | [diff] [blame] | 605 | ws->timer_expires = 0; |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 606 | |
Rafael J. Wysocki | 5585094 | 2012-04-29 22:53:32 +0200 | [diff] [blame] | 607 | if (ws->autosleep_enabled) |
| 608 | update_prevent_sleep_time(ws, now); |
| 609 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 610 | /* |
Rafael J. Wysocki | 023d377 | 2011-01-31 11:06:39 +0100 | [diff] [blame] | 611 | * Increment the counter of registered wakeup events and decrement the |
| 612 | * couter of wakeup events in progress simultaneously. |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 613 | */ |
Arve Hjønnevåg | 6791e36 | 2012-04-29 22:53:02 +0200 | [diff] [blame] | 614 | cec = atomic_add_return(MAX_IN_PROGRESS, &combined_event_count); |
| 615 | trace_wakeup_source_deactivate(ws->name, cec); |
Rafael J. Wysocki | 60af106 | 2012-04-29 22:52:34 +0200 | [diff] [blame] | 616 | |
| 617 | split_counters(&cnt, &inpr); |
| 618 | if (!inpr && waitqueue_active(&wakeup_count_wait_queue)) |
| 619 | wake_up(&wakeup_count_wait_queue); |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | /** |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 623 | * __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. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 625 | * |
| 626 | * Call this function for wakeup events whose processing started with calling |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 627 | * __pm_stay_awake(). |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 628 | * |
| 629 | * It is safe to call it from interrupt context. |
| 630 | */ |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 631 | void __pm_relax(struct wakeup_source *ws) |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 632 | { |
| 633 | unsigned long flags; |
| 634 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 635 | 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. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 642 | } |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 643 | EXPORT_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 | */ |
| 651 | void 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 | } |
| 662 | EXPORT_SYMBOL_GPL(pm_relax); |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 663 | |
| 664 | /** |
Rafael J. Wysocki | 4eb241e | 2010-07-07 23:43:51 +0200 | [diff] [blame] | 665 | * pm_wakeup_timer_fn - Delayed finalization of a wakeup event. |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 666 | * @data: Address of the wakeup source object associated with the event source. |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 667 | * |
Rafael J. Wysocki | da863cd | 2012-02-17 23:39:33 +0100 | [diff] [blame] | 668 | * 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. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 671 | */ |
Rafael J. Wysocki | 4eb241e | 2010-07-07 23:43:51 +0200 | [diff] [blame] | 672 | static void pm_wakeup_timer_fn(unsigned long data) |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 673 | { |
Rafael J. Wysocki | da863cd | 2012-02-17 23:39:33 +0100 | [diff] [blame] | 674 | 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. Wysocki | 30e3ce6 | 2012-04-29 22:52:52 +0200 | [diff] [blame] | 680 | && time_after_eq(jiffies, ws->timer_expires)) { |
Rafael J. Wysocki | da863cd | 2012-02-17 23:39:33 +0100 | [diff] [blame] | 681 | wakeup_source_deactivate(ws); |
Rafael J. Wysocki | 30e3ce6 | 2012-04-29 22:52:52 +0200 | [diff] [blame] | 682 | ws->expire_count++; |
| 683 | } |
Rafael J. Wysocki | da863cd | 2012-02-17 23:39:33 +0100 | [diff] [blame] | 684 | |
| 685 | spin_unlock_irqrestore(&ws->lock, flags); |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | /** |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 689 | * __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 | */ |
| 700 | void __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. Wysocki | 30e3ce6 | 2012-04-29 22:52:52 +0200 | [diff] [blame] | 710 | wakeup_source_report_event(ws); |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 711 | |
| 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. Wysocki | 4782e16 | 2012-02-17 23:39:39 +0100 | [diff] [blame] | 721 | if (!ws->timer_expires || time_after(expires, ws->timer_expires)) { |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 722 | mod_timer(&ws->timer, expires); |
| 723 | ws->timer_expires = expires; |
| 724 | } |
| 725 | |
| 726 | unlock: |
| 727 | spin_unlock_irqrestore(&ws->lock, flags); |
| 728 | } |
| 729 | EXPORT_SYMBOL_GPL(__pm_wakeup_event); |
| 730 | |
| 731 | |
| 732 | /** |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 733 | * 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. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 737 | * Call __pm_wakeup_event() for the @dev's wakeup source object. |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 738 | */ |
| 739 | void pm_wakeup_event(struct device *dev, unsigned int msec) |
| 740 | { |
| 741 | unsigned long flags; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 742 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 743 | if (!dev) |
| 744 | return; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 745 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 746 | spin_lock_irqsave(&dev->power.lock, flags); |
| 747 | __pm_wakeup_event(dev->power.wakeup, msec); |
| 748 | spin_unlock_irqrestore(&dev->power.lock, flags); |
| 749 | } |
| 750 | EXPORT_SYMBOL_GPL(pm_wakeup_event); |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 751 | |
Julius Werner | bb177fe | 2013-06-12 12:55:22 -0700 | [diff] [blame] | 752 | void pm_print_active_wakeup_sources(void) |
Todd Poynor | a938da0 | 2012-08-12 00:17:02 +0200 | [diff] [blame] | 753 | { |
| 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 Werner | bb177fe | 2013-06-12 12:55:22 -0700 | [diff] [blame] | 776 | EXPORT_SYMBOL_GPL(pm_print_active_wakeup_sources); |
Todd Poynor | a938da0 | 2012-08-12 00:17:02 +0200 | [diff] [blame] | 777 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 778 | /** |
Rafael J. Wysocki | a2867e0 | 2010-12-03 22:58:31 +0100 | [diff] [blame] | 779 | * pm_wakeup_pending - Check if power transition in progress should be aborted. |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 780 | * |
| 781 | * Compare the current number of registered wakeup events with its preserved |
Rafael J. Wysocki | a2867e0 | 2010-12-03 22:58:31 +0100 | [diff] [blame] | 782 | * 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. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 785 | */ |
Rafael J. Wysocki | a2867e0 | 2010-12-03 22:58:31 +0100 | [diff] [blame] | 786 | bool pm_wakeup_pending(void) |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 787 | { |
| 788 | unsigned long flags; |
Rafael J. Wysocki | a2867e0 | 2010-12-03 22:58:31 +0100 | [diff] [blame] | 789 | bool ret = false; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 790 | |
| 791 | spin_lock_irqsave(&events_lock, flags); |
| 792 | if (events_check_enabled) { |
Rafael J. Wysocki | 023d377 | 2011-01-31 11:06:39 +0100 | [diff] [blame] | 793 | unsigned int cnt, inpr; |
| 794 | |
| 795 | split_counters(&cnt, &inpr); |
| 796 | ret = (cnt != saved_count || inpr > 0); |
Rafael J. Wysocki | a2867e0 | 2010-12-03 22:58:31 +0100 | [diff] [blame] | 797 | events_check_enabled = !ret; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 798 | } |
| 799 | spin_unlock_irqrestore(&events_lock, flags); |
Todd Poynor | a938da0 | 2012-08-12 00:17:02 +0200 | [diff] [blame] | 800 | |
Bernie Thompson | 9350de06 | 2013-06-01 00:47:43 +0000 | [diff] [blame] | 801 | if (ret) { |
| 802 | pr_info("PM: Wakeup pending, aborting suspend\n"); |
Julius Werner | bb177fe | 2013-06-12 12:55:22 -0700 | [diff] [blame] | 803 | pm_print_active_wakeup_sources(); |
Bernie Thompson | 9350de06 | 2013-06-01 00:47:43 +0000 | [diff] [blame] | 804 | } |
Todd Poynor | a938da0 | 2012-08-12 00:17:02 +0200 | [diff] [blame] | 805 | |
Rafael J. Wysocki | 068765b | 2014-09-01 13:47:49 +0200 | [diff] [blame] | 806 | return ret || pm_abort_suspend; |
| 807 | } |
| 808 | |
| 809 | void pm_system_wakeup(void) |
| 810 | { |
| 811 | pm_abort_suspend = true; |
| 812 | freeze_wake(); |
| 813 | } |
Boris BREZILLON | 432ec92 | 2015-03-02 10:18:13 +0100 | [diff] [blame] | 814 | EXPORT_SYMBOL_GPL(pm_system_wakeup); |
Rafael J. Wysocki | 068765b | 2014-09-01 13:47:49 +0200 | [diff] [blame] | 815 | |
| 816 | void pm_wakeup_clear(void) |
| 817 | { |
| 818 | pm_abort_suspend = false; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 819 | } |
| 820 | |
| 821 | /** |
| 822 | * pm_get_wakeup_count - Read the number of registered wakeup events. |
| 823 | * @count: Address to store the value at. |
Rafael J. Wysocki | 7483b4a | 2012-04-29 22:53:22 +0200 | [diff] [blame] | 824 | * @block: Whether or not to block. |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 825 | * |
Rafael J. Wysocki | 7483b4a | 2012-04-29 22:53:22 +0200 | [diff] [blame] | 826 | * 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. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 829 | * |
Rafael J. Wysocki | 7483b4a | 2012-04-29 22:53:22 +0200 | [diff] [blame] | 830 | * Return 'false' if the current number of wakeup events being processed is |
| 831 | * nonzero. Otherwise return 'true'. |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 832 | */ |
Rafael J. Wysocki | 7483b4a | 2012-04-29 22:53:22 +0200 | [diff] [blame] | 833 | bool pm_get_wakeup_count(unsigned int *count, bool block) |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 834 | { |
Rafael J. Wysocki | 023d377 | 2011-01-31 11:06:39 +0100 | [diff] [blame] | 835 | unsigned int cnt, inpr; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 836 | |
Rafael J. Wysocki | 7483b4a | 2012-04-29 22:53:22 +0200 | [diff] [blame] | 837 | if (block) { |
| 838 | DEFINE_WAIT(wait); |
Rafael J. Wysocki | 60af106 | 2012-04-29 22:52:34 +0200 | [diff] [blame] | 839 | |
Rafael J. Wysocki | 7483b4a | 2012-04-29 22:53:22 +0200 | [diff] [blame] | 840 | 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. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 850 | } |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 851 | |
Rafael J. Wysocki | 023d377 | 2011-01-31 11:06:39 +0100 | [diff] [blame] | 852 | split_counters(&cnt, &inpr); |
| 853 | *count = cnt; |
| 854 | return !inpr; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 855 | } |
| 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. Wysocki | 378eef9 | 2011-01-31 11:06:50 +0100 | [diff] [blame] | 863 | * 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. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 866 | */ |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 867 | bool pm_save_wakeup_count(unsigned int count) |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 868 | { |
Rafael J. Wysocki | 023d377 | 2011-01-31 11:06:39 +0100 | [diff] [blame] | 869 | unsigned int cnt, inpr; |
John Stultz | 4955070 | 2012-09-06 23:19:06 +0200 | [diff] [blame] | 870 | unsigned long flags; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 871 | |
Rafael J. Wysocki | 378eef9 | 2011-01-31 11:06:50 +0100 | [diff] [blame] | 872 | events_check_enabled = false; |
John Stultz | 4955070 | 2012-09-06 23:19:06 +0200 | [diff] [blame] | 873 | spin_lock_irqsave(&events_lock, flags); |
Rafael J. Wysocki | 023d377 | 2011-01-31 11:06:39 +0100 | [diff] [blame] | 874 | split_counters(&cnt, &inpr); |
| 875 | if (cnt == count && inpr == 0) { |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 876 | saved_count = count; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 877 | events_check_enabled = true; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 878 | } |
John Stultz | 4955070 | 2012-09-06 23:19:06 +0200 | [diff] [blame] | 879 | spin_unlock_irqrestore(&events_lock, flags); |
Rafael J. Wysocki | 378eef9 | 2011-01-31 11:06:50 +0100 | [diff] [blame] | 880 | return events_check_enabled; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 881 | } |
Rafael J. Wysocki | 9c03439 | 2010-10-19 23:42:49 +0200 | [diff] [blame] | 882 | |
Rafael J. Wysocki | 5585094 | 2012-04-29 22:53:32 +0200 | [diff] [blame] | 883 | #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 | */ |
| 888 | void 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. Wysocki | 9c03439 | 2010-10-19 23:42:49 +0200 | [diff] [blame] | 911 | static 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 | */ |
| 918 | static 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. Wysocki | 5585094 | 2012-04-29 22:53:32 +0200 | [diff] [blame] | 926 | ktime_t prevent_sleep_time; |
Rafael J. Wysocki | 9c03439 | 2010-10-19 23:42:49 +0200 | [diff] [blame] | 927 | |
| 928 | spin_lock_irqsave(&ws->lock, flags); |
| 929 | |
| 930 | total_time = ws->total_time; |
| 931 | max_time = ws->max_time; |
Rafael J. Wysocki | 5585094 | 2012-04-29 22:53:32 +0200 | [diff] [blame] | 932 | prevent_sleep_time = ws->prevent_sleep_time; |
Rafael J. Wysocki | 9c03439 | 2010-10-19 23:42:49 +0200 | [diff] [blame] | 933 | active_count = ws->active_count; |
| 934 | if (ws->active) { |
Rafael J. Wysocki | 5585094 | 2012-04-29 22:53:32 +0200 | [diff] [blame] | 935 | ktime_t now = ktime_get(); |
| 936 | |
| 937 | active_time = ktime_sub(now, ws->last_time); |
Rafael J. Wysocki | 9c03439 | 2010-10-19 23:42:49 +0200 | [diff] [blame] | 938 | total_time = ktime_add(total_time, active_time); |
| 939 | if (active_time.tv64 > max_time.tv64) |
| 940 | max_time = active_time; |
Rafael J. Wysocki | 5585094 | 2012-04-29 22:53:32 +0200 | [diff] [blame] | 941 | |
| 942 | if (ws->autosleep_enabled) |
| 943 | prevent_sleep_time = ktime_add(prevent_sleep_time, |
| 944 | ktime_sub(now, ws->start_prevent_time)); |
Rafael J. Wysocki | 9c03439 | 2010-10-19 23:42:49 +0200 | [diff] [blame] | 945 | } else { |
| 946 | active_time = ktime_set(0, 0); |
| 947 | } |
| 948 | |
Joe Perches | 9f6a240 | 2015-04-15 16:17:48 -0700 | [diff] [blame] | 949 | 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. Wysocki | 9c03439 | 2010-10-19 23:42:49 +0200 | [diff] [blame] | 955 | |
| 956 | spin_unlock_irqrestore(&ws->lock, flags); |
| 957 | |
Joe Perches | 9f6a240 | 2015-04-15 16:17:48 -0700 | [diff] [blame] | 958 | return 0; |
Rafael J. Wysocki | 9c03439 | 2010-10-19 23:42:49 +0200 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | /** |
| 962 | * wakeup_sources_stats_show - Print wakeup sources statistics information. |
| 963 | * @m: seq_file to print the statistics into. |
| 964 | */ |
| 965 | static int wakeup_sources_stats_show(struct seq_file *m, void *unused) |
| 966 | { |
| 967 | struct wakeup_source *ws; |
| 968 | |
Rafael J. Wysocki | 30e3ce6 | 2012-04-29 22:52:52 +0200 | [diff] [blame] | 969 | seq_puts(m, "name\t\tactive_count\tevent_count\twakeup_count\t" |
| 970 | "expire_count\tactive_since\ttotal_time\tmax_time\t" |
Rafael J. Wysocki | 5585094 | 2012-04-29 22:53:32 +0200 | [diff] [blame] | 971 | "last_change\tprevent_suspend_time\n"); |
Rafael J. Wysocki | 9c03439 | 2010-10-19 23:42:49 +0200 | [diff] [blame] | 972 | |
| 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 | |
| 981 | static int wakeup_sources_stats_open(struct inode *inode, struct file *file) |
| 982 | { |
| 983 | return single_open(file, wakeup_sources_stats_show, NULL); |
| 984 | } |
| 985 | |
| 986 | static 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 | |
| 994 | static 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 | |
| 1001 | postcore_initcall(wakeup_sources_debugfs_init); |