From f2286518d7f41df21c94e2d8ec10ebeaa429a675 Mon Sep 17 00:00:00 2001 From: ChengYen Yang Date: Thu, 28 Nov 2024 09:57:16 +0800 Subject: [PATCH] [Cherry-Pick] MdePkg/SmBios.h: Add new Socket Type for SMBIOS Type4 (#1229) The patch adds new socket type(Type 4, Offset 32h) for SMBIOS Type4 based on SMBIOS v3.8.0. ## Description The patch adds new socket type(Type 4, Offset 32h) for SMBIOS Type4 based on SMBIOS v3.8.0. - [ ] Impacts functionality? - [ ] Impacts security? - [ ] Breaking change? - [ ] Includes tests? - [ ] Includes documentation? - [x] Backport to release branch? ## How This Was Tested Build and boot on Intel platforms to make sure no errors or boot hang issue happens. ## Integration Instructions N/A Signed-off-by: Jason Zhao Co-authored-by: Jason Zhao --- MdePkg/Include/IndustryStandard/SmBios.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 020733b777..561a2c9a7e 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1020,6 +1020,10 @@ typedef struct { // Add for smbios 3.6 // UINT16 ThreadEnabled; + // + // Add for smbios 3.8 + // + SMBIOS_TABLE_STRING SocketType; } SMBIOS_TABLE_TYPE4; ///