2005-04-16 22:20:36 +00:00
|
|
|
#
|
|
|
|
# Makefile for the PCI bus specific drivers.
|
|
|
|
#
|
|
|
|
|
2010-01-02 21:57:24 +00:00
|
|
|
obj-y += access.o bus.o probe.o remove.o pci.o \
|
2008-08-03 18:02:12 +00:00
|
|
|
pci-driver.o search.o pci-sysfs.o rom.o setup-res.o \
|
2010-02-26 14:04:41 +00:00
|
|
|
irq.o vpd.o
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_PROC_FS) += proc.o
|
2009-06-18 01:03:57 +00:00
|
|
|
obj-$(CONFIG_SYSFS) += slot.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-01-02 21:57:24 +00:00
|
|
|
obj-$(CONFIG_PCI_QUIRKS) += quirks.o
|
2009-07-24 09:41:15 +00:00
|
|
|
|
2005-12-16 19:08:48 +00:00
|
|
|
# Build PCI Express stuff if needed
|
|
|
|
obj-$(CONFIG_PCIEPORTBUS) += pcie/
|
|
|
|
|
PCI hotplug: move IOAPIC support from acpiphp to ioapic driver
This patch moves PCI I/O APIC support from acpiphp to a separate driver.
Like pciehp and shpchp, acpiphp handles PCI hotplug, i.e., addition and
removal of PCI adapters. But in addition, acpiphp handles some ACPI
hotplug, such as the addition of new host bridges, and the I/O APIC
support was tangled up with that.
I don't think the I/O APIC support needs to be in acpiphp; PCI I/O APICs
usually appear as a function on a PCI host bridge, and we'll enumerate the
APIC before any of the devices behind the bridge that use it.
As far as I know, nobody actually uses I/O APIC hotplug. It depends on
acpi_register_ioapic(), which is only implemented for ia64, and I don't
think any vendors have supported I/O chassis hotplug yet.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Reviewed-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
CC: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
CC: MUNEDA Takahiro <muneda.takahiro@jp.fujitsu.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
2009-10-26 17:20:47 +00:00
|
|
|
obj-$(CONFIG_PCI_IOAPIC) += ioapic.o
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_HOTPLUG) += hotplug.o
|
|
|
|
|
|
|
|
# Build the PCI Hotplug drivers if we were asked to
|
|
|
|
obj-$(CONFIG_HOTPLUG_PCI) += hotplug/
|
2008-02-02 21:32:23 +00:00
|
|
|
ifdef CONFIG_HOTPLUG_PCI
|
|
|
|
obj-y += hotplug-pci.o
|
|
|
|
endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-10-04 09:17:00 +00:00
|
|
|
# Build the PCI MSI interrupt support
|
|
|
|
obj-$(CONFIG_PCI_MSI) += msi.o
|
|
|
|
|
2006-10-04 09:17:01 +00:00
|
|
|
# Build the Hypertransport interrupt support
|
|
|
|
obj-$(CONFIG_HT_IRQ) += htirq.o
|
|
|
|
|
2011-09-27 13:57:13 +00:00
|
|
|
obj-$(CONFIG_PCI_ATS) += ats.o
|
2009-03-20 03:25:11 +00:00
|
|
|
obj-$(CONFIG_PCI_IOV) += iov.o
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#
|
|
|
|
# Some architectures use the generic PCI setup functions
|
|
|
|
#
|
2005-06-20 21:29:25 +00:00
|
|
|
obj-$(CONFIG_X86) += setup-bus.o
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_ALPHA) += setup-bus.o setup-irq.o
|
|
|
|
obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o
|
2011-01-15 10:25:14 +00:00
|
|
|
obj-$(CONFIG_UNICORE32) += setup-bus.o setup-irq.o
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_PARISC) += setup-bus.o
|
|
|
|
obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o
|
2008-01-24 05:47:39 +00:00
|
|
|
obj-$(CONFIG_PPC) += setup-bus.o
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
|
|
|
|
obj-$(CONFIG_X86_VISWS) += setup-irq.o
|
2008-02-08 12:19:31 +00:00
|
|
|
obj-$(CONFIG_MN10300) += setup-bus.o
|
2010-01-18 14:27:10 +00:00
|
|
|
obj-$(CONFIG_MICROBLAZE) += setup-bus.o
|
2010-11-02 16:05:10 +00:00
|
|
|
obj-$(CONFIG_TILE) += setup-bus.o setup-irq.o
|
2011-05-23 21:04:47 +00:00
|
|
|
obj-$(CONFIG_SPARC_LEON) += setup-bus.o setup-irq.o
|
2006-04-11 02:17:48 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#
|
|
|
|
# ACPI Related PCI FW Functions
|
2011-03-02 17:04:17 +00:00
|
|
|
# ACPI _DSM provided firmware instance and string name
|
2005-04-16 22:20:36 +00:00
|
|
|
#
|
2011-03-29 16:45:57 +00:00
|
|
|
obj-$(CONFIG_ACPI) += pci-acpi.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-07-26 10:56:50 +00:00
|
|
|
# SMBIOS provided firmware instance and labels
|
2011-03-29 16:45:57 +00:00
|
|
|
obj-$(CONFIG_PCI_LABEL) += pci-label.o
|
2010-07-26 10:56:50 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
# Cardbus & CompactPCI use setup-bus
|
|
|
|
obj-$(CONFIG_HOTPLUG) += setup-bus.o
|
|
|
|
|
2007-07-10 16:54:40 +00:00
|
|
|
obj-$(CONFIG_PCI_SYSCALL) += syscall.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-11-26 05:17:13 +00:00
|
|
|
obj-$(CONFIG_PCI_STUB) += pci-stub.o
|
|
|
|
|
2010-08-03 01:31:05 +00:00
|
|
|
obj-$(CONFIG_XEN_PCIDEV_FRONTEND) += xen-pcifront.o
|
|
|
|
|
2011-04-11 01:37:07 +00:00
|
|
|
obj-$(CONFIG_OF) += of.o
|
|
|
|
|
2010-09-24 19:17:26 +00:00
|
|
|
ccflags-$(CONFIG_PCI_DEBUG) := -DDEBUG
|