blob: a89648dfacc39c59a80c09037450bd97d2ac1aa7 [file] [log] [blame]
Deepak Kodihalli8bf521f2020-07-21 12:39:04 +00001#ifndef STATES_H
2#define STATES_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include "pldm_types.h"
9
Deepak Kodihalli8bf521f2020-07-21 12:39:04 +000010/** @brief PLDM enums for the boot progress state set
11 */
12enum pldm_boot_progress_states {
13 PLDM_BOOT_NOT_ACTIVE = 1,
14 PLDM_BOOT_COMPLETED = 2,
15};
16
17/** @brief PLDM enums for system power states
18 */
19enum pldm_system_power_states {
20 PLDM_OFF_SOFT_GRACEFUL = 9,
21};
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif /* STATES_H */