Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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_KFIFO_BUF
  27. tristate "Industrial I/O buffering based on kfifo"
  28. help
  29. A simple fifo based on kfifo. Note that this currently provides
  30. no buffer events so it is up to userspace to work out how
  31. often to read from the buffer.
  32. config IIO_TRIGGERED_BUFFER
  33. tristate
  34. select IIO_TRIGGER
  35. select IIO_KFIFO_BUF
  36. help
  37. Provides helper functions for setting up triggered buffers.