ALSA: usb-audio: move assignment of chip->ctrl_intf
[deliverable/linux.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) {
c3a3e040 1100 check_mapped_dB(map, cval);
59bb7f0e
TI
1101 if (cval->dBmin < cval->dBmax) {
1102 kctl->tlv.c = mixer_vol_tlv;
1103 kctl->vd[0].access |=
1104 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1105 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1106 }
7bc5ba7e 1107 }
1da177e4
LT
1108 break;
1109
1110 default:
1111 if (! len)
1112 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1113 sizeof(kctl->id.name));
1114 break;
1115 }
1116
2cf313ee 1117 /* volume control quirks */
27d10f56
CL
1118 switch (state->chip->usb_id) {
1119 case USB_ID(0x0471, 0x0101):
1120 case USB_ID(0x0471, 0x0104):
1121 case USB_ID(0x0471, 0x0105):
1122 case USB_ID(0x0672, 0x1041):
2cf313ee
AF
1123 /* quirk for UDA1321/N101.
1124 * note that detection between firmware 2.1.1.7 (N101)
1125 * and later 2.1.1.21 is not very clear from datasheets.
1126 * I hope that the min value is -15360 for newer firmware --jk
1127 */
27d10f56
CL
1128 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
1129 cval->min == -15616) {
2cf313ee
AF
1130 snd_printk(KERN_INFO
1131 "set volume quirk for UDA1321/N101 chip\n");
27d10f56
CL
1132 cval->max = -256;
1133 }
2cf313ee
AF
1134 break;
1135
1136 case USB_ID(0x046d, 0x09a4):
1137 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1138 snd_printk(KERN_INFO
1139 "set volume quirk for QuickCam E3500\n");
1140 cval->min = 6080;
1141 cval->max = 8768;
1142 cval->res = 192;
1143 }
1144 break;
1145
bc3a8a01 1146 case USB_ID(0x046d, 0x0808):
a5c7d797
AF
1147 case USB_ID(0x046d, 0x0809):
1148 case USB_ID(0x046d, 0x0991):
1149 /* Most audio usb devices lie about volume resolution.
1150 * Most Logitech webcams have res = 384.
1151 * Proboly there is some logitech magic behind this number --fishor
1152 */
1153 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1154 snd_printk(KERN_INFO
1155 "set resolution quirk: cval->res = 384\n");
1156 cval->res = 384;
1157 }
1158 break;
1159
1da177e4
LT
1160 }
1161
80acefff
AF
1162 range = (cval->max - cval->min) / cval->res;
1163 /* Are there devices with volume range more than 255? I use a bit more
1164 * to be sure. 384 is a resolution magic number found on Logitech
1165 * devices. It will definitively catch all buggy Logitech devices.
1166 */
1167 if (range > 384) {
1168 snd_printk(KERN_WARNING "usb_audio: Warning! Unlikely big "
1169 "volume range (=%u), cval->res is probably wrong.",
1170 range);
1171 snd_printk(KERN_WARNING "usb_audio: [%d] FU [%s] ch = %d, "
1172 "val = %d/%d/%d", cval->id,
1173 kctl->id.name, cval->channels,
1174 cval->min, cval->max, cval->res);
1175 }
1176
1da177e4
LT
1177 snd_printdd(KERN_INFO "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1178 cval->id, kctl->id.name, cval->channels, cval->min, cval->max, cval->res);
84957a8a 1179 add_control_to_empty(state, kctl);
1da177e4
LT
1180}
1181
1182
1183
1184/*
1185 * parse a feature unit
1186 *
25985edc 1187 * most of controls are defined here.
1da177e4 1188 */
28e1b773 1189static int parse_audio_feature_unit(struct mixer_build *state, int unitid, void *_ftr)
1da177e4
LT
1190{
1191 int channels, i, j;
86e07d34 1192 struct usb_audio_term iterm;
1da177e4
LT
1193 unsigned int master_bits, first_ch_bits;
1194 int err, csize;
23caaf19
DM
1195 struct uac_feature_unit_descriptor *hdr = _ftr;
1196 __u8 *bmaControls;
1197
1198 if (state->mixer->protocol == UAC_VERSION_1) {
1199 csize = hdr->bControlSize;
1200 channels = (hdr->bLength - 7) / csize - 1;
1201 bmaControls = hdr->bmaControls;
1202 } else {
1203 struct uac2_feature_unit_descriptor *ftr = _ftr;
1204 csize = 4;
e8d0fee7 1205 channels = (hdr->bLength - 6) / 4 - 1;
23caaf19
DM
1206 bmaControls = ftr->bmaControls;
1207 }
1da177e4 1208
23caaf19 1209 if (hdr->bLength < 7 || !csize || hdr->bLength < 7 + csize) {
de48c7bc 1210 snd_printk(KERN_ERR "usbaudio: unit %u: invalid UAC_FEATURE_UNIT descriptor\n", unitid);
1da177e4
LT
1211 return -EINVAL;
1212 }
1213
1214 /* parse the source unit */
23caaf19 1215 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
1da177e4
LT
1216 return err;
1217
1218 /* determine the input source type and name */
23caaf19 1219 if (check_input_term(state, hdr->bSourceID, &iterm) < 0)
1da177e4
LT
1220 return -EINVAL;
1221
23caaf19 1222 master_bits = snd_usb_combine_bytes(bmaControls, csize);
0c3cee57
JK
1223 /* master configuration quirks */
1224 switch (state->chip->usb_id) {
1225 case USB_ID(0x08bb, 0x2702):
1226 snd_printk(KERN_INFO
1227 "usbmixer: master volume quirk for PCM2702 chip\n");
1228 /* disable non-functional volume control */
65f25da4 1229 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
0c3cee57
JK
1230 break;
1231 }
1da177e4 1232 if (channels > 0)
23caaf19 1233 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
1da177e4
LT
1234 else
1235 first_ch_bits = 0;
23caaf19
DM
1236
1237 if (state->mixer->protocol == UAC_VERSION_1) {
1238 /* check all control types */
1239 for (i = 0; i < 10; i++) {
1240 unsigned int ch_bits = 0;
1241 for (j = 0; j < channels; j++) {
1242 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
1243 if (mask & (1 << i))
1244 ch_bits |= (1 << j);
1245 }
1246 /* audio class v1 controls are never read-only */
1247 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
1248 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, 0);
1249 if (master_bits & (1 << i))
1250 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid, 0);
1251 }
1252 } else { /* UAC_VERSION_2 */
1253 for (i = 0; i < 30/2; i++) {
23caaf19
DM
1254 unsigned int ch_bits = 0;
1255 unsigned int ch_read_only = 0;
1256
1257 for (j = 0; j < channels; j++) {
1258 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
dcbe7bcf 1259 if (uac2_control_is_readable(mask, i)) {
23caaf19 1260 ch_bits |= (1 << j);
dcbe7bcf 1261 if (!uac2_control_is_writeable(mask, i))
23caaf19
DM
1262 ch_read_only |= (1 << j);
1263 }
1264 }
1265
a6a33259
DM
1266 /* NOTE: build_feature_ctl() will mark the control read-only if all channels
1267 * are marked read-only in the descriptors. Otherwise, the control will be
1268 * reported as writeable, but the driver will not actually issue a write
1269 * command for read-only channels */
23caaf19 1270 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
a6a33259 1271 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, ch_read_only);
dcbe7bcf 1272 if (uac2_control_is_readable(master_bits, i))
23caaf19 1273 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
dcbe7bcf 1274 !uac2_control_is_writeable(master_bits, i));
1da177e4 1275 }
1da177e4
LT
1276 }
1277
1278 return 0;
1279}
1280
1281
1282/*
1283 * Mixer Unit
1284 */
1285
1286/*
1287 * build a mixer unit control
1288 *
1289 * the callbacks are identical with feature unit.
1290 * input channel number (zero based) is given in control field instead.
1291 */
1292
99fc8645
DM
1293static void build_mixer_unit_ctl(struct mixer_build *state,
1294 struct uac_mixer_unit_descriptor *desc,
1da177e4 1295 int in_pin, int in_ch, int unitid,
86e07d34 1296 struct usb_audio_term *iterm)
1da177e4 1297{
86e07d34 1298 struct usb_mixer_elem_info *cval;
99fc8645 1299 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
1da177e4 1300 unsigned int i, len;
86e07d34 1301 struct snd_kcontrol *kctl;
c3a3e040 1302 const struct usbmix_name_map *map;
1da177e4 1303
c3a3e040
JK
1304 map = find_map(state, unitid, 0);
1305 if (check_ignored_ctl(map))
1da177e4
LT
1306 return;
1307
561b220a 1308 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1da177e4
LT
1309 if (! cval)
1310 return;
1311
84957a8a 1312 cval->mixer = state->mixer;
1da177e4
LT
1313 cval->id = unitid;
1314 cval->control = in_ch + 1; /* based on 1 */
1315 cval->val_type = USB_MIXER_S16;
1316 for (i = 0; i < num_outs; i++) {
23caaf19 1317 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol), in_ch, i, num_outs)) {
1da177e4
LT
1318 cval->cmask |= (1 << i);
1319 cval->channels++;
1320 }
1321 }
1322
1323 /* get min/max values */
1324 get_min_max(cval, 0);
1325
1326 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1327 if (! kctl) {
1328 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1329 kfree(cval);
1330 return;
1331 }
1332 kctl->private_free = usb_mixer_elem_free;
1333
c3a3e040 1334 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
1da177e4
LT
1335 if (! len)
1336 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0);
1337 if (! len)
1338 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
08d1e635 1339 append_ctl_name(kctl, " Volume");
1da177e4
LT
1340
1341 snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n",
1342 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
84957a8a 1343 add_control_to_empty(state, kctl);
1da177e4
LT
1344}
1345
1346
1347/*
1348 * parse a mixer unit
1349 */
99fc8645 1350static int parse_audio_mixer_unit(struct mixer_build *state, int unitid, void *raw_desc)
1da177e4 1351{
99fc8645 1352 struct uac_mixer_unit_descriptor *desc = raw_desc;
86e07d34 1353 struct usb_audio_term iterm;
1da177e4
LT
1354 int input_pins, num_ins, num_outs;
1355 int pin, ich, err;
1356
99fc8645 1357 if (desc->bLength < 11 || ! (input_pins = desc->bNrInPins) || ! (num_outs = uac_mixer_unit_bNrChannels(desc))) {
1da177e4
LT
1358 snd_printk(KERN_ERR "invalid MIXER UNIT descriptor %d\n", unitid);
1359 return -EINVAL;
1360 }
1361 /* no bmControls field (e.g. Maya44) -> ignore */
99fc8645 1362 if (desc->bLength <= 10 + input_pins) {
1da177e4
LT
1363 snd_printdd(KERN_INFO "MU %d has no bmControls field\n", unitid);
1364 return 0;
1365 }
1366
1367 num_ins = 0;
1368 ich = 0;
1369 for (pin = 0; pin < input_pins; pin++) {
99fc8645 1370 err = parse_audio_unit(state, desc->baSourceID[pin]);
1da177e4
LT
1371 if (err < 0)
1372 return err;
99fc8645 1373 err = check_input_term(state, desc->baSourceID[pin], &iterm);
1da177e4
LT
1374 if (err < 0)
1375 return err;
1376 num_ins += iterm.channels;
1377 for (; ich < num_ins; ++ich) {
1378 int och, ich_has_controls = 0;
1379
1380 for (och = 0; och < num_outs; ++och) {
23caaf19 1381 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol),
1da177e4
LT
1382 ich, och, num_outs)) {
1383 ich_has_controls = 1;
1384 break;
1385 }
1386 }
1387 if (ich_has_controls)
1388 build_mixer_unit_ctl(state, desc, pin, ich,
1389 unitid, &iterm);
1390 }
1391 }
1392 return 0;
1393}
1394
1395
1396/*
1397 * Processing Unit / Extension Unit
1398 */
1399
1400/* get callback for processing/extension unit */
86e07d34 1401static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 1402{
86e07d34 1403 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
1404 int err, val;
1405
1406 err = get_cur_ctl_value(cval, cval->control << 8, &val);
84957a8a 1407 if (err < 0 && cval->mixer->ignore_ctl_error) {
1da177e4
LT
1408 ucontrol->value.integer.value[0] = cval->min;
1409 return 0;
1410 }
1411 if (err < 0)
1412 return err;
1413 val = get_relative_value(cval, val);
1414 ucontrol->value.integer.value[0] = val;
1415 return 0;
1416}
1417
1418/* put callback for processing/extension unit */
86e07d34 1419static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 1420{
86e07d34 1421 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
1422 int val, oval, err;
1423
1424 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1425 if (err < 0) {
84957a8a 1426 if (cval->mixer->ignore_ctl_error)
1da177e4
LT
1427 return 0;
1428 return err;
1429 }
1430 val = ucontrol->value.integer.value[0];
1431 val = get_abs_value(cval, val);
1432 if (val != oval) {
1433 set_cur_ctl_value(cval, cval->control << 8, val);
1434 return 1;
1435 }
1436 return 0;
1437}
1438
1439/* alsa control interface for processing/extension unit */
86e07d34 1440static struct snd_kcontrol_new mixer_procunit_ctl = {
1da177e4
LT
1441 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1442 .name = "", /* will be filled later */
1443 .info = mixer_ctl_feature_info,
1444 .get = mixer_ctl_procunit_get,
1445 .put = mixer_ctl_procunit_put,
1446};
1447
1448
1449/*
1450 * predefined data for processing units
1451 */
1452struct procunit_value_info {
1453 int control;
1454 char *suffix;
1455 int val_type;
1456 int min_value;
1457};
1458
1459struct procunit_info {
1460 int type;
1461 char *name;
1462 struct procunit_value_info *values;
1463};
1464
1465static struct procunit_value_info updown_proc_info[] = {
65f25da4
DM
1466 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1467 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
1da177e4
LT
1468 { 0 }
1469};
1470static struct procunit_value_info prologic_proc_info[] = {
65f25da4
DM
1471 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1472 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
1da177e4
LT
1473 { 0 }
1474};
1475static struct procunit_value_info threed_enh_proc_info[] = {
65f25da4
DM
1476 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1477 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
1da177e4
LT
1478 { 0 }
1479};
1480static struct procunit_value_info reverb_proc_info[] = {
65f25da4
DM
1481 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1482 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1483 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1484 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
1da177e4
LT
1485 { 0 }
1486};
1487static struct procunit_value_info chorus_proc_info[] = {
65f25da4
DM
1488 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1489 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1490 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1491 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
1da177e4
LT
1492 { 0 }
1493};
1494static struct procunit_value_info dcr_proc_info[] = {
65f25da4
DM
1495 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1496 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1497 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1498 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1499 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1500 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
1da177e4
LT
1501 { 0 }
1502};
1503
1504static struct procunit_info procunits[] = {
65f25da4
DM
1505 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1506 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1507 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1508 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1509 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1510 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
1da177e4
LT
1511 { 0 },
1512};
7d2b451e
SK
1513/*
1514 * predefined data for extension units
1515 */
1516static struct procunit_value_info clock_rate_xu_info[] = {
e213e9cf
DM
1517 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1518 { 0 }
7d2b451e
SK
1519};
1520static struct procunit_value_info clock_source_xu_info[] = {
1521 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1522 { 0 }
1523};
1524static struct procunit_value_info spdif_format_xu_info[] = {
1525 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1526 { 0 }
1527};
1528static struct procunit_value_info soft_limit_xu_info[] = {
1529 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1530 { 0 }
1531};
1532static struct procunit_info extunits[] = {
1533 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1534 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1535 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1536 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1537 { 0 }
1538};
1da177e4
LT
1539/*
1540 * build a processing/extension unit
1541 */
99fc8645 1542static int build_audio_procunit(struct mixer_build *state, int unitid, void *raw_desc, struct procunit_info *list, char *name)
1da177e4 1543{
99fc8645
DM
1544 struct uac_processing_unit_descriptor *desc = raw_desc;
1545 int num_ins = desc->bNrInPins;
86e07d34
TI
1546 struct usb_mixer_elem_info *cval;
1547 struct snd_kcontrol *kctl;
1da177e4
LT
1548 int i, err, nameid, type, len;
1549 struct procunit_info *info;
1550 struct procunit_value_info *valinfo;
c3a3e040 1551 const struct usbmix_name_map *map;
1da177e4
LT
1552 static struct procunit_value_info default_value_info[] = {
1553 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1554 { 0 }
1555 };
1556 static struct procunit_info default_info = {
1557 0, NULL, default_value_info
1558 };
1559
23caaf19
DM
1560 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1561 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
1da177e4
LT
1562 snd_printk(KERN_ERR "invalid %s descriptor (id %d)\n", name, unitid);
1563 return -EINVAL;
1564 }
1565
1566 for (i = 0; i < num_ins; i++) {
99fc8645 1567 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
1da177e4
LT
1568 return err;
1569 }
1570
99fc8645 1571 type = le16_to_cpu(desc->wProcessType);
1da177e4
LT
1572 for (info = list; info && info->type; info++)
1573 if (info->type == type)
1574 break;
1575 if (! info || ! info->type)
1576 info = &default_info;
1577
1578 for (valinfo = info->values; valinfo->control; valinfo++) {
23caaf19 1579 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
99fc8645
DM
1580
1581 if (! (controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
1da177e4 1582 continue;
c3a3e040
JK
1583 map = find_map(state, unitid, valinfo->control);
1584 if (check_ignored_ctl(map))
1da177e4 1585 continue;
561b220a 1586 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1da177e4
LT
1587 if (! cval) {
1588 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1589 return -ENOMEM;
1590 }
84957a8a 1591 cval->mixer = state->mixer;
1da177e4
LT
1592 cval->id = unitid;
1593 cval->control = valinfo->control;
1594 cval->val_type = valinfo->val_type;
1595 cval->channels = 1;
1596
1597 /* get min/max values */
65f25da4 1598 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
23caaf19 1599 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
1da177e4
LT
1600 /* FIXME: hard-coded */
1601 cval->min = 1;
99fc8645 1602 cval->max = control_spec[0];
1da177e4
LT
1603 cval->res = 1;
1604 cval->initialized = 1;
7d2b451e
SK
1605 } else {
1606 if (type == USB_XU_CLOCK_RATE) {
1cdfa9f3 1607 /* E-Mu USB 0404/0202/TrackerPre/0204
7d2b451e
SK
1608 * samplerate control quirk
1609 */
1610 cval->min = 0;
1611 cval->max = 5;
1612 cval->res = 1;
1613 cval->initialized = 1;
1614 } else
1615 get_min_max(cval, valinfo->min_value);
1616 }
1da177e4
LT
1617
1618 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
1619 if (! kctl) {
1620 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1621 kfree(cval);
1622 return -ENOMEM;
1623 }
1624 kctl->private_free = usb_mixer_elem_free;
1625
c3a3e040
JK
1626 if (check_mapped_name(map, kctl->id.name,
1627 sizeof(kctl->id.name)))
1628 /* nothing */ ;
1da177e4
LT
1629 else if (info->name)
1630 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1631 else {
23caaf19 1632 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
1da177e4
LT
1633 len = 0;
1634 if (nameid)
1635 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1636 if (! len)
1637 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1638 }
08d1e635
TI
1639 append_ctl_name(kctl, " ");
1640 append_ctl_name(kctl, valinfo->suffix);
1da177e4
LT
1641
1642 snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n",
1643 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
84957a8a 1644 if ((err = add_control_to_empty(state, kctl)) < 0)
1da177e4
LT
1645 return err;
1646 }
1647 return 0;
1648}
1649
1650
99fc8645 1651static int parse_audio_processing_unit(struct mixer_build *state, int unitid, void *raw_desc)
1da177e4 1652{
99fc8645 1653 return build_audio_procunit(state, unitid, raw_desc, procunits, "Processing Unit");
1da177e4
LT
1654}
1655
99fc8645 1656static int parse_audio_extension_unit(struct mixer_build *state, int unitid, void *raw_desc)
1da177e4 1657{
99fc8645
DM
1658 /* Note that we parse extension units with processing unit descriptors.
1659 * That's ok as the layout is the same */
1660 return build_audio_procunit(state, unitid, raw_desc, extunits, "Extension Unit");
1da177e4
LT
1661}
1662
1663
1664/*
1665 * Selector Unit
1666 */
1667
1668/* info callback for selector unit
1669 * use an enumerator type for routing
1670 */
86e07d34 1671static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1da177e4 1672{
86e07d34 1673 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2a1803a7 1674 const char **itemlist = (const char **)kcontrol->private_value;
1da177e4 1675
5e246b85
TI
1676 if (snd_BUG_ON(!itemlist))
1677 return -EINVAL;
2a1803a7 1678 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
1da177e4
LT
1679}
1680
1681/* get callback for selector unit */
86e07d34 1682static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 1683{
86e07d34 1684 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
1685 int val, err;
1686
09414207 1687 err = get_cur_ctl_value(cval, cval->control << 8, &val);
1da177e4 1688 if (err < 0) {
84957a8a 1689 if (cval->mixer->ignore_ctl_error) {
1da177e4
LT
1690 ucontrol->value.enumerated.item[0] = 0;
1691 return 0;
1692 }
1693 return err;
1694 }
1695 val = get_relative_value(cval, val);
1696 ucontrol->value.enumerated.item[0] = val;
1697 return 0;
1698}
1699
1700/* put callback for selector unit */
86e07d34 1701static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 1702{
86e07d34 1703 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1da177e4
LT
1704 int val, oval, err;
1705
09414207 1706 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1da177e4 1707 if (err < 0) {
84957a8a 1708 if (cval->mixer->ignore_ctl_error)
1da177e4
LT
1709 return 0;
1710 return err;
1711 }
1712 val = ucontrol->value.enumerated.item[0];
1713 val = get_abs_value(cval, val);
1714 if (val != oval) {
09414207 1715 set_cur_ctl_value(cval, cval->control << 8, val);
1da177e4
LT
1716 return 1;
1717 }
1718 return 0;
1719}
1720
1721/* alsa control interface for selector unit */
86e07d34 1722static struct snd_kcontrol_new mixer_selectunit_ctl = {
1da177e4
LT
1723 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1724 .name = "", /* will be filled later */
1725 .info = mixer_ctl_selector_info,
1726 .get = mixer_ctl_selector_get,
1727 .put = mixer_ctl_selector_put,
1728};
1729
1730
1731/* private free callback.
1732 * free both private_data and private_value
1733 */
86e07d34 1734static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
1da177e4
LT
1735{
1736 int i, num_ins = 0;
1737
1738 if (kctl->private_data) {
86e07d34 1739 struct usb_mixer_elem_info *cval = kctl->private_data;
1da177e4
LT
1740 num_ins = cval->max;
1741 kfree(cval);
1742 kctl->private_data = NULL;
1743 }
1744 if (kctl->private_value) {
1745 char **itemlist = (char **)kctl->private_value;
1746 for (i = 0; i < num_ins; i++)
1747 kfree(itemlist[i]);
1748 kfree(itemlist);
1749 kctl->private_value = 0;
1750 }
1751}
1752
1753/*
1754 * parse a selector unit
1755 */
99fc8645 1756static int parse_audio_selector_unit(struct mixer_build *state, int unitid, void *raw_desc)
1da177e4 1757{
99fc8645 1758 struct uac_selector_unit_descriptor *desc = raw_desc;
1da177e4
LT
1759 unsigned int i, nameid, len;
1760 int err;
86e07d34
TI
1761 struct usb_mixer_elem_info *cval;
1762 struct snd_kcontrol *kctl;
c3a3e040 1763 const struct usbmix_name_map *map;
1da177e4
LT
1764 char **namelist;
1765
99fc8645 1766 if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
1da177e4
LT
1767 snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
1768 return -EINVAL;
1769 }
1770
99fc8645
DM
1771 for (i = 0; i < desc->bNrInPins; i++) {
1772 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
1da177e4
LT
1773 return err;
1774 }
1775
99fc8645 1776 if (desc->bNrInPins == 1) /* only one ? nonsense! */
1da177e4
LT
1777 return 0;
1778
c3a3e040
JK
1779 map = find_map(state, unitid, 0);
1780 if (check_ignored_ctl(map))
1da177e4
LT
1781 return 0;
1782
561b220a 1783 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1da177e4
LT
1784 if (! cval) {
1785 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1786 return -ENOMEM;
1787 }
84957a8a 1788 cval->mixer = state->mixer;
1da177e4
LT
1789 cval->id = unitid;
1790 cval->val_type = USB_MIXER_U8;
1791 cval->channels = 1;
1792 cval->min = 1;
99fc8645 1793 cval->max = desc->bNrInPins;
1da177e4
LT
1794 cval->res = 1;
1795 cval->initialized = 1;
1796
09414207
DM
1797 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
1798 cval->control = UAC2_CX_CLOCK_SELECTOR;
1799 else
1800 cval->control = 0;
1801
99fc8645 1802 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
1da177e4
LT
1803 if (! namelist) {
1804 snd_printk(KERN_ERR "cannot malloc\n");
1805 kfree(cval);
1806 return -ENOMEM;
1807 }
1808#define MAX_ITEM_NAME_LEN 64
99fc8645 1809 for (i = 0; i < desc->bNrInPins; i++) {
86e07d34 1810 struct usb_audio_term iterm;
1da177e4
LT
1811 len = 0;
1812 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
1813 if (! namelist[i]) {
1814 snd_printk(KERN_ERR "cannot malloc\n");
7fbe3ca5 1815 while (i--)
1da177e4
LT
1816 kfree(namelist[i]);
1817 kfree(namelist);
1818 kfree(cval);
1819 return -ENOMEM;
1820 }
8e062ec7
CL
1821 len = check_mapped_selector_name(state, unitid, i, namelist[i],
1822 MAX_ITEM_NAME_LEN);
99fc8645 1823 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
1da177e4
LT
1824 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
1825 if (! len)
1826 sprintf(namelist[i], "Input %d", i);
1827 }
1828
1829 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
1830 if (! kctl) {
1831 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
878b4789 1832 kfree(namelist);
1da177e4
LT
1833 kfree(cval);
1834 return -ENOMEM;
1835 }
1836 kctl->private_value = (unsigned long)namelist;
1837 kctl->private_free = usb_mixer_selector_elem_free;
1838
99fc8645 1839 nameid = uac_selector_unit_iSelector(desc);
c3a3e040 1840 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
1da177e4
LT
1841 if (len)
1842 ;
1843 else if (nameid)
1844 snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1845 else {
1846 len = get_term_name(state, &state->oterm,
1847 kctl->id.name, sizeof(kctl->id.name), 0);
1848 if (! len)
1849 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
1850
09414207
DM
1851 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
1852 append_ctl_name(kctl, " Clock Source");
1853 else if ((state->oterm.type & 0xff00) == 0x0100)
08d1e635 1854 append_ctl_name(kctl, " Capture Source");
1da177e4 1855 else
08d1e635 1856 append_ctl_name(kctl, " Playback Source");
1da177e4
LT
1857 }
1858
1859 snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
99fc8645 1860 cval->id, kctl->id.name, desc->bNrInPins);
84957a8a 1861 if ((err = add_control_to_empty(state, kctl)) < 0)
1da177e4
LT
1862 return err;
1863
1864 return 0;
1865}
1866
1867
1868/*
1869 * parse an audio unit recursively
1870 */
1871
86e07d34 1872static int parse_audio_unit(struct mixer_build *state, int unitid)
1da177e4
LT
1873{
1874 unsigned char *p1;
1875
1876 if (test_and_set_bit(unitid, state->unitbitmap))
1877 return 0; /* the unit already visited */
1878
1879 p1 = find_audio_control_unit(state, unitid);
1880 if (!p1) {
1881 snd_printk(KERN_ERR "usbaudio: unit %d not found!\n", unitid);
1882 return -EINVAL;
1883 }
1884
1885 switch (p1[2]) {
de48c7bc 1886 case UAC_INPUT_TERMINAL:
09414207 1887 case UAC2_CLOCK_SOURCE:
1da177e4 1888 return 0; /* NOP */
de48c7bc 1889 case UAC_MIXER_UNIT:
1da177e4 1890 return parse_audio_mixer_unit(state, unitid, p1);
de48c7bc 1891 case UAC_SELECTOR_UNIT:
09414207 1892 case UAC2_CLOCK_SELECTOR:
1da177e4 1893 return parse_audio_selector_unit(state, unitid, p1);
de48c7bc 1894 case UAC_FEATURE_UNIT:
1da177e4 1895 return parse_audio_feature_unit(state, unitid, p1);
69da9bcb 1896 case UAC1_PROCESSING_UNIT:
23caaf19
DM
1897 /* UAC2_EFFECT_UNIT has the same value */
1898 if (state->mixer->protocol == UAC_VERSION_1)
1899 return parse_audio_processing_unit(state, unitid, p1);
1900 else
1901 return 0; /* FIXME - effect units not implemented yet */
69da9bcb 1902 case UAC1_EXTENSION_UNIT:
23caaf19
DM
1903 /* UAC2_PROCESSING_UNIT_V2 has the same value */
1904 if (state->mixer->protocol == UAC_VERSION_1)
1905 return parse_audio_extension_unit(state, unitid, p1);
1906 else /* UAC_VERSION_2 */
1907 return parse_audio_processing_unit(state, unitid, p1);
1da177e4
LT
1908 default:
1909 snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
1910 return -EINVAL;
1911 }
1912}
1913
84957a8a
CL
1914static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
1915{
6639b6c2
CL
1916 kfree(mixer->id_elems);
1917 if (mixer->urb) {
1918 kfree(mixer->urb->transfer_buffer);
1919 usb_free_urb(mixer->urb);
1920 }
68df9de1 1921 usb_free_urb(mixer->rc_urb);
b259b10c 1922 kfree(mixer->rc_setup_packet);
84957a8a
CL
1923 kfree(mixer);
1924}
1925
86e07d34 1926static int snd_usb_mixer_dev_free(struct snd_device *device)
84957a8a
CL
1927{
1928 struct usb_mixer_interface *mixer = device->device_data;
1929 snd_usb_mixer_free(mixer);
1930 return 0;
1931}
1932
1da177e4
LT
1933/*
1934 * create mixer controls
1935 *
de48c7bc 1936 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
1da177e4 1937 */
84957a8a 1938static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
1da177e4 1939{
86e07d34 1940 struct mixer_build state;
1da177e4
LT
1941 int err;
1942 const struct usbmix_ctl_map *map;
84957a8a 1943 struct usb_host_interface *hostif;
23caaf19 1944 void *p;
1da177e4 1945
3d8d4dcf 1946 hostif = mixer->chip->ctrl_intf;
1da177e4 1947 memset(&state, 0, sizeof(state));
84957a8a
CL
1948 state.chip = mixer->chip;
1949 state.mixer = mixer;
1da177e4
LT
1950 state.buffer = hostif->extra;
1951 state.buflen = hostif->extralen;
1da177e4
LT
1952
1953 /* check the mapping table */
27d10f56
CL
1954 for (map = usbmix_ctl_maps; map->id; map++) {
1955 if (map->id == state.chip->usb_id) {
1da177e4 1956 state.map = map->map;
8e062ec7 1957 state.selector_map = map->selector_map;
84957a8a 1958 mixer->ignore_ctl_error = map->ignore_ctl_error;
1da177e4
LT
1959 break;
1960 }
1961 }
1da177e4 1962
23caaf19
DM
1963 p = NULL;
1964 while ((p = snd_usb_find_csint_desc(hostif->extra, hostif->extralen, p, UAC_OUTPUT_TERMINAL)) != NULL) {
1965 if (mixer->protocol == UAC_VERSION_1) {
69da9bcb 1966 struct uac1_output_terminal_descriptor *desc = p;
23caaf19
DM
1967
1968 if (desc->bLength < sizeof(*desc))
1969 continue; /* invalid descriptor? */
1970 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1971 state.oterm.id = desc->bTerminalID;
1972 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1973 state.oterm.name = desc->iTerminal;
1974 err = parse_audio_unit(&state, desc->bSourceID);
1975 if (err < 0)
1976 return err;
1977 } else { /* UAC_VERSION_2 */
1978 struct uac2_output_terminal_descriptor *desc = p;
1979
1980 if (desc->bLength < sizeof(*desc))
1981 continue; /* invalid descriptor? */
1982 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1983 state.oterm.id = desc->bTerminalID;
1984 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1985 state.oterm.name = desc->iTerminal;
1986 err = parse_audio_unit(&state, desc->bSourceID);
1987 if (err < 0)
1988 return err;
09414207
DM
1989
1990 /* for UAC2, use the same approach to also add the clock selectors */
1991 err = parse_audio_unit(&state, desc->bCSourceID);
1992 if (err < 0)
1993 return err;
23caaf19 1994 }
1da177e4 1995 }
23caaf19 1996
1da177e4
LT
1997 return 0;
1998}
84957a8a 1999
7b1eda22 2000void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
6639b6c2 2001{
86e07d34 2002 struct usb_mixer_elem_info *info;
6639b6c2
CL
2003
2004 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
2005 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2006 info->elem_id);
2007}
2008
ebfdeea3
JK
2009static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
2010 int unitid,
2011 struct usb_mixer_elem_info *cval)
2012{
2013 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
2014 "S8", "U8", "S16", "U16"};
2015 snd_iprintf(buffer, " Unit: %i\n", unitid);
2016 if (cval->elem_id)
2017 snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
2018 cval->elem_id->name, cval->elem_id->index);
2019 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
2020 "channels=%i, type=\"%s\"\n", cval->id,
2021 cval->control, cval->cmask, cval->channels,
2022 val_types[cval->val_type]);
2023 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
2024 cval->min, cval->max, cval->dBmin, cval->dBmax);
2025}
2026
2027static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
2028 struct snd_info_buffer *buffer)
2029{
2030 struct snd_usb_audio *chip = entry->private_data;
2031 struct usb_mixer_interface *mixer;
2032 struct usb_mixer_elem_info *cval;
2033 int unitid;
2034
2035 list_for_each_entry(mixer, &chip->mixer_list, list) {
2036 snd_iprintf(buffer,
7affdc17 2037 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
3d8d4dcf 2038 chip->usb_id, snd_usb_ctrl_intf(chip),
7affdc17 2039 mixer->ignore_ctl_error);
ebfdeea3
JK
2040 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
2041 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
2042 for (cval = mixer->id_elems[unitid]; cval;
2043 cval = cval->next_id_elem)
2044 snd_usb_mixer_dump_cval(buffer, unitid, cval);
2045 }
2046 }
2047}
2048
e213e9cf
DM
2049static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
2050 int attribute, int value, int index)
2051{
2052 struct usb_mixer_elem_info *info;
2053 __u8 unitid = (index >> 8) & 0xff;
2054 __u8 control = (value >> 8) & 0xff;
2055 __u8 channel = value & 0xff;
2056
2057 if (channel >= MAX_CHANNELS) {
2058 snd_printk(KERN_DEBUG "%s(): bogus channel number %d\n",
2059 __func__, channel);
2060 return;
2061 }
2062
2063 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem) {
2064 if (info->control != control)
2065 continue;
2066
2067 switch (attribute) {
2068 case UAC2_CS_CUR:
2069 /* invalidate cache, so the value is read from the device */
2070 if (channel)
2071 info->cached &= ~(1 << channel);
2072 else /* master channel */
2073 info->cached = 0;
2074
2075 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2076 info->elem_id);
2077 break;
2078
2079 case UAC2_CS_RANGE:
2080 /* TODO */
2081 break;
2082
2083 case UAC2_CS_MEM:
2084 /* TODO */
2085 break;
2086
2087 default:
2088 snd_printk(KERN_DEBUG "unknown attribute %d in interrupt\n",
2089 attribute);
2090 break;
2091 } /* switch */
2092 }
2093}
2094
2095static void snd_usb_mixer_interrupt(struct urb *urb)
6639b6c2
CL
2096{
2097 struct usb_mixer_interface *mixer = urb->context;
e213e9cf 2098 int len = urb->actual_length;
edf7de31 2099 int ustatus = urb->status;
e213e9cf 2100
edf7de31 2101 if (ustatus != 0)
e213e9cf 2102 goto requeue;
6639b6c2 2103
e213e9cf
DM
2104 if (mixer->protocol == UAC_VERSION_1) {
2105 struct uac1_status_word *status;
6639b6c2 2106
e213e9cf
DM
2107 for (status = urb->transfer_buffer;
2108 len >= sizeof(*status);
2109 len -= sizeof(*status), status++) {
6639b6c2 2110 snd_printd(KERN_DEBUG "status interrupt: %02x %02x\n",
e213e9cf
DM
2111 status->bStatusType,
2112 status->bOriginator);
2113
6639b6c2 2114 /* ignore any notifications not from the control interface */
e213e9cf
DM
2115 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2116 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
6639b6c2 2117 continue;
e213e9cf
DM
2118
2119 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2120 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
b259b10c 2121 else
e213e9cf
DM
2122 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2123 }
2124 } else { /* UAC_VERSION_2 */
2125 struct uac2_interrupt_data_msg *msg;
2126
2127 for (msg = urb->transfer_buffer;
2128 len >= sizeof(*msg);
2129 len -= sizeof(*msg), msg++) {
2130 /* drop vendor specific and endpoint requests */
2131 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2132 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2133 continue;
2134
2135 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2136 le16_to_cpu(msg->wValue),
2137 le16_to_cpu(msg->wIndex));
6639b6c2
CL
2138 }
2139 }
e213e9cf
DM
2140
2141requeue:
edf7de31 2142 if (ustatus != -ENOENT && ustatus != -ECONNRESET && ustatus != -ESHUTDOWN) {
6639b6c2
CL
2143 urb->dev = mixer->chip->dev;
2144 usb_submit_urb(urb, GFP_ATOMIC);
2145 }
2146}
2147
edf7de31
ON
2148/* stop any bus activity of a mixer */
2149void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
2150{
2151 usb_kill_urb(mixer->urb);
2152 usb_kill_urb(mixer->rc_urb);
2153}
2154
2155int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
2156{
2157 int err;
2158
2159 if (mixer->urb) {
2160 err = usb_submit_urb(mixer->urb, GFP_NOIO);
2161 if (err < 0)
2162 return err;
2163 }
2164
2165 return 0;
2166}
2167
6639b6c2
CL
2168/* create the handler for the optional status interrupt endpoint */
2169static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2170{
2171 struct usb_host_interface *hostif;
2172 struct usb_endpoint_descriptor *ep;
2173 void *transfer_buffer;
2174 int buffer_length;
2175 unsigned int epnum;
2176
3d8d4dcf 2177 hostif = mixer->chip->ctrl_intf;
6639b6c2
CL
2178 /* we need one interrupt input endpoint */
2179 if (get_iface_desc(hostif)->bNumEndpoints < 1)
2180 return 0;
2181 ep = get_endpoint(hostif, 0);
913ae5a2 2182 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
6639b6c2
CL
2183 return 0;
2184
42a6e66f 2185 epnum = usb_endpoint_num(ep);
6639b6c2
CL
2186 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2187 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2188 if (!transfer_buffer)
2189 return -ENOMEM;
2190 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2191 if (!mixer->urb) {
2192 kfree(transfer_buffer);
2193 return -ENOMEM;
2194 }
2195 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2196 usb_rcvintpipe(mixer->chip->dev, epnum),
2197 transfer_buffer, buffer_length,
e213e9cf 2198 snd_usb_mixer_interrupt, mixer, ep->bInterval);
6639b6c2
CL
2199 usb_submit_urb(mixer->urb, GFP_KERNEL);
2200 return 0;
2201}
2202
7a9b8063
TI
2203int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2204 int ignore_error)
84957a8a 2205{
86e07d34 2206 static struct snd_device_ops dev_ops = {
84957a8a
CL
2207 .dev_free = snd_usb_mixer_dev_free
2208 };
2209 struct usb_mixer_interface *mixer;
ebfdeea3 2210 struct snd_info_entry *entry;
7b8a043f 2211 struct usb_host_interface *host_iface;
23caaf19 2212 int err;
84957a8a
CL
2213
2214 strcpy(chip->card->mixername, "USB Mixer");
2215
561b220a 2216 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
84957a8a
CL
2217 if (!mixer)
2218 return -ENOMEM;
2219 mixer->chip = chip;
7a9b8063 2220 mixer->ignore_ctl_error = ignore_error;
291186e0
JK
2221 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2222 GFP_KERNEL);
6639b6c2
CL
2223 if (!mixer->id_elems) {
2224 kfree(mixer);
2225 return -ENOMEM;
2226 }
84957a8a 2227
7b8a043f 2228 host_iface = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
a2acad82
CL
2229 switch (get_iface_desc(host_iface)->bInterfaceProtocol) {
2230 case UAC_VERSION_1:
2231 default:
2232 mixer->protocol = UAC_VERSION_1;
2233 break;
2234 case UAC_VERSION_2:
2235 mixer->protocol = UAC_VERSION_2;
2236 break;
2237 }
7b8a043f 2238
6639b6c2 2239 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
93446edc
CL
2240 (err = snd_usb_mixer_status_create(mixer)) < 0)
2241 goto _error;
84957a8a 2242
7b1eda22 2243 snd_usb_mixer_apply_create_quirk(mixer);
468b8fde 2244
84957a8a 2245 err = snd_device_new(chip->card, SNDRV_DEV_LOWLEVEL, mixer, &dev_ops);
93446edc
CL
2246 if (err < 0)
2247 goto _error;
ebfdeea3
JK
2248
2249 if (list_empty(&chip->mixer_list) &&
2250 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2251 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2252
84957a8a
CL
2253 list_add(&mixer->list, &chip->mixer_list);
2254 return 0;
93446edc
CL
2255
2256_error:
2257 snd_usb_mixer_free(mixer);
2258 return err;
84957a8a
CL
2259}
2260
2261void snd_usb_mixer_disconnect(struct list_head *p)
2262{
6639b6c2 2263 struct usb_mixer_interface *mixer;
7b1eda22 2264
6639b6c2 2265 mixer = list_entry(p, struct usb_mixer_interface, list);
68df9de1
MK
2266 usb_kill_urb(mixer->urb);
2267 usb_kill_urb(mixer->rc_urb);
84957a8a 2268}
This page took 0.880813 seconds and 5 git commands to generate.