blob: 2c4ea22cd85647dc94512f926a14a165165fcf33 [file] [log] [blame]
vishwabmcba0bd5f2015-09-30 16:50:23 +05301#ifndef __HOST_IPMI_APP_HANDLER_H__
2#define __HOST_IPMI_APP_HANDLER_H__
3
4// IPMI commands for net functions.
5enum ipmi_netfn_app_cmds
6{
7 // Get capability bits
Chris Austen6caf28b2015-10-13 12:40:40 -05008 IPMI_CMD_RESET_WD = 0x22,
9 IPMI_CMD_SET_WD = 0x24,
vishwabmcba0bd5f2015-09-30 16:50:23 +053010 IPMI_CMD_GET_CAP_BIT = 0x36,
Chris Austen6caf28b2015-10-13 12:40:40 -050011 IPMI_CMD_GET_DEVICE_ID = 0x00,
12 IPMI_CMD_SET_ACPI = 0x06,
13 IPMI_CMD_READ_EVENT = 0x35,
14
vishwabmcba0bd5f2015-09-30 16:50:23 +053015};
16
17#endif