diff mbox series

WHPX: Add support for device backed memory regions

Message ID 20220727180012.45615-1-aidan@revers.engineering
State New
Headers show
Series WHPX: Add support for device backed memory regions | expand

Commit Message

Aidan Khoury July 27, 2022, 6 p.m. UTC
Due to skipping the mapping of read only device memory, Windows
Hypervisor Platform would fail to emulate such memory accesses when booting
OVMF EDK2 firmware. This patch adds ROM device memory region support
for WHPX since the Windows Hypervisor Platform supports mapping read-only
device memory, which allows successful booting of OVMF EDK2 firmware.

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/513
          https://gitlab.com/qemu-project/qemu/-/issues/934
Buglink: https://bugs.launchpad.net/bugs/1821595

Signed-off-by: Aidan Khoury <aidan@revers.engineering>
---
 target/i386/whpx/whpx-all.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

Comments

Helge Konetzka July 30, 2022, 8:39 a.m. UTC | #1
Am 27.07.22 um 20:00 schrieb Aidan Khoury:
> Due to skipping the mapping of read only device memory, Windows
> Hypervisor Platform would fail to emulate such memory accesses when booting
> OVMF EDK2 firmware. This patch adds ROM device memory region support
> for WHPX since the Windows Hypervisor Platform supports mapping read-only
> device memory, which allows successful booting of OVMF EDK2 firmware.
> 
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/513
>            https://gitlab.com/qemu-project/qemu/-/issues/934
> Buglink: https://bugs.launchpad.net/bugs/1821595
> 
> Signed-off-by: Aidan Khoury <aidan@revers.engineering>
> ---
>   target/i386/whpx/whpx-all.c | 11 +++++++++--
>   1 file changed, 9 insertions(+), 2 deletions(-)
> 
> diff --git a/target/i386/whpx/whpx-all.c b/target/i386/whpx/whpx-all.c
> index b22a3314b4..7a61df1135 100644
> --- a/target/i386/whpx/whpx-all.c
> +++ b/target/i386/whpx/whpx-all.c
> @@ -2363,11 +2363,18 @@ static void whpx_process_section(MemoryRegionSection *section, int add)
>       MemoryRegion *mr = section->mr;
>       hwaddr start_pa = section->offset_within_address_space;
>       ram_addr_t size = int128_get64(section->size);
> +    bool is_romd = false;
>       unsigned int delta;
>       uint64_t host_va;
>   
>       if (!memory_region_is_ram(mr)) {
> -        return;
> +        if (memory_region_is_romd(mr)) {
> +            is_romd = true;
> +            warn_report("WHPX: ROMD region 0x%016" PRIx64 "->0x%016" PRIx64,
> +                        start_pa, start_pa + size);
> +        } else {
> +            return;
> +        }
>       }
>   
>       delta = qemu_real_host_page_size() - (start_pa & ~qemu_real_host_page_mask());
> @@ -2386,7 +2393,7 @@ static void whpx_process_section(MemoryRegionSection *section, int add)
>               + section->offset_within_region + delta;
>   
>       whpx_update_mapping(start_pa, size, (void *)(uintptr_t)host_va, add,
> -                        memory_region_is_rom(mr), mr->name);
> +                        memory_region_is_rom(mr) || is_romd, mr->name);
>   }
>   
>   static void whpx_region_add(MemoryListener *listener,

Test was successful on Windows 10 Pro, 21H1, build & test environment 
MSYS2, MINGW64

Tested-by: Helge Konetzka <hk@zapateado.de>

Test execution after building and installing patched MSys2/Mingw64 package:

$ cp /mingw64/share/qemu/edk2-i386-vars.fd ./
$ qemu-system-x86_64 \
  -M q35 \
  -m 1536 \
  -accel whpx,kernel-irqchip=off \
  -drive 
file=/mingw64/share/qemu/edk2-x86_64-code.fd,if=pflash,format=raw,readonly=on 
\
  -drive file=edk2-i386-vars.fd,if=pflash,format=raw,readonly=off \
  -cdrom openSUSE-Leap-15.3-GNOME-Live-x86_64-Media.iso

Windows Hypervisor Platform accelerator is operational
D:\msys64\mingw64\bin\qemu-system-x86_64.exe: warning: WHPX: ROMD region 
0x00000000ffc84000->0x0000000100000000
D:\msys64\mingw64\bin\qemu-system-x86_64.exe: warning: WHPX: ROMD region 
0x00000000ffc00000->0x00000000ffc84000
qemu: warning: WHPX: ROMD region 0x00000000ffc00000->0x00000000ffc84000
qemu: warning: WHPX: ROMD region 0x00000000ffc00000->0x00000000ffc84000
diff mbox series

Patch

diff --git a/target/i386/whpx/whpx-all.c b/target/i386/whpx/whpx-all.c
index b22a3314b4..7a61df1135 100644
--- a/target/i386/whpx/whpx-all.c
+++ b/target/i386/whpx/whpx-all.c
@@ -2363,11 +2363,18 @@  static void whpx_process_section(MemoryRegionSection *section, int add)
     MemoryRegion *mr = section->mr;
     hwaddr start_pa = section->offset_within_address_space;
     ram_addr_t size = int128_get64(section->size);
+    bool is_romd = false;
     unsigned int delta;
     uint64_t host_va;
 
     if (!memory_region_is_ram(mr)) {
-        return;
+        if (memory_region_is_romd(mr)) {
+            is_romd = true;
+            warn_report("WHPX: ROMD region 0x%016" PRIx64 "->0x%016" PRIx64,
+                        start_pa, start_pa + size);
+        } else {
+            return;
+        }
     }
 
     delta = qemu_real_host_page_size() - (start_pa & ~qemu_real_host_page_mask());
@@ -2386,7 +2393,7 @@  static void whpx_process_section(MemoryRegionSection *section, int add)
             + section->offset_within_region + delta;
 
     whpx_update_mapping(start_pa, size, (void *)(uintptr_t)host_va, add,
-                        memory_region_is_rom(mr), mr->name);
+                        memory_region_is_rom(mr) || is_romd, mr->name);
 }
 
 static void whpx_region_add(MemoryListener *listener,