xref: /linux/drivers/pci/endpoint/Kconfig (revision fcc8487d477a3452a1d0ccbdd4c5e0e1e3cb8bed)
1#
2# PCI Endpoint Support
3#
4
5menu "PCI Endpoint"
6
7config PCI_ENDPOINT
8	bool "PCI Endpoint Support"
9	help
10	   Enable this configuration option to support configurable PCI
11	   endpoint. This should be enabled if the platform has a PCI
12	   controller that can operate in endpoint mode.
13
14	   Enabling this option will build the endpoint library, which
15	   includes endpoint controller library and endpoint function
16	   library.
17
18	   If in doubt, say "N" to disable Endpoint support.
19
20config PCI_ENDPOINT_CONFIGFS
21	bool "PCI Endpoint Configfs Support"
22	depends on PCI_ENDPOINT
23	select CONFIGFS_FS
24	help
25	   This will enable the configfs entry that can be used to
26	   configure the endpoint function and used to bind the
27	   function with a endpoint controller.
28
29source "drivers/pci/endpoint/functions/Kconfig"
30
31endmenu
32