Kconfig 950 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #SPI drivers
  3. menuconfig SND_SPI
  4. bool "SPI sound devices"
  5. depends on SPI
  6. default y
  7. help
  8. Support for sound devices connected via the SPI bus.
  9. if SND_SPI
  10. config SND_AT73C213
  11. tristate "Atmel AT73C213 DAC driver"
  12. depends on ATMEL_SSC
  13. select SND_PCM
  14. help
  15. Say Y here if you want to use the Atmel AT73C213 external DAC. This
  16. DAC can be found on Atmel development boards.
  17. This driver requires the Atmel SSC driver for sound sink, a
  18. peripheral found on most AT91 microprocessors.
  19. To compile this driver as a module, choose M here: the module will be
  20. called snd-at73c213.
  21. config SND_AT73C213_TARGET_BITRATE
  22. int "Target bitrate for AT73C213"
  23. depends on SND_AT73C213
  24. default "48000"
  25. range 8000 50000
  26. help
  27. Sets the target bitrate for the bitrate calculator in the driver.
  28. Limited by hardware to be between 8000 Hz and 50000 Hz.
  29. Set to 48000 Hz by default.
  30. endif # SND_SPI