blob: 30091ab5de287c25b6b3d6653fa2e68c39a91896 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * pm_runtime.h - Device run-time power management helper functions.
4 *
5 * Copyright (C) 2009 Rafael J. Wysocki <rjw@sisk.pl>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7
8#ifndef _LINUX_PM_RUNTIME_H
9#define _LINUX_PM_RUNTIME_H
10
11#include <linux/device.h>
12#include <linux/notifier.h>
13#include <linux/pm.h>
14
15#include <linux/jiffies.h>
16
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 */
21#define RPM_GET_PUT 0x04 /* Increment/decrement the
22 usage_count */
23#define RPM_AUTO 0x08 /* Use autosuspend_delay */
24
25#ifdef CONFIG_PM
26extern struct workqueue_struct *pm_wq;
27
28static inline bool queue_pm_work(struct work_struct *work)
29{
30 return queue_work(pm_wq, work);
31}
32
33extern int pm_generic_runtime_suspend(struct device *dev);
34extern int pm_generic_runtime_resume(struct device *dev);
35extern int pm_runtime_force_suspend(struct device *dev);
36extern int pm_runtime_force_resume(struct device *dev);
37
38extern int __pm_runtime_idle(struct device *dev, int rpmflags);
39extern int __pm_runtime_suspend(struct device *dev, int rpmflags);
40extern int __pm_runtime_resume(struct device *dev, int rpmflags);
Olivier Deprez157378f2022-04-04 15:47:50 +020041extern int pm_runtime_get_if_active(struct device *dev, bool ign_usage_count);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000042extern int pm_schedule_suspend(struct device *dev, unsigned int delay);
43extern int __pm_runtime_set_status(struct device *dev, unsigned int status);
44extern int pm_runtime_barrier(struct device *dev);
45extern void pm_runtime_enable(struct device *dev);
46extern void __pm_runtime_disable(struct device *dev, bool check_resume);
47extern void pm_runtime_allow(struct device *dev);
48extern void pm_runtime_forbid(struct device *dev);
49extern void pm_runtime_no_callbacks(struct device *dev);
50extern void pm_runtime_irq_safe(struct device *dev);
51extern void __pm_runtime_use_autosuspend(struct device *dev, bool use);
52extern void pm_runtime_set_autosuspend_delay(struct device *dev, int delay);
David Brazdil0f672f62019-12-10 10:32:29 +000053extern u64 pm_runtime_autosuspend_expiration(struct device *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000054extern void pm_runtime_update_max_time_suspended(struct device *dev,
55 s64 delta_ns);
56extern void pm_runtime_set_memalloc_noio(struct device *dev, bool enable);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000057extern void pm_runtime_get_suppliers(struct device *dev);
58extern void pm_runtime_put_suppliers(struct device *dev);
59extern void pm_runtime_new_link(struct device *dev);
Olivier Deprez0e641232021-09-23 10:07:05 +020060extern void pm_runtime_drop_link(struct device_link *link);
Olivier Deprez157378f2022-04-04 15:47:50 +020061extern void pm_runtime_release_supplier(struct device_link *link, bool check_idle);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000062
Olivier Deprez157378f2022-04-04 15:47:50 +020063/**
64 * pm_runtime_get_if_in_use - Conditionally bump up runtime PM usage counter.
65 * @dev: Target device.
66 *
67 * Increment the runtime PM usage counter of @dev if its runtime PM status is
68 * %RPM_ACTIVE and its runtime PM usage counter is greater than 0.
69 */
70static inline int pm_runtime_get_if_in_use(struct device *dev)
71{
72 return pm_runtime_get_if_active(dev, false);
73}
74
75/**
76 * pm_suspend_ignore_children - Set runtime PM behavior regarding children.
77 * @dev: Target device.
78 * @enable: Whether or not to ignore possible dependencies on children.
79 *
80 * The dependencies of @dev on its children will not be taken into account by
81 * the runtime PM framework going forward if @enable is %true, or they will
82 * be taken into account otherwise.
83 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000084static inline void pm_suspend_ignore_children(struct device *dev, bool enable)
85{
86 dev->power.ignore_children = enable;
87}
88
Olivier Deprez157378f2022-04-04 15:47:50 +020089/**
90 * pm_runtime_get_noresume - Bump up runtime PM usage counter of a device.
91 * @dev: Target device.
92 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000093static inline void pm_runtime_get_noresume(struct device *dev)
94{
95 atomic_inc(&dev->power.usage_count);
96}
97
Olivier Deprez157378f2022-04-04 15:47:50 +020098/**
99 * pm_runtime_put_noidle - Drop runtime PM usage counter of a device.
100 * @dev: Target device.
101 *
102 * Decrement the runtime PM usage counter of @dev unless it is 0 already.
103 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000104static inline void pm_runtime_put_noidle(struct device *dev)
105{
106 atomic_add_unless(&dev->power.usage_count, -1, 0);
107}
108
Olivier Deprez157378f2022-04-04 15:47:50 +0200109/**
110 * pm_runtime_suspended - Check whether or not a device is runtime-suspended.
111 * @dev: Target device.
112 *
113 * Return %true if runtime PM is enabled for @dev and its runtime PM status is
114 * %RPM_SUSPENDED, or %false otherwise.
115 *
116 * Note that the return value of this function can only be trusted if it is
117 * called under the runtime PM lock of @dev or under conditions in which
118 * runtime PM cannot be either disabled or enabled for @dev and its runtime PM
119 * status cannot change.
120 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000121static inline bool pm_runtime_suspended(struct device *dev)
122{
123 return dev->power.runtime_status == RPM_SUSPENDED
124 && !dev->power.disable_depth;
125}
126
Olivier Deprez157378f2022-04-04 15:47:50 +0200127/**
128 * pm_runtime_active - Check whether or not a device is runtime-active.
129 * @dev: Target device.
130 *
131 * Return %true if runtime PM is disabled for @dev or its runtime PM status is
132 * %RPM_ACTIVE, or %false otherwise.
133 *
134 * Note that the return value of this function can only be trusted if it is
135 * called under the runtime PM lock of @dev or under conditions in which
136 * runtime PM cannot be either disabled or enabled for @dev and its runtime PM
137 * status cannot change.
138 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000139static inline bool pm_runtime_active(struct device *dev)
140{
141 return dev->power.runtime_status == RPM_ACTIVE
142 || dev->power.disable_depth;
143}
144
Olivier Deprez157378f2022-04-04 15:47:50 +0200145/**
146 * pm_runtime_status_suspended - Check if runtime PM status is "suspended".
147 * @dev: Target device.
148 *
149 * Return %true if the runtime PM status of @dev is %RPM_SUSPENDED, or %false
150 * otherwise, regardless of whether or not runtime PM has been enabled for @dev.
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 the
154 * runtime PM status of @dev cannot change.
155 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000156static inline bool pm_runtime_status_suspended(struct device *dev)
157{
158 return dev->power.runtime_status == RPM_SUSPENDED;
159}
160
Olivier Deprez157378f2022-04-04 15:47:50 +0200161/**
162 * pm_runtime_enabled - Check if runtime PM is enabled.
163 * @dev: Target device.
164 *
165 * Return %true if runtime PM is enabled for @dev or %false otherwise.
166 *
167 * Note that the return value of this function can only be trusted if it is
168 * called under the runtime PM lock of @dev or under conditions in which
169 * runtime PM cannot be either disabled or enabled for @dev.
170 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000171static inline bool pm_runtime_enabled(struct device *dev)
172{
173 return !dev->power.disable_depth;
174}
175
Olivier Deprez157378f2022-04-04 15:47:50 +0200176/**
177 * pm_runtime_has_no_callbacks - Check if runtime PM callbacks may be present.
178 * @dev: Target device.
179 *
180 * Return %true if @dev is a special device without runtime PM callbacks or
181 * %false otherwise.
182 */
183static inline bool pm_runtime_has_no_callbacks(struct device *dev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000184{
Olivier Deprez157378f2022-04-04 15:47:50 +0200185 return dev->power.no_callbacks;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000186}
187
Olivier Deprez157378f2022-04-04 15:47:50 +0200188/**
189 * pm_runtime_mark_last_busy - Update the last access time of a device.
190 * @dev: Target device.
191 *
192 * Update the last access time of @dev used by the runtime PM autosuspend
193 * mechanism to the current time as returned by ktime_get_mono_fast_ns().
194 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000195static inline void pm_runtime_mark_last_busy(struct device *dev)
196{
David Brazdil0f672f62019-12-10 10:32:29 +0000197 WRITE_ONCE(dev->power.last_busy, ktime_get_mono_fast_ns());
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000198}
199
Olivier Deprez157378f2022-04-04 15:47:50 +0200200/**
201 * pm_runtime_is_irq_safe - Check if runtime PM can work in interrupt context.
202 * @dev: Target device.
203 *
204 * Return %true if @dev has been marked as an "IRQ-safe" device (with respect
205 * to runtime PM), in which case its runtime PM callabcks can be expected to
206 * work correctly when invoked from interrupt handlers.
207 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000208static inline bool pm_runtime_is_irq_safe(struct device *dev)
209{
210 return dev->power.irq_safe;
211}
212
David Brazdil0f672f62019-12-10 10:32:29 +0000213extern u64 pm_runtime_suspended_time(struct device *dev);
214
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000215#else /* !CONFIG_PM */
216
217static inline bool queue_pm_work(struct work_struct *work) { return false; }
218
219static inline int pm_generic_runtime_suspend(struct device *dev) { return 0; }
220static inline int pm_generic_runtime_resume(struct device *dev) { return 0; }
221static inline int pm_runtime_force_suspend(struct device *dev) { return 0; }
222static inline int pm_runtime_force_resume(struct device *dev) { return 0; }
223
224static inline int __pm_runtime_idle(struct device *dev, int rpmflags)
225{
226 return -ENOSYS;
227}
228static inline int __pm_runtime_suspend(struct device *dev, int rpmflags)
229{
230 return -ENOSYS;
231}
232static inline int __pm_runtime_resume(struct device *dev, int rpmflags)
233{
234 return 1;
235}
236static inline int pm_schedule_suspend(struct device *dev, unsigned int delay)
237{
238 return -ENOSYS;
239}
240static inline int pm_runtime_get_if_in_use(struct device *dev)
241{
242 return -EINVAL;
243}
Olivier Deprez157378f2022-04-04 15:47:50 +0200244static inline int pm_runtime_get_if_active(struct device *dev,
245 bool ign_usage_count)
246{
247 return -EINVAL;
248}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000249static inline int __pm_runtime_set_status(struct device *dev,
250 unsigned int status) { return 0; }
251static inline int pm_runtime_barrier(struct device *dev) { return 0; }
252static inline void pm_runtime_enable(struct device *dev) {}
253static inline void __pm_runtime_disable(struct device *dev, bool c) {}
254static inline void pm_runtime_allow(struct device *dev) {}
255static inline void pm_runtime_forbid(struct device *dev) {}
256
257static inline void pm_suspend_ignore_children(struct device *dev, bool enable) {}
258static inline void pm_runtime_get_noresume(struct device *dev) {}
259static inline void pm_runtime_put_noidle(struct device *dev) {}
260static inline bool pm_runtime_suspended(struct device *dev) { return false; }
261static inline bool pm_runtime_active(struct device *dev) { return true; }
262static inline bool pm_runtime_status_suspended(struct device *dev) { return false; }
263static inline bool pm_runtime_enabled(struct device *dev) { return false; }
264
265static inline void pm_runtime_no_callbacks(struct device *dev) {}
266static inline void pm_runtime_irq_safe(struct device *dev) {}
267static inline bool pm_runtime_is_irq_safe(struct device *dev) { return false; }
268
Olivier Deprez157378f2022-04-04 15:47:50 +0200269static inline bool pm_runtime_has_no_callbacks(struct device *dev) { return false; }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000270static inline void pm_runtime_mark_last_busy(struct device *dev) {}
271static inline void __pm_runtime_use_autosuspend(struct device *dev,
272 bool use) {}
273static inline void pm_runtime_set_autosuspend_delay(struct device *dev,
274 int delay) {}
David Brazdil0f672f62019-12-10 10:32:29 +0000275static inline u64 pm_runtime_autosuspend_expiration(
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000276 struct device *dev) { return 0; }
277static inline void pm_runtime_set_memalloc_noio(struct device *dev,
278 bool enable){}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000279static inline void pm_runtime_get_suppliers(struct device *dev) {}
280static inline void pm_runtime_put_suppliers(struct device *dev) {}
281static inline void pm_runtime_new_link(struct device *dev) {}
Olivier Deprez0e641232021-09-23 10:07:05 +0200282static inline void pm_runtime_drop_link(struct device_link *link) {}
Olivier Deprez157378f2022-04-04 15:47:50 +0200283static inline void pm_runtime_release_supplier(struct device_link *link,
284 bool check_idle) {}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000285
286#endif /* !CONFIG_PM */
287
Olivier Deprez157378f2022-04-04 15:47:50 +0200288/**
289 * pm_runtime_idle - Conditionally set up autosuspend of a device or suspend it.
290 * @dev: Target device.
291 *
292 * Invoke the "idle check" callback of @dev and, depending on its return value,
293 * set up autosuspend of @dev or suspend it (depending on whether or not
294 * autosuspend has been enabled for it).
295 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000296static inline int pm_runtime_idle(struct device *dev)
297{
298 return __pm_runtime_idle(dev, 0);
299}
300
Olivier Deprez157378f2022-04-04 15:47:50 +0200301/**
302 * pm_runtime_suspend - Suspend a device synchronously.
303 * @dev: Target device.
304 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000305static inline int pm_runtime_suspend(struct device *dev)
306{
307 return __pm_runtime_suspend(dev, 0);
308}
309
Olivier Deprez157378f2022-04-04 15:47:50 +0200310/**
311 * pm_runtime_autosuspend - Set up autosuspend of a device or suspend it.
312 * @dev: Target device.
313 *
314 * Set up autosuspend of @dev or suspend it (depending on whether or not
315 * autosuspend is enabled for it) without engaging its "idle check" callback.
316 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000317static inline int pm_runtime_autosuspend(struct device *dev)
318{
319 return __pm_runtime_suspend(dev, RPM_AUTO);
320}
321
Olivier Deprez157378f2022-04-04 15:47:50 +0200322/**
323 * pm_runtime_resume - Resume a device synchronously.
324 * @dev: Target device.
325 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000326static inline int pm_runtime_resume(struct device *dev)
327{
328 return __pm_runtime_resume(dev, 0);
329}
330
Olivier Deprez157378f2022-04-04 15:47:50 +0200331/**
332 * pm_request_idle - Queue up "idle check" execution for a device.
333 * @dev: Target device.
334 *
335 * Queue up a work item to run an equivalent of pm_runtime_idle() for @dev
336 * asynchronously.
337 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000338static inline int pm_request_idle(struct device *dev)
339{
340 return __pm_runtime_idle(dev, RPM_ASYNC);
341}
342
Olivier Deprez157378f2022-04-04 15:47:50 +0200343/**
344 * pm_request_resume - Queue up runtime-resume of a device.
345 * @dev: Target device.
346 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000347static inline int pm_request_resume(struct device *dev)
348{
349 return __pm_runtime_resume(dev, RPM_ASYNC);
350}
351
Olivier Deprez157378f2022-04-04 15:47:50 +0200352/**
353 * pm_request_autosuspend - Queue up autosuspend of a device.
354 * @dev: Target device.
355 *
356 * Queue up a work item to run an equivalent pm_runtime_autosuspend() for @dev
357 * asynchronously.
358 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000359static inline int pm_request_autosuspend(struct device *dev)
360{
361 return __pm_runtime_suspend(dev, RPM_ASYNC | RPM_AUTO);
362}
363
Olivier Deprez157378f2022-04-04 15:47:50 +0200364/**
365 * pm_runtime_get - Bump up usage counter and queue up resume of a device.
366 * @dev: Target device.
367 *
368 * Bump up the runtime PM usage counter of @dev and queue up a work item to
369 * carry out runtime-resume of it.
370 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000371static inline int pm_runtime_get(struct device *dev)
372{
373 return __pm_runtime_resume(dev, RPM_GET_PUT | RPM_ASYNC);
374}
375
Olivier Deprez157378f2022-04-04 15:47:50 +0200376/**
377 * pm_runtime_get_sync - Bump up usage counter of a device and resume it.
378 * @dev: Target device.
379 *
380 * Bump up the runtime PM usage counter of @dev and carry out runtime-resume of
381 * it synchronously.
382 *
383 * The possible return values of this function are the same as for
384 * pm_runtime_resume() and the runtime PM usage counter of @dev remains
385 * incremented in all cases, even if it returns an error code.
386 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000387static inline int pm_runtime_get_sync(struct device *dev)
388{
389 return __pm_runtime_resume(dev, RPM_GET_PUT);
390}
391
Olivier Deprez0e641232021-09-23 10:07:05 +0200392/**
393 * pm_runtime_resume_and_get - Bump up usage counter of a device and resume it.
394 * @dev: Target device.
395 *
396 * Resume @dev synchronously and if that is successful, increment its runtime
397 * PM usage counter. Return 0 if the runtime PM usage counter of @dev has been
398 * incremented or a negative error code otherwise.
399 */
400static inline int pm_runtime_resume_and_get(struct device *dev)
401{
402 int ret;
403
404 ret = __pm_runtime_resume(dev, RPM_GET_PUT);
405 if (ret < 0) {
406 pm_runtime_put_noidle(dev);
407 return ret;
408 }
409
410 return 0;
411}
412
Olivier Deprez157378f2022-04-04 15:47:50 +0200413/**
414 * pm_runtime_put - Drop device usage counter and queue up "idle check" if 0.
415 * @dev: Target device.
416 *
417 * Decrement the runtime PM usage counter of @dev and if it turns out to be
418 * equal to 0, queue up a work item for @dev like in pm_request_idle().
419 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000420static inline int pm_runtime_put(struct device *dev)
421{
422 return __pm_runtime_idle(dev, RPM_GET_PUT | RPM_ASYNC);
423}
424
Olivier Deprez157378f2022-04-04 15:47:50 +0200425/**
426 * pm_runtime_put_autosuspend - Drop device usage counter and queue autosuspend if 0.
427 * @dev: Target device.
428 *
429 * Decrement the runtime PM usage counter of @dev and if it turns out to be
430 * equal to 0, queue up a work item for @dev like in pm_request_autosuspend().
431 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000432static inline int pm_runtime_put_autosuspend(struct device *dev)
433{
434 return __pm_runtime_suspend(dev,
435 RPM_GET_PUT | RPM_ASYNC | RPM_AUTO);
436}
437
Olivier Deprez157378f2022-04-04 15:47:50 +0200438/**
439 * pm_runtime_put_sync - Drop device usage counter and run "idle check" if 0.
440 * @dev: Target device.
441 *
442 * Decrement the runtime PM usage counter of @dev and if it turns out to be
443 * equal to 0, invoke the "idle check" callback of @dev and, depending on its
444 * return value, set up autosuspend of @dev or suspend it (depending on whether
445 * or not autosuspend has been enabled for it).
446 *
447 * The possible return values of this function are the same as for
448 * pm_runtime_idle() and the runtime PM usage counter of @dev remains
449 * decremented in all cases, even if it returns an error code.
450 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000451static inline int pm_runtime_put_sync(struct device *dev)
452{
453 return __pm_runtime_idle(dev, RPM_GET_PUT);
454}
455
Olivier Deprez157378f2022-04-04 15:47:50 +0200456/**
457 * pm_runtime_put_sync_suspend - Drop device usage counter and suspend if 0.
458 * @dev: Target device.
459 *
460 * Decrement the runtime PM usage counter of @dev and if it turns out to be
461 * equal to 0, carry out runtime-suspend of @dev synchronously.
462 *
463 * The possible return values of this function are the same as for
464 * pm_runtime_suspend() and the runtime PM usage counter of @dev remains
465 * decremented in all cases, even if it returns an error code.
466 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000467static inline int pm_runtime_put_sync_suspend(struct device *dev)
468{
469 return __pm_runtime_suspend(dev, RPM_GET_PUT);
470}
471
Olivier Deprez157378f2022-04-04 15:47:50 +0200472/**
473 * pm_runtime_put_sync_autosuspend - Drop device usage counter and autosuspend if 0.
474 * @dev: Target device.
475 *
476 * Decrement the runtime PM usage counter of @dev and if it turns out to be
477 * equal to 0, set up autosuspend of @dev or suspend it synchronously (depending
478 * on whether or not autosuspend has been enabled for it).
479 *
480 * The possible return values of this function are the same as for
481 * pm_runtime_autosuspend() and the runtime PM usage counter of @dev remains
482 * decremented in all cases, even if it returns an error code.
483 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000484static inline int pm_runtime_put_sync_autosuspend(struct device *dev)
485{
486 return __pm_runtime_suspend(dev, RPM_GET_PUT | RPM_AUTO);
487}
488
Olivier Deprez157378f2022-04-04 15:47:50 +0200489/**
490 * pm_runtime_set_active - Set runtime PM status to "active".
491 * @dev: Target device.
492 *
493 * Set the runtime PM status of @dev to %RPM_ACTIVE and ensure that dependencies
494 * of it will be taken into account.
495 *
496 * It is not valid to call this function for devices with runtime PM enabled.
497 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000498static inline int pm_runtime_set_active(struct device *dev)
499{
500 return __pm_runtime_set_status(dev, RPM_ACTIVE);
501}
502
Olivier Deprez157378f2022-04-04 15:47:50 +0200503/**
504 * pm_runtime_set_suspended - Set runtime PM status to "suspended".
505 * @dev: Target device.
506 *
507 * Set the runtime PM status of @dev to %RPM_SUSPENDED and ensure that
508 * dependencies of it will be taken into account.
509 *
510 * It is not valid to call this function for devices with runtime PM enabled.
511 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000512static inline int pm_runtime_set_suspended(struct device *dev)
513{
514 return __pm_runtime_set_status(dev, RPM_SUSPENDED);
515}
516
Olivier Deprez157378f2022-04-04 15:47:50 +0200517/**
518 * pm_runtime_disable - Disable runtime PM for a device.
519 * @dev: Target device.
520 *
521 * Prevent the runtime PM framework from working with @dev (by incrementing its
522 * "blocking" counter).
523 *
524 * For each invocation of this function for @dev there must be a matching
525 * pm_runtime_enable() call in order for runtime PM to be enabled for it.
526 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000527static inline void pm_runtime_disable(struct device *dev)
528{
529 __pm_runtime_disable(dev, true);
530}
531
Olivier Deprez157378f2022-04-04 15:47:50 +0200532/**
533 * pm_runtime_use_autosuspend - Allow autosuspend to be used for a device.
534 * @dev: Target device.
535 *
536 * Allow the runtime PM autosuspend mechanism to be used for @dev whenever
537 * requested (or "autosuspend" will be handled as direct runtime-suspend for
538 * it).
539 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000540static inline void pm_runtime_use_autosuspend(struct device *dev)
541{
542 __pm_runtime_use_autosuspend(dev, true);
543}
544
Olivier Deprez157378f2022-04-04 15:47:50 +0200545/**
546 * pm_runtime_dont_use_autosuspend - Prevent autosuspend from being used.
547 * @dev: Target device.
548 *
549 * Prevent the runtime PM autosuspend mechanism from being used for @dev which
550 * means that "autosuspend" will be handled as direct runtime-suspend for it
551 * going forward.
552 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000553static inline void pm_runtime_dont_use_autosuspend(struct device *dev)
554{
555 __pm_runtime_use_autosuspend(dev, false);
556}
557
558#endif