Merge tag 'perf-tools-for-v6.4-3-2023-05-06' of git://git.kernel.org/pub/scm/linux...
[linux-block.git] / include / linux / pm_runtime.h
CommitLineData
55716d26 1/* SPDX-License-Identifier: GPL-2.0-only */
5e928f77
RW
2/*
3 * pm_runtime.h - Device run-time power management helper functions.
4 *
5 * Copyright (C) 2009 Rafael J. Wysocki <rjw@sisk.pl>
5e928f77
RW
6 */
7
8#ifndef _LINUX_PM_RUNTIME_H
9#define _LINUX_PM_RUNTIME_H
10
11#include <linux/device.h>
246359d3 12#include <linux/notifier.h>
5e928f77
RW
13#include <linux/pm.h>
14
15bcb91d
AS
15#include <linux/jiffies.h>
16
3f9af051
AS
17/* Runtime PM flag argument bits */
18#define RPM_ASYNC 0x01 /* Request is asynchronous */
19#define RPM_NOWAIT 0x02 /* Don't wait for concurrent
20 state change */
140a6c94
AS
21#define RPM_GET_PUT 0x04 /* Increment/decrement the
22 usage_count */
15bcb91d 23#define RPM_AUTO 0x08 /* Use autosuspend_delay */
3f9af051 24
9d861919
PC
25/*
26 * Use this for defining a set of PM operations to be used in all situations
27 * (system suspend, hibernation or runtime PM).
28 *
29 * Note that the behaviour differs from the deprecated UNIVERSAL_DEV_PM_OPS()
30 * macro, which uses the provided callbacks for both runtime PM and system
31 * sleep, while DEFINE_RUNTIME_DEV_PM_OPS() uses pm_runtime_force_suspend()
32 * and pm_runtime_force_resume() for its system sleep callbacks.
d59ff7d9
PC
33 *
34 * If the underlying dev_pm_ops struct symbol has to be exported, use
35 * EXPORT_RUNTIME_DEV_PM_OPS() or EXPORT_GPL_RUNTIME_DEV_PM_OPS() instead.
9d861919
PC
36 */
37#define DEFINE_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \
38 _DEFINE_DEV_PM_OPS(name, pm_runtime_force_suspend, \
39 pm_runtime_force_resume, suspend_fn, \
40 resume_fn, idle_fn)
41
d59ff7d9 42#define EXPORT_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \
34e1ed18
PC
43 EXPORT_DEV_PM_OPS(name) = { \
44 RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
45 }
d59ff7d9 46#define EXPORT_GPL_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \
34e1ed18
PC
47 EXPORT_GPL_DEV_PM_OPS(name) = { \
48 RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
49 }
a8e2512e 50#define EXPORT_NS_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn, ns) \
34e1ed18
PC
51 EXPORT_NS_DEV_PM_OPS(name, ns) = { \
52 RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
53 }
a8e2512e 54#define EXPORT_NS_GPL_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn, ns) \
34e1ed18
PC
55 EXPORT_NS_GPL_DEV_PM_OPS(name, ns) = { \
56 RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
57 }
d59ff7d9 58
717e5d45 59#ifdef CONFIG_PM
28cb5ef1
RW
60extern struct workqueue_struct *pm_wq;
61
62static inline bool queue_pm_work(struct work_struct *work)
63{
64 return queue_work(pm_wq, work);
65}
66
717e5d45
UH
67extern int pm_generic_runtime_suspend(struct device *dev);
68extern int pm_generic_runtime_resume(struct device *dev);
37f20416
UH
69extern int pm_runtime_force_suspend(struct device *dev);
70extern int pm_runtime_force_resume(struct device *dev);
5e928f77 71
140a6c94
AS
72extern int __pm_runtime_idle(struct device *dev, int rpmflags);
73extern int __pm_runtime_suspend(struct device *dev, int rpmflags);
74extern int __pm_runtime_resume(struct device *dev, int rpmflags);
c111566b 75extern int pm_runtime_get_if_active(struct device *dev, bool ign_usage_count);
5e928f77 76extern int pm_schedule_suspend(struct device *dev, unsigned int delay);
5e928f77
RW
77extern int __pm_runtime_set_status(struct device *dev, unsigned int status);
78extern int pm_runtime_barrier(struct device *dev);
79extern void pm_runtime_enable(struct device *dev);
80extern void __pm_runtime_disable(struct device *dev, bool check_resume);
53823639
RW
81extern void pm_runtime_allow(struct device *dev);
82extern void pm_runtime_forbid(struct device *dev);
7490e442 83extern void pm_runtime_no_callbacks(struct device *dev);
c7b61de5 84extern void pm_runtime_irq_safe(struct device *dev);
15bcb91d
AS
85extern void __pm_runtime_use_autosuspend(struct device *dev, bool use);
86extern void pm_runtime_set_autosuspend_delay(struct device *dev, int delay);
8234f673 87extern u64 pm_runtime_autosuspend_expiration(struct device *dev);
00dc9ad1
RW
88extern void pm_runtime_update_max_time_suspended(struct device *dev,
89 s64 delta_ns);
e823407f 90extern void pm_runtime_set_memalloc_noio(struct device *dev, bool enable);
b06c0b2f
RW
91extern void pm_runtime_get_suppliers(struct device *dev);
92extern void pm_runtime_put_suppliers(struct device *dev);
baa8809f 93extern void pm_runtime_new_link(struct device *dev);
e0e398e2 94extern void pm_runtime_drop_link(struct device_link *link);
07358194 95extern void pm_runtime_release_supplier(struct device_link *link);
5e928f77 96
b3636a3a
DB
97extern int devm_pm_runtime_enable(struct device *dev);
98
403d2d11
RW
99/**
100 * pm_runtime_get_if_in_use - Conditionally bump up runtime PM usage counter.
101 * @dev: Target device.
102 *
103 * Increment the runtime PM usage counter of @dev if its runtime PM status is
104 * %RPM_ACTIVE and its runtime PM usage counter is greater than 0.
105 */
c111566b
SA
106static inline int pm_runtime_get_if_in_use(struct device *dev)
107{
108 return pm_runtime_get_if_active(dev, false);
109}
110
403d2d11
RW
111/**
112 * pm_suspend_ignore_children - Set runtime PM behavior regarding children.
113 * @dev: Target device.
114 * @enable: Whether or not to ignore possible dependencies on children.
115 *
116 * The dependencies of @dev on its children will not be taken into account by
117 * the runtime PM framework going forward if @enable is %true, or they will
118 * be taken into account otherwise.
119 */
372a12ed
UH
120static inline void pm_suspend_ignore_children(struct device *dev, bool enable)
121{
122 dev->power.ignore_children = enable;
123}
124
403d2d11
RW
125/**
126 * pm_runtime_get_noresume - Bump up runtime PM usage counter of a device.
127 * @dev: Target device.
128 */
5e928f77
RW
129static inline void pm_runtime_get_noresume(struct device *dev)
130{
131 atomic_inc(&dev->power.usage_count);
132}
133
403d2d11
RW
134/**
135 * pm_runtime_put_noidle - Drop runtime PM usage counter of a device.
136 * @dev: Target device.
137 *
138 * Decrement the runtime PM usage counter of @dev unless it is 0 already.
139 */
5e928f77
RW
140static inline void pm_runtime_put_noidle(struct device *dev)
141{
142 atomic_add_unless(&dev->power.usage_count, -1, 0);
143}
144
403d2d11
RW
145/**
146 * pm_runtime_suspended - Check whether or not a device is runtime-suspended.
147 * @dev: Target device.
148 *
149 * Return %true if runtime PM is enabled for @dev and its runtime PM status is
150 * %RPM_SUSPENDED, or %false otherwise.
151 *
152 * Note that the return value of this function can only be trusted if it is
153 * called under the runtime PM lock of @dev or under conditions in which
154 * runtime PM cannot be either disabled or enabled for @dev and its runtime PM
155 * status cannot change.
156 */
d690b2cd
RW
157static inline bool pm_runtime_suspended(struct device *dev)
158{
f08f5a0a
RW
159 return dev->power.runtime_status == RPM_SUSPENDED
160 && !dev->power.disable_depth;
d690b2cd
RW
161}
162
403d2d11
RW
163/**
164 * pm_runtime_active - Check whether or not a device is runtime-active.
165 * @dev: Target device.
166 *
444dd878 167 * Return %true if runtime PM is disabled for @dev or its runtime PM status is
403d2d11
RW
168 * %RPM_ACTIVE, or %false otherwise.
169 *
170 * Note that the return value of this function can only be trusted if it is
171 * called under the runtime PM lock of @dev or under conditions in which
172 * runtime PM cannot be either disabled or enabled for @dev and its runtime PM
173 * status cannot change.
174 */
fbadc58d
SL
175static inline bool pm_runtime_active(struct device *dev)
176{
177 return dev->power.runtime_status == RPM_ACTIVE
178 || dev->power.disable_depth;
179}
180
403d2d11
RW
181/**
182 * pm_runtime_status_suspended - Check if runtime PM status is "suspended".
183 * @dev: Target device.
184 *
185 * Return %true if the runtime PM status of @dev is %RPM_SUSPENDED, or %false
186 * otherwise, regardless of whether or not runtime PM has been enabled for @dev.
187 *
188 * Note that the return value of this function can only be trusted if it is
189 * called under the runtime PM lock of @dev or under conditions in which the
190 * runtime PM status of @dev cannot change.
191 */
f3393b62
KH
192static inline bool pm_runtime_status_suspended(struct device *dev)
193{
194 return dev->power.runtime_status == RPM_SUSPENDED;
195}
196
403d2d11
RW
197/**
198 * pm_runtime_enabled - Check if runtime PM is enabled.
199 * @dev: Target device.
200 *
201 * Return %true if runtime PM is enabled for @dev or %false otherwise.
202 *
203 * Note that the return value of this function can only be trusted if it is
204 * called under the runtime PM lock of @dev or under conditions in which
205 * runtime PM cannot be either disabled or enabled for @dev.
206 */
4b31db8a
RW
207static inline bool pm_runtime_enabled(struct device *dev)
208{
209 return !dev->power.disable_depth;
210}
211
403d2d11
RW
212/**
213 * pm_runtime_has_no_callbacks - Check if runtime PM callbacks may be present.
214 * @dev: Target device.
215 *
216 * Return %true if @dev is a special device without runtime PM callbacks or
217 * %false otherwise.
218 */
9a787546 219static inline bool pm_runtime_has_no_callbacks(struct device *dev)
cb8f51bd 220{
9a787546 221 return dev->power.no_callbacks;
cb8f51bd
RW
222}
223
403d2d11
RW
224/**
225 * pm_runtime_mark_last_busy - Update the last access time of a device.
226 * @dev: Target device.
227 *
228 * Update the last access time of @dev used by the runtime PM autosuspend
229 * mechanism to the current time as returned by ktime_get_mono_fast_ns().
230 */
15bcb91d
AS
231static inline void pm_runtime_mark_last_busy(struct device *dev)
232{
15efb47d 233 WRITE_ONCE(dev->power.last_busy, ktime_get_mono_fast_ns());
15bcb91d
AS
234}
235
403d2d11
RW
236/**
237 * pm_runtime_is_irq_safe - Check if runtime PM can work in interrupt context.
238 * @dev: Target device.
239 *
240 * Return %true if @dev has been marked as an "IRQ-safe" device (with respect
241 * to runtime PM), in which case its runtime PM callabcks can be expected to
242 * work correctly when invoked from interrupt handlers.
243 */
3fb1581e
KK
244static inline bool pm_runtime_is_irq_safe(struct device *dev)
245{
246 return dev->power.irq_safe;
247}
248
8a62ffe2
VG
249extern u64 pm_runtime_suspended_time(struct device *dev);
250
d30d819d
RW
251#else /* !CONFIG_PM */
252
253static inline bool queue_pm_work(struct work_struct *work) { return false; }
254
255static inline int pm_generic_runtime_suspend(struct device *dev) { return 0; }
256static inline int pm_generic_runtime_resume(struct device *dev) { return 0; }
257static inline int pm_runtime_force_suspend(struct device *dev) { return 0; }
258static inline int pm_runtime_force_resume(struct device *dev) { return 0; }
5e928f77 259
140a6c94
AS
260static inline int __pm_runtime_idle(struct device *dev, int rpmflags)
261{
262 return -ENOSYS;
263}
264static inline int __pm_runtime_suspend(struct device *dev, int rpmflags)
265{
266 return -ENOSYS;
267}
268static inline int __pm_runtime_resume(struct device *dev, int rpmflags)
269{
270 return 1;
271}
5e928f77
RW
272static inline int pm_schedule_suspend(struct device *dev, unsigned int delay)
273{
274 return -ENOSYS;
275}
a436b6a1
RW
276static inline int pm_runtime_get_if_in_use(struct device *dev)
277{
278 return -EINVAL;
279}
c111566b
SA
280static inline int pm_runtime_get_if_active(struct device *dev,
281 bool ign_usage_count)
282{
283 return -EINVAL;
284}
5e928f77
RW
285static inline int __pm_runtime_set_status(struct device *dev,
286 unsigned int status) { return 0; }
287static inline int pm_runtime_barrier(struct device *dev) { return 0; }
288static inline void pm_runtime_enable(struct device *dev) {}
289static inline void __pm_runtime_disable(struct device *dev, bool c) {}
53823639
RW
290static inline void pm_runtime_allow(struct device *dev) {}
291static inline void pm_runtime_forbid(struct device *dev) {}
5e928f77 292
b3636a3a
DB
293static inline int devm_pm_runtime_enable(struct device *dev) { return 0; }
294
372a12ed 295static inline void pm_suspend_ignore_children(struct device *dev, bool enable) {}
5e928f77
RW
296static inline void pm_runtime_get_noresume(struct device *dev) {}
297static inline void pm_runtime_put_noidle(struct device *dev) {}
d690b2cd 298static inline bool pm_runtime_suspended(struct device *dev) { return false; }
fbadc58d 299static inline bool pm_runtime_active(struct device *dev) { return true; }
f3393b62 300static inline bool pm_runtime_status_suspended(struct device *dev) { return false; }
4b31db8a 301static inline bool pm_runtime_enabled(struct device *dev) { return false; }
5e928f77 302
7490e442 303static inline void pm_runtime_no_callbacks(struct device *dev) {}
c7b61de5 304static inline void pm_runtime_irq_safe(struct device *dev) {}
3fb1581e 305static inline bool pm_runtime_is_irq_safe(struct device *dev) { return false; }
2f60ba70 306
953c1fd9 307static inline bool pm_runtime_has_no_callbacks(struct device *dev) { return false; }
15bcb91d
AS
308static inline void pm_runtime_mark_last_busy(struct device *dev) {}
309static inline void __pm_runtime_use_autosuspend(struct device *dev,
310 bool use) {}
311static inline void pm_runtime_set_autosuspend_delay(struct device *dev,
312 int delay) {}
8234f673 313static inline u64 pm_runtime_autosuspend_expiration(
15bcb91d 314 struct device *dev) { return 0; }
e823407f
ML
315static inline void pm_runtime_set_memalloc_noio(struct device *dev,
316 bool enable){}
b06c0b2f
RW
317static inline void pm_runtime_get_suppliers(struct device *dev) {}
318static inline void pm_runtime_put_suppliers(struct device *dev) {}
baa8809f 319static inline void pm_runtime_new_link(struct device *dev) {}
e0e398e2 320static inline void pm_runtime_drop_link(struct device_link *link) {}
07358194 321static inline void pm_runtime_release_supplier(struct device_link *link) {}
15bcb91d 322
d30d819d 323#endif /* !CONFIG_PM */
5e928f77 324
403d2d11
RW
325/**
326 * pm_runtime_idle - Conditionally set up autosuspend of a device or suspend it.
327 * @dev: Target device.
328 *
329 * Invoke the "idle check" callback of @dev and, depending on its return value,
330 * set up autosuspend of @dev or suspend it (depending on whether or not
331 * autosuspend has been enabled for it).
332 */
140a6c94
AS
333static inline int pm_runtime_idle(struct device *dev)
334{
335 return __pm_runtime_idle(dev, 0);
336}
337
403d2d11
RW
338/**
339 * pm_runtime_suspend - Suspend a device synchronously.
340 * @dev: Target device.
341 */
140a6c94
AS
342static inline int pm_runtime_suspend(struct device *dev)
343{
344 return __pm_runtime_suspend(dev, 0);
345}
346
403d2d11
RW
347/**
348 * pm_runtime_autosuspend - Set up autosuspend of a device or suspend it.
349 * @dev: Target device.
350 *
351 * Set up autosuspend of @dev or suspend it (depending on whether or not
352 * autosuspend is enabled for it) without engaging its "idle check" callback.
353 */
15bcb91d
AS
354static inline int pm_runtime_autosuspend(struct device *dev)
355{
356 return __pm_runtime_suspend(dev, RPM_AUTO);
357}
358
403d2d11
RW
359/**
360 * pm_runtime_resume - Resume a device synchronously.
361 * @dev: Target device.
362 */
140a6c94
AS
363static inline int pm_runtime_resume(struct device *dev)
364{
365 return __pm_runtime_resume(dev, 0);
366}
367
403d2d11
RW
368/**
369 * pm_request_idle - Queue up "idle check" execution for a device.
370 * @dev: Target device.
371 *
372 * Queue up a work item to run an equivalent of pm_runtime_idle() for @dev
373 * asynchronously.
374 */
140a6c94
AS
375static inline int pm_request_idle(struct device *dev)
376{
377 return __pm_runtime_idle(dev, RPM_ASYNC);
378}
379
403d2d11
RW
380/**
381 * pm_request_resume - Queue up runtime-resume of a device.
382 * @dev: Target device.
383 */
140a6c94
AS
384static inline int pm_request_resume(struct device *dev)
385{
386 return __pm_runtime_resume(dev, RPM_ASYNC);
387}
388
403d2d11
RW
389/**
390 * pm_request_autosuspend - Queue up autosuspend of a device.
391 * @dev: Target device.
392 *
393 * Queue up a work item to run an equivalent pm_runtime_autosuspend() for @dev
394 * asynchronously.
395 */
5fc62aad
ML
396static inline int pm_request_autosuspend(struct device *dev)
397{
398 return __pm_runtime_suspend(dev, RPM_ASYNC | RPM_AUTO);
399}
400
403d2d11
RW
401/**
402 * pm_runtime_get - Bump up usage counter and queue up resume of a device.
403 * @dev: Target device.
404 *
405 * Bump up the runtime PM usage counter of @dev and queue up a work item to
406 * carry out runtime-resume of it.
407 */
5e928f77
RW
408static inline int pm_runtime_get(struct device *dev)
409{
140a6c94 410 return __pm_runtime_resume(dev, RPM_GET_PUT | RPM_ASYNC);
5e928f77
RW
411}
412
403d2d11
RW
413/**
414 * pm_runtime_get_sync - Bump up usage counter of a device and resume it.
415 * @dev: Target device.
416 *
417 * Bump up the runtime PM usage counter of @dev and carry out runtime-resume of
418 * it synchronously.
419 *
420 * The possible return values of this function are the same as for
421 * pm_runtime_resume() and the runtime PM usage counter of @dev remains
422 * incremented in all cases, even if it returns an error code.
c58e7ed2
KK
423 * Consider using pm_runtime_resume_and_get() instead of it, especially
424 * if its return value is checked by the caller, as this is likely to result
425 * in cleaner code.
403d2d11 426 */
5e928f77
RW
427static inline int pm_runtime_get_sync(struct device *dev)
428{
140a6c94 429 return __pm_runtime_resume(dev, RPM_GET_PUT);
5e928f77
RW
430}
431
dd8088d5
ZQ
432/**
433 * pm_runtime_resume_and_get - Bump up usage counter of a device and resume it.
434 * @dev: Target device.
435 *
436 * Resume @dev synchronously and if that is successful, increment its runtime
437 * PM usage counter. Return 0 if the runtime PM usage counter of @dev has been
438 * incremented or a negative error code otherwise.
439 */
440static inline int pm_runtime_resume_and_get(struct device *dev)
441{
442 int ret;
443
444 ret = __pm_runtime_resume(dev, RPM_GET_PUT);
445 if (ret < 0) {
446 pm_runtime_put_noidle(dev);
447 return ret;
448 }
449
450 return 0;
451}
452
403d2d11
RW
453/**
454 * pm_runtime_put - Drop device usage counter and queue up "idle check" if 0.
455 * @dev: Target device.
456 *
457 * Decrement the runtime PM usage counter of @dev and if it turns out to be
458 * equal to 0, queue up a work item for @dev like in pm_request_idle().
459 */
5e928f77
RW
460static inline int pm_runtime_put(struct device *dev)
461{
140a6c94 462 return __pm_runtime_idle(dev, RPM_GET_PUT | RPM_ASYNC);
5e928f77
RW
463}
464
403d2d11
RW
465/**
466 * pm_runtime_put_autosuspend - Drop device usage counter and queue autosuspend if 0.
467 * @dev: Target device.
468 *
469 * Decrement the runtime PM usage counter of @dev and if it turns out to be
470 * equal to 0, queue up a work item for @dev like in pm_request_autosuspend().
471 */
15bcb91d
AS
472static inline int pm_runtime_put_autosuspend(struct device *dev)
473{
474 return __pm_runtime_suspend(dev,
475 RPM_GET_PUT | RPM_ASYNC | RPM_AUTO);
476}
477
403d2d11
RW
478/**
479 * pm_runtime_put_sync - Drop device usage counter and run "idle check" if 0.
480 * @dev: Target device.
481 *
482 * Decrement the runtime PM usage counter of @dev and if it turns out to be
483 * equal to 0, invoke the "idle check" callback of @dev and, depending on its
484 * return value, set up autosuspend of @dev or suspend it (depending on whether
485 * or not autosuspend has been enabled for it).
486 *
487 * The possible return values of this function are the same as for
488 * pm_runtime_idle() and the runtime PM usage counter of @dev remains
489 * decremented in all cases, even if it returns an error code.
490 */
5e928f77
RW
491static inline int pm_runtime_put_sync(struct device *dev)
492{
140a6c94 493 return __pm_runtime_idle(dev, RPM_GET_PUT);
5e928f77
RW
494}
495
403d2d11
RW
496/**
497 * pm_runtime_put_sync_suspend - Drop device usage counter and suspend if 0.
498 * @dev: Target device.
499 *
500 * Decrement the runtime PM usage counter of @dev and if it turns out to be
501 * equal to 0, carry out runtime-suspend of @dev synchronously.
502 *
503 * The possible return values of this function are the same as for
504 * pm_runtime_suspend() and the runtime PM usage counter of @dev remains
505 * decremented in all cases, even if it returns an error code.
506 */
c7b61de5
AS
507static inline int pm_runtime_put_sync_suspend(struct device *dev)
508{
509 return __pm_runtime_suspend(dev, RPM_GET_PUT);
510}
511
403d2d11
RW
512/**
513 * pm_runtime_put_sync_autosuspend - Drop device usage counter and autosuspend if 0.
514 * @dev: Target device.
515 *
516 * Decrement the runtime PM usage counter of @dev and if it turns out to be
517 * equal to 0, set up autosuspend of @dev or suspend it synchronously (depending
518 * on whether or not autosuspend has been enabled for it).
519 *
520 * The possible return values of this function are the same as for
521 * pm_runtime_autosuspend() and the runtime PM usage counter of @dev remains
522 * decremented in all cases, even if it returns an error code.
523 */
15bcb91d
AS
524static inline int pm_runtime_put_sync_autosuspend(struct device *dev)
525{
526 return __pm_runtime_suspend(dev, RPM_GET_PUT | RPM_AUTO);
527}
528
403d2d11
RW
529/**
530 * pm_runtime_set_active - Set runtime PM status to "active".
531 * @dev: Target device.
532 *
533 * Set the runtime PM status of @dev to %RPM_ACTIVE and ensure that dependencies
534 * of it will be taken into account.
535 *
536 * It is not valid to call this function for devices with runtime PM enabled.
537 */
5e928f77
RW
538static inline int pm_runtime_set_active(struct device *dev)
539{
540 return __pm_runtime_set_status(dev, RPM_ACTIVE);
541}
542
403d2d11 543/**
aa9c9b3f 544 * pm_runtime_set_suspended - Set runtime PM status to "suspended".
403d2d11
RW
545 * @dev: Target device.
546 *
547 * Set the runtime PM status of @dev to %RPM_SUSPENDED and ensure that
548 * dependencies of it will be taken into account.
549 *
550 * It is not valid to call this function for devices with runtime PM enabled.
551 */
b1a60995 552static inline int pm_runtime_set_suspended(struct device *dev)
5e928f77 553{
b1a60995 554 return __pm_runtime_set_status(dev, RPM_SUSPENDED);
5e928f77
RW
555}
556
403d2d11
RW
557/**
558 * pm_runtime_disable - Disable runtime PM for a device.
559 * @dev: Target device.
560 *
561 * Prevent the runtime PM framework from working with @dev (by incrementing its
562 * "blocking" counter).
563 *
564 * For each invocation of this function for @dev there must be a matching
565 * pm_runtime_enable() call in order for runtime PM to be enabled for it.
566 */
5e928f77
RW
567static inline void pm_runtime_disable(struct device *dev)
568{
569 __pm_runtime_disable(dev, true);
570}
571
403d2d11
RW
572/**
573 * pm_runtime_use_autosuspend - Allow autosuspend to be used for a device.
574 * @dev: Target device.
575 *
576 * Allow the runtime PM autosuspend mechanism to be used for @dev whenever
577 * requested (or "autosuspend" will be handled as direct runtime-suspend for
578 * it).
b4060db9
DA
579 *
580 * NOTE: It's important to undo this with pm_runtime_dont_use_autosuspend()
581 * at driver exit time unless your driver initially enabled pm_runtime
582 * with devm_pm_runtime_enable() (which handles it for you).
403d2d11 583 */
15bcb91d
AS
584static inline void pm_runtime_use_autosuspend(struct device *dev)
585{
586 __pm_runtime_use_autosuspend(dev, true);
587}
588
403d2d11
RW
589/**
590 * pm_runtime_dont_use_autosuspend - Prevent autosuspend from being used.
591 * @dev: Target device.
592 *
593 * Prevent the runtime PM autosuspend mechanism from being used for @dev which
594 * means that "autosuspend" will be handled as direct runtime-suspend for it
595 * going forward.
596 */
15bcb91d
AS
597static inline void pm_runtime_dont_use_autosuspend(struct device *dev)
598{
599 __pm_runtime_use_autosuspend(dev, false);
600}
601
5e928f77 602#endif