Kconfig 869 B

123456789101112131415161718192021222324252627282930313233
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # PCI Endpoint Support
  4. #
  5. menu "PCI Endpoint"
  6. config PCI_ENDPOINT
  7. bool "PCI Endpoint Support"
  8. depends on HAVE_PCI
  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. Enabling this option will build the endpoint library, which
  14. includes endpoint controller library and endpoint function
  15. library.
  16. If in doubt, say "N" to disable Endpoint support.
  17. config PCI_ENDPOINT_CONFIGFS
  18. bool "PCI Endpoint Configfs Support"
  19. depends on PCI_ENDPOINT
  20. select CONFIGFS_FS
  21. help
  22. This will enable the configfs entry that can be used to
  23. configure the endpoint function and used to bind the
  24. function with a endpoint controller.
  25. source "drivers/pci/endpoint/functions/Kconfig"
  26. endmenu