Fix common misspellings
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / sound / usb / mixer.c
CommitLineData
1da177e4
LT
1/*
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
157a57b6
DM
29/*
30 * TODOs, for both the mixer and the streaming interfaces:
31 *
32 * - support for UAC2 effect units
33 * - support for graphical equalizers
34 * - RANGE and MEM set commands (UAC2)
35 * - RANGE and MEM interrupt dispatchers (UAC2)
36 * - audio channel clustering (UAC2)
37 * - audio sample rate converter units (UAC2)
38 * - proper handling of clock multipliers (UAC2)
39 * - dispatch clock change notifications (UAC2)
40 * - stop PCM streams which use a clock that became invalid
41 * - stop PCM streams which use a clock selector that has changed
42 * - parse available sample rates again when clock sources changed
43 */
44
1da177e4
LT
45#include <linux/bitops.h>
46#include <linux/init.h>
47#include <linux/list.h>
48#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/usb.h>
28e1b773 51#include <linux/usb/audio.h>
23caaf19 52#include <linux/usb/audio-v2.h>
28e1b773 53
1da177e4
LT
54#include <sound/core.h>
55#include <sound/control.h>
b259b10c 56#include <sound/hwdep.h>
aafad562 57#include <sound/info.h>
7bc5ba7e 58#include <sound/tlv.h>
1da177e4
LT
59
60#include "usbaudio.h"
f0b5e634 61#include "mixer.h"
e5779998 62#include "helper.h"
7b1eda22 63#include "mixer_quirks.h"
88a8516a 64#include "power.h"
4d1a70da 65
ebfdeea3
JK
66#define MAX_ID_ELEMS 256
67
1da177e4
LT
68struct usb_audio_term {
69 int id;
70 int type;
71 int channels;
72 unsigned int chconfig;
73 int name;
74};
75
76struct usbmix_name_map;
77
86e07d34
TI
78struct mixer_build {
79 struct snd_usb_audio *chip;
84957a8a 80 struct usb_mixer_interface *mixer;
1da177e4
LT
81 unsigned char *buffer;
82 unsigned int buflen;
291186e0 83 DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
86e07d34 84 struct usb_audio_term oterm;
1da177e4 85 const struct usbmix_name_map *map;
8e062ec7 86 const struct usbmix_selector_map *selector_map;
1da177e4
LT
87};
88
1da177e4
LT
89enum {
90 USB_MIXER_BOOLEAN,
91 USB_MIXER_INV_BOOLEAN,
92 USB_MIXER_S8,
93 USB_MIXER_U8,
94 USB_MIXER_S16,
95 USB_MIXER_U16,
96};
97
1da177e4 98
1cdfa9f3 99/*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
7d2b451e
SK
100enum {
101 USB_XU_CLOCK_RATE = 0xe301,
102 USB_XU_CLOCK_SOURCE = 0xe302,
103 USB_XU_DIGITAL_IO_STATUS = 0xe303,
104 USB_XU_DEVICE_OPTIONS = 0xe304,
105 USB_XU_DIRECT_MONITORING = 0xe305,
106 USB_XU_METERING = 0xe306
107};
108enum {
109 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
110 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
111 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
112 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
113};
1da177e4
LT
114
115/*
116 * manual mapping of mixer names
117 * if the mixer topology is too complicated and the parsed names are
118 * ambiguous, add the entries in usbmixer_maps.c.
119 */
f0b5e634 120#include "mixer_maps.c"
1da177e4 121
c3a3e040
JK
122static const struct usbmix_name_map *
123find_map(struct mixer_build *state, int unitid, int control)
1da177e4 124{
c3a3e040 125 const struct usbmix_name_map *p = state->map;
1da177e4 126
c3a3e040
JK
127 if (!p)
128 return NULL;
1da177e4
LT
129
130 for (p = state->map; p->id; p++) {
c3a3e040
JK
131 if (p->id == unitid &&
132 (!control || !p->control || control == p->control))
133 return p;
1da177e4 134 }
c3a3e040 135 return NULL;
1da177e4
LT
136}
137
c3a3e040
JK
138/* get the mapped name if the unit matches */
139static int
140check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
1da177e4 141{
c3a3e040
JK
142 if (!p || !p->name)
143 return 0;
1da177e4 144
c3a3e040
JK
145 buflen--;
146 return strlcpy(buf, p->name, buflen);
147}
148
149/* check whether the control should be ignored */
150static inline int
151check_ignored_ctl(const struct usbmix_name_map *p)
152{
153 if (!p || p->name || p->dB)
1da177e4 154 return 0;
c3a3e040
JK
155 return 1;
156}
157
158/* dB mapping */
159static inline void check_mapped_dB(const struct usbmix_name_map *p,
160 struct usb_mixer_elem_info *cval)
161{
162 if (p && p->dB) {
163 cval->dBmin = p->dB->min;
164 cval->dBmax = p->dB->max;
1da177e4 165 }
1da177e4
LT
166}
167
8e062ec7 168/* get the mapped selector source name */
86e07d34 169static int check_mapped_selector_name(struct mixer_build *state, int unitid,
8e062ec7
CL
170 int index, char *buf, int buflen)
171{
172 const struct usbmix_selector_map *p;
173
174 if (! state->selector_map)
175 return 0;
176 for (p = state->selector_map; p->id; p++) {
177 if (p->id == unitid && index < p->count)
178 return strlcpy(buf, p->names[index], buflen);
179 }
180 return 0;
181}
182
1da177e4
LT
183/*
184 * find an audio control unit with the given unit id
185 */
86e07d34 186static void *find_audio_control_unit(struct mixer_build *state, unsigned char unit)
1da177e4 187{
67e1daa0
DM
188 /* we just parse the header */
189 struct uac_feature_unit_descriptor *hdr = NULL;
190
191 while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
192 USB_DT_CS_INTERFACE)) != NULL) {
193 if (hdr->bLength >= 4 &&
194 hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
195 hdr->bDescriptorSubtype <= UAC2_SAMPLE_RATE_CONVERTER &&
196 hdr->bUnitID == unit)
197 return hdr;
1da177e4 198 }
67e1daa0 199
1da177e4
LT
200 return NULL;
201}
202
1da177e4
LT
203/*
204 * copy a string with the given id
205 */
86e07d34 206static int snd_usb_copy_string_desc(struct mixer_build *state, int index, char *buf, int maxlen)
1da177e4
LT
207{
208 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
209 buf[len] = 0;
210 return len;
211}
212
213/*
214 * convert from the byte/word on usb descriptor to the zero-based integer
215 */
86e07d34 216static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
1da177e4
LT
217{
218 switch (cval->val_type) {
219 case USB_MIXER_BOOLEAN:
220 return !!val;
221 case USB_MIXER_INV_BOOLEAN:
222 return !val;
223 case USB_MIXER_U8:
224 val &= 0xff;
225 break;
226 case USB_MIXER_S8:
227 val &= 0xff;
228 if (val >= 0x80)
229 val -= 0x100;
230 break;
231 case USB_MIXER_U16:
232 val &= 0xffff;
233 break;
234 case USB_MIXER_S16:
235 val &= 0xffff;
236 if (val >= 0x8000)
237 val -= 0x10000;
238 break;
239 }
240 return val;
241}
242
243/*
244 * convert from the zero-based int to the byte/word for usb descriptor
245 */
86e07d34 246static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
1da177e4
LT
247{
248 switch (cval->val_type) {
249 case USB_MIXER_BOOLEAN:
250 return !!val;
251 case USB_MIXER_INV_BOOLEAN:
252 return !val;
253 case USB_MIXER_S8:
254 case USB_MIXER_U8:
255 return val & 0xff;
256 case USB_MIXER_S16:
257 case USB_MIXER_U16:
258 return val & 0xffff;
259 }
260 return 0; /* not reached */
261}
262
86e07d34 263static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
1da177e4
LT
264{
265 if (! cval->res)
266 cval->res = 1;
267 if (val < cval->min)
268 return 0;
14790f1c
TI
269 else if (val >= cval->max)
270 return (cval->max - cval->min + cval->res - 1) / cval->res;
1da177e4
LT
271 else
272 return (val - cval->min) / cval->res;
273}
274
86e07d34 275static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
1da177e4
LT
276{
277 if (val < 0)
278 return cval->min;
279 if (! cval->res)
280 cval->res = 1;
281 val *= cval->res;
282 val += cval->min;
283 if (val > cval->max)
284 return cval->max;
285 return val;
286}
287
288
289/*
290 * retrieve a mixer value
291 */
292
23caaf19 293static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
1da177e4 294{
3d8d4dcf 295 struct snd_usb_audio *chip = cval->mixer->chip;
1da177e4
LT
296 unsigned char buf[2];
297 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
298 int timeout = 10;
88a8516a 299 int err;
1da177e4 300
88a8516a
ON
301 err = snd_usb_autoresume(cval->mixer->chip);
302 if (err < 0)
303 return -EIO;
1da177e4 304 while (timeout-- > 0) {
3d8d4dcf 305 if (snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
1da177e4 306 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
3d8d4dcf 307 validx, snd_usb_ctrl_intf(chip) | (cval->id << 8),
a04395ea 308 buf, val_len, 100) >= val_len) {
1da177e4 309 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
88a8516a 310 snd_usb_autosuspend(cval->mixer->chip);
1da177e4
LT
311 return 0;
312 }
313 }
88a8516a 314 snd_usb_autosuspend(cval->mixer->chip);
84957a8a 315 snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
b415ec70 316 request, validx, snd_usb_ctrl_intf(chip) | (cval->id << 8), cval->val_type);
1da177e4
LT
317 return -EINVAL;
318}
319
23caaf19
DM
320static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
321{
3d8d4dcf 322 struct snd_usb_audio *chip = cval->mixer->chip;
e8bdb6bb 323 unsigned char buf[2 + 3*sizeof(__u16)]; /* enough space for one range */
23caaf19 324 unsigned char *val;
e8bdb6bb 325 int ret, size;
23caaf19
DM
326 __u8 bRequest;
327
e8bdb6bb
DM
328 if (request == UAC_GET_CUR) {
329 bRequest = UAC2_CS_CUR;
330 size = sizeof(__u16);
331 } else {
332 bRequest = UAC2_CS_RANGE;
333 size = sizeof(buf);
334 }
335
336 memset(buf, 0, sizeof(buf));
23caaf19 337
88a8516a
ON
338 ret = snd_usb_autoresume(chip) ? -EIO : 0;
339 if (ret)
340 goto error;
341
3d8d4dcf 342 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
23caaf19 343 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
3d8d4dcf 344 validx, snd_usb_ctrl_intf(chip) | (cval->id << 8),
e8bdb6bb 345 buf, size, 1000);
88a8516a 346 snd_usb_autosuspend(chip);
23caaf19
DM
347
348 if (ret < 0) {
88a8516a 349error:
09414207 350 snd_printk(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
3d8d4dcf 351 request, validx, snd_usb_ctrl_intf(chip) | (cval->id << 8), cval->val_type);
23caaf19
DM
352 return ret;
353 }
354
e8bdb6bb
DM
355 /* FIXME: how should we handle multiple triplets here? */
356
23caaf19
DM
357 switch (request) {
358 case UAC_GET_CUR:
359 val = buf;
360 break;
361 case UAC_GET_MIN:
362 val = buf + sizeof(__u16);
363 break;
364 case UAC_GET_MAX:
365 val = buf + sizeof(__u16) * 2;
366 break;
367 case UAC_GET_RES:
368 val = buf + sizeof(__u16) * 3;
369 break;
370 default:
371 return -EINVAL;
372 }
373
374 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(val, sizeof(__u16)));
375
376 return 0;
377}
378
379static int get_ctl_value(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
380{
381 return (cval->mixer->protocol == UAC_VERSION_1) ?
382 get_ctl_value_v1(cval, request, validx, value_ret) :
383 get_ctl_value_v2(cval, request, validx, value_ret);
384}
385
86e07d34 386static int get_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int *value)
1da177e4 387{
de48c7bc 388 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
1da177e4
LT
389}
390
391/* channel = 0: master, 1 = first channel */
641b4879
TI
392static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
393 int channel, int *value)
1da177e4 394{
de48c7bc 395 return get_ctl_value(cval, UAC_GET_CUR, (cval->control << 8) | channel, value);
1da177e4
LT
396}
397
641b4879
TI
398static int get_cur_mix_value(struct usb_mixer_elem_info *cval,
399 int channel, int index, int *value)
400{
401 int err;
402
403 if (cval->cached & (1 << channel)) {
404 *value = cval->cache_val[index];
405 return 0;
406 }
407 err = get_cur_mix_raw(cval, channel, value);
408 if (err < 0) {
409 if (!cval->mixer->ignore_ctl_error)
23caaf19 410 snd_printd(KERN_ERR "cannot get current value for control %d ch %d: err = %d\n",
641b4879
TI
411 cval->control, channel, err);
412 return err;
413 }
414 cval->cached |= 1 << channel;
415 cval->cache_val[index] = *value;
416 return 0;
417}
418
419
1da177e4
LT
420/*
421 * set a mixer value
422 */
423
7b1eda22
DM
424int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
425 int request, int validx, int value_set)
1da177e4 426{
3d8d4dcf 427 struct snd_usb_audio *chip = cval->mixer->chip;
1da177e4 428 unsigned char buf[2];
88a8516a 429 int val_len, err, timeout = 10;
23caaf19
DM
430
431 if (cval->mixer->protocol == UAC_VERSION_1) {
432 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
433 } else { /* UAC_VERSION_2 */
434 /* audio class v2 controls are always 2 bytes in size */
435 val_len = sizeof(__u16);
436
437 /* FIXME */
438 if (request != UAC_SET_CUR) {
439 snd_printdd(KERN_WARNING "RANGE setting not yet supported\n");
440 return -EINVAL;
441 }
442
443 request = UAC2_CS_CUR;
444 }
1da177e4
LT
445
446 value_set = convert_bytes_value(cval, value_set);
447 buf[0] = value_set & 0xff;
448 buf[1] = (value_set >> 8) & 0xff;
88a8516a
ON
449 err = snd_usb_autoresume(chip);
450 if (err < 0)
451 return -EIO;
cf3f9130 452 while (timeout-- > 0)
3d8d4dcf
DM
453 if (snd_usb_ctl_msg(chip->dev,
454 usb_sndctrlpipe(chip->dev, 0), request,
1da177e4 455 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
3d8d4dcf 456 validx, snd_usb_ctrl_intf(chip) | (cval->id << 8),
88a8516a
ON
457 buf, val_len, 100) >= 0) {
458 snd_usb_autosuspend(chip);
1da177e4 459 return 0;
88a8516a
ON
460 }
461 snd_usb_autosuspend(chip);
84957a8a 462 snd_printdd(KERN_ERR "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
3d8d4dcf 463 request, validx, snd_usb_ctrl_intf(chip) | (cval->id << 8), cval->val_type, buf[0], buf[1]);
1da177e4
LT
464 return -EINVAL;
465}
466
86e07d34 467static int set_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int value)
1da177e4 468{
7b1eda22 469 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
1da177e4
LT
470}
471
641b4879
TI
472static int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
473 int index, int value)
1da177e4 474{
641b4879 475 int err;
a6a33259
DM
476 unsigned int read_only = (channel == 0) ?
477 cval->master_readonly :
478 cval->ch_readonly & (1 << (channel - 1));
479
480 if (read_only) {
481 snd_printdd(KERN_INFO "%s(): channel %d of control %d is read_only\n",
482 __func__, channel, cval->control);
483 return 0;
484 }
485
7b1eda22 486 err = snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, (cval->control << 8) | channel,
641b4879
TI
487 value);
488 if (err < 0)
489 return err;
490 cval->cached |= 1 << channel;
491 cval->cache_val[index] = value;
492 return 0;
1da177e4
LT
493}
494
7bc5ba7e
TI
495/*
496 * TLV callback for mixer volume controls
497 */
498static int mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
499 unsigned int size, unsigned int __user *_tlv)
500{
501 struct usb_mixer_elem_info *cval = kcontrol->private_data;
b8e1c73f 502 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
7bc5ba7e
TI
503
504 if (size < sizeof(scale))
505 return -ENOMEM;
c3a3e040
JK
506 scale[2] = cval->dBmin;
507 scale[3] = cval->dBmax;
7bc5ba7e
TI
508 if (copy_to_user(_tlv, scale, sizeof(scale)))
509 return -EFAULT;
510 return 0;
511}
1da177e4
LT
512
513/*
514 * parser routines begin here...
515 */
516
86e07d34 517static int parse_audio_unit(struct mixer_build *state, int unitid);
1da177e4
LT
518
519
520/*
521 * check if the input/output channel routing is enabled on the given bitmap.
522 * used for mixer unit parser
523 */
524static int check_matrix_bitmap(unsigned char *bmap, int ich, int och, int num_outs)
525{
526 int idx = ich * num_outs + och;
527 return bmap[idx >> 3] & (0x80 >> (idx & 7));
528}
529
530
531/*
532 * add an alsa control element
533 * search and increment the index until an empty slot is found.
534 *
535 * if failed, give up and free the control instance.
536 */
537
86e07d34 538static int add_control_to_empty(struct mixer_build *state, struct snd_kcontrol *kctl)
1da177e4 539{
86e07d34 540 struct usb_mixer_elem_info *cval = kctl->private_data;
1da177e4 541 int err;
84957a8a
CL
542
543 while (snd_ctl_find_id(state->chip->card, &kctl->id))
1da177e4 544 kctl->id.index++;
84957a8a 545 if ((err = snd_ctl_add(state->chip->card, kctl)) < 0) {
1da177e4 546 snd_printd(KERN_ERR "cannot add control (err = %d)\n", err);
6639b6c2 547 return err;
1da177e4 548 }
6639b6c2
CL
549 cval->elem_id = &kctl->id;
550 cval->next_id_elem = state->mixer->id_elems[cval->id];
551 state->mixer->id_elems[cval->id] = cval;
552 return 0;
1da177e4
LT
553}
554
555
556/*
557 * get a terminal name string
558 */
559
560static struct iterm_name_combo {
561 int type;
562 char *name;
563} iterm_names[] = {
564 { 0x0300, "Output" },
565 { 0x0301, "Speaker" },
566 { 0x0302, "Headphone" },
567 { 0x0303, "HMD Audio" },
568 { 0x0304, "Desktop Speaker" },
569 { 0x0305, "Room Speaker" },
570 { 0x0306, "Com Speaker" },
571 { 0x0307, "LFE" },
572 { 0x0600, "External In" },
573 { 0x0601, "Analog In" },
574 { 0x0602, "Digital In" },
575 { 0x0603, "Line" },
576 { 0x0604, "Legacy In" },
577 { 0x0605, "IEC958 In" },
578 { 0x0606, "1394 DA Stream" },
579 { 0x0607, "1394 DV Stream" },
580 { 0x0700, "Embedded" },
581 { 0x0701, "Noise Source" },
582 { 0x0702, "Equalization Noise" },
583 { 0x0703, "CD" },
584 { 0x0704, "DAT" },
585 { 0x0705, "DCC" },
586 { 0x0706, "MiniDisk" },
587 { 0x0707, "Analog Tape" },
588 { 0x0708, "Phonograph" },
589 { 0x0709, "VCR Audio" },
590 { 0x070a, "Video Disk Audio" },
591 { 0x070b, "DVD Audio" },
592 { 0x070c, "TV Tuner Audio" },
593 { 0x070d, "Satellite Rec Audio" },
594 { 0x070e, "Cable Tuner Audio" },
595 { 0x070f, "DSS Audio" },
596 { 0x0710, "Radio Receiver" },
597 { 0x0711, "Radio Transmitter" },
598 { 0x0712, "Multi-Track Recorder" },
599 { 0x0713, "Synthesizer" },
600 { 0 },
601};
602
86e07d34 603static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
1da177e4
LT
604 unsigned char *name, int maxlen, int term_only)
605{
606 struct iterm_name_combo *names;
607
608 if (iterm->name)
609 return snd_usb_copy_string_desc(state, iterm->name, name, maxlen);
610
611 /* virtual type - not a real terminal */
612 if (iterm->type >> 16) {
613 if (term_only)
614 return 0;
615 switch (iterm->type >> 16) {
de48c7bc 616 case UAC_SELECTOR_UNIT:
1da177e4 617 strcpy(name, "Selector"); return 8;
69da9bcb 618 case UAC1_PROCESSING_UNIT:
1da177e4 619 strcpy(name, "Process Unit"); return 12;
69da9bcb 620 case UAC1_EXTENSION_UNIT:
1da177e4 621 strcpy(name, "Ext Unit"); return 8;
de48c7bc 622 case UAC_MIXER_UNIT:
1da177e4
LT
623 strcpy(name, "Mixer"); return 5;
624 default:
625 return sprintf(name, "Unit %d", iterm->id);
626 }
627 }
628
629 switch (iterm->type & 0xff00) {
630 case 0x0100:
631 strcpy(name, "PCM"); return 3;
632 case 0x0200:
633 strcpy(name, "Mic"); return 3;
634 case 0x0400:
635 strcpy(name, "Headset"); return 7;
636 case 0x0500:
637 strcpy(name, "Phone"); return 5;
638 }
639
640 for (names = iterm_names; names->type; names++)
641 if (names->type == iterm->type) {
642 strcpy(name, names->name);
643 return strlen(names->name);
644 }
645 return 0;
646}
647
648
649/*
650 * parse the source unit recursively until it reaches to a terminal
651 * or a branched unit.
652 */
86e07d34 653static int check_input_term(struct mixer_build *state, int id, struct usb_audio_term *term)
1da177e4 654{
09414207 655 int err;
23caaf19 656 void *p1;
1da177e4
LT
657
658 memset(term, 0, sizeof(*term));
659 while ((p1 = find_audio_control_unit(state, id)) != NULL) {
23caaf19 660 unsigned char *hdr = p1;
1da177e4 661 term->id = id;
23caaf19 662 switch (hdr[2]) {
de48c7bc 663 case UAC_INPUT_TERMINAL:
23caaf19
DM
664 if (state->mixer->protocol == UAC_VERSION_1) {
665 struct uac_input_terminal_descriptor *d = p1;
666 term->type = le16_to_cpu(d->wTerminalType);
667 term->channels = d->bNrChannels;
668 term->chconfig = le16_to_cpu(d->wChannelConfig);
669 term->name = d->iTerminal;
670 } else { /* UAC_VERSION_2 */
671 struct uac2_input_terminal_descriptor *d = p1;
672 term->type = le16_to_cpu(d->wTerminalType);
673 term->channels = d->bNrChannels;
674 term->chconfig = le32_to_cpu(d->bmChannelConfig);
675 term->name = d->iTerminal;
09414207
DM
676
677 /* call recursively to get the clock selectors */
678 err = check_input_term(state, d->bCSourceID, term);
679 if (err < 0)
680 return err;
23caaf19 681 }
1da177e4 682 return 0;
23caaf19
DM
683 case UAC_FEATURE_UNIT: {
684 /* the header is the same for v1 and v2 */
685 struct uac_feature_unit_descriptor *d = p1;
5e688883 686 id = d->bSourceID;
1da177e4 687 break; /* continue to parse */
23caaf19
DM
688 }
689 case UAC_MIXER_UNIT: {
690 struct uac_mixer_unit_descriptor *d = p1;
691 term->type = d->bDescriptorSubtype << 16; /* virtual type */
692 term->channels = uac_mixer_unit_bNrChannels(d);
693 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
694 term->name = uac_mixer_unit_iMixer(d);
1da177e4 695 return 0;
23caaf19 696 }
09414207
DM
697 case UAC_SELECTOR_UNIT:
698 case UAC2_CLOCK_SELECTOR: {
23caaf19 699 struct uac_selector_unit_descriptor *d = p1;
1da177e4 700 /* call recursively to retrieve the channel info */
23caaf19 701 if (check_input_term(state, d->baSourceID[0], term) < 0)
1da177e4 702 return -ENODEV;
23caaf19 703 term->type = d->bDescriptorSubtype << 16; /* virtual type */
1da177e4 704 term->id = id;
23caaf19 705 term->name = uac_selector_unit_iSelector(d);
1da177e4 706 return 0;
23caaf19 707 }
69da9bcb
DM
708 case UAC1_PROCESSING_UNIT:
709 case UAC1_EXTENSION_UNIT: {
23caaf19
DM
710 struct uac_processing_unit_descriptor *d = p1;
711 if (d->bNrInPins) {
712 id = d->baSourceID[0];
1da177e4
LT
713 break; /* continue to parse */
714 }
23caaf19
DM
715 term->type = d->bDescriptorSubtype << 16; /* virtual type */
716 term->channels = uac_processing_unit_bNrChannels(d);
717 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
718 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
1da177e4 719 return 0;
23caaf19 720 }
09414207
DM
721 case UAC2_CLOCK_SOURCE: {
722 struct uac_clock_source_descriptor *d = p1;
723 term->type = d->bDescriptorSubtype << 16; /* virtual type */
724 term->id = id;
725 term->name = d->iClockSource;
726 return 0;
727 }
1da177e4
LT
728 default:
729 return -ENODEV;
730 }
731 }
732 return -ENODEV;
733}
734
735
736/*
737 * Feature Unit
738 */
739
740/* feature unit control information */
741struct usb_feature_control_info {
742 const char *name;
743 unsigned int type; /* control type (mute, volume, etc.) */
744};
745
746static struct usb_feature_control_info audio_feature_info[] = {
2e0281d1
DM
747 { "Mute", USB_MIXER_INV_BOOLEAN },
748 { "Volume", USB_MIXER_S16 },
1da177e4
LT
749 { "Tone Control - Bass", USB_MIXER_S8 },
750 { "Tone Control - Mid", USB_MIXER_S8 },
751 { "Tone Control - Treble", USB_MIXER_S8 },
752 { "Graphic Equalizer", USB_MIXER_S8 }, /* FIXME: not implemeted yet */
2e0281d1
DM
753 { "Auto Gain Control", USB_MIXER_BOOLEAN },
754 { "Delay Control", USB_MIXER_U16 },
755 { "Bass Boost", USB_MIXER_BOOLEAN },
756 { "Loudness", USB_MIXER_BOOLEAN },
757 /* UAC2 specific */
758 { "Input Gain Control", USB_MIXER_U16 },
759 { "Input Gain Pad Control", USB_MIXER_BOOLEAN },
760 { "Phase Inverter Control", USB_MIXER_BOOLEAN },
1da177e4
LT
761};
762
763
764/* private_free callback */
86e07d34 765static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
1da177e4 766{
4d572776
JJ
767 kfree(kctl->private_data);
768 kctl->private_data = NULL;
1da177e4
LT
769}
770
771
772/*
773 * interface to ALSA control for feature/mixer units
774 */
775
776/*
777 * retrieve the minimum and maximum values for the specified control
778 */
86e07d34 779static int get_min_max(struct usb_mixer_elem_info *cval, int default_min)
1da177e4
LT
780{
781 /* for failsafe */
782 cval->min = default_min;
783 cval->max = cval->min + 1;
784 cval->res = 1;
c3a3e040 785 cval->dBmin = cval->dBmax = 0;
1da177e4
LT
786
787 if (cval->val_type == USB_MIXER_BOOLEAN ||
788 cval->val_type == USB_MIXER_INV_BOOLEAN) {
789 cval->initialized = 1;
790 } else {
791 int minchn = 0;
792 if (cval->cmask) {
793 int i;
794 for (i = 0; i < MAX_CHANNELS; i++)
795 if (cval->cmask & (1 << i)) {
796 minchn = i + 1;
797 break;
798 }
799 }
de48c7bc
DM
800 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
801 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
84957a8a 802 snd_printd(KERN_ERR "%d:%d: cannot get min/max values for control %d (id %d)\n",
1a4e34e6 803 cval->id, snd_usb_ctrl_intf(cval->mixer->chip), cval->control, cval->id);
1da177e4
LT
804 return -EINVAL;
805 }
de48c7bc 806 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0) {
1da177e4
LT
807 cval->res = 1;
808 } else {
809 int last_valid_res = cval->res;
810
811 while (cval->res > 1) {
7b1eda22
DM
812 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
813 (cval->control << 8) | minchn, cval->res / 2) < 0)
1da177e4
LT
814 break;
815 cval->res /= 2;
816 }
de48c7bc 817 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0)
1da177e4
LT
818 cval->res = last_valid_res;
819 }
820 if (cval->res == 0)
821 cval->res = 1;
14790f1c
TI
822
823 /* Additional checks for the proper resolution
824 *
825 * Some devices report smaller resolutions than actually
826 * reacting. They don't return errors but simply clip
827 * to the lower aligned value.
828 */
829 if (cval->min + cval->res < cval->max) {
830 int last_valid_res = cval->res;
831 int saved, test, check;
641b4879 832 get_cur_mix_raw(cval, minchn, &saved);
14790f1c
TI
833 for (;;) {
834 test = saved;
835 if (test < cval->max)
836 test += cval->res;
837 else
838 test -= cval->res;
839 if (test < cval->min || test > cval->max ||
641b4879
TI
840 set_cur_mix_value(cval, minchn, 0, test) ||
841 get_cur_mix_raw(cval, minchn, &check)) {
14790f1c
TI
842 cval->res = last_valid_res;
843 break;
844 }
845 if (test == check)
846 break;
847 cval->res *= 2;
848 }
641b4879 849 set_cur_mix_value(cval, minchn, 0, saved);
14790f1c
TI
850 }
851
1da177e4
LT
852 cval->initialized = 1;
853 }
c3a3e040
JK
854
855 /* USB descriptions contain the dB scale in 1/256 dB unit
856 * while ALSA TLV contains in 1/100 dB unit
857 */
858 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
859 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
860 if (cval->dBmin > cval->dBmax) {
861 /* something is wrong; assume it's either from/to 0dB */
862 if (cval->dBmin < 0)
863 cval->dBmax = 0;
864 else if (cval->dBmin > 0)
865 cval->dBmin = 0;
866 if (cval->dBmin > cval->dBmax) {
867 /* totally crap, return an error */
868 return -EINVAL;
869 }
870 }
871
1da177e4
LT
872 return 0;
873}
874
875
876/* get a feature/mixer unit info */
86e07d34 877static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1da177e4 878{
86e07d34 879 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
880
881 if (cval->val_type == USB_MIXER_BOOLEAN ||
882 cval->val_type == USB_MIXER_INV_BOOLEAN)
883 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
884 else
885 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
886 uinfo->count = cval->channels;
887 if (cval->val_type == USB_MIXER_BOOLEAN ||
888 cval->val_type == USB_MIXER_INV_BOOLEAN) {
889 uinfo->value.integer.min = 0;
890 uinfo->value.integer.max = 1;
891 } else {
892 if (! cval->initialized)
893 get_min_max(cval, 0);
894 uinfo->value.integer.min = 0;
14790f1c
TI
895 uinfo->value.integer.max =
896 (cval->max - cval->min + cval->res - 1) / cval->res;
1da177e4
LT
897 }
898 return 0;
899}
900
901/* get the current value from feature/mixer unit */
86e07d34 902static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 903{
86e07d34 904 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
905 int c, cnt, val, err;
906
641b4879 907 ucontrol->value.integer.value[0] = cval->min;
1da177e4
LT
908 if (cval->cmask) {
909 cnt = 0;
910 for (c = 0; c < MAX_CHANNELS; c++) {
641b4879
TI
911 if (!(cval->cmask & (1 << c)))
912 continue;
913 err = get_cur_mix_value(cval, c + 1, cnt, &val);
914 if (err < 0)
915 return cval->mixer->ignore_ctl_error ? 0 : err;
916 val = get_relative_value(cval, val);
917 ucontrol->value.integer.value[cnt] = val;
918 cnt++;
1da177e4 919 }
641b4879 920 return 0;
1da177e4
LT
921 } else {
922 /* master channel */
641b4879
TI
923 err = get_cur_mix_value(cval, 0, 0, &val);
924 if (err < 0)
925 return cval->mixer->ignore_ctl_error ? 0 : err;
1da177e4
LT
926 val = get_relative_value(cval, val);
927 ucontrol->value.integer.value[0] = val;
928 }
929 return 0;
930}
931
932/* put the current value to feature/mixer unit */
86e07d34 933static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 934{
86e07d34 935 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
936 int c, cnt, val, oval, err;
937 int changed = 0;
938
939 if (cval->cmask) {
940 cnt = 0;
941 for (c = 0; c < MAX_CHANNELS; c++) {
641b4879
TI
942 if (!(cval->cmask & (1 << c)))
943 continue;
944 err = get_cur_mix_value(cval, c + 1, cnt, &oval);
945 if (err < 0)
946 return cval->mixer->ignore_ctl_error ? 0 : err;
947 val = ucontrol->value.integer.value[cnt];
948 val = get_abs_value(cval, val);
949 if (oval != val) {
950 set_cur_mix_value(cval, c + 1, cnt, val);
951 changed = 1;
1da177e4 952 }
641b4879 953 cnt++;
1da177e4
LT
954 }
955 } else {
956 /* master channel */
641b4879 957 err = get_cur_mix_value(cval, 0, 0, &oval);
1da177e4 958 if (err < 0)
641b4879 959 return cval->mixer->ignore_ctl_error ? 0 : err;
1da177e4
LT
960 val = ucontrol->value.integer.value[0];
961 val = get_abs_value(cval, val);
962 if (val != oval) {
641b4879 963 set_cur_mix_value(cval, 0, 0, val);
1da177e4
LT
964 changed = 1;
965 }
966 }
967 return changed;
968}
969
86e07d34 970static struct snd_kcontrol_new usb_feature_unit_ctl = {
1da177e4
LT
971 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
972 .name = "", /* will be filled later manually */
973 .info = mixer_ctl_feature_info,
974 .get = mixer_ctl_feature_get,
975 .put = mixer_ctl_feature_put,
976};
977
23caaf19
DM
978/* the read-only variant */
979static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
980 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
981 .name = "", /* will be filled later manually */
982 .info = mixer_ctl_feature_info,
983 .get = mixer_ctl_feature_get,
984 .put = NULL,
985};
986
1da177e4
LT
987
988/*
989 * build a feature control
990 */
991
08d1e635
TI
992static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
993{
994 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
995}
996
99fc8645 997static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
1da177e4 998 unsigned int ctl_mask, int control,
23caaf19 999 struct usb_audio_term *iterm, int unitid,
a6a33259 1000 int readonly_mask)
1da177e4 1001{
99fc8645 1002 struct uac_feature_unit_descriptor *desc = raw_desc;
1da177e4
LT
1003 unsigned int len = 0;
1004 int mapped_name = 0;
99fc8645 1005 int nameid = uac_feature_unit_iFeature(desc);
86e07d34
TI
1006 struct snd_kcontrol *kctl;
1007 struct usb_mixer_elem_info *cval;
c3a3e040 1008 const struct usbmix_name_map *map;
80acefff 1009 unsigned int range;
1da177e4
LT
1010
1011 control++; /* change from zero-based to 1-based value */
1012
65f25da4 1013 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
1da177e4
LT
1014 /* FIXME: not supported yet */
1015 return;
1016 }
1017
c3a3e040
JK
1018 map = find_map(state, unitid, control);
1019 if (check_ignored_ctl(map))
1da177e4
LT
1020 return;
1021
561b220a 1022 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1da177e4
LT
1023 if (! cval) {
1024 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1025 return;
1026 }
84957a8a 1027 cval->mixer = state->mixer;
1da177e4
LT
1028 cval->id = unitid;
1029 cval->control = control;
1030 cval->cmask = ctl_mask;
1031 cval->val_type = audio_feature_info[control-1].type;
a6a33259 1032 if (ctl_mask == 0) {
1da177e4 1033 cval->channels = 1; /* master channel */
a6a33259
DM
1034 cval->master_readonly = readonly_mask;
1035 } else {
1da177e4
LT
1036 int i, c = 0;
1037 for (i = 0; i < 16; i++)
1038 if (ctl_mask & (1 << i))
1039 c++;
1040 cval->channels = c;
a6a33259 1041 cval->ch_readonly = readonly_mask;
1da177e4
LT
1042 }
1043
1044 /* get min/max values */
1045 get_min_max(cval, 0);
1046
a6a33259
DM
1047 /* if all channels in the mask are marked read-only, make the control
1048 * read-only. set_cur_mix_value() will check the mask again and won't
1049 * issue write commands to read-only channels. */
1050 if (cval->channels == readonly_mask)
23caaf19
DM
1051 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1052 else
1053 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1054
1da177e4
LT
1055 if (! kctl) {
1056 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1057 kfree(cval);
1058 return;
1059 }
1060 kctl->private_free = usb_mixer_elem_free;
1061
c3a3e040 1062 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
1da177e4
LT
1063 mapped_name = len != 0;
1064 if (! len && nameid)
c3a3e040
JK
1065 len = snd_usb_copy_string_desc(state, nameid,
1066 kctl->id.name, sizeof(kctl->id.name));
1da177e4
LT
1067
1068 switch (control) {
65f25da4
DM
1069 case UAC_FU_MUTE:
1070 case UAC_FU_VOLUME:
1da177e4
LT
1071 /* determine the control name. the rule is:
1072 * - if a name id is given in descriptor, use it.
1073 * - if the connected input can be determined, then use the name
1074 * of terminal type.
1075 * - if the connected output can be determined, use it.
1076 * - otherwise, anonymous name.
1077 */
1078 if (! len) {
1079 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 1);
1080 if (! len)
1081 len = get_term_name(state, &state->oterm, kctl->id.name, sizeof(kctl->id.name), 1);
1082 if (! len)
1083 len = snprintf(kctl->id.name, sizeof(kctl->id.name),
1084 "Feature %d", unitid);
1085 }
1086 /* determine the stream direction:
1087 * if the connected output is USB stream, then it's likely a
1088 * capture stream. otherwise it should be playback (hopefully :)
1089 */
1090 if (! mapped_name && ! (state->oterm.type >> 16)) {
1091 if ((state->oterm.type & 0xff00) == 0x0100) {
08d1e635 1092 len = append_ctl_name(kctl, " Capture");
1da177e4 1093 } else {
08d1e635 1094 len = append_ctl_name(kctl, " Playback");
1da177e4
LT
1095 }
1096 }
65f25da4 1097 append_ctl_name(kctl, control == UAC_FU_MUTE ?
08d1e635 1098 " Switch" : " Volume");
65f25da4 1099 if (control == UAC_FU_VOLUME) {
7bc5ba7e
TI
1100 kctl->tlv.c = mixer_vol_tlv;
1101 kctl->vd[0].access |=
1102 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1103 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
c3a3e040 1104 check_mapped_dB(map, cval);
7bc5ba7e 1105 }
1da177e4
LT
1106 break;
1107
1108 default:
1109 if (! len)
1110 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1111 sizeof(kctl->id.name));
1112 break;
1113 }
1114
2cf313ee 1115 /* volume control quirks */
27d10f56
CL
1116 switch (state->chip->usb_id) {
1117 case USB_ID(0x0471, 0x0101):
1118 case USB_ID(0x0471, 0x0104):
1119 case USB_ID(0x0471, 0x0105):
1120 case USB_ID(0x0672, 0x1041):
2cf313ee
AF
1121 /* quirk for UDA1321/N101.
1122 * note that detection between firmware 2.1.1.7 (N101)
1123 * and later 2.1.1.21 is not very clear from datasheets.
1124 * I hope that the min value is -15360 for newer firmware --jk
1125 */
27d10f56
CL
1126 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
1127 cval->min == -15616) {
2cf313ee
AF
1128 snd_printk(KERN_INFO
1129 "set volume quirk for UDA1321/N101 chip\n");
27d10f56
CL
1130 cval->max = -256;
1131 }
2cf313ee
AF
1132 break;
1133
1134 case USB_ID(0x046d, 0x09a4):
1135 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1136 snd_printk(KERN_INFO
1137 "set volume quirk for QuickCam E3500\n");
1138 cval->min = 6080;
1139 cval->max = 8768;
1140 cval->res = 192;
1141 }
1142 break;
1143
bc3a8a01 1144 case USB_ID(0x046d, 0x0808):
a5c7d797
AF
1145 case USB_ID(0x046d, 0x0809):
1146 case USB_ID(0x046d, 0x0991):
1147 /* Most audio usb devices lie about volume resolution.
1148 * Most Logitech webcams have res = 384.
1149 * Proboly there is some logitech magic behind this number --fishor
1150 */
1151 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1152 snd_printk(KERN_INFO
1153 "set resolution quirk: cval->res = 384\n");
1154 cval->res = 384;
1155 }
1156 break;
1157
1da177e4
LT
1158 }
1159
80acefff
AF
1160 range = (cval->max - cval->min) / cval->res;
1161 /* Are there devices with volume range more than 255? I use a bit more
1162 * to be sure. 384 is a resolution magic number found on Logitech
1163 * devices. It will definitively catch all buggy Logitech devices.
1164 */
1165 if (range > 384) {
1166 snd_printk(KERN_WARNING "usb_audio: Warning! Unlikely big "
1167 "volume range (=%u), cval->res is probably wrong.",
1168 range);
1169 snd_printk(KERN_WARNING "usb_audio: [%d] FU [%s] ch = %d, "
1170 "val = %d/%d/%d", cval->id,
1171 kctl->id.name, cval->channels,
1172 cval->min, cval->max, cval->res);
1173 }
1174
1da177e4
LT
1175 snd_printdd(KERN_INFO "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1176 cval->id, kctl->id.name, cval->channels, cval->min, cval->max, cval->res);
84957a8a 1177 add_control_to_empty(state, kctl);
1da177e4
LT
1178}
1179
1180
1181
1182/*
1183 * parse a feature unit
1184 *
25985edc 1185 * most of controls are defined here.
1da177e4 1186 */
28e1b773 1187static int parse_audio_feature_unit(struct mixer_build *state, int unitid, void *_ftr)
1da177e4
LT
1188{
1189 int channels, i, j;
86e07d34 1190 struct usb_audio_term iterm;
1da177e4
LT
1191 unsigned int master_bits, first_ch_bits;
1192 int err, csize;
23caaf19
DM
1193 struct uac_feature_unit_descriptor *hdr = _ftr;
1194 __u8 *bmaControls;
1195
1196 if (state->mixer->protocol == UAC_VERSION_1) {
1197 csize = hdr->bControlSize;
1198 channels = (hdr->bLength - 7) / csize - 1;
1199 bmaControls = hdr->bmaControls;
1200 } else {
1201 struct uac2_feature_unit_descriptor *ftr = _ftr;
1202 csize = 4;
e8d0fee7 1203 channels = (hdr->bLength - 6) / 4 - 1;
23caaf19
DM
1204 bmaControls = ftr->bmaControls;
1205 }
1da177e4 1206
23caaf19 1207 if (hdr->bLength < 7 || !csize || hdr->bLength < 7 + csize) {
de48c7bc 1208 snd_printk(KERN_ERR "usbaudio: unit %u: invalid UAC_FEATURE_UNIT descriptor\n", unitid);
1da177e4
LT
1209 return -EINVAL;
1210 }
1211
1212 /* parse the source unit */
23caaf19 1213 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
1da177e4
LT
1214 return err;
1215
1216 /* determine the input source type and name */
23caaf19 1217 if (check_input_term(state, hdr->bSourceID, &iterm) < 0)
1da177e4
LT
1218 return -EINVAL;
1219
23caaf19 1220 master_bits = snd_usb_combine_bytes(bmaControls, csize);
0c3cee57
JK
1221 /* master configuration quirks */
1222 switch (state->chip->usb_id) {
1223 case USB_ID(0x08bb, 0x2702):
1224 snd_printk(KERN_INFO
1225 "usbmixer: master volume quirk for PCM2702 chip\n");
1226 /* disable non-functional volume control */
65f25da4 1227 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
0c3cee57
JK
1228 break;
1229 }
1da177e4 1230 if (channels > 0)
23caaf19 1231 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
1da177e4
LT
1232 else
1233 first_ch_bits = 0;
23caaf19
DM
1234
1235 if (state->mixer->protocol == UAC_VERSION_1) {
1236 /* check all control types */
1237 for (i = 0; i < 10; i++) {
1238 unsigned int ch_bits = 0;
1239 for (j = 0; j < channels; j++) {
1240 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
1241 if (mask & (1 << i))
1242 ch_bits |= (1 << j);
1243 }
1244 /* audio class v1 controls are never read-only */
1245 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
1246 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, 0);
1247 if (master_bits & (1 << i))
1248 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid, 0);
1249 }
1250 } else { /* UAC_VERSION_2 */
1251 for (i = 0; i < 30/2; i++) {
23caaf19
DM
1252 unsigned int ch_bits = 0;
1253 unsigned int ch_read_only = 0;
1254
1255 for (j = 0; j < channels; j++) {
1256 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
dcbe7bcf 1257 if (uac2_control_is_readable(mask, i)) {
23caaf19 1258 ch_bits |= (1 << j);
dcbe7bcf 1259 if (!uac2_control_is_writeable(mask, i))
23caaf19
DM
1260 ch_read_only |= (1 << j);
1261 }
1262 }
1263
a6a33259
DM
1264 /* NOTE: build_feature_ctl() will mark the control read-only if all channels
1265 * are marked read-only in the descriptors. Otherwise, the control will be
1266 * reported as writeable, but the driver will not actually issue a write
1267 * command for read-only channels */
23caaf19 1268 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
a6a33259 1269 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, ch_read_only);
dcbe7bcf 1270 if (uac2_control_is_readable(master_bits, i))
23caaf19 1271 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
dcbe7bcf 1272 !uac2_control_is_writeable(master_bits, i));
1da177e4 1273 }
1da177e4
LT
1274 }
1275
1276 return 0;
1277}
1278
1279
1280/*
1281 * Mixer Unit
1282 */
1283
1284/*
1285 * build a mixer unit control
1286 *
1287 * the callbacks are identical with feature unit.
1288 * input channel number (zero based) is given in control field instead.
1289 */
1290
99fc8645
DM
1291static void build_mixer_unit_ctl(struct mixer_build *state,
1292 struct uac_mixer_unit_descriptor *desc,
1da177e4 1293 int in_pin, int in_ch, int unitid,
86e07d34 1294 struct usb_audio_term *iterm)
1da177e4 1295{
86e07d34 1296 struct usb_mixer_elem_info *cval;
99fc8645 1297 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
1da177e4 1298 unsigned int i, len;
86e07d34 1299 struct snd_kcontrol *kctl;
c3a3e040 1300 const struct usbmix_name_map *map;
1da177e4 1301
c3a3e040
JK
1302 map = find_map(state, unitid, 0);
1303 if (check_ignored_ctl(map))
1da177e4
LT
1304 return;
1305
561b220a 1306 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1da177e4
LT
1307 if (! cval)
1308 return;
1309
84957a8a 1310 cval->mixer = state->mixer;
1da177e4
LT
1311 cval->id = unitid;
1312 cval->control = in_ch + 1; /* based on 1 */
1313 cval->val_type = USB_MIXER_S16;
1314 for (i = 0; i < num_outs; i++) {
23caaf19 1315 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol), in_ch, i, num_outs)) {
1da177e4
LT
1316 cval->cmask |= (1 << i);
1317 cval->channels++;
1318 }
1319 }
1320
1321 /* get min/max values */
1322 get_min_max(cval, 0);
1323
1324 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1325 if (! kctl) {
1326 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1327 kfree(cval);
1328 return;
1329 }
1330 kctl->private_free = usb_mixer_elem_free;
1331
c3a3e040 1332 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
1da177e4
LT
1333 if (! len)
1334 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0);
1335 if (! len)
1336 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
08d1e635 1337 append_ctl_name(kctl, " Volume");
1da177e4
LT
1338
1339 snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n",
1340 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
84957a8a 1341 add_control_to_empty(state, kctl);
1da177e4
LT
1342}
1343
1344
1345/*
1346 * parse a mixer unit
1347 */
99fc8645 1348static int parse_audio_mixer_unit(struct mixer_build *state, int unitid, void *raw_desc)
1da177e4 1349{
99fc8645 1350 struct uac_mixer_unit_descriptor *desc = raw_desc;
86e07d34 1351 struct usb_audio_term iterm;
1da177e4
LT
1352 int input_pins, num_ins, num_outs;
1353 int pin, ich, err;
1354
99fc8645 1355 if (desc->bLength < 11 || ! (input_pins = desc->bNrInPins) || ! (num_outs = uac_mixer_unit_bNrChannels(desc))) {
1da177e4
LT
1356 snd_printk(KERN_ERR "invalid MIXER UNIT descriptor %d\n", unitid);
1357 return -EINVAL;
1358 }
1359 /* no bmControls field (e.g. Maya44) -> ignore */
99fc8645 1360 if (desc->bLength <= 10 + input_pins) {
1da177e4
LT
1361 snd_printdd(KERN_INFO "MU %d has no bmControls field\n", unitid);
1362 return 0;
1363 }
1364
1365 num_ins = 0;
1366 ich = 0;
1367 for (pin = 0; pin < input_pins; pin++) {
99fc8645 1368 err = parse_audio_unit(state, desc->baSourceID[pin]);
1da177e4
LT
1369 if (err < 0)
1370 return err;
99fc8645 1371 err = check_input_term(state, desc->baSourceID[pin], &iterm);
1da177e4
LT
1372 if (err < 0)
1373 return err;
1374 num_ins += iterm.channels;
1375 for (; ich < num_ins; ++ich) {
1376 int och, ich_has_controls = 0;
1377
1378 for (och = 0; och < num_outs; ++och) {
23caaf19 1379 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol),
1da177e4
LT
1380 ich, och, num_outs)) {
1381 ich_has_controls = 1;
1382 break;
1383 }
1384 }
1385 if (ich_has_controls)
1386 build_mixer_unit_ctl(state, desc, pin, ich,
1387 unitid, &iterm);
1388 }
1389 }
1390 return 0;
1391}
1392
1393
1394/*
1395 * Processing Unit / Extension Unit
1396 */
1397
1398/* get callback for processing/extension unit */
86e07d34 1399static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 1400{
86e07d34 1401 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
1402 int err, val;
1403
1404 err = get_cur_ctl_value(cval, cval->control << 8, &val);
84957a8a 1405 if (err < 0 && cval->mixer->ignore_ctl_error) {
1da177e4
LT
1406 ucontrol->value.integer.value[0] = cval->min;
1407 return 0;
1408 }
1409 if (err < 0)
1410 return err;
1411 val = get_relative_value(cval, val);
1412 ucontrol->value.integer.value[0] = val;
1413 return 0;
1414}
1415
1416/* put callback for processing/extension unit */
86e07d34 1417static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 1418{
86e07d34 1419 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
1420 int val, oval, err;
1421
1422 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1423 if (err < 0) {
84957a8a 1424 if (cval->mixer->ignore_ctl_error)
1da177e4
LT
1425 return 0;
1426 return err;
1427 }
1428 val = ucontrol->value.integer.value[0];
1429 val = get_abs_value(cval, val);
1430 if (val != oval) {
1431 set_cur_ctl_value(cval, cval->control << 8, val);
1432 return 1;
1433 }
1434 return 0;
1435}
1436
1437/* alsa control interface for processing/extension unit */
86e07d34 1438static struct snd_kcontrol_new mixer_procunit_ctl = {
1da177e4
LT
1439 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1440 .name = "", /* will be filled later */
1441 .info = mixer_ctl_feature_info,
1442 .get = mixer_ctl_procunit_get,
1443 .put = mixer_ctl_procunit_put,
1444};
1445
1446
1447/*
1448 * predefined data for processing units
1449 */
1450struct procunit_value_info {
1451 int control;
1452 char *suffix;
1453 int val_type;
1454 int min_value;
1455};
1456
1457struct procunit_info {
1458 int type;
1459 char *name;
1460 struct procunit_value_info *values;
1461};
1462
1463static struct procunit_value_info updown_proc_info[] = {
65f25da4
DM
1464 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1465 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
1da177e4
LT
1466 { 0 }
1467};
1468static struct procunit_value_info prologic_proc_info[] = {
65f25da4
DM
1469 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1470 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
1da177e4
LT
1471 { 0 }
1472};
1473static struct procunit_value_info threed_enh_proc_info[] = {
65f25da4
DM
1474 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1475 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
1da177e4
LT
1476 { 0 }
1477};
1478static struct procunit_value_info reverb_proc_info[] = {
65f25da4
DM
1479 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1480 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1481 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1482 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
1da177e4
LT
1483 { 0 }
1484};
1485static struct procunit_value_info chorus_proc_info[] = {
65f25da4
DM
1486 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1487 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1488 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1489 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
1da177e4
LT
1490 { 0 }
1491};
1492static struct procunit_value_info dcr_proc_info[] = {
65f25da4
DM
1493 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1494 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1495 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1496 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1497 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1498 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
1da177e4
LT
1499 { 0 }
1500};
1501
1502static struct procunit_info procunits[] = {
65f25da4
DM
1503 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1504 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1505 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1506 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1507 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1508 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
1da177e4
LT
1509 { 0 },
1510};
7d2b451e
SK
1511/*
1512 * predefined data for extension units
1513 */
1514static struct procunit_value_info clock_rate_xu_info[] = {
e213e9cf
DM
1515 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1516 { 0 }
7d2b451e
SK
1517};
1518static struct procunit_value_info clock_source_xu_info[] = {
1519 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1520 { 0 }
1521};
1522static struct procunit_value_info spdif_format_xu_info[] = {
1523 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1524 { 0 }
1525};
1526static struct procunit_value_info soft_limit_xu_info[] = {
1527 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1528 { 0 }
1529};
1530static struct procunit_info extunits[] = {
1531 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1532 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1533 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1534 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1535 { 0 }
1536};
1da177e4
LT
1537/*
1538 * build a processing/extension unit
1539 */
99fc8645 1540static int build_audio_procunit(struct mixer_build *state, int unitid, void *raw_desc, struct procunit_info *list, char *name)
1da177e4 1541{
99fc8645
DM
1542 struct uac_processing_unit_descriptor *desc = raw_desc;
1543 int num_ins = desc->bNrInPins;
86e07d34
TI
1544 struct usb_mixer_elem_info *cval;
1545 struct snd_kcontrol *kctl;
1da177e4
LT
1546 int i, err, nameid, type, len;
1547 struct procunit_info *info;
1548 struct procunit_value_info *valinfo;
c3a3e040 1549 const struct usbmix_name_map *map;
1da177e4
LT
1550 static struct procunit_value_info default_value_info[] = {
1551 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1552 { 0 }
1553 };
1554 static struct procunit_info default_info = {
1555 0, NULL, default_value_info
1556 };
1557
23caaf19
DM
1558 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1559 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
1da177e4
LT
1560 snd_printk(KERN_ERR "invalid %s descriptor (id %d)\n", name, unitid);
1561 return -EINVAL;
1562 }
1563
1564 for (i = 0; i < num_ins; i++) {
99fc8645 1565 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
1da177e4
LT
1566 return err;
1567 }
1568
99fc8645 1569 type = le16_to_cpu(desc->wProcessType);
1da177e4
LT
1570 for (info = list; info && info->type; info++)
1571 if (info->type == type)
1572 break;
1573 if (! info || ! info->type)
1574 info = &default_info;
1575
1576 for (valinfo = info->values; valinfo->control; valinfo++) {
23caaf19 1577 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
99fc8645
DM
1578
1579 if (! (controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
1da177e4 1580 continue;
c3a3e040
JK
1581 map = find_map(state, unitid, valinfo->control);
1582 if (check_ignored_ctl(map))
1da177e4 1583 continue;
561b220a 1584 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1da177e4
LT
1585 if (! cval) {
1586 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1587 return -ENOMEM;
1588 }
84957a8a 1589 cval->mixer = state->mixer;
1da177e4
LT
1590 cval->id = unitid;
1591 cval->control = valinfo->control;
1592 cval->val_type = valinfo->val_type;
1593 cval->channels = 1;
1594
1595 /* get min/max values */
65f25da4 1596 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
23caaf19 1597 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
1da177e4
LT
1598 /* FIXME: hard-coded */
1599 cval->min = 1;
99fc8645 1600 cval->max = control_spec[0];
1da177e4
LT
1601 cval->res = 1;
1602 cval->initialized = 1;
7d2b451e
SK
1603 } else {
1604 if (type == USB_XU_CLOCK_RATE) {
1cdfa9f3 1605 /* E-Mu USB 0404/0202/TrackerPre/0204
7d2b451e
SK
1606 * samplerate control quirk
1607 */
1608 cval->min = 0;
1609 cval->max = 5;
1610 cval->res = 1;
1611 cval->initialized = 1;
1612 } else
1613 get_min_max(cval, valinfo->min_value);
1614 }
1da177e4
LT
1615
1616 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
1617 if (! kctl) {
1618 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1619 kfree(cval);
1620 return -ENOMEM;
1621 }
1622 kctl->private_free = usb_mixer_elem_free;
1623
c3a3e040
JK
1624 if (check_mapped_name(map, kctl->id.name,
1625 sizeof(kctl->id.name)))
1626 /* nothing */ ;
1da177e4
LT
1627 else if (info->name)
1628 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1629 else {
23caaf19 1630 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
1da177e4
LT
1631 len = 0;
1632 if (nameid)
1633 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1634 if (! len)
1635 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1636 }
08d1e635
TI
1637 append_ctl_name(kctl, " ");
1638 append_ctl_name(kctl, valinfo->suffix);
1da177e4
LT
1639
1640 snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n",
1641 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
84957a8a 1642 if ((err = add_control_to_empty(state, kctl)) < 0)
1da177e4
LT
1643 return err;
1644 }
1645 return 0;
1646}
1647
1648
99fc8645 1649static int parse_audio_processing_unit(struct mixer_build *state, int unitid, void *raw_desc)
1da177e4 1650{
99fc8645 1651 return build_audio_procunit(state, unitid, raw_desc, procunits, "Processing Unit");
1da177e4
LT
1652}
1653
99fc8645 1654static int parse_audio_extension_unit(struct mixer_build *state, int unitid, void *raw_desc)
1da177e4 1655{
99fc8645
DM
1656 /* Note that we parse extension units with processing unit descriptors.
1657 * That's ok as the layout is the same */
1658 return build_audio_procunit(state, unitid, raw_desc, extunits, "Extension Unit");
1da177e4
LT
1659}
1660
1661
1662/*
1663 * Selector Unit
1664 */
1665
1666/* info callback for selector unit
1667 * use an enumerator type for routing
1668 */
86e07d34 1669static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1da177e4 1670{
86e07d34 1671 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2a1803a7 1672 const char **itemlist = (const char **)kcontrol->private_value;
1da177e4 1673
5e246b85
TI
1674 if (snd_BUG_ON(!itemlist))
1675 return -EINVAL;
2a1803a7 1676 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
1da177e4
LT
1677}
1678
1679/* get callback for selector unit */
86e07d34 1680static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 1681{
86e07d34 1682 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
1683 int val, err;
1684
09414207 1685 err = get_cur_ctl_value(cval, cval->control << 8, &val);
1da177e4 1686 if (err < 0) {
84957a8a 1687 if (cval->mixer->ignore_ctl_error) {
1da177e4
LT
1688 ucontrol->value.enumerated.item[0] = 0;
1689 return 0;
1690 }
1691 return err;
1692 }
1693 val = get_relative_value(cval, val);
1694 ucontrol->value.enumerated.item[0] = val;
1695 return 0;
1696}
1697
1698/* put callback for selector unit */
86e07d34 1699static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 1700{
86e07d34 1701 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
1702 int val, oval, err;
1703
09414207 1704 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1da177e4 1705 if (err < 0) {
84957a8a 1706 if (cval->mixer->ignore_ctl_error)
1da177e4
LT
1707 return 0;
1708 return err;
1709 }
1710 val = ucontrol->value.enumerated.item[0];
1711 val = get_abs_value(cval, val);
1712 if (val != oval) {
09414207 1713 set_cur_ctl_value(cval, cval->control << 8, val);
1da177e4
LT
1714 return 1;
1715 }
1716 return 0;
1717}
1718
1719/* alsa control interface for selector unit */
86e07d34 1720static struct snd_kcontrol_new mixer_selectunit_ctl = {
1da177e4
LT
1721 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1722 .name = "", /* will be filled later */
1723 .info = mixer_ctl_selector_info,
1724 .get = mixer_ctl_selector_get,
1725 .put = mixer_ctl_selector_put,
1726};
1727
1728
1729/* private free callback.
1730 * free both private_data and private_value
1731 */
86e07d34 1732static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
1da177e4
LT
1733{
1734 int i, num_ins = 0;
1735
1736 if (kctl->private_data) {
86e07d34 1737 struct usb_mixer_elem_info *cval = kctl->private_data;
1da177e4
LT
1738 num_ins = cval->max;
1739 kfree(cval);
1740 kctl->private_data = NULL;
1741 }
1742 if (kctl->private_value) {
1743 char **itemlist = (char **)kctl->private_value;
1744 for (i = 0; i < num_ins; i++)
1745 kfree(itemlist[i]);
1746 kfree(itemlist);
1747 kctl->private_value = 0;
1748 }
1749}
1750
1751/*
1752 * parse a selector unit
1753 */
99fc8645 1754static int parse_audio_selector_unit(struct mixer_build *state, int unitid, void *raw_desc)
1da177e4 1755{
99fc8645 1756 struct uac_selector_unit_descriptor *desc = raw_desc;
1da177e4
LT
1757 unsigned int i, nameid, len;
1758 int err;
86e07d34
TI
1759 struct usb_mixer_elem_info *cval;
1760 struct snd_kcontrol *kctl;
c3a3e040 1761 const struct usbmix_name_map *map;
1da177e4
LT
1762 char **namelist;
1763
99fc8645 1764 if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
1da177e4
LT
1765 snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
1766 return -EINVAL;
1767 }
1768
99fc8645
DM
1769 for (i = 0; i < desc->bNrInPins; i++) {
1770 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
1da177e4
LT
1771 return err;
1772 }
1773
99fc8645 1774 if (desc->bNrInPins == 1) /* only one ? nonsense! */
1da177e4
LT
1775 return 0;
1776
c3a3e040
JK
1777 map = find_map(state, unitid, 0);
1778 if (check_ignored_ctl(map))
1da177e4
LT
1779 return 0;
1780
561b220a 1781 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1da177e4
LT
1782 if (! cval) {
1783 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1784 return -ENOMEM;
1785 }
84957a8a 1786 cval->mixer = state->mixer;
1da177e4
LT
1787 cval->id = unitid;
1788 cval->val_type = USB_MIXER_U8;
1789 cval->channels = 1;
1790 cval->min = 1;
99fc8645 1791 cval->max = desc->bNrInPins;
1da177e4
LT
1792 cval->res = 1;
1793 cval->initialized = 1;
1794
09414207
DM
1795 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
1796 cval->control = UAC2_CX_CLOCK_SELECTOR;
1797 else
1798 cval->control = 0;
1799
99fc8645 1800 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
1da177e4
LT
1801 if (! namelist) {
1802 snd_printk(KERN_ERR "cannot malloc\n");
1803 kfree(cval);
1804 return -ENOMEM;
1805 }
1806#define MAX_ITEM_NAME_LEN 64
99fc8645 1807 for (i = 0; i < desc->bNrInPins; i++) {
86e07d34 1808 struct usb_audio_term iterm;
1da177e4
LT
1809 len = 0;
1810 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
1811 if (! namelist[i]) {
1812 snd_printk(KERN_ERR "cannot malloc\n");
7fbe3ca5 1813 while (i--)
1da177e4
LT
1814 kfree(namelist[i]);
1815 kfree(namelist);
1816 kfree(cval);
1817 return -ENOMEM;
1818 }
8e062ec7
CL
1819 len = check_mapped_selector_name(state, unitid, i, namelist[i],
1820 MAX_ITEM_NAME_LEN);
99fc8645 1821 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
1da177e4
LT
1822 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
1823 if (! len)
1824 sprintf(namelist[i], "Input %d", i);
1825 }
1826
1827 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
1828 if (! kctl) {
1829 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
878b4789 1830 kfree(namelist);
1da177e4
LT
1831 kfree(cval);
1832 return -ENOMEM;
1833 }
1834 kctl->private_value = (unsigned long)namelist;
1835 kctl->private_free = usb_mixer_selector_elem_free;
1836
99fc8645 1837 nameid = uac_selector_unit_iSelector(desc);
c3a3e040 1838 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
1da177e4
LT
1839 if (len)
1840 ;
1841 else if (nameid)
1842 snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1843 else {
1844 len = get_term_name(state, &state->oterm,
1845 kctl->id.name, sizeof(kctl->id.name), 0);
1846 if (! len)
1847 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
1848
09414207
DM
1849 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
1850 append_ctl_name(kctl, " Clock Source");
1851 else if ((state->oterm.type & 0xff00) == 0x0100)
08d1e635 1852 append_ctl_name(kctl, " Capture Source");
1da177e4 1853 else
08d1e635 1854 append_ctl_name(kctl, " Playback Source");
1da177e4
LT
1855 }
1856
1857 snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
99fc8645 1858 cval->id, kctl->id.name, desc->bNrInPins);
84957a8a 1859 if ((err = add_control_to_empty(state, kctl)) < 0)
1da177e4
LT
1860 return err;
1861
1862 return 0;
1863}
1864
1865
1866/*
1867 * parse an audio unit recursively
1868 */
1869
86e07d34 1870static int parse_audio_unit(struct mixer_build *state, int unitid)
1da177e4
LT
1871{
1872 unsigned char *p1;
1873
1874 if (test_and_set_bit(unitid, state->unitbitmap))
1875 return 0; /* the unit already visited */
1876
1877 p1 = find_audio_control_unit(state, unitid);
1878 if (!p1) {
1879 snd_printk(KERN_ERR "usbaudio: unit %d not found!\n", unitid);
1880 return -EINVAL;
1881 }
1882
1883 switch (p1[2]) {
de48c7bc 1884 case UAC_INPUT_TERMINAL:
09414207 1885 case UAC2_CLOCK_SOURCE:
1da177e4 1886 return 0; /* NOP */
de48c7bc 1887 case UAC_MIXER_UNIT:
1da177e4 1888 return parse_audio_mixer_unit(state, unitid, p1);
de48c7bc 1889 case UAC_SELECTOR_UNIT:
09414207 1890 case UAC2_CLOCK_SELECTOR:
1da177e4 1891 return parse_audio_selector_unit(state, unitid, p1);
de48c7bc 1892 case UAC_FEATURE_UNIT:
1da177e4 1893 return parse_audio_feature_unit(state, unitid, p1);
69da9bcb 1894 case UAC1_PROCESSING_UNIT:
23caaf19
DM
1895 /* UAC2_EFFECT_UNIT has the same value */
1896 if (state->mixer->protocol == UAC_VERSION_1)
1897 return parse_audio_processing_unit(state, unitid, p1);
1898 else
1899 return 0; /* FIXME - effect units not implemented yet */
69da9bcb 1900 case UAC1_EXTENSION_UNIT:
23caaf19
DM
1901 /* UAC2_PROCESSING_UNIT_V2 has the same value */
1902 if (state->mixer->protocol == UAC_VERSION_1)
1903 return parse_audio_extension_unit(state, unitid, p1);
1904 else /* UAC_VERSION_2 */
1905 return parse_audio_processing_unit(state, unitid, p1);
1da177e4
LT
1906 default:
1907 snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
1908 return -EINVAL;
1909 }
1910}
1911
84957a8a
CL
1912static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
1913{
6639b6c2
CL
1914 kfree(mixer->id_elems);
1915 if (mixer->urb) {
1916 kfree(mixer->urb->transfer_buffer);
1917 usb_free_urb(mixer->urb);
1918 }
68df9de1 1919 usb_free_urb(mixer->rc_urb);
b259b10c 1920 kfree(mixer->rc_setup_packet);
84957a8a
CL
1921 kfree(mixer);
1922}
1923
86e07d34 1924static int snd_usb_mixer_dev_free(struct snd_device *device)
84957a8a
CL
1925{
1926 struct usb_mixer_interface *mixer = device->device_data;
1927 snd_usb_mixer_free(mixer);
1928 return 0;
1929}
1930
1da177e4
LT
1931/*
1932 * create mixer controls
1933 *
de48c7bc 1934 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
1da177e4 1935 */
84957a8a 1936static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
1da177e4 1937{
86e07d34 1938 struct mixer_build state;
1da177e4
LT
1939 int err;
1940 const struct usbmix_ctl_map *map;
84957a8a 1941 struct usb_host_interface *hostif;
23caaf19 1942 void *p;
1da177e4 1943
3d8d4dcf 1944 hostif = mixer->chip->ctrl_intf;
1da177e4 1945 memset(&state, 0, sizeof(state));
84957a8a
CL
1946 state.chip = mixer->chip;
1947 state.mixer = mixer;
1da177e4
LT
1948 state.buffer = hostif->extra;
1949 state.buflen = hostif->extralen;
1da177e4
LT
1950
1951 /* check the mapping table */
27d10f56
CL
1952 for (map = usbmix_ctl_maps; map->id; map++) {
1953 if (map->id == state.chip->usb_id) {
1da177e4 1954 state.map = map->map;
8e062ec7 1955 state.selector_map = map->selector_map;
84957a8a 1956 mixer->ignore_ctl_error = map->ignore_ctl_error;
1da177e4
LT
1957 break;
1958 }
1959 }
1da177e4 1960
23caaf19
DM
1961 p = NULL;
1962 while ((p = snd_usb_find_csint_desc(hostif->extra, hostif->extralen, p, UAC_OUTPUT_TERMINAL)) != NULL) {
1963 if (mixer->protocol == UAC_VERSION_1) {
69da9bcb 1964 struct uac1_output_terminal_descriptor *desc = p;
23caaf19
DM
1965
1966 if (desc->bLength < sizeof(*desc))
1967 continue; /* invalid descriptor? */
1968 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1969 state.oterm.id = desc->bTerminalID;
1970 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1971 state.oterm.name = desc->iTerminal;
1972 err = parse_audio_unit(&state, desc->bSourceID);
1973 if (err < 0)
1974 return err;
1975 } else { /* UAC_VERSION_2 */
1976 struct uac2_output_terminal_descriptor *desc = p;
1977
1978 if (desc->bLength < sizeof(*desc))
1979 continue; /* invalid descriptor? */
1980 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1981 state.oterm.id = desc->bTerminalID;
1982 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1983 state.oterm.name = desc->iTerminal;
1984 err = parse_audio_unit(&state, desc->bSourceID);
1985 if (err < 0)
1986 return err;
09414207
DM
1987
1988 /* for UAC2, use the same approach to also add the clock selectors */
1989 err = parse_audio_unit(&state, desc->bCSourceID);
1990 if (err < 0)
1991 return err;
23caaf19 1992 }
1da177e4 1993 }
23caaf19 1994
1da177e4
LT
1995 return 0;
1996}
84957a8a 1997
7b1eda22 1998void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
6639b6c2 1999{
86e07d34 2000 struct usb_mixer_elem_info *info;
6639b6c2
CL
2001
2002 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
2003 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2004 info->elem_id);
2005}
2006
ebfdeea3
JK
2007static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
2008 int unitid,
2009 struct usb_mixer_elem_info *cval)
2010{
2011 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
2012 "S8", "U8", "S16", "U16"};
2013 snd_iprintf(buffer, " Unit: %i\n", unitid);
2014 if (cval->elem_id)
2015 snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
2016 cval->elem_id->name, cval->elem_id->index);
2017 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
2018 "channels=%i, type=\"%s\"\n", cval->id,
2019 cval->control, cval->cmask, cval->channels,
2020 val_types[cval->val_type]);
2021 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
2022 cval->min, cval->max, cval->dBmin, cval->dBmax);
2023}
2024
2025static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
2026 struct snd_info_buffer *buffer)
2027{
2028 struct snd_usb_audio *chip = entry->private_data;
2029 struct usb_mixer_interface *mixer;
2030 struct usb_mixer_elem_info *cval;
2031 int unitid;
2032
2033 list_for_each_entry(mixer, &chip->mixer_list, list) {
2034 snd_iprintf(buffer,
7affdc17 2035 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
3d8d4dcf 2036 chip->usb_id, snd_usb_ctrl_intf(chip),
7affdc17 2037 mixer->ignore_ctl_error);
ebfdeea3
JK
2038 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
2039 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
2040 for (cval = mixer->id_elems[unitid]; cval;
2041 cval = cval->next_id_elem)
2042 snd_usb_mixer_dump_cval(buffer, unitid, cval);
2043 }
2044 }
2045}
2046
e213e9cf
DM
2047static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
2048 int attribute, int value, int index)
2049{
2050 struct usb_mixer_elem_info *info;
2051 __u8 unitid = (index >> 8) & 0xff;
2052 __u8 control = (value >> 8) & 0xff;
2053 __u8 channel = value & 0xff;
2054
2055 if (channel >= MAX_CHANNELS) {
2056 snd_printk(KERN_DEBUG "%s(): bogus channel number %d\n",
2057 __func__, channel);
2058 return;
2059 }
2060
2061 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem) {
2062 if (info->control != control)
2063 continue;
2064
2065 switch (attribute) {
2066 case UAC2_CS_CUR:
2067 /* invalidate cache, so the value is read from the device */
2068 if (channel)
2069 info->cached &= ~(1 << channel);
2070 else /* master channel */
2071 info->cached = 0;
2072
2073 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2074 info->elem_id);
2075 break;
2076
2077 case UAC2_CS_RANGE:
2078 /* TODO */
2079 break;
2080
2081 case UAC2_CS_MEM:
2082 /* TODO */
2083 break;
2084
2085 default:
2086 snd_printk(KERN_DEBUG "unknown attribute %d in interrupt\n",
2087 attribute);
2088 break;
2089 } /* switch */
2090 }
2091}
2092
2093static void snd_usb_mixer_interrupt(struct urb *urb)
6639b6c2
CL
2094{
2095 struct usb_mixer_interface *mixer = urb->context;
e213e9cf 2096 int len = urb->actual_length;
edf7de31 2097 int ustatus = urb->status;
e213e9cf 2098
edf7de31 2099 if (ustatus != 0)
e213e9cf 2100 goto requeue;
6639b6c2 2101
e213e9cf
DM
2102 if (mixer->protocol == UAC_VERSION_1) {
2103 struct uac1_status_word *status;
6639b6c2 2104
e213e9cf
DM
2105 for (status = urb->transfer_buffer;
2106 len >= sizeof(*status);
2107 len -= sizeof(*status), status++) {
6639b6c2 2108 snd_printd(KERN_DEBUG "status interrupt: %02x %02x\n",
e213e9cf
DM
2109 status->bStatusType,
2110 status->bOriginator);
2111
6639b6c2 2112 /* ignore any notifications not from the control interface */
e213e9cf
DM
2113 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2114 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
6639b6c2 2115 continue;
e213e9cf
DM
2116
2117 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2118 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
b259b10c 2119 else
e213e9cf
DM
2120 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2121 }
2122 } else { /* UAC_VERSION_2 */
2123 struct uac2_interrupt_data_msg *msg;
2124
2125 for (msg = urb->transfer_buffer;
2126 len >= sizeof(*msg);
2127 len -= sizeof(*msg), msg++) {
2128 /* drop vendor specific and endpoint requests */
2129 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2130 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2131 continue;
2132
2133 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2134 le16_to_cpu(msg->wValue),
2135 le16_to_cpu(msg->wIndex));
6639b6c2
CL
2136 }
2137 }
e213e9cf
DM
2138
2139requeue:
edf7de31 2140 if (ustatus != -ENOENT && ustatus != -ECONNRESET && ustatus != -ESHUTDOWN) {
6639b6c2
CL
2141 urb->dev = mixer->chip->dev;
2142 usb_submit_urb(urb, GFP_ATOMIC);
2143 }
2144}
2145
edf7de31
ON
2146/* stop any bus activity of a mixer */
2147void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
2148{
2149 usb_kill_urb(mixer->urb);
2150 usb_kill_urb(mixer->rc_urb);
2151}
2152
2153int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
2154{
2155 int err;
2156
2157 if (mixer->urb) {
2158 err = usb_submit_urb(mixer->urb, GFP_NOIO);
2159 if (err < 0)
2160 return err;
2161 }
2162
2163 return 0;
2164}
2165
6639b6c2
CL
2166/* create the handler for the optional status interrupt endpoint */
2167static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2168{
2169 struct usb_host_interface *hostif;
2170 struct usb_endpoint_descriptor *ep;
2171 void *transfer_buffer;
2172 int buffer_length;
2173 unsigned int epnum;
2174
3d8d4dcf 2175 hostif = mixer->chip->ctrl_intf;
6639b6c2
CL
2176 /* we need one interrupt input endpoint */
2177 if (get_iface_desc(hostif)->bNumEndpoints < 1)
2178 return 0;
2179 ep = get_endpoint(hostif, 0);
913ae5a2 2180 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
6639b6c2
CL
2181 return 0;
2182
42a6e66f 2183 epnum = usb_endpoint_num(ep);
6639b6c2
CL
2184 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2185 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2186 if (!transfer_buffer)
2187 return -ENOMEM;
2188 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2189 if (!mixer->urb) {
2190 kfree(transfer_buffer);
2191 return -ENOMEM;
2192 }
2193 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2194 usb_rcvintpipe(mixer->chip->dev, epnum),
2195 transfer_buffer, buffer_length,
e213e9cf 2196 snd_usb_mixer_interrupt, mixer, ep->bInterval);
6639b6c2
CL
2197 usb_submit_urb(mixer->urb, GFP_KERNEL);
2198 return 0;
2199}
2200
7a9b8063
TI
2201int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2202 int ignore_error)
84957a8a 2203{
86e07d34 2204 static struct snd_device_ops dev_ops = {
84957a8a
CL
2205 .dev_free = snd_usb_mixer_dev_free
2206 };
2207 struct usb_mixer_interface *mixer;
ebfdeea3 2208 struct snd_info_entry *entry;
7b8a043f 2209 struct usb_host_interface *host_iface;
23caaf19 2210 int err;
84957a8a
CL
2211
2212 strcpy(chip->card->mixername, "USB Mixer");
2213
561b220a 2214 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
84957a8a
CL
2215 if (!mixer)
2216 return -ENOMEM;
2217 mixer->chip = chip;
7a9b8063 2218 mixer->ignore_ctl_error = ignore_error;
291186e0
JK
2219 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2220 GFP_KERNEL);
6639b6c2
CL
2221 if (!mixer->id_elems) {
2222 kfree(mixer);
2223 return -ENOMEM;
2224 }
84957a8a 2225
7b8a043f 2226 host_iface = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
a2acad82
CL
2227 switch (get_iface_desc(host_iface)->bInterfaceProtocol) {
2228 case UAC_VERSION_1:
2229 default:
2230 mixer->protocol = UAC_VERSION_1;
2231 break;
2232 case UAC_VERSION_2:
2233 mixer->protocol = UAC_VERSION_2;
2234 break;
2235 }
7b8a043f 2236
6639b6c2 2237 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
93446edc
CL
2238 (err = snd_usb_mixer_status_create(mixer)) < 0)
2239 goto _error;
84957a8a 2240
7b1eda22 2241 snd_usb_mixer_apply_create_quirk(mixer);
468b8fde 2242
84957a8a 2243 err = snd_device_new(chip->card, SNDRV_DEV_LOWLEVEL, mixer, &dev_ops);
93446edc
CL
2244 if (err < 0)
2245 goto _error;
ebfdeea3
JK
2246
2247 if (list_empty(&chip->mixer_list) &&
2248 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2249 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2250
84957a8a
CL
2251 list_add(&mixer->list, &chip->mixer_list);
2252 return 0;
93446edc
CL
2253
2254_error:
2255 snd_usb_mixer_free(mixer);
2256 return err;
84957a8a
CL
2257}
2258
2259void snd_usb_mixer_disconnect(struct list_head *p)
2260{
6639b6c2 2261 struct usb_mixer_interface *mixer;
7b1eda22 2262
6639b6c2 2263 mixer = list_entry(p, struct usb_mixer_interface, list);
68df9de1
MK
2264 usb_kill_urb(mixer->urb);
2265 usb_kill_urb(mixer->rc_urb);
84957a8a 2266}