blob: 56dd0f825d83729c4e9ffec76609be3a724d101b [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
Xo Wangf542e8b2017-08-09 15:34:16 -07005enum ipmi_app_sysinfo_params
6{
7 IPMI_SYSINFO_SET_STATE = 0x00,
8 IPMI_SYSINFO_SYSTEM_FW_VERSION = 0x01,
9 IPMI_SYSINFO_SYSTEM_NAME = 0x02,
10 IPMI_SYSINFO_PRIMARY_OS_NAME = 0x03,
11 IPMI_SYSINFO_OS_NAME = 0x04,
12 IPMI_SYSINFO_OS_VERSION = 0x05,
13 IPMI_SYSINFO_BMC_URL = 0x06,
14 IPMI_SYSINFO_OS_HYP_URL = 0x07,
15 IPMI_SYSINFO_OEM_START = 0xC0, // Start of range of OEM parameters
vishwabmcba0bd5f2015-09-30 16:50:23 +053016};