blob: 295743755481fc40f6a0f5f1003fcc03739d0520 [file] [log] [blame]
vishwabmcba0bd5f2015-09-30 16:50:23 +05301#ifndef __HOST_IPMI_APP_HANDLER_H__
2#define __HOST_IPMI_APP_HANDLER_H__
3
Adriana Kobylakdfc8d772015-10-20 09:34:48 -05004// IPMI commands for App net functions.
vishwabmcba0bd5f2015-09-30 16:50:23 +05305enum ipmi_netfn_app_cmds
6{
7 // Get capability bits
Adriana Kobylakdfc8d772015-10-20 09:34:48 -05008 IPMI_CMD_GET_DEVICE_ID = 0x01,
9 IPMI_CMD_SET_ACPI = 0x06,
10 IPMI_CMD_RESET_WD = 0x22,
11 IPMI_CMD_SET_WD = 0x24,
12 IPMI_CMD_SET_BMC_GLOBAL_ENABLES = 0x2E,
13 IPMI_CMD_READ_EVENT = 0x35,
14 IPMI_CMD_GET_CAP_BIT = 0x36,
Chris Austen6caf28b2015-10-13 12:40:40 -050015
vishwabmcba0bd5f2015-09-30 16:50:23 +053016};
17
18#endif