1 #pragma once
2 
3 #include <stdint.h>
4 
5 // IPMI commands for App net functions.
6 enum ipmi_netfn_app_cmds
7 {
8     // Get capability bits
9     IPMI_CMD_GET_DEVICE_ID = 0x01,
10     IPMI_CMD_GET_SELF_TEST_RESULTS = 0x04,
11     IPMI_CMD_SET_ACPI = 0x06,
12     IPMI_CMD_GET_ACPI = 0x07,
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,
22     IPMI_CMD_GET_CHAN_CIPHER_SUITES = 0x54,
23     IPMI_CMD_SET_SYSTEM_INFO = 0x58,
24     IPMI_CMD_GET_SYSTEM_INFO = 0x59,
25 };
26 
27 enum ipmi_app_sysinfo_params
28 {
29     IPMI_SYSINFO_SET_STATE = 0x00,
30     IPMI_SYSINFO_SYSTEM_FW_VERSION = 0x01,
31     IPMI_SYSINFO_SYSTEM_NAME = 0x02,
32     IPMI_SYSINFO_PRIMARY_OS_NAME = 0x03,
33     IPMI_SYSINFO_OS_NAME = 0x04,
34     IPMI_SYSINFO_OS_VERSION = 0x05,
35     IPMI_SYSINFO_BMC_URL = 0x06,
36     IPMI_SYSINFO_OS_HYP_URL = 0x07,
37     IPMI_SYSINFO_OEM_START = 0xC0, // Start of range of OEM parameters
38 };
39