Kconfig 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. # ALSA soundcard-configuration
  2. config SND_TIMER
  3. tristate
  4. config SND_PCM
  5. tristate
  6. select SND_TIMER
  7. select GCD
  8. config SND_HWDEP
  9. tristate
  10. config SND_RAWMIDI
  11. tristate
  12. config SND_COMPRESS_OFFLOAD
  13. tristate
  14. # To be effective this also requires INPUT - users should say:
  15. # select SND_JACK if INPUT=y || INPUT=SND
  16. # to avoid having to force INPUT on.
  17. config SND_JACK
  18. bool
  19. config SND_SEQUENCER
  20. tristate "Sequencer support"
  21. select SND_TIMER
  22. help
  23. Say Y or M to enable MIDI sequencer and router support. This
  24. feature allows routing and enqueueing of MIDI events. Events
  25. can be processed at a given time.
  26. Many programs require this feature, so you should enable it
  27. unless you know what you're doing.
  28. config SND_SEQ_DUMMY
  29. tristate "Sequencer dummy client"
  30. depends on SND_SEQUENCER
  31. help
  32. Say Y here to enable the dummy sequencer client. This client
  33. is a simple MIDI-through client: all normal input events are
  34. redirected to the output port immediately.
  35. You don't need this unless you want to connect many MIDI
  36. devices or applications together.
  37. To compile this driver as a module, choose M here: the module
  38. will be called snd-seq-dummy.
  39. config SND_OSSEMUL
  40. select SOUND_OSS_CORE
  41. bool
  42. config SND_MIXER_OSS
  43. tristate "OSS Mixer API"
  44. select SND_OSSEMUL
  45. help
  46. To enable OSS mixer API emulation (/dev/mixer*), say Y here
  47. and read <file:Documentation/sound/alsa/OSS-Emulation.txt>.
  48. Many programs still use the OSS API, so say Y.
  49. To compile this driver as a module, choose M here: the module
  50. will be called snd-mixer-oss.
  51. config SND_PCM_OSS
  52. tristate "OSS PCM (digital audio) API"
  53. select SND_OSSEMUL
  54. select SND_PCM
  55. help
  56. To enable OSS digital audio (PCM) emulation (/dev/dsp*), say Y
  57. here and read <file:Documentation/sound/alsa/OSS-Emulation.txt>.
  58. Many programs still use the OSS API, so say Y.
  59. To compile this driver as a module, choose M here: the module
  60. will be called snd-pcm-oss.
  61. config SND_PCM_OSS_PLUGINS
  62. bool "OSS PCM (digital audio) API - Include plugin system"
  63. depends on SND_PCM_OSS
  64. default y
  65. help
  66. If you disable this option, the ALSA's OSS PCM API will not
  67. support conversion of channels, formats and rates. It will
  68. behave like most of new OSS/Free drivers in 2.4/2.6 kernels.
  69. config SND_SEQUENCER_OSS
  70. bool "OSS Sequencer API"
  71. depends on SND_SEQUENCER
  72. select SND_OSSEMUL
  73. help
  74. Say Y here to enable OSS sequencer emulation (both
  75. /dev/sequencer and /dev/music interfaces).
  76. Many programs still use the OSS API, so say Y.
  77. If you choose M in "Sequencer support" (SND_SEQUENCER),
  78. this will be compiled as a module. The module will be called
  79. snd-seq-oss.
  80. config SND_HRTIMER
  81. tristate "HR-timer backend support"
  82. depends on HIGH_RES_TIMERS
  83. select SND_TIMER
  84. help
  85. Say Y here to enable HR-timer backend for ALSA timer. ALSA uses
  86. the hrtimer as a precise timing source. The ALSA sequencer code
  87. also can use this timing source.
  88. To compile this driver as a module, choose M here: the module
  89. will be called snd-hrtimer.
  90. config SND_SEQ_HRTIMER_DEFAULT
  91. bool "Use HR-timer as default sequencer timer"
  92. depends on SND_HRTIMER && SND_SEQUENCER
  93. default y
  94. help
  95. Say Y here to use the HR-timer backend as the default sequencer
  96. timer.
  97. config SND_RTCTIMER
  98. tristate "RTC Timer support"
  99. depends on RTC
  100. select SND_TIMER
  101. help
  102. Say Y here to enable RTC timer support for ALSA. ALSA uses
  103. the RTC timer as a precise timing source and maps the RTC
  104. timer to ALSA's timer interface. The ALSA sequencer code also
  105. can use this timing source.
  106. To compile this driver as a module, choose M here: the module
  107. will be called snd-rtctimer.
  108. Note that this option is exclusive with the new RTC drivers
  109. (CONFIG_RTC_CLASS) since this requires the old API.
  110. config SND_SEQ_RTCTIMER_DEFAULT
  111. bool "Use RTC as default sequencer timer"
  112. depends on SND_RTCTIMER && SND_SEQUENCER
  113. depends on !SND_SEQ_HRTIMER_DEFAULT
  114. default y
  115. help
  116. Say Y here to use the RTC timer as the default sequencer
  117. timer. This is strongly recommended because it ensures
  118. precise MIDI timing even when the system timer runs at less
  119. than 1000 Hz.
  120. If in doubt, say Y.
  121. config SND_DYNAMIC_MINORS
  122. bool "Dynamic device file minor numbers"
  123. help
  124. If you say Y here, the minor numbers of ALSA device files in
  125. /dev/snd/ are allocated dynamically. This allows you to have
  126. more than 8 sound cards, but requires a dynamic device file
  127. system like udev.
  128. If you are unsure about this, say N here.
  129. config SND_SUPPORT_OLD_API
  130. bool "Support old ALSA API"
  131. default y
  132. help
  133. Say Y here to support the obsolete ALSA PCM API (ver.0.9.0 rc3
  134. or older).
  135. config SND_VERBOSE_PROCFS
  136. bool "Verbose procfs contents"
  137. depends on PROC_FS
  138. default y
  139. help
  140. Say Y here to include code for verbose procfs contents (provides
  141. useful information to developers when a problem occurs). On the
  142. other side, it makes the ALSA subsystem larger.
  143. config SND_VERBOSE_PRINTK
  144. bool "Verbose printk"
  145. help
  146. Say Y here to enable verbose log messages. These messages
  147. will help to identify source file and position containing
  148. printed messages.
  149. You don't need this unless you're debugging ALSA.
  150. config SND_DEBUG
  151. bool "Debug"
  152. help
  153. Say Y here to enable ALSA debug code.
  154. config SND_DEBUG_VERBOSE
  155. bool "More verbose debug"
  156. depends on SND_DEBUG
  157. help
  158. Say Y here to enable extra-verbose debugging messages.
  159. Let me repeat: it enables EXTRA-VERBOSE DEBUGGING messages.
  160. So, say Y only if you are ready to be annoyed.
  161. config SND_PCM_XRUN_DEBUG
  162. bool "Enable PCM ring buffer overrun/underrun debugging"
  163. default n
  164. depends on SND_DEBUG && SND_VERBOSE_PROCFS
  165. help
  166. Say Y to enable the PCM ring buffer overrun/underrun debugging.
  167. It is usually not required, but if you have trouble with
  168. sound clicking when system is loaded, it may help to determine
  169. the process or driver which causes the scheduling gaps.
  170. config SND_VMASTER
  171. bool
  172. config SND_KCTL_JACK
  173. bool
  174. config SND_DMA_SGBUF
  175. def_bool y
  176. depends on X86
  177. source "sound/core/seq/Kconfig"