pm_priv.h 709 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright (c) 2021 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_SUBSYS_PM_PRIV_H_
  7. #define ZEPHYR_SUBSYS_PM_PRIV_H_
  8. #include <pm/pm.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /**
  13. * @brief Function to suspend the devices in PM device list
  14. */
  15. int pm_suspend_devices(void);
  16. /**
  17. * @brief Function to put the devices in PM device list in low power state
  18. */
  19. int pm_low_power_devices(void);
  20. /**
  21. * @brief Function to force suspend the devices in PM device list
  22. */
  23. int pm_force_suspend_devices(void);
  24. /**
  25. * @brief Function to resume the devices in PM device list
  26. */
  27. void pm_resume_devices(void);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif /* ZEPHYR_SUBSYS_PM_PRIV_H_ */