1*46470a38SPatrick Venture #pragma once
2*46470a38SPatrick Venture 
3*46470a38SPatrick Venture #include <cstdint>
4*46470a38SPatrick Venture 
5*46470a38SPatrick Venture // IPMI commands for Storage net functions.
6*46470a38SPatrick Venture enum ipmi_netfn_storage_cmds
7*46470a38SPatrick Venture {
8*46470a38SPatrick Venture     // Get capability bits
9*46470a38SPatrick Venture     IPMI_CMD_GET_FRU_INV_AREA_INFO = 0x10,
10*46470a38SPatrick Venture     IPMI_CMD_GET_REPOSITORY_INFO = 0x20,
11*46470a38SPatrick Venture     IPMI_CMD_READ_FRU_DATA = 0x11,
12*46470a38SPatrick Venture     IPMI_CMD_RESERVE_SDR = 0x22,
13*46470a38SPatrick Venture     IPMI_CMD_GET_SDR = 0x23,
14*46470a38SPatrick Venture     IPMI_CMD_GET_SEL_INFO = 0x40,
15*46470a38SPatrick Venture     IPMI_CMD_RESERVE_SEL = 0x42,
16*46470a38SPatrick Venture     IPMI_CMD_GET_SEL_ENTRY = 0x43,
17*46470a38SPatrick Venture     IPMI_CMD_ADD_SEL = 0x44,
18*46470a38SPatrick Venture     IPMI_CMD_DELETE_SEL = 0x46,
19*46470a38SPatrick Venture     IPMI_CMD_CLEAR_SEL = 0x47,
20*46470a38SPatrick Venture     IPMI_CMD_GET_SEL_TIME = 0x48,
21*46470a38SPatrick Venture     IPMI_CMD_SET_SEL_TIME = 0x49,
22*46470a38SPatrick Venture 
23*46470a38SPatrick Venture };
24