1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
2b61442dfSMasahiro Yamadainclude ../../../build/Build.include
3c2390f16SPaolo Bonzini
4783e9e51SPaolo Bonziniall:
5783e9e51SPaolo Bonzini
6cc68765dSAndrew Jonestop_srcdir = ../../../..
7211929fdSShuah KhanKSFT_KHDR_INSTALL := 1
866d69e08SShuah Khan
966d69e08SShuah Khan# For cross-builds to work, UNAME_M has to map to ARCH and arch specific
1066d69e08SShuah Khan# directories and targets in this Makefile. "uname -m" doesn't map to
1166d69e08SShuah Khan# arch specific sub-directory names.
1266d69e08SShuah Khan#
1366d69e08SShuah Khan# UNAME_M variable to used to run the compiles pointing to the right arch
1466d69e08SShuah Khan# directories and build the right targets for these supported architectures.
1566d69e08SShuah Khan#
1666d69e08SShuah Khan# TEST_GEN_PROGS and LIBKVM are set using UNAME_M variable.
1766d69e08SShuah Khan# LINUX_TOOL_ARCH_INCLUDE is set using ARCH variable.
1866d69e08SShuah Khan#
1966d69e08SShuah Khan# x86_64 targets are named to include x86_64 as a suffix and directories
2066d69e08SShuah Khan# for includes are in x86_64 sub-directory. s390x and aarch64 follow the
2166d69e08SShuah Khan# same convention. "uname -m" doesn't result in the correct mapping for
2266d69e08SShuah Khan# s390x and aarch64.
2366d69e08SShuah Khan#
2466d69e08SShuah Khan# No change necessary for x86_64
25783e9e51SPaolo BonziniUNAME_M := $(shell uname -m)
26783e9e51SPaolo Bonzini
2766d69e08SShuah Khan# Set UNAME_M for arm64 compile/install to work
2866d69e08SShuah Khanifeq ($(ARCH),arm64)
2966d69e08SShuah Khan	UNAME_M := aarch64
3066d69e08SShuah Khanendif
3166d69e08SShuah Khan# Set UNAME_M s390x compile/install to work
3266d69e08SShuah Khanifeq ($(ARCH),s390)
3366d69e08SShuah Khan	UNAME_M := s390x
3466d69e08SShuah Khanendif
353e06cdf1SAnup Patel# Set UNAME_M riscv compile/install to work
363e06cdf1SAnup Patelifeq ($(ARCH),riscv)
373e06cdf1SAnup Patel	UNAME_M := riscv
383e06cdf1SAnup Patelendif
3966d69e08SShuah Khan
4022721a56SMaciej S. SzmigieroLIBKVM = lib/assert.c lib/elf.c lib/io.c lib/kvm_util.c lib/rbtree.c lib/sparsebit.c lib/test_util.c lib/guest_modes.c lib/perf_test_util.c
414c63c923SJim MattsonLIBKVM_x86_64 = lib/x86_64/apic.c lib/x86_64/processor.c lib/x86_64/vmx.c lib/x86_64/svm.c lib/x86_64/ucall.c lib/x86_64/handlers.S
42250b8d6cSRaghavendra Rao AnantaLIBKVM_aarch64 = lib/aarch64/processor.c lib/aarch64/ucall.c lib/aarch64/handlers.S lib/aarch64/spinlock.c lib/aarch64/gic.c lib/aarch64/gic_v3.c lib/aarch64/vgic.c
43efaa83a3SCollin WallingLIBKVM_s390x = lib/s390x/processor.c lib/s390x/ucall.c lib/s390x/diag318_test_handler.c
443e06cdf1SAnup PatelLIBKVM_riscv = lib/riscv/processor.c lib/riscv/ucall.c
45783e9e51SPaolo Bonzini
469e6d484fSVitaly KuznetsovTEST_GEN_PROGS_x86_64 = x86_64/cpuid_test
479e6d484fSVitaly KuznetsovTEST_GEN_PROGS_x86_64 += x86_64/cr4_cpuid_sync_test
4877a3aa26SEmanuele Giuseppe EspositoTEST_GEN_PROGS_x86_64 += x86_64/get_msr_index_features
4918178ff8SVitaly KuznetsovTEST_GEN_PROGS_x86_64 += x86_64/evmcs_test
5039bbcc3aSAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/emulator_error_test
516c2fa8b2SOliver UptonTEST_GEN_PROGS_x86_64 += x86_64/fix_hypercall_test
522c7f76b4SVitaly KuznetsovTEST_GEN_PROGS_x86_64 += x86_64/hyperv_clock
537edcb734SVitaly KuznetsovTEST_GEN_PROGS_x86_64 += x86_64/hyperv_cpuid
54e2e1cc1fSVitaly KuznetsovTEST_GEN_PROGS_x86_64 += x86_64/hyperv_features
55e67bd7dfSVitaly KuznetsovTEST_GEN_PROGS_x86_64 += x86_64/hyperv_svm_test
5661fb1c54SOliver UptonTEST_GEN_PROGS_x86_64 += x86_64/kvm_clock_test
57ac4a4d6dSOliver UptonTEST_GEN_PROGS_x86_64 += x86_64/kvm_pv_test
589dba988eSAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/mmio_warning_test
59ef6a74b2SSean ChristophersonTEST_GEN_PROGS_x86_64 += x86_64/mmu_role_test
6061cfcd54SAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/platform_info_test
61bef9a701SJim MattsonTEST_GEN_PROGS_x86_64 += x86_64/pmu_event_filter_test
623df22524SEmanuele Giuseppe EspositoTEST_GEN_PROGS_x86_64 += x86_64/set_boot_cpu_id
6361cfcd54SAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/set_sregs_test
6461cfcd54SAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/smm_test
6561cfcd54SAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/state_test
668d7fbf01SMakarand SonareTEST_GEN_PROGS_x86_64 += x86_64/vmx_preemption_timer_test
6794c4b76bSAndrew JonesTEST_GEN_PROGS_x86_64 += x86_64/svm_vmcall_test
681ad32105SMaxim LevitskyTEST_GEN_PROGS_x86_64 += x86_64/svm_int_ctl_test
69e467b0deSDavid WoodhouseTEST_GEN_PROGS_x86_64 += x86_64/tsc_scaling_sync
7061cfcd54SAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/sync_regs_test
7110e7a099SSean ChristophersonTEST_GEN_PROGS_x86_64 += x86_64/userspace_io_test
723cea1891SAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/userspace_msr_exit_test
7397a71a54SJim MattsonTEST_GEN_PROGS_x86_64 += x86_64/vmx_apic_access_test
7461cfcd54SAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/vmx_close_while_nested_test
7509444420SPaolo BonziniTEST_GEN_PROGS_x86_64 += x86_64/vmx_dirty_log_test
76e337f7e0SSean ChristophersonTEST_GEN_PROGS_x86_64 += x86_64/vmx_exception_with_invalid_guest_state
77ab1ef344SSean ChristophersonTEST_GEN_PROGS_x86_64 += x86_64/vmx_invalid_nested_guest_state
78da1e3071SAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/vmx_set_nested_state_test
7961cfcd54SAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/vmx_tsc_adjust_test
80efe58549SIlias StamatisTEST_GEN_PROGS_x86_64 += x86_64/vmx_nested_tsc_scaling_test
81678e90a3SPeter ShierTEST_GEN_PROGS_x86_64 += x86_64/xapic_ipi_test
8285c68eb4SSean ChristophersonTEST_GEN_PROGS_x86_64 += x86_64/xapic_state_test
83c90992bfSAaron LewisTEST_GEN_PROGS_x86_64 += x86_64/xss_msr_test
84449aa906SPeter XuTEST_GEN_PROGS_x86_64 += x86_64/debug_regs
850c899c25SPaolo BonziniTEST_GEN_PROGS_x86_64 += x86_64/tsc_msrs_test
86*825be3b5SYang WeijiangTEST_GEN_PROGS_x86_64 += x86_64/vmx_pmu_caps_test
878d4e7e80SDavid WoodhouseTEST_GEN_PROGS_x86_64 += x86_64/xen_shinfo_test
8823200b7aSJoao MartinsTEST_GEN_PROGS_x86_64 += x86_64/xen_vmcall_test
896a581508SPeter GondaTEST_GEN_PROGS_x86_64 += x86_64/sev_migrate_tests
90bf70636dSYang ZhongTEST_GEN_PROGS_x86_64 += x86_64/amx_test
91de1956f4SDavid MatlackTEST_GEN_PROGS_x86_64 += access_tracking_perf_test
92025eed7bSBen GardonTEST_GEN_PROGS_x86_64 += demand_paging_test
9394c4b76bSAndrew JonesTEST_GEN_PROGS_x86_64 += dirty_log_test
944fd94ec7SBen GardonTEST_GEN_PROGS_x86_64 += dirty_log_perf_test
951838b06bSIgnacio AlvaradoTEST_GEN_PROGS_x86_64 += hardware_disable_test
96fd4198bfSPaolo BonziniTEST_GEN_PROGS_x86_64 += kvm_create_max_vcpus
97b9c2bd50SYanan WangTEST_GEN_PROGS_x86_64 += kvm_page_table_test
98b58c55d5SSean ChristophersonTEST_GEN_PROGS_x86_64 += max_guest_memory_test
99f73a3446SBen GardonTEST_GEN_PROGS_x86_64 += memslot_modification_stress_test
100cad347faSMaciej S. SzmigieroTEST_GEN_PROGS_x86_64 += memslot_perf_test
10161e52f16SSean ChristophersonTEST_GEN_PROGS_x86_64 += rseq_test
1025b4f758fSSean ChristophersonTEST_GEN_PROGS_x86_64 += set_memory_region_test
10394c4b76bSAndrew JonesTEST_GEN_PROGS_x86_64 += steal_time
1040b45d587SJing ZhangTEST_GEN_PROGS_x86_64 += kvm_binary_stats_test
1053f9808caSOliver UptonTEST_GEN_PROGS_x86_64 += system_counter_offset_test
106fff8dcd7SAndrew Jones
1074959d865SRaghavendra Rao AnantaTEST_GEN_PROGS_aarch64 += aarch64/arch_timer
1084f05223aSRicardo KollerTEST_GEN_PROGS_aarch64 += aarch64/debug-exceptions
109fd02029aSAndrew JonesTEST_GEN_PROGS_aarch64 += aarch64/get-reg-list
110cb97cf95SOliver UptonTEST_GEN_PROGS_aarch64 += aarch64/psci_cpu_on_test
1112f5d27e6SReiji WatanabeTEST_GEN_PROGS_aarch64 += aarch64/vcpu_width_config
112dc0e058eSEric AugerTEST_GEN_PROGS_aarch64 += aarch64/vgic_init
11350b020cdSRicardo KollerTEST_GEN_PROGS_aarch64 += aarch64/vgic_irq
114025eed7bSBen GardonTEST_GEN_PROGS_aarch64 += demand_paging_test
11594c4b76bSAndrew JonesTEST_GEN_PROGS_aarch64 += dirty_log_test
11687c5f35eSAndrew JonesTEST_GEN_PROGS_aarch64 += dirty_log_perf_test
11749fe9a5dSThomas HuthTEST_GEN_PROGS_aarch64 += kvm_create_max_vcpus
118b9c2bd50SYanan WangTEST_GEN_PROGS_aarch64 += kvm_page_table_test
119358928fdSRicardo KollerTEST_GEN_PROGS_aarch64 += memslot_modification_stress_test
120358928fdSRicardo KollerTEST_GEN_PROGS_aarch64 += memslot_perf_test
12161e52f16SSean ChristophersonTEST_GEN_PROGS_aarch64 += rseq_test
1225b4f758fSSean ChristophersonTEST_GEN_PROGS_aarch64 += set_memory_region_test
12394c4b76bSAndrew JonesTEST_GEN_PROGS_aarch64 += steal_time
1240b45d587SJing ZhangTEST_GEN_PROGS_aarch64 += kvm_binary_stats_test
125783e9e51SPaolo Bonzini
126be6f55a6SThomas HuthTEST_GEN_PROGS_s390x = s390x/memop
127b25d4cb4SJanosch FrankTEST_GEN_PROGS_s390x += s390x/resets
12894c4b76bSAndrew JonesTEST_GEN_PROGS_s390x += s390x/sync_regs_test
129c7ef9ebbSJanis Schoetterl-GlauschTEST_GEN_PROGS_s390x += s390x/tprot
130025eed7bSBen GardonTEST_GEN_PROGS_s390x += demand_paging_test
13194c4b76bSAndrew JonesTEST_GEN_PROGS_s390x += dirty_log_test
13249fe9a5dSThomas HuthTEST_GEN_PROGS_s390x += kvm_create_max_vcpus
133b9c2bd50SYanan WangTEST_GEN_PROGS_s390x += kvm_page_table_test
13461e52f16SSean ChristophersonTEST_GEN_PROGS_s390x += rseq_test
1355b4f758fSSean ChristophersonTEST_GEN_PROGS_s390x += set_memory_region_test
1360b45d587SJing ZhangTEST_GEN_PROGS_s390x += kvm_binary_stats_test
137783e9e51SPaolo Bonzini
1383e06cdf1SAnup PatelTEST_GEN_PROGS_riscv += demand_paging_test
1393e06cdf1SAnup PatelTEST_GEN_PROGS_riscv += dirty_log_test
1403e06cdf1SAnup PatelTEST_GEN_PROGS_riscv += kvm_create_max_vcpus
1413e06cdf1SAnup PatelTEST_GEN_PROGS_riscv += kvm_page_table_test
1423e06cdf1SAnup PatelTEST_GEN_PROGS_riscv += set_memory_region_test
1433e06cdf1SAnup PatelTEST_GEN_PROGS_riscv += kvm_binary_stats_test
1443e06cdf1SAnup Patel
145783e9e51SPaolo BonziniTEST_GEN_PROGS += $(TEST_GEN_PROGS_$(UNAME_M))
146783e9e51SPaolo BonziniLIBKVM += $(LIBKVM_$(UNAME_M))
147783e9e51SPaolo Bonzini
148783e9e51SPaolo BonziniINSTALL_HDR_PATH = $(top_srcdir)/usr
149783e9e51SPaolo BonziniLINUX_HDR_PATH = $(INSTALL_HDR_PATH)/include/
150cc68765dSAndrew JonesLINUX_TOOL_INCLUDE = $(top_srcdir)/tools/include
151b80db73dSVitaly Kuznetsovifeq ($(ARCH),x86_64)
152b80db73dSVitaly KuznetsovLINUX_TOOL_ARCH_INCLUDE = $(top_srcdir)/tools/arch/x86/include
153b80db73dSVitaly Kuznetsovelse
15466d69e08SShuah KhanLINUX_TOOL_ARCH_INCLUDE = $(top_srcdir)/tools/arch/$(ARCH)/include
155b80db73dSVitaly Kuznetsovendif
156319f6f97SThomas HuthCFLAGS += -Wall -Wstrict-prototypes -Wuninitialized -O2 -g -std=gnu99 \
157319f6f97SThomas Huth	-fno-stack-protector -fno-PIE -I$(LINUX_TOOL_INCLUDE) \
158a5543d34SSean Christopherson	-I$(LINUX_TOOL_ARCH_INCLUDE) -I$(LINUX_HDR_PATH) -Iinclude \
1590cc5963bSMuhammad Usama Anjum	-I$(<D) -Iinclude/$(UNAME_M) -I.. $(EXTRA_CFLAGS) $(KHDR_INCLUDES)
160c2390f16SPaolo Bonzini
161c2390f16SPaolo Bonzinino-pie-option := $(call try-run, echo 'int main() { return 0; }' | \
1626e06983dSShuah Khan        $(CC) -Werror -no-pie -x c - -o "$$TMP", -no-pie)
163c2390f16SPaolo Bonzini
1648343ba2dSChristian Borntraeger# On s390, build the testcases KVM-enabled
1658343ba2dSChristian Borntraegerpgste-option = $(call try-run, echo 'int main() { return 0; }' | \
1668343ba2dSChristian Borntraeger	$(CC) -Werror -Wl$(comma)--s390-pgste -x c - -o "$$TMP",-Wl$(comma)--s390-pgste)
1678343ba2dSChristian Borntraeger
1688343ba2dSChristian Borntraeger
1698343ba2dSChristian BorntraegerLDFLAGS += -pthread $(no-pie-option) $(pgste-option)
170783e9e51SPaolo Bonzini
171783e9e51SPaolo Bonzini# After inclusion, $(OUTPUT) is defined and
172783e9e51SPaolo Bonzini# $(TEST_GEN_PROGS) starts with $(OUTPUT)/
173783e9e51SPaolo Bonziniinclude ../lib.mk
174783e9e51SPaolo Bonzini
175783e9e51SPaolo BonziniSTATIC_LIBS := $(OUTPUT)/libkvm.a
17629faeb96SAaron LewisLIBKVM_C := $(filter %.c,$(LIBKVM))
17729faeb96SAaron LewisLIBKVM_S := $(filter %.S,$(LIBKVM))
17829faeb96SAaron LewisLIBKVM_C_OBJ := $(patsubst %.c, $(OUTPUT)/%.o, $(LIBKVM_C))
17929faeb96SAaron LewisLIBKVM_S_OBJ := $(patsubst %.S, $(OUTPUT)/%.o, $(LIBKVM_S))
18029faeb96SAaron LewisEXTRA_CLEAN += $(LIBKVM_C_OBJ) $(LIBKVM_S_OBJ) $(STATIC_LIBS) cscope.*
181783e9e51SPaolo Bonzini
18229faeb96SAaron Lewisx := $(shell mkdir -p $(sort $(dir $(LIBKVM_C_OBJ) $(LIBKVM_S_OBJ))))
18329faeb96SAaron Lewis$(LIBKVM_C_OBJ): $(OUTPUT)/%.o: %.c
184783e9e51SPaolo Bonzini	$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@
185783e9e51SPaolo Bonzini
18629faeb96SAaron Lewis$(LIBKVM_S_OBJ): $(OUTPUT)/%.o: %.S
18729faeb96SAaron Lewis	$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@
18829faeb96SAaron Lewis
18929faeb96SAaron LewisLIBKVM_OBJS = $(LIBKVM_C_OBJ) $(LIBKVM_S_OBJ)
19029faeb96SAaron Lewis$(OUTPUT)/libkvm.a: $(LIBKVM_OBJS)
191783e9e51SPaolo Bonzini	$(AR) crs $@ $^
192783e9e51SPaolo Bonzini
19366d69e08SShuah Khanx := $(shell mkdir -p $(sort $(dir $(TEST_GEN_PROGS))))
194b2d35fa5SAnders Roxellall: $(STATIC_LIBS)
195783e9e51SPaolo Bonzini$(TEST_GEN_PROGS): $(STATIC_LIBS)
196eea192bfSAndrew Jones
197eea192bfSAndrew Jonescscope: include_paths = $(LINUX_TOOL_INCLUDE) $(LINUX_HDR_PATH) include lib ..
198eea192bfSAndrew Jonescscope:
199eea192bfSAndrew Jones	$(RM) cscope.*
200eea192bfSAndrew Jones	(find $(include_paths) -name '*.h' \
201eea192bfSAndrew Jones		-exec realpath --relative-base=$(PWD) {} \;; \
202eea192bfSAndrew Jones	find . -name '*.c' \
203eea192bfSAndrew Jones		-exec realpath --relative-base=$(PWD) {} \;) | sort -u > cscope.files
204eea192bfSAndrew Jones	cscope -b
205