diff options
author | Andrew Jones | 2016-10-17 20:22:17 +0200 |
---|---|---|
committer | Peter Maydell | 2016-10-17 20:22:17 +0200 |
commit | 2231f69b4e4523c43aa459cab18ab77c0e29b4d1 (patch) | |
tree | 55b025ec0d5033ed1729fcd07b467a042a5b8545 /include/hw/arm | |
parent | hw/arm/virt-acpi-build: fix MADT generation (diff) | |
download | qemu-2231f69b4e4523c43aa459cab18ab77c0e29b4d1.tar.gz qemu-2231f69b4e4523c43aa459cab18ab77c0e29b4d1.tar.xz qemu-2231f69b4e4523c43aa459cab18ab77c0e29b4d1.zip |
hw/arm/virt: no ITS on older machine types
We should avoid exposing new hardware (through DT and ACPI) on older
machine types. This patch keeps 2.7 and older from changing, despite
the introduction of ITS support for 2.8.
Signed-off-by: Andrew Jones <drjones@redhat.com>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Message-id: 1476117341-32690-3-git-send-email-drjones@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw/arm')
-rw-r--r-- | include/hw/arm/virt-acpi-build.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/arm/virt-acpi-build.h b/include/hw/arm/virt-acpi-build.h index e43330ad65..f5ec749b8f 100644 --- a/include/hw/arm/virt-acpi-build.h +++ b/include/hw/arm/virt-acpi-build.h @@ -33,6 +33,7 @@ typedef struct VirtGuestInfo { const int *irqmap; bool use_highmem; int gic_version; + bool no_its; } VirtGuestInfo; |