aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2020-05-29 09:39:54 +0200
committerGerd Hoffmann <kraxel@redhat.com>2020-06-17 14:24:07 +0200
commite289655cea93bd50856a0896e2d49e5c7ed10c3b (patch)
tree751c043a825885531a9569d099d9b305e77a26c0
parent5c24bce3056ff209a1ecc50ff4b7e65b85ad8e74 (diff)
downloadqemu-e289655cea93bd50856a0896e2d49e5c7ed10c3b.zip
qemu-e289655cea93bd50856a0896e2d49e5c7ed10c3b.tar.gz
qemu-e289655cea93bd50856a0896e2d49e5c7ed10c3b.tar.bz2
microvm: use 3G split unconditionally
Looks like the logic was copied over from q35. q35 does this for backward compatibility, there is no reason to do this on microvm though. Also microvm doesn't need much mmio space, 1G is more than enough. Using an mmio window smaller than 1G is bad for gigabyte alignment and hugepages though. So split @ 3G unconditionally. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Message-id: 20200529073957.8018-2-kraxel@redhat.com
-rw-r--r--hw/i386/microvm.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/hw/i386/microvm.c b/hw/i386/microvm.c
index 937db10..44f9408 100644
--- a/hw/i386/microvm.c
+++ b/hw/i386/microvm.c
@@ -170,24 +170,10 @@ static void microvm_memory_init(MicrovmMachineState *mms)
MemoryRegion *ram_below_4g, *ram_above_4g;
MemoryRegion *system_memory = get_system_memory();
FWCfgState *fw_cfg;
- ram_addr_t lowmem;
+ ram_addr_t lowmem = 0xc0000000; /* 3G */
int i;
/*
- * Check whether RAM fits below 4G (leaving 1/2 GByte for IO memory
- * and 256 Mbytes for PCI Express Enhanced Configuration Access Mapping
- * also known as MMCFG).
- * If it doesn't, we need to split it in chunks below and above 4G.
- * In any case, try to make sure that guest addresses aligned at
- * 1G boundaries get mapped to host addresses aligned at 1G boundaries.
- */
- if (machine->ram_size >= 0xb0000000) {
- lowmem = 0x80000000;
- } else {
- lowmem = 0xb0000000;
- }
-
- /*
* Handle the machine opt max-ram-below-4g. It is basically doing
* min(qemu limit, user limit).
*/