patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / sound / usb / usbmixer.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 #include <sound/driver.h>
30 #include <linux/bitops.h>
31 #include <linux/init.h>
32 #include <linux/list.h>
33 #include <linux/slab.h>
34 #include <linux/string.h>
35 #include <linux/usb.h>
36 #include <sound/core.h>
37 #include <sound/control.h>
38
39 #include "usbaudio.h"
40
41
42 /*
43  */
44
45 /* ignore error from controls - for debugging */
46 /* #define IGNORE_CTL_ERROR */
47
48 typedef struct usb_mixer_build mixer_build_t;
49 typedef struct usb_audio_term usb_audio_term_t;
50 typedef struct usb_mixer_elem_info usb_mixer_elem_info_t;
51
52
53 struct usb_audio_term {
54         int id;
55         int type;
56         int channels;
57         unsigned int chconfig;
58         int name;
59 };
60
61 struct usbmix_name_map;
62
63 struct usb_mixer_build {
64         snd_usb_audio_t *chip;
65         unsigned char *buffer;
66         unsigned int buflen;
67         unsigned int ctrlif;
68         unsigned short vendor;
69         unsigned short product;
70         DECLARE_BITMAP(unitbitmap, 32*32);
71         usb_audio_term_t oterm;
72         const struct usbmix_name_map *map;
73 };
74
75 struct usb_mixer_elem_info {
76         snd_usb_audio_t *chip;
77         unsigned int ctrlif;
78         unsigned int id;
79         unsigned int control;   /* CS or ICN (high byte) */
80         unsigned int cmask; /* channel mask bitmap: 0 = master */ 
81         int channels;
82         int val_type;
83         int min, max, res;
84         unsigned int initialized: 1;
85 };
86
87
88 enum {
89         USB_FEATURE_NONE = 0,
90         USB_FEATURE_MUTE = 1,
91         USB_FEATURE_VOLUME,
92         USB_FEATURE_BASS,
93         USB_FEATURE_MID,
94         USB_FEATURE_TREBLE,
95         USB_FEATURE_GEQ,
96         USB_FEATURE_AGC,
97         USB_FEATURE_DELAY,
98         USB_FEATURE_BASSBOOST,
99         USB_FEATURE_LOUDNESS
100 };
101
102 enum {
103         USB_MIXER_BOOLEAN,
104         USB_MIXER_INV_BOOLEAN,
105         USB_MIXER_S8,
106         USB_MIXER_U8,
107         USB_MIXER_S16,
108         USB_MIXER_U16,
109 };
110
111 enum {
112         USB_PROC_UPDOWN = 1,
113         USB_PROC_UPDOWN_SWITCH = 1,
114         USB_PROC_UPDOWN_MODE_SEL = 2,
115
116         USB_PROC_PROLOGIC = 2,
117         USB_PROC_PROLOGIC_SWITCH = 1,
118         USB_PROC_PROLOGIC_MODE_SEL = 2,
119
120         USB_PROC_3DENH = 3,
121         USB_PROC_3DENH_SWITCH = 1,
122         USB_PROC_3DENH_SPACE = 2,
123
124         USB_PROC_REVERB = 4,
125         USB_PROC_REVERB_SWITCH = 1,
126         USB_PROC_REVERB_LEVEL = 2,
127         USB_PROC_REVERB_TIME = 3,
128         USB_PROC_REVERB_DELAY = 4,
129
130         USB_PROC_CHORUS = 5,
131         USB_PROC_CHORUS_SWITCH = 1,
132         USB_PROC_CHORUS_LEVEL = 2,
133         USB_PROC_CHORUS_RATE = 3,
134         USB_PROC_CHORUS_DEPTH = 4,
135
136         USB_PROC_DCR = 6,
137         USB_PROC_DCR_SWITCH = 1,
138         USB_PROC_DCR_RATIO = 2,
139         USB_PROC_DCR_MAX_AMP = 3,
140         USB_PROC_DCR_THRESHOLD = 4,
141         USB_PROC_DCR_ATTACK = 5,
142         USB_PROC_DCR_RELEASE = 6,
143 };
144
145 #define MAX_CHANNELS    10      /* max logical channels */
146
147
148 /*
149  * manual mapping of mixer names
150  * if the mixer topology is too complicated and the parsed names are
151  * ambiguous, add the entries in usbmixer_maps.c.
152  */
153 #include "usbmixer_maps.c"
154
155 /* get the mapped name if the unit matches */
156 static int check_mapped_name(mixer_build_t *state, int unitid, int control, char *buf, int buflen)
157 {
158         const struct usbmix_name_map *p;
159
160         if (! state->map)
161                 return 0;
162
163         for (p = state->map; p->id; p++) {
164                 if (p->id == unitid && p->name &&
165                     (! control || ! p->control || control == p->control)) {
166                         buflen--;
167                         return strlcpy(buf, p->name, buflen);
168                 }
169         }
170         return 0;
171 }
172
173 /* check whether the control should be ignored */
174 static int check_ignored_ctl(mixer_build_t *state, int unitid, int control)
175 {
176         const struct usbmix_name_map *p;
177
178         if (! state->map)
179                 return 0;
180         for (p = state->map; p->id; p++) {
181                 if (p->id == unitid && ! p->name &&
182                     (! control || ! p->control || control == p->control)) {
183                         // printk("ignored control %d:%d\n", unitid, control);
184                         return 1;
185                 }
186         }
187         return 0;
188 }
189
190 /*
191  * find an audio control unit with the given unit id
192  */
193 static void *find_audio_control_unit(mixer_build_t *state, unsigned char unit)
194 {
195         unsigned char *p;
196
197         p = NULL;
198         while ((p = snd_usb_find_desc(state->buffer, state->buflen, p,
199                                       USB_DT_CS_INTERFACE)) != NULL) {
200                 if (p[0] >= 4 && p[2] >= INPUT_TERMINAL && p[2] <= EXTENSION_UNIT && p[3] == unit)
201                         return p;
202         }
203         return NULL;
204 }
205
206
207 /*
208  * copy a string with the given id
209  */
210 static int snd_usb_copy_string_desc(mixer_build_t *state, int index, char *buf, int maxlen)
211 {
212         int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
213         buf[len] = 0;
214         return len;
215 }
216
217 /*
218  * convert from the byte/word on usb descriptor to the zero-based integer
219  */
220 static int convert_signed_value(usb_mixer_elem_info_t *cval, int val)
221 {
222         switch (cval->val_type) {
223         case USB_MIXER_BOOLEAN:
224                 return !!val;
225         case USB_MIXER_INV_BOOLEAN:
226                 return !val;
227         case USB_MIXER_U8:
228                 val &= 0xff;
229                 break;
230         case USB_MIXER_S8:
231                 val &= 0xff;
232                 if (val >= 0x80)
233                         val -= 0x100;
234                 break;
235         case USB_MIXER_U16:
236                 val &= 0xffff;
237                 break;
238         case USB_MIXER_S16:
239                 val &= 0xffff;
240                 if (val >= 0x8000)
241                         val -= 0x10000;
242                 break;
243         }
244         return val;
245 }
246
247 /*
248  * convert from the zero-based int to the byte/word for usb descriptor
249  */
250 static int convert_bytes_value(usb_mixer_elem_info_t *cval, int val)
251 {
252         switch (cval->val_type) {
253         case USB_MIXER_BOOLEAN:
254                 return !!val;
255         case USB_MIXER_INV_BOOLEAN:
256                 return !val;
257         case USB_MIXER_S8:
258         case USB_MIXER_U8:
259                 return val & 0xff;
260         case USB_MIXER_S16:
261         case USB_MIXER_U16:
262                 return val & 0xffff;
263         }
264         return 0; /* not reached */
265 }
266
267 static int get_relative_value(usb_mixer_elem_info_t *cval, int val)
268 {
269         if (! cval->res)
270                 cval->res = 1;
271         if (val < cval->min)
272                 return 0;
273         else if (val > cval->max)
274                 return (cval->max - cval->min) / cval->res;
275         else
276                 return (val - cval->min) / cval->res;
277 }
278
279 static int get_abs_value(usb_mixer_elem_info_t *cval, int val)
280 {
281         if (val < 0)
282                 return cval->min;
283         if (! cval->res)
284                 cval->res = 1;
285         val *= cval->res;
286         val += cval->min;
287         if (val > cval->max)
288                 return cval->max;
289         return val;
290 }
291
292
293 /*
294  * retrieve a mixer value
295  */
296
297 static int get_ctl_value(usb_mixer_elem_info_t *cval, int request, int validx, int *value_ret)
298 {
299         unsigned char buf[2];
300         int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
301         int timeout = 10;
302  
303         while (timeout-- > 0) {
304                 if (snd_usb_ctl_msg(cval->chip->dev, usb_rcvctrlpipe(cval->chip->dev, 0),
305                                     request,
306                                     USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
307                                     validx, cval->ctrlif | (cval->id << 8),
308                                     buf, val_len, HZ / 10) >= 0) {
309                         *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
310                         return 0;
311                 }
312         }
313         snd_printdd(KERN_ERR "cannot get ctl value: req = 0x%x, wValue = 0x%x, wIndex = 0x%x, type = %d\n", request, validx, cval->ctrlif | (cval->id << 8), cval->val_type);
314         return -EINVAL;
315 }
316
317 static int get_cur_ctl_value(usb_mixer_elem_info_t *cval, int validx, int *value)
318 {
319         return get_ctl_value(cval, GET_CUR, validx, value);
320 }
321
322 /* channel = 0: master, 1 = first channel */
323 inline static int get_cur_mix_value(usb_mixer_elem_info_t *cval, int channel, int *value)
324 {
325         return get_ctl_value(cval, GET_CUR, (cval->control << 8) | channel, value);
326 }
327
328 /*
329  * set a mixer value
330  */
331
332 static int set_ctl_value(usb_mixer_elem_info_t *cval, int request, int validx, int value_set)
333 {
334         unsigned char buf[2];
335         int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
336         int timeout = 10;
337  
338         value_set = convert_bytes_value(cval, value_set);
339         buf[0] = value_set & 0xff;
340         buf[1] = (value_set >> 8) & 0xff;
341         while (timeout -- > 0)
342                 if (snd_usb_ctl_msg(cval->chip->dev, usb_sndctrlpipe(cval->chip->dev, 0),
343                                     request,
344                                     USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
345                                     validx, cval->ctrlif | (cval->id << 8),
346                                     buf, val_len, HZ / 10) >= 0)
347                         return 0;
348         snd_printdd(KERN_ERR "cannot set ctl value: req = 0x%x, wValue = 0x%x, wIndex = 0x%x, type = %d, data = 0x%x/0x%x\n", request, validx, cval->ctrlif | (cval->id << 8), cval->val_type, buf[0], buf[1]);
349         return -EINVAL;
350 }
351
352 static int set_cur_ctl_value(usb_mixer_elem_info_t *cval, int validx, int value)
353 {
354         return set_ctl_value(cval, SET_CUR, validx, value);
355 }
356
357 inline static int set_cur_mix_value(usb_mixer_elem_info_t *cval, int channel, int value)
358 {
359         return set_ctl_value(cval, SET_CUR, (cval->control << 8) | channel, value);
360 }
361
362
363 /*
364  * parser routines begin here... 
365  */
366
367 static int parse_audio_unit(mixer_build_t *state, int unitid);
368
369
370 /*
371  * check if the input/output channel routing is enabled on the given bitmap.
372  * used for mixer unit parser
373  */
374 static int check_matrix_bitmap(unsigned char *bmap, int ich, int och, int num_outs)
375 {
376         int idx = ich * num_outs + och;
377         return bmap[-(idx >> 3)] & (0x80 >> (idx & 7));
378 }
379
380
381 /*
382  * add an alsa control element
383  * search and increment the index until an empty slot is found.
384  *
385  * if failed, give up and free the control instance.
386  */
387
388 static int add_control_to_empty(snd_card_t *card, snd_kcontrol_t *kctl)
389 {
390         int err;
391         while (snd_ctl_find_id(card, &kctl->id))
392                 kctl->id.index++;
393         if ((err = snd_ctl_add(card, kctl)) < 0) {
394                 snd_printd(KERN_ERR "cannot add control (err = %d)\n", err);
395                 snd_ctl_free_one(kctl);
396         }
397         return err;
398 }
399
400
401 /*
402  * get a terminal name string
403  */
404
405 static struct iterm_name_combo {
406         int type;
407         char *name;
408 } iterm_names[] = {
409         { 0x0300, "Output" },
410         { 0x0301, "Speaker" },
411         { 0x0302, "Headphone" },
412         { 0x0303, "HMD Audio" },
413         { 0x0304, "Desktop Speaker" },
414         { 0x0305, "Room Speaker" },
415         { 0x0306, "Com Speaker" },
416         { 0x0307, "LFE" },
417         { 0x0600, "External In" },
418         { 0x0601, "Analog In" },
419         { 0x0602, "Digital In" },
420         { 0x0603, "Line" },
421         { 0x0604, "Legacy In" },
422         { 0x0605, "IEC958 In" },
423         { 0x0606, "1394 DA Stream" },
424         { 0x0607, "1394 DV Stream" },
425         { 0x0700, "Embedded" },
426         { 0x0701, "Noise Source" },
427         { 0x0702, "Equalization Noise" },
428         { 0x0703, "CD" },
429         { 0x0704, "DAT" },
430         { 0x0705, "DCC" },
431         { 0x0706, "MiniDisk" },
432         { 0x0707, "Analog Tape" },
433         { 0x0708, "Phonograph" },
434         { 0x0709, "VCR Audio" },
435         { 0x070a, "Video Disk Audio" },
436         { 0x070b, "DVD Audio" },
437         { 0x070c, "TV Tuner Audio" },
438         { 0x070d, "Satellite Rec Audio" },
439         { 0x070e, "Cable Tuner Audio" },
440         { 0x070f, "DSS Audio" },
441         { 0x0710, "Radio Receiver" },
442         { 0x0711, "Radio Transmitter" },
443         { 0x0712, "Multi-Track Recorder" },
444         { 0x0713, "Synthesizer" },
445         { 0 },
446 };      
447
448 static int get_term_name(mixer_build_t *state, usb_audio_term_t *iterm,
449                          unsigned char *name, int maxlen, int term_only)
450 {
451         struct iterm_name_combo *names;
452
453         if (iterm->name)
454                 return snd_usb_copy_string_desc(state, iterm->name, name, maxlen);
455
456         /* virtual type - not a real terminal */
457         if (iterm->type >> 16) {
458                 if (term_only)
459                         return 0;
460                 switch (iterm->type >> 16) {
461                 case SELECTOR_UNIT:
462                         strcpy(name, "Selector"); return 8;
463                 case PROCESSING_UNIT:
464                         strcpy(name, "Process Unit"); return 12;
465                 case EXTENSION_UNIT:
466                         strcpy(name, "Ext Unit"); return 8;
467                 case MIXER_UNIT:
468                         strcpy(name, "Mixer"); return 5;
469                 default:
470                         return sprintf(name, "Unit %d", iterm->id);
471                 }
472         }
473
474         switch (iterm->type & 0xff00) {
475         case 0x0100:
476                 strcpy(name, "PCM"); return 3;
477         case 0x0200:
478                 strcpy(name, "Mic"); return 3;
479         case 0x0400:
480                 strcpy(name, "Headset"); return 7;
481         case 0x0500:
482                 strcpy(name, "Phone"); return 5;
483         }
484
485         for (names = iterm_names; names->type; names++)
486                 if (names->type == iterm->type) {
487                         strcpy(name, names->name);
488                         return strlen(names->name);
489                 }
490         return 0;
491 }
492
493
494 /*
495  * parse the source unit recursively until it reaches to a terminal
496  * or a branched unit.
497  */
498 static int check_input_term(mixer_build_t *state, int id, usb_audio_term_t *term)
499 {
500         unsigned char *p1;
501
502         memset(term, 0, sizeof(*term));
503         while ((p1 = find_audio_control_unit(state, id)) != NULL) {
504                 term->id = id;
505                 switch (p1[2]) {
506                 case INPUT_TERMINAL:
507                         term->type = combine_word(p1 + 4);
508                         term->channels = p1[7];
509                         term->chconfig = combine_word(p1 + 8);
510                         term->name = p1[11];
511                         return 0;
512                 case FEATURE_UNIT:
513                         id = p1[4];
514                         break; /* continue to parse */
515                 case MIXER_UNIT:
516                         term->type = p1[2] << 16; /* virtual type */
517                         term->channels = p1[5 + p1[4]];
518                         term->chconfig = combine_word(p1 + 6 + p1[4]);
519                         term->name = p1[p1[0] - 1];
520                         return 0;
521                 case SELECTOR_UNIT:
522                         /* call recursively to retrieve the channel info */
523                         if (check_input_term(state, p1[5], term) < 0)
524                                 return -ENODEV;
525                         term->type = p1[2] << 16; /* virtual type */
526                         term->id = id;
527                         term->name = p1[9 + p1[0] - 1];
528                         return 0;
529                 case PROCESSING_UNIT:
530                 case EXTENSION_UNIT:
531                         if (p1[6] == 1) {
532                                 id = p1[7];
533                                 break; /* continue to parse */
534                         }
535                         term->type = p1[2] << 16; /* virtual type */
536                         term->channels = p1[7 + p1[6]];
537                         term->chconfig = combine_word(p1 + 8 + p1[6]);
538                         term->name = p1[12 + p1[6] + p1[11 + p1[6]]];
539                         return 0;
540                 default:
541                         return -ENODEV;
542                 }
543         }
544         return -ENODEV;
545 }
546
547
548 /*
549  * Feature Unit
550  */
551
552 /* feature unit control information */
553 struct usb_feature_control_info {
554         const char *name;
555         unsigned int type;      /* control type (mute, volume, etc.) */
556 };
557
558 static struct usb_feature_control_info audio_feature_info[] = {
559         { "Mute",               USB_MIXER_INV_BOOLEAN },
560         { "Volume",             USB_MIXER_S16 },
561         { "Tone Control - Bass",        USB_MIXER_S8 },
562         { "Tone Control - Mid",         USB_MIXER_S8 },
563         { "Tone Control - Treble",      USB_MIXER_S8 },
564         { "Graphic Equalizer",          USB_MIXER_S8 }, /* FIXME: not implemeted yet */
565         { "Auto Gain Control",  USB_MIXER_BOOLEAN },
566         { "Delay Control",      USB_MIXER_U16 },
567         { "Bass Boost",         USB_MIXER_BOOLEAN },
568         { "Loudness",           USB_MIXER_BOOLEAN },
569 };
570
571
572 /* private_free callback */
573 static void usb_mixer_elem_free(snd_kcontrol_t *kctl)
574 {
575         if (kctl->private_data) {
576                 snd_magic_kfree((void *)kctl->private_data);
577                 kctl->private_data = 0;
578         }
579 }
580
581
582 /*
583  * interface to ALSA control for feature/mixer units
584  */
585
586 /*
587  * retrieve the minimum and maximum values for the specified control
588  */
589 static int get_min_max(usb_mixer_elem_info_t *cval, int default_min)
590 {
591         /* for failsafe */
592         cval->min = default_min;
593         cval->max = cval->min + 1;
594         cval->res = 1;
595
596         if (cval->val_type == USB_MIXER_BOOLEAN ||
597             cval->val_type == USB_MIXER_INV_BOOLEAN) {
598                 cval->initialized = 1;
599         } else {
600                 int minchn = 0;
601                 if (cval->cmask) {
602                         int i;
603                         for (i = 0; i < MAX_CHANNELS; i++)
604                                 if (cval->cmask & (1 << i)) {
605                                         minchn = i + 1;
606                                         break;
607                                 }
608                 }
609                 if (get_ctl_value(cval, GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
610                     get_ctl_value(cval, GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
611                         snd_printd(KERN_ERR "%d:%d: cannot get min/max values for control %d (id %d)\n", cval->id, cval->ctrlif, cval->control, cval->id);
612                         return -EINVAL;
613                 }
614                 if (get_ctl_value(cval, GET_RES, (cval->control << 8) | minchn, &cval->res) < 0) {
615                         cval->res = 1;
616                 } else {
617                         int last_valid_res = cval->res;
618                 
619                         while (cval->res > 1) {
620                                 if (set_ctl_value(cval, SET_RES, (cval->control << 8) | minchn, cval->res / 2) < 0)
621                                         break;
622                                 cval->res /= 2;
623                         }
624                         if (get_ctl_value(cval, GET_RES, (cval->control << 8) | minchn, &cval->res) < 0)
625                                 cval->res = last_valid_res;
626                 }
627                 if (cval->res == 0)
628                         cval->res = 1;
629                 cval->initialized = 1;
630         }
631         return 0;
632 }
633
634
635 /* get a feature/mixer unit info */
636 static int mixer_ctl_feature_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
637 {       
638         usb_mixer_elem_info_t *cval = snd_magic_cast(usb_mixer_elem_info_t, kcontrol->private_data, return -EINVAL);
639
640         if (cval->val_type == USB_MIXER_BOOLEAN ||
641             cval->val_type == USB_MIXER_INV_BOOLEAN)
642                 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
643         else
644                 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
645         uinfo->count = cval->channels;
646         if (cval->val_type == USB_MIXER_BOOLEAN ||
647             cval->val_type == USB_MIXER_INV_BOOLEAN) {
648                 uinfo->value.integer.min = 0;
649                 uinfo->value.integer.max = 1;
650         } else {
651                 if (! cval->initialized)
652                         get_min_max(cval,  0);
653                 uinfo->value.integer.min = 0;
654                 uinfo->value.integer.max = (cval->max - cval->min) / cval->res;
655         }
656         return 0;
657 }
658
659 /* get the current value from feature/mixer unit */
660 static int mixer_ctl_feature_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
661 {
662         usb_mixer_elem_info_t *cval = snd_magic_cast(usb_mixer_elem_info_t, kcontrol->private_data, return -EINVAL);
663         int c, cnt, val, err;
664
665         if (cval->cmask) {
666                 cnt = 0;
667                 for (c = 0; c < MAX_CHANNELS; c++) {
668                         if (cval->cmask & (1 << c)) {
669                                 err = get_cur_mix_value(cval, c + 1, &val);
670                                 if (err < 0) {
671                                         if (cval->chip->ignore_ctl_error) {
672                                                 ucontrol->value.integer.value[0] = cval->min;
673                                                 return 0;
674                                         }
675                                         snd_printd(KERN_ERR "cannot get current value for control %d ch %d: err = %d\n", cval->control, c + 1, err);
676                                         return err;
677                                 }
678                                 val = get_relative_value(cval, val);
679                                 ucontrol->value.integer.value[cnt] = val;
680                                 cnt++;
681                         }
682                 }
683         } else {
684                 /* master channel */
685                 err = get_cur_mix_value(cval, 0, &val);
686                 if (err < 0) {
687                         if (cval->chip->ignore_ctl_error) {
688                                 ucontrol->value.integer.value[0] = cval->min;
689                                 return 0;
690                         }
691                         snd_printd(KERN_ERR "cannot get current value for control %d master ch: err = %d\n", cval->control, err);
692                         return err;
693                 }
694                 val = get_relative_value(cval, val);
695                 ucontrol->value.integer.value[0] = val;
696         }
697         return 0;
698 }
699
700 /* put the current value to feature/mixer unit */
701 static int mixer_ctl_feature_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
702 {
703         usb_mixer_elem_info_t *cval = snd_magic_cast(usb_mixer_elem_info_t, kcontrol->private_data, return -EINVAL);
704         int c, cnt, val, oval, err;
705         int changed = 0;
706
707         if (cval->cmask) {
708                 cnt = 0;
709                 for (c = 0; c < MAX_CHANNELS; c++) {
710                         if (cval->cmask & (1 << c)) {
711                                 err = get_cur_mix_value(cval, c + 1, &oval);
712                                 if (err < 0) {
713                                         if (cval->chip->ignore_ctl_error)
714                                                 return 0;
715                                         return err;
716                                 }
717                                 val = ucontrol->value.integer.value[cnt];
718                                 val = get_abs_value(cval, val);
719                                 if (oval != val) {
720                                         set_cur_mix_value(cval, c + 1, val);
721                                         changed = 1;
722                                 }
723                                 get_cur_mix_value(cval, c + 1, &val);
724                                 cnt++;
725                         }
726                 }
727         } else {
728                 /* master channel */
729                 err = get_cur_mix_value(cval, 0, &oval);
730                 if (err < 0 && cval->chip->ignore_ctl_error)
731                         return 0;
732                 if (err < 0)
733                         return err;
734                 val = ucontrol->value.integer.value[0];
735                 val = get_abs_value(cval, val);
736                 if (val != oval) {
737                         set_cur_mix_value(cval, 0, val);
738                         changed = 1;
739                 }
740         }
741         return changed;
742 }
743
744 static snd_kcontrol_new_t usb_feature_unit_ctl = {
745         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
746         .name = "", /* will be filled later manually */
747         .info = mixer_ctl_feature_info,
748         .get = mixer_ctl_feature_get,
749         .put = mixer_ctl_feature_put,
750 };
751
752
753 /*
754  * build a feature control
755  */
756
757 static void build_feature_ctl(mixer_build_t *state, unsigned char *desc,
758                               unsigned int ctl_mask, int control,
759                               usb_audio_term_t *iterm, int unitid)
760 {
761         unsigned int len = 0;
762         int mapped_name = 0;
763         int nameid = desc[desc[0] - 1];
764         snd_kcontrol_t *kctl;
765         usb_mixer_elem_info_t *cval;
766
767         control++; /* change from zero-based to 1-based value */
768
769         if (control == USB_FEATURE_GEQ) {
770                 /* FIXME: not supported yet */
771                 return;
772         }
773
774         if (check_ignored_ctl(state, unitid, control))
775                 return;
776
777         cval = snd_magic_kcalloc(usb_mixer_elem_info_t, 0, GFP_KERNEL);
778         if (! cval) {
779                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
780                 return;
781         }
782         cval->chip = state->chip;
783         cval->ctrlif = state->ctrlif;
784         cval->id = unitid;
785         cval->control = control;
786         cval->cmask = ctl_mask;
787         cval->val_type = audio_feature_info[control-1].type;
788         if (ctl_mask == 0)
789                 cval->channels = 1;     /* master channel */
790         else {
791                 int i, c = 0;
792                 for (i = 0; i < 16; i++)
793                         if (ctl_mask & (1 << i))
794                                 c++;
795                 cval->channels = c;
796         }
797
798         /* get min/max values */
799         get_min_max(cval, 0);
800
801         kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
802         if (! kctl) {
803                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
804                 snd_magic_kfree(cval);
805                 return;
806         }
807         kctl->private_free = usb_mixer_elem_free;
808
809         len = check_mapped_name(state, unitid, control, kctl->id.name, sizeof(kctl->id.name));
810         mapped_name = len != 0;
811         if (! len && nameid)
812                 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
813
814         switch (control) {
815         case USB_FEATURE_MUTE:
816         case USB_FEATURE_VOLUME:
817                 /* determine the control name.  the rule is:
818                  * - if a name id is given in descriptor, use it.
819                  * - if the connected input can be determined, then use the name
820                  *   of terminal type.
821                  * - if the connected output can be determined, use it.
822                  * - otherwise, anonymous name.
823                  */
824                 if (! len) {
825                         len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 1);
826                         if (! len)
827                                 len = get_term_name(state, &state->oterm, kctl->id.name, sizeof(kctl->id.name), 1);
828                         if (! len)
829                                 len = snprintf(kctl->id.name, sizeof(kctl->id.name),
830                                                "Feature %d", unitid);
831                 }
832                 /* determine the stream direction:
833                  * if the connected output is USB stream, then it's likely a
834                  * capture stream.  otherwise it should be playback (hopefully :)
835                  */
836                 if (! mapped_name && ! (state->oterm.type >> 16)) {
837                         if ((state->oterm.type & 0xff00) == 0x0100) {
838                                 len = strlcat(kctl->id.name, " Capture", sizeof(kctl->id.name));
839                         } else {
840                                 len = strlcat(kctl->id.name + len, " Playback", sizeof(kctl->id.name));
841                         }
842                 }
843                 strlcat(kctl->id.name + len, control == USB_FEATURE_MUTE ? " Switch" : " Volume",
844                         sizeof(kctl->id.name));
845                 break;
846
847         default:
848                 if (! len)
849                         strlcpy(kctl->id.name, audio_feature_info[control-1].name,
850                                 sizeof(kctl->id.name));
851                 break;
852         }
853
854         /* quirk for UDA1321/N101 */
855         /* note that detection between firmware 2.1.1.7 (N101) and later 2.1.1.21 */
856         /* is not very clear from datasheets */
857         /* I hope that the min value is -15360 for newer firmware --jk */
858         if (((state->vendor == 0x471 && (state->product == 0x104 || state->product == 0x105 || state->product == 0x101)) ||
859              (state->vendor == 0x672 && state->product == 0x1041)) && !strcmp(kctl->id.name, "PCM Playback Volume") &&
860              cval->min == -15616) {
861                 snd_printk("USB Audio: using volume control quirk for the UDA1321/N101 chip\n");
862                 cval->max = -256;
863         }
864
865         snd_printdd(KERN_INFO "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
866                     cval->id, kctl->id.name, cval->channels, cval->min, cval->max, cval->res);
867         add_control_to_empty(state->chip->card, kctl);
868 }
869
870
871
872 /*
873  * parse a feature unit
874  *
875  * most of controlls are defined here.
876  */
877 static int parse_audio_feature_unit(mixer_build_t *state, int unitid, unsigned char *ftr)
878 {
879         int channels, i, j;
880         usb_audio_term_t iterm;
881         unsigned int master_bits, first_ch_bits;
882         int err, csize;
883
884         if (ftr[0] < 7 || ! (csize = ftr[5]) || ftr[0] < 7 + csize) {
885                 snd_printk(KERN_ERR "usbaudio: unit %u: invalid FEATURE_UNIT descriptor\n", unitid);
886                 return -EINVAL;
887         }
888
889         /* parse the source unit */
890         if ((err = parse_audio_unit(state, ftr[4])) < 0)
891                 return err;
892
893         /* determine the input source type and name */
894         if (check_input_term(state, ftr[4], &iterm) < 0)
895                 return -EINVAL;
896
897         channels = (ftr[0] - 7) / csize - 1;
898
899         master_bits = snd_usb_combine_bytes(ftr + 6, csize);
900         if (channels > 0)
901                 first_ch_bits = snd_usb_combine_bytes(ftr + 6 + csize, csize);
902         else
903                 first_ch_bits = 0;
904         /* check all control types */
905         for (i = 0; i < 10; i++) {
906                 unsigned int ch_bits = 0;
907                 for (j = 0; j < channels; j++) {
908                         unsigned int mask = snd_usb_combine_bytes(ftr + 6 + csize * (j+1), csize);
909                         if (mask & (1 << i))
910                                 ch_bits |= (1 << j);
911                 }
912                 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
913                         build_feature_ctl(state, ftr, ch_bits, i, &iterm, unitid);
914                 if (master_bits & (1 << i))
915                         build_feature_ctl(state, ftr, 0, i, &iterm, unitid);
916         }
917         
918         return 0;
919 }
920
921
922 /*
923  * Mixer Unit
924  */
925
926 /*
927  * build a mixer unit control
928  *
929  * the callbacks are identical with feature unit.
930  * input channel number (zero based) is given in control field instead.
931  */
932
933 static void build_mixer_unit_ctl(mixer_build_t *state, unsigned char *desc,
934                                  int in_ch, int unitid)
935 {
936         usb_mixer_elem_info_t *cval;
937         unsigned int num_ins = desc[4];
938         unsigned int num_outs = desc[5 + num_ins];
939         unsigned int i, len;
940         snd_kcontrol_t *kctl;
941         usb_audio_term_t iterm;
942
943         if (check_ignored_ctl(state, unitid, 0))
944                 return;
945
946         cval = snd_magic_kcalloc(usb_mixer_elem_info_t, 0, GFP_KERNEL);
947         if (! cval)
948                 return;
949
950         if (check_input_term(state, desc[5 + in_ch], &iterm) < 0)
951                 return;
952
953         cval->chip = state->chip;
954         cval->ctrlif = state->ctrlif;
955         cval->id = unitid;
956         cval->control = in_ch + 1; /* based on 1 */
957         cval->val_type = USB_MIXER_S16;
958         for (i = 0; i < num_outs; i++) {
959                 if (check_matrix_bitmap(desc + 9 + num_ins, in_ch, i, num_outs)) {
960                         cval->cmask |= (1 << i);
961                         cval->channels++;
962                 }
963         }
964
965         /* get min/max values */
966         get_min_max(cval, 0);
967
968         kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
969         if (! kctl) {
970                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
971                 snd_magic_kfree(cval);
972                 return;
973         }
974         kctl->private_free = usb_mixer_elem_free;
975
976         len = check_mapped_name(state, unitid, 0, kctl->id.name, sizeof(kctl->id.name));
977         if (! len)
978                 len = get_term_name(state, &iterm, kctl->id.name, sizeof(kctl->id.name), 0);
979         if (! len)
980                 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch);
981         strlcat(kctl->id.name + len, " Volume", sizeof(kctl->id.name));
982
983         snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n",
984                     cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
985         add_control_to_empty(state->chip->card, kctl);
986 }
987
988
989 /*
990  * parse a mixer unit
991  */
992 static int parse_audio_mixer_unit(mixer_build_t *state, int unitid, unsigned char *desc)
993 {
994         int num_ins, num_outs;
995         int i, err;
996         if (desc[0] < 12 || ! (num_ins = desc[4]) || ! (num_outs = desc[5 + num_ins]))
997                 return -EINVAL;
998
999         for (i = 0; i < num_ins; i++) {
1000                 err = parse_audio_unit(state, desc[5 + i]);
1001                 if (err < 0)
1002                         return err;
1003                 if (check_matrix_bitmap(desc + 9 + num_ins, i, 0, num_outs))
1004                         build_mixer_unit_ctl(state, desc, i, unitid);
1005         }
1006         return 0;
1007 }
1008
1009
1010 /*
1011  * Processing Unit / Extension Unit
1012  */
1013
1014 /* get callback for processing/extension unit */
1015 static int mixer_ctl_procunit_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
1016 {
1017         usb_mixer_elem_info_t *cval = snd_magic_cast(usb_mixer_elem_info_t, kcontrol->private_data, return -EINVAL);
1018         int err, val;
1019
1020         err = get_cur_ctl_value(cval, cval->control << 8, &val);
1021         if (err < 0 && cval->chip->ignore_ctl_error) {
1022                 ucontrol->value.integer.value[0] = cval->min;
1023                 return 0;
1024         }
1025         if (err < 0)
1026                 return err;
1027         val = get_relative_value(cval, val);
1028         ucontrol->value.integer.value[0] = val;
1029         return 0;
1030 }
1031
1032 /* put callback for processing/extension unit */
1033 static int mixer_ctl_procunit_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
1034 {
1035         usb_mixer_elem_info_t *cval = snd_magic_cast(usb_mixer_elem_info_t, kcontrol->private_data, return -EINVAL);
1036         int val, oval, err;
1037
1038         err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1039         if (err < 0) {
1040                 if (cval->chip->ignore_ctl_error)
1041                         return 0;
1042                 return err;
1043         }
1044         val = ucontrol->value.integer.value[0];
1045         val = get_abs_value(cval, val);
1046         if (val != oval) {
1047                 set_cur_ctl_value(cval, cval->control << 8, val);
1048                 return 1;
1049         }
1050         return 0;
1051 }
1052
1053 /* alsa control interface for processing/extension unit */
1054 static snd_kcontrol_new_t mixer_procunit_ctl = {
1055         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1056         .name = "", /* will be filled later */
1057         .info = mixer_ctl_feature_info,
1058         .get = mixer_ctl_procunit_get,
1059         .put = mixer_ctl_procunit_put,
1060 };
1061
1062
1063 /*
1064  * predefined data for processing units
1065  */
1066 struct procunit_value_info {
1067         int control;
1068         char *suffix;
1069         int val_type;
1070         int min_value;
1071 };
1072
1073 struct procunit_info {
1074         int type;
1075         char *name;
1076         struct procunit_value_info *values;
1077 };
1078
1079 static struct procunit_value_info updown_proc_info[] = {
1080         { USB_PROC_UPDOWN_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1081         { USB_PROC_UPDOWN_MODE_SEL, "Mode Select", USB_MIXER_U8, 1 },
1082         { 0 }
1083 };
1084 static struct procunit_value_info prologic_proc_info[] = {
1085         { USB_PROC_PROLOGIC_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1086         { USB_PROC_PROLOGIC_MODE_SEL, "Mode Select", USB_MIXER_U8, 1 },
1087         { 0 }
1088 };
1089 static struct procunit_value_info threed_enh_proc_info[] = {
1090         { USB_PROC_3DENH_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1091         { USB_PROC_3DENH_SPACE, "Spaciousness", USB_MIXER_U8 },
1092         { 0 }
1093 };
1094 static struct procunit_value_info reverb_proc_info[] = {
1095         { USB_PROC_REVERB_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1096         { USB_PROC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1097         { USB_PROC_REVERB_TIME, "Time", USB_MIXER_U16 },
1098         { USB_PROC_REVERB_DELAY, "Delay", USB_MIXER_U8 },
1099         { 0 }
1100 };
1101 static struct procunit_value_info chorus_proc_info[] = {
1102         { USB_PROC_CHORUS_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1103         { USB_PROC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1104         { USB_PROC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1105         { USB_PROC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
1106         { 0 }
1107 };
1108 static struct procunit_value_info dcr_proc_info[] = {
1109         { USB_PROC_DCR_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1110         { USB_PROC_DCR_RATIO, "Ratio", USB_MIXER_U16 },
1111         { USB_PROC_DCR_MAX_AMP, "Max Amp", USB_MIXER_S16 },
1112         { USB_PROC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1113         { USB_PROC_DCR_ATTACK, "Attack Time", USB_MIXER_U16 },
1114         { USB_PROC_DCR_RELEASE, "Release Time", USB_MIXER_U16 },
1115         { 0 }
1116 };
1117
1118 static struct procunit_info procunits[] = {
1119         { USB_PROC_UPDOWN, "Up Down", updown_proc_info },
1120         { USB_PROC_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1121         { USB_PROC_3DENH, "3D Stereo Extender", threed_enh_proc_info },
1122         { USB_PROC_REVERB, "Reverb", reverb_proc_info },
1123         { USB_PROC_CHORUS, "Chorus", chorus_proc_info },
1124         { USB_PROC_DCR, "DCR", dcr_proc_info },
1125         { 0 },
1126 };
1127
1128 /*
1129  * build a processing/extension unit
1130  */
1131 static int build_audio_procunit(mixer_build_t *state, int unitid, unsigned char *dsc, struct procunit_info *list, char *name)
1132 {
1133         int num_ins = dsc[6];
1134         usb_mixer_elem_info_t *cval;
1135         snd_kcontrol_t *kctl;
1136         int i, err, nameid, type, len;
1137         struct procunit_info *info;
1138         struct procunit_value_info *valinfo;
1139         static struct procunit_value_info default_value_info[] = {
1140                 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1141                 { 0 }
1142         };
1143         static struct procunit_info default_info = {
1144                 0, NULL, default_value_info
1145         };
1146
1147         if (dsc[0] < 13 || dsc[0] < 13 + num_ins || dsc[0] < num_ins + dsc[11 + num_ins]) {
1148                 snd_printk(KERN_ERR "invalid %s descriptor (id %d)\n", name, unitid);
1149                 return -EINVAL;
1150         }
1151
1152         for (i = 0; i < num_ins; i++) {
1153                 if ((err = parse_audio_unit(state, dsc[7 + i])) < 0)
1154                         return err;
1155         }
1156
1157         type = combine_word(&dsc[4]);
1158         if (! type)
1159                 return 0; /* undefined? */
1160
1161         for (info = list; info && info->type; info++)
1162                 if (info->type == type)
1163                         break;
1164         if (! info || ! info->type)
1165                 info = &default_info;
1166
1167         for (valinfo = info->values; valinfo->control; valinfo++) {
1168                 /* FIXME: bitmap might be longer than 8bit */
1169                 if (! (dsc[12 + num_ins] & (1 << (valinfo->control - 1))))
1170                         continue;
1171                 if (check_ignored_ctl(state, unitid, valinfo->control))
1172                         continue;
1173                 cval = snd_magic_kcalloc(usb_mixer_elem_info_t, 0, GFP_KERNEL);
1174                 if (! cval) {
1175                         snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1176                         return -ENOMEM;
1177                 }
1178                 cval->chip = state->chip;
1179                 cval->ctrlif = state->ctrlif;
1180                 cval->id = unitid;
1181                 cval->control = valinfo->control;
1182                 cval->val_type = valinfo->val_type;
1183                 cval->channels = 1;
1184
1185                 /* get min/max values */
1186                 if (type == USB_PROC_UPDOWN && cval->control == USB_PROC_UPDOWN_MODE_SEL) {
1187                         /* FIXME: hard-coded */
1188                         cval->min = 1;
1189                         cval->max = dsc[15];
1190                         cval->res = 1;
1191                         cval->initialized = 1;
1192                 } else
1193                         get_min_max(cval, valinfo->min_value);
1194
1195                 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
1196                 if (! kctl) {
1197                         snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1198                         snd_magic_kfree(cval);
1199                         return -ENOMEM;
1200                 }
1201                 kctl->private_free = usb_mixer_elem_free;
1202
1203                 if (check_mapped_name(state, unitid, cval->control, kctl->id.name, sizeof(kctl->id.name)))
1204                         ;
1205                 else if (info->name)
1206                         strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1207                 else {
1208                         nameid = dsc[12 + num_ins + dsc[11 + num_ins]];
1209                         len = 0;
1210                         if (nameid)
1211                                 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1212                         if (! len)
1213                                 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1214                 }
1215                 strlcat(kctl->id.name, " ", sizeof(kctl->id.name));
1216                 strlcat(kctl->id.name, valinfo->suffix, sizeof(kctl->id.name));
1217
1218                 snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n",
1219                             cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
1220                 if ((err = add_control_to_empty(state->chip->card, kctl)) < 0)
1221                         return err;
1222         }
1223         return 0;
1224 }
1225
1226
1227 static int parse_audio_processing_unit(mixer_build_t *state, int unitid, unsigned char *desc)
1228 {
1229         return build_audio_procunit(state, unitid, desc, procunits, "Processing Unit");
1230 }
1231
1232 static int parse_audio_extension_unit(mixer_build_t *state, int unitid, unsigned char *desc)
1233 {
1234         return build_audio_procunit(state, unitid, desc, NULL, "Extension Unit");
1235 }
1236
1237
1238 /*
1239  * Selector Unit
1240  */
1241
1242 /* info callback for selector unit
1243  * use an enumerator type for routing
1244  */
1245 static int mixer_ctl_selector_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
1246 {       
1247         usb_mixer_elem_info_t *cval = snd_magic_cast(usb_mixer_elem_info_t, kcontrol->private_data, return -EINVAL);
1248         char **itemlist = (char **)kcontrol->private_value;
1249
1250         snd_assert(itemlist, return -EINVAL);
1251         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1252         uinfo->count = 1;
1253         uinfo->value.enumerated.items = cval->max;
1254         if ((int)uinfo->value.enumerated.item >= cval->max)
1255                 uinfo->value.enumerated.item = cval->max - 1;
1256         strcpy(uinfo->value.enumerated.name, itemlist[uinfo->value.enumerated.item]);
1257         return 0;
1258 }
1259
1260 /* get callback for selector unit */
1261 static int mixer_ctl_selector_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
1262 {
1263         usb_mixer_elem_info_t *cval = snd_magic_cast(usb_mixer_elem_info_t, kcontrol->private_data, return -EINVAL);
1264         int val, err;
1265
1266         err = get_cur_ctl_value(cval, 0, &val);
1267         if (err < 0) {
1268                 if (cval->chip->ignore_ctl_error) {
1269                         ucontrol->value.enumerated.item[0] = 0;
1270                         return 0;
1271                 }
1272                 return err;
1273         }
1274         val = get_relative_value(cval, val);
1275         ucontrol->value.enumerated.item[0] = val;
1276         return 0;
1277 }
1278
1279 /* put callback for selector unit */
1280 static int mixer_ctl_selector_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
1281 {
1282         usb_mixer_elem_info_t *cval = snd_magic_cast(usb_mixer_elem_info_t, kcontrol->private_data, return -EINVAL);
1283         int val, oval, err;
1284
1285         err = get_cur_ctl_value(cval, 0, &oval);
1286         if (err < 0) {
1287                 if (cval->chip->ignore_ctl_error)
1288                         return 0;
1289                 return err;
1290         }
1291         val = ucontrol->value.enumerated.item[0];
1292         val = get_abs_value(cval, val);
1293         if (val != oval) {
1294                 set_cur_ctl_value(cval, 0, val);
1295                 return 1;
1296         }
1297         return 0;
1298 }
1299
1300 /* alsa control interface for selector unit */
1301 static snd_kcontrol_new_t mixer_selectunit_ctl = {
1302         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1303         .name = "", /* will be filled later */
1304         .info = mixer_ctl_selector_info,
1305         .get = mixer_ctl_selector_get,
1306         .put = mixer_ctl_selector_put,
1307 };
1308
1309
1310 /* private free callback.
1311  * free both private_data and private_value
1312  */
1313 static void usb_mixer_selector_elem_free(snd_kcontrol_t *kctl)
1314 {
1315         int i, num_ins = 0;
1316
1317         if (kctl->private_data) {
1318                 usb_mixer_elem_info_t *cval = snd_magic_cast(usb_mixer_elem_info_t, kctl->private_data,);
1319                 num_ins = cval->max;
1320                 snd_magic_kfree(cval);
1321                 kctl->private_data = 0;
1322         }
1323         if (kctl->private_value) {
1324                 char **itemlist = (char **)kctl->private_value;
1325                 for (i = 0; i < num_ins; i++)
1326                         kfree(itemlist[i]);
1327                 kfree(itemlist);
1328                 kctl->private_value = 0;
1329         }
1330 }
1331
1332 /*
1333  * parse a selector unit
1334  */
1335 static int parse_audio_selector_unit(mixer_build_t *state, int unitid, unsigned char *desc)
1336 {
1337         unsigned int num_ins = desc[4];
1338         unsigned int i, nameid, len;
1339         int err;
1340         usb_mixer_elem_info_t *cval;
1341         snd_kcontrol_t *kctl;
1342         char **namelist;
1343
1344         if (! num_ins || desc[0] < 6 + num_ins) {
1345                 snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
1346                 return -EINVAL;
1347         }
1348
1349         for (i = 0; i < num_ins; i++) {
1350                 if ((err = parse_audio_unit(state, desc[5 + i])) < 0)
1351                         return err;
1352         }
1353
1354         if (num_ins == 1) /* only one ? nonsense! */
1355                 return 0;
1356
1357         if (check_ignored_ctl(state, unitid, 0))
1358                 return 0;
1359
1360         cval = snd_magic_kcalloc(usb_mixer_elem_info_t, 0, GFP_KERNEL);
1361         if (! cval) {
1362                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1363                 return -ENOMEM;
1364         }
1365         cval->chip = state->chip;
1366         cval->ctrlif = state->ctrlif;
1367         cval->id = unitid;
1368         cval->val_type = USB_MIXER_U8;
1369         cval->channels = 1;
1370         cval->min = 1;
1371         cval->max = num_ins;
1372         cval->res = 1;
1373         cval->initialized = 1;
1374
1375         namelist = kmalloc(sizeof(char *) * num_ins, GFP_KERNEL);
1376         if (! namelist) {
1377                 snd_printk(KERN_ERR "cannot malloc\n");
1378                 snd_magic_kfree(cval);
1379                 return -ENOMEM;
1380         }
1381 #define MAX_ITEM_NAME_LEN       64
1382         for (i = 0; i < num_ins; i++) {
1383                 usb_audio_term_t iterm;
1384                 len = 0;
1385                 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
1386                 if (! namelist[i]) {
1387                         snd_printk(KERN_ERR "cannot malloc\n");
1388                         while (--i > 0)
1389                                 kfree(namelist[i]);
1390                         kfree(namelist);
1391                         snd_magic_kfree(cval);
1392                         return -ENOMEM;
1393                 }
1394                 if (check_input_term(state, desc[5 + i], &iterm) >= 0)
1395                         len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
1396                 if (! len)
1397                         sprintf(namelist[i], "Input %d", i);
1398         }
1399
1400         kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
1401         if (! kctl) {
1402                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1403                 snd_magic_kfree(cval);
1404                 return -ENOMEM;
1405         }
1406         kctl->private_value = (unsigned long)namelist;
1407         kctl->private_free = usb_mixer_selector_elem_free;
1408
1409         nameid = desc[desc[0] - 1];
1410         len = check_mapped_name(state, unitid, 0, kctl->id.name, sizeof(kctl->id.name));
1411         if (len)
1412                 ;
1413         else if (nameid)
1414                 snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1415         else {
1416                 len = get_term_name(state, &state->oterm,
1417                                     kctl->id.name, sizeof(kctl->id.name), 0);
1418                 if (! len)
1419                         strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
1420
1421                 if ((state->oterm.type & 0xff00) == 0x0100)
1422                         strlcat(kctl->id.name, " Capture Source", sizeof(kctl->id.name));
1423                 else
1424                         strlcat(kctl->id.name, " Playback Source", sizeof(kctl->id.name));
1425         }
1426
1427         snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
1428                     cval->id, kctl->id.name, num_ins);
1429         if ((err = add_control_to_empty(state->chip->card, kctl)) < 0)
1430                 return err;
1431
1432         return 0;
1433 }
1434
1435
1436 /*
1437  * parse an audio unit recursively
1438  */
1439
1440 static int parse_audio_unit(mixer_build_t *state, int unitid)
1441 {
1442         unsigned char *p1;
1443
1444         if (test_and_set_bit(unitid, state->unitbitmap))
1445                 return 0; /* the unit already visited */
1446
1447         p1 = find_audio_control_unit(state, unitid);
1448         if (!p1) {
1449                 snd_printk(KERN_ERR "usbaudio: unit %d not found!\n", unitid);
1450                 return -EINVAL;
1451         }
1452
1453         switch (p1[2]) {
1454         case INPUT_TERMINAL:
1455                 return 0; /* NOP */
1456         case MIXER_UNIT:
1457                 return parse_audio_mixer_unit(state, unitid, p1);
1458         case SELECTOR_UNIT:
1459                 return parse_audio_selector_unit(state, unitid, p1);
1460         case FEATURE_UNIT:
1461                 return parse_audio_feature_unit(state, unitid, p1);
1462         case PROCESSING_UNIT:
1463                 return parse_audio_processing_unit(state, unitid, p1);
1464         case EXTENSION_UNIT:
1465                 return parse_audio_extension_unit(state, unitid, p1);
1466         default:
1467                 snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
1468                 return -EINVAL;
1469         }
1470 }
1471
1472 /*
1473  * create mixer controls
1474  *
1475  * walk through all OUTPUT_TERMINAL descriptors to search for mixers
1476  */
1477 int snd_usb_create_mixer(snd_usb_audio_t *chip, int ctrlif)
1478 {
1479         unsigned char *desc;
1480         mixer_build_t state;
1481         int err;
1482         const struct usbmix_ctl_map *map;
1483         struct usb_device_descriptor *dev = &chip->dev->descriptor;
1484         struct usb_host_interface *hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
1485
1486         strcpy(chip->card->mixername, "USB Mixer");
1487
1488         memset(&state, 0, sizeof(state));
1489         state.chip = chip;
1490         state.buffer = hostif->extra;
1491         state.buflen = hostif->extralen;
1492         state.ctrlif = ctrlif;
1493         state.vendor = dev->idVendor;
1494         state.product = dev->idProduct;
1495
1496         /* check the mapping table */
1497         for (map = usbmix_ctl_maps; map->vendor; map++) {
1498                 if (map->vendor == dev->idVendor && map->product == dev->idProduct) {
1499                         state.map = map->map;
1500                         chip->ignore_ctl_error = map->ignore_ctl_error;
1501                         break;
1502                 }
1503         }
1504 #ifdef IGNORE_CTL_ERROR
1505         chip->ignore_ctl_error = 1;
1506 #endif
1507
1508         desc = NULL;
1509         while ((desc = snd_usb_find_csint_desc(hostif->extra, hostif->extralen, desc, OUTPUT_TERMINAL)) != NULL) {
1510                 if (desc[0] < 9)
1511                         continue; /* invalid descriptor? */
1512                 set_bit(desc[3], state.unitbitmap);  /* mark terminal ID as visited */
1513                 state.oterm.id = desc[3];
1514                 state.oterm.type = combine_word(&desc[4]);
1515                 state.oterm.name = desc[8];
1516                 err = parse_audio_unit(&state, desc[7]);
1517                 if (err < 0)
1518                         return err;
1519         }
1520         return 0;
1521 }