Blame view

sound/drivers/Kconfig 6.86 KB
ec8f24b7f   Thomas Gleixner   treewide: Add SPD...
1
  # SPDX-License-Identifier: GPL-2.0-only
89fe51179   Takashi Iwai   sound: Convert to...
2
  config SND_MPU401_UART
82e8d723e   Krzysztof Kozlowski   sound: Fix Kconfi...
3
4
  	tristate
  	select SND_RAWMIDI
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5

89fe51179   Takashi Iwai   sound: Convert to...
6
7
8
9
  config SND_OPL3_LIB
  	tristate
  	select SND_TIMER
  	select SND_HWDEP
111b0cdb9   Takashi Iwai   ALSA: seq: Allow ...
10
  	select SND_SEQ_DEVICE if SND_SEQUENCER != n
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11

89fe51179   Takashi Iwai   sound: Convert to...
12
13
14
15
  config SND_OPL4_LIB
  	tristate
  	select SND_TIMER
  	select SND_HWDEP
111b0cdb9   Takashi Iwai   ALSA: seq: Allow ...
16
  	select SND_SEQ_DEVICE if SND_SEQUENCER != n
89fe51179   Takashi Iwai   sound: Convert to...
17

0181307ab   Takashi Iwai   ALSA: seq: Reorga...
18
19
20
21
22
23
24
25
26
27
  # select SEQ stuff to min(SND_SEQUENCER,SND_XXX)
  config SND_OPL3_LIB_SEQ
  	def_tristate SND_SEQUENCER && SND_OPL3_LIB
  	select SND_SEQ_MIDI_EMUL
  	select SND_SEQ_MIDI_EVENT
  
  config SND_OPL4_LIB_SEQ
  	def_tristate SND_SEQUENCER && SND_OPL4_LIB
  	select SND_SEQ_MIDI_EMUL
  	select SND_SEQ_MIDI_EVENT
89fe51179   Takashi Iwai   sound: Convert to...
28
29
  config SND_VX_LIB
  	tristate
0d144de9a   Takashi Iwai   ALSA: vx: hard de...
30
  	select FW_LOADER
89fe51179   Takashi Iwai   sound: Convert to...
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  	select SND_HWDEP
  	select SND_PCM
  
  config SND_AC97_CODEC
  	tristate
  	select SND_PCM
  	select AC97_BUS
  	select SND_VMASTER
  
  menuconfig SND_DRIVERS
  	bool "Generic sound devices"
  	default y
  	help
  	  Support for generic sound devices.
    
  if SND_DRIVERS
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47

9ab4d072a   Stas Sergeev   [ALSA] Add PC-spe...
48
  config SND_PCSP
3ccee6901   Stas Sergeev   snd-pcsp: adjust ...
49
  	tristate "PC-Speaker support (READ HELP!)"
4272ebfbe   Yinghai Lu   x86: allow more t...
50
  	depends on PCSPKR_PLATFORM && X86 && HIGH_RES_TIMERS
73bdd2ad7   Takashi Iwai   [ALSA] pcsp - Fix...
51
  	depends on INPUT
bad7785d4   Takashi Iwai   [ALSA] pcsp - Fix...
52
  	select SND_PCM
9ab4d072a   Stas Sergeev   [ALSA] Add PC-spe...
53
54
55
56
57
58
59
  	help
  	  If you don't have a sound card in your computer, you can include a
  	  driver for the PC speaker which allows it to act like a primitive
  	  sound card.
  	  This driver also replaces the pcspkr driver for beeps.
  
  	  You can compile this as a module which will be called snd-pcsp.
3ccee6901   Stas Sergeev   snd-pcsp: adjust ...
60
61
62
63
64
  	  WARNING: if you already have a soundcard, enabling this
  	  driver may lead to a problem. Namely, it may get loaded
  	  before the other sound driver of yours, making the
  	  pc-speaker a default sound device. Which is likely not
  	  what you want. To make this driver play nicely with other
970e24864   Lucas De Marchi   Documentation: re...
65
66
  	  sound driver, you can add this in a configuration file under
  	  /etc/modprobe.d/ directory:
3ccee6901   Stas Sergeev   snd-pcsp: adjust ...
67
  	  options snd-pcsp index=2
9ab4d072a   Stas Sergeev   [ALSA] Add PC-spe...
68
69
70
  	  You don't need this driver if you only want your pc-speaker to beep.
  	  You don't need this driver if you have a tablet piezo beeper
  	  in your PC instead of the real speaker.
3ccee6901   Stas Sergeev   snd-pcsp: adjust ...
71
72
73
  	  Say N if you have a sound card.
  	  Say M if you don't.
  	  Say Y only if you really know what you do.
9ab4d072a   Stas Sergeev   [ALSA] Add PC-spe...
74

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
75
76
  config SND_DUMMY
  	tristate "Dummy (/dev/null) soundcard"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
77
78
79
80
81
82
83
84
85
86
  	select SND_PCM
  	help
  	  Say Y here to include the dummy driver.  This driver does
  	  nothing, but emulates various mixer controls and PCM devices.
  
  	  You don't need this unless you're testing the hardware support
  	  of programs using the ALSA API.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called snd-dummy.
597603d61   Jaroslav Kysela   ALSA: introduce t...
87
  config SND_ALOOP
82e8d723e   Krzysztof Kozlowski   sound: Fix Kconfi...
88
89
  	tristate "Generic loopback driver (PCM)"
  	select SND_PCM
c6b6fc206   Takashi Iwai   ALSA: aloop: Fix ...
90
  	select SND_TIMER
82e8d723e   Krzysztof Kozlowski   sound: Fix Kconfi...
91
92
  	help
  	  Say 'Y' or 'M' to include support for the PCM loopback device.
597603d61   Jaroslav Kysela   ALSA: introduce t...
93
94
  	  This module returns played samples back to the user space using
  	  the standard ALSA PCM device. The devices are routed 0->1 and
82e8d723e   Krzysztof Kozlowski   sound: Fix Kconfi...
95
  	  1->0, where first number is the playback PCM device and second
597603d61   Jaroslav Kysela   ALSA: introduce t...
96
97
  	  number is the capture device. Module creates two PCM devices and
  	  configured number of substreams (see the pcm_substreams module
82e8d723e   Krzysztof Kozlowski   sound: Fix Kconfi...
98
  	  parameter).
597603d61   Jaroslav Kysela   ALSA: introduce t...
99

13627549f   Pavel Machek   ALSA: sound kconf...
100
  	  The loopback device allows time sychronization with an external
597603d61   Jaroslav Kysela   ALSA: introduce t...
101
102
103
104
105
  	  timing source using the time shift universal control (+-20%
  	  of system time).
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called snd-aloop.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
106
107
108
109
110
  config SND_VIRMIDI
  	tristate "Virtual MIDI soundcard"
  	depends on SND_SEQUENCER
  	select SND_TIMER
  	select SND_RAWMIDI
0181307ab   Takashi Iwai   ALSA: seq: Reorga...
111
112
  	select SND_SEQ_VIRMIDI
  	select SND_SEQ_MIDI_EVENT
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
113
114
115
116
117
118
119
120
121
122
123
124
  	help
  	  Say Y here to include the virtual MIDI driver.  This driver
  	  allows to connect applications using raw MIDI devices to
  	  sequencer clients.
  
  	  If you don't know what MIDI is, say N here.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called snd-virmidi.
  
  config SND_MTPAV
  	tristate "MOTU MidiTimePiece AV multiport MIDI"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
125
126
127
128
129
130
131
132
  	select SND_RAWMIDI
  	help
  	  To use a MOTU MidiTimePiece AV multiport MIDI adapter
  	  connected to the parallel port, say Y here and make sure that
  	  the standard parallel port driver isn't used for the port.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called snd-mtpav.
68ab801e3   Matthias Koenig   [ALSA] Add snd-mt...
133
134
  config SND_MTS64
  	tristate "ESI Miditerminal 4140 driver"
89fe51179   Takashi Iwai   sound: Convert to...
135
  	depends on PARPORT
68ab801e3   Matthias Koenig   [ALSA] Add snd-mt...
136
137
138
  	select SND_RAWMIDI
  	help
  	  The ESI Miditerminal 4140 is a 4 In 4 Out MIDI Interface with 
82e8d723e   Krzysztof Kozlowski   sound: Fix Kconfi...
139
  	  additional SMPTE Timecode capabilities for the parallel port.
68ab801e3   Matthias Koenig   [ALSA] Add snd-mt...
140
141
142
143
  
  	  Say 'Y' to include support for this device.
  
  	  To compile this driver as a module, chose 'M' here: the module 
82e8d723e   Krzysztof Kozlowski   sound: Fix Kconfi...
144
  	  will be called snd-mts64.
68ab801e3   Matthias Koenig   [ALSA] Add snd-mt...
145

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
146
147
  config SND_SERIAL_U16550
  	tristate "UART16550 serial MIDI driver"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
149
150
  	select SND_RAWMIDI
  	help
  	  To include support for MIDI serial port interfaces, say Y here
5fb94e9ca   Mauro Carvalho Chehab   docs: Fix some br...
151
  	  and read <file:Documentation/sound/cards/serial-u16550.rst>.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
152
153
154
155
156
157
158
159
160
161
162
  	  This driver works with serial UARTs 16550 and better.
  
  	  This driver accesses the serial port hardware directly, so
  	  make sure that the standard serial driver isn't used or
  	  deactivated with setserial before loading this driver.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called snd-serial-u16550.
  
  config SND_MPU401
  	tristate "Generic MPU-401 UART driver"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
163
164
165
166
167
168
169
  	select SND_MPU401_UART
  	help
  	  Say Y here to include support for MIDI ports compatible with
  	  the Roland MPU-401 interface in UART mode.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called snd-mpu401.
757e119bf   Matthias Koenig   [ALSA] Add snd-po...
170
171
  config SND_PORTMAN2X4
  	tristate "Portman 2x4 driver"
89fe51179   Takashi Iwai   sound: Convert to...
172
  	depends on PARPORT
757e119bf   Matthias Koenig   [ALSA] Add snd-po...
173
174
175
176
177
178
179
  	select SND_RAWMIDI
  	help
  	  Say Y here to include support for Midiman Portman 2x4 parallel
  	  port MIDI device.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called snd-portman2x4.
6938d6b2a   Takashi Iwai   [ALSA] Fix AC97 k...
180
181
  config SND_AC97_POWER_SAVE
  	bool "AC97 Power-Saving Mode"
02834f112   Takashi Iwai   ALSA: ac97 - Remo...
182
  	depends on SND_AC97_CODEC
6938d6b2a   Takashi Iwai   [ALSA] Fix AC97 k...
183
184
185
186
187
  	default n
  	help
  	  Say Y here to enable the aggressive power-saving support of
  	  AC97 codecs.  In this mode, the power-mode is dynamically
  	  controlled at each open/close.
1d8c1100f   Michael Witten   ALSA: Kconfig: SN...
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
  	  The mode is activated by passing 'power_save=X' to the
  	  snd-ac97-codec driver module, where 'X' is the time-out
  	  value, a nonnegative integer that specifies how many
  	  seconds of idle time the driver must count before it may
  	  put the AC97 into power-save mode;  a value of 0 (zero)
  	  disables the use of this power-save mode.
  
  	  After the snd-ac97-codec driver module has been loaded,
  	  the 'power_save' parameter can be set via sysfs as follows:
  
  	    echo 10 > /sys/module/snd_ac97_codec/parameters/power_save
  
  	  In this case, the time-out is set to 10 seconds; setting
  	  the time-out to 1 second (the minimum activation value)
  	  isn't recommended because many applications try to reopen
  	  the device frequently.  A value of 10 seconds would be a
  	  good choice for normal operations.
5fb94e9ca   Mauro Carvalho Chehab   docs: Fix some br...
205
  	  See Documentation/sound/designs/powersave.rst for more details.
6938d6b2a   Takashi Iwai   [ALSA] Fix AC97 k...
206
207
208
209
210
211
212
213
  
  config SND_AC97_POWER_SAVE_DEFAULT
  	int "Default time-out for AC97 power-save mode"
  	depends on SND_AC97_POWER_SAVE
  	default 0
  	help
  	  The default time-out value in seconds for AC97 automatic
  	  power-save mode.  0 means to disable the power-save mode.
1d8c1100f   Michael Witten   ALSA: Kconfig: SN...
214
  	  See SND_AC97_POWER_SAVE for more details.
89fe51179   Takashi Iwai   sound: Convert to...
215
  endif	# SND_DRIVERS