diff --git a/OvmfPkg/PlatformPei/Platform.c b/OvmfPkg/PlatformPei/Platform.c index c379f88b4d..833f62adff 100644 --- a/OvmfPkg/PlatformPei/Platform.c +++ b/OvmfPkg/PlatformPei/Platform.c @@ -166,6 +166,11 @@ MiscInitialization ( // Build the CPU hob with 36-bit addressing and 16-bits of IO space. // BuildCpuHob (36, 16); + + // + // Set the PM I/O base address to 0x400 + // + PciAndThenOr32 (PCI_LIB_ADDRESS (0, 1, 3, 0x40), (UINT32) ~0xfc0, 0x400); } diff --git a/OvmfPkg/PlatformPei/PlatformPei.inf b/OvmfPkg/PlatformPei/PlatformPei.inf index d9f905242f..3f0a19439e 100644 --- a/OvmfPkg/PlatformPei/PlatformPei.inf +++ b/OvmfPkg/PlatformPei/PlatformPei.inf @@ -46,6 +46,7 @@ DebugLib HobLib IoLib + PciLib PeiResourcePublicationLib PeiServicesTablePointerLib PeimEntryPoint