From dd58d1227c102ad4a799002f16b3a8c796d7d7cc Mon Sep 17 00:00:00 2001 From: Shenbagadevi R Date: Thu, 2 May 2024 13:06:00 +0530 Subject: [PATCH] MdePkg: Added support for Smbios 3.7.0 Spec REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4563 As per Smbios 3.7.0 spec, added CXL 3.0 support in Type 9, also added PMIC & RCD manufacturer ID and Revision information in Type17. Cc: Sainadh N Cc: Sundaresan S Cc: Srinivasan M Cc: Ramesh R Signed-off-by: Shenbagadevi R Reviewed-by: Gaoliming --- MdePkg/Include/IndustryStandard/SmBios.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 020733b777..c07cfcb814 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1524,7 +1524,7 @@ typedef struct { UINT8 AsyncSurpriseRemoval : 1; UINT8 FlexbusSlotCxl10Capable : 1; UINT8 FlexbusSlotCxl20Capable : 1; - UINT8 Reserved : 1; ///< Set to 0. + UINT8 FlexbusSlotCxl30Capable : 1; /// SMBIOS spec 3.7.0 updated CXL 3.0 support } MISC_SLOT_CHARACTERISTICS2; /// @@ -2027,6 +2027,13 @@ typedef struct { // UINT32 ExtendedSpeed; UINT32 ExtendedConfiguredMemorySpeed; + // + // Add for smbios 3.7.0 + // + UINT16 Pmic0ManufacturerID; + UINT16 Pmic0RevisionNumber; + UINT16 RcdManufacturerID; + UINT16 RcdRevisionNumber; } SMBIOS_TABLE_TYPE17; ///