diff options
author | Pavel Fedin | 2015-09-24 02:29:37 +0200 |
---|---|---|
committer | Peter Maydell | 2015-09-24 02:29:37 +0200 |
commit | a7bf30342e6a7924132a5c70047928261d3c7e42 (patch) | |
tree | 86f63d16b3fc36654e34a71c8d8fb9eb7166bf29 /hw/intc/Makefile.objs | |
parent | arm_kvm: Do not assume particular GIC type in kvm_arch_irqchip_create() (diff) | |
download | qemu-a7bf30342e6a7924132a5c70047928261d3c7e42.tar.gz qemu-a7bf30342e6a7924132a5c70047928261d3c7e42.tar.xz qemu-a7bf30342e6a7924132a5c70047928261d3c7e42.zip |
hw/intc: Initial implementation of vGICv3
This is the initial version of KVM-accelerated GICv3 support.
State load and save are not yet supported, live migration is
not possible.
In order to get correct class name in a simpler way, gicv3_class_name()
function is implemented, similar to gic_class_name().
Signed-off-by: Pavel Fedin <p.fedin@samsung.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Tested-by: Ashok kumar <ashoks@broadcom.com>
Message-id: 69d8f01d14994d7a1a140e96aef59fd332d02293.1441784344.git.p.fedin@samsung.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/intc/Makefile.objs')
-rw-r--r-- | hw/intc/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/intc/Makefile.objs b/hw/intc/Makefile.objs index 1317e5a5b4..004b0c25e4 100644 --- a/hw/intc/Makefile.objs +++ b/hw/intc/Makefile.objs @@ -17,6 +17,7 @@ common-obj-$(CONFIG_OPENPIC) += openpic.o obj-$(CONFIG_APIC) += apic.o apic_common.o obj-$(CONFIG_ARM_GIC_KVM) += arm_gic_kvm.o +obj-$(call land,$(CONFIG_ARM_GIC_KVM),$(TARGET_AARCH64)) += arm_gicv3_kvm.o obj-$(CONFIG_STELLARIS) += armv7m_nvic.o obj-$(CONFIG_EXYNOS4) += exynos4210_gic.o exynos4210_combiner.o obj-$(CONFIG_GRLIB) += grlib_irqmp.o |