summaryrefslogtreecommitdiffstats
path: root/ShellPkg
diff options
context:
space:
mode:
authorJason Lou <yun.lou@intel.com>2024-04-15 18:23:30 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2024-04-16 08:25:44 +0000
commit7ea05d8fe9b269cc999e26bf40e355491c23c435 (patch)
treea80c55d25630c54ea005bde2a6bc2d3fd5e02350 /ShellPkg
parentbfcf2d66c7d772f2becb9035eee6a81b3b69f504 (diff)
downloadedk2-7ea05d8fe9b269cc999e26bf40e355491c23c435.tar.gz
edk2-7ea05d8fe9b269cc999e26bf40e355491c23c435.tar.bz2
edk2-7ea05d8fe9b269cc999e26bf40e355491c23c435.zip
ShellPkg/SmbiosView: Support New ProcessorUpgrade for SMBIOS Type4
The patch updates SmbiosView to support new ProcessorUpgrade for SMBIOS Type4 based on SMBIOS 3.8.0. Signed-off-by: Jason Lou <yun.lou@intel.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> Reviewed-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Zhichao Gao <zhichao.gao@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Star Zeng <star.zeng@intel.com> Cc: Zhichao Gao <zhichao.gao@intel.com>
Diffstat (limited to 'ShellPkg')
-rw-r--r--ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c30
1 files changed, 29 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
index f57093c91c..36f8739d6c 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.
And give a interface of query a string out of a table.
- Copyright (c) 2005 - 2023, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2005 - 2024, Intel Corporation. All rights reserved.<BR>
(C) Copyright 2016-2019 Hewlett Packard Enterprise Development LP<BR>
Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
@@ -670,6 +670,34 @@ TABLE_ITEM ProcessorUpgradeTable[] = {
{
0x50,
L"Socket LGA7529"
+ },
+ {
+ 0x51,
+ L"Socket BGA1964"
+ },
+ {
+ 0x52,
+ L"Socket BGA1792"
+ },
+ {
+ 0x53,
+ L"Socket BGA2049"
+ },
+ {
+ 0x54,
+ L"Socket BGA2551"
+ },
+ {
+ 0x55,
+ L"Socket LGA1851"
+ },
+ {
+ 0x56,
+ L"Socket BGA2114"
+ },
+ {
+ 0x57,
+ L"Socket BGA2833"
}
};