policy.h 700 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2018 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_PM_POLICY_H_
  7. #define ZEPHYR_INCLUDE_PM_POLICY_H_
  8. #include <pm/state.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /**
  13. * @brief Function to get the next PM state
  14. *
  15. * This function is called by the power subsystem when the system is
  16. * idle and returns the most appropriate state based on the number of
  17. * ticks to the next event.
  18. *
  19. * @param ticks The number of ticks to the next scheduled event.
  20. *
  21. * @return The power state the system should use.
  22. */
  23. struct pm_state_info pm_policy_next_state(int32_t ticks);
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* ZEPHYR_INCLUDE_PM_POLICY_H_ */