mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg: Prevent from re-initializing CPU features during S3 resume
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3621 REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3631 Current CPU feature initialization design: During normal boot, CpuFeaturesPei module (inside FSP) initializes the CPU features. During S3 boot, CpuFeaturesPei module does nothing, and CpuSmm driver (in SMRAM) initializes CPU features instead. This code change prevents CpuSmm driver from re-initializing CPU features during S3 resume if CpuFeaturesPei module has done the same initialization. In addition, EDK2 contains DxeIpl PEIM that calls S3RestoreConfig2 PPI during S3 boot and this PPI eventually calls CpuSmm driver (in SMRAM) to initialize the CPU features, so "EDK2 + FSP" does not have the CPU feature initialization issue during S3 boot. But "coreboot" does not contain DxeIpl PEIM and the issue appears, unless "PcdCpuFeaturesInitOnS3Resume" is set to TRUE. Signed-off-by: Jason Lou <yun.lou@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Cc: Eric Dong <eric.dong@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Rahul Kumar <rahul1.kumar@intel.com>
This commit is contained in:
parent
010753b7e7
commit
89f7ed8b29
|
@ -1152,23 +1152,31 @@ GetAcpiCpuData (
|
||||||
mAcpiCpuData.ApMachineCheckHandlerBase = (EFI_PHYSICAL_ADDRESS)(UINTN)MachineCheckHandlerForAp;
|
mAcpiCpuData.ApMachineCheckHandlerBase = (EFI_PHYSICAL_ADDRESS)(UINTN)MachineCheckHandlerForAp;
|
||||||
|
|
||||||
ZeroMem (&mAcpiCpuData.CpuFeatureInitData, sizeof (CPU_FEATURE_INIT_DATA));
|
ZeroMem (&mAcpiCpuData.CpuFeatureInitData, sizeof (CPU_FEATURE_INIT_DATA));
|
||||||
CopyCpuFeatureInitDatatoSmram (&mAcpiCpuData.CpuFeatureInitData, &AcpiCpuData->CpuFeatureInitData);
|
|
||||||
|
|
||||||
CpuStatus = &mAcpiCpuData.CpuFeatureInitData.CpuStatus;
|
if (!PcdGetBool (PcdCpuFeaturesInitOnS3Resume)) {
|
||||||
|
//
|
||||||
|
// If the CPU features will not be initialized by CpuFeaturesPei module during
|
||||||
|
// next ACPI S3 resume, copy the CPU features initialization data into SMRAM,
|
||||||
|
// which will be consumed in SmmRestoreCpu during next S3 resume.
|
||||||
|
//
|
||||||
|
CopyCpuFeatureInitDatatoSmram (&mAcpiCpuData.CpuFeatureInitData, &AcpiCpuData->CpuFeatureInitData);
|
||||||
|
|
||||||
mCpuFlags.CoreSemaphoreCount = AllocateZeroPool (
|
CpuStatus = &mAcpiCpuData.CpuFeatureInitData.CpuStatus;
|
||||||
sizeof (UINT32) * CpuStatus->PackageCount *
|
|
||||||
CpuStatus->MaxCoreCount * CpuStatus->MaxThreadCount
|
|
||||||
);
|
|
||||||
ASSERT (mCpuFlags.CoreSemaphoreCount != NULL);
|
|
||||||
|
|
||||||
mCpuFlags.PackageSemaphoreCount = AllocateZeroPool (
|
mCpuFlags.CoreSemaphoreCount = AllocateZeroPool (
|
||||||
sizeof (UINT32) * CpuStatus->PackageCount *
|
sizeof (UINT32) * CpuStatus->PackageCount *
|
||||||
CpuStatus->MaxCoreCount * CpuStatus->MaxThreadCount
|
CpuStatus->MaxCoreCount * CpuStatus->MaxThreadCount
|
||||||
);
|
);
|
||||||
ASSERT (mCpuFlags.PackageSemaphoreCount != NULL);
|
ASSERT (mCpuFlags.CoreSemaphoreCount != NULL);
|
||||||
|
|
||||||
InitializeSpinLock((SPIN_LOCK*) &mCpuFlags.MemoryMappedLock);
|
mCpuFlags.PackageSemaphoreCount = AllocateZeroPool (
|
||||||
|
sizeof (UINT32) * CpuStatus->PackageCount *
|
||||||
|
CpuStatus->MaxCoreCount * CpuStatus->MaxThreadCount
|
||||||
|
);
|
||||||
|
ASSERT (mCpuFlags.PackageSemaphoreCount != NULL);
|
||||||
|
|
||||||
|
InitializeSpinLock((SPIN_LOCK*) &mCpuFlags.MemoryMappedLock);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# This SMM driver performs SMM initialization, deploy SMM Entry Vector,
|
# This SMM driver performs SMM initialization, deploy SMM Entry Vector,
|
||||||
# provides CPU specific services in SMM.
|
# provides CPU specific services in SMM.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR>
|
# Copyright (c) 2009 - 2021, Intel Corporation. All rights reserved.<BR>
|
||||||
# Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
|
# Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
@ -134,6 +134,7 @@
|
||||||
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmCodeAccessCheckEnable ## CONSUMES
|
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmCodeAccessCheckEnable ## CONSUMES
|
||||||
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmSyncMode ## CONSUMES
|
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmSyncMode ## CONSUMES
|
||||||
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmShadowStackSize ## SOMETIMES_CONSUMES
|
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmShadowStackSize ## SOMETIMES_CONSUMES
|
||||||
|
gUefiCpuPkgTokenSpaceGuid.PcdCpuFeaturesInitOnS3Resume ## CONSUMES
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable ## CONSUMES
|
gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable ## CONSUMES
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask ## CONSUMES
|
gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask ## CONSUMES
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdNullPointerDetectionPropertyMask ## CONSUMES
|
gEfiMdeModulePkgTokenSpaceGuid.PcdNullPointerDetectionPropertyMask ## CONSUMES
|
||||||
|
|
Loading…
Reference in New Issue