vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 1 | #ifndef __HOST_IPMI_APP_HANDLER_H__ |
| 2 | #define __HOST_IPMI_APP_HANDLER_H__ |
| 3 | |
vishwa | 3699327 | 2015-11-20 12:43:49 -0600 | [diff] [blame] | 4 | #include <stdint.h> |
| 5 | |
Adriana Kobylak | dfc8d77 | 2015-10-20 09:34:48 -0500 | [diff] [blame] | 6 | // IPMI commands for App net functions. |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 7 | enum ipmi_netfn_app_cmds |
| 8 | { |
| 9 | // Get capability bits |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 10 | IPMI_CMD_GET_DEVICE_ID = 0x01, |
| 11 | IPMI_CMD_GET_SELF_TEST_RESULTS = 0x04, |
| 12 | IPMI_CMD_SET_ACPI = 0x06, |
| 13 | IPMI_CMD_GET_DEVICE_GUID = 0x08, |
| 14 | IPMI_CMD_RESET_WD = 0x22, |
| 15 | IPMI_CMD_SET_WD = 0x24, |
| 16 | IPMI_CMD_GET_WD = 0x25, |
| 17 | IPMI_CMD_GET_CAP_BIT = 0x36, |
| 18 | IPMI_CMD_GET_SYS_GUID = 0x37, |
| 19 | IPMI_CMD_SET_CHAN_ACCESS = 0x40, |
| 20 | IPMI_CMD_GET_CHANNEL_ACCESS = 0x41, |
| 21 | IPMI_CMD_GET_CHAN_INFO = 0x42, |
Tom Joseph | 7cbe228 | 2018-03-21 21:17:33 +0530 | [diff] [blame] | 22 | IPMI_CMD_GET_CHAN_CIPHER_SUITES = 0x54, |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 23 | }; |
| 24 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 25 | #endif |