* [PATCH V2 0/2] Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
@ 2021-09-28 2:36 Zeng, Star
2021-09-28 2:36 ` [PATCH V2 1/2] MdePkg: " Zeng, Star
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Zeng, Star @ 2021-09-28 2:36 UTC (permalink / raw)
To: devel; +Cc: Star Zeng
V2: Split patches for packages.
Star Zeng (2):
MdePkg: Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
ShellPkg: Support ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
MdePkg/Include/IndustryStandard/SmBios.h | 7 +++++--
.../SmbiosView/QueryTable.c | 14 +++++++++++++-
2 files changed, 18 insertions(+), 3 deletions(-)
--
2.27.0.windows.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH V2 1/2] MdePkg: Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
2021-09-28 2:36 [PATCH V2 0/2] Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0 Zeng, Star
@ 2021-09-28 2:36 ` Zeng, Star
2021-09-28 2:36 ` [PATCH V2 2/2] ShellPkg: Support " Zeng, Star
2021-09-28 5:30 ` 回复: [edk2-devel] [PATCH V2 0/2] Add " gaoliming
2 siblings, 0 replies; 5+ messages in thread
From: Zeng, Star @ 2021-09-28 2:36 UTC (permalink / raw)
To: devel; +Cc: Star Zeng
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 <star.zeng@intel.com>
---
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.<BR>
+Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.<BR>
(C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP<BR>
(C) Copyright 2015 - 2019 Hewlett Packard Enterprise Development LP<BR>
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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH V2 2/2] ShellPkg: Support ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
2021-09-28 2:36 [PATCH V2 0/2] Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0 Zeng, Star
2021-09-28 2:36 ` [PATCH V2 1/2] MdePkg: " Zeng, Star
@ 2021-09-28 2:36 ` Zeng, Star
2021-09-28 5:30 ` 回复: [edk2-devel] [PATCH V2 0/2] Add " gaoliming
2 siblings, 0 replies; 5+ messages in thread
From: Zeng, Star @ 2021-09-28 2:36 UTC (permalink / raw)
To: devel; +Cc: Star Zeng
This patch adds entry into QueryTable.c for ProcessorUpgradeSocketLGA4677
from SMBIOS 3.5.0.
It also adds entries into QueryTable.c for ProcessorUpgradeSocketLGA4189
and ProcessorUpgradeSocketLGA1200 from SMBIOS 3.4.0.
Signed-off-by: Star Zeng <star.zeng@intel.com>
---
.../SmbiosView/QueryTable.c | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.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.
And give a interface of query a string out of a table.
- Copyright (c) 2005 - 2019, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2005 - 2021, Intel Corporation. All rights reserved.<BR>
(C) Copyright 2016-2019 Hewlett Packard Enterprise Development LP<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
@@ -589,6 +589,18 @@ TABLE_ITEM ProcessorUpgradeTable[] = {
{
0x3C,
L"Socket BGA1528"
+ },
+ {
+ 0x3D,
+ L"Socket LGA4189"
+ },
+ {
+ 0x3E,
+ L"Socket LGA1200"
+ },
+ {
+ 0x3F,
+ L"Socket LGA4677"
}
};
--
2.27.0.windows.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* 回复: [edk2-devel] [PATCH V2 0/2] Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
2021-09-28 2:36 [PATCH V2 0/2] Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0 Zeng, Star
2021-09-28 2:36 ` [PATCH V2 1/2] MdePkg: " Zeng, Star
2021-09-28 2:36 ` [PATCH V2 2/2] ShellPkg: Support " Zeng, Star
@ 2021-09-28 5:30 ` gaoliming
2021-09-30 1:57 ` Zeng, Star
2 siblings, 1 reply; 5+ messages in thread
From: gaoliming @ 2021-09-28 5:30 UTC (permalink / raw)
To: devel, star.zeng
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Zeng, Star
> 发送时间: 2021年9月28日 10:36
> 收件人: devel@edk2.groups.io
> 抄送: Star Zeng <star.zeng@intel.com>
> 主题: [edk2-devel] [PATCH V2 0/2] Add ProcessorUpgradeSocketLGA4677
> from SMBIOS 3.5.0
>
> V2: Split patches for packages.
>
> Star Zeng (2):
> MdePkg: Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
> ShellPkg: Support ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
>
> MdePkg/Include/IndustryStandard/SmBios.h | 7 +++++--
> .../SmbiosView/QueryTable.c | 14
> +++++++++++++-
> 2 files changed, 18 insertions(+), 3 deletions(-)
>
> --
> 2.27.0.windows.1
>
>
>
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [edk2-devel] [PATCH V2 0/2] Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
2021-09-28 5:30 ` 回复: [edk2-devel] [PATCH V2 0/2] Add " gaoliming
@ 2021-09-30 1:57 ` Zeng, Star
0 siblings, 0 replies; 5+ messages in thread
From: Zeng, Star @ 2021-09-30 1:57 UTC (permalink / raw)
To: devel@edk2.groups.io, gaoliming@byosoft.com.cn; +Cc: Zeng, Star
Thanks Liming for the review.
Help push the patches if no other feedback is received. 😊
Star
-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of gaoliming
Sent: 2021年9月28日 13:31
To: devel@edk2.groups.io; Zeng, Star <star.zeng@intel.com>
Subject: 回复: [edk2-devel] [PATCH V2 0/2] Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Zeng, Star
> 发送时间: 2021年9月28日 10:36
> 收件人: devel@edk2.groups.io
> 抄送: Star Zeng <star.zeng@intel.com>
> 主题: [edk2-devel] [PATCH V2 0/2] Add ProcessorUpgradeSocketLGA4677 from
> SMBIOS 3.5.0
>
> V2: Split patches for packages.
>
> Star Zeng (2):
> MdePkg: Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
> ShellPkg: Support ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
>
> MdePkg/Include/IndustryStandard/SmBios.h | 7 +++++--
> .../SmbiosView/QueryTable.c | 14
> +++++++++++++-
> 2 files changed, 18 insertions(+), 3 deletions(-)
>
> --
> 2.27.0.windows.1
>
>
>
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-09-30 1:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-28 2:36 [PATCH V2 0/2] Add ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0 Zeng, Star
2021-09-28 2:36 ` [PATCH V2 1/2] MdePkg: " Zeng, Star
2021-09-28 2:36 ` [PATCH V2 2/2] ShellPkg: Support " Zeng, Star
2021-09-28 5:30 ` 回复: [edk2-devel] [PATCH V2 0/2] Add " gaoliming
2021-09-30 1:57 ` Zeng, Star
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox