From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mx.groups.io with SMTP id smtpd.web10.8593.1632794654433280898 for ; Mon, 27 Sep 2021 19:04:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.20, mailfrom: star.zeng@intel.com) X-IronPort-AV: E=McAfee;i="6200,9189,10120"; a="211851213" X-IronPort-AV: E=Sophos;i="5.85,328,1624345200"; d="scan'208";a="211851213" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Sep 2021 19:04:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.85,328,1624345200"; d="scan'208";a="561666972" Received: from shwdeopenlab103.ccr.corp.intel.com ([10.239.182.254]) by fmsmga002.fm.intel.com with ESMTP; 27 Sep 2021 19:04:12 -0700 From: "Zeng, Star" To: devel@edk2.groups.io Cc: Star Zeng Subject: [PATCH] MdePkg,ShellPkg: Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0 Date: Tue, 28 Sep 2021 10:04:07 +0800 Message-Id: <20210928020407.3424-1-star.zeng@intel.com> X-Mailer: git-send-email 2.27.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable This patch adds ProcessorUpgradeSocketLGA4677 definition into Smbios.h from SMBIOS 3.5.0 and entry into QueryTable.c. It also adds ProcessorUpgradeSocketLGA4189 and ProcessorUpgradeSocketLGA1200 into from SMBIOS 3.4.0 and entries into QueryTable.c. Signed-off-by: Star Zeng --- MdePkg/Include/IndustryStandard/SmBios.h | 7 +++++-- .../SmbiosView/QueryTable.c | 14 +++++++++++++- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/Indu= stryStandard/SmBios.h index 6918f58cce44..2c2b32b8d462 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1,7 +1,7 @@ /** @file=0D Industry Standard Definitions of SMBIOS Table Specification v3.3.0.=0D =0D -Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.
=0D +Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.
=0D (C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP
=0D (C) Copyright 2015 - 2019 Hewlett Packard Enterprise Development LP
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D @@ -810,7 +810,10 @@ typedef enum { ProcessorUpgradeSocketLGA2066 =3D 0x39,=0D ProcessorUpgradeSocketBGA1392 =3D 0x3A,=0D ProcessorUpgradeSocketBGA1510 =3D 0x3B,=0D - ProcessorUpgradeSocketBGA1528 =3D 0x3C=0D + ProcessorUpgradeSocketBGA1528 =3D 0x3C,=0D + ProcessorUpgradeSocketLGA4189 =3D 0x3D,=0D + ProcessorUpgradeSocketLGA1200 =3D 0x3E,=0D + ProcessorUpgradeSocketLGA4677 =3D 0x3F=0D } PROCESSOR_UPGRADE;=0D =0D ///=0D diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTa= ble.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index 7fc9d38a3b03..c312a7f8f227 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -2,7 +2,7 @@ Build a table, each item is (Key, Info) pair.=0D And give a interface of query a string out of a table.=0D =0D - Copyright (c) 2005 - 2019, Intel Corporation. All rights reserved.
=0D + Copyright (c) 2005 - 2021, Intel Corporation. All rights reserved.
=0D (C) Copyright 2016-2019 Hewlett Packard Enterprise Development LP
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D @@ -589,6 +589,18 @@ TABLE_ITEM ProcessorUpgradeTable[] =3D { {=0D 0x3C,=0D L"Socket BGA1528"=0D + },=0D + {=0D + 0x3D,=0D + L"Socket LGA4189"=0D + },=0D + {=0D + 0x3E,=0D + L"Socket LGA1200"=0D + },=0D + {=0D + 0x3F,=0D + L"Socket LGA4677"=0D }=0D };=0D =0D --=20 2.27.0.windows.1