Merge branch 'topic/misc' into for-linus
[pandora-kernel.git] / sound / usb / mixer.c
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
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
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>
51 #include <linux/usb/audio.h>
52 #include <linux/usb/audio-v2.h>
53
54 #include <sound/core.h>
55 #include <sound/control.h>
56 #include <sound/hwdep.h>
57 #include <sound/info.h>
58 #include <sound/tlv.h>
59
60 #include "usbaudio.h"
61 #include "mixer.h"
62 #include "helper.h"
63 #include "mixer_quirks.h"
64 #include "power.h"
65
66 #define MAX_ID_ELEMS    256
67
68 struct usb_audio_term {
69         int id;
70         int type;
71         int channels;
72         unsigned int chconfig;
73         int name;
74 };
75
76 struct usbmix_name_map;
77
78 struct mixer_build {
79         struct snd_usb_audio *chip;
80         struct usb_mixer_interface *mixer;
81         unsigned char *buffer;
82         unsigned int buflen;
83         DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
84         struct usb_audio_term oterm;
85         const struct usbmix_name_map *map;
86         const struct usbmix_selector_map *selector_map;
87 };
88
89 enum {
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
98
99 /*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
100 enum {
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 };
108 enum {
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 };
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  */
120 #include "mixer_maps.c"
121
122 static const struct usbmix_name_map *
123 find_map(struct mixer_build *state, int unitid, int control)
124 {
125         const struct usbmix_name_map *p = state->map;
126
127         if (!p)
128                 return NULL;
129
130         for (p = state->map; p->id; p++) {
131                 if (p->id == unitid &&
132                     (!control || !p->control || control == p->control))
133                         return p;
134         }
135         return NULL;
136 }
137
138 /* get the mapped name if the unit matches */
139 static int
140 check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
141 {
142         if (!p || !p->name)
143                 return 0;
144
145         buflen--;
146         return strlcpy(buf, p->name, buflen);
147 }
148
149 /* check whether the control should be ignored */
150 static inline int
151 check_ignored_ctl(const struct usbmix_name_map *p)
152 {
153         if (!p || p->name || p->dB)
154                 return 0;
155         return 1;
156 }
157
158 /* dB mapping */
159 static 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;
165         }
166 }
167
168 /* get the mapped selector source name */
169 static int check_mapped_selector_name(struct mixer_build *state, int unitid,
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
183 /*
184  * find an audio control unit with the given unit id
185  */
186 static void *find_audio_control_unit(struct mixer_build *state, unsigned char unit)
187 {
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;
198         }
199
200         return NULL;
201 }
202
203 /*
204  * copy a string with the given id
205  */
206 static int snd_usb_copy_string_desc(struct mixer_build *state, int index, char *buf, int maxlen)
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  */
216 static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
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  */
246 static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
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
263 static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
264 {
265         if (! cval->res)
266                 cval->res = 1;
267         if (val < cval->min)
268                 return 0;
269         else if (val >= cval->max)
270                 return (cval->max - cval->min + cval->res - 1) / cval->res;
271         else
272                 return (val - cval->min) / cval->res;
273 }
274
275 static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
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
293 static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
294 {
295         struct snd_usb_audio *chip = cval->mixer->chip;
296         unsigned char buf[2];
297         int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
298         int timeout = 10;
299         int err;
300
301         err = snd_usb_autoresume(cval->mixer->chip);
302         if (err < 0)
303                 return -EIO;
304         while (timeout-- > 0) {
305                 if (snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
306                                     USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
307                                     validx, snd_usb_ctrl_intf(chip) | (cval->id << 8),
308                                     buf, val_len, 100) >= val_len) {
309                         *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
310                         snd_usb_autosuspend(cval->mixer->chip);
311                         return 0;
312                 }
313         }
314         snd_usb_autosuspend(cval->mixer->chip);
315         snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
316                     request, validx, snd_usb_ctrl_intf(chip) | (cval->id << 8), cval->val_type);
317         return -EINVAL;
318 }
319
320 static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
321 {
322         struct snd_usb_audio *chip = cval->mixer->chip;
323         unsigned char buf[2 + 3*sizeof(__u16)]; /* enough space for one range */
324         unsigned char *val;
325         int ret, size;
326         __u8 bRequest;
327
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));
337
338         ret = snd_usb_autoresume(chip) ? -EIO : 0;
339         if (ret)
340                 goto error;
341
342         ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
343                               USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
344                               validx, snd_usb_ctrl_intf(chip) | (cval->id << 8),
345                               buf, size, 1000);
346         snd_usb_autosuspend(chip);
347
348         if (ret < 0) {
349 error:
350                 snd_printk(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
351                            request, validx, snd_usb_ctrl_intf(chip) | (cval->id << 8), cval->val_type);
352                 return ret;
353         }
354
355         /* FIXME: how should we handle multiple triplets here? */
356
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
379 static 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
386 static int get_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int *value)
387 {
388         return get_ctl_value(cval, UAC_GET_CUR, validx, value);
389 }
390
391 /* channel = 0: master, 1 = first channel */
392 static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
393                                   int channel, int *value)
394 {
395         return get_ctl_value(cval, UAC_GET_CUR, (cval->control << 8) | channel, value);
396 }
397
398 static 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)
410                         snd_printd(KERN_ERR "cannot get current value for control %d ch %d: err = %d\n",
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
420 /*
421  * set a mixer value
422  */
423
424 int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
425                                 int request, int validx, int value_set)
426 {
427         struct snd_usb_audio *chip = cval->mixer->chip;
428         unsigned char buf[2];
429         int val_len, err, timeout = 10;
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         }
445
446         value_set = convert_bytes_value(cval, value_set);
447         buf[0] = value_set & 0xff;
448         buf[1] = (value_set >> 8) & 0xff;
449         err = snd_usb_autoresume(chip);
450         if (err < 0)
451                 return -EIO;
452         while (timeout-- > 0)
453                 if (snd_usb_ctl_msg(chip->dev,
454                                     usb_sndctrlpipe(chip->dev, 0), request,
455                                     USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
456                                     validx, snd_usb_ctrl_intf(chip) | (cval->id << 8),
457                                     buf, val_len, 100) >= 0) {
458                         snd_usb_autosuspend(chip);
459                         return 0;
460                 }
461         snd_usb_autosuspend(chip);
462         snd_printdd(KERN_ERR "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
463                     request, validx, snd_usb_ctrl_intf(chip) | (cval->id << 8), cval->val_type, buf[0], buf[1]);
464         return -EINVAL;
465 }
466
467 static int set_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int value)
468 {
469         return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
470 }
471
472 static int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
473                              int index, int value)
474 {
475         int err;
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
486         err = snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, (cval->control << 8) | channel,
487                             value);
488         if (err < 0)
489                 return err;
490         cval->cached |= 1 << channel;
491         cval->cache_val[index] = value;
492         return 0;
493 }
494
495 /*
496  * TLV callback for mixer volume controls
497  */
498 static 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;
502         DECLARE_TLV_DB_MINMAX(scale, 0, 0);
503
504         if (size < sizeof(scale))
505                 return -ENOMEM;
506         scale[2] = cval->dBmin;
507         scale[3] = cval->dBmax;
508         if (copy_to_user(_tlv, scale, sizeof(scale)))
509                 return -EFAULT;
510         return 0;
511 }
512
513 /*
514  * parser routines begin here...
515  */
516
517 static int parse_audio_unit(struct mixer_build *state, int unitid);
518
519
520 /*
521  * check if the input/output channel routing is enabled on the given bitmap.
522  * used for mixer unit parser
523  */
524 static 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
538 static int add_control_to_empty(struct mixer_build *state, struct snd_kcontrol *kctl)
539 {
540         struct usb_mixer_elem_info *cval = kctl->private_data;
541         int err;
542
543         while (snd_ctl_find_id(state->chip->card, &kctl->id))
544                 kctl->id.index++;
545         if ((err = snd_ctl_add(state->chip->card, kctl)) < 0) {
546                 snd_printd(KERN_ERR "cannot add control (err = %d)\n", err);
547                 return err;
548         }
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;
553 }
554
555
556 /*
557  * get a terminal name string
558  */
559
560 static 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
603 static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
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) {
616                 case UAC_SELECTOR_UNIT:
617                         strcpy(name, "Selector"); return 8;
618                 case UAC1_PROCESSING_UNIT:
619                         strcpy(name, "Process Unit"); return 12;
620                 case UAC1_EXTENSION_UNIT:
621                         strcpy(name, "Ext Unit"); return 8;
622                 case UAC_MIXER_UNIT:
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  */
653 static int check_input_term(struct mixer_build *state, int id, struct usb_audio_term *term)
654 {
655         int err;
656         void *p1;
657
658         memset(term, 0, sizeof(*term));
659         while ((p1 = find_audio_control_unit(state, id)) != NULL) {
660                 unsigned char *hdr = p1;
661                 term->id = id;
662                 switch (hdr[2]) {
663                 case UAC_INPUT_TERMINAL:
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;
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;
681                         }
682                         return 0;
683                 case UAC_FEATURE_UNIT: {
684                         /* the header is the same for v1 and v2 */
685                         struct uac_feature_unit_descriptor *d = p1;
686                         id = d->bSourceID;
687                         break; /* continue to parse */
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);
695                         return 0;
696                 }
697                 case UAC_SELECTOR_UNIT:
698                 case UAC2_CLOCK_SELECTOR: {
699                         struct uac_selector_unit_descriptor *d = p1;
700                         /* call recursively to retrieve the channel info */
701                         if (check_input_term(state, d->baSourceID[0], term) < 0)
702                                 return -ENODEV;
703                         term->type = d->bDescriptorSubtype << 16; /* virtual type */
704                         term->id = id;
705                         term->name = uac_selector_unit_iSelector(d);
706                         return 0;
707                 }
708                 case UAC1_PROCESSING_UNIT:
709                 case UAC1_EXTENSION_UNIT: {
710                         struct uac_processing_unit_descriptor *d = p1;
711                         if (d->bNrInPins) {
712                                 id = d->baSourceID[0];
713                                 break; /* continue to parse */
714                         }
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);
719                         return 0;
720                 }
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                 }
728                 default:
729                         return -ENODEV;
730                 }
731         }
732         return -ENODEV;
733 }
734
735
736 /*
737  * Feature Unit
738  */
739
740 /* feature unit control information */
741 struct usb_feature_control_info {
742         const char *name;
743         unsigned int type;      /* control type (mute, volume, etc.) */
744 };
745
746 static struct usb_feature_control_info audio_feature_info[] = {
747         { "Mute",                       USB_MIXER_INV_BOOLEAN },
748         { "Volume",                     USB_MIXER_S16 },
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 */
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 },
761 };
762
763
764 /* private_free callback */
765 static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
766 {
767         kfree(kctl->private_data);
768         kctl->private_data = NULL;
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  */
779 static int get_min_max(struct usb_mixer_elem_info *cval, int default_min)
780 {
781         /* for failsafe */
782         cval->min = default_min;
783         cval->max = cval->min + 1;
784         cval->res = 1;
785         cval->dBmin = cval->dBmax = 0;
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                 }
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) {
802                         snd_printd(KERN_ERR "%d:%d: cannot get min/max values for control %d (id %d)\n",
803                                    cval->id, snd_usb_ctrl_intf(cval->mixer->chip), cval->control, cval->id);
804                         return -EINVAL;
805                 }
806                 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0) {
807                         cval->res = 1;
808                 } else {
809                         int last_valid_res = cval->res;
810
811                         while (cval->res > 1) {
812                                 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
813                                                                 (cval->control << 8) | minchn, cval->res / 2) < 0)
814                                         break;
815                                 cval->res /= 2;
816                         }
817                         if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0)
818                                 cval->res = last_valid_res;
819                 }
820                 if (cval->res == 0)
821                         cval->res = 1;
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;
832                         get_cur_mix_raw(cval, minchn, &saved);
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 ||
840                                     set_cur_mix_value(cval, minchn, 0, test) ||
841                                     get_cur_mix_raw(cval, minchn, &check)) {
842                                         cval->res = last_valid_res;
843                                         break;
844                                 }
845                                 if (test == check)
846                                         break;
847                                 cval->res *= 2;
848                         }
849                         set_cur_mix_value(cval, minchn, 0, saved);
850                 }
851
852                 cval->initialized = 1;
853         }
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
872         return 0;
873 }
874
875
876 /* get a feature/mixer unit info */
877 static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
878 {
879         struct usb_mixer_elem_info *cval = kcontrol->private_data;
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;
895                 uinfo->value.integer.max =
896                         (cval->max - cval->min + cval->res - 1) / cval->res;
897         }
898         return 0;
899 }
900
901 /* get the current value from feature/mixer unit */
902 static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
903 {
904         struct usb_mixer_elem_info *cval = kcontrol->private_data;
905         int c, cnt, val, err;
906
907         ucontrol->value.integer.value[0] = cval->min;
908         if (cval->cmask) {
909                 cnt = 0;
910                 for (c = 0; c < MAX_CHANNELS; c++) {
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++;
919                 }
920                 return 0;
921         } else {
922                 /* master channel */
923                 err = get_cur_mix_value(cval, 0, 0, &val);
924                 if (err < 0)
925                         return cval->mixer->ignore_ctl_error ? 0 : err;
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 */
933 static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
934 {
935         struct usb_mixer_elem_info *cval = kcontrol->private_data;
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++) {
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;
952                         }
953                         cnt++;
954                 }
955         } else {
956                 /* master channel */
957                 err = get_cur_mix_value(cval, 0, 0, &oval);
958                 if (err < 0)
959                         return cval->mixer->ignore_ctl_error ? 0 : err;
960                 val = ucontrol->value.integer.value[0];
961                 val = get_abs_value(cval, val);
962                 if (val != oval) {
963                         set_cur_mix_value(cval, 0, 0, val);
964                         changed = 1;
965                 }
966         }
967         return changed;
968 }
969
970 static struct snd_kcontrol_new usb_feature_unit_ctl = {
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
978 /* the read-only variant */
979 static 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
987
988 /*
989  * build a feature control
990  */
991
992 static 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
997 static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
998                               unsigned int ctl_mask, int control,
999                               struct usb_audio_term *iterm, int unitid,
1000                               int readonly_mask)
1001 {
1002         struct uac_feature_unit_descriptor *desc = raw_desc;
1003         unsigned int len = 0;
1004         int mapped_name = 0;
1005         int nameid = uac_feature_unit_iFeature(desc);
1006         struct snd_kcontrol *kctl;
1007         struct usb_mixer_elem_info *cval;
1008         const struct usbmix_name_map *map;
1009         unsigned int range;
1010
1011         control++; /* change from zero-based to 1-based value */
1012
1013         if (control == UAC_FU_GRAPHIC_EQUALIZER) {
1014                 /* FIXME: not supported yet */
1015                 return;
1016         }
1017
1018         map = find_map(state, unitid, control);
1019         if (check_ignored_ctl(map))
1020                 return;
1021
1022         cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1023         if (! cval) {
1024                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1025                 return;
1026         }
1027         cval->mixer = state->mixer;
1028         cval->id = unitid;
1029         cval->control = control;
1030         cval->cmask = ctl_mask;
1031         cval->val_type = audio_feature_info[control-1].type;
1032         if (ctl_mask == 0) {
1033                 cval->channels = 1;     /* master channel */
1034                 cval->master_readonly = readonly_mask;
1035         } else {
1036                 int i, c = 0;
1037                 for (i = 0; i < 16; i++)
1038                         if (ctl_mask & (1 << i))
1039                                 c++;
1040                 cval->channels = c;
1041                 cval->ch_readonly = readonly_mask;
1042         }
1043
1044         /* get min/max values */
1045         get_min_max(cval, 0);
1046
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)
1051                 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1052         else
1053                 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1054
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
1062         len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
1063         mapped_name = len != 0;
1064         if (! len && nameid)
1065                 len = snd_usb_copy_string_desc(state, nameid,
1066                                 kctl->id.name, sizeof(kctl->id.name));
1067
1068         switch (control) {
1069         case UAC_FU_MUTE:
1070         case UAC_FU_VOLUME:
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) {
1092                                 len = append_ctl_name(kctl, " Capture");
1093                         } else {
1094                                 len = append_ctl_name(kctl, " Playback");
1095                         }
1096                 }
1097                 append_ctl_name(kctl, control == UAC_FU_MUTE ?
1098                                 " Switch" : " Volume");
1099                 if (control == UAC_FU_VOLUME) {
1100                         check_mapped_dB(map, cval);
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                         }
1107                 }
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
1117         /* volume control quirks */
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):
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          */
1128                 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
1129                     cval->min == -15616) {
1130                         snd_printk(KERN_INFO
1131                                  "set volume quirk for UDA1321/N101 chip\n");
1132                         cval->max = -256;
1133                 }
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
1146         case USB_ID(0x046d, 0x0808):
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
1160         }
1161
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
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);
1179         add_control_to_empty(state, kctl);
1180 }
1181
1182
1183
1184 /*
1185  * parse a feature unit
1186  *
1187  * most of controls are defined here.
1188  */
1189 static int parse_audio_feature_unit(struct mixer_build *state, int unitid, void *_ftr)
1190 {
1191         int channels, i, j;
1192         struct usb_audio_term iterm;
1193         unsigned int master_bits, first_ch_bits;
1194         int err, csize;
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;
1205                 channels = (hdr->bLength - 6) / 4 - 1;
1206                 bmaControls = ftr->bmaControls;
1207         }
1208
1209         if (hdr->bLength < 7 || !csize || hdr->bLength < 7 + csize) {
1210                 snd_printk(KERN_ERR "usbaudio: unit %u: invalid UAC_FEATURE_UNIT descriptor\n", unitid);
1211                 return -EINVAL;
1212         }
1213
1214         /* parse the source unit */
1215         if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
1216                 return err;
1217
1218         /* determine the input source type and name */
1219         if (check_input_term(state, hdr->bSourceID, &iterm) < 0)
1220                 return -EINVAL;
1221
1222         master_bits = snd_usb_combine_bytes(bmaControls, csize);
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 */
1229                 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
1230                 break;
1231         }
1232         if (channels > 0)
1233                 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
1234         else
1235                 first_ch_bits = 0;
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++) {
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);
1259                                 if (uac2_control_is_readable(mask, i)) {
1260                                         ch_bits |= (1 << j);
1261                                         if (!uac2_control_is_writeable(mask, i))
1262                                                 ch_read_only |= (1 << j);
1263                                 }
1264                         }
1265
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 */
1270                         if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
1271                                 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, ch_read_only);
1272                         if (uac2_control_is_readable(master_bits, i))
1273                                 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
1274                                                   !uac2_control_is_writeable(master_bits, i));
1275                 }
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
1293 static void build_mixer_unit_ctl(struct mixer_build *state,
1294                                  struct uac_mixer_unit_descriptor *desc,
1295                                  int in_pin, int in_ch, int unitid,
1296                                  struct usb_audio_term *iterm)
1297 {
1298         struct usb_mixer_elem_info *cval;
1299         unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
1300         unsigned int i, len;
1301         struct snd_kcontrol *kctl;
1302         const struct usbmix_name_map *map;
1303
1304         map = find_map(state, unitid, 0);
1305         if (check_ignored_ctl(map))
1306                 return;
1307
1308         cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1309         if (! cval)
1310                 return;
1311
1312         cval->mixer = state->mixer;
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++) {
1317                 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol), in_ch, i, num_outs)) {
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
1334         len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
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);
1339         append_ctl_name(kctl, " Volume");
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);
1343         add_control_to_empty(state, kctl);
1344 }
1345
1346
1347 /*
1348  * parse a mixer unit
1349  */
1350 static int parse_audio_mixer_unit(struct mixer_build *state, int unitid, void *raw_desc)
1351 {
1352         struct uac_mixer_unit_descriptor *desc = raw_desc;
1353         struct usb_audio_term iterm;
1354         int input_pins, num_ins, num_outs;
1355         int pin, ich, err;
1356
1357         if (desc->bLength < 11 || ! (input_pins = desc->bNrInPins) || ! (num_outs = uac_mixer_unit_bNrChannels(desc))) {
1358                 snd_printk(KERN_ERR "invalid MIXER UNIT descriptor %d\n", unitid);
1359                 return -EINVAL;
1360         }
1361         /* no bmControls field (e.g. Maya44) -> ignore */
1362         if (desc->bLength <= 10 + input_pins) {
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++) {
1370                 err = parse_audio_unit(state, desc->baSourceID[pin]);
1371                 if (err < 0)
1372                         return err;
1373                 err = check_input_term(state, desc->baSourceID[pin], &iterm);
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) {
1381                                 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol),
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 */
1401 static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1402 {
1403         struct usb_mixer_elem_info *cval = kcontrol->private_data;
1404         int err, val;
1405
1406         err = get_cur_ctl_value(cval, cval->control << 8, &val);
1407         if (err < 0 && cval->mixer->ignore_ctl_error) {
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 */
1419 static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1420 {
1421         struct usb_mixer_elem_info *cval = kcontrol->private_data;
1422         int val, oval, err;
1423
1424         err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1425         if (err < 0) {
1426                 if (cval->mixer->ignore_ctl_error)
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 */
1440 static struct snd_kcontrol_new mixer_procunit_ctl = {
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  */
1452 struct procunit_value_info {
1453         int control;
1454         char *suffix;
1455         int val_type;
1456         int min_value;
1457 };
1458
1459 struct procunit_info {
1460         int type;
1461         char *name;
1462         struct procunit_value_info *values;
1463 };
1464
1465 static struct procunit_value_info updown_proc_info[] = {
1466         { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1467         { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
1468         { 0 }
1469 };
1470 static struct procunit_value_info prologic_proc_info[] = {
1471         { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1472         { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
1473         { 0 }
1474 };
1475 static struct procunit_value_info threed_enh_proc_info[] = {
1476         { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1477         { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
1478         { 0 }
1479 };
1480 static struct procunit_value_info reverb_proc_info[] = {
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 },
1485         { 0 }
1486 };
1487 static struct procunit_value_info chorus_proc_info[] = {
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 },
1492         { 0 }
1493 };
1494 static struct procunit_value_info dcr_proc_info[] = {
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 },
1501         { 0 }
1502 };
1503
1504 static struct procunit_info procunits[] = {
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 },
1511         { 0 },
1512 };
1513 /*
1514  * predefined data for extension units
1515  */
1516 static struct procunit_value_info clock_rate_xu_info[] = {
1517         { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1518         { 0 }
1519 };
1520 static struct procunit_value_info clock_source_xu_info[] = {
1521         { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1522         { 0 }
1523 };
1524 static struct procunit_value_info spdif_format_xu_info[] = {
1525         { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1526         { 0 }
1527 };
1528 static struct procunit_value_info soft_limit_xu_info[] = {
1529         { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1530         { 0 }
1531 };
1532 static 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 };
1539 /*
1540  * build a processing/extension unit
1541  */
1542 static int build_audio_procunit(struct mixer_build *state, int unitid, void *raw_desc, struct procunit_info *list, char *name)
1543 {
1544         struct uac_processing_unit_descriptor *desc = raw_desc;
1545         int num_ins = desc->bNrInPins;
1546         struct usb_mixer_elem_info *cval;
1547         struct snd_kcontrol *kctl;
1548         int i, err, nameid, type, len;
1549         struct procunit_info *info;
1550         struct procunit_value_info *valinfo;
1551         const struct usbmix_name_map *map;
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
1560         if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1561             desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
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++) {
1567                 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
1568                         return err;
1569         }
1570
1571         type = le16_to_cpu(desc->wProcessType);
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++) {
1579                 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
1580
1581                 if (! (controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
1582                         continue;
1583                 map = find_map(state, unitid, valinfo->control);
1584                 if (check_ignored_ctl(map))
1585                         continue;
1586                 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1587                 if (! cval) {
1588                         snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1589                         return -ENOMEM;
1590                 }
1591                 cval->mixer = state->mixer;
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 */
1598                 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
1599                         __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
1600                         /* FIXME: hard-coded */
1601                         cval->min = 1;
1602                         cval->max = control_spec[0];
1603                         cval->res = 1;
1604                         cval->initialized = 1;
1605                 } else {
1606                         if (type == USB_XU_CLOCK_RATE) {
1607                                 /* E-Mu USB 0404/0202/TrackerPre/0204
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                 }
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
1626                 if (check_mapped_name(map, kctl->id.name,
1627                                                 sizeof(kctl->id.name)))
1628                         /* nothing */ ;
1629                 else if (info->name)
1630                         strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1631                 else {
1632                         nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
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                 }
1639                 append_ctl_name(kctl, " ");
1640                 append_ctl_name(kctl, valinfo->suffix);
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);
1644                 if ((err = add_control_to_empty(state, kctl)) < 0)
1645                         return err;
1646         }
1647         return 0;
1648 }
1649
1650
1651 static int parse_audio_processing_unit(struct mixer_build *state, int unitid, void *raw_desc)
1652 {
1653         return build_audio_procunit(state, unitid, raw_desc, procunits, "Processing Unit");
1654 }
1655
1656 static int parse_audio_extension_unit(struct mixer_build *state, int unitid, void *raw_desc)
1657 {
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");
1661 }
1662
1663
1664 /*
1665  * Selector Unit
1666  */
1667
1668 /* info callback for selector unit
1669  * use an enumerator type for routing
1670  */
1671 static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1672 {
1673         struct usb_mixer_elem_info *cval = kcontrol->private_data;
1674         const char **itemlist = (const char **)kcontrol->private_value;
1675
1676         if (snd_BUG_ON(!itemlist))
1677                 return -EINVAL;
1678         return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
1679 }
1680
1681 /* get callback for selector unit */
1682 static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1683 {
1684         struct usb_mixer_elem_info *cval = kcontrol->private_data;
1685         int val, err;
1686
1687         err = get_cur_ctl_value(cval, cval->control << 8, &val);
1688         if (err < 0) {
1689                 if (cval->mixer->ignore_ctl_error) {
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 */
1701 static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1702 {
1703         struct usb_mixer_elem_info *cval = kcontrol->private_data;
1704         int val, oval, err;
1705
1706         err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1707         if (err < 0) {
1708                 if (cval->mixer->ignore_ctl_error)
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) {
1715                 set_cur_ctl_value(cval, cval->control << 8, val);
1716                 return 1;
1717         }
1718         return 0;
1719 }
1720
1721 /* alsa control interface for selector unit */
1722 static struct snd_kcontrol_new mixer_selectunit_ctl = {
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  */
1734 static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
1735 {
1736         int i, num_ins = 0;
1737
1738         if (kctl->private_data) {
1739                 struct usb_mixer_elem_info *cval = kctl->private_data;
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  */
1756 static int parse_audio_selector_unit(struct mixer_build *state, int unitid, void *raw_desc)
1757 {
1758         struct uac_selector_unit_descriptor *desc = raw_desc;
1759         unsigned int i, nameid, len;
1760         int err;
1761         struct usb_mixer_elem_info *cval;
1762         struct snd_kcontrol *kctl;
1763         const struct usbmix_name_map *map;
1764         char **namelist;
1765
1766         if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
1767                 snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
1768                 return -EINVAL;
1769         }
1770
1771         for (i = 0; i < desc->bNrInPins; i++) {
1772                 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
1773                         return err;
1774         }
1775
1776         if (desc->bNrInPins == 1) /* only one ? nonsense! */
1777                 return 0;
1778
1779         map = find_map(state, unitid, 0);
1780         if (check_ignored_ctl(map))
1781                 return 0;
1782
1783         cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1784         if (! cval) {
1785                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1786                 return -ENOMEM;
1787         }
1788         cval->mixer = state->mixer;
1789         cval->id = unitid;
1790         cval->val_type = USB_MIXER_U8;
1791         cval->channels = 1;
1792         cval->min = 1;
1793         cval->max = desc->bNrInPins;
1794         cval->res = 1;
1795         cval->initialized = 1;
1796
1797         if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
1798                 cval->control = UAC2_CX_CLOCK_SELECTOR;
1799         else
1800                 cval->control = 0;
1801
1802         namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
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
1809         for (i = 0; i < desc->bNrInPins; i++) {
1810                 struct usb_audio_term iterm;
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");
1815                         while (i--)
1816                                 kfree(namelist[i]);
1817                         kfree(namelist);
1818                         kfree(cval);
1819                         return -ENOMEM;
1820                 }
1821                 len = check_mapped_selector_name(state, unitid, i, namelist[i],
1822                                                  MAX_ITEM_NAME_LEN);
1823                 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
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");
1832                 kfree(namelist);
1833                 kfree(cval);
1834                 return -ENOMEM;
1835         }
1836         kctl->private_value = (unsigned long)namelist;
1837         kctl->private_free = usb_mixer_selector_elem_free;
1838
1839         nameid = uac_selector_unit_iSelector(desc);
1840         len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
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
1851                 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
1852                         append_ctl_name(kctl, " Clock Source");
1853                 else if ((state->oterm.type & 0xff00) == 0x0100)
1854                         append_ctl_name(kctl, " Capture Source");
1855                 else
1856                         append_ctl_name(kctl, " Playback Source");
1857         }
1858
1859         snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
1860                     cval->id, kctl->id.name, desc->bNrInPins);
1861         if ((err = add_control_to_empty(state, kctl)) < 0)
1862                 return err;
1863
1864         return 0;
1865 }
1866
1867
1868 /*
1869  * parse an audio unit recursively
1870  */
1871
1872 static int parse_audio_unit(struct mixer_build *state, int unitid)
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]) {
1886         case UAC_INPUT_TERMINAL:
1887         case UAC2_CLOCK_SOURCE:
1888                 return 0; /* NOP */
1889         case UAC_MIXER_UNIT:
1890                 return parse_audio_mixer_unit(state, unitid, p1);
1891         case UAC_SELECTOR_UNIT:
1892         case UAC2_CLOCK_SELECTOR:
1893                 return parse_audio_selector_unit(state, unitid, p1);
1894         case UAC_FEATURE_UNIT:
1895                 return parse_audio_feature_unit(state, unitid, p1);
1896         case UAC1_PROCESSING_UNIT:
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 */
1902         case UAC1_EXTENSION_UNIT:
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);
1908         default:
1909                 snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
1910                 return -EINVAL;
1911         }
1912 }
1913
1914 static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
1915 {
1916         kfree(mixer->id_elems);
1917         if (mixer->urb) {
1918                 kfree(mixer->urb->transfer_buffer);
1919                 usb_free_urb(mixer->urb);
1920         }
1921         usb_free_urb(mixer->rc_urb);
1922         kfree(mixer->rc_setup_packet);
1923         kfree(mixer);
1924 }
1925
1926 static int snd_usb_mixer_dev_free(struct snd_device *device)
1927 {
1928         struct usb_mixer_interface *mixer = device->device_data;
1929         snd_usb_mixer_free(mixer);
1930         return 0;
1931 }
1932
1933 /*
1934  * create mixer controls
1935  *
1936  * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
1937  */
1938 static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
1939 {
1940         struct mixer_build state;
1941         int err;
1942         const struct usbmix_ctl_map *map;
1943         struct usb_host_interface *hostif;
1944         void *p;
1945
1946         hostif = mixer->chip->ctrl_intf;
1947         memset(&state, 0, sizeof(state));
1948         state.chip = mixer->chip;
1949         state.mixer = mixer;
1950         state.buffer = hostif->extra;
1951         state.buflen = hostif->extralen;
1952
1953         /* check the mapping table */
1954         for (map = usbmix_ctl_maps; map->id; map++) {
1955                 if (map->id == state.chip->usb_id) {
1956                         state.map = map->map;
1957                         state.selector_map = map->selector_map;
1958                         mixer->ignore_ctl_error = map->ignore_ctl_error;
1959                         break;
1960                 }
1961         }
1962
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) {
1966                         struct uac1_output_terminal_descriptor *desc = p;
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;
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;
1994                 }
1995         }
1996
1997         return 0;
1998 }
1999
2000 void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
2001 {
2002         struct usb_mixer_elem_info *info;
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
2009 static 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
2027 static 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,
2037                         "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
2038                                 chip->usb_id, snd_usb_ctrl_intf(chip),
2039                                 mixer->ignore_ctl_error);
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
2049 static 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
2095 static void snd_usb_mixer_interrupt(struct urb *urb)
2096 {
2097         struct usb_mixer_interface *mixer = urb->context;
2098         int len = urb->actual_length;
2099         int ustatus = urb->status;
2100
2101         if (ustatus != 0)
2102                 goto requeue;
2103
2104         if (mixer->protocol == UAC_VERSION_1) {
2105                 struct uac1_status_word *status;
2106
2107                 for (status = urb->transfer_buffer;
2108                      len >= sizeof(*status);
2109                      len -= sizeof(*status), status++) {
2110                         snd_printd(KERN_DEBUG "status interrupt: %02x %02x\n",
2111                                                 status->bStatusType,
2112                                                 status->bOriginator);
2113
2114                         /* ignore any notifications not from the control interface */
2115                         if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2116                                 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
2117                                 continue;
2118
2119                         if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2120                                 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
2121                         else
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));
2138                 }
2139         }
2140
2141 requeue:
2142         if (ustatus != -ENOENT && ustatus != -ECONNRESET && ustatus != -ESHUTDOWN) {
2143                 urb->dev = mixer->chip->dev;
2144                 usb_submit_urb(urb, GFP_ATOMIC);
2145         }
2146 }
2147
2148 /* stop any bus activity of a mixer */
2149 void 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
2155 int 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
2168 /* create the handler for the optional status interrupt endpoint */
2169 static 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
2177         hostif = mixer->chip->ctrl_intf;
2178         /* we need one interrupt input endpoint */
2179         if (get_iface_desc(hostif)->bNumEndpoints < 1)
2180                 return 0;
2181         ep = get_endpoint(hostif, 0);
2182         if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
2183                 return 0;
2184
2185         epnum = usb_endpoint_num(ep);
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,
2198                          snd_usb_mixer_interrupt, mixer, ep->bInterval);
2199         usb_submit_urb(mixer->urb, GFP_KERNEL);
2200         return 0;
2201 }
2202
2203 int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2204                          int ignore_error)
2205 {
2206         static struct snd_device_ops dev_ops = {
2207                 .dev_free = snd_usb_mixer_dev_free
2208         };
2209         struct usb_mixer_interface *mixer;
2210         struct snd_info_entry *entry;
2211         struct usb_host_interface *host_iface;
2212         int err;
2213
2214         strcpy(chip->card->mixername, "USB Mixer");
2215
2216         mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
2217         if (!mixer)
2218                 return -ENOMEM;
2219         mixer->chip = chip;
2220         mixer->ignore_ctl_error = ignore_error;
2221         mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2222                                   GFP_KERNEL);
2223         if (!mixer->id_elems) {
2224                 kfree(mixer);
2225                 return -ENOMEM;
2226         }
2227
2228         host_iface = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
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         }
2238
2239         if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
2240             (err = snd_usb_mixer_status_create(mixer)) < 0)
2241                 goto _error;
2242
2243         snd_usb_mixer_apply_create_quirk(mixer);
2244
2245         err = snd_device_new(chip->card, SNDRV_DEV_LOWLEVEL, mixer, &dev_ops);
2246         if (err < 0)
2247                 goto _error;
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
2253         list_add(&mixer->list, &chip->mixer_list);
2254         return 0;
2255
2256 _error:
2257         snd_usb_mixer_free(mixer);
2258         return err;
2259 }
2260
2261 void snd_usb_mixer_disconnect(struct list_head *p)
2262 {
2263         struct usb_mixer_interface *mixer;
2264
2265         mixer = list_entry(p, struct usb_mixer_interface, list);
2266         usb_kill_urb(mixer->urb);
2267         usb_kill_urb(mixer->rc_urb);
2268 }