blob: ca20acd5b1cea550300c06dde626f0cd8ab360d7 [file] [log] [blame]
#ifndef STATES_H
#define STATES_H
#ifdef __cplusplus
extern "C" {
#endif
#include "pldm_types.h"
/** @brief PLDM state set ids
*/
enum pldm_state_set_ids {
PLDM_BOOT_PROGRESS_STATE = 196,
PLDM_SYSTEM_POWER_STATE = 260,
};
/** @brief PLDM enums for the boot progress state set
*/
enum pldm_boot_progress_states {
PLDM_BOOT_NOT_ACTIVE = 1,
PLDM_BOOT_COMPLETED = 2,
};
/** @brief PLDM enums for system power states
*/
enum pldm_system_power_states {
PLDM_OFF_SOFT_GRACEFUL = 9,
};
#ifdef __cplusplus
}
#endif
#endif /* STATES_H */