Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | config SND_MPU401_UART |
| 2 | tristate |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | select SND_RAWMIDI |
| 4 | |
| 5 | config SND_OPL3_LIB |
| 6 | tristate |
| 7 | select SND_TIMER |
| 8 | select SND_HWDEP |
Takashi Iwai | 111b0cd | 2017-06-09 15:11:58 +0200 | [diff] [blame] | 9 | select SND_SEQ_DEVICE if SND_SEQUENCER != n |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
| 11 | config SND_OPL4_LIB |
| 12 | tristate |
| 13 | select SND_TIMER |
| 14 | select SND_HWDEP |
Takashi Iwai | 111b0cd | 2017-06-09 15:11:58 +0200 | [diff] [blame] | 15 | select SND_SEQ_DEVICE if SND_SEQUENCER != n |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Takashi Iwai | 0181307 | 2017-06-09 14:40:18 +0200 | [diff] [blame] | 17 | # select SEQ stuff to min(SND_SEQUENCER,SND_XXX) |
| 18 | config SND_OPL3_LIB_SEQ |
| 19 | def_tristate SND_SEQUENCER && SND_OPL3_LIB |
| 20 | select SND_SEQ_MIDI_EMUL |
| 21 | select SND_SEQ_MIDI_EVENT |
| 22 | |
| 23 | config SND_OPL4_LIB_SEQ |
| 24 | def_tristate SND_SEQUENCER && SND_OPL4_LIB |
| 25 | select SND_SEQ_MIDI_EMUL |
| 26 | select SND_SEQ_MIDI_EVENT |
| 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | config SND_VX_LIB |
| 29 | tristate |
Takashi Iwai | 0d144de | 2012-11-22 16:14:55 +0100 | [diff] [blame] | 30 | select FW_LOADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | select SND_HWDEP |
| 32 | select SND_PCM |
| 33 | |
Randy Dunlap | 9056412 | 2005-11-29 14:48:41 +0100 | [diff] [blame] | 34 | config SND_AC97_CODEC |
| 35 | tristate |
| 36 | select SND_PCM |
Nicolas Pitre | e103650 | 2006-12-12 13:32:29 -0500 | [diff] [blame] | 37 | select AC97_BUS |
Daniel Jacobowitz | 87af38d | 2008-05-07 12:05:10 +0200 | [diff] [blame] | 38 | select SND_VMASTER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Takashi Iwai | 89fe511 | 2008-05-23 16:10:37 +0200 | [diff] [blame] | 40 | menuconfig SND_DRIVERS |
| 41 | bool "Generic sound devices" |
| 42 | default y |
| 43 | help |
| 44 | Support for generic sound devices. |
| 45 | |
| 46 | if SND_DRIVERS |
| 47 | |
| 48 | config SND_PCSP |
| 49 | tristate "PC-Speaker support (READ HELP!)" |
Yinghai Lu | 4272ebf | 2009-01-29 15:14:46 -0800 | [diff] [blame] | 50 | depends on PCSPKR_PLATFORM && X86 && HIGH_RES_TIMERS |
Takashi Iwai | 89fe511 | 2008-05-23 16:10:37 +0200 | [diff] [blame] | 51 | depends on INPUT |
Takashi Iwai | 89fe511 | 2008-05-23 16:10:37 +0200 | [diff] [blame] | 52 | select SND_PCM |
| 53 | help |
| 54 | If you don't have a sound card in your computer, you can include a |
| 55 | driver for the PC speaker which allows it to act like a primitive |
| 56 | sound card. |
| 57 | This driver also replaces the pcspkr driver for beeps. |
| 58 | |
| 59 | You can compile this as a module which will be called snd-pcsp. |
| 60 | |
| 61 | WARNING: if you already have a soundcard, enabling this |
| 62 | driver may lead to a problem. Namely, it may get loaded |
| 63 | before the other sound driver of yours, making the |
| 64 | pc-speaker a default sound device. Which is likely not |
| 65 | what you want. To make this driver play nicely with other |
Lucas De Marchi | 970e248 | 2012-03-30 13:37:16 -0700 | [diff] [blame] | 66 | sound driver, you can add this in a configuration file under |
| 67 | /etc/modprobe.d/ directory: |
Takashi Iwai | 89fe511 | 2008-05-23 16:10:37 +0200 | [diff] [blame] | 68 | options snd-pcsp index=2 |
| 69 | |
| 70 | You don't need this driver if you only want your pc-speaker to beep. |
| 71 | You don't need this driver if you have a tablet piezo beeper |
| 72 | in your PC instead of the real speaker. |
| 73 | |
| 74 | Say N if you have a sound card. |
| 75 | Say M if you don't. |
| 76 | Say Y only if you really know what you do. |
| 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | config SND_DUMMY |
| 79 | tristate "Dummy (/dev/null) soundcard" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | select SND_PCM |
| 81 | help |
| 82 | Say Y here to include the dummy driver. This driver does |
| 83 | nothing, but emulates various mixer controls and PCM devices. |
| 84 | |
| 85 | You don't need this unless you're testing the hardware support |
| 86 | of programs using the ALSA API. |
| 87 | |
| 88 | To compile this driver as a module, choose M here: the module |
| 89 | will be called snd-dummy. |
| 90 | |
Jaroslav Kysela | 597603d | 2010-08-09 14:21:11 +0200 | [diff] [blame] | 91 | config SND_ALOOP |
| 92 | tristate "Generic loopback driver (PCM)" |
| 93 | select SND_PCM |
| 94 | help |
| 95 | Say 'Y' or 'M' to include support for the PCM loopback device. |
| 96 | This module returns played samples back to the user space using |
| 97 | the standard ALSA PCM device. The devices are routed 0->1 and |
| 98 | 1->0, where first number is the playback PCM device and second |
| 99 | number is the capture device. Module creates two PCM devices and |
| 100 | configured number of substreams (see the pcm_substreams module |
| 101 | parameter). |
| 102 | |
Pavel Machek | 1362754 | 2013-04-23 11:45:27 +0200 | [diff] [blame] | 103 | The loopback device allows time sychronization with an external |
Jaroslav Kysela | 597603d | 2010-08-09 14:21:11 +0200 | [diff] [blame] | 104 | timing source using the time shift universal control (+-20% |
| 105 | of system time). |
| 106 | |
| 107 | To compile this driver as a module, choose M here: the module |
| 108 | will be called snd-aloop. |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | config SND_VIRMIDI |
| 111 | tristate "Virtual MIDI soundcard" |
| 112 | depends on SND_SEQUENCER |
| 113 | select SND_TIMER |
| 114 | select SND_RAWMIDI |
Takashi Iwai | 0181307 | 2017-06-09 14:40:18 +0200 | [diff] [blame] | 115 | select SND_SEQ_VIRMIDI |
| 116 | select SND_SEQ_MIDI_EVENT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | help |
| 118 | Say Y here to include the virtual MIDI driver. This driver |
| 119 | allows to connect applications using raw MIDI devices to |
| 120 | sequencer clients. |
| 121 | |
| 122 | If you don't know what MIDI is, say N here. |
| 123 | |
| 124 | To compile this driver as a module, choose M here: the module |
| 125 | will be called snd-virmidi. |
| 126 | |
| 127 | config SND_MTPAV |
| 128 | tristate "MOTU MidiTimePiece AV multiport MIDI" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | select SND_RAWMIDI |
| 130 | help |
| 131 | To use a MOTU MidiTimePiece AV multiport MIDI adapter |
| 132 | connected to the parallel port, say Y here and make sure that |
| 133 | the standard parallel port driver isn't used for the port. |
| 134 | |
| 135 | To compile this driver as a module, choose M here: the module |
| 136 | will be called snd-mtpav. |
| 137 | |
Matthias Koenig | 68ab801 | 2006-07-27 16:59:23 +0200 | [diff] [blame] | 138 | config SND_MTS64 |
| 139 | tristate "ESI Miditerminal 4140 driver" |
Takashi Iwai | 89fe511 | 2008-05-23 16:10:37 +0200 | [diff] [blame] | 140 | depends on PARPORT |
Matthias Koenig | 68ab801 | 2006-07-27 16:59:23 +0200 | [diff] [blame] | 141 | select SND_RAWMIDI |
| 142 | help |
| 143 | The ESI Miditerminal 4140 is a 4 In 4 Out MIDI Interface with |
| 144 | additional SMPTE Timecode capabilities for the parallel port. |
| 145 | |
| 146 | Say 'Y' to include support for this device. |
| 147 | |
| 148 | To compile this driver as a module, chose 'M' here: the module |
| 149 | will be called snd-mts64. |
| 150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | config SND_SERIAL_U16550 |
| 152 | tristate "UART16550 serial MIDI driver" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | select SND_RAWMIDI |
| 154 | help |
| 155 | To include support for MIDI serial port interfaces, say Y here |
| 156 | and read <file:Documentation/sound/alsa/serial-u16550.txt>. |
| 157 | This driver works with serial UARTs 16550 and better. |
| 158 | |
| 159 | This driver accesses the serial port hardware directly, so |
| 160 | make sure that the standard serial driver isn't used or |
| 161 | deactivated with setserial before loading this driver. |
| 162 | |
| 163 | To compile this driver as a module, choose M here: the module |
| 164 | will be called snd-serial-u16550. |
| 165 | |
| 166 | config SND_MPU401 |
| 167 | tristate "Generic MPU-401 UART driver" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | select SND_MPU401_UART |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | help |
| 170 | Say Y here to include support for MIDI ports compatible with |
| 171 | the Roland MPU-401 interface in UART mode. |
| 172 | |
| 173 | To compile this driver as a module, choose M here: the module |
| 174 | will be called snd-mpu401. |
| 175 | |
Matthias Koenig | 757e119 | 2007-01-25 13:15:05 +0100 | [diff] [blame] | 176 | config SND_PORTMAN2X4 |
| 177 | tristate "Portman 2x4 driver" |
Takashi Iwai | 89fe511 | 2008-05-23 16:10:37 +0200 | [diff] [blame] | 178 | depends on PARPORT |
Matthias Koenig | 757e119 | 2007-01-25 13:15:05 +0100 | [diff] [blame] | 179 | select SND_RAWMIDI |
| 180 | help |
| 181 | Say Y here to include support for Midiman Portman 2x4 parallel |
| 182 | port MIDI device. |
| 183 | |
| 184 | To compile this driver as a module, choose M here: the module |
| 185 | will be called snd-portman2x4. |
| 186 | |
Joachim Foerster | a9f00d8 | 2007-11-05 16:06:01 +0100 | [diff] [blame] | 187 | config SND_ML403_AC97CR |
| 188 | tristate "Xilinx ML403 AC97 Controller Reference" |
Takashi Iwai | 89fe511 | 2008-05-23 16:10:37 +0200 | [diff] [blame] | 189 | depends on XILINX_VIRTEX |
Joachim Foerster | a9f00d8 | 2007-11-05 16:06:01 +0100 | [diff] [blame] | 190 | select SND_AC97_CODEC |
| 191 | help |
| 192 | Say Y here to include support for the |
Michael Witten | 7a53cd1 | 2010-07-14 23:56:56 +0000 | [diff] [blame] | 193 | opb_ac97_controller_ref_v1_00_a ip core found in Xilinx's ML403 |
Joachim Foerster | a9f00d8 | 2007-11-05 16:06:01 +0100 | [diff] [blame] | 194 | reference design. |
| 195 | |
| 196 | To compile this driver as a module, choose M here: the module |
| 197 | will be called snd-ml403_ac97cr. |
| 198 | |
Takashi Iwai | 6938d6b | 2008-05-23 16:11:26 +0200 | [diff] [blame] | 199 | config SND_AC97_POWER_SAVE |
| 200 | bool "AC97 Power-Saving Mode" |
Takashi Iwai | 02834f1 | 2008-11-28 15:29:01 +0100 | [diff] [blame] | 201 | depends on SND_AC97_CODEC |
Takashi Iwai | 6938d6b | 2008-05-23 16:11:26 +0200 | [diff] [blame] | 202 | default n |
| 203 | help |
| 204 | Say Y here to enable the aggressive power-saving support of |
| 205 | AC97 codecs. In this mode, the power-mode is dynamically |
| 206 | controlled at each open/close. |
| 207 | |
Michael Witten | 1d8c110 | 2010-07-14 23:54:21 +0000 | [diff] [blame] | 208 | The mode is activated by passing 'power_save=X' to the |
| 209 | snd-ac97-codec driver module, where 'X' is the time-out |
| 210 | value, a nonnegative integer that specifies how many |
| 211 | seconds of idle time the driver must count before it may |
| 212 | put the AC97 into power-save mode; a value of 0 (zero) |
| 213 | disables the use of this power-save mode. |
| 214 | |
| 215 | After the snd-ac97-codec driver module has been loaded, |
| 216 | the 'power_save' parameter can be set via sysfs as follows: |
| 217 | |
| 218 | echo 10 > /sys/module/snd_ac97_codec/parameters/power_save |
| 219 | |
| 220 | In this case, the time-out is set to 10 seconds; setting |
| 221 | the time-out to 1 second (the minimum activation value) |
| 222 | isn't recommended because many applications try to reopen |
| 223 | the device frequently. A value of 10 seconds would be a |
| 224 | good choice for normal operations. |
| 225 | |
| 226 | See Documentation/sound/alsa/powersave.txt for more details. |
Takashi Iwai | 6938d6b | 2008-05-23 16:11:26 +0200 | [diff] [blame] | 227 | |
| 228 | config SND_AC97_POWER_SAVE_DEFAULT |
| 229 | int "Default time-out for AC97 power-save mode" |
| 230 | depends on SND_AC97_POWER_SAVE |
| 231 | default 0 |
| 232 | help |
| 233 | The default time-out value in seconds for AC97 automatic |
| 234 | power-save mode. 0 means to disable the power-save mode. |
| 235 | |
Michael Witten | 1d8c110 | 2010-07-14 23:54:21 +0000 | [diff] [blame] | 236 | See SND_AC97_POWER_SAVE for more details. |
| 237 | |
Takashi Iwai | 89fe511 | 2008-05-23 16:10:37 +0200 | [diff] [blame] | 238 | endif # SND_DRIVERS |