REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1973 For semaphore type register, it required all processors to do the task at the same time. Current logic begins BSP's task after all APs have finished their tasks. This will caused set semaphore task hang if semaphore has package level type. This patch use new EDKII_PEI_MP_SERVICES2_PPI to start all processors at the same time to fix the potential hang issue. Cc: Ray Ni <ray.ni@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Chandana Kumar <chandana.c.kumar@intel.com> Cc: Star Zeng <star.zeng@intel.com> Signed-off-by: Eric Dong <eric.dong@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
59 lines
1.7 KiB
INI
59 lines
1.7 KiB
INI
## @file
|
|
# Register CPU Features Library PEI instance.
|
|
#
|
|
# Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.<BR>
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = PeiRegisterCpuFeaturesLib
|
|
MODULE_UNI_FILE = RegisterCpuFeaturesLib.uni
|
|
FILE_GUID = D8855DB3-8348-41B5-BDA4-385351767D41
|
|
MODULE_TYPE = PEIM
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = RegisterCpuFeaturesLib|PEIM
|
|
|
|
#
|
|
# The following information is for reference only and not required by the build tools.
|
|
#
|
|
# VALID_ARCHITECTURES = IA32 X64
|
|
#
|
|
|
|
[Sources.common]
|
|
PeiRegisterCpuFeaturesLib.c
|
|
RegisterCpuFeaturesLib.c
|
|
RegisterCpuFeatures.h
|
|
CpuFeaturesInitialize.c
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
UefiCpuPkg/UefiCpuPkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
DebugLib
|
|
PcdLib
|
|
LocalApicLib
|
|
BaseMemoryLib
|
|
MemoryAllocationLib
|
|
SynchronizationLib
|
|
HobLib
|
|
PeiServicesLib
|
|
PeiServicesTablePointerLib
|
|
IoLib
|
|
|
|
[Ppis]
|
|
gEfiPeiMpServicesPpiGuid ## CONSUMES
|
|
gEdkiiPeiMpServices2PpiGuid ## CONSUMES
|
|
|
|
[Pcd]
|
|
gUefiCpuPkgTokenSpaceGuid.PcdCpuS3DataAddress ## CONSUMES
|
|
gUefiCpuPkgTokenSpaceGuid.PcdCpuFeaturesSupport ## CONSUMES
|
|
gUefiCpuPkgTokenSpaceGuid.PcdCpuFeaturesCapability ## PRODUCES
|
|
gUefiCpuPkgTokenSpaceGuid.PcdCpuFeaturesSetting ## CONSUMES ## PRODUCES
|
|
|
|
[Depex]
|
|
gEfiPeiMpServicesPpiGuid AND gEdkiiCpuFeaturesSetDoneGuid
|