Kconfig 833 B

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