9fddb846e8
- Rebase to edk2-stable202302 [RHEL-266] Resolves: RHEL-266 (rebase edk2 to 2023-02 stable tag)
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
From 2faeedfbd415d0b76ba4b21bb22b7577aee17243 Mon Sep 17 00:00:00 2001
|
|
From: Gerd Hoffmann <kraxel@redhat.com>
|
|
Date: Thu, 2 Mar 2023 12:01:36 +0100
|
|
Subject: OvmfPkg: disable dynamic mmio window (rhel only)
|
|
|
|
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
---
|
|
OvmfPkg/Library/PlatformInitLib/MemDetect.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/OvmfPkg/Library/PlatformInitLib/MemDetect.c b/OvmfPkg/Library/PlatformInitLib/MemDetect.c
|
|
index 38cece9173..19b8c470a8 100644
|
|
--- a/OvmfPkg/Library/PlatformInitLib/MemDetect.c
|
|
+++ b/OvmfPkg/Library/PlatformInitLib/MemDetect.c
|
|
@@ -690,7 +690,8 @@ PlatformDynamicMmioWindow (
|
|
AddrSpace = LShiftU64 (1, PlatformInfoHob->PhysMemAddressWidth);
|
|
MmioSpace = LShiftU64 (1, PlatformInfoHob->PhysMemAddressWidth - 3);
|
|
|
|
- if ((PlatformInfoHob->PcdPciMmio64Size < MmioSpace) &&
|
|
+ if (FALSE /* disable for RHEL-9.2, libvirt is not ready yet */ &&
|
|
+ (PlatformInfoHob->PcdPciMmio64Size < MmioSpace) &&
|
|
(PlatformInfoHob->PcdPciMmio64Base + MmioSpace < AddrSpace))
|
|
{
|
|
DEBUG ((DEBUG_INFO, "%a: using dynamic mmio window\n", __func__));
|
|
--
|
|
2.39.1
|
|
|