]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - arch/x86/kernel/apic/Makefile
Merge branch 'for-4.7/upstream' into for-linus
[mirror_ubuntu-focal-kernel.git] / arch / x86 / kernel / apic / Makefile
1 #
2 # Makefile for local APIC drivers and for the IO-APIC code
3 #
4
5 # Leads to non-deterministic coverage that is not a function of syscall inputs.
6 # In particualr, smp_apic_timer_interrupt() is called in random places.
7 KCOV_INSTRUMENT := n
8
9 obj-$(CONFIG_X86_LOCAL_APIC) += apic.o apic_noop.o ipi.o vector.o
10 obj-y += hw_nmi.o
11
12 obj-$(CONFIG_X86_IO_APIC) += io_apic.o
13 obj-$(CONFIG_PCI_MSI) += msi.o
14 obj-$(CONFIG_HT_IRQ) += htirq.o
15 obj-$(CONFIG_SMP) += ipi.o
16
17 ifeq ($(CONFIG_X86_64),y)
18 # APIC probe will depend on the listing order here
19 obj-$(CONFIG_X86_NUMACHIP) += apic_numachip.o
20 obj-$(CONFIG_X86_UV) += x2apic_uv_x.o
21 obj-$(CONFIG_X86_X2APIC) += x2apic_phys.o
22 obj-$(CONFIG_X86_X2APIC) += x2apic_cluster.o
23 obj-y += apic_flat_64.o
24 endif
25
26 # APIC probe will depend on the listing order here
27 obj-$(CONFIG_X86_BIGSMP) += bigsmp_32.o
28
29 # For 32bit, probe_32 need to be listed last
30 obj-$(CONFIG_X86_LOCAL_APIC) += probe_$(BITS).o