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