From 47723854fd6dbe665ceb2dc214cbf88b8aa247ea Mon Sep 17 00:00:00 2001 From: Jason Lou Date: Sat, 24 Feb 2024 22:48:40 +0800 Subject: [PATCH] MdePkg/SmBios.h: Add New ProcessorFamily definitions for SMBIOS Type4 The patch adds new ProcessorFamily definitions for SMBIOS Type4 based on SMBIOS 3.8.0. Signed-off-by: Jason Lou Reviewed-by: Liming Gao Reviewed-by: Star Zeng Reviewed-by: Zhichao Gao Cc: Zhiguang Liu Cc: Dandan Bi Cc: Star Zeng Cc: Zhichao Gao Cc: Benny Lin Cc: Gua Guo Cc: Michael D Kinney Cc: Liming Gao --- MdePkg/Include/IndustryStandard/SmBios.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 56cec615a0..bdb28fc3a3 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1,7 +1,7 @@ /** @file - Industry Standard Definitions of SMBIOS Table Specification v3.7.0. + Industry Standard Definitions of SMBIOS Table Specification v3.8.0. -Copyright (c) 2006 - 2023, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2024, Intel Corporation. All rights reserved.
(C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP
(C) Copyright 2015 - 2019 Hewlett Packard Enterprise Development LP
Copyright (c) 2022, AMD Incorporated. All rights reserved.
@@ -774,7 +774,15 @@ typedef enum { ProcessorFamilyQuadCoreLoongson3B = 0x026E, ProcessorFamilyMultiCoreLoongson3B = 0x026F, ProcessorFamilyMultiCoreLoongson3C = 0x0270, - ProcessorFamilyMultiCoreLoongson3D = 0x0271 + ProcessorFamilyMultiCoreLoongson3D = 0x0271, + ProcessorFamilyIntelCore3 = 0x0300, + ProcessorFamilyIntelCore5 = 0x0301, + ProcessorFamilyIntelCore7 = 0x0302, + ProcessorFamilyIntelCore9 = 0x0303, + ProcessorFamilyIntelCoreUltra3 = 0x0304, + ProcessorFamilyIntelCoreUltra5 = 0x0305, + ProcessorFamilyIntelCoreUltra7 = 0x0306, + ProcessorFamilyIntelCoreUltra9 = 0x0307 } PROCESSOR_FAMILY2_DATA; ///