Re: [edk2-devel] [PATCH v4 1/2] MdePkg/SmBios.h: Add New ProcessorFamily definitions for SMBIOS Type4

2024-02-26 Thread Zeng, Star
Reviewed-by: Star Zeng to this series. -Original Message- From: gaoliming Sent: Monday, February 26, 2024 9:32 PM To: devel@edk2.groups.io; Lou, Yun Cc: Liu, Zhiguang ; Bi, Dandan ; Zeng, Star ; Gao, Zhichao ; Lin, Benny ; Guo, Gua ; Kinney, Michael D Subject: 回复: [edk2-devel

Re: [edk2-devel] [PATCH v2 08/10] IntelFsp2Pkg: auto-generate SEC ProcessLibraryConstructorList() decl

2024-03-07 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: devel@edk2.groups.io On Behalf Of Laszlo Ersek Sent: Thursday, March 7, 2024 5:10 AM To: edk2-devel-groups-io Cc: S, Ashraf Ali ; Chiu, Chasel ; Duggapu, Chinni B ; Desimone, Nathaniel L ; Zeng, Star ; Mohapatra, Susovan ; Kuo, Ted

Re: [edk2-devel] [PATCH] Maintainers.txt: remove Laszlo's entries

2024-03-11 Thread Zeng, Star
Thank you Laszlo. Is ler...@redhat.com still reachable for now ? 😊 -Original Message- From: devel@edk2.groups.io On Behalf Of gaoliming via groups.io Sent: Monday, March 11, 2024 8:22 AM To: devel@edk2.groups.io; pedro.falc...@gmail.com; ler...@redhat.com Cc: Kinney, Michael D ; 'Andrew

Re: [edk2-devel] [PATCH v1 1/2] MdePkg/SmBios.h: Add New ProcessorUpgrade definitions for SMBIOS Type4

2024-04-15 Thread Zeng, Star
Reviewed-by: Star Zeng to this series. -Original Message- From: Lou, Yun Sent: Sunday, April 14, 2024 11:24 PM To: devel@edk2.groups.io Cc: Lou, Yun ; Liu, Zhiguang ; Bi, Dandan ; Zeng, Star ; Gao, Zhichao ; Lin, Benny ; Guo, Gua ; Kinney, Michael D ; Liming Gao Subject: [PATCH v1

Re: [edk2-devel] [PATCH v1] UefiCpuPkg/Library: Cleanup debug message in LmceSupport

2024-04-29 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: Wu, Jiaxin Sent: Monday, April 29, 2024 1:32 PM To: devel@edk2.groups.io Cc: Ni, Ray ; Zeng, Star ; Gerd Hoffmann ; Kumar, Rahul R Subject: [PATCH v1] UefiCpuPkg/Library: Cleanup debug message in LmceSupport ProcessorNumber 0 is not

Re: [edk2-devel] [PATCH v2] UefiCpuPkg: support single EFI_PEI_CORE_FV_LOCATION_PPI in PpiList

2019-09-04 Thread Zeng, Star
Reviewed-by: Star Zeng > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Chiu, Chasel > Sent: Thursday, September 5, 2019 12:27 PM > To: devel@edk2.groups.io > Cc: Dong, Eric ; Ni, Ray ; Laszlo > Ersek > Subject: [edk2-devel] [PATCH v2] UefiCp

Re: [edk2-devel] [PATCH v2 3/3] UefiCpuPkg/CpuFeature: Introduce First to indicate 1st unit.

2020-02-02 Thread Zeng, Star
Got the point. With the typo fixed, Reviewed-by: Star Zeng > -Original Message- > From: Ni, Ray > Sent: Thursday, January 2, 2020 11:15 AM > To: Zeng, Star ; Ray Ni > ; devel@edk2.groups.io > Cc: Dong, Eric ; Kinney, Michael D > > Subject: RE: [PATCH v2 3/

[edk2-devel] [PATCH] UefiCpuPkg RegisterCpuFeaturesLib: Use %08x to print CacheControl Index

2020-02-02 Thread Zeng, Star
Instead of %08lx, use %08x to print CacheControl Index as it is UINT32 type. Cc: Eric Dong Cc: Ray Ni Cc: Laszlo Ersek Signed-off-by: Star Zeng --- .../Library/RegisterCpuFeaturesLib/CpuFeaturesInitialize.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UefiCpuPkg/Li

Re: [edk2-devel] [PATCH] UefiCpuPkg RegisterCpuFeaturesLib: Use %08x to print CacheControl Index

2020-02-03 Thread Zeng, Star
> -Original Message- > From: Laszlo Ersek > Sent: Monday, February 3, 2020 4:47 PM > To: Zeng, Star ; devel@edk2.groups.io > Cc: Dong, Eric ; Ni, Ray > Subject: Re: [PATCH] UefiCpuPkg RegisterCpuFeaturesLib: Use %08x to print > CacheControl Index > > Hello S

[edk2-devel] [PATCH] UefiCpuPkg RegisterCpuFeaturesLib: Match data type and format specifier

2020-02-03 Thread Zeng, Star
Match data type and format specifier for printing. 1. Type cast ProcessorNumber and FeatureIndex to UINT32 as %d only expects a UINT32. 2. Use %08x instead of %08lx for CacheControl to print Index as it is UINT32 type. 3. Use %016lx instead of %08lx for MemoryMapped to print (Index | LShiftU6

[edk2-devel] [PATCH] UefiCpuPkg RegisterCpuFeaturesLib: Match data type and format specifier

2020-02-03 Thread Zeng, Star
Match data type and format specifier for printing. 1. Type cast ProcessorNumber and FeatureIndex to UINT32 as %d only expects a UINT32. 2. Use %08x instead of %08lx for CacheControl to print Index as it is UINT32 type. 3. Use %016lx instead of %08lx for MemoryMapped to print (Index | LShiftU6

[edk2-devel] [PATCH V2] UefiCpuPkg RegisterCpuFeaturesLib: Match data type and format specifier

2020-02-03 Thread Zeng, Star
Match data type and format specifier for printing. 1. Type cast ProcessorNumber and FeatureIndex to UINT32 as %d only expects a UINT32. 2. Use %08x instead of %08lx for CacheControl to print Index as it is UINT32 type. 3. Use %016lx instead of %08lx for MemoryMapped to print (Index | LShiftU6

Re: [edk2-devel] [PATCH] UefiCpuPkg RegisterCpuFeaturesLib: Match data type and format specifier

2020-02-03 Thread Zeng, Star
Sorry, the title is incorrect. Please see the thread with title " [PATCH V2] UefiCpuPkg RegisterCpuFeaturesLib: Match data type and format specifier" > -Original Message- > From: devel@edk2.groups.io On Behalf Of Zeng, > Star > Sent: Tuesday, February 4, 2020 3:

Re: [edk2-devel] [PATCH] UefiCpuPkg RegisterCpuFeaturesLib: Use %08x to print CacheControl Index

2020-02-03 Thread Zeng, Star
> -Original Message- > From: Laszlo Ersek > Sent: Monday, February 3, 2020 9:23 PM > To: Zeng, Star ; devel@edk2.groups.io > Cc: Dong, Eric ; Ni, Ray > Subject: Re: [PATCH] UefiCpuPkg RegisterCpuFeaturesLib: Use %08x to print > CacheControl Index > > On 02/03

Re: [edk2-devel] [PATCH] UefiCpuPkg RegisterCpuFeaturesLib: Match data type and format specifier

2020-02-03 Thread Zeng, Star
Sorry, the title is incorrect. Please see the thread with title " [PATCH V2] UefiCpuPkg RegisterCpuFeaturesLib: Match data type and format specifier" > -Original Message- > From: devel@edk2.groups.io On Behalf Of Zeng, > Star > Sent: Tuesday, February 4, 2020 2:

Re: [edk2-devel] [PATCH 0/2] IntelFsp2Pkg: Coverity scan flags issues

2020-02-09 Thread Zeng, Star
Reviewed-by: Star Zeng > -Original Message- > From: Chiu, Chasel > Sent: Monday, February 10, 2020 11:53 AM > To: devel@edk2.groups.io > Cc: Ma, Maurice ; Desimone, Nathaniel L > ; Zeng, Star > Subject: [PATCH 0/2] IntelFsp2Pkg: Coverity scan flags issues > >

Re: [edk2-devel] [PATCH V2] UefiCpuPkg RegisterCpuFeaturesLib: Match data type and format specifier

2020-02-17 Thread Zeng, Star
: devel@edk2.groups.io; Zeng, Star > Cc: Ni, Ray ; Laszlo Ersek > Subject: RE: [edk2-devel] [PATCH V2] UefiCpuPkg RegisterCpuFeaturesLib: > Match data type and format specifier > > Reviewed-by: Eric Dong > > -Original Message- > From: devel@edk2.groups.io On Be

Re: [edk2-devel] [PATCH 2/3] MdePkg/MdeModule: Add support for RuntimeServicesSupported variable

2019-11-20 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: Ni, Ray Sent: Thursday, November 21, 2019 1:46 PM To: Jeff Brasen ; edk2-de...@lists.01.org; devel@edk2.groups.io Cc: Gao, Liming ; Kinney, Michael D ; Wu, Hao A ; Gao, Zhichao ; Zeng, Star Subject: RE: [PATCH 2/3] MdePkg/MdeModule

Re: [edk2-devel] [PATCH 10/79] IntelFsp2WrapperPkg: Fix various typos

2019-12-03 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: Philippe Mathieu-Daude [mailto:phi...@redhat.com] Sent: Wednesday, December 4, 2019 12:15 AM To: devel@edk2.groups.io Cc: Antoine Coeur ; Chiu, Chasel ; Desimone, Nathaniel L ; Zeng, Star ; Philippe Mathieu-Daude Subject: [PATCH 10/79

Re: [edk2-devel] [PATCH v2 087/105] .mailmap: Add an entry for Star Zeng

2019-12-07 Thread Zeng, Star
Thank you. Reviewed-by: Star Zeng > -Original Message- > From: devel@edk2.groups.io On Behalf Of Philippe > Mathieu-Daudé > Sent: Friday, December 6, 2019 7:26 PM > To: devel@edk2.groups.io > Cc: Philippe Mathieu-Daude ; Zeng, Star > > Subject: [edk2-devel] [PA

Re: [edk2-devel] [PATCH v2 1/3] UefiCpuPkg/RegisterCpuFeaturesLib: Delete CPU_FEATURE_[BEFORE|AFTER]

2019-12-25 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: Ray Ni [mailto:niru...@users.noreply.github.com] Sent: Tuesday, November 26, 2019 2:16 PM To: devel@edk2.groups.io Cc: Ni, Ray ; Dong, Eric ; Zeng, Star Subject: [PATCH v2 1/3] UefiCpuPkg/RegisterCpuFeaturesLib: Delete CPU_FEATURE_

Re: [edk2-devel] [PATCH v2 2/3] UefiCpuPkg/RegisterCpuFeaturesLib: Rename [Before|After]FeatureBitMask

2019-12-25 Thread Zeng, Star
Minor comment added. > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Ray Ni > Sent: Tuesday, November 26, 2019 2:16 PM > To: devel@edk2.groups.io > Cc: Ni, Ray ; Dong, Eric > Subject: [edk2-devel] [PATCH v2 2/3] UefiCpuPkg/RegisterCpuFeatures

Re: [edk2-devel] [PATCH v2 3/3] UefiCpuPkg/CpuFeature: Introduce First to indicate 1st unit.

2019-12-25 Thread Zeng, Star
Some feedback added. > -Original Message- > From: Ray Ni [mailto:niru...@users.noreply.github.com] > Sent: Tuesday, November 26, 2019 2:16 PM > To: devel@edk2.groups.io > Cc: Ni, Ray ; Dong, Eric ; Zeng, Star > ; Kinney, Michael D > Subject: [PATCH v2 3/3]

Re: [edk2-devel] [PATCH 3/6] MdeModulePkg/Smbios: Done measure Smbios multiple times.

2020-01-02 Thread Zeng, Star
Reviewed-by: Star Zeng > -Original Message- > From: Yao, Jiewen > Sent: Tuesday, December 31, 2019 2:44 PM > To: devel@edk2.groups.io > Cc: Wang, Jian J ; Wu, Hao A ; > Bi, Dandan ; Zeng, Star > Subject: [PATCH 3/6] MdeModulePkg/Smbios: Done measure Smbios >

Re: [edk2-devel] [PATCH 5/6] MdeModulePkg/Smbios: Add TCG PFP rev 105 support.

2020-01-02 Thread Zeng, Star
Minor comments. > -Original Message- > From: Yao, Jiewen > Sent: Tuesday, December 31, 2019 2:44 PM > To: devel@edk2.groups.io > Cc: Wang, Jian J ; Wu, Hao A ; > Bi, Dandan ; Zeng, Star > Subject: [PATCH 5/6] MdeModulePkg/Smbios: Add TCG PFP rev 105 sup

Re: [edk2-devel] [PATCH 5/6] MdeModulePkg/Smbios: Add TCG PFP rev 105 support.

2020-01-02 Thread Zeng, Star
> -Original Message- > From: Yao, Jiewen > Sent: Thursday, January 2, 2020 10:16 PM > To: Zeng, Star ; devel@edk2.groups.io > Cc: Wang, Jian J ; Wu, Hao A ; > Bi, Dandan > Subject: RE: [PATCH 5/6] MdeModulePkg/Smbios: Add TCG PFP rev 105 > support. > &g

Re: [edk2-devel] [PATCH v2] UefiCpuPkg/MpInitLib DXE: Add PCD to control AP status check interval

2020-03-24 Thread Zeng, Star
.groups.io > Cc: Wu, Hao A ; Dong, Eric ; Ni, > Ray ; Laszlo Ersek ; Kinney, Michael > D ; Zeng, Star ; Brian J . > Johnson > Subject: [edk2-devel] [PATCH v2] UefiCpuPkg/MpInitLib DXE: Add PCD to > control AP status check interval > > REF:https://bugzilla.tianocore.org/sh

Re: [edk2-devel] [PATCH v2] UefiCpuPkg/MpInitLib DXE: Add PCD to control AP status check interval

2020-03-24 Thread Zeng, Star
> -Original Message- > From: Wu, Hao A > Sent: Tuesday, March 24, 2020 3:12 PM > To: Zeng, Star ; devel@edk2.groups.io > Cc: Dong, Eric ; Ni, Ray ; Laszlo > Ersek ; Kinney, Michael D > ; Brian J . Johnson > Subject: RE: [edk2-devel] [PATCH v2] UefiCpuPkg/M

Re: [edk2-devel] [PATCH v4] UefiCpuPkg/MpInitLib DXE: Add PCD to control AP status check interval

2020-03-24 Thread Zeng, Star
Reviewed-by: Star Zeng > -Original Message- > From: Wu, Hao A > Sent: Wednesday, March 25, 2020 1:07 PM > To: devel@edk2.groups.io > Cc: Wu, Hao A ; Dong, Eric ; Ni, > Ray ; Laszlo Ersek ; Kinney, Michael > D ; Zeng, Star ; Brian J . > Johnson > Subject: [PAT

Re: [edk2-devel] [PATCH v2] UefiCpuPkg/PiSmmCpuDxeSmm: Improve the performance of GetFreeToken()

2020-04-09 Thread Zeng, Star
Your time is super fast. 😊 > -Original Message- > From: Ni, Ray > Sent: Friday, April 10, 2020 10:50 AM > To: Dong, Eric ; Ray Ni > ; devel@edk2.groups.io > Cc: Zeng, Star > Subject: RE: [PATCH v2] UefiCpuPkg/PiSmmCpuDxeSmm: Improve the > performance of GetFr

Re: [edk2-devel] [PATCH v3] UefiCpuPkg/PiSmmCpuDxeSmm: Improve the performance of GetFreeToken()

2020-04-09 Thread Zeng, Star
Reviewed-by: Star Zeng > -Original Message- > From: Dong, Eric > Sent: Friday, April 10, 2020 11:00 AM > To: Ray Ni ; devel@edk2.groups.io > Cc: Ni, Ray ; Zeng, Star > Subject: RE: [PATCH v3] UefiCpuPkg/PiSmmCpuDxeSmm: Improve the > performance of GetFreeToken() &

Re: [edk2-devel] [Patch v3 1/6] UefiCpuPkg/RegisterCpuFeaturesLib: Add "Test Then Write" Macros.

2019-08-15 Thread Zeng, Star
> -Original Message- > From: Dong, Eric > Sent: Thursday, August 15, 2019 10:51 AM > To: devel@edk2.groups.io > Cc: Ni, Ray ; Laszlo Ersek ; Zeng, > Star > Subject: [Patch v3 1/6] UefiCpuPkg/RegisterCpuFeaturesLib: Add "Test Then > W

Re: [edk2-devel] [Patch v3 1/6] UefiCpuPkg/RegisterCpuFeaturesLib: Add "Test Then Write" Macros.

2019-08-15 Thread Zeng, Star
> -Original Message- > From: Dong, Eric > Sent: Friday, August 16, 2019 9:27 AM > To: Zeng, Star ; devel@edk2.groups.io > Cc: Ni, Ray ; Laszlo Ersek > Subject: RE: [Patch v3 1/6] UefiCpuPkg/RegisterCpuFeaturesLib: Add "Test > Then Write" Macro

Re: [edk2-devel] [PATCH] UefiCpuPkg: Adding a new TSC library by using CPUID(0x15) TSC leaf

2019-08-20 Thread Zeng, Star
d: > Thanks for your update. If no other comment, I will help push this patch > tomorrow. > > Thanks > Liming > > -Original Message- > > From: Kuo, Donald > > Sent: Tuesday, August 20, 2019 3:22 PM > > To: Gao, Liming ; devel@edk2.groups.io; > >

Re: [edk2-devel] [PATCH v2] IntelSiliconPkg/Feature Implement SmmAccess

2019-08-26 Thread Zeng, Star
Include new library and driver to IntelSiliconPkg.dsc for building coverage? In SmmAccessLib.h, it still refers the _PEI_SMM_ACCESS_PPI definition from MdeModulePkg? And need have _EFI prefix for _PEI_MASTER_BOOT_MODE_PEIM_PPI and _PEI_PERMANENT_MEMORY_INSTALLED_PPI? In PeiSmmAccessLib.inf, the w

Re: [edk2-devel] [PATCH] IntelFsp2Pkg/FspSecCore: Remove unneeded MdeModulePkg dependency

2019-08-27 Thread Zeng, Star
Reviewed-by: Star Zeng > -Original Message- > From: Ni, Ray > Sent: Wednesday, August 28, 2019 6:41 AM > To: devel@edk2.groups.io > Cc: Chiu, Chasel ; Desimone, Nathaniel L > ; Zeng, Star > Subject: [PATCH] IntelFsp2Pkg/FspSecCore: Remove unneeded > MdeModulePk

Re: [edk2-devel] [PATCH 0/2] move PcdRealTimeClockUpdateTimeout from MdeModulePkg to PcAtChipsetPkg

2019-08-27 Thread Zeng, Star
Both XXXPkg.uni need to be updated as the PCD movement. With that, Reviewed-by: Star Zeng Thanks, Star > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of Ni, > Ray > Sent: Wednesday, August 28, 2019 7:27 AM > To: devel@edk2.groups.io > Subject: [

Re: [edk2-devel] [PATCH] IntelFsp2WrapperPkg: Remove unneeded MdeModulePkg dependency

2019-09-03 Thread Zeng, Star
Reviewed-by: Star Zeng > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of Ni, > Ray > Sent: Wednesday, September 4, 2019 2:18 AM > To: devel@edk2.groups.io > Cc: Chiu, Chasel ; Desimone, Nathaniel L > ; Zeng, Star > Subj

[edk2-devel] [PATCH] UefiCpuPkg CpuCommonFeaturesLib: Enhance Ppin code

2019-07-12 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1961 Enhance Ppin code to enable and unlock for TRUE State, and disable and lock for FALSE State. Note: enable and lock could not be set both. Cc: Laszlo Ersek Cc: Eric Dong Cc: Ray Ni Cc: Chandana Kumar Cc: Kevin Li Signed-off-by: Star Zeng

Re: [edk2-devel] [Patch 1/2] UefiCpuPkg/RegisterCpuFeaturesLib: Avoid AP calls gBS service.

2019-07-12 Thread Zeng, Star
Some minor comments inline. > -Original Message- > From: Dong, Eric > Sent: Friday, July 12, 2019 9:53 AM > To: devel@edk2.groups.io > Cc: Ni, Ray ; Laszlo Ersek ; Kumar, > Chandana C ; Zeng, Star > > Subject: [Patch 1/2] UefiCpuPkg/RegisterCpuFeaturesLib: Avoi

Re: [edk2-devel] [Patch 2/2] UefiCpuPkg/Library/RegisterCpuFeaturesLib: avoid use dynamic PCD.

2019-07-12 Thread Zeng, Star
4 comments are added inline. > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Dong, Eric > Sent: Friday, July 12, 2019 9:53 AM > To: devel@edk2.groups.io > Cc: Ni, Ray ; Laszlo Ersek ; Kumar, > Chandana C ; Zeng, Star >

Re: [edk2-devel] [Patch v2 2/2] UefiCpuPkg/RegisterCpuFeaturesLib: avoid use dynamic PCD.

2019-07-15 Thread Zeng, Star
; From: Dong, Eric > Sent: Monday, July 15, 2019 3:01 PM > To: devel@edk2.groups.io > Cc: Ni, Ray ; Laszlo Ersek ; Kumar, > Chandana C ; Zeng, Star > > Subject: [Patch v2 2/2] UefiCpuPkg/RegisterCpuFeaturesLib: avoid use > dynamic PCD. > > REF: https://bugzilla.t

Re: [edk2-devel] [PATCH] UefiCpuPkg CpuCommonFeaturesLib: Enhance Ppin code

2019-07-16 Thread Zeng, Star
Eric, Thanks for the comments. Attach the updated patch, and you may help push it if it is ok. Thanks, Star > -Original Message- > From: Dong, Eric > Sent: Tuesday, July 16, 2019 3:24 PM > To: Zeng, Star ; devel@edk2.groups.io > Cc: Laszlo Ersek ; Ni, Ray ; Kumar, &g

[edk2-devel] [PATCH] UefiCpuPkg DxeRegisterCpuFeaturesLib: Fix VS2012 build failure

2019-07-16 Thread Zeng, Star
The new VS2012 build failure is caused by 7a0df26. xxx\registercpufeatureslib\dxeregistercpufeatureslib.c(258) : warning C4701: potentially uninitialized local variable 'MpEvent' used It is a false positive alarm. MpEvent is assigned at line 238 and will be used at line 258, both lines are contr

Re: [edk2-devel] [Patch v3 2/2] UefiCpuPkg/RegisterCpuFeaturesLib: avoid use dynamic PCD.

2019-07-16 Thread Zeng, Star
Reviewed-by: Star Zeng > -Original Message- > From: Dong, Eric > Sent: Wednesday, July 17, 2019 9:59 AM > To: devel@edk2.groups.io > Cc: Dong, Eric ; Ni, Ray ; Laszlo > Ersek ; Kumar, Chandana C > ; Zeng, Star > Subject: [Patch v3 2/2] UefiCpuPkg/RegisterC

Re: [edk2-devel] [PATCH v2 1/1] Maintainers.txt: Fine-grained review ownership for MdeModulePkg

2019-07-17 Thread Zeng, Star
Reviewed-by: Star Zeng for my part. > -Original Message- > From: Wu, Hao A > Sent: Thursday, July 18, 2019 9:19 AM > To: devel@edk2.groups.io > Cc: Wu, Hao A ; Andrew Fish ; > Laszlo Ersek ; Leif Lindholm ; > Kinney, Michael D ; Bi, Dandan > ; Dong, Eric ; Ga

Re: [edk2-devel] [PATCH] IntelFsp2Pkg: PeiService pointer not reset to 0 in SecMain

2019-07-25 Thread Zeng, Star
> -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Chiu, Chasel > Sent: Thursday, July 25, 2019 11:51 PM > To: devel@edk2.groups.io > Cc: Desimone, Nathaniel L ; Zeng, Star > > Subject: [edk2-devel] [PATCH] IntelFsp2Pkg

Re: [edk2-devel] [PATCH v1] MdeModulePkg/Variable/RuntimeDxe: Not copy SMM pointers in comm buffer

2019-08-06 Thread Zeng, Star
The DstInfoEntry is better to have identifer [out] instead of [in]? Thanks, Star > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of Wu, > Hao A > Sent: Tuesday, August 6, 2019 3:19 PM > To: devel@edk2.groups.io > Cc: Wu, Hao A ; Gao, Liming ; > Wa

Re: [edk2-devel] [PATCH 3/3] IntelFsp2Pkg/FspSecCore: Add missing header file in INF file

2019-08-08 Thread Zeng, Star
Same with Chasel. Reviewed-by: Star Zeng . > -Original Message- > From: Chiu, Chasel > Sent: Thursday, August 8, 2019 2:59 PM > To: Zhang, Shenglei ; devel@edk2.groups.io > Cc: Desimone, Nathaniel L ; Zeng, Star > > Subject: RE: [PATCH 3/3] IntelFsp2Pkg/FspSecCor

[edk2-devel] [PATCH] SourceLevelDebugPkg DebugCommLibUsb3: Address NULL ptr dereference case

2019-08-08 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=2051 Original code GetConfigTable for AddrPtr first, if failed, InstalConfigTable with allocated AddrPtr. So the AddrPtr should not be NULL and the NULL pointer dereference case should be false positive. This patch is just to address the case rais

Re: [edk2-devel] [PATCH] UefiCpuPkg: Adding a new TSC library by using CPUID(0x15) TSC leaf

2019-08-12 Thread Zeng, Star
Some comments below. > -Original Message- > From: Kuo, Donald > Sent: Monday, August 12, 2019 1:57 PM > To: devel@edk2.groups.io > Cc: Ni, Ray ; Zeng, Star ; Dong, Eric > > Subject: [PATCH] UefiCpuPkg: Adding a new TSC library by using CPUID(0x15) >

Re: [edk2-devel] [PATCH V2] UefiCpuPkg CpuCommFeaturesLib: Fix ASSERT if LMCE is supported

2019-05-22 Thread Zeng, Star
Laszlo, > -Original Message- > From: Laszlo Ersek [mailto:ler...@redhat.com] > Sent: Wednesday, May 22, 2019 6:32 PM > To: devel@edk2.groups.io; Zeng, Star > Cc: Dong, Eric ; Ni, Ray ; Kumar, > Chandana C ; Li, Kevin Y > > Subject: Re: [edk2-deve

Re: [edk2-devel] [PATCH] IntelFsp2Pkg/FspSplitBin.py: Support rebasing 1.x binary.

2019-05-29 Thread Zeng, Star
Shouldn't the SplitFspBinUserManual.md also be updated? Thanks, Star > -Original Message- > From: Chiu, Chasel > Sent: Wednesday, May 29, 2019 10:33 PM > To: devel@edk2.groups.io > Cc: Ma, Maurice ; Desimone, Nathaniel L > ; Zeng, Star > Subject: [PATCH] I

Re: [edk2-devel] [PATCH v2] IntelFsp2Pkg/SplitFspBin.py: Support rebasing 1.x binary.

2019-05-30 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: Chiu, Chasel Sent: Thursday, May 30, 2019 12:58 PM To: devel@edk2.groups.io Cc: Ma, Maurice ; Desimone, Nathaniel L ; Zeng, Star Subject: [PATCH v2] IntelFsp2Pkg/SplitFspBin.py: Support rebasing 1.x binary. REF: https

[edk2-devel] [PATCH 1/2] UefiCpuPkg CpuCommFeaturesLib: Disable TraceEn at the beginning

2019-06-01 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1809 Current code disables TraceEn at the end of ProcTraceInitialize(), then there will be much memory allocated even when ProcTrace feature is disabled. This patch updates code to disable TraceEn and return at the beginning of ProcTraceInitializ

[edk2-devel] [PATCH 0/2] Fix GP fault issue and enhance code about ProcTrace

2019-06-01 Thread Zeng, Star
This patch series mainly fixes GP fault issue about ProcTrace for https://bugzilla.tianocore.org/show_bug.cgi?id=1808. It aslo enhances code about ProcTrace for https://bugzilla.tianocore.org/show_bug.cgi?id=1809. Please check the individual patches for detail. Cc: Laszlo Ersek Cc: Eric Dong Cc

[edk2-devel] [PATCH 2/2] UefiCpuPkg CpuCommFeaturesLib: Fix GP fault issue about ProcTrace

2019-06-01 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1808 In current code, the values of TopaEntryPtr->Uint64 for TopaTable and the values of OutputBaseReg.Uint64 and OutputMaskPtrsReg.Uint64 to register table write for RTIT_OUTPUT_BASE and RTIT_OUTPUT_MASK_PTRS are not been initialized in whole. Fo

[edk2-devel] [PATCH 0/2] Fix GP fault issue and enhance code about ProcTrace

2019-06-01 Thread Zeng, Star
This patch series mainly fixes GP fault issue about ProcTrace for https://bugzilla.tianocore.org/show_bug.cgi?id=1808. It aslo enhances code about ProcTrace for https://bugzilla.tianocore.org/show_bug.cgi?id=1809. Please check the individual patches for detail. Cc: Laszlo Ersek Cc: Eric Dong Cc

[edk2-devel] [PATCH 2/2] UefiCpuPkg CpuCommFeaturesLib: Fix GP fault issue about ProcTrace

2019-06-01 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1808 In current code, the values of TopaEntryPtr->Uint64 for TopaTable and the values of OutputBaseReg.Uint64 and OutputMaskPtrsReg.Uint64 to register table write for RTIT_OUTPUT_BASE and RTIT_OUTPUT_MASK_PTRS are not been initialized in whole. Fo

[edk2-devel] [PATCH 1/2] UefiCpuPkg CpuCommFeaturesLib: Disable TraceEn at the beginning

2019-06-01 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1809 Current code disables TraceEn at the end of ProcTraceInitialize(), then there will be much memory allocated even when ProcTrace feature is disabled. This patch updates code to disable TraceEn and return at the beginning of ProcTraceInitializ

Re: [edk2-devel] [PATCH 0/4] Define SERIAL_DXE_FILE_GUID only once

2019-06-01 Thread Zeng, Star
devel-groups-io ; Anthony PERARD > > Cc: Wang, Jian J ; Ni, Ray ; Zeng, > Star ; Wu, Hao A ; Julien Grall > ; Leif Lindholm ; Laszlo > Ersek > Subject: Re: [edk2-devel] [PATCH 0/4] Define SERIAL_DXE_FILE_GUID only > once > > On Wed, 29 May 2019 at 13:37, Anthony PERARD >

Re: [edk2-devel] [PATCH 0/2] Fix GP fault issue and enhance code about ProcTrace

2019-06-03 Thread Zeng, Star
Laszlo, > -Original Message- > From: Laszlo Ersek [mailto:ler...@redhat.com] > Sent: Monday, June 3, 2019 8:03 PM > To: Zeng, Star > Cc: Dong, Eric ; Ni, Ray ; Kumar, > Chandana C ; Li, Kevin Y > ; edk2-devel-groups-io > Subject: Re: [PATCH 0/2] Fix GP fault issu

Re: [edk2-devel] [Patch V2] EmulatorPkg: don't diaplay the cpu current speed

2019-06-05 Thread Zeng, Star
> -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Laszlo Ersek > Sent: Wednesday, June 5, 2019 4:03 PM > To: Ni, Ray ; Gao, Liming ; > ard.biesheu...@linaro.org; Leif Lindholm ; Kinney, > Michael D ; Liu, Zhiguang > ; Justen, Jordan L ; > Andrew

Re: [edk2-devel] [RFC] Proposal to move IntelSiliconPkg from edk2 repo to edk2-platforms repo

2019-06-05 Thread Zeng, Star
Just curious about where the IntelSiliconPkg will be put in edk2-platforms repo? Thanks, Star From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of Chaganty, Rangasai V Sent: Wednesday, May 22, 2019 3:13 PM To: devel@edk2.groups.io Cc: Kinney, Michael D ; Ni, Ray Subject: [edk2

[edk2-devel] [PATCH] UefiCpuPkg RegisterCpuFeaturesLib.h: Fix typo 'STRICK' to 'STRIKE'

2019-06-10 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1642 This patch fixed typo in CPU_FEATURE_THREE_STRICK_COUNTER. CPU_FEATURE_THREE_STRICK_COUNTER -> CPU_FEATURE_THREE_STRIKE_COUNTER Cc: Laszlo Ersek Cc: Eric Dong Cc: Ray Ni Cc: Chandana Kumar Cc: Kevin Li Signed-off-by: Star Zeng --- Cr

[edk2-devel] [PATCH V2] UefiCpuPkg RegisterCpuFeaturesLib.h: Fix typo 'STRICK' to 'STRIKE'

2019-06-10 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1642 This patch fixes typo in CPU_FEATURE_THREE_STRICK_COUNTER. CPU_FEATURE_THREE_STRICK_COUNTER -> CPU_FEATURE_THREE_STRIKE_COUNTER Cc: Laszlo Ersek Cc: Eric Dong Cc: Ray Ni Cc: Chandana Kumar Cc: Kevin Li Signed-off-by: Star Zeng Reviewe

Re: [edk2-devel] [PATCH] IntelFsp2Pkg: add TempRamExitPpi.h.

2019-06-16 Thread Zeng, Star
Temporary memory exit. 2. The gFspTempRamExitPpiGuid should be added into IntelFsp2Pkg.dec, right? Thanks, Star > -Original Message- > From: Chiu, Chasel > Sent: Friday, June 14, 2019 5:56 PM > To: devel@edk2.groups.io > Cc: Desimone, Nathaniel L ; Zeng, Star >

Re: [edk2-devel] [PATCH] IntelFsp2Pkg: add TempRamExitPpi.h.

2019-06-16 Thread Zeng, Star
And the 'Ppi' postfix seems not needed in the file name. Thanks, Star > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Zeng, Star > Sent: Sunday, June 16, 2019 9:11 PM > To: Chiu, Chasel ; devel@edk2.groups.io &g

Re: [edk2-devel] [PATCH v2] IntelFsp2Pkg: add TempRamExitPpi.h.

2019-06-16 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: Chiu, Chasel Sent: Monday, June 17, 2019 10:42 AM To: devel@edk2.groups.io Cc: Desimone, Nathaniel L ; Zeng, Star Subject: [PATCH v2] IntelFsp2Pkg: add TempRamExitPpi.h. REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1883 Add

Re: [edk2-devel] [PATCH 0/4] Remove S3Lib and RecoveryLib

2019-06-21 Thread Zeng, Star
Removed-by: Star Zeng to the series. > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Zhang, Shenglei > Sent: Friday, June 21, 2019 11:00 AM > To: devel@edk2.groups.io > Cc: Wang, Jian J ; Wu, Hao A ; > Ni, Ray ; Zen

[edk2-devel] [PATCH] MdeModulePkg SmbiosMeasurementDxe: Add Type4 Voltage field to blacklist

2019-06-27 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1922 The Type4 Voltage field may be various. So this patch adds it into the blacklist. Signed-off-by: Star Zeng Cc: Jian J Wang Cc: Hao A Wu Cc: Ray Ni Cc: Donald Kuo Cc: Chasel Chiu --- .../Universal/SmbiosMeasurementDxe/SmbiosMeasurement

Re: [edk2-devel] [PATCH] IntelFsp2Pkg: FSP Python scripts to support 3.x.

2019-06-27 Thread Zeng, Star
devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of Chiu, Chasel Sent: Monday, June 24, 2019 10:35 PM To: devel@edk2.groups.io Cc: Ma, Maurice ; Desimone, Nathaniel L ; Zeng, Star Subject: [edk2-devel] [PATCH] IntelFsp2Pkg: FSP Python scripts to support 3.x. https://bugzilla.tianocore.org/

Re: [edk2-devel] [Patch] MdeModulePkg/PiSmmCore: Use unique structure signatures

2019-06-28 Thread Zeng, Star
Good idea. Reviewed-by: Star Zeng . Thanks, Star > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Michael D Kinney > Sent: Saturday, June 29, 2019 4:19 AM > To: devel@edk2.groups.io > Cc: Wang, Jian J ; Wu, Hao A ; >

Re: [edk2-devel] [PATCH v2] IntelFsp2Pkg: FSP Python scripts to support 3.x.

2019-07-01 Thread Zeng, Star
Reviewed-by: Star Zeng . Thanks, Star -Original Message- From: Chiu, Chasel Sent: Monday, July 1, 2019 2:20 PM To: devel@edk2.groups.io Cc: Ma, Maurice ; Desimone, Nathaniel L ; Zeng, Star Subject: [PATCH v2] IntelFsp2Pkg: FSP Python scripts to support 3.x. https

Re: [edk2-devel] [PATCH] IntelFsp2Pkg: Fix various typos

2019-07-07 Thread Zeng, Star
Reviewed-by: Star Zeng > -Original Message- > From: Antoine Cœur [mailto:co...@gmx.fr] > Sent: Friday, July 5, 2019 10:17 PM > To: devel@edk2.groups.io; Desimone, Nathaniel L > ; Zeng, Star ; Chiu, > Chasel > Cc: Antoine Cœur > Subject: [PATCH] IntelFsp2Pkg: Fi

[edk2-devel] [PATCH] UefiCpuPkg RegisterCpuFeaturesLib: Fix an ASSERTION issue

2019-07-10 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1968 We met assertion like below, it happens when there is only one processor. ASSERT_EFI_ERROR (Status = Not started) ASSERT [CpuFeaturesDxe] X:\XXX\XXX\RegisterCpuFeaturesLib\ DxeRegisterCpuFeaturesLib.c(149): !EFI_ERROR (Status) The code sh

Re: [edk2-devel] [PATCH] IntelFsp2WrapperPkg: Perform post FSP-S process.

2019-04-14 Thread Zeng, Star
Minor comment inline. > -Original Message- > From: Chiu, Chasel > Sent: Friday, April 12, 2019 11:02 PM > To: devel@edk2.groups.io > Cc: Chiu, Chasel ; Desimone, Nathaniel L > ; Zeng, Star > Subject: [PATCH] IntelFsp2WrapperPkg: Perform post FSP-S process. >

Re: [edk2-devel] [PATCH v2] IntelFsp2WrapperPkg: Perform post FSP-S process.

2019-04-15 Thread Zeng, Star
: devel@edk2.groups.io > Cc: Chiu, Chasel ; Desimone, Nathaniel L > ; Zeng, Star > Subject: [PATCH v2] IntelFsp2WrapperPkg: Perform post FSP-S process. > > From: "Chasel, Chiu" > > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1716 > > In API mode FSP w

Re: [edk2-devel] [PATCH] IntelFsp2WrapperPkg/FspsWrapperPeim: Fix coding style.

2019-04-22 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: Chiu, Chasel Sent: Monday, April 22, 2019 6:12 PM To: devel@edk2.groups.io Cc: Desimone, Nathaniel L ; Zeng, Star Subject: [PATCH] IntelFsp2WrapperPkg/FspsWrapperPeim: Fix coding style. REF: https://bugzilla.tianocore.org/show_bug.cgi

[edk2-devel] [PATCH] UefiCpuPkg CpuCommonFeaturesLib: Remove CPU generation check

2019-05-16 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1679 The checking to CpuInfo->CpuIdVersionInfoEcx.Bits.AESNI is enough, the checking to CPU generation could be removed, then the code could be reused by more platforms. Cc: Laszlo Ersek Cc: Eric Dong Cc: Ruiyu Ni Cc: Chandana Kumar Signed-of

Re: [edk2-devel] [PATCH] UefiCpuPkg CpuCommonFeaturesLib: Remove CPU generation check

2019-05-16 Thread Zeng, Star
Laszlo, > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Laszlo Ersek > Sent: Thursday, May 16, 2019 9:06 PM > To: Zeng, Star ; devel@edk2.groups.io > Cc: Dong, Eric ; Ni, Ray ; Kumar, > Chandana C > Subject:

Re: [edk2-devel] [PATCH] UefiCpuPkg CpuCommonFeaturesLib: Remove CPU generation check

2019-05-16 Thread Zeng, Star
y > Sent: Friday, May 17, 2019 9:04 AM > To: Zeng, Star ; devel@edk2.groups.io; > ler...@redhat.com > Cc: Dong, Eric ; Kumar, Chandana C > > Subject: RE: [edk2-devel] [PATCH] UefiCpuPkg CpuCommonFeaturesLib: > Remove CPU generation check > > Star, > I think the

Re: [edk2-devel] [PATCH] UefiCpuPkg CpuCommonFeaturesLib: Remove CPU generation check

2019-05-17 Thread Zeng, Star
Thanks for the understanding to all of you. Star > -Original Message- > From: Ni, Ray > Sent: Friday, May 17, 2019 9:11 PM > To: Zeng, Star ; devel@edk2.groups.io; > ler...@redhat.com > Cc: Dong, Eric ; Kumar, Chandana C > ; Li, Kevin Y > Subject: RE: [edk2-d

[edk2-devel] [PATCH] UefiCpuPkg CpuCommFeaturesLib: Reduce to set MSR_IA32_CLOCK_MODULATION

2019-05-18 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1810 This patch covers two problems. 1. Current code gets CPUID_THERMAL_POWER_MANAGEMENT in ClockModulationInitialize() and uses its ECMD bit for all processors. But ClockModulationInitialize() is only executed by BSP, that means the bit is just

Re: [edk2-devel] [edk2] [PATCH] IntelSiliconPkg VTdDxe: a question about the source code

2019-05-19 Thread Zeng, Star
about this. You may submit Bugzilla at https://bugzilla.tianocore.org if you wait. Thanks, Star From: Jerry Zhou(BJ-RD) [mailto:jerryz...@zhaoxin.com] Sent: Monday, May 13, 2019 7:28 PM To: Zeng, Star ; edk2-de...@lists.01.org; devel@edk2.groups.io Cc: Yao, Jiewen ; Ni, Ray Subject: 答复: [edk2

[edk2-devel] [PATCH V2] UefiCpuPkg CpuCommFeaturesLib: Reduce to set MSR_IA32_CLOCK_MODULATION

2019-05-21 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1810 This patch covers two problems. 1. Current code gets CPUID_THERMAL_POWER_MANAGEMENT in ClockModulationInitialize() and uses its ECMD bit for all processors. But ClockModulationInitialize() is only executed by BSP, that means the bit is just

[edk2-devel] [PATCH] UefiCpuPkg CpuCommFeaturesLib: Fix ASSERT if LMCE is supported

2019-05-21 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1829 There will be ASSERT if LMCE is supported as below. DXE_ASSERT!: [CpuFeaturesDxe] XXX\UefiCpuPkg\Library\CpuCommonFeaturesLib\MachineCheck.c (342): ConfigData != ((void *) 0) The code should get Config Data and FeatureControlGetConfigD

[edk2-devel] [PATCH V2] UefiCpuPkg CpuCommFeaturesLib: Fix ASSERT if LMCE is supported

2019-05-22 Thread Zeng, Star
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1829 There will be ASSERT if LMCE is supported as below. DXE_ASSERT!: [CpuFeaturesDxe] XXX\UefiCpuPkg\Library\CpuCommonFeaturesLib\MachineCheck.c (342): ConfigData != ((void *) 0) The code should get Config Data and FeatureControlGetConfigD

Re: [edk2-devel][PATCH v1] IntelFsp2Pkg: NvsBufferPtr is missing in Fsp24ApiEntryM.nasm

2022-09-15 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: Kuo, Ted Sent: Thursday, September 15, 2022 9:16 PM To: devel@edk2.groups.io Cc: Chiu, Chasel ; Desimone, Nathaniel L ; Zeng, Star ; S, Ashraf Ali ; Duggapu, Chinni B Subject: [edk2-devel][PATCH v1] IntelFsp2Pkg: NvsBufferPtr is

Re: [edk2-devel] [PATCH V3] Maintainers.txt: Add reviewer for serial and disk

2020-08-02 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: devel@edk2.groups.io On Behalf Of Gao, Zhichao Sent: 2020年8月3日 14:05 To: devel@edk2.groups.io Cc: Gao, Zhichao ; Wang, Jian J ; Wu, Hao A ; Gao, Liming ; Ni, Ray ; Bi, Dandan ; Zeng, Star Subject: [edk2-devel] [PATCH V3

Re: [edk2-devel] [PATCH] IntelFsp2Pkg: Add Fsp22SecCoreS.inf to Dsc.

2020-06-11 Thread Zeng, Star
Reviewed-by: Star Zeng with the copyright year correction. > -Original Message- > From: Desimone, Nathaniel L > Sent: Thursday, June 11, 2020 4:35 AM > To: Chiu, Chasel ; devel@edk2.groups.io > Cc: Ma, Maurice ; Zeng, Star > Subject: RE: [PATCH] IntelFsp2Pkg: Add Fs

[edk2-devel] [PATCH] MdePkg Cpuid.h: Define CPUID.(EAX=7,ECX=0):EDX[30]

2021-10-20 Thread Zeng, Star
This patch follows new Intel SDM to define CPUID.(EAX=7,ECX=0):EDX[30]. Signed-off-by: Star Zeng Cc: Michael D Kinney Cc: Liming Gao Cc: Zhiguang Liu Cc: Ray Ni --- MdePkg/Include/Register/Intel/Cpuid.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdePkg/Include/Re

Re: [edk2-devel] [PATCH] IntelFsp2Pkg/SplitFspBin.py: adopt FSP 2.3 specification.

2021-10-27 Thread Zeng, Star
Reviewed-by: Star Zeng -Original Message- From: Chiu, Chasel Sent: Tuesday, October 26, 2021 4:06 PM To: devel@edk2.groups.io Cc: Chiu, Chasel ; Ma, Maurice ; Desimone, Nathaniel L ; Zeng, Star Subject: [PATCH] IntelFsp2Pkg/SplitFspBin.py: adopt FSP 2.3 specification. REF: https

[edk2-devel] [PATCH] IntelFsp2Pkg SplitFspBin.py: Correct file name in file header

2021-10-27 Thread Zeng, Star
Cc: Maurice Ma Cc: Nate DeSimone Cc: Chasel Chiu Signed-off-by: Star Zeng --- IntelFsp2Pkg/Tools/SplitFspBin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IntelFsp2Pkg/Tools/SplitFspBin.py b/IntelFsp2Pkg/Tools/SplitFspBin.py index 24272e82af88..c3165dd4ae69 100644 ---

Re: [edk2-devel] [PATCH] IntelFsp2Pkg: Support Multi-Phase silicon initialization.

2020-04-30 Thread Zeng, Star
Reviewed-by: Star Zeng > -Original Message- > From: Desimone, Nathaniel L > Sent: Friday, May 1, 2020 5:59 AM > To: devel@edk2.groups.io; Chiu, Chasel > Cc: Ma, Maurice ; Zeng, Star > Subject: RE: [edk2-devel] [PATCH] IntelFsp2Pkg: Support Multi-Phase silico

Re: [edk2-devel] [PATCH] IntelFsp2Pkg: Add FunctionParametePtr to FspGlobalData.

2020-05-19 Thread Zeng, Star
equilivant is a typo? > -Original Message- > From: Desimone, Nathaniel L > Sent: Wednesday, May 20, 2020 12:12 PM > To: Chiu, Chasel ; devel@edk2.groups.io > Cc: Ma, Maurice ; Zeng, Star > Subject: RE: [PATCH] IntelFsp2Pkg: Add FunctionParametePtr to > FspGlobalD

Re: [edk2-devel] [PATCH] IntelFsp2Pkg: Add FunctionParametePtr to FspGlobalData.

2020-05-19 Thread Zeng, Star
No need to resend new patch, you can go ahead with Nate's review after the correction. > -Original Message- > From: Chiu, Chasel > Sent: Wednesday, May 20, 2020 12:25 PM > To: Zeng, Star ; Desimone, Nathaniel L > ; devel@edk2.groups.io > Cc: Ma, Maurice

Re: [edk2-devel] [PATCH 2/2] UefiCpuPkg/MpInitLib: Use XADD to avoid lock acquire/release

2021-02-04 Thread Zeng, Star
Hi All, Do you think it worth or not to also update MpFuncs.nasm in Edk2\UefiCpuPkg\PiSmmCpuDxeSmm? Thanks, Star > -Original Message- > From: devel@edk2.groups.io On Behalf Of Ni, Ray > Sent: Thursday, February 4, 2021 10:59 AM > To: devel@edk2.groups.io > Cc: Laszlo Ersek ; Dong, Eric

Re: [edk2-devel] [PATCH v8] IntelFsp2WrapperPkg : FSPM/S UPD data address based on Build Type

2021-12-16 Thread Zeng, Star
: Desimone, Nathaniel L ; Zeng, Star ; Kuo, Ted ; Duggapu, Chinni B ; Chaganty, Rangasai V ; Solanki, Digant H ; V, Sangeetha ; Ni, Ray Subject: RE: [PATCH v8] IntelFsp2WrapperPkg : FSPM/S UPD data address based on Build Type Thanks Ashraf! Reviewed-by: Chasel Chiu > -Original Mess

Re: [edk2-devel] [PATCH] MdeModulePkg/ScsiDisk: Change TPL to NOTIFY

2021-12-16 Thread Zeng, Star
river which will be only ready/connected at BDS phase, right? Thanks, Star -Original Message- From: Wu, Hao A Sent: 2021年12月15日 13:43 To: Jeff Brasen ; devel@edk2.groups.io; Kinney, Michael D ; Gao, Liming ; Zeng, Star Cc: Ni, Ray Subject: RE: [PATCH] MdeModulePkg/ScsiDisk: Change T

  1   2   >