1 2 enum class fb_bic_cmds : uint8_t 3 { 4 CMD_OEM_BIC_INFO = 0x1, 5 CMD_OEM_GET_BIC_GPIO_STATE = 0x3, 6 CMD_OEM_SEND_POST_BUFFER_TO_BMC = 0x8, 7 CMD_OEM_SET_HOST_POWER_STATE = 0x0C, 8 CMD_OEM_GET_FLASH_SIZE = 0x19, 9 CMD_OEM_CLEAR_CMOS = 0x25, 10 }; 11 12 // Flash size response length 13 constexpr uint8_t flashSizeRespLen = 0x7; 14 15 const char* dbusObj = "/xyz/openbmc_project/state/boot/raw"; 16 17 const char* dbusService = "xyz.openbmc_project.State.Boot.Raw"; 18 19 constexpr auto systemdService = "org.freedesktop.systemd1"; 20 constexpr auto systemdObjPath = "/org/freedesktop/systemd1"; 21 constexpr auto systemdInterface = "org.freedesktop.systemd1.Manager"; 22 23 enum class HostPowerState : uint8_t 24 { 25 HOST_POWER_OFF = 0x0, 26 HOST_POWER_ON = 0x1, 27 }; 28