From: Sebastien Boeuf <sebastien.bo...@intel.com> Since Cloud Hypervisor doesn't emulate an A20 gate register on I/O port 0x92, it's better to avoid accessing it when the platform is identified as Cloud Hypervisor.
Signed-off-by: Sebastien Boeuf <sebastien.bo...@intel.com> --- OvmfPkg/Library/PlatformInitLib/Platform.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/OvmfPkg/Library/PlatformInitLib/Platform.c b/OvmfPkg/Library/PlatformInitLib/Platform.c index cb1a893aef..f2b07dc937 100644 --- a/OvmfPkg/Library/PlatformInitLib/Platform.c +++ b/OvmfPkg/Library/PlatformInitLib/Platform.c @@ -314,7 +314,9 @@ PlatformMiscInitialization ( // // Disable A20 Mask // - IoOr8 (0x92, BIT1); + if (PlatformInfoHob->HostBridgeDevId != CLOUDHV_DEVICE_ID) { + IoOr8 (0x92, BIT1); + } // // Build the CPU HOB with guest RAM size dependent address width and 16-bits -- 2.32.0 --------------------------------------------------------------------- Intel Corporation SAS (French simplified joint stock company) Registered headquarters: "Les Montalets"- 2, rue de Paris, 92196 Meudon Cedex, France Registration Number: 302 456 199 R.C.S. NANTERRE Capital: 5 208 026.16 Euros This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies. -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89658): https://edk2.groups.io/g/devel/message/89658 Mute This Topic: https://groups.io/mt/91011856/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-