summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNickle Wang <nicklew@nvidia.com>2024-05-15 15:50:15 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2024-05-30 08:13:01 +0000
commitc695e3182aa7497833f1b0fc69f6776fec8cb8cf (patch)
tree743a1afd7de81c5f19007a459b95a211edeb302d
parentcd4cebabf5834c403c9d9ac4f162e8336024bbcd (diff)
downloadedk2-c695e3182aa7497833f1b0fc69f6776fec8cb8cf.zip
edk2-c695e3182aa7497833f1b0fc69f6776fec8cb8cf.tar.gz
edk2-c695e3182aa7497833f1b0fc69f6776fec8cb8cf.tar.bz2
MdePkg: Add Ipmi definitions header file for OEM net function
Add net function definitions for OEM/Non-IPMI group request and response Signed-off-by: Nickle Wang <nicklew@nvidia.com> Cc: Abner Chang <abner.chang@amd.com> Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com> Cc: Nick Ramirez <nramirez@nvidia.com> Reviewed-by: Abner Chang <abner.chang@amd.com>
-rw-r--r--MdePkg/Include/IndustryStandard/IpmiNetFnOem.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/MdePkg/Include/IndustryStandard/IpmiNetFnOem.h b/MdePkg/Include/IndustryStandard/IpmiNetFnOem.h
new file mode 100644
index 0000000..48c5dbd
--- /dev/null
+++ b/MdePkg/Include/IndustryStandard/IpmiNetFnOem.h
@@ -0,0 +1,18 @@
+/** @file
+ IPMI 2.0 definitions from the IPMI Specification Version 2.0, Revision 1.1.
+
+ Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
+
+ SPDX-License-Identifier: BSD-2-Clause-Patent
+**/
+
+#ifndef IPMI_NET_FN_OEM_H_
+#define IPMI_NET_FN_OEM_H_
+
+//
+// Net function definition for OEM/Group command
+//
+#define IPMI_NETFN_OEM 0x2E
+#define IPMI_NETFN_OEM_GROUP 0x2F
+
+#endif