License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / arch / arm64 / kvm / hyp / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
06282fd2
MZ
2#
3# Makefile for Kernel-based Virtual Machine module, HYP part
4#
5
cde13b5d
MZ
6ccflags-y += -fno-stack-protector
7
6d50d54c
MZ
8KVM=../../../../virt/kvm
9
10obj-$(CONFIG_KVM_ARM_HOST) += $(KVM)/arm/hyp/vgic-v2-sr.o
19f0ece4 11obj-$(CONFIG_KVM_ARM_HOST) += $(KVM)/arm/hyp/vgic-v3-sr.o
6d50d54c
MZ
12obj-$(CONFIG_KVM_ARM_HOST) += $(KVM)/arm/hyp/timer-sr.o
13
6d6ec20f 14obj-$(CONFIG_KVM_ARM_HOST) += sysreg-sr.o
8eb99267 15obj-$(CONFIG_KVM_ARM_HOST) += debug-sr.o
b97b66c1 16obj-$(CONFIG_KVM_ARM_HOST) += entry.o
be901e9b 17obj-$(CONFIG_KVM_ARM_HOST) += switch.o
c13d1683 18obj-$(CONFIG_KVM_ARM_HOST) += fpsimd.o
5eec0a91 19obj-$(CONFIG_KVM_ARM_HOST) += tlb.o
2b28162c 20obj-$(CONFIG_KVM_ARM_HOST) += hyp-entry.o
3a3604bc 21obj-$(CONFIG_KVM_ARM_HOST) += s2-setup.o
a6cdf1c0 22
5e4c7549
AP
23# KVM code is run at a different exception code with a different map, so
24# compiler instrumentation that inserts callbacks or checks into the code may
25# cause crashes. Just disable it.
a6cdf1c0
CM
26GCOV_PROFILE := n
27KASAN_SANITIZE := n
28UBSAN_SANITIZE := n
5e4c7549 29KCOV_INSTRUMENT := n