Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Makefile for the PCI bus specific drivers. |
| 3 | # |
| 4 | |
Yinghai Lu | 610929e | 2012-04-02 18:31:53 -0700 | [diff] [blame] | 5 | obj-y += access.o bus.o probe.o host-bridge.o remove.o pci.o \ |
James Bottomley | 388c8c1 | 2008-08-03 13:02:12 -0500 | [diff] [blame] | 6 | pci-driver.o search.o pci-sysfs.o rom.o setup-res.o \ |
Alex Williamson | 425c1b2 | 2013-12-17 16:43:51 -0700 | [diff] [blame] | 7 | irq.o vpd.o setup-bus.o vc.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | obj-$(CONFIG_PROC_FS) += proc.o |
Alex Chiang | 268a03a | 2009-06-17 19:03:57 -0600 | [diff] [blame] | 9 | obj-$(CONFIG_SYSFS) += slot.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
Rafael J. Wysocki | 93177a7 | 2010-01-02 22:57:24 +0100 | [diff] [blame] | 11 | obj-$(CONFIG_PCI_QUIRKS) += quirks.o |
Andi Kleen | e8b553b | 2009-07-24 11:41:15 +0200 | [diff] [blame] | 12 | |
Milton Miller | 52f975e | 2005-12-16 11:08:48 -0800 | [diff] [blame] | 13 | # Build PCI Express stuff if needed |
| 14 | obj-$(CONFIG_PCIEPORTBUS) += pcie/ |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | # Build the PCI Hotplug drivers if we were asked to |
| 17 | obj-$(CONFIG_HOTPLUG_PCI) += hotplug/ |
Sam Ravnborg | 4105717 | 2008-02-02 22:32:23 +0100 | [diff] [blame] | 18 | ifdef CONFIG_HOTPLUG_PCI |
| 19 | obj-y += hotplug-pci.o |
| 20 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Eric W. Biederman | 03571e1 | 2006-10-04 02:17:00 -0700 | [diff] [blame] | 22 | # Build the PCI MSI interrupt support |
| 23 | obj-$(CONFIG_PCI_MSI) += msi.o |
| 24 | |
Eric W. Biederman | 95d7788 | 2006-10-04 02:17:01 -0700 | [diff] [blame] | 25 | # Build the Hypertransport interrupt support |
| 26 | obj-$(CONFIG_HT_IRQ) += htirq.o |
| 27 | |
Joerg Roedel | db3c33c | 2011-09-27 15:57:13 +0200 | [diff] [blame] | 28 | obj-$(CONFIG_PCI_ATS) += ats.o |
Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 29 | obj-$(CONFIG_PCI_IOV) += iov.o |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | # |
| 32 | # Some architectures use the generic PCI setup functions |
| 33 | # |
Liviu Dudau | 39656f2 | 2014-02-03 17:38:36 +0000 | [diff] [blame] | 34 | obj-$(CONFIG_ALPHA) += setup-irq.o |
Joao Pinto | c1678ff | 2016-03-10 14:44:13 -0600 | [diff] [blame] | 35 | obj-$(CONFIG_ARC) += setup-irq.o |
Liviu Dudau | 39656f2 | 2014-02-03 17:38:36 +0000 | [diff] [blame] | 36 | obj-$(CONFIG_ARM) += setup-irq.o |
Jayachandran C | 459a077 | 2015-08-05 02:23:39 +0530 | [diff] [blame] | 37 | obj-$(CONFIG_ARM64) += setup-irq.o |
Liviu Dudau | 39656f2 | 2014-02-03 17:38:36 +0000 | [diff] [blame] | 38 | obj-$(CONFIG_UNICORE32) += setup-irq.o |
| 39 | obj-$(CONFIG_SUPERH) += setup-irq.o |
| 40 | obj-$(CONFIG_MIPS) += setup-irq.o |
Liviu Dudau | 39656f2 | 2014-02-03 17:38:36 +0000 | [diff] [blame] | 41 | obj-$(CONFIG_TILE) += setup-irq.o |
| 42 | obj-$(CONFIG_SPARC_LEON) += setup-irq.o |
| 43 | obj-$(CONFIG_M68K) += setup-irq.o |
Mark Maule | fd58e55 | 2006-04-10 21:17:48 -0500 | [diff] [blame] | 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | # |
| 46 | # ACPI Related PCI FW Functions |
Narendra_K@Dell.com | 6058989 | 2011-03-02 22:34:17 +0530 | [diff] [blame] | 47 | # ACPI _DSM provided firmware instance and string name |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | # |
Randy Dunlap | 8a226e0 | 2011-03-29 09:45:57 -0700 | [diff] [blame] | 49 | obj-$(CONFIG_ACPI) += pci-acpi.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Narendra K | 911e1c9 | 2010-07-26 05:56:50 -0500 | [diff] [blame] | 51 | # SMBIOS provided firmware instance and labels |
Randy Dunlap | 8a226e0 | 2011-03-29 09:45:57 -0700 | [diff] [blame] | 52 | obj-$(CONFIG_PCI_LABEL) += pci-label.o |
Narendra K | 911e1c9 | 2010-07-26 05:56:50 -0500 | [diff] [blame] | 53 | |
Andy Shevchenko | 5823d08 | 2016-06-14 21:29:45 +0300 | [diff] [blame] | 54 | # Intel MID platform PM support |
| 55 | obj-$(CONFIG_X86_INTEL_MID) += pci-mid.o |
| 56 | |
Matthew Wilcox | 36e2359 | 2007-07-10 10:54:40 -0600 | [diff] [blame] | 57 | obj-$(CONFIG_PCI_SYSCALL) += syscall.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Chris Wright | c70e0d9 | 2008-11-25 21:17:13 -0800 | [diff] [blame] | 59 | obj-$(CONFIG_PCI_STUB) += pci-stub.o |
| 60 | |
Jayachandran C | 35ff947 | 2016-05-10 17:19:51 +0200 | [diff] [blame] | 61 | obj-$(CONFIG_PCI_ECAM) += ecam.o |
| 62 | |
Ryan Wilson | 956a920 | 2010-08-02 21:31:05 -0400 | [diff] [blame] | 63 | obj-$(CONFIG_XEN_PCIDEV_FRONTEND) += xen-pcifront.o |
| 64 | |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 65 | obj-$(CONFIG_OF) += of.o |
| 66 | |
matt mooney | 350a55e | 2010-09-24 12:17:26 -0700 | [diff] [blame] | 67 | ccflags-$(CONFIG_PCI_DEBUG) := -DDEBUG |
Thomas Petazzoni | 45361a4 | 2013-05-16 17:55:22 +0200 | [diff] [blame] | 68 | |
| 69 | # PCI host controller drivers |
| 70 | obj-y += host/ |