pm_ctrl.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright (c) 2018 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <zephyr.h>
  7. #include <string.h>
  8. #include <device.h>
  9. #include <sys/atomic.h>
  10. #include <pm/state.h>
  11. #define LOG_LEVEL CONFIG_PM_LOG_LEVEL /* From power module Kconfig */
  12. #include <logging/log.h>
  13. LOG_MODULE_DECLARE(power);
  14. #define PM_STATES_LEN (1 + PM_STATE_SOFT_OFF - PM_STATE_ACTIVE)
  15. static atomic_t power_state_disable_count[PM_STATES_LEN];
  16. __weak void pm_constraint_set(enum pm_state state)
  17. {
  18. atomic_val_t v;
  19. __ASSERT(state < PM_STATES_LEN, "Invalid power state!");
  20. v = atomic_inc(&power_state_disable_count[state]);
  21. __ASSERT(v < UINT_MAX, "Power state disable count overflowed!");
  22. /* Make compiler happy when assertions are disabled. */
  23. (void)(v);
  24. }
  25. __weak void pm_constraint_release(enum pm_state state)
  26. {
  27. atomic_val_t v;
  28. __ASSERT(state < PM_STATES_LEN, "Invalid power state!");
  29. v = atomic_dec(&power_state_disable_count[state]);
  30. __ASSERT(v > 0, "Power state disable count underflowed!");
  31. /* Make compiler happy when assertions are disabled. */
  32. (void)(v);
  33. }
  34. __weak bool pm_constraint_get(enum pm_state state)
  35. {
  36. __ASSERT(state < PM_STATES_LEN, "Invalid power state!");
  37. return (atomic_get(&power_state_disable_count[state]) == 0);
  38. }