Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #
  2. # Industrial I/O generic buffer implementations
  3. #
  4. # When adding new entries keep the list in alphabetical order
  5. config IIO_BUFFER_CB
  6. tristate "IIO callback buffer used for push in-kernel interfaces"
  7. help
  8. Should be selected by any drivers that do in-kernel push
  9. usage. That is, those where the data is pushed to the consumer.
  10. config IIO_BUFFER_DMA
  11. tristate
  12. help
  13. Provides the generic IIO DMA buffer infrastructure that can be used by
  14. drivers for devices with DMA support to implement the IIO buffer.
  15. Should be selected by drivers that want to use the generic DMA buffer
  16. infrastructure.
  17. config IIO_BUFFER_DMAENGINE
  18. tristate
  19. select IIO_BUFFER_DMA
  20. help
  21. Provides a bonding of the generic IIO DMA buffer infrastructure with the
  22. DMAengine framework. This can be used by converter drivers with a DMA port
  23. connected to an external DMA controller which is supported by the
  24. DMAengine framework.
  25. Should be selected by drivers that want to use this functionality.
  26. config IIO_BUFFER_HW_CONSUMER
  27. tristate "Industrial I/O HW buffering"
  28. help
  29. Provides a way to bonding when an IIO device has a direct connection
  30. to another device in hardware. In this case buffers for data transfers
  31. are handled by hardware.
  32. Should be selected by drivers that want to use the generic Hw consumer
  33. interface.
  34. config IIO_KFIFO_BUF
  35. tristate "Industrial I/O buffering based on kfifo"
  36. help
  37. A simple fifo based on kfifo. Note that this currently provides
  38. no buffer events so it is up to userspace to work out how
  39. often to read from the buffer.
  40. config IIO_TRIGGERED_BUFFER
  41. tristate
  42. select IIO_TRIGGER
  43. select IIO_KFIFO_BUF
  44. help
  45. Provides helper functions for setting up triggered buffers.