blob: 56c1a8b279f079c3b0f4ace7da001cb5c41826b6 [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
4// IPMI commands for net functions.
5enum ipmi_netfn_storage_cmds
6{
7 // Get capability bits
8 IPMI_CMD_SET_SEL_TIME = 0x49,
9 IPMI_CMD_WRITE_FRU_DATA = 0x12,
10 IPMI_CMD_GET_SEL_INFO = 0x40,
11 IPMI_CMD_RESERVE_SEL = 0x42,
12 IPMI_CMD_ADD_SEL = 0x44,
13
14};
15
16#endif