1 #pragma once 2 3 #include <cstdint> 4 5 // IPMI commands for Storage net functions. 6 enum ipmi_netfn_storage_cmds 7 { 8 // Get capability bits 9 IPMI_CMD_GET_FRU_INV_AREA_INFO = 0x10, 10 IPMI_CMD_GET_REPOSITORY_INFO = 0x20, 11 IPMI_CMD_READ_FRU_DATA = 0x11, 12 IPMI_CMD_RESERVE_SDR = 0x22, 13 IPMI_CMD_GET_SDR = 0x23, 14 IPMI_CMD_GET_SEL_INFO = 0x40, 15 IPMI_CMD_RESERVE_SEL = 0x42, 16 IPMI_CMD_GET_SEL_ENTRY = 0x43, 17 IPMI_CMD_ADD_SEL = 0x44, 18 IPMI_CMD_DELETE_SEL = 0x46, 19 IPMI_CMD_CLEAR_SEL = 0x47, 20 IPMI_CMD_GET_SEL_TIME = 0x48, 21 IPMI_CMD_SET_SEL_TIME = 0x49, 22 23 }; 24 25 struct ipmi_add_sel_request_t 26 { 27 28 uint8_t recordid[2]; 29 uint8_t recordtype; 30 uint8_t timestamp[4]; 31 uint8_t generatorid[2]; 32 uint8_t evmrev; 33 uint8_t sensortype; 34 uint8_t sensornumber; 35 uint8_t eventdir; 36 uint8_t eventdata[3]; 37 }; 38 39 /** 40 * @struct Read FRU Data command request data 41 */ 42 struct ReadFruDataRequest 43 { 44 uint8_t fruID; ///< FRU Device ID. FFh = reserved 45 uint8_t offsetLS; ///< FRU Inventory Offset to read, LS Byte 46 uint8_t offsetMS; ///< FRU Inventory Offset ro read, MS Byte 47 uint8_t count; ///< Count to read 48 } __attribute__((packed)); 49 50 /** 51 * @struct Read FRU Data command response data 52 */ 53 struct ReadFruDataResponse 54 { 55 uint8_t count; ///< Response data Count. 56 uint8_t data[]; ///< Response data. 57 } __attribute__((packed)); 58 59 /** 60 * @struct Get Repository info command response 61 */ 62 struct GetRepositoryInfoResponse 63 { 64 uint8_t sdrVersion; //< SDR version 65 uint8_t recordCountLs; //< Record count LS byte 66 uint8_t recordCountMs; //< Record count MS bte 67 uint8_t freeSpace[2]; //< Free space in bytes, LS first 68 uint8_t additionTimestamp[4]; //< Most recent addition timestamp LS first 69 uint8_t deletionTimestamp[4]; //< Most recent deletion timestamp LS first 70 uint8_t operationSupport; //< Operation support 71 } __attribute__((packed)); 72