Blame view

sound/usb/Kconfig 2.32 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  # ALSA USB drivers
89fe51179   Takashi Iwai   sound: Convert to...
2
3
4
5
6
7
8
9
  menuconfig SND_USB
  	bool "USB sound devices"
  	depends on USB
  	default y
  	help
  	  Support for sound devices connected via the USB bus.
  
  if SND_USB && USB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
11
12
  
  config SND_USB_AUDIO
  	tristate "USB Audio/MIDI driver"
3714b5344   James Courtier-Dutton   [ALSA] Fix snd-us...
13
  	select SND_HWDEP
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
16
17
18
19
20
21
22
23
24
  	select SND_RAWMIDI
  	select SND_PCM
  	help
  	  Say Y here to include support for USB audio and USB MIDI
  	  devices.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called snd-usb-audio.
  
  config SND_USB_USX2Y
  	tristate "Tascam US-122, US-224 and US-428 USB driver"
89fe51179   Takashi Iwai   sound: Convert to...
25
  	depends on X86 || PPC || ALPHA
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
27
28
29
30
31
32
33
34
  	select SND_HWDEP
  	select SND_RAWMIDI
  	select SND_PCM
  	help
  	  Say Y here to include support for Tascam USB Audio/MIDI
  	  interfaces or controllers US-122, US-224 and US-428.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called snd-usb-usx2y.
523f1dce3   Daniel Mack   [ALSA] Add Native...
35
36
  config SND_USB_CAIAQ
  	tristate "Native Instruments USB audio devices"
ee6df2e18   Takashi Iwai   [ALSA] caiaq - Fi...
37
38
39
40
  	select SND_HWDEP
  	select SND_RAWMIDI
  	select SND_PCM
  	help
523f1dce3   Daniel Mack   [ALSA] Add Native...
41
42
43
44
  	   Say Y here to include support for caiaq USB audio interfaces,
  	   namely:
  
  	    * Native Instruments RigKontrol2
ad1e34b56   Daniel Mack   [ALSA] caiaq - su...
45
  	    * Native Instruments RigKontrol3
523f1dce3   Daniel Mack   [ALSA] Add Native...
46
  	    * Native Instruments Kore Controller
7829d0ecc   Daniel Mack   [ALSA] usb-caiaq ...
47
  	    * Native Instruments Kore Controller 2
523f1dce3   Daniel Mack   [ALSA] Add Native...
48
  	    * Native Instruments Audio Kontrol 1
b30c49477   Daniel Mack   ALSA: snd_usb_cai...
49
  	    * Native Instruments Audio 2 DJ
2165592b8   Daniel Mack   ALSA: snd-usb-cai...
50
  	    * Native Instruments Audio 4 DJ
523f1dce3   Daniel Mack   [ALSA] Add Native...
51
  	    * Native Instruments Audio 8 DJ
2165592b8   Daniel Mack   ALSA: snd-usb-cai...
52
53
  	    * Native Instruments Guitar Rig Session I/O
  	    * Native Instruments Guitar Rig mobile
523f1dce3   Daniel Mack   [ALSA] Add Native...
54
55
56
57
58
59
60
  
  	   To compile this driver as a module, choose M here: the module
  	   will be called snd-usb-caiaq.
  
  config SND_USB_CAIAQ_INPUT
  	bool "enable input device for controllers"
  	depends on SND_USB_CAIAQ
e5f73e2ae   Dmitry Torokhov   [ALSA] caiaq - in...
61
  	depends on INPUT=y || INPUT=SND_USB_CAIAQ
523f1dce3   Daniel Mack   [ALSA] Add Native...
62
63
64
65
66
  	help
  	  Say Y here to support input controllers like buttons, knobs,
  	  alpha dials and analog pedals on the following products:
  
  	   * Native Instruments RigKontrol2
ad1e34b56   Daniel Mack   [ALSA] caiaq - su...
67
  	   * Native Instruments RigKontrol3
8e3cd08ed   Daniel Mack   [ALSA] caiaq - ad...
68
  	   * Native Instruments Kore Controller
7829d0ecc   Daniel Mack   [ALSA] usb-caiaq ...
69
  	   * Native Instruments Kore Controller 2
523f1dce3   Daniel Mack   [ALSA] Add Native...
70
  	   * Native Instruments Audio Kontrol 1
030a07e44   Karsten Wiese   ALSA: Add USB US1...
71
72
73
  config SND_USB_US122L
  	tristate "Tascam US-122L USB driver"
  	depends on X86 && EXPERIMENTAL
dc0abf900   Randy Dunlap   ALSA: us122l - Ad...
74
  	select SND_HWDEP
030a07e44   Karsten Wiese   ALSA: Add USB US1...
75
76
77
78
79
80
81
  	select SND_RAWMIDI
  	help
  	  Say Y here to include support for Tascam US-122L USB Audio/MIDI
  	  interfaces.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called snd-usb-us122l.
89fe51179   Takashi Iwai   sound: Convert to...
82
  endif	# SND_USB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83