Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 1 | #ifndef __HOST_IPMI_STORAGE_HANDLER_H__ |
| 2 | #define __HOST_IPMI_STORAGE_HANDLER_H__ |
| 3 | |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 4 | // IPMI commands for Storage net functions. |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 5 | enum ipmi_netfn_storage_cmds |
| 6 | { |
| 7 | // Get capability bits |
Marri Devender Rao | fa7b4e2 | 2017-07-03 00:52:20 -0500 | [diff] [blame] | 8 | IPMI_CMD_GET_FRU_INV_AREA_INFO = 0x10, |
| 9 | IPMI_CMD_READ_FRU_DATA = 0x11, |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 10 | IPMI_CMD_GET_SEL_INFO = 0x40, |
| 11 | IPMI_CMD_RESERVE_SEL = 0x42, |
Tom Joseph | a495339 | 2017-06-30 19:09:47 +0530 | [diff] [blame] | 12 | IPMI_CMD_GET_SEL_ENTRY = 0x43, |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 13 | IPMI_CMD_ADD_SEL = 0x44, |
Tom Joseph | 8f4a2aa | 2017-06-30 19:12:49 +0530 | [diff] [blame] | 14 | IPMI_CMD_DELETE_SEL = 0x46, |
Tom Joseph | 2f05bb5 | 2017-06-30 19:14:49 +0530 | [diff] [blame] | 15 | IPMI_CMD_CLEAR_SEL = 0x47, |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 16 | IPMI_CMD_GET_SEL_TIME = 0x48, |
| 17 | IPMI_CMD_SET_SEL_TIME = 0x49, |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 18 | |
| 19 | }; |
| 20 | |
Chris Austen | 41a4b31 | 2015-10-25 03:45:42 -0500 | [diff] [blame] | 21 | struct ipmi_add_sel_request_t { |
| 22 | |
| 23 | uint8_t recordid[2]; |
| 24 | uint8_t recordtype; |
| 25 | uint8_t timestampe[4]; |
| 26 | uint8_t generatorid[2]; |
| 27 | uint8_t evmrev; |
| 28 | uint8_t sensortype; |
| 29 | uint8_t sensornumber; |
| 30 | uint8_t eventdir; |
| 31 | uint8_t eventdata[3]; |
| 32 | }; |
Marri Devender Rao | cac383b | 2017-07-03 13:24:27 -0500 | [diff] [blame] | 33 | |
| 34 | /** |
| 35 | * @struct Read FRU Data command request data |
| 36 | */ |
| 37 | struct ReadFruDataRequest |
| 38 | { |
| 39 | uint8_t fruID; ///< FRU Device ID. FFh = reserved |
| 40 | uint8_t offsetLS; ///< FRU Inventory Offset to read, LS Byte |
| 41 | uint8_t offsetMS; ///< FRU Inventory Offset ro read, MS Byte |
| 42 | uint8_t count; ///< Count to read |
| 43 | }__attribute__ ((packed)); |
| 44 | |
| 45 | /** |
| 46 | * @struct Get FRU inventory area info command request data |
| 47 | */ |
| 48 | struct FruInvenAreaInfoRequest |
| 49 | { |
| 50 | uint8_t fruID; ///< FRU Device ID. FFH = reserved. |
| 51 | }__attribute__ ((packed)); |
| 52 | |
| 53 | |
| 54 | /** |
| 55 | * @struct Get FRU inventory area info command response |
| 56 | */ |
| 57 | struct FruInvenAreaInfoResponse |
| 58 | { |
| 59 | uint8_t completionCode; ///< Completion code |
| 60 | uint8_t sizels; ///< Fru Inventory area size in bytes, LS Byte |
| 61 | uint8_t sizems; ///< Fru Inventory are size in bytes, MS Byte |
| 62 | uint8_t access; ///< 0b Devices is accessed by bytes, 1b - by words |
| 63 | }__attribute__ ((packed)); |
| 64 | |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 65 | #endif |