Makefile 928 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # Makefile for local APIC drivers and for the IO-APIC code
  3. #
  4. # Leads to non-deterministic coverage that is not a function of syscall inputs.
  5. # In particualr, smp_apic_timer_interrupt() is called in random places.
  6. KCOV_INSTRUMENT := n
  7. obj-$(CONFIG_X86_LOCAL_APIC) += apic.o apic_noop.o ipi.o vector.o
  8. obj-y += hw_nmi.o
  9. obj-$(CONFIG_X86_IO_APIC) += io_apic.o
  10. obj-$(CONFIG_PCI_MSI) += msi.o
  11. obj-$(CONFIG_HT_IRQ) += htirq.o
  12. obj-$(CONFIG_SMP) += ipi.o
  13. ifeq ($(CONFIG_X86_64),y)
  14. # APIC probe will depend on the listing order here
  15. obj-$(CONFIG_X86_NUMACHIP) += apic_numachip.o
  16. obj-$(CONFIG_X86_UV) += x2apic_uv_x.o
  17. obj-$(CONFIG_X86_X2APIC) += x2apic_phys.o
  18. obj-$(CONFIG_X86_X2APIC) += x2apic_cluster.o
  19. obj-y += apic_flat_64.o
  20. endif
  21. # APIC probe will depend on the listing order here
  22. obj-$(CONFIG_X86_BIGSMP) += bigsmp_32.o
  23. # For 32bit, probe_32 need to be listed last
  24. obj-$(CONFIG_X86_LOCAL_APIC) += probe_$(BITS).o