1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * pm_runtime.h - Device run-time power management helper functions.
4  *
5  * Copyright (C) 2009 Rafael J. Wysocki <[email protected]>
6  */
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 /*
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.
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.
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 
42 #define EXPORT_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \
43 	EXPORT_DEV_PM_OPS(name) = { \
44 		RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
45 	}
46 #define EXPORT_GPL_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \
47 	EXPORT_GPL_DEV_PM_OPS(name) = { \
48 		RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
49 	}
50 #define EXPORT_NS_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn, ns) \
51 	EXPORT_NS_DEV_PM_OPS(name, ns) = { \
52 		RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
53 	}
54 #define EXPORT_NS_GPL_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn, ns) \
55 	EXPORT_NS_GPL_DEV_PM_OPS(name, ns) = { \
56 		RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
57 	}
58 
59 #ifdef CONFIG_PM
60 extern struct workqueue_struct *pm_wq;
61 
queue_pm_work(struct work_struct * work)62 static inline bool queue_pm_work(struct work_struct *work)
63 {
64 	return queue_work(pm_wq, work);
65 }
66 
67 extern int pm_generic_runtime_suspend(struct device *dev);
68 extern int pm_generic_runtime_resume(struct device *dev);
69 extern bool pm_runtime_need_not_resume(struct device *dev);
70 extern int pm_runtime_force_suspend(struct device *dev);
71 extern int pm_runtime_force_resume(struct device *dev);
72 
73 extern int __pm_runtime_idle(struct device *dev, int rpmflags);
74 extern int __pm_runtime_suspend(struct device *dev, int rpmflags);
75 extern int __pm_runtime_resume(struct device *dev, int rpmflags);
76 extern int pm_runtime_get_if_active(struct device *dev);
77 extern int pm_runtime_get_if_in_use(struct device *dev);
78 extern int pm_schedule_suspend(struct device *dev, unsigned int delay);
79 extern int __pm_runtime_set_status(struct device *dev, unsigned int status);
80 extern int pm_runtime_barrier(struct device *dev);
81 extern void pm_runtime_enable(struct device *dev);
82 extern void __pm_runtime_disable(struct device *dev, bool check_resume);
83 extern void pm_runtime_allow(struct device *dev);
84 extern void pm_runtime_forbid(struct device *dev);
85 extern void pm_runtime_no_callbacks(struct device *dev);
86 extern void pm_runtime_irq_safe(struct device *dev);
87 extern void __pm_runtime_use_autosuspend(struct device *dev, bool use);
88 extern void pm_runtime_set_autosuspend_delay(struct device *dev, int delay);
89 extern u64 pm_runtime_autosuspend_expiration(struct device *dev);
90 extern void pm_runtime_set_memalloc_noio(struct device *dev, bool enable);
91 extern void pm_runtime_get_suppliers(struct device *dev);
92 extern void pm_runtime_put_suppliers(struct device *dev);
93 extern void pm_runtime_new_link(struct device *dev);
94 extern void pm_runtime_drop_link(struct device_link *link);
95 extern void pm_runtime_release_supplier(struct device_link *link);
96 
97 extern int devm_pm_runtime_enable(struct device *dev);
98 
99 /**
100  * pm_suspend_ignore_children - Set runtime PM behavior regarding children.
101  * @dev: Target device.
102  * @enable: Whether or not to ignore possible dependencies on children.
103  *
104  * The dependencies of @dev on its children will not be taken into account by
105  * the runtime PM framework going forward if @enable is %true, or they will
106  * be taken into account otherwise.
107  */
pm_suspend_ignore_children(struct device * dev,bool enable)108 static inline void pm_suspend_ignore_children(struct device *dev, bool enable)
109 {
110 	dev->power.ignore_children = enable;
111 }
112 
113 /**
114  * pm_runtime_get_noresume - Bump up runtime PM usage counter of a device.
115  * @dev: Target device.
116  */
pm_runtime_get_noresume(struct device * dev)117 static inline void pm_runtime_get_noresume(struct device *dev)
118 {
119 	atomic_inc(&dev->power.usage_count);
120 }
121 
122 /**
123  * pm_runtime_put_noidle - Drop runtime PM usage counter of a device.
124  * @dev: Target device.
125  *
126  * Decrement the runtime PM usage counter of @dev unless it is 0 already.
127  */
pm_runtime_put_noidle(struct device * dev)128 static inline void pm_runtime_put_noidle(struct device *dev)
129 {
130 	atomic_add_unless(&dev->power.usage_count, -1, 0);
131 }
132 
133 /**
134  * pm_runtime_suspended - Check whether or not a device is runtime-suspended.
135  * @dev: Target device.
136  *
137  * Return %true if runtime PM is enabled for @dev and its runtime PM status is
138  * %RPM_SUSPENDED, or %false otherwise.
139  *
140  * Note that the return value of this function can only be trusted if it is
141  * called under the runtime PM lock of @dev or under conditions in which
142  * runtime PM cannot be either disabled or enabled for @dev and its runtime PM
143  * status cannot change.
144  */
pm_runtime_suspended(struct device * dev)145 static inline bool pm_runtime_suspended(struct device *dev)
146 {
147 	return dev->power.runtime_status == RPM_SUSPENDED
148 		&& !dev->power.disable_depth;
149 }
150 
151 /**
152  * pm_runtime_active - Check whether or not a device is runtime-active.
153  * @dev: Target device.
154  *
155  * Return %true if runtime PM is disabled for @dev or its runtime PM status is
156  * %RPM_ACTIVE, or %false otherwise.
157  *
158  * Note that the return value of this function can only be trusted if it is
159  * called under the runtime PM lock of @dev or under conditions in which
160  * runtime PM cannot be either disabled or enabled for @dev and its runtime PM
161  * status cannot change.
162  */
pm_runtime_active(struct device * dev)163 static inline bool pm_runtime_active(struct device *dev)
164 {
165 	return dev->power.runtime_status == RPM_ACTIVE
166 		|| dev->power.disable_depth;
167 }
168 
169 /**
170  * pm_runtime_status_suspended - Check if runtime PM status is "suspended".
171  * @dev: Target device.
172  *
173  * Return %true if the runtime PM status of @dev is %RPM_SUSPENDED, or %false
174  * otherwise, regardless of whether or not runtime PM has been enabled for @dev.
175  *
176  * Note that the return value of this function can only be trusted if it is
177  * called under the runtime PM lock of @dev or under conditions in which the
178  * runtime PM status of @dev cannot change.
179  */
pm_runtime_status_suspended(struct device * dev)180 static inline bool pm_runtime_status_suspended(struct device *dev)
181 {
182 	return dev->power.runtime_status == RPM_SUSPENDED;
183 }
184 
185 /**
186  * pm_runtime_enabled - Check if runtime PM is enabled.
187  * @dev: Target device.
188  *
189  * Return %true if runtime PM is enabled for @dev or %false otherwise.
190  *
191  * Note that the return value of this function can only be trusted if it is
192  * called under the runtime PM lock of @dev or under conditions in which
193  * runtime PM cannot be either disabled or enabled for @dev.
194  */
pm_runtime_enabled(struct device * dev)195 static inline bool pm_runtime_enabled(struct device *dev)
196 {
197 	return !dev->power.disable_depth;
198 }
199 
200 /**
201  * pm_runtime_has_no_callbacks - Check if runtime PM callbacks may be present.
202  * @dev: Target device.
203  *
204  * Return %true if @dev is a special device without runtime PM callbacks or
205  * %false otherwise.
206  */
pm_runtime_has_no_callbacks(struct device * dev)207 static inline bool pm_runtime_has_no_callbacks(struct device *dev)
208 {
209 	return dev->power.no_callbacks;
210 }
211 
212 /**
213  * pm_runtime_mark_last_busy - Update the last access time of a device.
214  * @dev: Target device.
215  *
216  * Update the last access time of @dev used by the runtime PM autosuspend
217  * mechanism to the current time as returned by ktime_get_mono_fast_ns().
218  */
pm_runtime_mark_last_busy(struct device * dev)219 static inline void pm_runtime_mark_last_busy(struct device *dev)
220 {
221 	WRITE_ONCE(dev->power.last_busy, ktime_get_mono_fast_ns());
222 }
223 
224 /**
225  * pm_runtime_is_irq_safe - Check if runtime PM can work in interrupt context.
226  * @dev: Target device.
227  *
228  * Return %true if @dev has been marked as an "IRQ-safe" device (with respect
229  * to runtime PM), in which case its runtime PM callabcks can be expected to
230  * work correctly when invoked from interrupt handlers.
231  */
pm_runtime_is_irq_safe(struct device * dev)232 static inline bool pm_runtime_is_irq_safe(struct device *dev)
233 {
234 	return dev->power.irq_safe;
235 }
236 
237 extern u64 pm_runtime_suspended_time(struct device *dev);
238 
239 #else /* !CONFIG_PM */
240 
queue_pm_work(struct work_struct * work)241 static inline bool queue_pm_work(struct work_struct *work) { return false; }
242 
pm_generic_runtime_suspend(struct device * dev)243 static inline int pm_generic_runtime_suspend(struct device *dev) { return 0; }
pm_generic_runtime_resume(struct device * dev)244 static inline int pm_generic_runtime_resume(struct device *dev) { return 0; }
pm_runtime_need_not_resume(struct device * dev)245 static inline bool pm_runtime_need_not_resume(struct device *dev) {return true; }
pm_runtime_force_suspend(struct device * dev)246 static inline int pm_runtime_force_suspend(struct device *dev) { return 0; }
pm_runtime_force_resume(struct device * dev)247 static inline int pm_runtime_force_resume(struct device *dev) { return 0; }
248 
__pm_runtime_idle(struct device * dev,int rpmflags)249 static inline int __pm_runtime_idle(struct device *dev, int rpmflags)
250 {
251 	return -ENOSYS;
252 }
__pm_runtime_suspend(struct device * dev,int rpmflags)253 static inline int __pm_runtime_suspend(struct device *dev, int rpmflags)
254 {
255 	return -ENOSYS;
256 }
__pm_runtime_resume(struct device * dev,int rpmflags)257 static inline int __pm_runtime_resume(struct device *dev, int rpmflags)
258 {
259 	return 1;
260 }
pm_schedule_suspend(struct device * dev,unsigned int delay)261 static inline int pm_schedule_suspend(struct device *dev, unsigned int delay)
262 {
263 	return -ENOSYS;
264 }
pm_runtime_get_if_in_use(struct device * dev)265 static inline int pm_runtime_get_if_in_use(struct device *dev)
266 {
267 	return -EINVAL;
268 }
pm_runtime_get_if_active(struct device * dev)269 static inline int pm_runtime_get_if_active(struct device *dev)
270 {
271 	return -EINVAL;
272 }
__pm_runtime_set_status(struct device * dev,unsigned int status)273 static inline int __pm_runtime_set_status(struct device *dev,
274 					    unsigned int status) { return 0; }
pm_runtime_barrier(struct device * dev)275 static inline int pm_runtime_barrier(struct device *dev) { return 0; }
pm_runtime_enable(struct device * dev)276 static inline void pm_runtime_enable(struct device *dev) {}
__pm_runtime_disable(struct device * dev,bool c)277 static inline void __pm_runtime_disable(struct device *dev, bool c) {}
pm_runtime_allow(struct device * dev)278 static inline void pm_runtime_allow(struct device *dev) {}
pm_runtime_forbid(struct device * dev)279 static inline void pm_runtime_forbid(struct device *dev) {}
280 
devm_pm_runtime_enable(struct device * dev)281 static inline int devm_pm_runtime_enable(struct device *dev) { return 0; }
282 
pm_suspend_ignore_children(struct device * dev,bool enable)283 static inline void pm_suspend_ignore_children(struct device *dev, bool enable) {}
pm_runtime_get_noresume(struct device * dev)284 static inline void pm_runtime_get_noresume(struct device *dev) {}
pm_runtime_put_noidle(struct device * dev)285 static inline void pm_runtime_put_noidle(struct device *dev) {}
pm_runtime_suspended(struct device * dev)286 static inline bool pm_runtime_suspended(struct device *dev) { return false; }
pm_runtime_active(struct device * dev)287 static inline bool pm_runtime_active(struct device *dev) { return true; }
pm_runtime_status_suspended(struct device * dev)288 static inline bool pm_runtime_status_suspended(struct device *dev) { return false; }
pm_runtime_enabled(struct device * dev)289 static inline bool pm_runtime_enabled(struct device *dev) { return false; }
290 
pm_runtime_no_callbacks(struct device * dev)291 static inline void pm_runtime_no_callbacks(struct device *dev) {}
pm_runtime_irq_safe(struct device * dev)292 static inline void pm_runtime_irq_safe(struct device *dev) {}
pm_runtime_is_irq_safe(struct device * dev)293 static inline bool pm_runtime_is_irq_safe(struct device *dev) { return false; }
294 
pm_runtime_has_no_callbacks(struct device * dev)295 static inline bool pm_runtime_has_no_callbacks(struct device *dev) { return false; }
pm_runtime_mark_last_busy(struct device * dev)296 static inline void pm_runtime_mark_last_busy(struct device *dev) {}
__pm_runtime_use_autosuspend(struct device * dev,bool use)297 static inline void __pm_runtime_use_autosuspend(struct device *dev,
298 						bool use) {}
pm_runtime_set_autosuspend_delay(struct device * dev,int delay)299 static inline void pm_runtime_set_autosuspend_delay(struct device *dev,
300 						int delay) {}
pm_runtime_autosuspend_expiration(struct device * dev)301 static inline u64 pm_runtime_autosuspend_expiration(
302 				struct device *dev) { return 0; }
pm_runtime_set_memalloc_noio(struct device * dev,bool enable)303 static inline void pm_runtime_set_memalloc_noio(struct device *dev,
304 						bool enable){}
pm_runtime_get_suppliers(struct device * dev)305 static inline void pm_runtime_get_suppliers(struct device *dev) {}
pm_runtime_put_suppliers(struct device * dev)306 static inline void pm_runtime_put_suppliers(struct device *dev) {}
pm_runtime_new_link(struct device * dev)307 static inline void pm_runtime_new_link(struct device *dev) {}
pm_runtime_drop_link(struct device_link * link)308 static inline void pm_runtime_drop_link(struct device_link *link) {}
pm_runtime_release_supplier(struct device_link * link)309 static inline void pm_runtime_release_supplier(struct device_link *link) {}
310 
311 #endif /* !CONFIG_PM */
312 
313 /**
314  * pm_runtime_idle - Conditionally set up autosuspend of a device or suspend it.
315  * @dev: Target device.
316  *
317  * Invoke the "idle check" callback of @dev and, depending on its return value,
318  * set up autosuspend of @dev or suspend it (depending on whether or not
319  * autosuspend has been enabled for it).
320  */
pm_runtime_idle(struct device * dev)321 static inline int pm_runtime_idle(struct device *dev)
322 {
323 	return __pm_runtime_idle(dev, 0);
324 }
325 
326 /**
327  * pm_runtime_suspend - Suspend a device synchronously.
328  * @dev: Target device.
329  */
pm_runtime_suspend(struct device * dev)330 static inline int pm_runtime_suspend(struct device *dev)
331 {
332 	return __pm_runtime_suspend(dev, 0);
333 }
334 
335 /**
336  * pm_runtime_autosuspend - Set up autosuspend of a device or suspend it.
337  * @dev: Target device.
338  *
339  * Set up autosuspend of @dev or suspend it (depending on whether or not
340  * autosuspend is enabled for it) without engaging its "idle check" callback.
341  */
pm_runtime_autosuspend(struct device * dev)342 static inline int pm_runtime_autosuspend(struct device *dev)
343 {
344 	return __pm_runtime_suspend(dev, RPM_AUTO);
345 }
346 
347 /**
348  * pm_runtime_resume - Resume a device synchronously.
349  * @dev: Target device.
350  */
pm_runtime_resume(struct device * dev)351 static inline int pm_runtime_resume(struct device *dev)
352 {
353 	return __pm_runtime_resume(dev, 0);
354 }
355 
356 /**
357  * pm_request_idle - Queue up "idle check" execution for a device.
358  * @dev: Target device.
359  *
360  * Queue up a work item to run an equivalent of pm_runtime_idle() for @dev
361  * asynchronously.
362  */
pm_request_idle(struct device * dev)363 static inline int pm_request_idle(struct device *dev)
364 {
365 	return __pm_runtime_idle(dev, RPM_ASYNC);
366 }
367 
368 /**
369  * pm_request_resume - Queue up runtime-resume of a device.
370  * @dev: Target device.
371  */
pm_request_resume(struct device * dev)372 static inline int pm_request_resume(struct device *dev)
373 {
374 	return __pm_runtime_resume(dev, RPM_ASYNC);
375 }
376 
377 /**
378  * pm_request_autosuspend - Queue up autosuspend of a device.
379  * @dev: Target device.
380  *
381  * Queue up a work item to run an equivalent pm_runtime_autosuspend() for @dev
382  * asynchronously.
383  */
pm_request_autosuspend(struct device * dev)384 static inline int pm_request_autosuspend(struct device *dev)
385 {
386 	return __pm_runtime_suspend(dev, RPM_ASYNC | RPM_AUTO);
387 }
388 
389 /**
390  * pm_runtime_get - Bump up usage counter and queue up resume of a device.
391  * @dev: Target device.
392  *
393  * Bump up the runtime PM usage counter of @dev and queue up a work item to
394  * carry out runtime-resume of it.
395  */
pm_runtime_get(struct device * dev)396 static inline int pm_runtime_get(struct device *dev)
397 {
398 	return __pm_runtime_resume(dev, RPM_GET_PUT | RPM_ASYNC);
399 }
400 
401 /**
402  * pm_runtime_get_sync - Bump up usage counter of a device and resume it.
403  * @dev: Target device.
404  *
405  * Bump up the runtime PM usage counter of @dev and carry out runtime-resume of
406  * it synchronously.
407  *
408  * The possible return values of this function are the same as for
409  * pm_runtime_resume() and the runtime PM usage counter of @dev remains
410  * incremented in all cases, even if it returns an error code.
411  * Consider using pm_runtime_resume_and_get() instead of it, especially
412  * if its return value is checked by the caller, as this is likely to result
413  * in cleaner code.
414  */
pm_runtime_get_sync(struct device * dev)415 static inline int pm_runtime_get_sync(struct device *dev)
416 {
417 	return __pm_runtime_resume(dev, RPM_GET_PUT);
418 }
419 
420 /**
421  * pm_runtime_resume_and_get - Bump up usage counter of a device and resume it.
422  * @dev: Target device.
423  *
424  * Resume @dev synchronously and if that is successful, increment its runtime
425  * PM usage counter. Return 0 if the runtime PM usage counter of @dev has been
426  * incremented or a negative error code otherwise.
427  */
pm_runtime_resume_and_get(struct device * dev)428 static inline int pm_runtime_resume_and_get(struct device *dev)
429 {
430 	int ret;
431 
432 	ret = __pm_runtime_resume(dev, RPM_GET_PUT);
433 	if (ret < 0) {
434 		pm_runtime_put_noidle(dev);
435 		return ret;
436 	}
437 
438 	return 0;
439 }
440 
441 /**
442  * pm_runtime_put - Drop device usage counter and queue up "idle check" if 0.
443  * @dev: Target device.
444  *
445  * Decrement the runtime PM usage counter of @dev and if it turns out to be
446  * equal to 0, queue up a work item for @dev like in pm_request_idle().
447  */
pm_runtime_put(struct device * dev)448 static inline int pm_runtime_put(struct device *dev)
449 {
450 	return __pm_runtime_idle(dev, RPM_GET_PUT | RPM_ASYNC);
451 }
452 
453 /**
454  * __pm_runtime_put_autosuspend - Drop device usage counter and queue autosuspend 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_autosuspend().
459  */
__pm_runtime_put_autosuspend(struct device * dev)460 static inline int __pm_runtime_put_autosuspend(struct device *dev)
461 {
462 	return __pm_runtime_suspend(dev, RPM_GET_PUT | RPM_ASYNC | RPM_AUTO);
463 }
464 
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  */
pm_runtime_put_autosuspend(struct device * dev)472 static 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 
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  */
pm_runtime_put_sync(struct device * dev)491 static inline int pm_runtime_put_sync(struct device *dev)
492 {
493 	return __pm_runtime_idle(dev, RPM_GET_PUT);
494 }
495 
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  */
pm_runtime_put_sync_suspend(struct device * dev)507 static inline int pm_runtime_put_sync_suspend(struct device *dev)
508 {
509 	return __pm_runtime_suspend(dev, RPM_GET_PUT);
510 }
511 
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  */
pm_runtime_put_sync_autosuspend(struct device * dev)524 static inline int pm_runtime_put_sync_autosuspend(struct device *dev)
525 {
526 	return __pm_runtime_suspend(dev, RPM_GET_PUT | RPM_AUTO);
527 }
528 
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  */
pm_runtime_set_active(struct device * dev)538 static inline int pm_runtime_set_active(struct device *dev)
539 {
540 	return __pm_runtime_set_status(dev, RPM_ACTIVE);
541 }
542 
543 /**
544  * pm_runtime_set_suspended - Set runtime PM status to "suspended".
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  */
pm_runtime_set_suspended(struct device * dev)552 static inline int pm_runtime_set_suspended(struct device *dev)
553 {
554 	return __pm_runtime_set_status(dev, RPM_SUSPENDED);
555 }
556 
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  */
pm_runtime_disable(struct device * dev)567 static inline void pm_runtime_disable(struct device *dev)
568 {
569 	__pm_runtime_disable(dev, true);
570 }
571 
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).
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).
583  */
pm_runtime_use_autosuspend(struct device * dev)584 static inline void pm_runtime_use_autosuspend(struct device *dev)
585 {
586 	__pm_runtime_use_autosuspend(dev, true);
587 }
588 
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  */
pm_runtime_dont_use_autosuspend(struct device * dev)597 static inline void pm_runtime_dont_use_autosuspend(struct device *dev)
598 {
599 	__pm_runtime_use_autosuspend(dev, false);
600 }
601 
602 #endif
603