2013-01-20 18:28:06 -05:00
#
# Makefile for Kernel-based Virtual Machine module
#
plus_virt := $( call as-instr,.arch_extension virt,+virt)
i f e q ( $( plus_virt ) , + v i r t )
plus_virt_def := -DREQUIRES_VIRT= 1
e n d i f
2015-03-26 14:39:30 +00:00
ccflags-y += -Iarch/arm/kvm
2013-01-20 18:28:06 -05:00
CFLAGS_arm.o := -I. $( plus_virt_def)
CFLAGS_mmu.o := -I.
AFLAGS_init.o := -Wa,-march= armv7-a$( plus_virt)
AFLAGS_interrupts.o := -Wa,-march= armv7-a$( plus_virt)
ARM: KVM: move GIC/timer code to a common location
As KVM/arm64 is looming on the horizon, it makes sense to move some
of the common code to a single location in order to reduce duplication.
The code could live anywhere. Actually, most of KVM is already built
with a bunch of ugly ../../.. hacks in the various Makefiles, so we're
not exactly talking about style here. But maybe it is time to start
moving into a less ugly direction.
The include files must be in a "public" location, as they are accessed
from non-KVM files (arch/arm/kernel/asm-offsets.c).
For this purpose, introduce two new locations:
- virt/kvm/arm/ : x86 and ia64 already share the ioapic code in
virt/kvm, so this could be seen as a (very ugly) precedent.
- include/kvm/ : there is already an include/xen, and while the
intent is slightly different, this seems as good a location as
any
Eventually, we should probably have independant Makefiles at every
levels (just like everywhere else in the kernel), but this is just
the first step.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
2013-05-14 14:31:01 +01:00
KVM := ../../../virt/kvm
2015-06-05 16:21:49 +01:00
kvm-arm-y = $( KVM) /kvm_main.o $( KVM) /coalesced_mmio.o $( KVM) /eventfd.o $( KVM) /vfio.o
2013-01-20 18:28:06 -05:00
2016-01-02 15:09:54 +00:00
obj-$(CONFIG_KVM_ARM_HOST) += hyp/
2013-01-20 18:28:06 -05:00
obj-y += kvm-arm.o init.o interrupts.o
2012-10-05 11:11:11 +01:00
obj-y += arm.o handle_exit.o guest.o mmu.o emulate.o reset.o
2013-09-26 16:49:28 +01:00
obj-y += coproc.o coproc_a15.o coproc_a7.o mmio.o psci.o perf.o
2016-09-06 09:28:43 +01:00
obj-y += $( KVM) /arm/aarch32.o
2016-03-16 15:06:41 +00:00
obj-y += $( KVM) /arm/vgic/vgic.o
obj-y += $( KVM) /arm/vgic/vgic-init.o
obj-y += $( KVM) /arm/vgic/vgic-irqfd.o
obj-y += $( KVM) /arm/vgic/vgic-v2.o
2016-09-12 15:49:24 +01:00
obj-y += $( KVM) /arm/vgic/vgic-v3.o
2016-03-16 15:06:41 +00:00
obj-y += $( KVM) /arm/vgic/vgic-mmio.o
obj-y += $( KVM) /arm/vgic/vgic-mmio-v2.o
2016-09-12 15:49:24 +01:00
obj-y += $( KVM) /arm/vgic/vgic-mmio-v3.o
2016-03-16 15:06:41 +00:00
obj-y += $( KVM) /arm/vgic/vgic-kvm-device.o
2016-11-02 11:55:34 +00:00
obj-y += $( KVM) /arm/vgic/vgic-its.o
2016-07-22 16:20:41 +00:00
obj-y += $( KVM) /irqchip.o
2015-03-11 14:21:31 +01:00
obj-y += $( KVM) /arm/arch_timer.o