mirror of https://github.com/acidanthera/audk.git
OvmfPkg/AmdSev: Disable PcdFirstTimeWakeUpAPsBySipi
PcdFirstTimeWakeUpAPsBySipi was recently introduced to indicate when the full INIT-SIPI-SIPI sequence can be skipped for AP bringup. It is true by default, but needs to be disabled for QEMU/OVMF where early INIT is not simulated. Commit1d76560146
("OvmfPkg: Disable PcdFirstTimeWakeUpAPsBySipi.") added changes to disable it by default for OvmfPkg, but a similar change was not made for the AmdSev package. This breaks booting of SEV and SNP guests. Fix this defaulting PcdFirstTimeWakeUpAPsBySipi to false for AmdSev package, as was previously done for OvmfPkg variants. Fixes:eaffa1d7ff
("UefiCpuPkg:Wake up APs after power-up or RESET through SIPI.") Signed-off-by: Michael Roth <michael.roth@amd.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
dfb941d32a
commit
8b66f9df1b
|
@ -468,6 +468,14 @@
|
|||
gEfiMdeModulePkgTokenSpaceGuid.PcdConInConnectOnDemand|TRUE
|
||||
gUefiOvmfPkgTokenSpaceGuid.PcdBootRestrictToFirmware|TRUE
|
||||
|
||||
#
|
||||
# INIT is now triggered before BIOS by ucode/hardware. In the OVMF
|
||||
# environment, QEMU lacks a simulation for the INIT process.
|
||||
# To address this, PcdFirstTimeWakeUpAPsBySipi set to FALSE to
|
||||
# broadcast INIT-SIPI-SIPI for the first time.
|
||||
#
|
||||
gUefiCpuPkgTokenSpaceGuid.PcdFirstTimeWakeUpAPsBySipi|FALSE
|
||||
|
||||
################################################################################
|
||||
#
|
||||
# Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
|
||||
|
|
Loading…
Reference in New Issue