Kconfig 920 B

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