1# SPDX-License-Identifier: GPL-2.0 2# 3# PCI Endpoint Support 4# 5 6menu "PCI Endpoint" 7 8config PCI_ENDPOINT 9 bool "PCI Endpoint Support" 10 depends on DM 11 help 12 Enable this configuration option to support configurable PCI 13 endpoints. This should be enabled if the platform has a PCI 14 controllers that can operate in endpoint mode (as a device 15 connected to PCI host or bridge). 16 17config PCIE_CADENCE_EP 18 bool "Cadence PCIe endpoint controller" 19 depends on PCI_ENDPOINT 20 help 21 Say Y here if you want to support the Cadence PCIe controller in 22 endpoint mode. This PCIe controller may be embedded into many 23 different vendors SoCs. 24 25config PCIE_CDNS_TI_EP 26 bool "TI K3 PCIe EP support" 27 help 28 Say Y here to enable support for the Canence PCIe Controller 29 in Endpoint Mode on TI's K3 Socs. 30 31config PCI_SANDBOX_EP 32 bool "Sandbox PCIe endpoint controller" 33 depends on PCI_ENDPOINT 34 help 35 Say Y here if you want to support the Sandbox PCIe controller in 36 endpoint mode. 37 The sandbox driver act as a dummy driver which stores and 38 retrieves PCIe endpoint configuration as is. 39 40endmenu 41