diff options
author | Abner Chang <abner.chang@amd.com> | 2023-10-05 21:13:33 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-10-26 15:39:01 +0000 |
commit | 9a38ddc80656a83337938312e9cd93cd335a678f (patch) | |
tree | f94701ff029ab6422495b91a7f2d935235a07f42 /MdePkg | |
parent | 8765f3eb428f86974033215fe08f8d3d85deedae (diff) | |
download | edk2-9a38ddc80656a83337938312e9cd93cd335a678f.tar.gz edk2-9a38ddc80656a83337938312e9cd93cd335a678f.tar.bz2 edk2-9a38ddc80656a83337938312e9cd93cd335a678f.zip |
MdePkg/Include: Definitions of IPMI Get System Interface Capabilities
Define the structure for IPMI Get System Interface
Capabilities command (0x57)
Signed-off-by: Abner Chang <abner.chang@amd.com>
Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Reviewed-by: Nickle Wang <nicklew@nvidia.com>
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/IndustryStandard/IpmiNetFnApp.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h b/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h index b6bc91f46c..fcb190f2c6 100644 --- a/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h +++ b/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h @@ -1093,6 +1093,14 @@ typedef struct { } IPMI_GET_SYSTEM_INTERFACE_KCS_SMIC_CAPABILITIES_RESPONSE;
//
+// Response of interface capability of SSIF/KCS/SMIC.
+//
+typedef union {
+ IPMI_GET_SYSTEM_INTERFACE_SSIF_CAPABILITIES_RESPONSE *InterfaceSsifCapability;
+ IPMI_GET_SYSTEM_INTERFACE_KCS_SMIC_CAPABILITIES_RESPONSE *InterfaceKcsSmicCapability;
+} IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_RESPONSE;
+
+//
// Definitions for Get System Interface Capabilities command SSIF transaction support
//
#define IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_SSIF_TRANSACTION_SUPPORT_SINGLE_PARTITION_RW 0x0
|