policy_residency.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (c) 2018 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <zephyr.h>
  7. #include <kernel.h>
  8. #include <pm/pm.h>
  9. #include <pm/policy.h>
  10. #define LOG_LEVEL CONFIG_PM_LOG_LEVEL /* From power module Kconfig */
  11. #include <logging/log.h>
  12. LOG_MODULE_DECLARE(power);
  13. static const struct pm_state_info pm_min_residency[] =
  14. PM_STATE_INFO_DT_ITEMS_LIST(DT_NODELABEL(cpu0));
  15. struct pm_state_info pm_policy_next_state(int32_t ticks)
  16. {
  17. int i;
  18. for (i = ARRAY_SIZE(pm_min_residency) - 1; i >= 0; i--) {
  19. uint32_t min_residency, exit_latency;
  20. if (!pm_constraint_get(pm_min_residency[i].state)) {
  21. continue;
  22. }
  23. min_residency = k_us_to_ticks_ceil32(
  24. pm_min_residency[i].min_residency_us);
  25. exit_latency = k_us_to_ticks_ceil32(
  26. pm_min_residency[i].exit_latency_us);
  27. __ASSERT(min_residency > exit_latency,
  28. "min_residency_us < exit_latency_us");
  29. if ((ticks == K_TICKS_FOREVER) ||
  30. (ticks >= (min_residency + exit_latency))) {
  31. LOG_DBG("Selected power state %d "
  32. "(ticks: %d, min_residency: %u)",
  33. pm_min_residency[i].state, ticks,
  34. pm_min_residency[i].min_residency_us);
  35. return pm_min_residency[i];
  36. }
  37. }
  38. LOG_DBG("No suitable power state found!");
  39. return (struct pm_state_info){PM_STATE_ACTIVE, 0, 0};
  40. }