mirror of
https://github.com/torvalds/linux.git
synced 2026-04-28 03:22:27 -04:00
Add driver for the CIX Sky1 SoC PCIe Gen4 16 GT/s controller based on the Cadence High Performance Architecture (HPA) PCIe core. The controller supports MSI/MSI-X via GICv3, Single Virtual Channel, and Single Function. Signed-off-by: Hans Zhang <hans.zhang@cixtech.com> [mani: moved the PCI ID definitions and squashed Kconfig change] Signed-off-by: Manivannan Sadhasivam <mani@kernel.org> [bhelgaas: sort Kconfig menu entry, squash https://lore.kernel.org/r/aSBqp0cglr-Sc8na@stanley.mountain] Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Link: https://patch.msgid.link/20251108140305.1120117-8-hans.zhang@cixtech.com
13 lines
579 B
Makefile
13 lines
579 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
pcie-cadence-mod-y := pcie-cadence-hpa.o pcie-cadence.o
|
|
pcie-cadence-host-mod-y := pcie-cadence-host-common.o pcie-cadence-host.o pcie-cadence-host-hpa.o
|
|
pcie-cadence-ep-mod-y := pcie-cadence-ep.o
|
|
|
|
obj-$(CONFIG_PCIE_CADENCE) = pcie-cadence-mod.o
|
|
obj-$(CONFIG_PCIE_CADENCE_HOST) += pcie-cadence-host-mod.o
|
|
obj-$(CONFIG_PCIE_CADENCE_EP) += pcie-cadence-ep-mod.o
|
|
obj-$(CONFIG_PCIE_CADENCE_PLAT) += pcie-cadence-plat.o
|
|
obj-$(CONFIG_PCI_J721E) += pci-j721e.o
|
|
obj-$(CONFIG_PCIE_SG2042_HOST) += pcie-sg2042.o
|
|
obj-$(CONFIG_PCI_SKY1_HOST) += pci-sky1.o
|