diff options
author | Revathy V <revathyv@ami.com> | 2024-10-14 11:29:35 +0530 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-10-22 18:25:54 +0000 |
commit | 9dc7fb819c87830bc0eb1081a21c194888a9ad67 (patch) | |
tree | 69ed6cebbb2690160e187b267ab6cd87220d9347 /MdePkg | |
parent | ad522d9609c955f4256a22b42d6bdfb41c291694 (diff) | |
download | edk2-9dc7fb819c87830bc0eb1081a21c194888a9ad67.tar.gz edk2-9dc7fb819c87830bc0eb1081a21c194888a9ad67.tar.bz2 edk2-9dc7fb819c87830bc0eb1081a21c194888a9ad67.zip |
MdePkg: Updated Type 4 Info as per Smbios 3.8.0
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4861
Added PROCESSOR_FAMILY_NAME support in MdePkg.
Signed-off-by: Revathy <revathyv@ami.com>
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/IndustryStandard/SmBios.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 8ba61297e8..d82d04b595 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -706,6 +706,7 @@ typedef enum { ProcessorFamilyIntelCoreI5 = 0xCD,
ProcessorFamilyIntelCoreI3 = 0xCE,
ProcessorFamilyIntelCoreI9 = 0xCF,
+ ProcessorFamilyIntelXeonD = 0xD0, /// Smbios spec 3.8 updated this value
ProcessorFamilyViaC7M = 0xD2,
ProcessorFamilyViaC7D = 0xD3,
ProcessorFamilyViaC7 = 0xD4,
|