From aebe9625c915c71c420d8ce6b15923dc01385436 Mon Sep 17 00:00:00 2001 From: Jason Zhao Date: Mon, 2 Sep 2024 20:41:42 +0800 Subject: [PATCH] MdePkg/SmBios.h: Add new Processor Upgrade definition for SMBIOS Type4 The patch adds ProcessorUpgradeInvalid(0xFF) definition in Processor Upgrade(Type 4, Offset 19h) for SMBIOS Type4 based on SMBIOS v3.8.0. Processor Upgrade should be 0xFF when no other valid enumeration is available. Signed-off-by: Jason Zhao --- MdePkg/Include/IndustryStandard/SmBios.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 9d0dec2575..8ba61297e8 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -887,7 +887,8 @@ typedef enum { ProcessorUpgradeSocketBGA2551 = 0x54, ProcessorUpgradeSocketLGA1851 = 0x55, ProcessorUpgradeSocketBGA2114 = 0x56, - ProcessorUpgradeSocketBGA2833 = 0x57 + ProcessorUpgradeSocketBGA2833 = 0x57, + ProcessorUpgradeInvalid = 0xFF } PROCESSOR_UPGRADE; ///