Patrick Venture | 46470a3 | 2018-09-07 19:26:25 -0700 | [diff] [blame] | 1 | #pragma once |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 2 | |
vishwa | 3699327 | 2015-11-20 12:43:49 -0600 | [diff] [blame] | 3 | #include <stdint.h> |
| 4 | |
Xo Wang | f542e8b | 2017-08-09 15:34:16 -0700 | [diff] [blame] | 5 | enum 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 |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 16 | }; |