123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef ZEPHYR_INCLUDE_DRIVERS_PM_CPU_OPS_H_
- #define ZEPHYR_INCLUDE_DRIVERS_PM_CPU_OPS_H_
- #include <zephyr/types.h>
- #include <stddef.h>
- #include <device.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- int pm_cpu_off(void);
- int pm_cpu_on(unsigned long cpuid, uintptr_t entry_point);
- #ifdef __cplusplus
- }
- #endif
- #endif
|