blob: 3d377fbc8f84823f1ff791e613c805fa9bf99284 [file] [log] [blame]
Patrick Venture46470a32018-09-07 19:26:25 -07001#pragma once
vishwabmcba0bd5f2015-09-30 16:50:23 +05302
vishwa36993272015-11-20 12:43:49 -06003#include <stdint.h>
4
Adriana Kobylakdfc8d772015-10-20 09:34:48 -05005// IPMI commands for App net functions.
vishwabmcba0bd5f2015-09-30 16:50:23 +05306enum ipmi_netfn_app_cmds
7{
8 // Get capability bits
Patrick Venture0b02be92018-08-31 11:55:55 -07009 IPMI_CMD_GET_DEVICE_ID = 0x01,
10 IPMI_CMD_GET_SELF_TEST_RESULTS = 0x04,
11 IPMI_CMD_SET_ACPI = 0x06,
12 IPMI_CMD_GET_DEVICE_GUID = 0x08,
13 IPMI_CMD_RESET_WD = 0x22,
14 IPMI_CMD_SET_WD = 0x24,
15 IPMI_CMD_GET_WD = 0x25,
16 IPMI_CMD_GET_CAP_BIT = 0x36,
17 IPMI_CMD_GET_SYS_GUID = 0x37,
18 IPMI_CMD_SET_CHAN_ACCESS = 0x40,
19 IPMI_CMD_GET_CHANNEL_ACCESS = 0x41,
20 IPMI_CMD_GET_CHAN_INFO = 0x42,
Tom Joseph7cbe2282018-03-21 21:17:33 +053021 IPMI_CMD_GET_CHAN_CIPHER_SUITES = 0x54,
Xo Wangf542e8b2017-08-09 15:34:16 -070022 IPMI_CMD_SET_SYSTEM_INFO = 0x58,
23 IPMI_CMD_GET_SYSTEM_INFO = 0x59,
24};
25
26enum ipmi_app_sysinfo_params
27{
28 IPMI_SYSINFO_SET_STATE = 0x00,
29 IPMI_SYSINFO_SYSTEM_FW_VERSION = 0x01,
30 IPMI_SYSINFO_SYSTEM_NAME = 0x02,
31 IPMI_SYSINFO_PRIMARY_OS_NAME = 0x03,
32 IPMI_SYSINFO_OS_NAME = 0x04,
33 IPMI_SYSINFO_OS_VERSION = 0x05,
34 IPMI_SYSINFO_BMC_URL = 0x06,
35 IPMI_SYSINFO_OS_HYP_URL = 0x07,
36 IPMI_SYSINFO_OEM_START = 0xC0, // Start of range of OEM parameters
vishwabmcba0bd5f2015-09-30 16:50:23 +053037};