[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/2] hw/intc: Have ARM_GIC select ARM_GICV3 when KVM is not avail
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 2/2] hw/intc: Have ARM_GIC select ARM_GICV3 when KVM is not available |
Date: |
Fri, 27 Dec 2024 21:24:35 +0100 |
When the KVM accelerator is selected, the Kconfig ARM_GIC key
selects the KVM GIC implementation (ARM_GIC_KVM).
For other accelerators (TCG, HVF, ...), select the generic
implementation.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
hw/intc/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/intc/Kconfig b/hw/intc/Kconfig
index 7547528f2c2..762139d8df3 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 !KVM
select ARM_GIC_KVM if KVM
select MSI_NONBROKEN
--
2.47.1