34 lines · plain
1# SPDX-License-Identifier: GPL-2.02#3# PCI Endpoint Support4#5 6menu "PCI Endpoint"7 8config PCI_ENDPOINT9 bool "PCI Endpoint Support"10 depends on HAVE_PCI11 help12 Enable this configuration option to support configurable PCI13 endpoint. This should be enabled if the platform has a PCI14 controller that can operate in endpoint mode.15 16 Enabling this option will build the endpoint library, which17 includes endpoint controller library and endpoint function18 library.19 20 If in doubt, say "N" to disable Endpoint support.21 22config PCI_ENDPOINT_CONFIGFS23 bool "PCI Endpoint Configfs Support"24 depends on PCI_ENDPOINT25 select CONFIGFS_FS26 help27 This will enable the configfs entry that can be used to28 configure the endpoint function and used to bind the29 function with a endpoint controller.30 31source "drivers/pci/endpoint/functions/Kconfig"32 33endmenu34