Zephyr API Documentation  3.6.0
A Scalable Open Source RTOS
3.6.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
device_runtime.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 Intel Corporation.
3 * Copyright (c) 2021 Nordic Semiconductor ASA
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8#ifndef ZEPHYR_INCLUDE_PM_DEVICE_RUNTIME_H_
9#define ZEPHYR_INCLUDE_PM_DEVICE_RUNTIME_H_
10
11#include <zephyr/device.h>
12#include <zephyr/kernel.h>
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
25#if defined(CONFIG_PM_DEVICE_RUNTIME) || defined(__DOXYGEN__)
39
57int pm_device_runtime_enable(const struct device *dev);
58
72int pm_device_runtime_disable(const struct device *dev);
73
97int pm_device_runtime_get(const struct device *dev);
98
119int pm_device_runtime_put(const struct device *dev);
120
145int pm_device_runtime_put_async(const struct device *dev, k_timeout_t delay);
146
159bool pm_device_runtime_is_enabled(const struct device *dev);
160
161#else
162
163static inline int pm_device_runtime_auto_enable(const struct device *dev)
164{
165 ARG_UNUSED(dev);
166 return 0;
167}
168
169static inline int pm_device_runtime_enable(const struct device *dev)
170{
171 ARG_UNUSED(dev);
172 return 0;
173}
174
175static inline int pm_device_runtime_disable(const struct device *dev)
176{
177 ARG_UNUSED(dev);
178 return 0;
179}
180
181static inline int pm_device_runtime_get(const struct device *dev)
182{
183 ARG_UNUSED(dev);
184 return 0;
185}
186
187static inline int pm_device_runtime_put(const struct device *dev)
188{
189 ARG_UNUSED(dev);
190 return 0;
191}
192
193static inline int pm_device_runtime_put_async(const struct device *dev,
194 k_timeout_t delay)
195{
196 ARG_UNUSED(dev);
197 ARG_UNUSED(delay);
198 return 0;
199}
200
201static inline bool pm_device_runtime_is_enabled(const struct device *dev)
202{
203 ARG_UNUSED(dev);
204 return false;
205}
206
207#endif
208
211#ifdef __cplusplus
212}
213#endif
214
215#endif /* ZEPHYR_INCLUDE_PM_DEVICE_RUNTIME_H_ */
int pm_device_runtime_get(const struct device *dev)
Resume a device based on usage count.
bool pm_device_runtime_is_enabled(const struct device *dev)
Check if device runtime is enabled for a given device.
int pm_device_runtime_put(const struct device *dev)
Suspend a device based on usage count.
int pm_device_runtime_put_async(const struct device *dev, k_timeout_t delay)
Suspend a device based on usage count (asynchronously).
int pm_device_runtime_disable(const struct device *dev)
Disable device runtime PM.
int pm_device_runtime_enable(const struct device *dev)
Enable device runtime PM.
int pm_device_runtime_auto_enable(const struct device *dev)
Automatically enable device runtime based on devicetree properties.
Public kernel APIs.
Runtime device structure (in ROM) per driver instance.
Definition: device.h:387
Kernel timeout type.
Definition: sys_clock.h:65