diff options
| author | Philippe Mathieu-Daudé <philmd@oss.qualcomm.com> | 2026-08-18 10:39:08 +0100 |
|---|---|---|
| committer | Michael Tokarev <mjt@tls.msk.ru> | 2026-08-21 19:22:05 +0300 |
| commit | 802ab469a5dde90e3e52e924b6350000045b74d4 (patch) | |
| tree | 27bc70ba850ef9e04e4578945b1fd87aa0b21e98 | |
| parent | a1d64c7ecd92b69519200d8601c9d625c70319c2 (diff) | |
| download | qemu-802ab469a5dde90e3e52e924b6350000045b74d4.tar.gz qemu-802ab469a5dde90e3e52e924b6350000045b74d4.zip | |
hw/intc/arm_gicv3: Have GIC kconfig select GICv3 for HVF and WHPX
While trying to fix the GICv3 dependency on KVM and WHPX in
commit 39a8c3941eb, we missed the Kconfig ARM_GIC symbol only
selects GICv3 for TCG, not HVF and WHPX. Fix that.
Cc: qemu-stable@nongnu.org
Fixes: 39a8c3941eb ("hw/intc/arm_gicv3: Fix ARM_GICV3 dependency for KVM / WHPX")
Signed-off-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com>
Message-id: 20260812220816.94034-1-philmd@oss.qualcomm.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
(cherry picked from commit a0c093900d84f6668c27eaeab4ca74935b5857b2)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
| -rw-r--r-- | hw/intc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/intc/Kconfig b/hw/intc/Kconfig index 636d00b7e8..1fec78f3bf 100644 --- a/hw/intc/Kconfig +++ b/hw/intc/Kconfig @@ -23,7 +23,7 @@ config APIC config ARM_GIC bool - select ARM_GICV3 if TCG + select ARM_GICV3 if TCG || HVF || WHPX select ARM_GIC_KVM if KVM select MSI_NONBROKEN |
