]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/pci/host/Makefile
treewide: devm_kzalloc() -> devm_kcalloc()
[mirror_ubuntu-jammy-kernel.git] / drivers / pci / host / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
d3c68e0a 2obj-$(CONFIG_PCI_FTPCI100) += pci-ftpci100.o
4daace0d 3obj-$(CONFIG_PCI_HYPERV) += pci-hyperv.o
4b1ced84 4obj-$(CONFIG_PCI_MVEBU) += pci-mvebu.o
8c39d710 5obj-$(CONFIG_PCI_AARDVARK) += pci-aardvark.o
d1523b52 6obj-$(CONFIG_PCI_TEGRA) += pci-tegra.o
ba3eb9fc 7obj-$(CONFIG_PCI_RCAR_GEN2) += pci-rcar-gen2.o
350a73b4 8obj-$(CONFIG_PCIE_RCAR) += pcie-rcar.o
4e64dbe2 9obj-$(CONFIG_PCI_HOST_COMMON) += pci-host-common.o
ce292991 10obj-$(CONFIG_PCI_HOST_GENERIC) += pci-host-generic.o
8961def5 11obj-$(CONFIG_PCIE_XILINX) += pcie-xilinx.o
ab597d35 12obj-$(CONFIG_PCIE_XILINX_NWL) += pcie-xilinx-nwl.o
68a15eb7 13obj-$(CONFIG_PCI_V3_SEMI) += pci-v3-semi.o
dcd19de3 14obj-$(CONFIG_PCI_XGENE_MSI) += pci-xgene-msi.o
b7e78170 15obj-$(CONFIG_PCI_VERSATILE) += pci-versatile.o
1fb37a81 16obj-$(CONFIG_PCIE_IPROC) += pcie-iproc.o
3bc2b234 17obj-$(CONFIG_PCIE_IPROC_MSI) += pcie-iproc-msi.o
1fb37a81 18obj-$(CONFIG_PCIE_IPROC_PLATFORM) += pcie-iproc-platform.o
4785ffbd 19obj-$(CONFIG_PCIE_IPROC_BCMA) += pcie-iproc-bcma.o
eaa6111b 20obj-$(CONFIG_PCIE_ALTERA) += pcie-altera.o
af1169b4 21obj-$(CONFIG_PCIE_ALTERA_MSI) += pcie-altera-msi.o
e77f847d 22obj-$(CONFIG_PCIE_ROCKCHIP) += pcie-rockchip.o
cf590b07 23obj-$(CONFIG_PCIE_ROCKCHIP_EP) += pcie-rockchip-ep.o
956cd99b 24obj-$(CONFIG_PCIE_ROCKCHIP_HOST) += pcie-rockchip-host.o
637cfaca 25obj-$(CONFIG_PCIE_MEDIATEK) += pcie-mediatek.o
5e14e9fa 26obj-$(CONFIG_PCIE_TANGO_SMP8759) += pcie-tango.o
181ffd19 27obj-$(CONFIG_VMD) += vmd.o
ca5ab37b
BH
28
29# The following drivers are for devices that use the generic ACPI
30# pci_root.c driver but don't support standard ECAM config access.
31# They contain MCFG quirks to replace the generic ECAM accessors with
32# device-specific ones that are shared with the DT driver.
33
34# The ACPI driver is generic and should not require driver-specific
35# config options to be enabled, so we always build these drivers on
36# ARM64 and use internal ifdefs to only build the pieces we need
37# depending on whether ACPI, the DT driver, or both are enabled.
38
9de0eec2 39ifdef CONFIG_PCI
ca5ab37b
BH
40obj-$(CONFIG_ARM64) += pci-thunder-ecam.o
41obj-$(CONFIG_ARM64) += pci-thunder-pem.o
42obj-$(CONFIG_ARM64) += pci-xgene.o
9de0eec2 43endif