diff options
author | Marc Zyngier | 2022-01-14 15:07:36 +0100 |
---|---|---|
committer | Peter Maydell | 2022-01-20 12:47:52 +0100 |
commit | c8f008c40fb9dc35bc0fdcd52d747c920d614725 (patch) | |
tree | e084b2cfc143ccb84de22bd7f3f56a09636863b5 /include/hw/arm | |
parent | hw/intc/arm_gic: Allow reset of the running priority (diff) | |
download | qemu-c8f008c40fb9dc35bc0fdcd52d747c920d614725.tar.gz qemu-c8f008c40fb9dc35bc0fdcd52d747c920d614725.tar.xz qemu-c8f008c40fb9dc35bc0fdcd52d747c920d614725.zip |
hw/arm/virt: Add a control for the the highmem PCIe MMIO
Just like we can control the enablement of the highmem PCIe ECAM
region using highmem_ecam, let's add a control for the highmem
PCIe MMIO region.
Similarily to highmem_ecam, this region is disabled when highmem
is off.
Signed-off-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Message-id: 20220114140741.1358263-2-maz@kernel.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw/arm')
-rw-r--r-- | include/hw/arm/virt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/arm/virt.h b/include/hw/arm/virt.h index be0534608f..cf5d8b83de 100644 --- a/include/hw/arm/virt.h +++ b/include/hw/arm/virt.h @@ -143,6 +143,7 @@ struct VirtMachineState { bool secure; bool highmem; bool highmem_ecam; + bool highmem_mmio; bool its; bool tcg_its; bool virt; |