Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. menu "Sound support"
  2. config SOUND
  3. bool "Enable sound support"
  4. help
  5. Support making sounds through an audio codec. This is normally a
  6. beep at a chosen frequency for a selected length of time. However
  7. the drivers support playing arbitrary sound samples using a
  8. PCM interface.
  9. Note: At present the sound setup is somewhat tangled up in that the
  10. audio codecs are called from the sound-i2s code. This could be
  11. converted to driver model.
  12. config I2S
  13. bool "Enable I2S support"
  14. depends on SOUND
  15. help
  16. I2S is a serial bus often used to transmit audio data from the
  17. SoC to the audio codec. This option enables sound support using
  18. I2S. It calls either of the two supported codecs (no use is made
  19. of driver model at present).
  20. config I2S_SAMSUNG
  21. bool "Enable I2C support for Samsung SoCs"
  22. depends on SOUND
  23. help
  24. Samsung Exynos SoCs support an I2S interface for sending audio
  25. data to an audio codec. This option enables support for this,
  26. using one of the available audio codec drivers. Enabling this
  27. option provides an implementation for sound_init() and
  28. sound_play().
  29. config SOUND_MAX98095
  30. bool "Support Maxim max98095 audio codec"
  31. depends on I2S_SAMSUNG
  32. help
  33. Enable the max98095 audio codec. This is connected via I2S for
  34. audio data and I2C for codec control. At present it only works
  35. with the Samsung I2S driver.
  36. config SOUND_SANDBOX
  37. bool "Support sandbox emulated audio codec"
  38. depends on SANDBOX && SOUND
  39. help
  40. U-Boot sandbox can emulate a sound device using SDL, playing the
  41. sound on the host machine. This option implements the sound_init()
  42. and sound_play() functions for sandbox. Note that you must install
  43. the SDL libraries for this to work.
  44. config SOUND_WM8994
  45. bool "Support Wolfson Micro wm8994 audio codec"
  46. depends on I2S_SAMSUNG
  47. help
  48. Enable the wm8994 audio codec. This is connected via I2S for
  49. audio data and I2C for codec control. At present it only works
  50. with the Samsung I2S driver.
  51. endmenu