blob: e516d6adbb224b22309bbc9266216077ab47207f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Mixer control part
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
11 *
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 */
28
29#include <sound/driver.h>
30#include <linux/bitops.h>
31#include <linux/init.h>
32#include <linux/list.h>
33#include <linux/slab.h>
34#include <linux/string.h>
35#include <linux/usb.h>
36#include <sound/core.h>
37#include <sound/control.h>
Clemens Ladischb259b102005-04-29 16:29:28 +020038#include <sound/hwdep.h>
Clemens Ladischaafad562005-05-10 14:47:38 +020039#include <sound/info.h>
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +020040#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "usbaudio.h"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 */
46
47/* ignore error from controls - for debugging */
48/* #define IGNORE_CTL_ERROR */
49
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +020050/*
51 * Sound Blaster remote control configuration
52 *
53 * format of remote control data:
54 * Extigy: xx 00
55 * Audigy 2 NX: 06 80 xx 00 00 00
56 * Live! 24-bit: 06 80 xx yy 22 83
57 */
58static const struct rc_config {
59 u32 usb_id;
60 u8 offset;
61 u8 length;
62 u8 packet_length;
63 u8 mute_mixer_id;
64 u32 mute_code;
65} rc_configs[] = {
66 { USB_ID(0x041e, 0x3000), 0, 1, 2, 18, 0x0013 }, /* Extigy */
67 { USB_ID(0x041e, 0x3020), 2, 1, 6, 18, 0x0013 }, /* Audigy 2 NX */
68 { USB_ID(0x041e, 0x3040), 2, 2, 6, 2, 0x6e91 }, /* Live! 24-bit */
69};
70
Clemens Ladisch84957a82005-04-29 16:23:13 +020071struct usb_mixer_interface {
Takashi Iwai86e07d32005-11-17 15:08:02 +010072 struct snd_usb_audio *chip;
Clemens Ladisch84957a82005-04-29 16:23:13 +020073 unsigned int ctrlif;
74 struct list_head list;
75 unsigned int ignore_ctl_error;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +020076 struct urb *urb;
Takashi Iwai86e07d32005-11-17 15:08:02 +010077 struct usb_mixer_elem_info **id_elems; /* array[256], indexed by unit id */
Clemens Ladischb259b102005-04-29 16:29:28 +020078
79 /* Sound Blaster remote control stuff */
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +020080 const struct rc_config *rc_cfg;
Clemens Ladischb259b102005-04-29 16:29:28 +020081 unsigned long rc_hwdep_open;
82 u32 rc_code;
83 wait_queue_head_t rc_waitq;
84 struct urb *rc_urb;
85 struct usb_ctrlrequest *rc_setup_packet;
86 u8 rc_buffer[6];
Clemens Ladisch93446ed2005-05-03 08:02:40 +020087
88 u8 audigy2nx_leds[3];
Clemens Ladisch84957a82005-04-29 16:23:13 +020089};
90
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092struct usb_audio_term {
93 int id;
94 int type;
95 int channels;
96 unsigned int chconfig;
97 int name;
98};
99
100struct usbmix_name_map;
101
Takashi Iwai86e07d32005-11-17 15:08:02 +0100102struct mixer_build {
103 struct snd_usb_audio *chip;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200104 struct usb_mixer_interface *mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 unsigned char *buffer;
106 unsigned int buflen;
Clemens Ladisch707e6072005-04-29 09:56:17 +0200107 DECLARE_BITMAP(unitbitmap, 256);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100108 struct usb_audio_term oterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 const struct usbmix_name_map *map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200110 const struct usbmix_selector_map *selector_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
113struct usb_mixer_elem_info {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200114 struct usb_mixer_interface *mixer;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100115 struct usb_mixer_elem_info *next_id_elem; /* list of controls with same id */
116 struct snd_ctl_elem_id *elem_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 unsigned int id;
118 unsigned int control; /* CS or ICN (high byte) */
119 unsigned int cmask; /* channel mask bitmap: 0 = master */
120 int channels;
121 int val_type;
122 int min, max, res;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200123 u8 initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
126
127enum {
128 USB_FEATURE_NONE = 0,
129 USB_FEATURE_MUTE = 1,
130 USB_FEATURE_VOLUME,
131 USB_FEATURE_BASS,
132 USB_FEATURE_MID,
133 USB_FEATURE_TREBLE,
134 USB_FEATURE_GEQ,
135 USB_FEATURE_AGC,
136 USB_FEATURE_DELAY,
137 USB_FEATURE_BASSBOOST,
138 USB_FEATURE_LOUDNESS
139};
140
141enum {
142 USB_MIXER_BOOLEAN,
143 USB_MIXER_INV_BOOLEAN,
144 USB_MIXER_S8,
145 USB_MIXER_U8,
146 USB_MIXER_S16,
147 USB_MIXER_U16,
148};
149
150enum {
151 USB_PROC_UPDOWN = 1,
152 USB_PROC_UPDOWN_SWITCH = 1,
153 USB_PROC_UPDOWN_MODE_SEL = 2,
154
155 USB_PROC_PROLOGIC = 2,
156 USB_PROC_PROLOGIC_SWITCH = 1,
157 USB_PROC_PROLOGIC_MODE_SEL = 2,
158
159 USB_PROC_3DENH = 3,
160 USB_PROC_3DENH_SWITCH = 1,
161 USB_PROC_3DENH_SPACE = 2,
162
163 USB_PROC_REVERB = 4,
164 USB_PROC_REVERB_SWITCH = 1,
165 USB_PROC_REVERB_LEVEL = 2,
166 USB_PROC_REVERB_TIME = 3,
167 USB_PROC_REVERB_DELAY = 4,
168
169 USB_PROC_CHORUS = 5,
170 USB_PROC_CHORUS_SWITCH = 1,
171 USB_PROC_CHORUS_LEVEL = 2,
172 USB_PROC_CHORUS_RATE = 3,
173 USB_PROC_CHORUS_DEPTH = 4,
174
175 USB_PROC_DCR = 6,
176 USB_PROC_DCR_SWITCH = 1,
177 USB_PROC_DCR_RATIO = 2,
178 USB_PROC_DCR_MAX_AMP = 3,
179 USB_PROC_DCR_THRESHOLD = 4,
180 USB_PROC_DCR_ATTACK = 5,
181 USB_PROC_DCR_RELEASE = 6,
182};
183
184#define MAX_CHANNELS 10 /* max logical channels */
185
186
187/*
188 * manual mapping of mixer names
189 * if the mixer topology is too complicated and the parsed names are
190 * ambiguous, add the entries in usbmixer_maps.c.
191 */
192#include "usbmixer_maps.c"
193
194/* get the mapped name if the unit matches */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100195static int check_mapped_name(struct mixer_build *state, int unitid, int control, char *buf, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 const struct usbmix_name_map *p;
198
199 if (! state->map)
200 return 0;
201
202 for (p = state->map; p->id; p++) {
203 if (p->id == unitid && p->name &&
204 (! control || ! p->control || control == p->control)) {
205 buflen--;
206 return strlcpy(buf, p->name, buflen);
207 }
208 }
209 return 0;
210}
211
212/* check whether the control should be ignored */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100213static int check_ignored_ctl(struct mixer_build *state, int unitid, int control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 const struct usbmix_name_map *p;
216
217 if (! state->map)
218 return 0;
219 for (p = state->map; p->id; p++) {
220 if (p->id == unitid && ! p->name &&
221 (! control || ! p->control || control == p->control)) {
222 // printk("ignored control %d:%d\n", unitid, control);
223 return 1;
224 }
225 }
226 return 0;
227}
228
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200229/* get the mapped selector source name */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100230static int check_mapped_selector_name(struct mixer_build *state, int unitid,
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200231 int index, char *buf, int buflen)
232{
233 const struct usbmix_selector_map *p;
234
235 if (! state->selector_map)
236 return 0;
237 for (p = state->selector_map; p->id; p++) {
238 if (p->id == unitid && index < p->count)
239 return strlcpy(buf, p->names[index], buflen);
240 }
241 return 0;
242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*
245 * find an audio control unit with the given unit id
246 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100247static void *find_audio_control_unit(struct mixer_build *state, unsigned char unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 unsigned char *p;
250
251 p = NULL;
252 while ((p = snd_usb_find_desc(state->buffer, state->buflen, p,
253 USB_DT_CS_INTERFACE)) != NULL) {
254 if (p[0] >= 4 && p[2] >= INPUT_TERMINAL && p[2] <= EXTENSION_UNIT && p[3] == unit)
255 return p;
256 }
257 return NULL;
258}
259
260
261/*
262 * copy a string with the given id
263 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100264static int snd_usb_copy_string_desc(struct mixer_build *state, int index, char *buf, int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
267 buf[len] = 0;
268 return len;
269}
270
271/*
272 * convert from the byte/word on usb descriptor to the zero-based integer
273 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100274static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 switch (cval->val_type) {
277 case USB_MIXER_BOOLEAN:
278 return !!val;
279 case USB_MIXER_INV_BOOLEAN:
280 return !val;
281 case USB_MIXER_U8:
282 val &= 0xff;
283 break;
284 case USB_MIXER_S8:
285 val &= 0xff;
286 if (val >= 0x80)
287 val -= 0x100;
288 break;
289 case USB_MIXER_U16:
290 val &= 0xffff;
291 break;
292 case USB_MIXER_S16:
293 val &= 0xffff;
294 if (val >= 0x8000)
295 val -= 0x10000;
296 break;
297 }
298 return val;
299}
300
301/*
302 * convert from the zero-based int to the byte/word for usb descriptor
303 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100304static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 switch (cval->val_type) {
307 case USB_MIXER_BOOLEAN:
308 return !!val;
309 case USB_MIXER_INV_BOOLEAN:
310 return !val;
311 case USB_MIXER_S8:
312 case USB_MIXER_U8:
313 return val & 0xff;
314 case USB_MIXER_S16:
315 case USB_MIXER_U16:
316 return val & 0xffff;
317 }
318 return 0; /* not reached */
319}
320
Takashi Iwai86e07d32005-11-17 15:08:02 +0100321static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 if (! cval->res)
324 cval->res = 1;
325 if (val < cval->min)
326 return 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200327 else if (val >= cval->max)
328 return (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 else
330 return (val - cval->min) / cval->res;
331}
332
Takashi Iwai86e07d32005-11-17 15:08:02 +0100333static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 if (val < 0)
336 return cval->min;
337 if (! cval->res)
338 cval->res = 1;
339 val *= cval->res;
340 val += cval->min;
341 if (val > cval->max)
342 return cval->max;
343 return val;
344}
345
346
347/*
348 * retrieve a mixer value
349 */
350
Takashi Iwai86e07d32005-11-17 15:08:02 +0100351static int get_ctl_value(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 unsigned char buf[2];
354 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
355 int timeout = 10;
356
357 while (timeout-- > 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200358 if (snd_usb_ctl_msg(cval->mixer->chip->dev,
359 usb_rcvctrlpipe(cval->mixer->chip->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 request,
361 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Clemens Ladisch84957a82005-04-29 16:23:13 +0200362 validx, cval->mixer->ctrlif | (cval->id << 8),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 buf, val_len, 100) >= 0) {
364 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
365 return 0;
366 }
367 }
Clemens Ladisch84957a82005-04-29 16:23:13 +0200368 snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
369 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return -EINVAL;
371}
372
Takashi Iwai86e07d32005-11-17 15:08:02 +0100373static int get_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 return get_ctl_value(cval, GET_CUR, validx, value);
376}
377
378/* channel = 0: master, 1 = first channel */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100379static inline int get_cur_mix_value(struct usb_mixer_elem_info *cval, int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 return get_ctl_value(cval, GET_CUR, (cval->control << 8) | channel, value);
382}
383
384/*
385 * set a mixer value
386 */
387
Takashi Iwai86e07d32005-11-17 15:08:02 +0100388static int set_ctl_value(struct usb_mixer_elem_info *cval, int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 unsigned char buf[2];
391 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
392 int timeout = 10;
393
394 value_set = convert_bytes_value(cval, value_set);
395 buf[0] = value_set & 0xff;
396 buf[1] = (value_set >> 8) & 0xff;
397 while (timeout -- > 0)
Clemens Ladisch84957a82005-04-29 16:23:13 +0200398 if (snd_usb_ctl_msg(cval->mixer->chip->dev,
399 usb_sndctrlpipe(cval->mixer->chip->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 request,
401 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
Clemens Ladisch84957a82005-04-29 16:23:13 +0200402 validx, cval->mixer->ctrlif | (cval->id << 8),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 buf, val_len, 100) >= 0)
404 return 0;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200405 snd_printdd(KERN_ERR "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
406 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type, buf[0], buf[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return -EINVAL;
408}
409
Takashi Iwai86e07d32005-11-17 15:08:02 +0100410static int set_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 return set_ctl_value(cval, SET_CUR, validx, value);
413}
414
Takashi Iwai86e07d32005-11-17 15:08:02 +0100415static inline int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 return set_ctl_value(cval, SET_CUR, (cval->control << 8) | channel, value);
418}
419
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200420/*
421 * TLV callback for mixer volume controls
422 */
423static int mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
424 unsigned int size, unsigned int __user *_tlv)
425{
426 struct usb_mixer_elem_info *cval = kcontrol->private_data;
427 DECLARE_TLV_DB_SCALE(scale, 0, 0, 0);
428
429 if (size < sizeof(scale))
430 return -ENOMEM;
431 /* USB descriptions contain the dB scale in 1/256 dB unit
432 * while ALSA TLV contains in 1/100 dB unit
433 */
434 scale[2] = (convert_signed_value(cval, cval->min) * 100) / 256;
435 scale[3] = (convert_signed_value(cval, cval->res) * 100) / 256;
436 if (copy_to_user(_tlv, scale, sizeof(scale)))
437 return -EFAULT;
438 return 0;
439}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441/*
442 * parser routines begin here...
443 */
444
Takashi Iwai86e07d32005-11-17 15:08:02 +0100445static int parse_audio_unit(struct mixer_build *state, int unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447
448/*
449 * check if the input/output channel routing is enabled on the given bitmap.
450 * used for mixer unit parser
451 */
452static int check_matrix_bitmap(unsigned char *bmap, int ich, int och, int num_outs)
453{
454 int idx = ich * num_outs + och;
455 return bmap[idx >> 3] & (0x80 >> (idx & 7));
456}
457
458
459/*
460 * add an alsa control element
461 * search and increment the index until an empty slot is found.
462 *
463 * if failed, give up and free the control instance.
464 */
465
Takashi Iwai86e07d32005-11-17 15:08:02 +0100466static int add_control_to_empty(struct mixer_build *state, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100468 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200470
471 while (snd_ctl_find_id(state->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 kctl->id.index++;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200473 if ((err = snd_ctl_add(state->chip->card, kctl)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 snd_printd(KERN_ERR "cannot add control (err = %d)\n", err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200475 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200477 cval->elem_id = &kctl->id;
478 cval->next_id_elem = state->mixer->id_elems[cval->id];
479 state->mixer->id_elems[cval->id] = cval;
480 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
483
484/*
485 * get a terminal name string
486 */
487
488static struct iterm_name_combo {
489 int type;
490 char *name;
491} iterm_names[] = {
492 { 0x0300, "Output" },
493 { 0x0301, "Speaker" },
494 { 0x0302, "Headphone" },
495 { 0x0303, "HMD Audio" },
496 { 0x0304, "Desktop Speaker" },
497 { 0x0305, "Room Speaker" },
498 { 0x0306, "Com Speaker" },
499 { 0x0307, "LFE" },
500 { 0x0600, "External In" },
501 { 0x0601, "Analog In" },
502 { 0x0602, "Digital In" },
503 { 0x0603, "Line" },
504 { 0x0604, "Legacy In" },
505 { 0x0605, "IEC958 In" },
506 { 0x0606, "1394 DA Stream" },
507 { 0x0607, "1394 DV Stream" },
508 { 0x0700, "Embedded" },
509 { 0x0701, "Noise Source" },
510 { 0x0702, "Equalization Noise" },
511 { 0x0703, "CD" },
512 { 0x0704, "DAT" },
513 { 0x0705, "DCC" },
514 { 0x0706, "MiniDisk" },
515 { 0x0707, "Analog Tape" },
516 { 0x0708, "Phonograph" },
517 { 0x0709, "VCR Audio" },
518 { 0x070a, "Video Disk Audio" },
519 { 0x070b, "DVD Audio" },
520 { 0x070c, "TV Tuner Audio" },
521 { 0x070d, "Satellite Rec Audio" },
522 { 0x070e, "Cable Tuner Audio" },
523 { 0x070f, "DSS Audio" },
524 { 0x0710, "Radio Receiver" },
525 { 0x0711, "Radio Transmitter" },
526 { 0x0712, "Multi-Track Recorder" },
527 { 0x0713, "Synthesizer" },
528 { 0 },
529};
530
Takashi Iwai86e07d32005-11-17 15:08:02 +0100531static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 unsigned char *name, int maxlen, int term_only)
533{
534 struct iterm_name_combo *names;
535
536 if (iterm->name)
537 return snd_usb_copy_string_desc(state, iterm->name, name, maxlen);
538
539 /* virtual type - not a real terminal */
540 if (iterm->type >> 16) {
541 if (term_only)
542 return 0;
543 switch (iterm->type >> 16) {
544 case SELECTOR_UNIT:
545 strcpy(name, "Selector"); return 8;
546 case PROCESSING_UNIT:
547 strcpy(name, "Process Unit"); return 12;
548 case EXTENSION_UNIT:
549 strcpy(name, "Ext Unit"); return 8;
550 case MIXER_UNIT:
551 strcpy(name, "Mixer"); return 5;
552 default:
553 return sprintf(name, "Unit %d", iterm->id);
554 }
555 }
556
557 switch (iterm->type & 0xff00) {
558 case 0x0100:
559 strcpy(name, "PCM"); return 3;
560 case 0x0200:
561 strcpy(name, "Mic"); return 3;
562 case 0x0400:
563 strcpy(name, "Headset"); return 7;
564 case 0x0500:
565 strcpy(name, "Phone"); return 5;
566 }
567
568 for (names = iterm_names; names->type; names++)
569 if (names->type == iterm->type) {
570 strcpy(name, names->name);
571 return strlen(names->name);
572 }
573 return 0;
574}
575
576
577/*
578 * parse the source unit recursively until it reaches to a terminal
579 * or a branched unit.
580 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100581static int check_input_term(struct mixer_build *state, int id, struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
583 unsigned char *p1;
584
585 memset(term, 0, sizeof(*term));
586 while ((p1 = find_audio_control_unit(state, id)) != NULL) {
587 term->id = id;
588 switch (p1[2]) {
589 case INPUT_TERMINAL:
590 term->type = combine_word(p1 + 4);
591 term->channels = p1[7];
592 term->chconfig = combine_word(p1 + 8);
593 term->name = p1[11];
594 return 0;
595 case FEATURE_UNIT:
596 id = p1[4];
597 break; /* continue to parse */
598 case MIXER_UNIT:
599 term->type = p1[2] << 16; /* virtual type */
600 term->channels = p1[5 + p1[4]];
601 term->chconfig = combine_word(p1 + 6 + p1[4]);
602 term->name = p1[p1[0] - 1];
603 return 0;
604 case SELECTOR_UNIT:
605 /* call recursively to retrieve the channel info */
606 if (check_input_term(state, p1[5], term) < 0)
607 return -ENODEV;
608 term->type = p1[2] << 16; /* virtual type */
609 term->id = id;
610 term->name = p1[9 + p1[0] - 1];
611 return 0;
612 case PROCESSING_UNIT:
613 case EXTENSION_UNIT:
614 if (p1[6] == 1) {
615 id = p1[7];
616 break; /* continue to parse */
617 }
618 term->type = p1[2] << 16; /* virtual type */
619 term->channels = p1[7 + p1[6]];
620 term->chconfig = combine_word(p1 + 8 + p1[6]);
621 term->name = p1[12 + p1[6] + p1[11 + p1[6]]];
622 return 0;
623 default:
624 return -ENODEV;
625 }
626 }
627 return -ENODEV;
628}
629
630
631/*
632 * Feature Unit
633 */
634
635/* feature unit control information */
636struct usb_feature_control_info {
637 const char *name;
638 unsigned int type; /* control type (mute, volume, etc.) */
639};
640
641static struct usb_feature_control_info audio_feature_info[] = {
642 { "Mute", USB_MIXER_INV_BOOLEAN },
643 { "Volume", USB_MIXER_S16 },
644 { "Tone Control - Bass", USB_MIXER_S8 },
645 { "Tone Control - Mid", USB_MIXER_S8 },
646 { "Tone Control - Treble", USB_MIXER_S8 },
647 { "Graphic Equalizer", USB_MIXER_S8 }, /* FIXME: not implemeted yet */
648 { "Auto Gain Control", USB_MIXER_BOOLEAN },
649 { "Delay Control", USB_MIXER_U16 },
650 { "Bass Boost", USB_MIXER_BOOLEAN },
651 { "Loudness", USB_MIXER_BOOLEAN },
652};
653
654
655/* private_free callback */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100656static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Jesper Juhl4d572772005-05-30 17:30:32 +0200658 kfree(kctl->private_data);
659 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
662
663/*
664 * interface to ALSA control for feature/mixer units
665 */
666
667/*
668 * retrieve the minimum and maximum values for the specified control
669 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100670static int get_min_max(struct usb_mixer_elem_info *cval, int default_min)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 /* for failsafe */
673 cval->min = default_min;
674 cval->max = cval->min + 1;
675 cval->res = 1;
676
677 if (cval->val_type == USB_MIXER_BOOLEAN ||
678 cval->val_type == USB_MIXER_INV_BOOLEAN) {
679 cval->initialized = 1;
680 } else {
681 int minchn = 0;
682 if (cval->cmask) {
683 int i;
684 for (i = 0; i < MAX_CHANNELS; i++)
685 if (cval->cmask & (1 << i)) {
686 minchn = i + 1;
687 break;
688 }
689 }
690 if (get_ctl_value(cval, GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
691 get_ctl_value(cval, GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200692 snd_printd(KERN_ERR "%d:%d: cannot get min/max values for control %d (id %d)\n",
693 cval->id, cval->mixer->ctrlif, cval->control, cval->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return -EINVAL;
695 }
696 if (get_ctl_value(cval, GET_RES, (cval->control << 8) | minchn, &cval->res) < 0) {
697 cval->res = 1;
698 } else {
699 int last_valid_res = cval->res;
700
701 while (cval->res > 1) {
702 if (set_ctl_value(cval, SET_RES, (cval->control << 8) | minchn, cval->res / 2) < 0)
703 break;
704 cval->res /= 2;
705 }
706 if (get_ctl_value(cval, GET_RES, (cval->control << 8) | minchn, &cval->res) < 0)
707 cval->res = last_valid_res;
708 }
709 if (cval->res == 0)
710 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +0200711
712 /* Additional checks for the proper resolution
713 *
714 * Some devices report smaller resolutions than actually
715 * reacting. They don't return errors but simply clip
716 * to the lower aligned value.
717 */
718 if (cval->min + cval->res < cval->max) {
719 int last_valid_res = cval->res;
720 int saved, test, check;
721 get_cur_mix_value(cval, minchn, &saved);
722 for (;;) {
723 test = saved;
724 if (test < cval->max)
725 test += cval->res;
726 else
727 test -= cval->res;
728 if (test < cval->min || test > cval->max ||
729 set_cur_mix_value(cval, minchn, test) ||
730 get_cur_mix_value(cval, minchn, &check)) {
731 cval->res = last_valid_res;
732 break;
733 }
734 if (test == check)
735 break;
736 cval->res *= 2;
737 }
738 set_cur_mix_value(cval, minchn, saved);
739 }
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 cval->initialized = 1;
742 }
743 return 0;
744}
745
746
747/* get a feature/mixer unit info */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100748static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100750 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 if (cval->val_type == USB_MIXER_BOOLEAN ||
753 cval->val_type == USB_MIXER_INV_BOOLEAN)
754 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
755 else
756 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
757 uinfo->count = cval->channels;
758 if (cval->val_type == USB_MIXER_BOOLEAN ||
759 cval->val_type == USB_MIXER_INV_BOOLEAN) {
760 uinfo->value.integer.min = 0;
761 uinfo->value.integer.max = 1;
762 } else {
763 if (! cval->initialized)
764 get_min_max(cval, 0);
765 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200766 uinfo->value.integer.max =
767 (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769 return 0;
770}
771
772/* get the current value from feature/mixer unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100773static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100775 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 int c, cnt, val, err;
777
778 if (cval->cmask) {
779 cnt = 0;
780 for (c = 0; c < MAX_CHANNELS; c++) {
781 if (cval->cmask & (1 << c)) {
782 err = get_cur_mix_value(cval, c + 1, &val);
783 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200784 if (cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 ucontrol->value.integer.value[0] = cval->min;
786 return 0;
787 }
788 snd_printd(KERN_ERR "cannot get current value for control %d ch %d: err = %d\n", cval->control, c + 1, err);
789 return err;
790 }
791 val = get_relative_value(cval, val);
792 ucontrol->value.integer.value[cnt] = val;
793 cnt++;
794 }
795 }
796 } else {
797 /* master channel */
798 err = get_cur_mix_value(cval, 0, &val);
799 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200800 if (cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 ucontrol->value.integer.value[0] = cval->min;
802 return 0;
803 }
804 snd_printd(KERN_ERR "cannot get current value for control %d master ch: err = %d\n", cval->control, err);
805 return err;
806 }
807 val = get_relative_value(cval, val);
808 ucontrol->value.integer.value[0] = val;
809 }
810 return 0;
811}
812
813/* put the current value to feature/mixer unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100814static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100816 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int c, cnt, val, oval, err;
818 int changed = 0;
819
820 if (cval->cmask) {
821 cnt = 0;
822 for (c = 0; c < MAX_CHANNELS; c++) {
823 if (cval->cmask & (1 << c)) {
824 err = get_cur_mix_value(cval, c + 1, &oval);
825 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200826 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return 0;
828 return err;
829 }
830 val = ucontrol->value.integer.value[cnt];
831 val = get_abs_value(cval, val);
832 if (oval != val) {
833 set_cur_mix_value(cval, c + 1, val);
834 changed = 1;
835 }
836 get_cur_mix_value(cval, c + 1, &val);
837 cnt++;
838 }
839 }
840 } else {
841 /* master channel */
842 err = get_cur_mix_value(cval, 0, &oval);
Clemens Ladisch84957a82005-04-29 16:23:13 +0200843 if (err < 0 && cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return 0;
845 if (err < 0)
846 return err;
847 val = ucontrol->value.integer.value[0];
848 val = get_abs_value(cval, val);
849 if (val != oval) {
850 set_cur_mix_value(cval, 0, val);
851 changed = 1;
852 }
853 }
854 return changed;
855}
856
Takashi Iwai86e07d32005-11-17 15:08:02 +0100857static struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
859 .name = "", /* will be filled later manually */
860 .info = mixer_ctl_feature_info,
861 .get = mixer_ctl_feature_get,
862 .put = mixer_ctl_feature_put,
863};
864
865
866/*
867 * build a feature control
868 */
869
Takashi Iwai86e07d32005-11-17 15:08:02 +0100870static void build_feature_ctl(struct mixer_build *state, unsigned char *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 unsigned int ctl_mask, int control,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100872 struct usb_audio_term *iterm, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
874 unsigned int len = 0;
875 int mapped_name = 0;
876 int nameid = desc[desc[0] - 1];
Takashi Iwai86e07d32005-11-17 15:08:02 +0100877 struct snd_kcontrol *kctl;
878 struct usb_mixer_elem_info *cval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 control++; /* change from zero-based to 1-based value */
881
882 if (control == USB_FEATURE_GEQ) {
883 /* FIXME: not supported yet */
884 return;
885 }
886
887 if (check_ignored_ctl(state, unitid, control))
888 return;
889
Takashi Iwai561b2202005-09-09 14:22:34 +0200890 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (! cval) {
892 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
893 return;
894 }
Clemens Ladisch84957a82005-04-29 16:23:13 +0200895 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 cval->id = unitid;
897 cval->control = control;
898 cval->cmask = ctl_mask;
899 cval->val_type = audio_feature_info[control-1].type;
900 if (ctl_mask == 0)
901 cval->channels = 1; /* master channel */
902 else {
903 int i, c = 0;
904 for (i = 0; i < 16; i++)
905 if (ctl_mask & (1 << i))
906 c++;
907 cval->channels = c;
908 }
909
910 /* get min/max values */
911 get_min_max(cval, 0);
912
913 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
914 if (! kctl) {
915 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
916 kfree(cval);
917 return;
918 }
919 kctl->private_free = usb_mixer_elem_free;
920
921 len = check_mapped_name(state, unitid, control, kctl->id.name, sizeof(kctl->id.name));
922 mapped_name = len != 0;
923 if (! len && nameid)
924 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
925
926 switch (control) {
927 case USB_FEATURE_MUTE:
928 case USB_FEATURE_VOLUME:
929 /* determine the control name. the rule is:
930 * - if a name id is given in descriptor, use it.
931 * - if the connected input can be determined, then use the name
932 * of terminal type.
933 * - if the connected output can be determined, use it.
934 * - otherwise, anonymous name.
935 */
936 if (! len) {
937 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 1);
938 if (! len)
939 len = get_term_name(state, &state->oterm, kctl->id.name, sizeof(kctl->id.name), 1);
940 if (! len)
941 len = snprintf(kctl->id.name, sizeof(kctl->id.name),
942 "Feature %d", unitid);
943 }
944 /* determine the stream direction:
945 * if the connected output is USB stream, then it's likely a
946 * capture stream. otherwise it should be playback (hopefully :)
947 */
948 if (! mapped_name && ! (state->oterm.type >> 16)) {
949 if ((state->oterm.type & 0xff00) == 0x0100) {
950 len = strlcat(kctl->id.name, " Capture", sizeof(kctl->id.name));
951 } else {
952 len = strlcat(kctl->id.name + len, " Playback", sizeof(kctl->id.name));
953 }
954 }
955 strlcat(kctl->id.name + len, control == USB_FEATURE_MUTE ? " Switch" : " Volume",
956 sizeof(kctl->id.name));
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200957 if (control == USB_FEATURE_VOLUME) {
958 kctl->tlv.c = mixer_vol_tlv;
959 kctl->vd[0].access |=
960 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
961 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 break;
964
965 default:
966 if (! len)
967 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
968 sizeof(kctl->id.name));
969 break;
970 }
971
972 /* quirk for UDA1321/N101 */
973 /* note that detection between firmware 2.1.1.7 (N101) and later 2.1.1.21 */
974 /* is not very clear from datasheets */
975 /* I hope that the min value is -15360 for newer firmware --jk */
Clemens Ladisch27d10f52005-05-02 08:51:26 +0200976 switch (state->chip->usb_id) {
977 case USB_ID(0x0471, 0x0101):
978 case USB_ID(0x0471, 0x0104):
979 case USB_ID(0x0471, 0x0105):
980 case USB_ID(0x0672, 0x1041):
981 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
982 cval->min == -15616) {
Takashi Iwaid3d579f2005-10-21 16:20:11 +0200983 snd_printk(KERN_INFO "using volume control quirk for the UDA1321/N101 chip\n");
Clemens Ladisch27d10f52005-05-02 08:51:26 +0200984 cval->max = -256;
985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987
988 snd_printdd(KERN_INFO "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
989 cval->id, kctl->id.name, cval->channels, cval->min, cval->max, cval->res);
Clemens Ladisch84957a82005-04-29 16:23:13 +0200990 add_control_to_empty(state, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
993
994
995/*
996 * parse a feature unit
997 *
998 * most of controlls are defined here.
999 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001000static int parse_audio_feature_unit(struct mixer_build *state, int unitid, unsigned char *ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
1002 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001003 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 unsigned int master_bits, first_ch_bits;
1005 int err, csize;
1006
1007 if (ftr[0] < 7 || ! (csize = ftr[5]) || ftr[0] < 7 + csize) {
1008 snd_printk(KERN_ERR "usbaudio: unit %u: invalid FEATURE_UNIT descriptor\n", unitid);
1009 return -EINVAL;
1010 }
1011
1012 /* parse the source unit */
1013 if ((err = parse_audio_unit(state, ftr[4])) < 0)
1014 return err;
1015
1016 /* determine the input source type and name */
1017 if (check_input_term(state, ftr[4], &iterm) < 0)
1018 return -EINVAL;
1019
1020 channels = (ftr[0] - 7) / csize - 1;
1021
1022 master_bits = snd_usb_combine_bytes(ftr + 6, csize);
1023 if (channels > 0)
1024 first_ch_bits = snd_usb_combine_bytes(ftr + 6 + csize, csize);
1025 else
1026 first_ch_bits = 0;
1027 /* check all control types */
1028 for (i = 0; i < 10; i++) {
1029 unsigned int ch_bits = 0;
1030 for (j = 0; j < channels; j++) {
1031 unsigned int mask = snd_usb_combine_bytes(ftr + 6 + csize * (j+1), csize);
1032 if (mask & (1 << i))
1033 ch_bits |= (1 << j);
1034 }
1035 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
1036 build_feature_ctl(state, ftr, ch_bits, i, &iterm, unitid);
1037 if (master_bits & (1 << i))
1038 build_feature_ctl(state, ftr, 0, i, &iterm, unitid);
1039 }
1040
1041 return 0;
1042}
1043
1044
1045/*
1046 * Mixer Unit
1047 */
1048
1049/*
1050 * build a mixer unit control
1051 *
1052 * the callbacks are identical with feature unit.
1053 * input channel number (zero based) is given in control field instead.
1054 */
1055
Takashi Iwai86e07d32005-11-17 15:08:02 +01001056static void build_mixer_unit_ctl(struct mixer_build *state, unsigned char *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001058 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001060 struct usb_mixer_elem_info *cval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 unsigned int input_pins = desc[4];
1062 unsigned int num_outs = desc[5 + input_pins];
1063 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001064 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 if (check_ignored_ctl(state, unitid, 0))
1067 return;
1068
Takashi Iwai561b2202005-09-09 14:22:34 +02001069 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (! cval)
1071 return;
1072
Clemens Ladisch84957a82005-04-29 16:23:13 +02001073 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 cval->id = unitid;
1075 cval->control = in_ch + 1; /* based on 1 */
1076 cval->val_type = USB_MIXER_S16;
1077 for (i = 0; i < num_outs; i++) {
1078 if (check_matrix_bitmap(desc + 9 + input_pins, in_ch, i, num_outs)) {
1079 cval->cmask |= (1 << i);
1080 cval->channels++;
1081 }
1082 }
1083
1084 /* get min/max values */
1085 get_min_max(cval, 0);
1086
1087 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1088 if (! kctl) {
1089 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1090 kfree(cval);
1091 return;
1092 }
1093 kctl->private_free = usb_mixer_elem_free;
1094
1095 len = check_mapped_name(state, unitid, 0, kctl->id.name, sizeof(kctl->id.name));
1096 if (! len)
1097 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0);
1098 if (! len)
1099 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
1100 strlcat(kctl->id.name + len, " Volume", sizeof(kctl->id.name));
1101
1102 snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n",
1103 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001104 add_control_to_empty(state, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
1107
1108/*
1109 * parse a mixer unit
1110 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001111static int parse_audio_mixer_unit(struct mixer_build *state, int unitid, unsigned char *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001113 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 int input_pins, num_ins, num_outs;
1115 int pin, ich, err;
1116
1117 if (desc[0] < 11 || ! (input_pins = desc[4]) || ! (num_outs = desc[5 + input_pins])) {
1118 snd_printk(KERN_ERR "invalid MIXER UNIT descriptor %d\n", unitid);
1119 return -EINVAL;
1120 }
1121 /* no bmControls field (e.g. Maya44) -> ignore */
1122 if (desc[0] <= 10 + input_pins) {
1123 snd_printdd(KERN_INFO "MU %d has no bmControls field\n", unitid);
1124 return 0;
1125 }
1126
1127 num_ins = 0;
1128 ich = 0;
1129 for (pin = 0; pin < input_pins; pin++) {
1130 err = parse_audio_unit(state, desc[5 + pin]);
1131 if (err < 0)
1132 return err;
1133 err = check_input_term(state, desc[5 + pin], &iterm);
1134 if (err < 0)
1135 return err;
1136 num_ins += iterm.channels;
1137 for (; ich < num_ins; ++ich) {
1138 int och, ich_has_controls = 0;
1139
1140 for (och = 0; och < num_outs; ++och) {
1141 if (check_matrix_bitmap(desc + 9 + input_pins,
1142 ich, och, num_outs)) {
1143 ich_has_controls = 1;
1144 break;
1145 }
1146 }
1147 if (ich_has_controls)
1148 build_mixer_unit_ctl(state, desc, pin, ich,
1149 unitid, &iterm);
1150 }
1151 }
1152 return 0;
1153}
1154
1155
1156/*
1157 * Processing Unit / Extension Unit
1158 */
1159
1160/* get callback for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001161static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001163 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 int err, val;
1165
1166 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001167 if (err < 0 && cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 ucontrol->value.integer.value[0] = cval->min;
1169 return 0;
1170 }
1171 if (err < 0)
1172 return err;
1173 val = get_relative_value(cval, val);
1174 ucontrol->value.integer.value[0] = val;
1175 return 0;
1176}
1177
1178/* put callback for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001179static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001181 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 int val, oval, err;
1183
1184 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1185 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001186 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return 0;
1188 return err;
1189 }
1190 val = ucontrol->value.integer.value[0];
1191 val = get_abs_value(cval, val);
1192 if (val != oval) {
1193 set_cur_ctl_value(cval, cval->control << 8, val);
1194 return 1;
1195 }
1196 return 0;
1197}
1198
1199/* alsa control interface for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001200static struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1202 .name = "", /* will be filled later */
1203 .info = mixer_ctl_feature_info,
1204 .get = mixer_ctl_procunit_get,
1205 .put = mixer_ctl_procunit_put,
1206};
1207
1208
1209/*
1210 * predefined data for processing units
1211 */
1212struct procunit_value_info {
1213 int control;
1214 char *suffix;
1215 int val_type;
1216 int min_value;
1217};
1218
1219struct procunit_info {
1220 int type;
1221 char *name;
1222 struct procunit_value_info *values;
1223};
1224
1225static struct procunit_value_info updown_proc_info[] = {
1226 { USB_PROC_UPDOWN_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1227 { USB_PROC_UPDOWN_MODE_SEL, "Mode Select", USB_MIXER_U8, 1 },
1228 { 0 }
1229};
1230static struct procunit_value_info prologic_proc_info[] = {
1231 { USB_PROC_PROLOGIC_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1232 { USB_PROC_PROLOGIC_MODE_SEL, "Mode Select", USB_MIXER_U8, 1 },
1233 { 0 }
1234};
1235static struct procunit_value_info threed_enh_proc_info[] = {
1236 { USB_PROC_3DENH_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1237 { USB_PROC_3DENH_SPACE, "Spaciousness", USB_MIXER_U8 },
1238 { 0 }
1239};
1240static struct procunit_value_info reverb_proc_info[] = {
1241 { USB_PROC_REVERB_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1242 { USB_PROC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1243 { USB_PROC_REVERB_TIME, "Time", USB_MIXER_U16 },
1244 { USB_PROC_REVERB_DELAY, "Delay", USB_MIXER_U8 },
1245 { 0 }
1246};
1247static struct procunit_value_info chorus_proc_info[] = {
1248 { USB_PROC_CHORUS_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1249 { USB_PROC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1250 { USB_PROC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1251 { USB_PROC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
1252 { 0 }
1253};
1254static struct procunit_value_info dcr_proc_info[] = {
1255 { USB_PROC_DCR_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1256 { USB_PROC_DCR_RATIO, "Ratio", USB_MIXER_U16 },
1257 { USB_PROC_DCR_MAX_AMP, "Max Amp", USB_MIXER_S16 },
1258 { USB_PROC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1259 { USB_PROC_DCR_ATTACK, "Attack Time", USB_MIXER_U16 },
1260 { USB_PROC_DCR_RELEASE, "Release Time", USB_MIXER_U16 },
1261 { 0 }
1262};
1263
1264static struct procunit_info procunits[] = {
1265 { USB_PROC_UPDOWN, "Up Down", updown_proc_info },
1266 { USB_PROC_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1267 { USB_PROC_3DENH, "3D Stereo Extender", threed_enh_proc_info },
1268 { USB_PROC_REVERB, "Reverb", reverb_proc_info },
1269 { USB_PROC_CHORUS, "Chorus", chorus_proc_info },
1270 { USB_PROC_DCR, "DCR", dcr_proc_info },
1271 { 0 },
1272};
1273
1274/*
1275 * build a processing/extension unit
1276 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001277static int build_audio_procunit(struct mixer_build *state, int unitid, unsigned char *dsc, struct procunit_info *list, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
1279 int num_ins = dsc[6];
Takashi Iwai86e07d32005-11-17 15:08:02 +01001280 struct usb_mixer_elem_info *cval;
1281 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 int i, err, nameid, type, len;
1283 struct procunit_info *info;
1284 struct procunit_value_info *valinfo;
1285 static struct procunit_value_info default_value_info[] = {
1286 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1287 { 0 }
1288 };
1289 static struct procunit_info default_info = {
1290 0, NULL, default_value_info
1291 };
1292
1293 if (dsc[0] < 13 || dsc[0] < 13 + num_ins || dsc[0] < num_ins + dsc[11 + num_ins]) {
1294 snd_printk(KERN_ERR "invalid %s descriptor (id %d)\n", name, unitid);
1295 return -EINVAL;
1296 }
1297
1298 for (i = 0; i < num_ins; i++) {
1299 if ((err = parse_audio_unit(state, dsc[7 + i])) < 0)
1300 return err;
1301 }
1302
1303 type = combine_word(&dsc[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 for (info = list; info && info->type; info++)
1305 if (info->type == type)
1306 break;
1307 if (! info || ! info->type)
1308 info = &default_info;
1309
1310 for (valinfo = info->values; valinfo->control; valinfo++) {
1311 /* FIXME: bitmap might be longer than 8bit */
1312 if (! (dsc[12 + num_ins] & (1 << (valinfo->control - 1))))
1313 continue;
1314 if (check_ignored_ctl(state, unitid, valinfo->control))
1315 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02001316 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 if (! cval) {
1318 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1319 return -ENOMEM;
1320 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001321 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 cval->id = unitid;
1323 cval->control = valinfo->control;
1324 cval->val_type = valinfo->val_type;
1325 cval->channels = 1;
1326
1327 /* get min/max values */
1328 if (type == USB_PROC_UPDOWN && cval->control == USB_PROC_UPDOWN_MODE_SEL) {
1329 /* FIXME: hard-coded */
1330 cval->min = 1;
1331 cval->max = dsc[15];
1332 cval->res = 1;
1333 cval->initialized = 1;
1334 } else
1335 get_min_max(cval, valinfo->min_value);
1336
1337 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
1338 if (! kctl) {
1339 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1340 kfree(cval);
1341 return -ENOMEM;
1342 }
1343 kctl->private_free = usb_mixer_elem_free;
1344
1345 if (check_mapped_name(state, unitid, cval->control, kctl->id.name, sizeof(kctl->id.name)))
1346 ;
1347 else if (info->name)
1348 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1349 else {
1350 nameid = dsc[12 + num_ins + dsc[11 + num_ins]];
1351 len = 0;
1352 if (nameid)
1353 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1354 if (! len)
1355 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1356 }
1357 strlcat(kctl->id.name, " ", sizeof(kctl->id.name));
1358 strlcat(kctl->id.name, valinfo->suffix, sizeof(kctl->id.name));
1359
1360 snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n",
1361 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001362 if ((err = add_control_to_empty(state, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return err;
1364 }
1365 return 0;
1366}
1367
1368
Takashi Iwai86e07d32005-11-17 15:08:02 +01001369static int parse_audio_processing_unit(struct mixer_build *state, int unitid, unsigned char *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
1371 return build_audio_procunit(state, unitid, desc, procunits, "Processing Unit");
1372}
1373
Takashi Iwai86e07d32005-11-17 15:08:02 +01001374static int parse_audio_extension_unit(struct mixer_build *state, int unitid, unsigned char *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
1376 return build_audio_procunit(state, unitid, desc, NULL, "Extension Unit");
1377}
1378
1379
1380/*
1381 * Selector Unit
1382 */
1383
1384/* info callback for selector unit
1385 * use an enumerator type for routing
1386 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001387static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001389 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 char **itemlist = (char **)kcontrol->private_value;
1391
1392 snd_assert(itemlist, return -EINVAL);
1393 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1394 uinfo->count = 1;
1395 uinfo->value.enumerated.items = cval->max;
1396 if ((int)uinfo->value.enumerated.item >= cval->max)
1397 uinfo->value.enumerated.item = cval->max - 1;
1398 strcpy(uinfo->value.enumerated.name, itemlist[uinfo->value.enumerated.item]);
1399 return 0;
1400}
1401
1402/* get callback for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001403static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001405 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 int val, err;
1407
1408 err = get_cur_ctl_value(cval, 0, &val);
1409 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001410 if (cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 ucontrol->value.enumerated.item[0] = 0;
1412 return 0;
1413 }
1414 return err;
1415 }
1416 val = get_relative_value(cval, val);
1417 ucontrol->value.enumerated.item[0] = val;
1418 return 0;
1419}
1420
1421/* put callback for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001422static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001424 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 int val, oval, err;
1426
1427 err = get_cur_ctl_value(cval, 0, &oval);
1428 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001429 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return 0;
1431 return err;
1432 }
1433 val = ucontrol->value.enumerated.item[0];
1434 val = get_abs_value(cval, val);
1435 if (val != oval) {
1436 set_cur_ctl_value(cval, 0, val);
1437 return 1;
1438 }
1439 return 0;
1440}
1441
1442/* alsa control interface for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001443static struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1445 .name = "", /* will be filled later */
1446 .info = mixer_ctl_selector_info,
1447 .get = mixer_ctl_selector_get,
1448 .put = mixer_ctl_selector_put,
1449};
1450
1451
1452/* private free callback.
1453 * free both private_data and private_value
1454 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001455static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457 int i, num_ins = 0;
1458
1459 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001460 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 num_ins = cval->max;
1462 kfree(cval);
1463 kctl->private_data = NULL;
1464 }
1465 if (kctl->private_value) {
1466 char **itemlist = (char **)kctl->private_value;
1467 for (i = 0; i < num_ins; i++)
1468 kfree(itemlist[i]);
1469 kfree(itemlist);
1470 kctl->private_value = 0;
1471 }
1472}
1473
1474/*
1475 * parse a selector unit
1476 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001477static int parse_audio_selector_unit(struct mixer_build *state, int unitid, unsigned char *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
1479 unsigned int num_ins = desc[4];
1480 unsigned int i, nameid, len;
1481 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001482 struct usb_mixer_elem_info *cval;
1483 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 char **namelist;
1485
1486 if (! num_ins || desc[0] < 6 + num_ins) {
1487 snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
1488 return -EINVAL;
1489 }
1490
1491 for (i = 0; i < num_ins; i++) {
1492 if ((err = parse_audio_unit(state, desc[5 + i])) < 0)
1493 return err;
1494 }
1495
1496 if (num_ins == 1) /* only one ? nonsense! */
1497 return 0;
1498
1499 if (check_ignored_ctl(state, unitid, 0))
1500 return 0;
1501
Takashi Iwai561b2202005-09-09 14:22:34 +02001502 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (! cval) {
1504 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1505 return -ENOMEM;
1506 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001507 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 cval->id = unitid;
1509 cval->val_type = USB_MIXER_U8;
1510 cval->channels = 1;
1511 cval->min = 1;
1512 cval->max = num_ins;
1513 cval->res = 1;
1514 cval->initialized = 1;
1515
1516 namelist = kmalloc(sizeof(char *) * num_ins, GFP_KERNEL);
1517 if (! namelist) {
1518 snd_printk(KERN_ERR "cannot malloc\n");
1519 kfree(cval);
1520 return -ENOMEM;
1521 }
1522#define MAX_ITEM_NAME_LEN 64
1523 for (i = 0; i < num_ins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001524 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 len = 0;
1526 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
1527 if (! namelist[i]) {
1528 snd_printk(KERN_ERR "cannot malloc\n");
1529 while (--i > 0)
1530 kfree(namelist[i]);
1531 kfree(namelist);
1532 kfree(cval);
1533 return -ENOMEM;
1534 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02001535 len = check_mapped_selector_name(state, unitid, i, namelist[i],
1536 MAX_ITEM_NAME_LEN);
1537 if (! len && check_input_term(state, desc[5 + i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
1539 if (! len)
1540 sprintf(namelist[i], "Input %d", i);
1541 }
1542
1543 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
1544 if (! kctl) {
1545 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
Jesper Juhl878b4782006-03-20 11:27:13 +01001546 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 kfree(cval);
1548 return -ENOMEM;
1549 }
1550 kctl->private_value = (unsigned long)namelist;
1551 kctl->private_free = usb_mixer_selector_elem_free;
1552
1553 nameid = desc[desc[0] - 1];
1554 len = check_mapped_name(state, unitid, 0, kctl->id.name, sizeof(kctl->id.name));
1555 if (len)
1556 ;
1557 else if (nameid)
1558 snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1559 else {
1560 len = get_term_name(state, &state->oterm,
1561 kctl->id.name, sizeof(kctl->id.name), 0);
1562 if (! len)
1563 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
1564
1565 if ((state->oterm.type & 0xff00) == 0x0100)
1566 strlcat(kctl->id.name, " Capture Source", sizeof(kctl->id.name));
1567 else
1568 strlcat(kctl->id.name, " Playback Source", sizeof(kctl->id.name));
1569 }
1570
1571 snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
1572 cval->id, kctl->id.name, num_ins);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001573 if ((err = add_control_to_empty(state, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return err;
1575
1576 return 0;
1577}
1578
1579
1580/*
1581 * parse an audio unit recursively
1582 */
1583
Takashi Iwai86e07d32005-11-17 15:08:02 +01001584static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
1586 unsigned char *p1;
1587
1588 if (test_and_set_bit(unitid, state->unitbitmap))
1589 return 0; /* the unit already visited */
1590
1591 p1 = find_audio_control_unit(state, unitid);
1592 if (!p1) {
1593 snd_printk(KERN_ERR "usbaudio: unit %d not found!\n", unitid);
1594 return -EINVAL;
1595 }
1596
1597 switch (p1[2]) {
1598 case INPUT_TERMINAL:
1599 return 0; /* NOP */
1600 case MIXER_UNIT:
1601 return parse_audio_mixer_unit(state, unitid, p1);
1602 case SELECTOR_UNIT:
1603 return parse_audio_selector_unit(state, unitid, p1);
1604 case FEATURE_UNIT:
1605 return parse_audio_feature_unit(state, unitid, p1);
1606 case PROCESSING_UNIT:
1607 return parse_audio_processing_unit(state, unitid, p1);
1608 case EXTENSION_UNIT:
1609 return parse_audio_extension_unit(state, unitid, p1);
1610 default:
1611 snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
1612 return -EINVAL;
1613 }
1614}
1615
Clemens Ladisch84957a82005-04-29 16:23:13 +02001616static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
1617{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001618 kfree(mixer->id_elems);
1619 if (mixer->urb) {
1620 kfree(mixer->urb->transfer_buffer);
1621 usb_free_urb(mixer->urb);
1622 }
Clemens Ladischb259b102005-04-29 16:29:28 +02001623 if (mixer->rc_urb)
1624 usb_free_urb(mixer->rc_urb);
1625 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001626 kfree(mixer);
1627}
1628
Takashi Iwai86e07d32005-11-17 15:08:02 +01001629static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02001630{
1631 struct usb_mixer_interface *mixer = device->device_data;
1632 snd_usb_mixer_free(mixer);
1633 return 0;
1634}
1635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636/*
1637 * create mixer controls
1638 *
1639 * walk through all OUTPUT_TERMINAL descriptors to search for mixers
1640 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02001641static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
1643 unsigned char *desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001644 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 int err;
1646 const struct usbmix_ctl_map *map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001647 struct usb_host_interface *hostif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Clemens Ladisch84957a82005-04-29 16:23:13 +02001649 hostif = &usb_ifnum_to_if(mixer->chip->dev, mixer->ctrlif)->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02001651 state.chip = mixer->chip;
1652 state.mixer = mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 state.buffer = hostif->extra;
1654 state.buflen = hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001657 for (map = usbmix_ctl_maps; map->id; map++) {
1658 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02001660 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001661 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 break;
1663 }
1664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
1666 desc = NULL;
1667 while ((desc = snd_usb_find_csint_desc(hostif->extra, hostif->extralen, desc, OUTPUT_TERMINAL)) != NULL) {
1668 if (desc[0] < 9)
1669 continue; /* invalid descriptor? */
1670 set_bit(desc[3], state.unitbitmap); /* mark terminal ID as visited */
1671 state.oterm.id = desc[3];
1672 state.oterm.type = combine_word(&desc[4]);
1673 state.oterm.name = desc[8];
1674 err = parse_audio_unit(&state, desc[7]);
1675 if (err < 0)
1676 return err;
1677 }
1678 return 0;
1679}
Clemens Ladisch84957a82005-04-29 16:23:13 +02001680
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001681static void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer,
1682 int unitid)
1683{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001684 struct usb_mixer_elem_info *info;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001685
1686 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
1687 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1688 info->elem_id);
1689}
1690
Clemens Ladischb259b102005-04-29 16:29:28 +02001691static void snd_usb_mixer_memory_change(struct usb_mixer_interface *mixer,
1692 int unitid)
1693{
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +02001694 if (!mixer->rc_cfg)
Clemens Ladischaafad562005-05-10 14:47:38 +02001695 return;
1696 /* unit ids specific to Extigy/Audigy 2 NX: */
1697 switch (unitid) {
1698 case 0: /* remote control */
Clemens Ladischb259b102005-04-29 16:29:28 +02001699 mixer->rc_urb->dev = mixer->chip->dev;
1700 usb_submit_urb(mixer->rc_urb, GFP_ATOMIC);
Clemens Ladischaafad562005-05-10 14:47:38 +02001701 break;
1702 case 4: /* digital in jack */
1703 case 7: /* line in jacks */
1704 case 19: /* speaker out jacks */
1705 case 20: /* headphones out jack */
1706 break;
1707 default:
1708 snd_printd(KERN_DEBUG "memory change in unknown unit %d\n", unitid);
1709 break;
Clemens Ladischb259b102005-04-29 16:29:28 +02001710 }
1711}
1712
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001713static void snd_usb_mixer_status_complete(struct urb *urb, struct pt_regs *regs)
1714{
1715 struct usb_mixer_interface *mixer = urb->context;
1716
1717 if (urb->status == 0) {
1718 u8 *buf = urb->transfer_buffer;
1719 int i;
1720
1721 for (i = urb->actual_length; i >= 2; buf += 2, i -= 2) {
1722 snd_printd(KERN_DEBUG "status interrupt: %02x %02x\n",
1723 buf[0], buf[1]);
1724 /* ignore any notifications not from the control interface */
1725 if ((buf[0] & 0x0f) != 0)
1726 continue;
1727 if (!(buf[0] & 0x40))
1728 snd_usb_mixer_notify_id(mixer, buf[1]);
Clemens Ladischb259b102005-04-29 16:29:28 +02001729 else
1730 snd_usb_mixer_memory_change(mixer, buf[1]);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001731 }
1732 }
1733 if (urb->status != -ENOENT && urb->status != -ECONNRESET) {
1734 urb->dev = mixer->chip->dev;
1735 usb_submit_urb(urb, GFP_ATOMIC);
1736 }
1737}
1738
1739/* create the handler for the optional status interrupt endpoint */
1740static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
1741{
1742 struct usb_host_interface *hostif;
1743 struct usb_endpoint_descriptor *ep;
1744 void *transfer_buffer;
1745 int buffer_length;
1746 unsigned int epnum;
1747
1748 hostif = &usb_ifnum_to_if(mixer->chip->dev, mixer->ctrlif)->altsetting[0];
1749 /* we need one interrupt input endpoint */
1750 if (get_iface_desc(hostif)->bNumEndpoints < 1)
1751 return 0;
1752 ep = get_endpoint(hostif, 0);
1753 if ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK) != USB_DIR_IN ||
1754 (ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_INT)
1755 return 0;
1756
1757 epnum = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
1758 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
1759 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
1760 if (!transfer_buffer)
1761 return -ENOMEM;
1762 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
1763 if (!mixer->urb) {
1764 kfree(transfer_buffer);
1765 return -ENOMEM;
1766 }
1767 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
1768 usb_rcvintpipe(mixer->chip->dev, epnum),
1769 transfer_buffer, buffer_length,
1770 snd_usb_mixer_status_complete, mixer, ep->bInterval);
1771 usb_submit_urb(mixer->urb, GFP_KERNEL);
1772 return 0;
1773}
1774
Clemens Ladischb259b102005-04-29 16:29:28 +02001775static void snd_usb_soundblaster_remote_complete(struct urb *urb,
1776 struct pt_regs *regs)
1777{
1778 struct usb_mixer_interface *mixer = urb->context;
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +02001779 const struct rc_config *rc = mixer->rc_cfg;
Clemens Ladischb259b102005-04-29 16:29:28 +02001780 u32 code;
1781
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +02001782 if (urb->status < 0 || urb->actual_length < rc->packet_length)
Clemens Ladischb259b102005-04-29 16:29:28 +02001783 return;
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +02001784
1785 code = mixer->rc_buffer[rc->offset];
1786 if (rc->length == 2)
1787 code |= mixer->rc_buffer[rc->offset + 1] << 8;
1788
Clemens Ladischb259b102005-04-29 16:29:28 +02001789 /* the Mute button actually changes the mixer control */
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +02001790 if (code == rc->mute_code)
1791 snd_usb_mixer_notify_id(mixer, rc->mute_mixer_id);
Clemens Ladischb259b102005-04-29 16:29:28 +02001792 mixer->rc_code = code;
1793 wmb();
1794 wake_up(&mixer->rc_waitq);
1795}
1796
Takashi Iwai86e07d32005-11-17 15:08:02 +01001797static int snd_usb_sbrc_hwdep_open(struct snd_hwdep *hw, struct file *file)
Clemens Ladischb259b102005-04-29 16:29:28 +02001798{
1799 struct usb_mixer_interface *mixer = hw->private_data;
1800
1801 if (test_and_set_bit(0, &mixer->rc_hwdep_open))
1802 return -EBUSY;
1803 return 0;
1804}
1805
Takashi Iwai86e07d32005-11-17 15:08:02 +01001806static int snd_usb_sbrc_hwdep_release(struct snd_hwdep *hw, struct file *file)
Clemens Ladischb259b102005-04-29 16:29:28 +02001807{
1808 struct usb_mixer_interface *mixer = hw->private_data;
1809
1810 clear_bit(0, &mixer->rc_hwdep_open);
1811 smp_mb__after_clear_bit();
1812 return 0;
1813}
1814
Takashi Iwai86e07d32005-11-17 15:08:02 +01001815static long snd_usb_sbrc_hwdep_read(struct snd_hwdep *hw, char __user *buf,
Clemens Ladischb259b102005-04-29 16:29:28 +02001816 long count, loff_t *offset)
1817{
1818 struct usb_mixer_interface *mixer = hw->private_data;
1819 int err;
1820 u32 rc_code;
1821
Clemens Ladisch434b7f52005-05-02 08:58:31 +02001822 if (count != 1 && count != 4)
Clemens Ladischb259b102005-04-29 16:29:28 +02001823 return -EINVAL;
1824 err = wait_event_interruptible(mixer->rc_waitq,
1825 (rc_code = xchg(&mixer->rc_code, 0)) != 0);
1826 if (err == 0) {
Clemens Ladisch434b7f52005-05-02 08:58:31 +02001827 if (count == 1)
1828 err = put_user(rc_code, buf);
1829 else
1830 err = put_user(rc_code, (u32 __user *)buf);
Clemens Ladischb259b102005-04-29 16:29:28 +02001831 }
1832 return err < 0 ? err : count;
1833}
1834
Takashi Iwai86e07d32005-11-17 15:08:02 +01001835static unsigned int snd_usb_sbrc_hwdep_poll(struct snd_hwdep *hw, struct file *file,
Clemens Ladischb259b102005-04-29 16:29:28 +02001836 poll_table *wait)
1837{
1838 struct usb_mixer_interface *mixer = hw->private_data;
1839
1840 poll_wait(file, &mixer->rc_waitq, wait);
1841 return mixer->rc_code ? POLLIN | POLLRDNORM : 0;
1842}
1843
1844static int snd_usb_soundblaster_remote_init(struct usb_mixer_interface *mixer)
1845{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001846 struct snd_hwdep *hwdep;
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +02001847 int err, len, i;
Clemens Ladischb259b102005-04-29 16:29:28 +02001848
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +02001849 for (i = 0; i < ARRAY_SIZE(rc_configs); ++i)
1850 if (rc_configs[i].usb_id == mixer->chip->usb_id)
1851 break;
1852 if (i >= ARRAY_SIZE(rc_configs))
Clemens Ladischb259b102005-04-29 16:29:28 +02001853 return 0;
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +02001854 mixer->rc_cfg = &rc_configs[i];
Clemens Ladischb259b102005-04-29 16:29:28 +02001855
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +02001856 len = mixer->rc_cfg->packet_length;
1857
Clemens Ladischb259b102005-04-29 16:29:28 +02001858 init_waitqueue_head(&mixer->rc_waitq);
1859 err = snd_hwdep_new(mixer->chip->card, "SB remote control", 0, &hwdep);
1860 if (err < 0)
1861 return err;
1862 snprintf(hwdep->name, sizeof(hwdep->name),
1863 "%s remote control", mixer->chip->card->shortname);
1864 hwdep->iface = SNDRV_HWDEP_IFACE_SB_RC;
1865 hwdep->private_data = mixer;
1866 hwdep->ops.read = snd_usb_sbrc_hwdep_read;
1867 hwdep->ops.open = snd_usb_sbrc_hwdep_open;
1868 hwdep->ops.release = snd_usb_sbrc_hwdep_release;
1869 hwdep->ops.poll = snd_usb_sbrc_hwdep_poll;
1870
1871 mixer->rc_urb = usb_alloc_urb(0, GFP_KERNEL);
1872 if (!mixer->rc_urb)
1873 return -ENOMEM;
1874 mixer->rc_setup_packet = kmalloc(sizeof(*mixer->rc_setup_packet), GFP_KERNEL);
1875 if (!mixer->rc_setup_packet) {
1876 usb_free_urb(mixer->rc_urb);
1877 mixer->rc_urb = NULL;
1878 return -ENOMEM;
1879 }
1880 mixer->rc_setup_packet->bRequestType =
1881 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE;
1882 mixer->rc_setup_packet->bRequest = GET_MEM;
1883 mixer->rc_setup_packet->wValue = cpu_to_le16(0);
1884 mixer->rc_setup_packet->wIndex = cpu_to_le16(0);
1885 mixer->rc_setup_packet->wLength = cpu_to_le16(len);
1886 usb_fill_control_urb(mixer->rc_urb, mixer->chip->dev,
1887 usb_rcvctrlpipe(mixer->chip->dev, 0),
1888 (u8*)mixer->rc_setup_packet, mixer->rc_buffer, len,
1889 snd_usb_soundblaster_remote_complete, mixer);
1890 return 0;
1891}
1892
Takashi Iwai86e07d32005-11-17 15:08:02 +01001893static int snd_audigy2nx_led_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Clemens Ladisch93446ed2005-05-03 08:02:40 +02001894{
1895 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1896 uinfo->count = 1;
1897 uinfo->value.integer.min = 0;
1898 uinfo->value.integer.max = 1;
1899 return 0;
1900}
1901
Takashi Iwai86e07d32005-11-17 15:08:02 +01001902static int snd_audigy2nx_led_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Clemens Ladisch93446ed2005-05-03 08:02:40 +02001903{
1904 struct usb_mixer_interface *mixer = snd_kcontrol_chip(kcontrol);
1905 int index = kcontrol->private_value;
1906
1907 ucontrol->value.integer.value[0] = mixer->audigy2nx_leds[index];
1908 return 0;
1909}
1910
Takashi Iwai86e07d32005-11-17 15:08:02 +01001911static int snd_audigy2nx_led_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Clemens Ladisch93446ed2005-05-03 08:02:40 +02001912{
1913 struct usb_mixer_interface *mixer = snd_kcontrol_chip(kcontrol);
1914 int index = kcontrol->private_value;
1915 int value = ucontrol->value.integer.value[0];
1916 int err, changed;
1917
1918 if (value > 1)
1919 return -EINVAL;
1920 changed = value != mixer->audigy2nx_leds[index];
1921 err = snd_usb_ctl_msg(mixer->chip->dev,
1922 usb_sndctrlpipe(mixer->chip->dev, 0), 0x24,
1923 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
1924 value, index + 2, NULL, 0, 100);
1925 if (err < 0)
1926 return err;
1927 mixer->audigy2nx_leds[index] = value;
1928 return changed;
1929}
1930
Takashi Iwai86e07d32005-11-17 15:08:02 +01001931static struct snd_kcontrol_new snd_audigy2nx_controls[] = {
Clemens Ladisch93446ed2005-05-03 08:02:40 +02001932 {
1933 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1934 .name = "CMSS LED Switch",
1935 .info = snd_audigy2nx_led_info,
1936 .get = snd_audigy2nx_led_get,
1937 .put = snd_audigy2nx_led_put,
1938 .private_value = 0,
1939 },
1940 {
1941 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1942 .name = "Power LED Switch",
1943 .info = snd_audigy2nx_led_info,
1944 .get = snd_audigy2nx_led_get,
1945 .put = snd_audigy2nx_led_put,
1946 .private_value = 1,
1947 },
1948 {
1949 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1950 .name = "Dolby Digital LED Switch",
1951 .info = snd_audigy2nx_led_info,
1952 .get = snd_audigy2nx_led_get,
1953 .put = snd_audigy2nx_led_put,
1954 .private_value = 2,
1955 },
1956};
1957
1958static int snd_audigy2nx_controls_create(struct usb_mixer_interface *mixer)
1959{
1960 int i, err;
1961
1962 for (i = 0; i < ARRAY_SIZE(snd_audigy2nx_controls); ++i) {
1963 err = snd_ctl_add(mixer->chip->card,
1964 snd_ctl_new1(&snd_audigy2nx_controls[i], mixer));
1965 if (err < 0)
1966 return err;
1967 }
1968 mixer->audigy2nx_leds[1] = 1; /* Power LED is on by default */
1969 return 0;
1970}
1971
Takashi Iwai86e07d32005-11-17 15:08:02 +01001972static void snd_audigy2nx_proc_read(struct snd_info_entry *entry,
1973 struct snd_info_buffer *buffer)
Clemens Ladischaafad562005-05-10 14:47:38 +02001974{
1975 static const struct {
1976 int unitid;
1977 const char *name;
1978 } jacks[] = {
1979 {4, "dig in "},
1980 {7, "line in"},
1981 {19, "spk out"},
1982 {20, "hph out"},
1983 };
1984 struct usb_mixer_interface *mixer = entry->private_data;
1985 int i, err;
1986 u8 buf[3];
1987
1988 snd_iprintf(buffer, "%s jacks\n\n", mixer->chip->card->shortname);
1989 for (i = 0; i < ARRAY_SIZE(jacks); ++i) {
1990 snd_iprintf(buffer, "%s: ", jacks[i].name);
1991 err = snd_usb_ctl_msg(mixer->chip->dev,
1992 usb_rcvctrlpipe(mixer->chip->dev, 0),
1993 GET_MEM, USB_DIR_IN | USB_TYPE_CLASS |
1994 USB_RECIP_INTERFACE, 0,
1995 jacks[i].unitid << 8, buf, 3, 100);
1996 if (err == 3 && buf[0] == 3)
1997 snd_iprintf(buffer, "%02x %02x\n", buf[1], buf[2]);
1998 else
1999 snd_iprintf(buffer, "?\n");
2000 }
2001}
2002
Takashi Iwai86e07d32005-11-17 15:08:02 +01002003int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002004{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002005 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002006 .dev_free = snd_usb_mixer_dev_free
2007 };
2008 struct usb_mixer_interface *mixer;
2009 int err;
2010
2011 strcpy(chip->card->mixername, "USB Mixer");
2012
Takashi Iwai561b2202005-09-09 14:22:34 +02002013 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002014 if (!mixer)
2015 return -ENOMEM;
2016 mixer->chip = chip;
2017 mixer->ctrlif = ctrlif;
2018#ifdef IGNORE_CTL_ERROR
2019 mixer->ignore_ctl_error = 1;
2020#endif
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002021 mixer->id_elems = kcalloc(256, sizeof(*mixer->id_elems), GFP_KERNEL);
2022 if (!mixer->id_elems) {
2023 kfree(mixer);
2024 return -ENOMEM;
2025 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002026
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002027 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002028 (err = snd_usb_mixer_status_create(mixer)) < 0)
2029 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002030
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002031 if ((err = snd_usb_soundblaster_remote_init(mixer)) < 0)
2032 goto _error;
2033
2034 if (mixer->chip->usb_id == USB_ID(0x041e, 0x3020)) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002035 struct snd_info_entry *entry;
Clemens Ladischaafad562005-05-10 14:47:38 +02002036
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002037 if ((err = snd_audigy2nx_controls_create(mixer)) < 0)
2038 goto _error;
Clemens Ladischaafad562005-05-10 14:47:38 +02002039 if (!snd_card_proc_new(chip->card, "audigy2nx", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002040 snd_info_set_text_ops(entry, mixer,
Clemens Ladischaafad562005-05-10 14:47:38 +02002041 snd_audigy2nx_proc_read);
Clemens Ladischb259b102005-04-29 16:29:28 +02002042 }
2043
Clemens Ladisch84957a82005-04-29 16:23:13 +02002044 err = snd_device_new(chip->card, SNDRV_DEV_LOWLEVEL, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002045 if (err < 0)
2046 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002047 list_add(&mixer->list, &chip->mixer_list);
2048 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002049
2050_error:
2051 snd_usb_mixer_free(mixer);
2052 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002053}
2054
2055void snd_usb_mixer_disconnect(struct list_head *p)
2056{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002057 struct usb_mixer_interface *mixer;
2058
2059 mixer = list_entry(p, struct usb_mixer_interface, list);
2060 if (mixer->urb)
2061 usb_kill_urb(mixer->urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02002062 if (mixer->rc_urb)
2063 usb_kill_urb(mixer->rc_urb);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002064}