diff options
author | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2018-12-13 13:48:03 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2018-12-13 13:48:03 +0000 |
commit | fb179055fe2344fb3a13e7c9638e51b5a159eae8 (patch) | |
tree | 87d275a1a64e5266cba6c51eed2f1ab5b36315b8 /include | |
parent | 7fd8115f9d2ecd0151611b37c2a8c726bfb549d6 (diff) | |
download | qemu-fb179055fe2344fb3a13e7c9638e51b5a159eae8.zip qemu-fb179055fe2344fb3a13e7c9638e51b5a159eae8.tar.gz qemu-fb179055fe2344fb3a13e7c9638e51b5a159eae8.tar.bz2 |
hw/arm: versal: Use IRQs 111 - 118 for virtio-mmio
Use IRQs 111 - 118 for virtio-mmio. The interrupts we're currently
using 160+ are not available in the Versal GIC.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-id: 20181129163655.20370-4-edgar.iglesias@gmail.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/arm/xlnx-versal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/hw/arm/xlnx-versal.h b/include/hw/arm/xlnx-versal.h index 9da621e..76fb9de 100644 --- a/include/hw/arm/xlnx-versal.h +++ b/include/hw/arm/xlnx-versal.h @@ -75,9 +75,9 @@ typedef struct Versal { #define VERSAL_GEM1_IRQ_0 58 #define VERSAL_GEM1_WAKE_IRQ_0 59 -/* Architecturally eserved IRQs suitable for virtualization. */ -#define VERSAL_RSVD_HIGH_IRQ_FIRST 160 -#define VERSAL_RSVD_HIGH_IRQ_LAST 255 +/* Architecturally reserved IRQs suitable for virtualization. */ +#define VERSAL_RSVD_IRQ_FIRST 111 +#define VERSAL_RSVD_IRQ_LAST 118 #define MM_TOP_RSVD 0xa0000000U #define MM_TOP_RSVD_SIZE 0x4000000 |