mirror of https://github.com/acidanthera/audk.git
OvmfPkg/Sec: Enable cache early to speed up booting
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=2198 Currently, the OVMF code relies on the hypervisor to enable the cache support on the processor in order to improve the boot speed. However, with SEV-ES, the hypervisor is not allowed to change the CR0 register to enable caching. Update the OVMF Sec support to enable caching in order to improve the boot speed when running as an SEV-ES guest. Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Ard Biesheuvel <ard.biesheuvel@arm.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com> Regression-tested-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
parent
13e5492bfd
commit
e2db781f0c
|
@ -906,6 +906,13 @@ SecCoreStartupWithStack (
|
|||
// For non SEV-ES guests, just load the IDTR.
|
||||
//
|
||||
AsmWriteIdtr (&IdtDescriptor);
|
||||
} else {
|
||||
//
|
||||
// Under SEV-ES, the hypervisor can't modify CR0 and so can't enable
|
||||
// caching in order to speed up the boot. Enable caching early for
|
||||
// an SEV-ES guest.
|
||||
//
|
||||
AsmEnableCache ();
|
||||
}
|
||||
|
||||
DEBUG ((DEBUG_INFO,
|
||||
|
|
Loading…
Reference in New Issue