diff options
author | Jean-Christophe Dubois <jcd@tribudubois.net> | 2022-12-20 18:27:30 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2023-01-05 14:59:37 +0000 |
commit | 60c98e72055f6ae944b459a7c0c53962caaba269 (patch) | |
tree | e79712ec2d084c58adec9b399f5aca239e681ed9 /include/hw/arm | |
parent | 9de9fa5cf2b26b13e895516c6fa1671af6994a6a (diff) | |
download | qemu-60c98e72055f6ae944b459a7c0c53962caaba269.zip qemu-60c98e72055f6ae944b459a7c0c53962caaba269.tar.gz qemu-60c98e72055f6ae944b459a7c0c53962caaba269.tar.bz2 |
i.MX7D: Connect GPT timers to IRQ
So far the GPT timers were unable to raise IRQs to the processor.
Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw/arm')
-rw-r--r-- | include/hw/arm/fsl-imx7.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/hw/arm/fsl-imx7.h b/include/hw/arm/fsl-imx7.h index 1c5fa6f..50f19d8 100644 --- a/include/hw/arm/fsl-imx7.h +++ b/include/hw/arm/fsl-imx7.h @@ -235,6 +235,11 @@ enum FslIMX7IRQs { FSL_IMX7_USB2_IRQ = 42, FSL_IMX7_USB3_IRQ = 40, + FSL_IMX7_GPT1_IRQ = 55, + FSL_IMX7_GPT2_IRQ = 54, + FSL_IMX7_GPT3_IRQ = 53, + FSL_IMX7_GPT4_IRQ = 52, + FSL_IMX7_WDOG1_IRQ = 78, FSL_IMX7_WDOG2_IRQ = 79, FSL_IMX7_WDOG3_IRQ = 10, |