Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #
  2. # ADC drivers
  3. #
  4. menu "Analog to digital converters"
  5. config AD_SIGMA_DELTA
  6. tristate
  7. select IIO_BUFFER
  8. select IIO_TRIGGERED_BUFFER
  9. config AD7266
  10. tristate "Analog Devices AD7265/AD7266 ADC driver"
  11. depends on SPI_MASTER
  12. select IIO_BUFFER
  13. select IIO_TRIGGER
  14. select IIO_TRIGGERED_BUFFER
  15. help
  16. Say yes here to build support for Analog Devices AD7265 and AD7266
  17. ADCs.
  18. config AD7791
  19. tristate "Analog Devices AD7791 ADC driver"
  20. depends on SPI
  21. select AD_SIGMA_DELTA
  22. help
  23. Say yes here to build support for Analog Devices AD7787, AD7788, AD7789,
  24. AD7790 and AD7791 SPI analog to digital converters (ADC). If unsure, say
  25. N (but it is safe to say "Y").
  26. To compile this driver as a module, choose M here: the module will be
  27. called ad7791.
  28. config AD7476
  29. tristate "Analog Devices AD7476 and similar 1-channel ADCs driver"
  30. depends on SPI
  31. select IIO_BUFFER
  32. select IIO_TRIGGERED_BUFFER
  33. help
  34. Say yes here to build support for Analog Devices AD7273, AD7274, AD7276,
  35. AD7277, AD7278, AD7475, AD7476, AD7477, AD7478, AD7466, AD7467, AD7468,
  36. AD7495, AD7910, AD7920, AD7920 SPI analog to digital converters (ADC).
  37. If unsure, say N (but it's safe to say "Y").
  38. To compile this driver as a module, choose M here: the
  39. module will be called ad7476.
  40. config AT91_ADC
  41. tristate "Atmel AT91 ADC"
  42. depends on ARCH_AT91
  43. select IIO_BUFFER
  44. select IIO_TRIGGERED_BUFFER
  45. select SYSFS
  46. help
  47. Say yes here to build support for Atmel AT91 ADC.
  48. config LP8788_ADC
  49. bool "LP8788 ADC driver"
  50. depends on MFD_LP8788
  51. help
  52. Say yes here to build support for TI LP8788 ADC.
  53. config TI_AM335X_ADC
  54. tristate "TI's ADC driver"
  55. depends on MFD_TI_AM335X_TSCADC
  56. help
  57. Say yes here to build support for Texas Instruments ADC
  58. driver which is also a MFD client.
  59. config VIPERBOARD_ADC
  60. tristate "Viperboard ADC support"
  61. depends on MFD_VIPERBOARD && USB
  62. help
  63. Say yes here to access the ADC part of the Nano River
  64. Technologies Viperboard.
  65. endmenu