From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web10.8900.1632796585489871416 for ; Mon, 27 Sep 2021 19:36:26 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: star.zeng@intel.com) X-IronPort-AV: E=McAfee;i="6200,9189,10120"; a="224640454" X-IronPort-AV: E=Sophos;i="5.85,328,1624345200"; d="scan'208";a="224640454" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Sep 2021 19:36:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.85,328,1624345200"; d="scan'208";a="561684192" Received: from shwdeopenlab103.ccr.corp.intel.com ([10.239.182.254]) by fmsmga002.fm.intel.com with ESMTP; 27 Sep 2021 19:36:20 -0700 From: "Zeng, Star" To: devel@edk2.groups.io Cc: Star Zeng Subject: [PATCH V2 1/2] MdePkg: Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0 Date: Tue, 28 Sep 2021 10:36:16 +0800 Message-Id: <20210928023617.3864-2-star.zeng@intel.com> X-Mailer: git-send-email 2.27.0.windows.1 In-Reply-To: <20210928023617.3864-1-star.zeng@intel.com> References: <20210928023617.3864-1-star.zeng@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This patch adds ProcessorUpgradeSocketLGA4677 definition into Smbios.h from SMBIOS 3.5.0. It also adds ProcessorUpgradeSocketLGA4189 and ProcessorUpgradeSocketLGA1200 definitions into from SMBIOS 3.4.0. Signed-off-by: Star Zeng --- MdePkg/Include/IndustryStandard/SmBios.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 6918f58cce44..2c2b32b8d462 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.3.0. -Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.
(C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP
(C) Copyright 2015 - 2019 Hewlett Packard Enterprise Development LP
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -810,7 +810,10 @@ typedef enum { ProcessorUpgradeSocketLGA2066 = 0x39, ProcessorUpgradeSocketBGA1392 = 0x3A, ProcessorUpgradeSocketBGA1510 = 0x3B, - ProcessorUpgradeSocketBGA1528 = 0x3C + ProcessorUpgradeSocketBGA1528 = 0x3C, + ProcessorUpgradeSocketLGA4189 = 0x3D, + ProcessorUpgradeSocketLGA1200 = 0x3E, + ProcessorUpgradeSocketLGA4677 = 0x3F } PROCESSOR_UPGRADE; /// -- 2.27.0.windows.1