39b91eb40c
Add StarFive JH7110 SoC PCIe controller platform driver code, JH7110 with PLDA host PCIe core. Link: https://lore.kernel.org/linux-pci/20240328091835.14797-22-minda.chen@starfivetech.com Co-developed-by: Kevin Xie <kevin.xie@starfivetech.com> Signed-off-by: Minda Chen <minda.chen@starfivetech.com> Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Mason Huo <mason.huo@starfivetech.com>
31 lines
785 B
Plaintext
31 lines
785 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
menu "PLDA-based PCIe controllers"
|
|
depends on PCI
|
|
|
|
config PCIE_PLDA_HOST
|
|
bool
|
|
|
|
config PCIE_MICROCHIP_HOST
|
|
tristate "Microchip AXI PCIe controller"
|
|
depends on PCI_MSI && OF
|
|
select PCI_HOST_COMMON
|
|
select PCIE_PLDA_HOST
|
|
help
|
|
Say Y here if you want kernel to support the Microchip AXI PCIe
|
|
Host Bridge driver.
|
|
|
|
config PCIE_STARFIVE_HOST
|
|
tristate "StarFive PCIe host controller"
|
|
depends on PCI_MSI && OF
|
|
depends on ARCH_STARFIVE || COMPILE_TEST
|
|
select PCIE_PLDA_HOST
|
|
help
|
|
Say Y here if you want to support the StarFive PCIe controller in
|
|
host mode. StarFive PCIe controller uses PLDA PCIe core.
|
|
|
|
If you choose to build this driver as module it will be dynamically
|
|
linked and module will be called pcie-starfive.ko.
|
|
|
|
endmenu
|