1# ALSA USB drivers 2 3menuconfig SND_USB 4 bool "USB sound devices" 5 depends on USB 6 default y 7 help 8 Support for sound devices connected via the USB bus. 9 10if SND_USB && USB 11 12config SND_USB_AUDIO 13 tristate "USB Audio/MIDI driver" 14 select SND_HWDEP 15 select SND_RAWMIDI 16 select SND_PCM 17 select BITREVERSE 18 select SND_USB_AUDIO_USE_MEDIA_CONTROLLER if MEDIA_CONTROLLER && (MEDIA_SUPPORT=y || MEDIA_SUPPORT=SND_USB_AUDIO) 19 help 20 Say Y here to include support for USB audio and USB MIDI 21 devices. 22 23 To compile this driver as a module, choose M here: the module 24 will be called snd-usb-audio. 25 26config SND_USB_AUDIO_USE_MEDIA_CONTROLLER 27 bool 28 29config SND_USB_UA101 30 tristate "Edirol UA-101/UA-1000 driver" 31 select SND_PCM 32 select SND_RAWMIDI 33 help 34 Say Y here to include support for the Edirol UA-101 and UA-1000 35 audio/MIDI interfaces. 36 37 To compile this driver as a module, choose M here: the module 38 will be called snd-ua101. 39 40config SND_USB_USX2Y 41 tristate "Tascam US-122, US-224 and US-428 USB driver" 42 depends on X86 || PPC || ALPHA 43 select SND_HWDEP 44 select SND_RAWMIDI 45 select SND_PCM 46 help 47 Say Y here to include support for Tascam USB Audio/MIDI 48 interfaces or controllers US-122, US-224 and US-428. 49 50 To compile this driver as a module, choose M here: the module 51 will be called snd-usb-usx2y. 52 53config SND_USB_CAIAQ 54 tristate "Native Instruments USB audio devices" 55 select SND_HWDEP 56 select SND_RAWMIDI 57 select SND_PCM 58 help 59 Say Y here to include support for caiaq USB audio interfaces, 60 namely: 61 62 * Native Instruments RigKontrol2 63 * Native Instruments RigKontrol3 64 * Native Instruments Kore Controller 65 * Native Instruments Kore Controller 2 66 * Native Instruments Audio Kontrol 1 67 * Native Instruments Audio 2 DJ 68 * Native Instruments Audio 4 DJ 69 * Native Instruments Audio 8 DJ 70 * Native Instruments Traktor Audio 2 71 * Native Instruments Guitar Rig Session I/O 72 * Native Instruments Guitar Rig mobile 73 * Native Instruments Traktor Kontrol X1 74 * Native Instruments Traktor Kontrol S4 75 * Native Instruments Maschine Controller 76 77 To compile this driver as a module, choose M here: the module 78 will be called snd-usb-caiaq. 79 80config SND_USB_CAIAQ_INPUT 81 bool "enable input device for controllers" 82 depends on SND_USB_CAIAQ 83 depends on INPUT=y || INPUT=SND_USB_CAIAQ 84 help 85 Say Y here to support input controllers like buttons, knobs, 86 alpha dials and analog pedals on the following products: 87 88 * Native Instruments RigKontrol2 89 * Native Instruments RigKontrol3 90 * Native Instruments Kore Controller 91 * Native Instruments Kore Controller 2 92 * Native Instruments Audio Kontrol 1 93 * Native Instruments Traktor Kontrol S4 94 * Native Instruments Maschine Controller 95 96config SND_USB_US122L 97 tristate "Tascam US-122L USB driver" 98 depends on X86 || COMPILE_TEST 99 select SND_HWDEP 100 select SND_RAWMIDI 101 help 102 Say Y here to include support for Tascam US-122L USB Audio/MIDI 103 interfaces. 104 105 To compile this driver as a module, choose M here: the module 106 will be called snd-usb-us122l. 107 108config SND_USB_6FIRE 109 tristate "TerraTec DMX 6Fire USB" 110 select FW_LOADER 111 select BITREVERSE 112 select SND_RAWMIDI 113 select SND_PCM 114 select SND_VMASTER 115 help 116 Say Y here to include support for TerraTec 6fire DMX USB interface. 117 118 You will need firmware files in order to be able to use the device 119 after it has been coldstarted. An install script for the firmware 120 and further help can be found at 121 http://sixfireusb.sourceforge.net 122 123config SND_USB_HIFACE 124 tristate "M2Tech hiFace USB-SPDIF driver" 125 select SND_PCM 126 help 127 Select this option to include support for M2Tech hiFace USB-SPDIF 128 interface. 129 130 This driver supports the original M2Tech hiFace and some other 131 compatible devices. The supported products are: 132 133 * M2Tech Young 134 * M2Tech hiFace 135 * M2Tech North Star 136 * M2Tech W4S Young 137 * M2Tech Corrson 138 * M2Tech AUDIA 139 * M2Tech SL Audio 140 * M2Tech Empirical 141 * M2Tech Rockna 142 * M2Tech Pathos 143 * M2Tech Metronome 144 * M2Tech CAD 145 * M2Tech Audio Esclusive 146 * M2Tech Rotel 147 * M2Tech Eeaudio 148 * The Chord Company CHORD 149 * AVA Group A/S Vitus 150 151 To compile this driver as a module, choose M here: the module 152 will be called snd-usb-hiface. 153 154config SND_BCD2000 155 tristate "Behringer BCD2000 MIDI driver" 156 select SND_RAWMIDI 157 help 158 Say Y here to include MIDI support for the Behringer BCD2000 DJ 159 controller. 160 161 Audio support is still work-in-progress at 162 https://github.com/anyc/snd-usb-bcd2000 163 164 To compile this driver as a module, choose M here: the module 165 will be called snd-bcd2000. 166 167source "sound/usb/line6/Kconfig" 168 169endif # SND_USB 170 171