1 # SPDX-License-Identifier: GPL-2.0-only << 2 # ALSA soundcard-configuration 1 # ALSA soundcard-configuration 3 config SND_TIMER 2 config SND_TIMER 4 tristate 3 tristate 5 4 6 config SND_PCM 5 config SND_PCM 7 tristate 6 tristate 8 select SND_TIMER if SND_PCM_TIMER 7 select SND_TIMER if SND_PCM_TIMER 9 8 10 config SND_PCM_ELD 9 config SND_PCM_ELD 11 bool 10 bool 12 11 13 config SND_PCM_IEC958 12 config SND_PCM_IEC958 14 bool 13 bool 15 14 16 config SND_DMAENGINE_PCM 15 config SND_DMAENGINE_PCM 17 tristate 16 tristate 18 17 19 config SND_HWDEP 18 config SND_HWDEP 20 tristate 19 tristate 21 20 22 config SND_SEQ_DEVICE << 23 tristate << 24 << 25 config SND_RAWMIDI 21 config SND_RAWMIDI 26 tristate 22 tristate 27 select SND_SEQ_DEVICE if SND_SEQUENCER << 28 << 29 config SND_UMP << 30 tristate << 31 select SND_RAWMIDI << 32 << 33 config SND_UMP_LEGACY_RAWMIDI << 34 bool "Legacy raw MIDI support for UMP << 35 depends on SND_UMP << 36 help << 37 This option enables the legacy raw M << 38 When this option is set, an addition << 39 legacy MIDI 1.0 byte streams is crea << 40 The device contains 16 substreams co << 41 << 42 config SND_CORE_TEST << 43 tristate "Sound core KUnit test" << 44 depends on KUNIT << 45 select SND_PCM << 46 default KUNIT_ALL_TESTS << 47 help << 48 This options enables the sound core << 49 << 50 KUnit tests run during boot and outp << 51 log in TAP format (https://testanyth << 52 kernel devs running KUnit test harne << 53 into a production build. << 54 << 55 For more information on KUnit and un << 56 to the KUnit documentation in Docume << 57 << 58 23 59 config SND_COMPRESS_OFFLOAD 24 config SND_COMPRESS_OFFLOAD 60 tristate 25 tristate 61 26 62 config SND_JACK 27 config SND_JACK 63 bool 28 bool 64 29 65 # enable input device support in jack layer 30 # enable input device support in jack layer 66 config SND_JACK_INPUT_DEV 31 config SND_JACK_INPUT_DEV 67 bool 32 bool 68 depends on SND_JACK 33 depends on SND_JACK 69 default y if INPUT=y || INPUT=SND 34 default y if INPUT=y || INPUT=SND 70 35 >> 36 config SND_SEQUENCER >> 37 tristate "Sequencer support" >> 38 select SND_TIMER >> 39 help >> 40 Say Y or M to enable MIDI sequencer and router support. This >> 41 feature allows routing and enqueueing of MIDI events. Events >> 42 can be processed at a given time. >> 43 >> 44 Many programs require this feature, so you should enable it >> 45 unless you know what you're doing. >> 46 >> 47 config SND_SEQ_DUMMY >> 48 tristate "Sequencer dummy client" >> 49 depends on SND_SEQUENCER >> 50 help >> 51 Say Y here to enable the dummy sequencer client. This client >> 52 is a simple MIDI-through client: all normal input events are >> 53 redirected to the output port immediately. >> 54 >> 55 You don't need this unless you want to connect many MIDI >> 56 devices or applications together. >> 57 >> 58 To compile this driver as a module, choose M here: the module >> 59 will be called snd-seq-dummy. >> 60 71 config SND_OSSEMUL 61 config SND_OSSEMUL 72 bool "Enable OSS Emulation" << 73 select SOUND_OSS_CORE 62 select SOUND_OSS_CORE 74 help !! 63 bool 75 This option enables the build of OSS << 76 64 77 config SND_MIXER_OSS 65 config SND_MIXER_OSS 78 tristate "OSS Mixer API" 66 tristate "OSS Mixer API" 79 depends on SND_OSSEMUL !! 67 select SND_OSSEMUL 80 help 68 help 81 To enable OSS mixer API emulation (/ 69 To enable OSS mixer API emulation (/dev/mixer*), say Y here 82 and read <file:Documentation/sound/d !! 70 and read <file:Documentation/sound/alsa/OSS-Emulation.txt>. 83 71 84 Many programs still use the OSS API, 72 Many programs still use the OSS API, so say Y. 85 73 86 To compile this driver as a module, 74 To compile this driver as a module, choose M here: the module 87 will be called snd-mixer-oss. 75 will be called snd-mixer-oss. 88 76 89 config SND_PCM_OSS 77 config SND_PCM_OSS 90 tristate "OSS PCM (digital audio) API" 78 tristate "OSS PCM (digital audio) API" 91 depends on SND_OSSEMUL !! 79 select SND_OSSEMUL 92 select SND_PCM 80 select SND_PCM 93 help 81 help 94 To enable OSS digital audio (PCM) em 82 To enable OSS digital audio (PCM) emulation (/dev/dsp*), say Y 95 here and read <file:Documentation/so !! 83 here and read <file:Documentation/sound/alsa/OSS-Emulation.txt>. 96 84 97 Many programs still use the OSS API, 85 Many programs still use the OSS API, so say Y. 98 86 99 To compile this driver as a module, 87 To compile this driver as a module, choose M here: the module 100 will be called snd-pcm-oss. 88 will be called snd-pcm-oss. 101 89 102 config SND_PCM_OSS_PLUGINS 90 config SND_PCM_OSS_PLUGINS 103 bool "OSS PCM (digital audio) API - In 91 bool "OSS PCM (digital audio) API - Include plugin system" 104 depends on SND_PCM_OSS 92 depends on SND_PCM_OSS 105 default y !! 93 default y 106 help 94 help 107 If you disable this option, the ALSA !! 95 If you disable this option, the ALSA's OSS PCM API will not 108 support conversion of channels, form !! 96 support conversion of channels, formats and rates. It will 109 behave like most of new OSS/Free dri !! 97 behave like most of new OSS/Free drivers in 2.4/2.6 kernels. 110 98 111 config SND_PCM_TIMER 99 config SND_PCM_TIMER 112 bool "PCM timer interface" if EXPERT 100 bool "PCM timer interface" if EXPERT 113 default y 101 default y 114 help 102 help 115 If you disable this option, pcm time 103 If you disable this option, pcm timer will be unavailable, so 116 those stubs that use pcm timer (e.g. 104 those stubs that use pcm timer (e.g. dmix, dsnoop & co) may work 117 incorrectly. !! 105 incorrectlly. 118 106 119 For some embedded devices, we may di 107 For some embedded devices, we may disable it to reduce memory 120 footprint, about 20KB on x86_64 plat 108 footprint, about 20KB on x86_64 platform. 121 109 >> 110 config SND_SEQUENCER_OSS >> 111 bool "OSS Sequencer API" >> 112 depends on SND_SEQUENCER >> 113 select SND_OSSEMUL >> 114 help >> 115 Say Y here to enable OSS sequencer emulation (both >> 116 /dev/sequencer and /dev/music interfaces). >> 117 >> 118 Many programs still use the OSS API, so say Y. >> 119 >> 120 If you choose M in "Sequencer support" (SND_SEQUENCER), >> 121 this will be compiled as a module. The module will be called >> 122 snd-seq-oss. >> 123 122 config SND_HRTIMER 124 config SND_HRTIMER 123 tristate "HR-timer backend support" 125 tristate "HR-timer backend support" 124 depends on HIGH_RES_TIMERS 126 depends on HIGH_RES_TIMERS 125 select SND_TIMER 127 select SND_TIMER 126 help 128 help 127 Say Y here to enable HR-timer backen 129 Say Y here to enable HR-timer backend for ALSA timer. ALSA uses 128 the hrtimer as a precise timing sour 130 the hrtimer as a precise timing source. The ALSA sequencer code 129 also can use this timing source. 131 also can use this timing source. 130 132 131 To compile this driver as a module, 133 To compile this driver as a module, choose M here: the module 132 will be called snd-hrtimer. 134 will be called snd-hrtimer. 133 135 >> 136 config SND_SEQ_HRTIMER_DEFAULT >> 137 bool "Use HR-timer as default sequencer timer" >> 138 depends on SND_HRTIMER && SND_SEQUENCER >> 139 default y >> 140 help >> 141 Say Y here to use the HR-timer backend as the default sequencer >> 142 timer. >> 143 134 config SND_DYNAMIC_MINORS 144 config SND_DYNAMIC_MINORS 135 bool "Dynamic device file minor number 145 bool "Dynamic device file minor numbers" 136 help 146 help 137 If you say Y here, the minor numbers 147 If you say Y here, the minor numbers of ALSA device files in 138 /dev/snd/ are allocated dynamically. 148 /dev/snd/ are allocated dynamically. This allows you to have 139 more than 8 sound cards, but require 149 more than 8 sound cards, but requires a dynamic device file 140 system like udev. 150 system like udev. 141 151 142 If you are unsure about this, say N 152 If you are unsure about this, say N here. 143 153 144 config SND_MAX_CARDS 154 config SND_MAX_CARDS 145 int "Max number of sound cards" 155 int "Max number of sound cards" 146 range 4 256 156 range 4 256 147 default 32 157 default 32 148 depends on SND_DYNAMIC_MINORS 158 depends on SND_DYNAMIC_MINORS 149 help 159 help 150 Specify the max number of sound card 160 Specify the max number of sound cards that can be assigned 151 on a single machine. 161 on a single machine. 152 162 153 config SND_SUPPORT_OLD_API 163 config SND_SUPPORT_OLD_API 154 bool "Support old ALSA API" 164 bool "Support old ALSA API" 155 default y 165 default y 156 help 166 help 157 Say Y here to support the obsolete A 167 Say Y here to support the obsolete ALSA PCM API (ver.0.9.0 rc3 158 or older). 168 or older). 159 169 160 config SND_PROC_FS 170 config SND_PROC_FS 161 bool "Sound Proc FS Support" if EXPERT !! 171 bool "Sound Proc FS Support" if EXPERT 162 depends on PROC_FS !! 172 depends on PROC_FS 163 default y !! 173 default y 164 help !! 174 help 165 Say 'N' to disable Sound proc FS, wh !! 175 Say 'N' to disable Sound proc FS, which may reduce code size about 166 9KB on x86_64 platform. !! 176 9KB on x86_64 platform. 167 If unsure say Y. !! 177 If unsure say Y. 168 178 169 config SND_VERBOSE_PROCFS 179 config SND_VERBOSE_PROCFS 170 bool "Verbose procfs contents" 180 bool "Verbose procfs contents" 171 depends on SND_PROC_FS 181 depends on SND_PROC_FS 172 default y 182 default y 173 help 183 help 174 Say Y here to include code for verbo 184 Say Y here to include code for verbose procfs contents (provides 175 useful information to developers whe !! 185 useful information to developers when a problem occurs). On the 176 other side, it makes the ALSA subsys !! 186 other side, it makes the ALSA subsystem larger. 177 187 178 config SND_CTL_FAST_LOOKUP !! 188 config SND_VERBOSE_PRINTK 179 bool "Fast lookup of control elements" !! 189 bool "Verbose printk" 180 default y << 181 select XARRAY_MULTI << 182 help 190 help 183 This option enables the faster looku !! 191 Say Y here to enable verbose log messages. These messages 184 It will consume more memory because !! 192 will help to identify source file and position containing 185 If you want to choose the memory foo !! 193 printed messages. 186 inevitably, turn this off. !! 194 >> 195 You don't need this unless you're debugging ALSA. 187 196 188 config SND_DEBUG 197 config SND_DEBUG 189 bool "Debug" 198 bool "Debug" 190 help 199 help 191 Say Y here to enable ALSA debug code 200 Say Y here to enable ALSA debug code. 192 201 193 config SND_DEBUG_VERBOSE 202 config SND_DEBUG_VERBOSE 194 bool "More verbose debug" 203 bool "More verbose debug" 195 depends on SND_DEBUG 204 depends on SND_DEBUG 196 help 205 help 197 Say Y here to enable extra-verbose d 206 Say Y here to enable extra-verbose debugging messages. 198 !! 207 199 Let me repeat: it enables EXTRA-VERB 208 Let me repeat: it enables EXTRA-VERBOSE DEBUGGING messages. 200 So, say Y only if you are ready to b 209 So, say Y only if you are ready to be annoyed. 201 210 202 config SND_PCM_XRUN_DEBUG 211 config SND_PCM_XRUN_DEBUG 203 bool "Enable PCM ring buffer overrun/u 212 bool "Enable PCM ring buffer overrun/underrun debugging" 204 default n 213 default n 205 depends on SND_DEBUG && SND_VERBOSE_PR 214 depends on SND_DEBUG && SND_VERBOSE_PROCFS 206 help 215 help 207 Say Y to enable the PCM ring buffer 216 Say Y to enable the PCM ring buffer overrun/underrun debugging. 208 It is usually not required, but if y 217 It is usually not required, but if you have trouble with 209 sound clicking when system is loaded 218 sound clicking when system is loaded, it may help to determine 210 the process or driver which causes t 219 the process or driver which causes the scheduling gaps. 211 220 212 config SND_CTL_INPUT_VALIDATION << 213 bool "Validate input data to control A << 214 help << 215 Say Y to enable the additional valid << 216 each control element, including the << 217 An error is returned from ALSA core << 218 passing to the driver. This is a ki << 219 that have no proper error checks, at << 220 performance overhead. << 221 << 222 config SND_CTL_DEBUG << 223 bool "Enable debugging feature for con << 224 depends on SND_DEBUG << 225 help << 226 Say Y to enable the debugging featur << 227 It performs the additional sanity-ch << 228 read access, such as whether the val << 229 are in the proper ranges or the chec << 230 out-of-array areas. The error is pr << 231 such unexpected values. << 232 When you develop a driver that deals << 233 strongly recommended to try this one << 234 any relevant errors or not. << 235 << 236 config SND_JACK_INJECTION_DEBUG << 237 bool "Sound jack injection interface v << 238 depends on SND_JACK && SND_DEBUG && DE << 239 help << 240 This option can be used to enable or << 241 software injection. << 242 Say Y if you are debugging via jack << 243 If unsure select "N". << 244 << 245 config SND_UTIMER << 246 bool "Enable support for userspace-con << 247 depends on SND_TIMER << 248 help << 249 Say Y to enable the support of users << 250 timers are purely virtual, and they << 251 from userspace. They could be quite << 252 sound timing with userspace applicat << 253 data through snd-aloop). << 254 << 255 config SND_VMASTER 221 config SND_VMASTER 256 bool 222 bool 257 223 258 config SND_DMA_SGBUF 224 config SND_DMA_SGBUF 259 def_bool y 225 def_bool y 260 depends on X86 226 depends on X86 261 << 262 config SND_CTL_LED << 263 tristate << 264 select NEW_LEDS if SND_CTL_LED << 265 select LEDS_TRIGGERS if SND_CTL_LED << 266 227 267 source "sound/core/seq/Kconfig" 228 source "sound/core/seq/Kconfig"
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.