66 lines · plain
1# SPDX-License-Identifier: GPL-2.02obj-$(CONFIG_PCIE_CADENCE) += cadence/3obj-$(CONFIG_PCI_FTPCI100) += pci-ftpci100.o4obj-$(CONFIG_PCI_IXP4XX) += pci-ixp4xx.o5obj-$(CONFIG_PCI_HYPERV) += pci-hyperv.o6obj-$(CONFIG_PCI_HYPERV_INTERFACE) += pci-hyperv-intf.o7obj-$(CONFIG_PCI_MVEBU) += pci-mvebu.o8obj-$(CONFIG_PCI_AARDVARK) += pci-aardvark.o9obj-$(CONFIG_PCI_TEGRA) += pci-tegra.o10obj-$(CONFIG_PCI_RCAR_GEN2) += pci-rcar-gen2.o11obj-$(CONFIG_PCIE_RCAR_HOST) += pcie-rcar.o pcie-rcar-host.o12obj-$(CONFIG_PCIE_RCAR_EP) += pcie-rcar.o pcie-rcar-ep.o13obj-$(CONFIG_PCI_HOST_COMMON) += pci-host-common.o14obj-$(CONFIG_PCI_HOST_GENERIC) += pci-host-generic.o15obj-$(CONFIG_PCI_HOST_THUNDER_ECAM) += pci-thunder-ecam.o16obj-$(CONFIG_PCI_HOST_THUNDER_PEM) += pci-thunder-pem.o17obj-$(CONFIG_PCIE_XILINX) += pcie-xilinx.o18obj-$(CONFIG_PCIE_XILINX_NWL) += pcie-xilinx-nwl.o19obj-$(CONFIG_PCIE_XILINX_CPM) += pcie-xilinx-cpm.o20obj-$(CONFIG_PCIE_XILINX_DMA_PL) += pcie-xilinx-dma-pl.o21obj-$(CONFIG_PCI_V3_SEMI) += pci-v3-semi.o22obj-$(CONFIG_PCI_XGENE) += pci-xgene.o23obj-$(CONFIG_PCI_XGENE_MSI) += pci-xgene-msi.o24obj-$(CONFIG_PCI_VERSATILE) += pci-versatile.o25obj-$(CONFIG_PCIE_IPROC) += pcie-iproc.o26obj-$(CONFIG_PCIE_IPROC_MSI) += pcie-iproc-msi.o27obj-$(CONFIG_PCIE_IPROC_PLATFORM) += pcie-iproc-platform.o28obj-$(CONFIG_PCIE_IPROC_BCMA) += pcie-iproc-bcma.o29obj-$(CONFIG_PCIE_ALTERA) += pcie-altera.o30obj-$(CONFIG_PCIE_ALTERA_MSI) += pcie-altera-msi.o31obj-$(CONFIG_PCIE_ROCKCHIP) += pcie-rockchip.o32obj-$(CONFIG_PCIE_ROCKCHIP_EP) += pcie-rockchip-ep.o33obj-$(CONFIG_PCIE_ROCKCHIP_HOST) += pcie-rockchip-host.o34obj-$(CONFIG_PCIE_MEDIATEK) += pcie-mediatek.o35obj-$(CONFIG_PCIE_MEDIATEK_GEN3) += pcie-mediatek-gen3.o36obj-$(CONFIG_VMD) += vmd.o37obj-$(CONFIG_PCIE_BRCMSTB) += pcie-brcmstb.o38obj-$(CONFIG_PCI_LOONGSON) += pci-loongson.o39obj-$(CONFIG_PCIE_HISI_ERR) += pcie-hisi-error.o40obj-$(CONFIG_PCIE_APPLE) += pcie-apple.o41obj-$(CONFIG_PCIE_MT7621) += pcie-mt7621.o42 43# pcie-hisi.o quirks are needed even without CONFIG_PCIE_DW44obj-y += dwc/45obj-y += mobiveil/46obj-y += plda/47 48 49# The following drivers are for devices that use the generic ACPI50# pci_root.c driver but don't support standard ECAM config access.51# They contain MCFG quirks to replace the generic ECAM accessors with52# device-specific ones that are shared with the DT driver.53 54# The ACPI driver is generic and should not require driver-specific55# config options to be enabled, so we always build these drivers on56# ARM64 and use internal ifdefs to only build the pieces we need57# depending on whether ACPI, the DT driver, or both are enabled.58 59ifdef CONFIG_ACPI60ifdef CONFIG_PCI_QUIRKS61obj-$(CONFIG_ARM64) += pci-thunder-ecam.o62obj-$(CONFIG_ARM64) += pci-thunder-pem.o63obj-$(CONFIG_ARM64) += pci-xgene.o64endif65endif66