blob: 6cd9f3c9887d2ac9841b542d92475a91f1d845b6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Makefile for the Linux kernel pci hotplug controller drivers.
3#
4
5obj-$(CONFIG_HOTPLUG_PCI) += pci_hotplug.o
Linus Torvalds1da177e2005-04-16 15:20:36 -07006obj-$(CONFIG_HOTPLUG_PCI_COMPAQ) += cpqphp.o
7obj-$(CONFIG_HOTPLUG_PCI_IBM) += ibmphp.o
Matthew Garrett71a082e2009-01-27 01:03:35 +00008
Matthew Garrett3368dd22009-10-26 13:18:22 -04009# native drivers should be linked before acpiphp in order to allow the
10# native driver to attempt to bind first. We can then fall back to
11# generic support.
Matthew Garrett71a082e2009-01-27 01:03:35 +000012
13obj-$(CONFIG_HOTPLUG_PCI_PCIE) += pciehp.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070014obj-$(CONFIG_HOTPLUG_PCI_CPCI_ZT5550) += cpcihp_zt5550.o
15obj-$(CONFIG_HOTPLUG_PCI_CPCI_GENERIC) += cpcihp_generic.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070016obj-$(CONFIG_HOTPLUG_PCI_SHPC) += shpchp.o
17obj-$(CONFIG_HOTPLUG_PCI_RPA) += rpaphp.o
18obj-$(CONFIG_HOTPLUG_PCI_RPA_DLPAR) += rpadlpar_io.o
Prarit Bhargava6f354b02005-07-06 15:29:53 -070019obj-$(CONFIG_HOTPLUG_PCI_SGI) += sgi_hotplug.o
Matthew Garrett3368dd22009-10-26 13:18:22 -040020obj-$(CONFIG_HOTPLUG_PCI_ACPI) += acpiphp.o
21
22# acpiphp_ibm extends acpiphp, so should be linked afterwards.
23
24obj-$(CONFIG_HOTPLUG_PCI_ACPI_IBM) += acpiphp_ibm.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Alex Chiang561e55e2007-10-12 16:20:33 -070026# Link this last so it doesn't claim devices that have a real hotplug driver
27obj-$(CONFIG_HOTPLUG_PCI_FAKE) += fakephp.o
28
Bjorn Helgaas88384002009-09-14 16:35:20 -060029pci_hotplug-objs := pci_hotplug_core.o pcihp_slot.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31ifdef CONFIG_HOTPLUG_PCI_CPCI
32pci_hotplug-objs += cpci_hotplug_core.o \
33 cpci_hotplug_pci.o
34endif
Kristen Accardi783c49f2006-03-03 10:16:05 -080035ifdef CONFIG_ACPI
36pci_hotplug-objs += acpi_pcihp.o
37endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39cpqphp-objs := cpqphp_core.o \
40 cpqphp_ctrl.o \
41 cpqphp_sysfs.o \
42 cpqphp_pci.o
43cpqphp-$(CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM) += cpqphp_nvram.o
44cpqphp-objs += $(cpqphp-y)
45
46ibmphp-objs := ibmphp_core.o \
47 ibmphp_ebda.o \
48 ibmphp_pci.o \
49 ibmphp_res.o \
50 ibmphp_hpc.o
51
52acpiphp-objs := acpiphp_core.o \
Kristen Accardi4e8662b2006-06-28 03:08:06 -040053 acpiphp_glue.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55rpaphp-objs := rpaphp_core.o \
56 rpaphp_pci.o \
John Rose5eeb8c62005-07-25 10:16:42 -050057 rpaphp_slot.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59rpadlpar_io-objs := rpadlpar_core.o \
60 rpadlpar_sysfs.o
61
62pciehp-objs := pciehp_core.o \
63 pciehp_ctrl.o \
64 pciehp_pci.o \
65 pciehp_hpc.o
Kenji Kaneshigec9ffa5a2008-12-17 12:07:38 +090066ifdef CONFIG_ACPI
67pciehp-objs += pciehp_acpi.o
68endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70shpchp-objs := shpchp_core.o \
71 shpchp_ctrl.o \
72 shpchp_pci.o \
73 shpchp_sysfs.o \
74 shpchp_hpc.o