blob: 8fbd376471de05a42a8723f837e65c5a8068042c [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * drivers/base/power/runtime.c - Helper functions for device runtime PM
4 *
5 * Copyright (c) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
6 * Copyright (C) 2010 Alan Stern <stern@rowland.harvard.edu>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00008#include <linux/sched/mm.h>
David Brazdil0f672f62019-12-10 10:32:29 +00009#include <linux/ktime.h>
10#include <linux/hrtimer.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000011#include <linux/export.h>
12#include <linux/pm_runtime.h>
13#include <linux/pm_wakeirq.h>
14#include <trace/events/rpm.h>
15
16#include "../base.h"
17#include "power.h"
18
19typedef int (*pm_callback_t)(struct device *);
20
21static pm_callback_t __rpm_get_callback(struct device *dev, size_t cb_offset)
22{
23 pm_callback_t cb;
24 const struct dev_pm_ops *ops;
25
26 if (dev->pm_domain)
27 ops = &dev->pm_domain->ops;
28 else if (dev->type && dev->type->pm)
29 ops = dev->type->pm;
30 else if (dev->class && dev->class->pm)
31 ops = dev->class->pm;
32 else if (dev->bus && dev->bus->pm)
33 ops = dev->bus->pm;
34 else
35 ops = NULL;
36
37 if (ops)
38 cb = *(pm_callback_t *)((void *)ops + cb_offset);
39 else
40 cb = NULL;
41
42 if (!cb && dev->driver && dev->driver->pm)
43 cb = *(pm_callback_t *)((void *)dev->driver->pm + cb_offset);
44
45 return cb;
46}
47
48#define RPM_GET_CALLBACK(dev, callback) \
49 __rpm_get_callback(dev, offsetof(struct dev_pm_ops, callback))
50
51static int rpm_resume(struct device *dev, int rpmflags);
52static int rpm_suspend(struct device *dev, int rpmflags);
53
54/**
55 * update_pm_runtime_accounting - Update the time accounting of power states
56 * @dev: Device to update the accounting for
57 *
58 * In order to be able to have time accounting of the various power states
59 * (as used by programs such as PowerTOP to show the effectiveness of runtime
60 * PM), we need to track the time spent in each state.
61 * update_pm_runtime_accounting must be called each time before the
62 * runtime_status field is updated, to account the time in the old state
63 * correctly.
64 */
David Brazdil0f672f62019-12-10 10:32:29 +000065static void update_pm_runtime_accounting(struct device *dev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000066{
David Brazdil0f672f62019-12-10 10:32:29 +000067 u64 now, last, delta;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000068
69 if (dev->power.disable_depth > 0)
70 return;
71
David Brazdil0f672f62019-12-10 10:32:29 +000072 last = dev->power.accounting_timestamp;
73
74 now = ktime_get_mono_fast_ns();
75 dev->power.accounting_timestamp = now;
76
77 /*
78 * Because ktime_get_mono_fast_ns() is not monotonic during
79 * timekeeping updates, ensure that 'now' is after the last saved
80 * timesptamp.
81 */
82 if (now < last)
83 return;
84
85 delta = now - last;
86
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000087 if (dev->power.runtime_status == RPM_SUSPENDED)
David Brazdil0f672f62019-12-10 10:32:29 +000088 dev->power.suspended_time += delta;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000089 else
David Brazdil0f672f62019-12-10 10:32:29 +000090 dev->power.active_time += delta;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000091}
92
93static void __update_runtime_status(struct device *dev, enum rpm_status status)
94{
95 update_pm_runtime_accounting(dev);
96 dev->power.runtime_status = status;
97}
98
David Brazdil0f672f62019-12-10 10:32:29 +000099static u64 rpm_get_accounted_time(struct device *dev, bool suspended)
100{
101 u64 time;
102 unsigned long flags;
103
104 spin_lock_irqsave(&dev->power.lock, flags);
105
106 update_pm_runtime_accounting(dev);
107 time = suspended ? dev->power.suspended_time : dev->power.active_time;
108
109 spin_unlock_irqrestore(&dev->power.lock, flags);
110
111 return time;
112}
113
114u64 pm_runtime_active_time(struct device *dev)
115{
116 return rpm_get_accounted_time(dev, false);
117}
118
119u64 pm_runtime_suspended_time(struct device *dev)
120{
121 return rpm_get_accounted_time(dev, true);
122}
123EXPORT_SYMBOL_GPL(pm_runtime_suspended_time);
124
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000125/**
126 * pm_runtime_deactivate_timer - Deactivate given device's suspend timer.
127 * @dev: Device to handle.
128 */
129static void pm_runtime_deactivate_timer(struct device *dev)
130{
131 if (dev->power.timer_expires > 0) {
David Brazdil0f672f62019-12-10 10:32:29 +0000132 hrtimer_try_to_cancel(&dev->power.suspend_timer);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000133 dev->power.timer_expires = 0;
134 }
135}
136
137/**
138 * pm_runtime_cancel_pending - Deactivate suspend timer and cancel requests.
139 * @dev: Device to handle.
140 */
141static void pm_runtime_cancel_pending(struct device *dev)
142{
143 pm_runtime_deactivate_timer(dev);
144 /*
145 * In case there's a request pending, make sure its work function will
146 * return without doing anything.
147 */
148 dev->power.request = RPM_REQ_NONE;
149}
150
151/*
152 * pm_runtime_autosuspend_expiration - Get a device's autosuspend-delay expiration time.
153 * @dev: Device to handle.
154 *
155 * Compute the autosuspend-delay expiration time based on the device's
156 * power.last_busy time. If the delay has already expired or is disabled
157 * (negative) or the power.use_autosuspend flag isn't set, return 0.
David Brazdil0f672f62019-12-10 10:32:29 +0000158 * Otherwise return the expiration time in nanoseconds (adjusted to be nonzero).
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000159 *
160 * This function may be called either with or without dev->power.lock held.
161 * Either way it can be racy, since power.last_busy may be updated at any time.
162 */
David Brazdil0f672f62019-12-10 10:32:29 +0000163u64 pm_runtime_autosuspend_expiration(struct device *dev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000164{
165 int autosuspend_delay;
David Brazdil0f672f62019-12-10 10:32:29 +0000166 u64 expires;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000167
168 if (!dev->power.use_autosuspend)
David Brazdil0f672f62019-12-10 10:32:29 +0000169 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000170
171 autosuspend_delay = READ_ONCE(dev->power.autosuspend_delay);
172 if (autosuspend_delay < 0)
David Brazdil0f672f62019-12-10 10:32:29 +0000173 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000174
David Brazdil0f672f62019-12-10 10:32:29 +0000175 expires = READ_ONCE(dev->power.last_busy);
176 expires += (u64)autosuspend_delay * NSEC_PER_MSEC;
177 if (expires > ktime_get_mono_fast_ns())
178 return expires; /* Expires in the future */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000179
David Brazdil0f672f62019-12-10 10:32:29 +0000180 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000181}
182EXPORT_SYMBOL_GPL(pm_runtime_autosuspend_expiration);
183
184static int dev_memalloc_noio(struct device *dev, void *data)
185{
186 return dev->power.memalloc_noio;
187}
188
189/*
190 * pm_runtime_set_memalloc_noio - Set a device's memalloc_noio flag.
191 * @dev: Device to handle.
192 * @enable: True for setting the flag and False for clearing the flag.
193 *
194 * Set the flag for all devices in the path from the device to the
195 * root device in the device tree if @enable is true, otherwise clear
196 * the flag for devices in the path whose siblings don't set the flag.
197 *
198 * The function should only be called by block device, or network
199 * device driver for solving the deadlock problem during runtime
200 * resume/suspend:
201 *
202 * If memory allocation with GFP_KERNEL is called inside runtime
203 * resume/suspend callback of any one of its ancestors(or the
204 * block device itself), the deadlock may be triggered inside the
205 * memory allocation since it might not complete until the block
206 * device becomes active and the involed page I/O finishes. The
207 * situation is pointed out first by Alan Stern. Network device
208 * are involved in iSCSI kind of situation.
209 *
210 * The lock of dev_hotplug_mutex is held in the function for handling
211 * hotplug race because pm_runtime_set_memalloc_noio() may be called
212 * in async probe().
213 *
214 * The function should be called between device_add() and device_del()
215 * on the affected device(block/network device).
216 */
217void pm_runtime_set_memalloc_noio(struct device *dev, bool enable)
218{
219 static DEFINE_MUTEX(dev_hotplug_mutex);
220
221 mutex_lock(&dev_hotplug_mutex);
222 for (;;) {
223 bool enabled;
224
225 /* hold power lock since bitfield is not SMP-safe. */
226 spin_lock_irq(&dev->power.lock);
227 enabled = dev->power.memalloc_noio;
228 dev->power.memalloc_noio = enable;
229 spin_unlock_irq(&dev->power.lock);
230
231 /*
232 * not need to enable ancestors any more if the device
233 * has been enabled.
234 */
235 if (enabled && enable)
236 break;
237
238 dev = dev->parent;
239
240 /*
241 * clear flag of the parent device only if all the
242 * children don't set the flag because ancestor's
243 * flag was set by any one of the descendants.
244 */
245 if (!dev || (!enable &&
246 device_for_each_child(dev, NULL,
247 dev_memalloc_noio)))
248 break;
249 }
250 mutex_unlock(&dev_hotplug_mutex);
251}
252EXPORT_SYMBOL_GPL(pm_runtime_set_memalloc_noio);
253
254/**
255 * rpm_check_suspend_allowed - Test whether a device may be suspended.
256 * @dev: Device to test.
257 */
258static int rpm_check_suspend_allowed(struct device *dev)
259{
260 int retval = 0;
261
262 if (dev->power.runtime_error)
263 retval = -EINVAL;
264 else if (dev->power.disable_depth > 0)
265 retval = -EACCES;
266 else if (atomic_read(&dev->power.usage_count) > 0)
267 retval = -EAGAIN;
268 else if (!dev->power.ignore_children &&
269 atomic_read(&dev->power.child_count))
270 retval = -EBUSY;
271
272 /* Pending resume requests take precedence over suspends. */
273 else if ((dev->power.deferred_resume
274 && dev->power.runtime_status == RPM_SUSPENDING)
275 || (dev->power.request_pending
276 && dev->power.request == RPM_REQ_RESUME))
277 retval = -EAGAIN;
David Brazdil0f672f62019-12-10 10:32:29 +0000278 else if (__dev_pm_qos_resume_latency(dev) == 0)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000279 retval = -EPERM;
280 else if (dev->power.runtime_status == RPM_SUSPENDED)
281 retval = 1;
282
283 return retval;
284}
285
286static int rpm_get_suppliers(struct device *dev)
287{
288 struct device_link *link;
289
David Brazdil0f672f62019-12-10 10:32:29 +0000290 list_for_each_entry_rcu(link, &dev->links.suppliers, c_node,
291 device_links_read_lock_held()) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000292 int retval;
293
Olivier Deprez0e641232021-09-23 10:07:05 +0200294 if (!(link->flags & DL_FLAG_PM_RUNTIME))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000295 continue;
296
297 retval = pm_runtime_get_sync(link->supplier);
298 /* Ignore suppliers with disabled runtime PM. */
299 if (retval < 0 && retval != -EACCES) {
300 pm_runtime_put_noidle(link->supplier);
301 return retval;
302 }
David Brazdil0f672f62019-12-10 10:32:29 +0000303 refcount_inc(&link->rpm_active);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000304 }
305 return 0;
306}
307
Olivier Deprez0e641232021-09-23 10:07:05 +0200308static void __rpm_put_suppliers(struct device *dev, bool try_to_suspend)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000309{
310 struct device_link *link;
311
David Brazdil0f672f62019-12-10 10:32:29 +0000312 list_for_each_entry_rcu(link, &dev->links.suppliers, c_node,
313 device_links_read_lock_held()) {
David Brazdil0f672f62019-12-10 10:32:29 +0000314
315 while (refcount_dec_not_one(&link->rpm_active))
Olivier Deprez0e641232021-09-23 10:07:05 +0200316 pm_runtime_put_noidle(link->supplier);
317
318 if (try_to_suspend)
319 pm_request_idle(link->supplier);
David Brazdil0f672f62019-12-10 10:32:29 +0000320 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000321}
322
Olivier Deprez0e641232021-09-23 10:07:05 +0200323static void rpm_put_suppliers(struct device *dev)
324{
325 __rpm_put_suppliers(dev, true);
326}
327
328static void rpm_suspend_suppliers(struct device *dev)
329{
330 struct device_link *link;
331 int idx = device_links_read_lock();
332
333 list_for_each_entry_rcu(link, &dev->links.suppliers, c_node,
334 device_links_read_lock_held())
335 pm_request_idle(link->supplier);
336
337 device_links_read_unlock(idx);
338}
339
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000340/**
341 * __rpm_callback - Run a given runtime PM callback for a given device.
342 * @cb: Runtime PM callback to run.
343 * @dev: Device to run the callback for.
344 */
345static int __rpm_callback(int (*cb)(struct device *), struct device *dev)
346 __releases(&dev->power.lock) __acquires(&dev->power.lock)
347{
348 int retval, idx;
349 bool use_links = dev->power.links_count > 0;
350
351 if (dev->power.irq_safe) {
352 spin_unlock(&dev->power.lock);
353 } else {
354 spin_unlock_irq(&dev->power.lock);
355
356 /*
357 * Resume suppliers if necessary.
358 *
359 * The device's runtime PM status cannot change until this
360 * routine returns, so it is safe to read the status outside of
361 * the lock.
362 */
363 if (use_links && dev->power.runtime_status == RPM_RESUMING) {
364 idx = device_links_read_lock();
365
366 retval = rpm_get_suppliers(dev);
Olivier Deprez0e641232021-09-23 10:07:05 +0200367 if (retval) {
368 rpm_put_suppliers(dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000369 goto fail;
Olivier Deprez0e641232021-09-23 10:07:05 +0200370 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000371
372 device_links_read_unlock(idx);
373 }
374 }
375
376 retval = cb(dev);
377
378 if (dev->power.irq_safe) {
379 spin_lock(&dev->power.lock);
380 } else {
381 /*
382 * If the device is suspending and the callback has returned
383 * success, drop the usage counters of the suppliers that have
384 * been reference counted on its resume.
385 *
386 * Do that if resume fails too.
387 */
388 if (use_links
389 && ((dev->power.runtime_status == RPM_SUSPENDING && !retval)
390 || (dev->power.runtime_status == RPM_RESUMING && retval))) {
391 idx = device_links_read_lock();
392
Olivier Deprez0e641232021-09-23 10:07:05 +0200393 __rpm_put_suppliers(dev, false);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000394
Olivier Deprez0e641232021-09-23 10:07:05 +0200395fail:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000396 device_links_read_unlock(idx);
397 }
398
399 spin_lock_irq(&dev->power.lock);
400 }
401
402 return retval;
403}
404
405/**
406 * rpm_idle - Notify device bus type if the device can be suspended.
407 * @dev: Device to notify the bus type about.
408 * @rpmflags: Flag bits.
409 *
410 * Check if the device's runtime PM status allows it to be suspended. If
411 * another idle notification has been started earlier, return immediately. If
412 * the RPM_ASYNC flag is set then queue an idle-notification request; otherwise
413 * run the ->runtime_idle() callback directly. If the ->runtime_idle callback
414 * doesn't exist or if it returns 0, call rpm_suspend with the RPM_AUTO flag.
415 *
416 * This function must be called under dev->power.lock with interrupts disabled.
417 */
418static int rpm_idle(struct device *dev, int rpmflags)
419{
420 int (*callback)(struct device *);
421 int retval;
422
423 trace_rpm_idle_rcuidle(dev, rpmflags);
424 retval = rpm_check_suspend_allowed(dev);
425 if (retval < 0)
426 ; /* Conditions are wrong. */
427
428 /* Idle notifications are allowed only in the RPM_ACTIVE state. */
429 else if (dev->power.runtime_status != RPM_ACTIVE)
430 retval = -EAGAIN;
431
432 /*
433 * Any pending request other than an idle notification takes
434 * precedence over us, except that the timer may be running.
435 */
436 else if (dev->power.request_pending &&
437 dev->power.request > RPM_REQ_IDLE)
438 retval = -EAGAIN;
439
440 /* Act as though RPM_NOWAIT is always set. */
441 else if (dev->power.idle_notification)
442 retval = -EINPROGRESS;
443 if (retval)
444 goto out;
445
446 /* Pending requests need to be canceled. */
447 dev->power.request = RPM_REQ_NONE;
448
449 if (dev->power.no_callbacks)
450 goto out;
451
452 /* Carry out an asynchronous or a synchronous idle notification. */
453 if (rpmflags & RPM_ASYNC) {
454 dev->power.request = RPM_REQ_IDLE;
455 if (!dev->power.request_pending) {
456 dev->power.request_pending = true;
457 queue_work(pm_wq, &dev->power.work);
458 }
459 trace_rpm_return_int_rcuidle(dev, _THIS_IP_, 0);
460 return 0;
461 }
462
463 dev->power.idle_notification = true;
464
465 callback = RPM_GET_CALLBACK(dev, runtime_idle);
466
467 if (callback)
468 retval = __rpm_callback(callback, dev);
469
470 dev->power.idle_notification = false;
471 wake_up_all(&dev->power.wait_queue);
472
473 out:
474 trace_rpm_return_int_rcuidle(dev, _THIS_IP_, retval);
475 return retval ? retval : rpm_suspend(dev, rpmflags | RPM_AUTO);
476}
477
478/**
479 * rpm_callback - Run a given runtime PM callback for a given device.
480 * @cb: Runtime PM callback to run.
481 * @dev: Device to run the callback for.
482 */
483static int rpm_callback(int (*cb)(struct device *), struct device *dev)
484{
485 int retval;
486
487 if (!cb)
488 return -ENOSYS;
489
490 if (dev->power.memalloc_noio) {
491 unsigned int noio_flag;
492
493 /*
494 * Deadlock might be caused if memory allocation with
495 * GFP_KERNEL happens inside runtime_suspend and
496 * runtime_resume callbacks of one block device's
497 * ancestor or the block device itself. Network
498 * device might be thought as part of iSCSI block
499 * device, so network device and its ancestor should
500 * be marked as memalloc_noio too.
501 */
502 noio_flag = memalloc_noio_save();
503 retval = __rpm_callback(cb, dev);
504 memalloc_noio_restore(noio_flag);
505 } else {
506 retval = __rpm_callback(cb, dev);
507 }
508
509 dev->power.runtime_error = retval;
510 return retval != -EACCES ? retval : -EIO;
511}
512
513/**
514 * rpm_suspend - Carry out runtime suspend of given device.
515 * @dev: Device to suspend.
516 * @rpmflags: Flag bits.
517 *
518 * Check if the device's runtime PM status allows it to be suspended.
519 * Cancel a pending idle notification, autosuspend or suspend. If
520 * another suspend has been started earlier, either return immediately
521 * or wait for it to finish, depending on the RPM_NOWAIT and RPM_ASYNC
522 * flags. If the RPM_ASYNC flag is set then queue a suspend request;
523 * otherwise run the ->runtime_suspend() callback directly. When
524 * ->runtime_suspend succeeded, if a deferred resume was requested while
525 * the callback was running then carry it out, otherwise send an idle
526 * notification for its parent (if the suspend succeeded and both
527 * ignore_children of parent->power and irq_safe of dev->power are not set).
528 * If ->runtime_suspend failed with -EAGAIN or -EBUSY, and if the RPM_AUTO
529 * flag is set and the next autosuspend-delay expiration time is in the
530 * future, schedule another autosuspend attempt.
531 *
532 * This function must be called under dev->power.lock with interrupts disabled.
533 */
534static int rpm_suspend(struct device *dev, int rpmflags)
535 __releases(&dev->power.lock) __acquires(&dev->power.lock)
536{
537 int (*callback)(struct device *);
538 struct device *parent = NULL;
539 int retval;
540
541 trace_rpm_suspend_rcuidle(dev, rpmflags);
542
543 repeat:
544 retval = rpm_check_suspend_allowed(dev);
545
546 if (retval < 0)
547 ; /* Conditions are wrong. */
548
549 /* Synchronous suspends are not allowed in the RPM_RESUMING state. */
550 else if (dev->power.runtime_status == RPM_RESUMING &&
551 !(rpmflags & RPM_ASYNC))
552 retval = -EAGAIN;
553 if (retval)
554 goto out;
555
556 /* If the autosuspend_delay time hasn't expired yet, reschedule. */
557 if ((rpmflags & RPM_AUTO)
558 && dev->power.runtime_status != RPM_SUSPENDING) {
David Brazdil0f672f62019-12-10 10:32:29 +0000559 u64 expires = pm_runtime_autosuspend_expiration(dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000560
561 if (expires != 0) {
562 /* Pending requests need to be canceled. */
563 dev->power.request = RPM_REQ_NONE;
564
565 /*
566 * Optimization: If the timer is already running and is
567 * set to expire at or before the autosuspend delay,
568 * avoid the overhead of resetting it. Just let it
569 * expire; pm_suspend_timer_fn() will take care of the
570 * rest.
571 */
David Brazdil0f672f62019-12-10 10:32:29 +0000572 if (!(dev->power.timer_expires &&
573 dev->power.timer_expires <= expires)) {
574 /*
575 * We add a slack of 25% to gather wakeups
576 * without sacrificing the granularity.
577 */
578 u64 slack = (u64)READ_ONCE(dev->power.autosuspend_delay) *
579 (NSEC_PER_MSEC >> 2);
580
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000581 dev->power.timer_expires = expires;
David Brazdil0f672f62019-12-10 10:32:29 +0000582 hrtimer_start_range_ns(&dev->power.suspend_timer,
583 ns_to_ktime(expires),
584 slack,
585 HRTIMER_MODE_ABS);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000586 }
587 dev->power.timer_autosuspends = 1;
588 goto out;
589 }
590 }
591
592 /* Other scheduled or pending requests need to be canceled. */
593 pm_runtime_cancel_pending(dev);
594
595 if (dev->power.runtime_status == RPM_SUSPENDING) {
596 DEFINE_WAIT(wait);
597
598 if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) {
599 retval = -EINPROGRESS;
600 goto out;
601 }
602
603 if (dev->power.irq_safe) {
604 spin_unlock(&dev->power.lock);
605
606 cpu_relax();
607
608 spin_lock(&dev->power.lock);
609 goto repeat;
610 }
611
612 /* Wait for the other suspend running in parallel with us. */
613 for (;;) {
614 prepare_to_wait(&dev->power.wait_queue, &wait,
615 TASK_UNINTERRUPTIBLE);
616 if (dev->power.runtime_status != RPM_SUSPENDING)
617 break;
618
619 spin_unlock_irq(&dev->power.lock);
620
621 schedule();
622
623 spin_lock_irq(&dev->power.lock);
624 }
625 finish_wait(&dev->power.wait_queue, &wait);
626 goto repeat;
627 }
628
629 if (dev->power.no_callbacks)
630 goto no_callback; /* Assume success. */
631
632 /* Carry out an asynchronous or a synchronous suspend. */
633 if (rpmflags & RPM_ASYNC) {
634 dev->power.request = (rpmflags & RPM_AUTO) ?
635 RPM_REQ_AUTOSUSPEND : RPM_REQ_SUSPEND;
636 if (!dev->power.request_pending) {
637 dev->power.request_pending = true;
638 queue_work(pm_wq, &dev->power.work);
639 }
640 goto out;
641 }
642
643 __update_runtime_status(dev, RPM_SUSPENDING);
644
645 callback = RPM_GET_CALLBACK(dev, runtime_suspend);
646
647 dev_pm_enable_wake_irq_check(dev, true);
648 retval = rpm_callback(callback, dev);
649 if (retval)
650 goto fail;
651
652 no_callback:
653 __update_runtime_status(dev, RPM_SUSPENDED);
654 pm_runtime_deactivate_timer(dev);
655
656 if (dev->parent) {
657 parent = dev->parent;
658 atomic_add_unless(&parent->power.child_count, -1, 0);
659 }
660 wake_up_all(&dev->power.wait_queue);
661
662 if (dev->power.deferred_resume) {
663 dev->power.deferred_resume = false;
664 rpm_resume(dev, 0);
665 retval = -EAGAIN;
666 goto out;
667 }
668
Olivier Deprez0e641232021-09-23 10:07:05 +0200669 if (dev->power.irq_safe)
670 goto out;
671
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000672 /* Maybe the parent is now able to suspend. */
Olivier Deprez0e641232021-09-23 10:07:05 +0200673 if (parent && !parent->power.ignore_children) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000674 spin_unlock(&dev->power.lock);
675
676 spin_lock(&parent->power.lock);
677 rpm_idle(parent, RPM_ASYNC);
678 spin_unlock(&parent->power.lock);
679
680 spin_lock(&dev->power.lock);
681 }
Olivier Deprez0e641232021-09-23 10:07:05 +0200682 /* Maybe the suppliers are now able to suspend. */
683 if (dev->power.links_count > 0) {
684 spin_unlock_irq(&dev->power.lock);
685
686 rpm_suspend_suppliers(dev);
687
688 spin_lock_irq(&dev->power.lock);
689 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000690
691 out:
692 trace_rpm_return_int_rcuidle(dev, _THIS_IP_, retval);
693
694 return retval;
695
696 fail:
697 dev_pm_disable_wake_irq_check(dev);
698 __update_runtime_status(dev, RPM_ACTIVE);
699 dev->power.deferred_resume = false;
700 wake_up_all(&dev->power.wait_queue);
701
702 if (retval == -EAGAIN || retval == -EBUSY) {
703 dev->power.runtime_error = 0;
704
705 /*
706 * If the callback routine failed an autosuspend, and
707 * if the last_busy time has been updated so that there
708 * is a new autosuspend expiration time, automatically
709 * reschedule another autosuspend.
710 */
711 if ((rpmflags & RPM_AUTO) &&
712 pm_runtime_autosuspend_expiration(dev) != 0)
713 goto repeat;
714 } else {
715 pm_runtime_cancel_pending(dev);
716 }
717 goto out;
718}
719
720/**
721 * rpm_resume - Carry out runtime resume of given device.
722 * @dev: Device to resume.
723 * @rpmflags: Flag bits.
724 *
725 * Check if the device's runtime PM status allows it to be resumed. Cancel
726 * any scheduled or pending requests. If another resume has been started
727 * earlier, either return immediately or wait for it to finish, depending on the
728 * RPM_NOWAIT and RPM_ASYNC flags. Similarly, if there's a suspend running in
729 * parallel with this function, either tell the other process to resume after
730 * suspending (deferred_resume) or wait for it to finish. If the RPM_ASYNC
731 * flag is set then queue a resume request; otherwise run the
732 * ->runtime_resume() callback directly. Queue an idle notification for the
733 * device if the resume succeeded.
734 *
735 * This function must be called under dev->power.lock with interrupts disabled.
736 */
737static int rpm_resume(struct device *dev, int rpmflags)
738 __releases(&dev->power.lock) __acquires(&dev->power.lock)
739{
740 int (*callback)(struct device *);
741 struct device *parent = NULL;
742 int retval = 0;
743
744 trace_rpm_resume_rcuidle(dev, rpmflags);
745
746 repeat:
747 if (dev->power.runtime_error)
748 retval = -EINVAL;
749 else if (dev->power.disable_depth == 1 && dev->power.is_suspended
750 && dev->power.runtime_status == RPM_ACTIVE)
751 retval = 1;
752 else if (dev->power.disable_depth > 0)
753 retval = -EACCES;
754 if (retval)
755 goto out;
756
757 /*
758 * Other scheduled or pending requests need to be canceled. Small
759 * optimization: If an autosuspend timer is running, leave it running
760 * rather than cancelling it now only to restart it again in the near
761 * future.
762 */
763 dev->power.request = RPM_REQ_NONE;
764 if (!dev->power.timer_autosuspends)
765 pm_runtime_deactivate_timer(dev);
766
767 if (dev->power.runtime_status == RPM_ACTIVE) {
768 retval = 1;
769 goto out;
770 }
771
772 if (dev->power.runtime_status == RPM_RESUMING
773 || dev->power.runtime_status == RPM_SUSPENDING) {
774 DEFINE_WAIT(wait);
775
776 if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) {
777 if (dev->power.runtime_status == RPM_SUSPENDING)
778 dev->power.deferred_resume = true;
779 else
780 retval = -EINPROGRESS;
781 goto out;
782 }
783
784 if (dev->power.irq_safe) {
785 spin_unlock(&dev->power.lock);
786
787 cpu_relax();
788
789 spin_lock(&dev->power.lock);
790 goto repeat;
791 }
792
793 /* Wait for the operation carried out in parallel with us. */
794 for (;;) {
795 prepare_to_wait(&dev->power.wait_queue, &wait,
796 TASK_UNINTERRUPTIBLE);
797 if (dev->power.runtime_status != RPM_RESUMING
798 && dev->power.runtime_status != RPM_SUSPENDING)
799 break;
800
801 spin_unlock_irq(&dev->power.lock);
802
803 schedule();
804
805 spin_lock_irq(&dev->power.lock);
806 }
807 finish_wait(&dev->power.wait_queue, &wait);
808 goto repeat;
809 }
810
811 /*
812 * See if we can skip waking up the parent. This is safe only if
813 * power.no_callbacks is set, because otherwise we don't know whether
814 * the resume will actually succeed.
815 */
816 if (dev->power.no_callbacks && !parent && dev->parent) {
817 spin_lock_nested(&dev->parent->power.lock, SINGLE_DEPTH_NESTING);
818 if (dev->parent->power.disable_depth > 0
819 || dev->parent->power.ignore_children
820 || dev->parent->power.runtime_status == RPM_ACTIVE) {
821 atomic_inc(&dev->parent->power.child_count);
822 spin_unlock(&dev->parent->power.lock);
823 retval = 1;
824 goto no_callback; /* Assume success. */
825 }
826 spin_unlock(&dev->parent->power.lock);
827 }
828
829 /* Carry out an asynchronous or a synchronous resume. */
830 if (rpmflags & RPM_ASYNC) {
831 dev->power.request = RPM_REQ_RESUME;
832 if (!dev->power.request_pending) {
833 dev->power.request_pending = true;
834 queue_work(pm_wq, &dev->power.work);
835 }
836 retval = 0;
837 goto out;
838 }
839
840 if (!parent && dev->parent) {
841 /*
842 * Increment the parent's usage counter and resume it if
843 * necessary. Not needed if dev is irq-safe; then the
844 * parent is permanently resumed.
845 */
846 parent = dev->parent;
847 if (dev->power.irq_safe)
848 goto skip_parent;
849 spin_unlock(&dev->power.lock);
850
851 pm_runtime_get_noresume(parent);
852
853 spin_lock(&parent->power.lock);
854 /*
855 * Resume the parent if it has runtime PM enabled and not been
856 * set to ignore its children.
857 */
858 if (!parent->power.disable_depth
859 && !parent->power.ignore_children) {
860 rpm_resume(parent, 0);
861 if (parent->power.runtime_status != RPM_ACTIVE)
862 retval = -EBUSY;
863 }
864 spin_unlock(&parent->power.lock);
865
866 spin_lock(&dev->power.lock);
867 if (retval)
868 goto out;
869 goto repeat;
870 }
871 skip_parent:
872
873 if (dev->power.no_callbacks)
874 goto no_callback; /* Assume success. */
875
876 __update_runtime_status(dev, RPM_RESUMING);
877
878 callback = RPM_GET_CALLBACK(dev, runtime_resume);
879
880 dev_pm_disable_wake_irq_check(dev);
881 retval = rpm_callback(callback, dev);
882 if (retval) {
883 __update_runtime_status(dev, RPM_SUSPENDED);
884 pm_runtime_cancel_pending(dev);
885 dev_pm_enable_wake_irq_check(dev, false);
886 } else {
887 no_callback:
888 __update_runtime_status(dev, RPM_ACTIVE);
889 pm_runtime_mark_last_busy(dev);
890 if (parent)
891 atomic_inc(&parent->power.child_count);
892 }
893 wake_up_all(&dev->power.wait_queue);
894
895 if (retval >= 0)
896 rpm_idle(dev, RPM_ASYNC);
897
898 out:
899 if (parent && !dev->power.irq_safe) {
900 spin_unlock_irq(&dev->power.lock);
901
902 pm_runtime_put(parent);
903
904 spin_lock_irq(&dev->power.lock);
905 }
906
907 trace_rpm_return_int_rcuidle(dev, _THIS_IP_, retval);
908
909 return retval;
910}
911
912/**
913 * pm_runtime_work - Universal runtime PM work function.
914 * @work: Work structure used for scheduling the execution of this function.
915 *
916 * Use @work to get the device object the work is to be done for, determine what
917 * is to be done and execute the appropriate runtime PM function.
918 */
919static void pm_runtime_work(struct work_struct *work)
920{
921 struct device *dev = container_of(work, struct device, power.work);
922 enum rpm_request req;
923
924 spin_lock_irq(&dev->power.lock);
925
926 if (!dev->power.request_pending)
927 goto out;
928
929 req = dev->power.request;
930 dev->power.request = RPM_REQ_NONE;
931 dev->power.request_pending = false;
932
933 switch (req) {
934 case RPM_REQ_NONE:
935 break;
936 case RPM_REQ_IDLE:
937 rpm_idle(dev, RPM_NOWAIT);
938 break;
939 case RPM_REQ_SUSPEND:
940 rpm_suspend(dev, RPM_NOWAIT);
941 break;
942 case RPM_REQ_AUTOSUSPEND:
943 rpm_suspend(dev, RPM_NOWAIT | RPM_AUTO);
944 break;
945 case RPM_REQ_RESUME:
946 rpm_resume(dev, RPM_NOWAIT);
947 break;
948 }
949
950 out:
951 spin_unlock_irq(&dev->power.lock);
952}
953
954/**
955 * pm_suspend_timer_fn - Timer function for pm_schedule_suspend().
956 * @data: Device pointer passed by pm_schedule_suspend().
957 *
958 * Check if the time is right and queue a suspend request.
959 */
David Brazdil0f672f62019-12-10 10:32:29 +0000960static enum hrtimer_restart pm_suspend_timer_fn(struct hrtimer *timer)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000961{
David Brazdil0f672f62019-12-10 10:32:29 +0000962 struct device *dev = container_of(timer, struct device, power.suspend_timer);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000963 unsigned long flags;
David Brazdil0f672f62019-12-10 10:32:29 +0000964 u64 expires;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000965
966 spin_lock_irqsave(&dev->power.lock, flags);
967
968 expires = dev->power.timer_expires;
David Brazdil0f672f62019-12-10 10:32:29 +0000969 /*
970 * If 'expires' is after the current time, we've been called
971 * too early.
972 */
973 if (expires > 0 && expires < ktime_get_mono_fast_ns()) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000974 dev->power.timer_expires = 0;
975 rpm_suspend(dev, dev->power.timer_autosuspends ?
976 (RPM_ASYNC | RPM_AUTO) : RPM_ASYNC);
977 }
978
979 spin_unlock_irqrestore(&dev->power.lock, flags);
David Brazdil0f672f62019-12-10 10:32:29 +0000980
981 return HRTIMER_NORESTART;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000982}
983
984/**
985 * pm_schedule_suspend - Set up a timer to submit a suspend request in future.
986 * @dev: Device to suspend.
987 * @delay: Time to wait before submitting a suspend request, in milliseconds.
988 */
989int pm_schedule_suspend(struct device *dev, unsigned int delay)
990{
991 unsigned long flags;
David Brazdil0f672f62019-12-10 10:32:29 +0000992 u64 expires;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000993 int retval;
994
995 spin_lock_irqsave(&dev->power.lock, flags);
996
997 if (!delay) {
998 retval = rpm_suspend(dev, RPM_ASYNC);
999 goto out;
1000 }
1001
1002 retval = rpm_check_suspend_allowed(dev);
1003 if (retval)
1004 goto out;
1005
1006 /* Other scheduled or pending requests need to be canceled. */
1007 pm_runtime_cancel_pending(dev);
1008
David Brazdil0f672f62019-12-10 10:32:29 +00001009 expires = ktime_get_mono_fast_ns() + (u64)delay * NSEC_PER_MSEC;
1010 dev->power.timer_expires = expires;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001011 dev->power.timer_autosuspends = 0;
David Brazdil0f672f62019-12-10 10:32:29 +00001012 hrtimer_start(&dev->power.suspend_timer, expires, HRTIMER_MODE_ABS);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001013
1014 out:
1015 spin_unlock_irqrestore(&dev->power.lock, flags);
1016
1017 return retval;
1018}
1019EXPORT_SYMBOL_GPL(pm_schedule_suspend);
1020
1021/**
1022 * __pm_runtime_idle - Entry point for runtime idle operations.
1023 * @dev: Device to send idle notification for.
1024 * @rpmflags: Flag bits.
1025 *
1026 * If the RPM_GET_PUT flag is set, decrement the device's usage count and
1027 * return immediately if it is larger than zero. Then carry out an idle
1028 * notification, either synchronous or asynchronous.
1029 *
1030 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
1031 * or if pm_runtime_irq_safe() has been called.
1032 */
1033int __pm_runtime_idle(struct device *dev, int rpmflags)
1034{
1035 unsigned long flags;
1036 int retval;
1037
1038 if (rpmflags & RPM_GET_PUT) {
1039 if (!atomic_dec_and_test(&dev->power.usage_count))
1040 return 0;
1041 }
1042
1043 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
1044
1045 spin_lock_irqsave(&dev->power.lock, flags);
1046 retval = rpm_idle(dev, rpmflags);
1047 spin_unlock_irqrestore(&dev->power.lock, flags);
1048
1049 return retval;
1050}
1051EXPORT_SYMBOL_GPL(__pm_runtime_idle);
1052
1053/**
1054 * __pm_runtime_suspend - Entry point for runtime put/suspend operations.
1055 * @dev: Device to suspend.
1056 * @rpmflags: Flag bits.
1057 *
1058 * If the RPM_GET_PUT flag is set, decrement the device's usage count and
1059 * return immediately if it is larger than zero. Then carry out a suspend,
1060 * either synchronous or asynchronous.
1061 *
1062 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
1063 * or if pm_runtime_irq_safe() has been called.
1064 */
1065int __pm_runtime_suspend(struct device *dev, int rpmflags)
1066{
1067 unsigned long flags;
1068 int retval;
1069
1070 if (rpmflags & RPM_GET_PUT) {
1071 if (!atomic_dec_and_test(&dev->power.usage_count))
1072 return 0;
1073 }
1074
1075 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
1076
1077 spin_lock_irqsave(&dev->power.lock, flags);
1078 retval = rpm_suspend(dev, rpmflags);
1079 spin_unlock_irqrestore(&dev->power.lock, flags);
1080
1081 return retval;
1082}
1083EXPORT_SYMBOL_GPL(__pm_runtime_suspend);
1084
1085/**
1086 * __pm_runtime_resume - Entry point for runtime resume operations.
1087 * @dev: Device to resume.
1088 * @rpmflags: Flag bits.
1089 *
1090 * If the RPM_GET_PUT flag is set, increment the device's usage count. Then
1091 * carry out a resume, either synchronous or asynchronous.
1092 *
1093 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
1094 * or if pm_runtime_irq_safe() has been called.
1095 */
1096int __pm_runtime_resume(struct device *dev, int rpmflags)
1097{
1098 unsigned long flags;
1099 int retval;
1100
1101 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe &&
1102 dev->power.runtime_status != RPM_ACTIVE);
1103
1104 if (rpmflags & RPM_GET_PUT)
1105 atomic_inc(&dev->power.usage_count);
1106
1107 spin_lock_irqsave(&dev->power.lock, flags);
1108 retval = rpm_resume(dev, rpmflags);
1109 spin_unlock_irqrestore(&dev->power.lock, flags);
1110
1111 return retval;
1112}
1113EXPORT_SYMBOL_GPL(__pm_runtime_resume);
1114
1115/**
1116 * pm_runtime_get_if_in_use - Conditionally bump up the device's usage counter.
1117 * @dev: Device to handle.
1118 *
1119 * Return -EINVAL if runtime PM is disabled for the device.
1120 *
1121 * If that's not the case and if the device's runtime PM status is RPM_ACTIVE
1122 * and the runtime PM usage counter is nonzero, increment the counter and
1123 * return 1. Otherwise return 0 without changing the counter.
1124 */
1125int pm_runtime_get_if_in_use(struct device *dev)
1126{
1127 unsigned long flags;
1128 int retval;
1129
1130 spin_lock_irqsave(&dev->power.lock, flags);
1131 retval = dev->power.disable_depth > 0 ? -EINVAL :
1132 dev->power.runtime_status == RPM_ACTIVE
1133 && atomic_inc_not_zero(&dev->power.usage_count);
1134 spin_unlock_irqrestore(&dev->power.lock, flags);
1135 return retval;
1136}
1137EXPORT_SYMBOL_GPL(pm_runtime_get_if_in_use);
1138
1139/**
1140 * __pm_runtime_set_status - Set runtime PM status of a device.
1141 * @dev: Device to handle.
1142 * @status: New runtime PM status of the device.
1143 *
1144 * If runtime PM of the device is disabled or its power.runtime_error field is
1145 * different from zero, the status may be changed either to RPM_ACTIVE, or to
1146 * RPM_SUSPENDED, as long as that reflects the actual state of the device.
1147 * However, if the device has a parent and the parent is not active, and the
1148 * parent's power.ignore_children flag is unset, the device's status cannot be
1149 * set to RPM_ACTIVE, so -EBUSY is returned in that case.
1150 *
1151 * If successful, __pm_runtime_set_status() clears the power.runtime_error field
1152 * and the device parent's counter of unsuspended children is modified to
1153 * reflect the new status. If the new status is RPM_SUSPENDED, an idle
1154 * notification request for the parent is submitted.
David Brazdil0f672f62019-12-10 10:32:29 +00001155 *
1156 * If @dev has any suppliers (as reflected by device links to them), and @status
1157 * is RPM_ACTIVE, they will be activated upfront and if the activation of one
1158 * of them fails, the status of @dev will be changed to RPM_SUSPENDED (instead
1159 * of the @status value) and the suppliers will be deacticated on exit. The
1160 * error returned by the failing supplier activation will be returned in that
1161 * case.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001162 */
1163int __pm_runtime_set_status(struct device *dev, unsigned int status)
1164{
1165 struct device *parent = dev->parent;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001166 bool notify_parent = false;
1167 int error = 0;
1168
1169 if (status != RPM_ACTIVE && status != RPM_SUSPENDED)
1170 return -EINVAL;
1171
David Brazdil0f672f62019-12-10 10:32:29 +00001172 spin_lock_irq(&dev->power.lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001173
David Brazdil0f672f62019-12-10 10:32:29 +00001174 /*
1175 * Prevent PM-runtime from being enabled for the device or return an
1176 * error if it is enabled already and working.
1177 */
1178 if (dev->power.runtime_error || dev->power.disable_depth)
1179 dev->power.disable_depth++;
1180 else
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001181 error = -EAGAIN;
David Brazdil0f672f62019-12-10 10:32:29 +00001182
1183 spin_unlock_irq(&dev->power.lock);
1184
1185 if (error)
1186 return error;
1187
1188 /*
1189 * If the new status is RPM_ACTIVE, the suppliers can be activated
1190 * upfront regardless of the current status, because next time
1191 * rpm_put_suppliers() runs, the rpm_active refcounts of the links
1192 * involved will be dropped down to one anyway.
1193 */
1194 if (status == RPM_ACTIVE) {
1195 int idx = device_links_read_lock();
1196
1197 error = rpm_get_suppliers(dev);
1198 if (error)
1199 status = RPM_SUSPENDED;
1200
1201 device_links_read_unlock(idx);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001202 }
1203
David Brazdil0f672f62019-12-10 10:32:29 +00001204 spin_lock_irq(&dev->power.lock);
1205
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001206 if (dev->power.runtime_status == status || !parent)
1207 goto out_set;
1208
1209 if (status == RPM_SUSPENDED) {
1210 atomic_add_unless(&parent->power.child_count, -1, 0);
1211 notify_parent = !parent->power.ignore_children;
1212 } else {
1213 spin_lock_nested(&parent->power.lock, SINGLE_DEPTH_NESTING);
1214
1215 /*
1216 * It is invalid to put an active child under a parent that is
1217 * not active, has runtime PM enabled and the
1218 * 'power.ignore_children' flag unset.
1219 */
1220 if (!parent->power.disable_depth
1221 && !parent->power.ignore_children
1222 && parent->power.runtime_status != RPM_ACTIVE) {
1223 dev_err(dev, "runtime PM trying to activate child device %s but parent (%s) is not active\n",
1224 dev_name(dev),
1225 dev_name(parent));
1226 error = -EBUSY;
1227 } else if (dev->power.runtime_status == RPM_SUSPENDED) {
1228 atomic_inc(&parent->power.child_count);
1229 }
1230
1231 spin_unlock(&parent->power.lock);
1232
David Brazdil0f672f62019-12-10 10:32:29 +00001233 if (error) {
1234 status = RPM_SUSPENDED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001235 goto out;
David Brazdil0f672f62019-12-10 10:32:29 +00001236 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001237 }
1238
1239 out_set:
1240 __update_runtime_status(dev, status);
David Brazdil0f672f62019-12-10 10:32:29 +00001241 if (!error)
1242 dev->power.runtime_error = 0;
1243
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001244 out:
David Brazdil0f672f62019-12-10 10:32:29 +00001245 spin_unlock_irq(&dev->power.lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001246
1247 if (notify_parent)
1248 pm_request_idle(parent);
1249
David Brazdil0f672f62019-12-10 10:32:29 +00001250 if (status == RPM_SUSPENDED) {
1251 int idx = device_links_read_lock();
1252
1253 rpm_put_suppliers(dev);
1254
1255 device_links_read_unlock(idx);
1256 }
1257
1258 pm_runtime_enable(dev);
1259
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001260 return error;
1261}
1262EXPORT_SYMBOL_GPL(__pm_runtime_set_status);
1263
1264/**
1265 * __pm_runtime_barrier - Cancel pending requests and wait for completions.
1266 * @dev: Device to handle.
1267 *
1268 * Flush all pending requests for the device from pm_wq and wait for all
1269 * runtime PM operations involving the device in progress to complete.
1270 *
1271 * Should be called under dev->power.lock with interrupts disabled.
1272 */
1273static void __pm_runtime_barrier(struct device *dev)
1274{
1275 pm_runtime_deactivate_timer(dev);
1276
1277 if (dev->power.request_pending) {
1278 dev->power.request = RPM_REQ_NONE;
1279 spin_unlock_irq(&dev->power.lock);
1280
1281 cancel_work_sync(&dev->power.work);
1282
1283 spin_lock_irq(&dev->power.lock);
1284 dev->power.request_pending = false;
1285 }
1286
1287 if (dev->power.runtime_status == RPM_SUSPENDING
1288 || dev->power.runtime_status == RPM_RESUMING
1289 || dev->power.idle_notification) {
1290 DEFINE_WAIT(wait);
1291
1292 /* Suspend, wake-up or idle notification in progress. */
1293 for (;;) {
1294 prepare_to_wait(&dev->power.wait_queue, &wait,
1295 TASK_UNINTERRUPTIBLE);
1296 if (dev->power.runtime_status != RPM_SUSPENDING
1297 && dev->power.runtime_status != RPM_RESUMING
1298 && !dev->power.idle_notification)
1299 break;
1300 spin_unlock_irq(&dev->power.lock);
1301
1302 schedule();
1303
1304 spin_lock_irq(&dev->power.lock);
1305 }
1306 finish_wait(&dev->power.wait_queue, &wait);
1307 }
1308}
1309
1310/**
1311 * pm_runtime_barrier - Flush pending requests and wait for completions.
1312 * @dev: Device to handle.
1313 *
1314 * Prevent the device from being suspended by incrementing its usage counter and
1315 * if there's a pending resume request for the device, wake the device up.
1316 * Next, make sure that all pending requests for the device have been flushed
1317 * from pm_wq and wait for all runtime PM operations involving the device in
1318 * progress to complete.
1319 *
1320 * Return value:
1321 * 1, if there was a resume request pending and the device had to be woken up,
1322 * 0, otherwise
1323 */
1324int pm_runtime_barrier(struct device *dev)
1325{
1326 int retval = 0;
1327
1328 pm_runtime_get_noresume(dev);
1329 spin_lock_irq(&dev->power.lock);
1330
1331 if (dev->power.request_pending
1332 && dev->power.request == RPM_REQ_RESUME) {
1333 rpm_resume(dev, 0);
1334 retval = 1;
1335 }
1336
1337 __pm_runtime_barrier(dev);
1338
1339 spin_unlock_irq(&dev->power.lock);
1340 pm_runtime_put_noidle(dev);
1341
1342 return retval;
1343}
1344EXPORT_SYMBOL_GPL(pm_runtime_barrier);
1345
1346/**
1347 * __pm_runtime_disable - Disable runtime PM of a device.
1348 * @dev: Device to handle.
1349 * @check_resume: If set, check if there's a resume request for the device.
1350 *
1351 * Increment power.disable_depth for the device and if it was zero previously,
1352 * cancel all pending runtime PM requests for the device and wait for all
1353 * operations in progress to complete. The device can be either active or
1354 * suspended after its runtime PM has been disabled.
1355 *
1356 * If @check_resume is set and there's a resume request pending when
1357 * __pm_runtime_disable() is called and power.disable_depth is zero, the
1358 * function will wake up the device before disabling its runtime PM.
1359 */
1360void __pm_runtime_disable(struct device *dev, bool check_resume)
1361{
1362 spin_lock_irq(&dev->power.lock);
1363
1364 if (dev->power.disable_depth > 0) {
1365 dev->power.disable_depth++;
1366 goto out;
1367 }
1368
1369 /*
1370 * Wake up the device if there's a resume request pending, because that
1371 * means there probably is some I/O to process and disabling runtime PM
1372 * shouldn't prevent the device from processing the I/O.
1373 */
1374 if (check_resume && dev->power.request_pending
1375 && dev->power.request == RPM_REQ_RESUME) {
1376 /*
1377 * Prevent suspends and idle notifications from being carried
1378 * out after we have woken up the device.
1379 */
1380 pm_runtime_get_noresume(dev);
1381
1382 rpm_resume(dev, 0);
1383
1384 pm_runtime_put_noidle(dev);
1385 }
1386
David Brazdil0f672f62019-12-10 10:32:29 +00001387 /* Update time accounting before disabling PM-runtime. */
1388 update_pm_runtime_accounting(dev);
1389
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001390 if (!dev->power.disable_depth++)
1391 __pm_runtime_barrier(dev);
1392
1393 out:
1394 spin_unlock_irq(&dev->power.lock);
1395}
1396EXPORT_SYMBOL_GPL(__pm_runtime_disable);
1397
1398/**
1399 * pm_runtime_enable - Enable runtime PM of a device.
1400 * @dev: Device to handle.
1401 */
1402void pm_runtime_enable(struct device *dev)
1403{
1404 unsigned long flags;
1405
1406 spin_lock_irqsave(&dev->power.lock, flags);
1407
David Brazdil0f672f62019-12-10 10:32:29 +00001408 if (dev->power.disable_depth > 0) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001409 dev->power.disable_depth--;
David Brazdil0f672f62019-12-10 10:32:29 +00001410
1411 /* About to enable runtime pm, set accounting_timestamp to now */
1412 if (!dev->power.disable_depth)
1413 dev->power.accounting_timestamp = ktime_get_mono_fast_ns();
1414 } else {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001415 dev_warn(dev, "Unbalanced %s!\n", __func__);
David Brazdil0f672f62019-12-10 10:32:29 +00001416 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001417
1418 WARN(!dev->power.disable_depth &&
1419 dev->power.runtime_status == RPM_SUSPENDED &&
1420 !dev->power.ignore_children &&
1421 atomic_read(&dev->power.child_count) > 0,
1422 "Enabling runtime PM for inactive device (%s) with active children\n",
1423 dev_name(dev));
1424
1425 spin_unlock_irqrestore(&dev->power.lock, flags);
1426}
1427EXPORT_SYMBOL_GPL(pm_runtime_enable);
1428
1429/**
1430 * pm_runtime_forbid - Block runtime PM of a device.
1431 * @dev: Device to handle.
1432 *
1433 * Increase the device's usage count and clear its power.runtime_auto flag,
1434 * so that it cannot be suspended at run time until pm_runtime_allow() is called
1435 * for it.
1436 */
1437void pm_runtime_forbid(struct device *dev)
1438{
1439 spin_lock_irq(&dev->power.lock);
1440 if (!dev->power.runtime_auto)
1441 goto out;
1442
1443 dev->power.runtime_auto = false;
1444 atomic_inc(&dev->power.usage_count);
1445 rpm_resume(dev, 0);
1446
1447 out:
1448 spin_unlock_irq(&dev->power.lock);
1449}
1450EXPORT_SYMBOL_GPL(pm_runtime_forbid);
1451
1452/**
1453 * pm_runtime_allow - Unblock runtime PM of a device.
1454 * @dev: Device to handle.
1455 *
1456 * Decrease the device's usage count and set its power.runtime_auto flag.
1457 */
1458void pm_runtime_allow(struct device *dev)
1459{
1460 spin_lock_irq(&dev->power.lock);
1461 if (dev->power.runtime_auto)
1462 goto out;
1463
1464 dev->power.runtime_auto = true;
1465 if (atomic_dec_and_test(&dev->power.usage_count))
1466 rpm_idle(dev, RPM_AUTO | RPM_ASYNC);
1467
1468 out:
1469 spin_unlock_irq(&dev->power.lock);
1470}
1471EXPORT_SYMBOL_GPL(pm_runtime_allow);
1472
1473/**
1474 * pm_runtime_no_callbacks - Ignore runtime PM callbacks for a device.
1475 * @dev: Device to handle.
1476 *
1477 * Set the power.no_callbacks flag, which tells the PM core that this
1478 * device is power-managed through its parent and has no runtime PM
1479 * callbacks of its own. The runtime sysfs attributes will be removed.
1480 */
1481void pm_runtime_no_callbacks(struct device *dev)
1482{
1483 spin_lock_irq(&dev->power.lock);
1484 dev->power.no_callbacks = 1;
1485 spin_unlock_irq(&dev->power.lock);
1486 if (device_is_registered(dev))
1487 rpm_sysfs_remove(dev);
1488}
1489EXPORT_SYMBOL_GPL(pm_runtime_no_callbacks);
1490
1491/**
1492 * pm_runtime_irq_safe - Leave interrupts disabled during callbacks.
1493 * @dev: Device to handle
1494 *
1495 * Set the power.irq_safe flag, which tells the PM core that the
1496 * ->runtime_suspend() and ->runtime_resume() callbacks for this device should
1497 * always be invoked with the spinlock held and interrupts disabled. It also
1498 * causes the parent's usage counter to be permanently incremented, preventing
1499 * the parent from runtime suspending -- otherwise an irq-safe child might have
1500 * to wait for a non-irq-safe parent.
1501 */
1502void pm_runtime_irq_safe(struct device *dev)
1503{
1504 if (dev->parent)
1505 pm_runtime_get_sync(dev->parent);
1506 spin_lock_irq(&dev->power.lock);
1507 dev->power.irq_safe = 1;
1508 spin_unlock_irq(&dev->power.lock);
1509}
1510EXPORT_SYMBOL_GPL(pm_runtime_irq_safe);
1511
1512/**
1513 * update_autosuspend - Handle a change to a device's autosuspend settings.
1514 * @dev: Device to handle.
1515 * @old_delay: The former autosuspend_delay value.
1516 * @old_use: The former use_autosuspend value.
1517 *
1518 * Prevent runtime suspend if the new delay is negative and use_autosuspend is
1519 * set; otherwise allow it. Send an idle notification if suspends are allowed.
1520 *
1521 * This function must be called under dev->power.lock with interrupts disabled.
1522 */
1523static void update_autosuspend(struct device *dev, int old_delay, int old_use)
1524{
1525 int delay = dev->power.autosuspend_delay;
1526
1527 /* Should runtime suspend be prevented now? */
1528 if (dev->power.use_autosuspend && delay < 0) {
1529
1530 /* If it used to be allowed then prevent it. */
1531 if (!old_use || old_delay >= 0) {
1532 atomic_inc(&dev->power.usage_count);
1533 rpm_resume(dev, 0);
1534 }
1535 }
1536
1537 /* Runtime suspend should be allowed now. */
1538 else {
1539
1540 /* If it used to be prevented then allow it. */
1541 if (old_use && old_delay < 0)
1542 atomic_dec(&dev->power.usage_count);
1543
1544 /* Maybe we can autosuspend now. */
1545 rpm_idle(dev, RPM_AUTO);
1546 }
1547}
1548
1549/**
1550 * pm_runtime_set_autosuspend_delay - Set a device's autosuspend_delay value.
1551 * @dev: Device to handle.
1552 * @delay: Value of the new delay in milliseconds.
1553 *
1554 * Set the device's power.autosuspend_delay value. If it changes to negative
1555 * and the power.use_autosuspend flag is set, prevent runtime suspends. If it
1556 * changes the other way, allow runtime suspends.
1557 */
1558void pm_runtime_set_autosuspend_delay(struct device *dev, int delay)
1559{
1560 int old_delay, old_use;
1561
1562 spin_lock_irq(&dev->power.lock);
1563 old_delay = dev->power.autosuspend_delay;
1564 old_use = dev->power.use_autosuspend;
1565 dev->power.autosuspend_delay = delay;
1566 update_autosuspend(dev, old_delay, old_use);
1567 spin_unlock_irq(&dev->power.lock);
1568}
1569EXPORT_SYMBOL_GPL(pm_runtime_set_autosuspend_delay);
1570
1571/**
1572 * __pm_runtime_use_autosuspend - Set a device's use_autosuspend flag.
1573 * @dev: Device to handle.
1574 * @use: New value for use_autosuspend.
1575 *
1576 * Set the device's power.use_autosuspend flag, and allow or prevent runtime
1577 * suspends as needed.
1578 */
1579void __pm_runtime_use_autosuspend(struct device *dev, bool use)
1580{
1581 int old_delay, old_use;
1582
1583 spin_lock_irq(&dev->power.lock);
1584 old_delay = dev->power.autosuspend_delay;
1585 old_use = dev->power.use_autosuspend;
1586 dev->power.use_autosuspend = use;
1587 update_autosuspend(dev, old_delay, old_use);
1588 spin_unlock_irq(&dev->power.lock);
1589}
1590EXPORT_SYMBOL_GPL(__pm_runtime_use_autosuspend);
1591
1592/**
1593 * pm_runtime_init - Initialize runtime PM fields in given device object.
1594 * @dev: Device object to initialize.
1595 */
1596void pm_runtime_init(struct device *dev)
1597{
1598 dev->power.runtime_status = RPM_SUSPENDED;
1599 dev->power.idle_notification = false;
1600
1601 dev->power.disable_depth = 1;
1602 atomic_set(&dev->power.usage_count, 0);
1603
1604 dev->power.runtime_error = 0;
1605
1606 atomic_set(&dev->power.child_count, 0);
1607 pm_suspend_ignore_children(dev, false);
1608 dev->power.runtime_auto = true;
1609
1610 dev->power.request_pending = false;
1611 dev->power.request = RPM_REQ_NONE;
1612 dev->power.deferred_resume = false;
Olivier Deprez0e641232021-09-23 10:07:05 +02001613 dev->power.needs_force_resume = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001614 INIT_WORK(&dev->power.work, pm_runtime_work);
1615
1616 dev->power.timer_expires = 0;
David Brazdil0f672f62019-12-10 10:32:29 +00001617 hrtimer_init(&dev->power.suspend_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
1618 dev->power.suspend_timer.function = pm_suspend_timer_fn;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001619
1620 init_waitqueue_head(&dev->power.wait_queue);
1621}
1622
1623/**
1624 * pm_runtime_reinit - Re-initialize runtime PM fields in given device object.
1625 * @dev: Device object to re-initialize.
1626 */
1627void pm_runtime_reinit(struct device *dev)
1628{
1629 if (!pm_runtime_enabled(dev)) {
1630 if (dev->power.runtime_status == RPM_ACTIVE)
1631 pm_runtime_set_suspended(dev);
1632 if (dev->power.irq_safe) {
1633 spin_lock_irq(&dev->power.lock);
1634 dev->power.irq_safe = 0;
1635 spin_unlock_irq(&dev->power.lock);
1636 if (dev->parent)
1637 pm_runtime_put(dev->parent);
1638 }
1639 }
1640}
1641
1642/**
1643 * pm_runtime_remove - Prepare for removing a device from device hierarchy.
1644 * @dev: Device object being removed from device hierarchy.
1645 */
1646void pm_runtime_remove(struct device *dev)
1647{
1648 __pm_runtime_disable(dev, false);
1649 pm_runtime_reinit(dev);
1650}
1651
1652/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001653 * pm_runtime_get_suppliers - Resume and reference-count supplier devices.
1654 * @dev: Consumer device.
1655 */
1656void pm_runtime_get_suppliers(struct device *dev)
1657{
1658 struct device_link *link;
1659 int idx;
1660
1661 idx = device_links_read_lock();
1662
David Brazdil0f672f62019-12-10 10:32:29 +00001663 list_for_each_entry_rcu(link, &dev->links.suppliers, c_node,
1664 device_links_read_lock_held())
1665 if (link->flags & DL_FLAG_PM_RUNTIME) {
1666 link->supplier_preactivated = true;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001667 pm_runtime_get_sync(link->supplier);
Olivier Deprez0e641232021-09-23 10:07:05 +02001668 refcount_inc(&link->rpm_active);
David Brazdil0f672f62019-12-10 10:32:29 +00001669 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001670
1671 device_links_read_unlock(idx);
1672}
1673
1674/**
1675 * pm_runtime_put_suppliers - Drop references to supplier devices.
1676 * @dev: Consumer device.
1677 */
1678void pm_runtime_put_suppliers(struct device *dev)
1679{
1680 struct device_link *link;
Olivier Deprez0e641232021-09-23 10:07:05 +02001681 unsigned long flags;
1682 bool put;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001683 int idx;
1684
1685 idx = device_links_read_lock();
1686
David Brazdil0f672f62019-12-10 10:32:29 +00001687 list_for_each_entry_rcu(link, &dev->links.suppliers, c_node,
1688 device_links_read_lock_held())
1689 if (link->supplier_preactivated) {
1690 link->supplier_preactivated = false;
Olivier Deprez0e641232021-09-23 10:07:05 +02001691 spin_lock_irqsave(&dev->power.lock, flags);
1692 put = pm_runtime_status_suspended(dev) &&
1693 refcount_dec_not_one(&link->rpm_active);
1694 spin_unlock_irqrestore(&dev->power.lock, flags);
1695 if (put)
David Brazdil0f672f62019-12-10 10:32:29 +00001696 pm_runtime_put(link->supplier);
1697 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001698
1699 device_links_read_unlock(idx);
1700}
1701
1702void pm_runtime_new_link(struct device *dev)
1703{
1704 spin_lock_irq(&dev->power.lock);
1705 dev->power.links_count++;
1706 spin_unlock_irq(&dev->power.lock);
1707}
1708
Olivier Deprez0e641232021-09-23 10:07:05 +02001709static void pm_runtime_drop_link_count(struct device *dev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001710{
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001711 spin_lock_irq(&dev->power.lock);
1712 WARN_ON(dev->power.links_count == 0);
1713 dev->power.links_count--;
1714 spin_unlock_irq(&dev->power.lock);
1715}
1716
Olivier Deprez0e641232021-09-23 10:07:05 +02001717/**
1718 * pm_runtime_drop_link - Prepare for device link removal.
1719 * @link: Device link going away.
1720 *
1721 * Drop the link count of the consumer end of @link and decrement the supplier
1722 * device's runtime PM usage counter as many times as needed to drop all of the
1723 * PM runtime reference to it from the consumer.
1724 */
1725void pm_runtime_drop_link(struct device_link *link)
1726{
1727 if (!(link->flags & DL_FLAG_PM_RUNTIME))
1728 return;
1729
1730 pm_runtime_drop_link_count(link->consumer);
1731
1732 while (refcount_dec_not_one(&link->rpm_active))
1733 pm_runtime_put(link->supplier);
1734}
1735
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001736static bool pm_runtime_need_not_resume(struct device *dev)
1737{
1738 return atomic_read(&dev->power.usage_count) <= 1 &&
1739 (atomic_read(&dev->power.child_count) == 0 ||
1740 dev->power.ignore_children);
1741}
1742
1743/**
1744 * pm_runtime_force_suspend - Force a device into suspend state if needed.
1745 * @dev: Device to suspend.
1746 *
1747 * Disable runtime PM so we safely can check the device's runtime PM status and
1748 * if it is active, invoke its ->runtime_suspend callback to suspend it and
1749 * change its runtime PM status field to RPM_SUSPENDED. Also, if the device's
1750 * usage and children counters don't indicate that the device was in use before
1751 * the system-wide transition under way, decrement its parent's children counter
1752 * (if there is a parent). Keep runtime PM disabled to preserve the state
1753 * unless we encounter errors.
1754 *
1755 * Typically this function may be invoked from a system suspend callback to make
1756 * sure the device is put into low power state and it should only be used during
1757 * system-wide PM transitions to sleep states. It assumes that the analogous
1758 * pm_runtime_force_resume() will be used to resume the device.
1759 */
1760int pm_runtime_force_suspend(struct device *dev)
1761{
1762 int (*callback)(struct device *);
1763 int ret;
1764
1765 pm_runtime_disable(dev);
1766 if (pm_runtime_status_suspended(dev))
1767 return 0;
1768
1769 callback = RPM_GET_CALLBACK(dev, runtime_suspend);
1770
1771 ret = callback ? callback(dev) : 0;
1772 if (ret)
1773 goto err;
1774
1775 /*
1776 * If the device can stay in suspend after the system-wide transition
1777 * to the working state that will follow, drop the children counter of
1778 * its parent, but set its status to RPM_SUSPENDED anyway in case this
1779 * function will be called again for it in the meantime.
1780 */
Olivier Deprez0e641232021-09-23 10:07:05 +02001781 if (pm_runtime_need_not_resume(dev)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001782 pm_runtime_set_suspended(dev);
Olivier Deprez0e641232021-09-23 10:07:05 +02001783 } else {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001784 __update_runtime_status(dev, RPM_SUSPENDED);
Olivier Deprez0e641232021-09-23 10:07:05 +02001785 dev->power.needs_force_resume = 1;
1786 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001787
1788 return 0;
1789
1790err:
1791 pm_runtime_enable(dev);
1792 return ret;
1793}
1794EXPORT_SYMBOL_GPL(pm_runtime_force_suspend);
1795
1796/**
1797 * pm_runtime_force_resume - Force a device into resume state if needed.
1798 * @dev: Device to resume.
1799 *
1800 * Prior invoking this function we expect the user to have brought the device
1801 * into low power state by a call to pm_runtime_force_suspend(). Here we reverse
1802 * those actions and bring the device into full power, if it is expected to be
1803 * used on system resume. In the other case, we defer the resume to be managed
1804 * via runtime PM.
1805 *
1806 * Typically this function may be invoked from a system resume callback.
1807 */
1808int pm_runtime_force_resume(struct device *dev)
1809{
1810 int (*callback)(struct device *);
1811 int ret = 0;
1812
Olivier Deprez0e641232021-09-23 10:07:05 +02001813 if (!pm_runtime_status_suspended(dev) || !dev->power.needs_force_resume)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001814 goto out;
1815
1816 /*
1817 * The value of the parent's children counter is correct already, so
1818 * just update the status of the device.
1819 */
1820 __update_runtime_status(dev, RPM_ACTIVE);
1821
1822 callback = RPM_GET_CALLBACK(dev, runtime_resume);
1823
1824 ret = callback ? callback(dev) : 0;
1825 if (ret) {
1826 pm_runtime_set_suspended(dev);
1827 goto out;
1828 }
1829
1830 pm_runtime_mark_last_busy(dev);
1831out:
Olivier Deprez0e641232021-09-23 10:07:05 +02001832 dev->power.needs_force_resume = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001833 pm_runtime_enable(dev);
1834 return ret;
1835}
1836EXPORT_SYMBOL_GPL(pm_runtime_force_resume);