pm_cpu_ops.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright 2021 Carlo Caione <ccaione@baylibre.com>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_PM_CPU_OPS_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_PM_CPU_OPS_H_
  8. /**
  9. * @file
  10. * @brief Public API for CPU Power Management
  11. */
  12. #include <zephyr/types.h>
  13. #include <stddef.h>
  14. #include <device.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @defgroup power_management_cpu_api CPU Power Management
  20. * @{
  21. */
  22. /**
  23. * @brief Power down the calling core
  24. *
  25. * This call is intended for use in hotplug. A core that is powered down by
  26. * cpu_off can only be powered up again in response to a cpu_on
  27. *
  28. * @retval The call does not return when successful
  29. * @retval -ENOTSUP If the operation is not supported
  30. */
  31. int pm_cpu_off(void);
  32. /**
  33. * @brief Power up a core
  34. *
  35. * This call is used to power up cores that either have not yet been booted
  36. * into the calling supervisory software or have been previously powered down
  37. * with a cpu_off call
  38. *
  39. * @param cpuid CPU id to power on
  40. * @param entry_point Address at which the core must commence execution
  41. *
  42. * @retval 0 on success, a negative errno otherwise
  43. * @retval -ENOTSUP If the operation is not supported
  44. */
  45. int pm_cpu_on(unsigned long cpuid, uintptr_t entry_point);
  46. #ifdef __cplusplus
  47. }
  48. #endif
  49. /**
  50. * @}
  51. */
  52. #endif /* ZEPHYR_INCLUDE_DRIVERS_PM_CPU_OPS_H_ */