policy_dummy.c 1.1 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/state.h>
  9. #include <pm/policy.h>
  10. #include <logging/log.h>
  11. LOG_MODULE_DECLARE(power, CONFIG_PM_LOG_LEVEL);
  12. #define STATE_ACTIVE \
  13. (struct pm_state_info){PM_STATE_ACTIVE, 0, 0}
  14. static const struct pm_state_info pm_dummy_states[] =
  15. PM_STATE_INFO_DT_ITEMS_LIST(DT_NODELABEL(cpu0));
  16. struct pm_state_info pm_policy_next_state(int32_t ticks)
  17. {
  18. static struct pm_state_info cur_pm_state_info;
  19. int i = (int)cur_pm_state_info.state;
  20. uint8_t states_len = ARRAY_SIZE(pm_dummy_states);
  21. if (states_len == 0) {
  22. /* No power states to go through. */
  23. return STATE_ACTIVE;
  24. }
  25. do {
  26. i = (i + 1) % states_len;
  27. if (!pm_constraint_get(
  28. pm_dummy_states[i].state)) {
  29. continue;
  30. }
  31. cur_pm_state_info = pm_dummy_states[i];
  32. LOG_DBG("Selected power state: %u", pm_dummy_states[i].state);
  33. return pm_dummy_states[i];
  34. } while (pm_dummy_states[i].state != cur_pm_state_info.state);
  35. LOG_DBG("No suitable power state found!");
  36. return STATE_ACTIVE;
  37. }