Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2 | obj-$(CONFIG_PCIE_CADENCE) += cadence/ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3 | obj-$(CONFIG_PCI_FTPCI100) += pci-ftpci100.o |
| 4 | obj-$(CONFIG_PCI_HYPERV) += pci-hyperv.o |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5 | obj-$(CONFIG_PCI_HYPERV_INTERFACE) += pci-hyperv-intf.o |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6 | obj-$(CONFIG_PCI_MVEBU) += pci-mvebu.o |
| 7 | obj-$(CONFIG_PCI_AARDVARK) += pci-aardvark.o |
| 8 | obj-$(CONFIG_PCI_TEGRA) += pci-tegra.o |
| 9 | obj-$(CONFIG_PCI_RCAR_GEN2) += pci-rcar-gen2.o |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 10 | obj-$(CONFIG_PCIE_RCAR_HOST) += pcie-rcar.o pcie-rcar-host.o |
| 11 | obj-$(CONFIG_PCIE_RCAR_EP) += pcie-rcar.o pcie-rcar-ep.o |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 12 | obj-$(CONFIG_PCI_HOST_COMMON) += pci-host-common.o |
| 13 | obj-$(CONFIG_PCI_HOST_GENERIC) += pci-host-generic.o |
| 14 | obj-$(CONFIG_PCIE_XILINX) += pcie-xilinx.o |
| 15 | obj-$(CONFIG_PCIE_XILINX_NWL) += pcie-xilinx-nwl.o |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 16 | obj-$(CONFIG_PCIE_XILINX_CPM) += pcie-xilinx-cpm.o |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 17 | obj-$(CONFIG_PCI_V3_SEMI) += pci-v3-semi.o |
| 18 | obj-$(CONFIG_PCI_XGENE_MSI) += pci-xgene-msi.o |
| 19 | obj-$(CONFIG_PCI_VERSATILE) += pci-versatile.o |
| 20 | obj-$(CONFIG_PCIE_IPROC) += pcie-iproc.o |
| 21 | obj-$(CONFIG_PCIE_IPROC_MSI) += pcie-iproc-msi.o |
| 22 | obj-$(CONFIG_PCIE_IPROC_PLATFORM) += pcie-iproc-platform.o |
| 23 | obj-$(CONFIG_PCIE_IPROC_BCMA) += pcie-iproc-bcma.o |
| 24 | obj-$(CONFIG_PCIE_ALTERA) += pcie-altera.o |
| 25 | obj-$(CONFIG_PCIE_ALTERA_MSI) += pcie-altera-msi.o |
| 26 | obj-$(CONFIG_PCIE_ROCKCHIP) += pcie-rockchip.o |
| 27 | obj-$(CONFIG_PCIE_ROCKCHIP_EP) += pcie-rockchip-ep.o |
| 28 | obj-$(CONFIG_PCIE_ROCKCHIP_HOST) += pcie-rockchip-host.o |
| 29 | obj-$(CONFIG_PCIE_MEDIATEK) += pcie-mediatek.o |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 30 | obj-$(CONFIG_PCIE_TANGO_SMP8759) += pcie-tango.o |
| 31 | obj-$(CONFIG_VMD) += vmd.o |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 32 | obj-$(CONFIG_PCIE_BRCMSTB) += pcie-brcmstb.o |
| 33 | obj-$(CONFIG_PCI_LOONGSON) += pci-loongson.o |
| 34 | obj-$(CONFIG_PCIE_HISI_ERR) += pcie-hisi-error.o |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 35 | # pcie-hisi.o quirks are needed even without CONFIG_PCIE_DW |
| 36 | obj-y += dwc/ |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 37 | obj-y += mobiveil/ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 38 | |
| 39 | |
| 40 | # The following drivers are for devices that use the generic ACPI |
| 41 | # pci_root.c driver but don't support standard ECAM config access. |
| 42 | # They contain MCFG quirks to replace the generic ECAM accessors with |
| 43 | # device-specific ones that are shared with the DT driver. |
| 44 | |
| 45 | # The ACPI driver is generic and should not require driver-specific |
| 46 | # config options to be enabled, so we always build these drivers on |
| 47 | # ARM64 and use internal ifdefs to only build the pieces we need |
| 48 | # depending on whether ACPI, the DT driver, or both are enabled. |
| 49 | |
| 50 | ifdef CONFIG_PCI |
| 51 | obj-$(CONFIG_ARM64) += pci-thunder-ecam.o |
| 52 | obj-$(CONFIG_ARM64) += pci-thunder-pem.o |
| 53 | obj-$(CONFIG_ARM64) += pci-xgene.o |
| 54 | endif |