diff options
author | Eduardo Cuevas Farfan <eduardo.cuevas.farfan@intel.com> | 2023-08-29 22:26:46 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-08-31 13:20:19 +0000 |
commit | 4c8144dd665619731b6c3c19f4f1ae664b69fa4b (patch) | |
tree | bf928439158b4502e5d9d0bb511a3de9d1edf304 /ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | |
parent | a60eef3afa8d23341393a89115dce2ab6e304bbb (diff) | |
download | edk2-4c8144dd665619731b6c3c19f4f1ae664b69fa4b.tar.gz edk2-4c8144dd665619731b6c3c19f4f1ae664b69fa4b.tar.bz2 edk2-4c8144dd665619731b6c3c19f4f1ae664b69fa4b.zip |
ShellPkg: Add ProcessorUpgradeSocket definitions from SMBIOS 3.7.0
This patch adds below definitions from SMBIOS 3.7.0 into QueryTable.c
- ProcessorUpgradeSocketAM5
- ProcessorUpgradeSocketSP5
- ProcessorUpgradeSocketSP6
- ProcessorUpgradeSocketBGA883
- ProcessorUpgradeSocketBGA1190
- ProcessorUpgradeSocketBGA4129
- ProcessorUpgradeSocketLGA4710
- ProcessorUpgradeSocketLGA7529
Signed-off-by: Eduardo Cuevas Farfan <eduardo.cuevas.farfan@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Diffstat (limited to 'ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index 29b5a29001..82bb7a41f0 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 - 2021, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2005 - 2023, 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
@@ -638,6 +638,38 @@ TABLE_ITEM ProcessorUpgradeTable[] = { {
0x48,
L"Socket BGA5773"
+ },
+ {
+ 0x49,
+ L"Socket AM5"
+ },
+ {
+ 0x4A,
+ L"Socket SP5"
+ },
+ {
+ 0x4B,
+ L"Socket SP6"
+ },
+ {
+ 0x4C,
+ L"Socket BGA883"
+ },
+ {
+ 0x4D,
+ L"Socket BGA1190"
+ },
+ {
+ 0x4E,
+ L"Socket BGA4129"
+ },
+ {
+ 0x4F,
+ L"Socket LGA4710"
+ },
+ {
+ 0x50,
+ L"Socket LGA7529"
}
};
|