Line | |
---|
1 | # |
---|
2 | # Makefile for X86_64 specific PCI routines |
---|
3 | # |
---|
4 | # Reuse the i386 PCI subsystem |
---|
5 | # |
---|
6 | CFLAGS += -Iarch/i386/pci |
---|
7 | |
---|
8 | obj-y := i386.o |
---|
9 | obj-$(CONFIG_PCI_DIRECT)+= direct.o |
---|
10 | obj-y += fixup.o init.o |
---|
11 | obj-$(CONFIG_ACPI) += acpi.o |
---|
12 | obj-y += legacy.o irq.o common.o |
---|
13 | # mmconfig has a 64bit special |
---|
14 | obj-$(CONFIG_PCI_MMCONFIG) += mmconfig.o direct.o |
---|
15 | |
---|
16 | obj-$(CONFIG_NUMA) += k8-bus.o |
---|
17 | |
---|
18 | # pcifront should be after mmconfig.o and direct.o as it should only |
---|
19 | # take over if direct access to the PCI bus is unavailable |
---|
20 | obj-$(CONFIG_XEN_PCIDEV_FRONTEND) += pcifront.o |
---|
21 | |
---|
22 | direct-y += ../../i386/pci/direct.o |
---|
23 | acpi-y += ../../i386/pci/acpi.o |
---|
24 | pcifront-y += ../../i386/pci/pcifront.o |
---|
25 | legacy-y += ../../i386/pci/legacy.o |
---|
26 | irq-y += ../../i386/pci/irq.o |
---|
27 | common-y += ../../i386/pci/common.o |
---|
28 | fixup-y += ../../i386/pci/fixup.o |
---|
29 | i386-y += ../../i386/pci/i386.o |
---|
30 | init-y += ../../i386/pci/init.o |
---|
31 | |
---|
32 | ifdef CONFIG_XEN |
---|
33 | irq-y := ../../i386/pci/irq-xen.o |
---|
34 | include $(srctree)/scripts/Makefile.xen |
---|
35 | |
---|
36 | obj-y := $(call cherrypickxen, $(obj-y)) |
---|
37 | endif |
---|
Note: See
TracBrowser
for help on using the repository browser.