linux/drivers/pci/host/Makefile
<<
>>
Prefs
   1obj-$(CONFIG_PCI_FTPCI100) += pci-ftpci100.o
   2obj-$(CONFIG_PCI_HYPERV) += pci-hyperv.o
   3obj-$(CONFIG_PCI_MVEBU) += pci-mvebu.o
   4obj-$(CONFIG_PCI_AARDVARK) += pci-aardvark.o
   5obj-$(CONFIG_PCI_TEGRA) += pci-tegra.o
   6obj-$(CONFIG_PCI_RCAR_GEN2) += pci-rcar-gen2.o
   7obj-$(CONFIG_PCIE_RCAR) += pcie-rcar.o
   8obj-$(CONFIG_PCI_HOST_COMMON) += pci-host-common.o
   9obj-$(CONFIG_PCI_HOST_GENERIC) += pci-host-generic.o
  10obj-$(CONFIG_PCIE_XILINX) += pcie-xilinx.o
  11obj-$(CONFIG_PCIE_XILINX_NWL) += pcie-xilinx-nwl.o
  12obj-$(CONFIG_PCI_XGENE_MSI) += pci-xgene-msi.o
  13obj-$(CONFIG_PCI_VERSATILE) += pci-versatile.o
  14obj-$(CONFIG_PCIE_IPROC) += pcie-iproc.o
  15obj-$(CONFIG_PCIE_IPROC_MSI) += pcie-iproc-msi.o
  16obj-$(CONFIG_PCIE_IPROC_PLATFORM) += pcie-iproc-platform.o
  17obj-$(CONFIG_PCIE_IPROC_BCMA) += pcie-iproc-bcma.o
  18obj-$(CONFIG_PCIE_ALTERA) += pcie-altera.o
  19obj-$(CONFIG_PCIE_ALTERA_MSI) += pcie-altera-msi.o
  20obj-$(CONFIG_PCIE_ROCKCHIP) += pcie-rockchip.o
  21obj-$(CONFIG_VMD) += vmd.o
  22
  23# The following drivers are for devices that use the generic ACPI
  24# pci_root.c driver but don't support standard ECAM config access.
  25# They contain MCFG quirks to replace the generic ECAM accessors with
  26# device-specific ones that are shared with the DT driver.
  27
  28# The ACPI driver is generic and should not require driver-specific
  29# config options to be enabled, so we always build these drivers on
  30# ARM64 and use internal ifdefs to only build the pieces we need
  31# depending on whether ACPI, the DT driver, or both are enabled.
  32
  33obj-$(CONFIG_ARM64) += pci-thunder-ecam.o
  34obj-$(CONFIG_ARM64) += pci-thunder-pem.o
  35obj-$(CONFIG_ARM64) += pci-xgene.o
  36