mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 07:55:15 +07:00
863bba34d2
Fix the following warning by adding the dependency PCI_MSI_IRQ_DOMAIN to PCIE_MOBIVEIL_PLAT. WARNING: unmet direct dependencies detected for PCIE_MOBIVEIL_HOST Depends on [n]: PCI [=y] && PCI_MSI_IRQ_DOMAIN [=n] Selected by [y]: - PCIE_MOBIVEIL_PLAT [=y] && PCI [=y] && (ARCH_ZYNQMP || COMPILE_TEST [=y]) && OF [=y] Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com> Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
35 lines
852 B
Plaintext
35 lines
852 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
menu "Mobiveil PCIe Core Support"
|
|
depends on PCI
|
|
|
|
config PCIE_MOBIVEIL
|
|
bool
|
|
|
|
config PCIE_MOBIVEIL_HOST
|
|
bool
|
|
depends on PCI_MSI_IRQ_DOMAIN
|
|
select PCIE_MOBIVEIL
|
|
|
|
config PCIE_MOBIVEIL_PLAT
|
|
bool "Mobiveil AXI PCIe controller"
|
|
depends on ARCH_ZYNQMP || COMPILE_TEST
|
|
depends on OF
|
|
depends on PCI_MSI_IRQ_DOMAIN
|
|
select PCIE_MOBIVEIL_HOST
|
|
help
|
|
Say Y here if you want to enable support for the Mobiveil AXI PCIe
|
|
Soft IP. It has up to 8 outbound and inbound windows
|
|
for address translation and it is a PCIe Gen4 IP.
|
|
|
|
config PCIE_LAYERSCAPE_GEN4
|
|
bool "Freescale Layerscape PCIe Gen4 controller"
|
|
depends on PCI
|
|
depends on OF && (ARM64 || ARCH_LAYERSCAPE)
|
|
depends on PCI_MSI_IRQ_DOMAIN
|
|
select PCIE_MOBIVEIL_HOST
|
|
help
|
|
Say Y here if you want PCIe Gen4 controller support on
|
|
Layerscape SoCs.
|
|
endmenu
|