Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #
  2. # Industrial I/O subsystem configuration
  3. #
  4. menuconfig IIO
  5. tristate "Industrial I/O support"
  6. select ANON_INODES
  7. help
  8. The industrial I/O subsystem provides a unified framework for
  9. drivers for many different types of embedded sensors using a
  10. number of different physical interfaces (i2c, spi, etc).
  11. if IIO
  12. config IIO_BUFFER
  13. bool "Enable buffer support within IIO"
  14. help
  15. Provide core support for various buffer based data
  16. acquisition methods.
  17. if IIO_BUFFER
  18. source "drivers/iio/buffer/Kconfig"
  19. endif # IIO_BUFFER
  20. config IIO_TRIGGER
  21. bool "Enable triggered sampling support"
  22. help
  23. Provides IIO core support for triggers. Currently these
  24. are used to initialize capture of samples to push into
  25. buffers. The triggers are effectively a 'capture
  26. data now' interrupt.
  27. config IIO_CONSUMERS_PER_TRIGGER
  28. int "Maximum number of consumers per trigger"
  29. depends on IIO_TRIGGER
  30. default "2"
  31. help
  32. This value controls the maximum number of consumers that a
  33. given trigger may handle. Default is 2.
  34. config IIO_TRIGGERED_EVENT
  35. tristate
  36. select IIO_TRIGGER
  37. help
  38. Provides helper functions for setting up triggered events.
  39. source "drivers/iio/accel/Kconfig"
  40. source "drivers/iio/adc/Kconfig"
  41. source "drivers/iio/amplifiers/Kconfig"
  42. source "drivers/iio/chemical/Kconfig"
  43. source "drivers/iio/common/Kconfig"
  44. source "drivers/iio/dac/Kconfig"
  45. source "drivers/iio/frequency/Kconfig"
  46. source "drivers/iio/gyro/Kconfig"
  47. source "drivers/iio/humidity/Kconfig"
  48. source "drivers/iio/imu/Kconfig"
  49. source "drivers/iio/light/Kconfig"
  50. source "drivers/iio/magnetometer/Kconfig"
  51. source "drivers/iio/orientation/Kconfig"
  52. if IIO_TRIGGER
  53. source "drivers/iio/trigger/Kconfig"
  54. endif #IIO_TRIGGER
  55. source "drivers/iio/potentiometer/Kconfig"
  56. source "drivers/iio/pressure/Kconfig"
  57. source "drivers/iio/proximity/Kconfig"
  58. source "drivers/iio/temperature/Kconfig"
  59. endif # IIO