Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame^] | 1 | # |
| 2 | # Makefile for the PCI bus specific drivers. |
| 3 | # |
| 4 | |
| 5 | obj-y += access.o bus.o probe.o remove.o pci.o quirks.o \ |
| 6 | names.o pci-driver.o search.o pci-sysfs.o \ |
| 7 | rom.o |
| 8 | obj-$(CONFIG_PROC_FS) += proc.o |
| 9 | |
| 10 | ifndef CONFIG_SPARC64 |
| 11 | obj-y += setup-res.o |
| 12 | endif |
| 13 | |
| 14 | obj-$(CONFIG_HOTPLUG) += hotplug.o |
| 15 | |
| 16 | # Build the PCI Hotplug drivers if we were asked to |
| 17 | obj-$(CONFIG_HOTPLUG_PCI) += hotplug/ |
| 18 | |
| 19 | # |
| 20 | # Some architectures use the generic PCI setup functions |
| 21 | # |
| 22 | obj-$(CONFIG_ALPHA) += setup-bus.o setup-irq.o |
| 23 | obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o |
| 24 | obj-$(CONFIG_PARISC) += setup-bus.o |
| 25 | obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o |
| 26 | obj-$(CONFIG_PPC32) += setup-irq.o |
| 27 | obj-$(CONFIG_PPC64) += setup-bus.o |
| 28 | obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o |
| 29 | obj-$(CONFIG_X86_VISWS) += setup-irq.o |
| 30 | obj-$(CONFIG_PCI_MSI) += msi.o |
| 31 | |
| 32 | # |
| 33 | # ACPI Related PCI FW Functions |
| 34 | # |
| 35 | obj-$(CONFIG_ACPI) += pci-acpi.o |
| 36 | |
| 37 | # Cardbus & CompactPCI use setup-bus |
| 38 | obj-$(CONFIG_HOTPLUG) += setup-bus.o |
| 39 | |
| 40 | ifndef CONFIG_X86 |
| 41 | obj-y += syscall.o |
| 42 | endif |
| 43 | |
| 44 | ifeq ($(CONFIG_PCI_DEBUG),y) |
| 45 | EXTRA_CFLAGS += -DDEBUG |
| 46 | endif |
| 47 | |
| 48 | hostprogs-y := gen-devlist |
| 49 | |
| 50 | # Dependencies on generated files need to be listed explicitly |
| 51 | $(obj)/names.o: $(obj)/devlist.h $(obj)/classlist.h |
| 52 | $(obj)/classlist.h: $(obj)/devlist.h |
| 53 | |
| 54 | # And that's how to generate them |
| 55 | quiet_cmd_devlist = DEVLIST $@ |
| 56 | cmd_devlist = ( cd $(obj); ./gen-devlist ) < $< |
| 57 | $(obj)/devlist.h: $(src)/pci.ids $(obj)/gen-devlist |
| 58 | $(call cmd,devlist) |
| 59 | |
| 60 | # Files generated that shall be removed upon make clean |
| 61 | clean-files := devlist.h classlist.h |
| 62 | |
| 63 | # Build PCI Express stuff if needed |
| 64 | obj-$(CONFIG_PCIEPORTBUS) += pcie/ |
| 65 | |