public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions for SMBIOS Type4
@ 2024-02-25  9:06 Jason Lou
  2024-02-25  9:06 ` [edk2-devel] [PATCH v4 2/2] ShellPkg/SmbiosView: Support New ProcessorFamily " Jason Lou
  2024-02-26 13:32 ` 回复: [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions " gaoliming via groups.io
  0 siblings, 2 replies; 6+ messages in thread
From: Jason Lou @ 2024-02-25  9:06 UTC (permalink / raw)
  To: devel
  Cc: Jason Lou, Zhiguang Liu, Dandan Bi, Star Zeng, Zhichao Gao,
	Benny Lin, Gua Guo, Michael D Kinney, Liming Gao

From: Jason Lou <yun.lou@intel.com>

The patch adds new ProcessorFamily definitions for SMBIOS Type4 based on
SMBIOS 3.8.0.

Signed-off-by: Jason Lou <yun.lou@intel.com>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: Dandan Bi <dandan.bi@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Cc: Zhichao Gao <zhichao.gao@intel.com>
Cc: Benny Lin <benny.lin@intel.com>
Cc: Gua Guo <gua.guo@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
---
 MdePkg/Include/IndustryStandard/SmBios.h | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h
index 56cec615a0..bdb28fc3a3 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.7.0.
+  Industry Standard Definitions of SMBIOS Table Specification v3.8.0.
 
-Copyright (c) 2006 - 2023, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2024, 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>
 Copyright (c) 2022, AMD Incorporated. All rights reserved.<BR>
@@ -774,7 +774,15 @@ typedef enum {
   ProcessorFamilyQuadCoreLoongson3B  = 0x026E,
   ProcessorFamilyMultiCoreLoongson3B = 0x026F,
   ProcessorFamilyMultiCoreLoongson3C = 0x0270,
-  ProcessorFamilyMultiCoreLoongson3D = 0x0271
+  ProcessorFamilyMultiCoreLoongson3D = 0x0271,
+  ProcessorFamilyIntelCore3          = 0x0300,
+  ProcessorFamilyIntelCore5          = 0x0301,
+  ProcessorFamilyIntelCore7          = 0x0302,
+  ProcessorFamilyIntelCore9          = 0x0303,
+  ProcessorFamilyIntelCoreUltra3     = 0x0304,
+  ProcessorFamilyIntelCoreUltra5     = 0x0305,
+  ProcessorFamilyIntelCoreUltra7     = 0x0306,
+  ProcessorFamilyIntelCoreUltra9     = 0x0307
 } PROCESSOR_FAMILY2_DATA;
 
 ///
-- 
2.39.1.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#115921): https://edk2.groups.io/g/devel/message/115921
Mute This Topic: https://groups.io/mt/104560570/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [edk2-devel] [PATCH v4 2/2] ShellPkg/SmbiosView: Support New ProcessorFamily for SMBIOS Type4
  2024-02-25  9:06 [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions for SMBIOS Type4 Jason Lou
@ 2024-02-25  9:06 ` Jason Lou
  2024-02-26 13:33   ` [edk2-devel] 回复: " gaoliming via groups.io
  2024-02-26 13:32 ` 回复: [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions " gaoliming via groups.io
  1 sibling, 1 reply; 6+ messages in thread
From: Jason Lou @ 2024-02-25  9:06 UTC (permalink / raw)
  To: devel; +Cc: Jason Lou, Liming Gao, Zhichao Gao

From: Jason Lou <yun.lou@intel.com>

The patch updates SmbiosView to support new ProcessorFamily for SMBIOS
Type4 based on SMBIOS 3.8.0.

Signed-off-by: Jason Lou <yun.lou@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhichao Gao <zhichao.gao@intel.com>
---
 ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c | 34 +++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
index 4f29eedc58..f96317b314 100644
--- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
+++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
@@ -1,7 +1,7 @@
 /** @file
   Module for clarifying the content of the smbios structure element information.
 
-  Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR>
+  Copyright (c) 2005 - 2024, Intel Corporation. All rights reserved.<BR>
   Copyright (c) 1985 - 2022, American Megatrends International LLC.<BR>
   (C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR>
   (C) Copyright 2015-2019 Hewlett Packard Enterprise Development LP<BR>
@@ -2678,6 +2678,38 @@ DisplayProcessorFamily2 (
       Print (L"MultiCoreLoongson3D\n");
       break;
 
+    case 0x300:
+      Print (L"IntelCore3\n");
+      break;
+
+    case 0x301:
+      Print (L"IntelCore5\n");
+      break;
+
+    case 0x302:
+      Print (L"IntelCore7\n");
+      break;
+
+    case 0x303:
+      Print (L"IntelCore9\n");
+      break;
+
+    case 0x304:
+      Print (L"IntelCoreUltra3\n");
+      break;
+
+    case 0x305:
+      Print (L"IntelCoreUltra5\n");
+      break;
+
+    case 0x306:
+      Print (L"IntelCoreUltra7\n");
+      break;
+
+    case 0x307:
+      Print (L"IntelCoreUltra9\n");
+      break;
+
     default:
       ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_SMBIOSVIEW_PRINTINFO_UNDEFINED_PROC_FAMILY), gShellDebug1HiiHandle);
   }
-- 
2.39.1.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#115922): https://edk2.groups.io/g/devel/message/115922
Mute This Topic: https://groups.io/mt/104560571/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* 回复: [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions for SMBIOS Type4
  2024-02-25  9:06 [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions for SMBIOS Type4 Jason Lou
  2024-02-25  9:06 ` [edk2-devel] [PATCH v4 2/2] ShellPkg/SmbiosView: Support New ProcessorFamily " Jason Lou
@ 2024-02-26 13:32 ` gaoliming via groups.io
  2024-02-26 15:36   ` Zeng, Star
  1 sibling, 1 reply; 6+ messages in thread
From: gaoliming via groups.io @ 2024-02-26 13:32 UTC (permalink / raw)
  To: devel, yun.lou
  Cc: 'Zhiguang Liu', 'Dandan Bi', 'Star Zeng',
	'Zhichao Gao', 'Benny Lin', 'Gua Guo',
	'Michael D Kinney'

Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>

> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Jason Lou
> 发送时间: 2024年2月25日 17:06
> 收件人: devel@edk2.groups.io
> 抄送: Jason Lou <yun.lou@intel.com>; Zhiguang Liu
<zhiguang.liu@intel.com>;
> Dandan Bi <dandan.bi@intel.com>; Star Zeng <star.zeng@intel.com>; Zhichao
> Gao <zhichao.gao@intel.com>; Benny Lin <benny.lin@intel.com>; Gua Guo
> <gua.guo@intel.com>; Michael D Kinney <michael.d.kinney@intel.com>;
> Liming Gao <gaoliming@byosoft.com.cn>
> 主题: [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New
> ProcessorFamily definitions for SMBIOS Type4
> 
> From: Jason Lou <yun.lou@intel.com>
> 
> The patch adds new ProcessorFamily definitions for SMBIOS Type4 based on
> SMBIOS 3.8.0.
> 
> Signed-off-by: Jason Lou <yun.lou@intel.com>
> Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> Cc: Dandan Bi <dandan.bi@intel.com>
> Cc: Star Zeng <star.zeng@intel.com>
> Cc: Zhichao Gao <zhichao.gao@intel.com>
> Cc: Benny Lin <benny.lin@intel.com>
> Cc: Gua Guo <gua.guo@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> ---
>  MdePkg/Include/IndustryStandard/SmBios.h | 14 +++++++++++---
>  1 file changed, 11 insertions(+), 3 deletions(-)
> 
> diff --git a/MdePkg/Include/IndustryStandard/SmBios.h
> b/MdePkg/Include/IndustryStandard/SmBios.h
> index 56cec615a0..bdb28fc3a3 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.7.0.
> 
> +  Industry Standard Definitions of SMBIOS Table Specification v3.8.0.
> 
> 
> 
> -Copyright (c) 2006 - 2023, Intel Corporation. All rights reserved.<BR>
> 
> +Copyright (c) 2006 - 2024, 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>
> 
>  Copyright (c) 2022, AMD Incorporated. All rights reserved.<BR>
> 
> @@ -774,7 +774,15 @@ typedef enum {
>    ProcessorFamilyQuadCoreLoongson3B  = 0x026E,
> 
>    ProcessorFamilyMultiCoreLoongson3B = 0x026F,
> 
>    ProcessorFamilyMultiCoreLoongson3C = 0x0270,
> 
> -  ProcessorFamilyMultiCoreLoongson3D = 0x0271
> 
> +  ProcessorFamilyMultiCoreLoongson3D = 0x0271,
> 
> +  ProcessorFamilyIntelCore3          = 0x0300,
> 
> +  ProcessorFamilyIntelCore5          = 0x0301,
> 
> +  ProcessorFamilyIntelCore7          = 0x0302,
> 
> +  ProcessorFamilyIntelCore9          = 0x0303,
> 
> +  ProcessorFamilyIntelCoreUltra3     = 0x0304,
> 
> +  ProcessorFamilyIntelCoreUltra5     = 0x0305,
> 
> +  ProcessorFamilyIntelCoreUltra7     = 0x0306,
> 
> +  ProcessorFamilyIntelCoreUltra9     = 0x0307
> 
>  } PROCESSOR_FAMILY2_DATA;
> 
> 
> 
>  ///
> 
> --
> 2.39.1.windows.1
> 
> 
> 
> -=-=-=-=-=-=
> Groups.io Links: You receive all messages sent to this group.
> View/Reply Online (#115921):
> https://edk2.groups.io/g/devel/message/115921
> Mute This Topic: https://groups.io/mt/104560570/4905953
> Group Owner: devel+owner@edk2.groups.io
> Unsubscribe: https://edk2.groups.io/g/devel/unsub
> [gaoliming@byosoft.com.cn]
> -=-=-=-=-=-=
> 





-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#115955): https://edk2.groups.io/g/devel/message/115955
Mute This Topic: https://groups.io/mt/104581663/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [edk2-devel] 回复: [PATCH v4 2/2] ShellPkg/SmbiosView: Support New ProcessorFamily for SMBIOS Type4
  2024-02-25  9:06 ` [edk2-devel] [PATCH v4 2/2] ShellPkg/SmbiosView: Support New ProcessorFamily " Jason Lou
@ 2024-02-26 13:33   ` gaoliming via groups.io
  2024-02-28  1:14     ` [edk2-devel] " Gao, Zhichao
  0 siblings, 1 reply; 6+ messages in thread
From: gaoliming via groups.io @ 2024-02-26 13:33 UTC (permalink / raw)
  To: 'Jason', devel; +Cc: 'Zhichao Gao'

Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>

> -----邮件原件-----
> 发件人: Jason <yun.lou@intel.com>
> 发送时间: 2024年2月25日 17:06
> 收件人: devel@edk2.groups.io
> 抄送: Jason Lou <yun.lou@intel.com>; Liming Gao
> <gaoliming@byosoft.com.cn>; Zhichao Gao <zhichao.gao@intel.com>
> 主题: [PATCH v4 2/2] ShellPkg/SmbiosView: Support New ProcessorFamily for
> SMBIOS Type4
> 
> From: Jason Lou <yun.lou@intel.com>
> 
> The patch updates SmbiosView to support new ProcessorFamily for SMBIOS
> Type4 based on SMBIOS 3.8.0.
> 
> Signed-off-by: Jason Lou <yun.lou@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Zhichao Gao <zhichao.gao@intel.com>
> ---
>  ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c |
> 34 +++++++++++++++++++-
>  1 file changed, 33 insertions(+), 1 deletion(-)
> 
> diff --git
> a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> index 4f29eedc58..f96317b314 100644
> --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> +++
> b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> @@ -1,7 +1,7 @@
>  /** @file
> 
>    Module for clarifying the content of the smbios structure element
> information.
> 
> 
> 
> -  Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR>
> 
> +  Copyright (c) 2005 - 2024, Intel Corporation. All rights reserved.<BR>
> 
>    Copyright (c) 1985 - 2022, American Megatrends International LLC.<BR>
> 
>    (C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR>
> 
>    (C) Copyright 2015-2019 Hewlett Packard Enterprise Development
> LP<BR>
> 
> @@ -2678,6 +2678,38 @@ DisplayProcessorFamily2 (
>        Print (L"MultiCoreLoongson3D\n");
> 
>        break;
> 
> 
> 
> +    case 0x300:
> 
> +      Print (L"IntelCore3\n");
> 
> +      break;
> 
> +
> 
> +    case 0x301:
> 
> +      Print (L"IntelCore5\n");
> 
> +      break;
> 
> +
> 
> +    case 0x302:
> 
> +      Print (L"IntelCore7\n");
> 
> +      break;
> 
> +
> 
> +    case 0x303:
> 
> +      Print (L"IntelCore9\n");
> 
> +      break;
> 
> +
> 
> +    case 0x304:
> 
> +      Print (L"IntelCoreUltra3\n");
> 
> +      break;
> 
> +
> 
> +    case 0x305:
> 
> +      Print (L"IntelCoreUltra5\n");
> 
> +      break;
> 
> +
> 
> +    case 0x306:
> 
> +      Print (L"IntelCoreUltra7\n");
> 
> +      break;
> 
> +
> 
> +    case 0x307:
> 
> +      Print (L"IntelCoreUltra9\n");
> 
> +      break;
> 
> +
> 
>      default:
> 
>        ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN
> (STR_SMBIOSVIEW_PRINTINFO_UNDEFINED_PROC_FAMILY),
> gShellDebug1HiiHandle);
> 
>    }
> 
> --
> 2.39.1.windows.1





-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#115956): https://edk2.groups.io/g/devel/message/115956
Mute This Topic: https://groups.io/mt/104581677/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions for SMBIOS Type4
  2024-02-26 13:32 ` 回复: [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions " gaoliming via groups.io
@ 2024-02-26 15:36   ` Zeng, Star
  0 siblings, 0 replies; 6+ messages in thread
From: Zeng, Star @ 2024-02-26 15:36 UTC (permalink / raw)
  To: gaoliming, devel@edk2.groups.io, Lou, Yun
  Cc: Liu, Zhiguang, Bi, Dandan, Gao, Zhichao, Lin, Benny, Guo, Gua,
	Kinney, Michael D

Reviewed-by: Star Zeng <star.zeng@intel.com> to this series.

-----Original Message-----
From: gaoliming <gaoliming@byosoft.com.cn> 
Sent: Monday, February 26, 2024 9:32 PM
To: devel@edk2.groups.io; Lou, Yun <yun.lou@intel.com>
Cc: Liu, Zhiguang <zhiguang.liu@intel.com>; Bi, Dandan <dandan.bi@intel.com>; Zeng, Star <star.zeng@intel.com>; Gao, Zhichao <zhichao.gao@intel.com>; Lin, Benny <benny.lin@intel.com>; Guo, Gua <gua.guo@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>
Subject: 回复: [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions for SMBIOS Type4

Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>

> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Jason Lou
> 发送时间: 2024年2月25日 17:06
> 收件人: devel@edk2.groups.io
> 抄送: Jason Lou <yun.lou@intel.com>; Zhiguang Liu
<zhiguang.liu@intel.com>;
> Dandan Bi <dandan.bi@intel.com>; Star Zeng <star.zeng@intel.com>; 
> Zhichao Gao <zhichao.gao@intel.com>; Benny Lin <benny.lin@intel.com>; 
> Gua Guo <gua.guo@intel.com>; Michael D Kinney 
> <michael.d.kinney@intel.com>; Liming Gao <gaoliming@byosoft.com.cn>
> 主题: [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New 
> ProcessorFamily definitions for SMBIOS Type4
> 
> From: Jason Lou <yun.lou@intel.com>
> 
> The patch adds new ProcessorFamily definitions for SMBIOS Type4 based 
> on SMBIOS 3.8.0.
> 
> Signed-off-by: Jason Lou <yun.lou@intel.com>
> Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> Cc: Dandan Bi <dandan.bi@intel.com>
> Cc: Star Zeng <star.zeng@intel.com>
> Cc: Zhichao Gao <zhichao.gao@intel.com>
> Cc: Benny Lin <benny.lin@intel.com>
> Cc: Gua Guo <gua.guo@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> ---
>  MdePkg/Include/IndustryStandard/SmBios.h | 14 +++++++++++---
>  1 file changed, 11 insertions(+), 3 deletions(-)
> 
> diff --git a/MdePkg/Include/IndustryStandard/SmBios.h
> b/MdePkg/Include/IndustryStandard/SmBios.h
> index 56cec615a0..bdb28fc3a3 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.7.0.
> 
> +  Industry Standard Definitions of SMBIOS Table Specification v3.8.0.
> 
> 
> 
> -Copyright (c) 2006 - 2023, Intel Corporation. All rights 
> reserved.<BR>
> 
> +Copyright (c) 2006 - 2024, 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>
> 
>  Copyright (c) 2022, AMD Incorporated. All rights reserved.<BR>
> 
> @@ -774,7 +774,15 @@ typedef enum {
>    ProcessorFamilyQuadCoreLoongson3B  = 0x026E,
> 
>    ProcessorFamilyMultiCoreLoongson3B = 0x026F,
> 
>    ProcessorFamilyMultiCoreLoongson3C = 0x0270,
> 
> -  ProcessorFamilyMultiCoreLoongson3D = 0x0271
> 
> +  ProcessorFamilyMultiCoreLoongson3D = 0x0271,
> 
> +  ProcessorFamilyIntelCore3          = 0x0300,
> 
> +  ProcessorFamilyIntelCore5          = 0x0301,
> 
> +  ProcessorFamilyIntelCore7          = 0x0302,
> 
> +  ProcessorFamilyIntelCore9          = 0x0303,
> 
> +  ProcessorFamilyIntelCoreUltra3     = 0x0304,
> 
> +  ProcessorFamilyIntelCoreUltra5     = 0x0305,
> 
> +  ProcessorFamilyIntelCoreUltra7     = 0x0306,
> 
> +  ProcessorFamilyIntelCoreUltra9     = 0x0307
> 
>  } PROCESSOR_FAMILY2_DATA;
> 
> 
> 
>  ///
> 
> --
> 2.39.1.windows.1
> 
> 
> 
> -=-=-=-=-=-=
> Groups.io Links: You receive all messages sent to this group.
> View/Reply Online (#115921):
> https://edk2.groups.io/g/devel/message/115921
> Mute This Topic: https://groups.io/mt/104560570/4905953
> Group Owner: devel+owner@edk2.groups.io
> Unsubscribe: https://edk2.groups.io/g/devel/unsub
> [gaoliming@byosoft.com.cn]
> -=-=-=-=-=-=
> 





-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#115970): https://edk2.groups.io/g/devel/message/115970
Mute This Topic: https://groups.io/mt/104584035/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [edk2-devel] [PATCH v4 2/2] ShellPkg/SmbiosView: Support New ProcessorFamily for SMBIOS Type4
  2024-02-26 13:33   ` [edk2-devel] 回复: " gaoliming via groups.io
@ 2024-02-28  1:14     ` Gao, Zhichao
  0 siblings, 0 replies; 6+ messages in thread
From: Gao, Zhichao @ 2024-02-28  1:14 UTC (permalink / raw)
  To: gaoliming, Lou, Yun, devel@edk2.groups.io

Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>

> -----Original Message-----
> From: gaoliming <gaoliming@byosoft.com.cn>
> Sent: Monday, February 26, 2024 9:33 PM
> To: Lou, Yun <yun.lou@intel.com>; devel@edk2.groups.io
> Cc: Gao, Zhichao <zhichao.gao@intel.com>
> Subject: 回复: [PATCH v4 2/2] ShellPkg/SmbiosView: Support New
> ProcessorFamily for SMBIOS Type4
> 
> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
> 
> > -----邮件原件-----
> > 发件人: Jason <yun.lou@intel.com>
> > 发送时间: 2024年2月25日 17:06
> > 收件人: devel@edk2.groups.io
> > 抄送: Jason Lou <yun.lou@intel.com>; Liming Gao
> > <gaoliming@byosoft.com.cn>; Zhichao Gao <zhichao.gao@intel.com>
> > 主题: [PATCH v4 2/2] ShellPkg/SmbiosView: Support New ProcessorFamily
> > for SMBIOS Type4
> >
> > From: Jason Lou <yun.lou@intel.com>
> >
> > The patch updates SmbiosView to support new ProcessorFamily for
> SMBIOS
> > Type4 based on SMBIOS 3.8.0.
> >
> > Signed-off-by: Jason Lou <yun.lou@intel.com>
> > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > Cc: Zhichao Gao <zhichao.gao@intel.com>
> > ---
> >  ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c |
> > 34 +++++++++++++++++++-
> >  1 file changed, 33 insertions(+), 1 deletion(-)
> >
> > diff --git
> > a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> > b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> > index 4f29eedc58..f96317b314 100644
> > ---
> > a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> > +++
> > b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> > @@ -1,7 +1,7 @@
> >  /** @file
> >
> >    Module for clarifying the content of the smbios structure element
> > information.
> >
> >
> >
> > -  Copyright (c) 2005 - 2018, Intel Corporation. All rights
> > reserved.<BR>
> >
> > +  Copyright (c) 2005 - 2024, Intel Corporation. All rights
> > + reserved.<BR>
> >
> >    Copyright (c) 1985 - 2022, American Megatrends International
> > LLC.<BR>
> >
> >    (C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR>
> >
> >    (C) Copyright 2015-2019 Hewlett Packard Enterprise Development
> > LP<BR>
> >
> > @@ -2678,6 +2678,38 @@ DisplayProcessorFamily2 (
> >        Print (L"MultiCoreLoongson3D\n");
> >
> >        break;
> >
> >
> >
> > +    case 0x300:
> >
> > +      Print (L"IntelCore3\n");
> >
> > +      break;
> >
> > +
> >
> > +    case 0x301:
> >
> > +      Print (L"IntelCore5\n");
> >
> > +      break;
> >
> > +
> >
> > +    case 0x302:
> >
> > +      Print (L"IntelCore7\n");
> >
> > +      break;
> >
> > +
> >
> > +    case 0x303:
> >
> > +      Print (L"IntelCore9\n");
> >
> > +      break;
> >
> > +
> >
> > +    case 0x304:
> >
> > +      Print (L"IntelCoreUltra3\n");
> >
> > +      break;
> >
> > +
> >
> > +    case 0x305:
> >
> > +      Print (L"IntelCoreUltra5\n");
> >
> > +      break;
> >
> > +
> >
> > +    case 0x306:
> >
> > +      Print (L"IntelCoreUltra7\n");
> >
> > +      break;
> >
> > +
> >
> > +    case 0x307:
> >
> > +      Print (L"IntelCoreUltra9\n");
> >
> > +      break;
> >
> > +
> >
> >      default:
> >
> >        ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN
> > (STR_SMBIOSVIEW_PRINTINFO_UNDEFINED_PROC_FAMILY),
> > gShellDebug1HiiHandle);
> >
> >    }
> >
> > --
> > 2.39.1.windows.1
> 
> 



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#116068): https://edk2.groups.io/g/devel/message/116068
Mute This Topic: https://groups.io/mt/104615867/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-02-28  1:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-25  9:06 [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions for SMBIOS Type4 Jason Lou
2024-02-25  9:06 ` [edk2-devel] [PATCH v4 2/2] ShellPkg/SmbiosView: Support New ProcessorFamily " Jason Lou
2024-02-26 13:33   ` [edk2-devel] 回复: " gaoliming via groups.io
2024-02-28  1:14     ` [edk2-devel] " Gao, Zhichao
2024-02-26 13:32 ` 回复: [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions " gaoliming via groups.io
2024-02-26 15:36   ` Zeng, Star

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox