REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3827
Add new Socket info to Processor Upgrade field in Smbios structure According to SMBIOS spec - dmtf 3.6.0 WIP50 (DSP0134) Change-Id: Ia0f9b64370bef22ba277eec155d5df8358c89b72 Signed-off-by: WesleyX Hsu <[email protected]> Cc: Chandana C Kumar <[email protected]> Cc: Liming Gao <[email protected]> Cc: HerbX Yeh <[email protected]> Cc: NickX Peng <[email protected]> Cc: TinaX Y Chen <[email protected]> Signed-off-by: WesleyX Hsu <[email protected]> --- MdePkg/Include/IndustryStandard/SmBios.h | 5 ++++- .../SmbiosView/QueryTable.c | 12 ++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 828ea6d753..cbd3f3ee89 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -812,7 +812,10 @@ typedef enum { ProcessorUpgradeSocketBGA1528 = 0x3C, ProcessorUpgradeSocketLGA4189 = 0x3D, ProcessorUpgradeSocketLGA1200 = 0x3E, - ProcessorUpgradeSocketLGA4677 = 0x3F + ProcessorUpgradeSocketLGA4677 = 0x3F, + ProcessorUpgradeSocketLGA1700 = 0x40, + ProcessorUpgradeSocketBGA1744 = 0x41, + ProcessorUpgradeSocketBGA1781 = 0x42, } PROCESSOR_UPGRADE; /// diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index c4a6acb167..dae1721598 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -601,6 +601,18 @@ TABLE_ITEM ProcessorUpgradeTable[] = { { 0x3F, L"Socket LGA4677" + }, + { + 0x40, + L"Socket LGA1700" + }, + { + 0x41, + L"Socket BGA1744" + }, + { + 0x42, + L"Socket BGA1781" } }; -- 2.26.2.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#86448): https://edk2.groups.io/g/devel/message/86448 Mute This Topic: https://groups.io/mt/88996015/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
