diff options
author | Jason Zhao <jason.zhao@intel.com> | 2024-09-02 20:41:42 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-09-03 14:19:55 +0000 |
commit | aebe9625c915c71c420d8ce6b15923dc01385436 (patch) | |
tree | da435eec7cbd8b9923fdde41741661a9e350ca58 | |
parent | 7f505d377b44aeee59f34b3d898f6caf0a0df538 (diff) | |
download | edk2-aebe9625c915c71c420d8ce6b15923dc01385436.tar.gz edk2-aebe9625c915c71c420d8ce6b15923dc01385436.tar.bz2 edk2-aebe9625c915c71c420d8ce6b15923dc01385436.zip |
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 <jason.zhao@intel.com>
-rw-r--r-- | MdePkg/Include/IndustryStandard/SmBios.h | 3 |
1 files changed, 2 insertions, 1 deletions
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;
///
|