Kconfig 5.9 KB

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