blob: 497db8284fe652e25d78466af765d13df8f96707 [file] [log] [blame]
Chris Austenb4f5b922015-10-13 12:44:43 -05001#ifndef __HOST_IPMI_STORAGE_HANDLER_H__
2#define __HOST_IPMI_STORAGE_HANDLER_H__
3
Adriana Kobylak8e30f2a2015-10-20 10:23:51 -05004// IPMI commands for Storage net functions.
Chris Austenb4f5b922015-10-13 12:44:43 -05005enum ipmi_netfn_storage_cmds
6{
7 // Get capability bits
Marri Devender Raofa7b4e22017-07-03 00:52:20 -05008 IPMI_CMD_GET_FRU_INV_AREA_INFO = 0x10,
Dhruvaraj Subhashchandrane66c3b02018-02-07 01:21:56 -06009 IPMI_CMD_GET_REPOSITORY_INFO = 0x20,
Marri Devender Raofa7b4e22017-07-03 00:52:20 -050010 IPMI_CMD_READ_FRU_DATA = 0x11,
Chris Austenb4f5b922015-10-13 12:44:43 -050011 IPMI_CMD_GET_SEL_INFO = 0x40,
12 IPMI_CMD_RESERVE_SEL = 0x42,
Tom Josepha4953392017-06-30 19:09:47 +053013 IPMI_CMD_GET_SEL_ENTRY = 0x43,
Chris Austenb4f5b922015-10-13 12:44:43 -050014 IPMI_CMD_ADD_SEL = 0x44,
Tom Joseph8f4a2aa2017-06-30 19:12:49 +053015 IPMI_CMD_DELETE_SEL = 0x46,
Tom Joseph2f05bb52017-06-30 19:14:49 +053016 IPMI_CMD_CLEAR_SEL = 0x47,
Adriana Kobylak8e30f2a2015-10-20 10:23:51 -050017 IPMI_CMD_GET_SEL_TIME = 0x48,
18 IPMI_CMD_SET_SEL_TIME = 0x49,
Chris Austenb4f5b922015-10-13 12:44:43 -050019
20};
21
Chris Austen41a4b312015-10-25 03:45:42 -050022struct ipmi_add_sel_request_t {
23
24 uint8_t recordid[2];
25 uint8_t recordtype;
26 uint8_t timestampe[4];
27 uint8_t generatorid[2];
28 uint8_t evmrev;
29 uint8_t sensortype;
30 uint8_t sensornumber;
31 uint8_t eventdir;
32 uint8_t eventdata[3];
33};
Marri Devender Raocac383b2017-07-03 13:24:27 -050034
35/**
36 * @struct Read FRU Data command request data
37 */
38struct ReadFruDataRequest
39{
40 uint8_t fruID; ///< FRU Device ID. FFh = reserved
41 uint8_t offsetLS; ///< FRU Inventory Offset to read, LS Byte
42 uint8_t offsetMS; ///< FRU Inventory Offset ro read, MS Byte
43 uint8_t count; ///< Count to read
44}__attribute__ ((packed));
45
46/**
47 * @struct Get FRU inventory area info command request data
48 */
49struct FruInvenAreaInfoRequest
50{
51 uint8_t fruID; ///< FRU Device ID. FFH = reserved.
52}__attribute__ ((packed));
53
54
55/**
56 * @struct Get FRU inventory area info command response
57 */
58struct FruInvenAreaInfoResponse
59{
60 uint8_t completionCode; ///< Completion code
61 uint8_t sizels; ///< Fru Inventory area size in bytes, LS Byte
62 uint8_t sizems; ///< Fru Inventory are size in bytes, MS Byte
63 uint8_t access; ///< 0b Devices is accessed by bytes, 1b - by words
64}__attribute__ ((packed));
65
Dhruvaraj Subhashchandrane66c3b02018-02-07 01:21:56 -060066/**
67 * @struct Get Repository info command response
68 */
69struct GetRepositoryInfoResponse
70{
71 uint8_t sdrVersion; //< SDR version
72 uint8_t recordCountLs; //< Record count LS byte
73 uint8_t recordCountMs; //< Record count MS bte
74 uint8_t freeSpace[2]; //< Free space in bytes, LS first
75 uint8_t additionTimestamp[4]; //< Most recent addition timestamp LS first
76 uint8_t deletionTimestamp[4]; //< Most recent deletion timestamp LS first
77 uint8_t operationSupport; //< Operation support
78}__attribute__ ((packed));
Chris Austenb4f5b922015-10-13 12:44:43 -050079#endif