Kconfig 957 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 AT91_ADC
  29. tristate "Atmel AT91 ADC"
  30. depends on ARCH_AT91
  31. select IIO_BUFFER
  32. select IIO_TRIGGERED_BUFFER
  33. select SYSFS
  34. help
  35. Say yes here to build support for Atmel AT91 ADC.
  36. endmenu