]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/IndustryStandard/Ipmi.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdePkg / Include / IndustryStandard / Ipmi.h
1 /** @file
2 IPMI 2.0 definitions from the IPMI Specification Version 2.0, Revision 1.1.
3 IPMI Platform Management FRU Information Storage Definition v1.0 Revision 1.3.
4
5 See IPMI specification, Appendix G, Command Assignments
6 and Appendix H, Sub-function Assignments.
7
8 Copyright (c) 1999 - 2018, Intel Corporation. All rights reserved.<BR>
9 Copyright (C) 2023 Advanced Micro Devices, Inc. All rights reserved.<BR>
10 SPDX-License-Identifier: BSD-2-Clause-Patent
11 **/
12
13 #ifndef _IPMI_H_
14 #define _IPMI_H_
15
16 #include <IndustryStandard/IpmiNetFnChassis.h>
17 #include <IndustryStandard/IpmiNetFnBridge.h>
18 #include <IndustryStandard/IpmiNetFnSensorEvent.h>
19 #include <IndustryStandard/IpmiNetFnApp.h>
20 #include <IndustryStandard/IpmiNetFnFirmware.h>
21 #include <IndustryStandard/IpmiNetFnStorage.h>
22 #include <IndustryStandard/IpmiNetFnTransport.h>
23 #include <IndustryStandard/IpmiNetFnGroupExtension.h>
24
25 #include <IndustryStandard/IpmiFruInformationStorage.h>
26
27 //
28 // Generic Completion Codes definitions
29 //
30 #define IPMI_COMP_CODE_NORMAL 0x00
31 #define IPMI_COMP_CODE_NODE_BUSY 0xC0
32 #define IPMI_COMP_CODE_INVALID_COMMAND 0xC1
33 #define IPMI_COMP_CODE_INVALID_FOR_GIVEN_LUN 0xC2
34 #define IPMI_COMP_CODE_TIMEOUT 0xC3
35 #define IPMI_COMP_CODE_OUT_OF_SPACE 0xC4
36 #define IPMI_COMP_CODE_RESERVATION_CANCELED_OR_INVALID 0xC5
37 #define IPMI_COMP_CODE_REQUEST_DATA_TRUNCATED 0xC6
38 #define IPMI_COMP_CODE_INVALID_REQUEST_DATA_LENGTH 0xC7
39 #define IPMI_COMP_CODE_REQUEST_EXCEED_LIMIT 0xC8
40 #define IPMI_COMP_CODE_OUT_OF_RANGE 0xC9
41 #define IPMI_COMP_CODE_CANNOT_RETURN 0xCA
42 #define IPMI_COMP_CODE_NOT_PRESENT 0xCB
43 #define IPMI_COMP_CODE_INVALID_DATA_FIELD 0xCC
44 #define IPMI_COMP_CODE_COMMAND_ILLEGAL 0xCD
45 #define IPMI_COMP_CODE_CMD_RESP_NOT_PROVIDED 0xCE
46 #define IPMI_COMP_CODE_FAIL_DUP_REQUEST 0xCF
47 #define IPMI_COMP_CODE_SDR_REP_IN_UPDATE_MODE 0xD0
48 #define IPMI_COMP_CODE_DEV_IN_FW_UPDATE_MODE 0xD1
49 #define IPMI_COMP_CODE_BMC_INIT_IN_PROGRESS 0xD2
50 #define IPMI_COMP_CODE_DEST_UNAVAILABLE 0xD3
51 #define IPMI_COMP_CODE_INSUFFICIENT_PRIVILEGE 0xD4
52 #define IPMI_COMP_CODE_UNSUPPORTED_IN_PRESENT_STATE 0xD5
53 #define IPMI_COMP_CODE_SUBFUNCTION_DISABLED 0xD6
54 #define IPMI_COMP_CODE_UNSPECIFIED 0xFF
55
56 #define IPMI_CHANNEL_NUMBER_PRIMARY_IPMB 0x00
57 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_1 0x01
58 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_2 0x02
59 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_3 0x03
60 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_4 0x04
61 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_5 0x05
62 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_6 0x06
63 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_7 0x07
64 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_8 0x08
65 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_9 0x09
66 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_10 0x0A
67 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_SPECIFIC_11 0x0B
68 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_RESERVED_12 0x0C
69 #define IPMI_CHANNEL_NUMBER_IMPLEMENTATION_RESERVED_13 0x0D
70 #define IPMI_CHANNEL_NUMBER_PRIMARY_PRESENT_IF 0x0E
71 #define IPMI_CHANNEL_NUMBER_PRIMARY_SYSTEM_INTERFACE 0x0F
72 #endif