[ALSA] usb-audio - allow type 0 extension units
[safe/jmp/linux-2.6] / 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 #include <sound/hwdep.h>
39
40 #include "usbaudio.h"
41
42
43 /*
44  */
45
46 /* ignore error from controls - for debugging */
47 /* #define IGNORE_CTL_ERROR */
48
49 typedef struct usb_mixer_build mixer_build_t;
50 typedef struct usb_audio_term usb_audio_term_t;
51 typedef struct usb_mixer_elem_info usb_mixer_elem_info_t;
52
53
54 struct usb_mixer_interface {
55         snd_usb_audio_t *chip;
56         unsigned int ctrlif;
57         struct list_head list;
58         unsigned int ignore_ctl_error;
59         struct urb *urb;
60         usb_mixer_elem_info_t **id_elems; /* array[256], indexed by unit id */
61
62         /* Sound Blaster remote control stuff */
63         enum {
64                 RC_NONE,
65                 RC_EXTIGY,
66                 RC_AUDIGY2NX,
67         } rc_type;
68         unsigned long rc_hwdep_open;
69         u32 rc_code;
70         wait_queue_head_t rc_waitq;
71         struct urb *rc_urb;
72         struct usb_ctrlrequest *rc_setup_packet;
73         u8 rc_buffer[6];
74 };
75
76
77 struct usb_audio_term {
78         int id;
79         int type;
80         int channels;
81         unsigned int chconfig;
82         int name;
83 };
84
85 struct usbmix_name_map;
86
87 struct usb_mixer_build {
88         snd_usb_audio_t *chip;
89         struct usb_mixer_interface *mixer;
90         unsigned char *buffer;
91         unsigned int buflen;
92         DECLARE_BITMAP(unitbitmap, 256);
93         usb_audio_term_t oterm;
94         const struct usbmix_name_map *map;
95         const struct usbmix_selector_map *selector_map;
96 };
97
98 struct usb_mixer_elem_info {
99         struct usb_mixer_interface *mixer;
100         usb_mixer_elem_info_t *next_id_elem; /* list of controls with same id */
101         snd_ctl_elem_id_t *elem_id;
102         unsigned int id;
103         unsigned int control;   /* CS or ICN (high byte) */
104         unsigned int cmask; /* channel mask bitmap: 0 = master */
105         int channels;
106         int val_type;
107         int min, max, res;
108         u8 initialized;
109 };
110
111
112 enum {
113         USB_FEATURE_NONE = 0,
114         USB_FEATURE_MUTE = 1,
115         USB_FEATURE_VOLUME,
116         USB_FEATURE_BASS,
117         USB_FEATURE_MID,
118         USB_FEATURE_TREBLE,
119         USB_FEATURE_GEQ,
120         USB_FEATURE_AGC,
121         USB_FEATURE_DELAY,
122         USB_FEATURE_BASSBOOST,
123         USB_FEATURE_LOUDNESS
124 };
125
126 enum {
127         USB_MIXER_BOOLEAN,
128         USB_MIXER_INV_BOOLEAN,
129         USB_MIXER_S8,
130         USB_MIXER_U8,
131         USB_MIXER_S16,
132         USB_MIXER_U16,
133 };
134
135 enum {
136         USB_PROC_UPDOWN = 1,
137         USB_PROC_UPDOWN_SWITCH = 1,
138         USB_PROC_UPDOWN_MODE_SEL = 2,
139
140         USB_PROC_PROLOGIC = 2,
141         USB_PROC_PROLOGIC_SWITCH = 1,
142         USB_PROC_PROLOGIC_MODE_SEL = 2,
143
144         USB_PROC_3DENH = 3,
145         USB_PROC_3DENH_SWITCH = 1,
146         USB_PROC_3DENH_SPACE = 2,
147
148         USB_PROC_REVERB = 4,
149         USB_PROC_REVERB_SWITCH = 1,
150         USB_PROC_REVERB_LEVEL = 2,
151         USB_PROC_REVERB_TIME = 3,
152         USB_PROC_REVERB_DELAY = 4,
153
154         USB_PROC_CHORUS = 5,
155         USB_PROC_CHORUS_SWITCH = 1,
156         USB_PROC_CHORUS_LEVEL = 2,
157         USB_PROC_CHORUS_RATE = 3,
158         USB_PROC_CHORUS_DEPTH = 4,
159
160         USB_PROC_DCR = 6,
161         USB_PROC_DCR_SWITCH = 1,
162         USB_PROC_DCR_RATIO = 2,
163         USB_PROC_DCR_MAX_AMP = 3,
164         USB_PROC_DCR_THRESHOLD = 4,
165         USB_PROC_DCR_ATTACK = 5,
166         USB_PROC_DCR_RELEASE = 6,
167 };
168
169 #define MAX_CHANNELS    10      /* max logical channels */
170
171
172 /*
173  * manual mapping of mixer names
174  * if the mixer topology is too complicated and the parsed names are
175  * ambiguous, add the entries in usbmixer_maps.c.
176  */
177 #include "usbmixer_maps.c"
178
179 /* get the mapped name if the unit matches */
180 static int check_mapped_name(mixer_build_t *state, int unitid, int control, char *buf, int buflen)
181 {
182         const struct usbmix_name_map *p;
183
184         if (! state->map)
185                 return 0;
186
187         for (p = state->map; p->id; p++) {
188                 if (p->id == unitid && p->name &&
189                     (! control || ! p->control || control == p->control)) {
190                         buflen--;
191                         return strlcpy(buf, p->name, buflen);
192                 }
193         }
194         return 0;
195 }
196
197 /* check whether the control should be ignored */
198 static int check_ignored_ctl(mixer_build_t *state, int unitid, int control)
199 {
200         const struct usbmix_name_map *p;
201
202         if (! state->map)
203                 return 0;
204         for (p = state->map; p->id; p++) {
205                 if (p->id == unitid && ! p->name &&
206                     (! control || ! p->control || control == p->control)) {
207                         // printk("ignored control %d:%d\n", unitid, control);
208                         return 1;
209                 }
210         }
211         return 0;
212 }
213
214 /* get the mapped selector source name */
215 static int check_mapped_selector_name(mixer_build_t *state, int unitid,
216                                       int index, char *buf, int buflen)
217 {
218         const struct usbmix_selector_map *p;
219
220         if (! state->selector_map)
221                 return 0;
222         for (p = state->selector_map; p->id; p++) {
223                 if (p->id == unitid && index < p->count)
224                         return strlcpy(buf, p->names[index], buflen);
225         }
226         return 0;
227 }
228
229 /*
230  * find an audio control unit with the given unit id
231  */
232 static void *find_audio_control_unit(mixer_build_t *state, unsigned char unit)
233 {
234         unsigned char *p;
235
236         p = NULL;
237         while ((p = snd_usb_find_desc(state->buffer, state->buflen, p,
238                                       USB_DT_CS_INTERFACE)) != NULL) {
239                 if (p[0] >= 4 && p[2] >= INPUT_TERMINAL && p[2] <= EXTENSION_UNIT && p[3] == unit)
240                         return p;
241         }
242         return NULL;
243 }
244
245
246 /*
247  * copy a string with the given id
248  */
249 static int snd_usb_copy_string_desc(mixer_build_t *state, int index, char *buf, int maxlen)
250 {
251         int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
252         buf[len] = 0;
253         return len;
254 }
255
256 /*
257  * convert from the byte/word on usb descriptor to the zero-based integer
258  */
259 static int convert_signed_value(usb_mixer_elem_info_t *cval, int val)
260 {
261         switch (cval->val_type) {
262         case USB_MIXER_BOOLEAN:
263                 return !!val;
264         case USB_MIXER_INV_BOOLEAN:
265                 return !val;
266         case USB_MIXER_U8:
267                 val &= 0xff;
268                 break;
269         case USB_MIXER_S8:
270                 val &= 0xff;
271                 if (val >= 0x80)
272                         val -= 0x100;
273                 break;
274         case USB_MIXER_U16:
275                 val &= 0xffff;
276                 break;
277         case USB_MIXER_S16:
278                 val &= 0xffff;
279                 if (val >= 0x8000)
280                         val -= 0x10000;
281                 break;
282         }
283         return val;
284 }
285
286 /*
287  * convert from the zero-based int to the byte/word for usb descriptor
288  */
289 static int convert_bytes_value(usb_mixer_elem_info_t *cval, int val)
290 {
291         switch (cval->val_type) {
292         case USB_MIXER_BOOLEAN:
293                 return !!val;
294         case USB_MIXER_INV_BOOLEAN:
295                 return !val;
296         case USB_MIXER_S8:
297         case USB_MIXER_U8:
298                 return val & 0xff;
299         case USB_MIXER_S16:
300         case USB_MIXER_U16:
301                 return val & 0xffff;
302         }
303         return 0; /* not reached */
304 }
305
306 static int get_relative_value(usb_mixer_elem_info_t *cval, int val)
307 {
308         if (! cval->res)
309                 cval->res = 1;
310         if (val < cval->min)
311                 return 0;
312         else if (val > cval->max)
313                 return (cval->max - cval->min) / cval->res;
314         else
315                 return (val - cval->min) / cval->res;
316 }
317
318 static int get_abs_value(usb_mixer_elem_info_t *cval, int val)
319 {
320         if (val < 0)
321                 return cval->min;
322         if (! cval->res)
323                 cval->res = 1;
324         val *= cval->res;
325         val += cval->min;
326         if (val > cval->max)
327                 return cval->max;
328         return val;
329 }
330
331
332 /*
333  * retrieve a mixer value
334  */
335
336 static int get_ctl_value(usb_mixer_elem_info_t *cval, int request, int validx, int *value_ret)
337 {
338         unsigned char buf[2];
339         int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
340         int timeout = 10;
341
342         while (timeout-- > 0) {
343                 if (snd_usb_ctl_msg(cval->mixer->chip->dev,
344                                     usb_rcvctrlpipe(cval->mixer->chip->dev, 0),
345                                     request,
346                                     USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
347                                     validx, cval->mixer->ctrlif | (cval->id << 8),
348                                     buf, val_len, 100) >= 0) {
349                         *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
350                         return 0;
351                 }
352         }
353         snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
354                     request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type);
355         return -EINVAL;
356 }
357
358 static int get_cur_ctl_value(usb_mixer_elem_info_t *cval, int validx, int *value)
359 {
360         return get_ctl_value(cval, GET_CUR, validx, value);
361 }
362
363 /* channel = 0: master, 1 = first channel */
364 inline static int get_cur_mix_value(usb_mixer_elem_info_t *cval, int channel, int *value)
365 {
366         return get_ctl_value(cval, GET_CUR, (cval->control << 8) | channel, value);
367 }
368
369 /*
370  * set a mixer value
371  */
372
373 static int set_ctl_value(usb_mixer_elem_info_t *cval, int request, int validx, int value_set)
374 {
375         unsigned char buf[2];
376         int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
377         int timeout = 10;
378
379         value_set = convert_bytes_value(cval, value_set);
380         buf[0] = value_set & 0xff;
381         buf[1] = (value_set >> 8) & 0xff;
382         while (timeout -- > 0)
383                 if (snd_usb_ctl_msg(cval->mixer->chip->dev,
384                                     usb_sndctrlpipe(cval->mixer->chip->dev, 0),
385                                     request,
386                                     USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
387                                     validx, cval->mixer->ctrlif | (cval->id << 8),
388                                     buf, val_len, 100) >= 0)
389                         return 0;
390         snd_printdd(KERN_ERR "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
391                     request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type, buf[0], buf[1]);
392         return -EINVAL;
393 }
394
395 static int set_cur_ctl_value(usb_mixer_elem_info_t *cval, int validx, int value)
396 {
397         return set_ctl_value(cval, SET_CUR, validx, value);
398 }
399
400 inline static int set_cur_mix_value(usb_mixer_elem_info_t *cval, int channel, int value)
401 {
402         return set_ctl_value(cval, SET_CUR, (cval->control << 8) | channel, value);
403 }
404
405
406 /*
407  * parser routines begin here...
408  */
409
410 static int parse_audio_unit(mixer_build_t *state, int unitid);
411
412
413 /*
414  * check if the input/output channel routing is enabled on the given bitmap.
415  * used for mixer unit parser
416  */
417 static int check_matrix_bitmap(unsigned char *bmap, int ich, int och, int num_outs)
418 {
419         int idx = ich * num_outs + och;
420         return bmap[idx >> 3] & (0x80 >> (idx & 7));
421 }
422
423
424 /*
425  * add an alsa control element
426  * search and increment the index until an empty slot is found.
427  *
428  * if failed, give up and free the control instance.
429  */
430
431 static int add_control_to_empty(mixer_build_t *state, snd_kcontrol_t *kctl)
432 {
433         usb_mixer_elem_info_t *cval = kctl->private_data;
434         int err;
435
436         while (snd_ctl_find_id(state->chip->card, &kctl->id))
437                 kctl->id.index++;
438         if ((err = snd_ctl_add(state->chip->card, kctl)) < 0) {
439                 snd_printd(KERN_ERR "cannot add control (err = %d)\n", err);
440                 snd_ctl_free_one(kctl);
441                 return err;
442         }
443         cval->elem_id = &kctl->id;
444         cval->next_id_elem = state->mixer->id_elems[cval->id];
445         state->mixer->id_elems[cval->id] = cval;
446         return 0;
447 }
448
449
450 /*
451  * get a terminal name string
452  */
453
454 static struct iterm_name_combo {
455         int type;
456         char *name;
457 } iterm_names[] = {
458         { 0x0300, "Output" },
459         { 0x0301, "Speaker" },
460         { 0x0302, "Headphone" },
461         { 0x0303, "HMD Audio" },
462         { 0x0304, "Desktop Speaker" },
463         { 0x0305, "Room Speaker" },
464         { 0x0306, "Com Speaker" },
465         { 0x0307, "LFE" },
466         { 0x0600, "External In" },
467         { 0x0601, "Analog In" },
468         { 0x0602, "Digital In" },
469         { 0x0603, "Line" },
470         { 0x0604, "Legacy In" },
471         { 0x0605, "IEC958 In" },
472         { 0x0606, "1394 DA Stream" },
473         { 0x0607, "1394 DV Stream" },
474         { 0x0700, "Embedded" },
475         { 0x0701, "Noise Source" },
476         { 0x0702, "Equalization Noise" },
477         { 0x0703, "CD" },
478         { 0x0704, "DAT" },
479         { 0x0705, "DCC" },
480         { 0x0706, "MiniDisk" },
481         { 0x0707, "Analog Tape" },
482         { 0x0708, "Phonograph" },
483         { 0x0709, "VCR Audio" },
484         { 0x070a, "Video Disk Audio" },
485         { 0x070b, "DVD Audio" },
486         { 0x070c, "TV Tuner Audio" },
487         { 0x070d, "Satellite Rec Audio" },
488         { 0x070e, "Cable Tuner Audio" },
489         { 0x070f, "DSS Audio" },
490         { 0x0710, "Radio Receiver" },
491         { 0x0711, "Radio Transmitter" },
492         { 0x0712, "Multi-Track Recorder" },
493         { 0x0713, "Synthesizer" },
494         { 0 },
495 };
496
497 static int get_term_name(mixer_build_t *state, usb_audio_term_t *iterm,
498                          unsigned char *name, int maxlen, int term_only)
499 {
500         struct iterm_name_combo *names;
501
502         if (iterm->name)
503                 return snd_usb_copy_string_desc(state, iterm->name, name, maxlen);
504
505         /* virtual type - not a real terminal */
506         if (iterm->type >> 16) {
507                 if (term_only)
508                         return 0;
509                 switch (iterm->type >> 16) {
510                 case SELECTOR_UNIT:
511                         strcpy(name, "Selector"); return 8;
512                 case PROCESSING_UNIT:
513                         strcpy(name, "Process Unit"); return 12;
514                 case EXTENSION_UNIT:
515                         strcpy(name, "Ext Unit"); return 8;
516                 case MIXER_UNIT:
517                         strcpy(name, "Mixer"); return 5;
518                 default:
519                         return sprintf(name, "Unit %d", iterm->id);
520                 }
521         }
522
523         switch (iterm->type & 0xff00) {
524         case 0x0100:
525                 strcpy(name, "PCM"); return 3;
526         case 0x0200:
527                 strcpy(name, "Mic"); return 3;
528         case 0x0400:
529                 strcpy(name, "Headset"); return 7;
530         case 0x0500:
531                 strcpy(name, "Phone"); return 5;
532         }
533
534         for (names = iterm_names; names->type; names++)
535                 if (names->type == iterm->type) {
536                         strcpy(name, names->name);
537                         return strlen(names->name);
538                 }
539         return 0;
540 }
541
542
543 /*
544  * parse the source unit recursively until it reaches to a terminal
545  * or a branched unit.
546  */
547 static int check_input_term(mixer_build_t *state, int id, usb_audio_term_t *term)
548 {
549         unsigned char *p1;
550
551         memset(term, 0, sizeof(*term));
552         while ((p1 = find_audio_control_unit(state, id)) != NULL) {
553                 term->id = id;
554                 switch (p1[2]) {
555                 case INPUT_TERMINAL:
556                         term->type = combine_word(p1 + 4);
557                         term->channels = p1[7];
558                         term->chconfig = combine_word(p1 + 8);
559                         term->name = p1[11];
560                         return 0;
561                 case FEATURE_UNIT:
562                         id = p1[4];
563                         break; /* continue to parse */
564                 case MIXER_UNIT:
565                         term->type = p1[2] << 16; /* virtual type */
566                         term->channels = p1[5 + p1[4]];
567                         term->chconfig = combine_word(p1 + 6 + p1[4]);
568                         term->name = p1[p1[0] - 1];
569                         return 0;
570                 case SELECTOR_UNIT:
571                         /* call recursively to retrieve the channel info */
572                         if (check_input_term(state, p1[5], term) < 0)
573                                 return -ENODEV;
574                         term->type = p1[2] << 16; /* virtual type */
575                         term->id = id;
576                         term->name = p1[9 + p1[0] - 1];
577                         return 0;
578                 case PROCESSING_UNIT:
579                 case EXTENSION_UNIT:
580                         if (p1[6] == 1) {
581                                 id = p1[7];
582                                 break; /* continue to parse */
583                         }
584                         term->type = p1[2] << 16; /* virtual type */
585                         term->channels = p1[7 + p1[6]];
586                         term->chconfig = combine_word(p1 + 8 + p1[6]);
587                         term->name = p1[12 + p1[6] + p1[11 + p1[6]]];
588                         return 0;
589                 default:
590                         return -ENODEV;
591                 }
592         }
593         return -ENODEV;
594 }
595
596
597 /*
598  * Feature Unit
599  */
600
601 /* feature unit control information */
602 struct usb_feature_control_info {
603         const char *name;
604         unsigned int type;      /* control type (mute, volume, etc.) */
605 };
606
607 static struct usb_feature_control_info audio_feature_info[] = {
608         { "Mute",               USB_MIXER_INV_BOOLEAN },
609         { "Volume",             USB_MIXER_S16 },
610         { "Tone Control - Bass",        USB_MIXER_S8 },
611         { "Tone Control - Mid",         USB_MIXER_S8 },
612         { "Tone Control - Treble",      USB_MIXER_S8 },
613         { "Graphic Equalizer",          USB_MIXER_S8 }, /* FIXME: not implemeted yet */
614         { "Auto Gain Control",  USB_MIXER_BOOLEAN },
615         { "Delay Control",      USB_MIXER_U16 },
616         { "Bass Boost",         USB_MIXER_BOOLEAN },
617         { "Loudness",           USB_MIXER_BOOLEAN },
618 };
619
620
621 /* private_free callback */
622 static void usb_mixer_elem_free(snd_kcontrol_t *kctl)
623 {
624         if (kctl->private_data) {
625                 kfree(kctl->private_data);
626                 kctl->private_data = NULL;
627         }
628 }
629
630
631 /*
632  * interface to ALSA control for feature/mixer units
633  */
634
635 /*
636  * retrieve the minimum and maximum values for the specified control
637  */
638 static int get_min_max(usb_mixer_elem_info_t *cval, int default_min)
639 {
640         /* for failsafe */
641         cval->min = default_min;
642         cval->max = cval->min + 1;
643         cval->res = 1;
644
645         if (cval->val_type == USB_MIXER_BOOLEAN ||
646             cval->val_type == USB_MIXER_INV_BOOLEAN) {
647                 cval->initialized = 1;
648         } else {
649                 int minchn = 0;
650                 if (cval->cmask) {
651                         int i;
652                         for (i = 0; i < MAX_CHANNELS; i++)
653                                 if (cval->cmask & (1 << i)) {
654                                         minchn = i + 1;
655                                         break;
656                                 }
657                 }
658                 if (get_ctl_value(cval, GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
659                     get_ctl_value(cval, GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
660                         snd_printd(KERN_ERR "%d:%d: cannot get min/max values for control %d (id %d)\n",
661                                    cval->id, cval->mixer->ctrlif, cval->control, cval->id);
662                         return -EINVAL;
663                 }
664                 if (get_ctl_value(cval, GET_RES, (cval->control << 8) | minchn, &cval->res) < 0) {
665                         cval->res = 1;
666                 } else {
667                         int last_valid_res = cval->res;
668
669                         while (cval->res > 1) {
670                                 if (set_ctl_value(cval, SET_RES, (cval->control << 8) | minchn, cval->res / 2) < 0)
671                                         break;
672                                 cval->res /= 2;
673                         }
674                         if (get_ctl_value(cval, GET_RES, (cval->control << 8) | minchn, &cval->res) < 0)
675                                 cval->res = last_valid_res;
676                 }
677                 if (cval->res == 0)
678                         cval->res = 1;
679                 cval->initialized = 1;
680         }
681         return 0;
682 }
683
684
685 /* get a feature/mixer unit info */
686 static int mixer_ctl_feature_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
687 {
688         usb_mixer_elem_info_t *cval = kcontrol->private_data;
689
690         if (cval->val_type == USB_MIXER_BOOLEAN ||
691             cval->val_type == USB_MIXER_INV_BOOLEAN)
692                 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
693         else
694                 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
695         uinfo->count = cval->channels;
696         if (cval->val_type == USB_MIXER_BOOLEAN ||
697             cval->val_type == USB_MIXER_INV_BOOLEAN) {
698                 uinfo->value.integer.min = 0;
699                 uinfo->value.integer.max = 1;
700         } else {
701                 if (! cval->initialized)
702                         get_min_max(cval,  0);
703                 uinfo->value.integer.min = 0;
704                 uinfo->value.integer.max = (cval->max - cval->min) / cval->res;
705         }
706         return 0;
707 }
708
709 /* get the current value from feature/mixer unit */
710 static int mixer_ctl_feature_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
711 {
712         usb_mixer_elem_info_t *cval = kcontrol->private_data;
713         int c, cnt, val, err;
714
715         if (cval->cmask) {
716                 cnt = 0;
717                 for (c = 0; c < MAX_CHANNELS; c++) {
718                         if (cval->cmask & (1 << c)) {
719                                 err = get_cur_mix_value(cval, c + 1, &val);
720                                 if (err < 0) {
721                                         if (cval->mixer->ignore_ctl_error) {
722                                                 ucontrol->value.integer.value[0] = cval->min;
723                                                 return 0;
724                                         }
725                                         snd_printd(KERN_ERR "cannot get current value for control %d ch %d: err = %d\n", cval->control, c + 1, err);
726                                         return err;
727                                 }
728                                 val = get_relative_value(cval, val);
729                                 ucontrol->value.integer.value[cnt] = val;
730                                 cnt++;
731                         }
732                 }
733         } else {
734                 /* master channel */
735                 err = get_cur_mix_value(cval, 0, &val);
736                 if (err < 0) {
737                         if (cval->mixer->ignore_ctl_error) {
738                                 ucontrol->value.integer.value[0] = cval->min;
739                                 return 0;
740                         }
741                         snd_printd(KERN_ERR "cannot get current value for control %d master ch: err = %d\n", cval->control, err);
742                         return err;
743                 }
744                 val = get_relative_value(cval, val);
745                 ucontrol->value.integer.value[0] = val;
746         }
747         return 0;
748 }
749
750 /* put the current value to feature/mixer unit */
751 static int mixer_ctl_feature_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
752 {
753         usb_mixer_elem_info_t *cval = kcontrol->private_data;
754         int c, cnt, val, oval, err;
755         int changed = 0;
756
757         if (cval->cmask) {
758                 cnt = 0;
759                 for (c = 0; c < MAX_CHANNELS; c++) {
760                         if (cval->cmask & (1 << c)) {
761                                 err = get_cur_mix_value(cval, c + 1, &oval);
762                                 if (err < 0) {
763                                         if (cval->mixer->ignore_ctl_error)
764                                                 return 0;
765                                         return err;
766                                 }
767                                 val = ucontrol->value.integer.value[cnt];
768                                 val = get_abs_value(cval, val);
769                                 if (oval != val) {
770                                         set_cur_mix_value(cval, c + 1, val);
771                                         changed = 1;
772                                 }
773                                 get_cur_mix_value(cval, c + 1, &val);
774                                 cnt++;
775                         }
776                 }
777         } else {
778                 /* master channel */
779                 err = get_cur_mix_value(cval, 0, &oval);
780                 if (err < 0 && cval->mixer->ignore_ctl_error)
781                         return 0;
782                 if (err < 0)
783                         return err;
784                 val = ucontrol->value.integer.value[0];
785                 val = get_abs_value(cval, val);
786                 if (val != oval) {
787                         set_cur_mix_value(cval, 0, val);
788                         changed = 1;
789                 }
790         }
791         return changed;
792 }
793
794 static snd_kcontrol_new_t usb_feature_unit_ctl = {
795         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
796         .name = "", /* will be filled later manually */
797         .info = mixer_ctl_feature_info,
798         .get = mixer_ctl_feature_get,
799         .put = mixer_ctl_feature_put,
800 };
801
802
803 /*
804  * build a feature control
805  */
806
807 static void build_feature_ctl(mixer_build_t *state, unsigned char *desc,
808                               unsigned int ctl_mask, int control,
809                               usb_audio_term_t *iterm, int unitid)
810 {
811         unsigned int len = 0;
812         int mapped_name = 0;
813         int nameid = desc[desc[0] - 1];
814         snd_kcontrol_t *kctl;
815         usb_mixer_elem_info_t *cval;
816
817         control++; /* change from zero-based to 1-based value */
818
819         if (control == USB_FEATURE_GEQ) {
820                 /* FIXME: not supported yet */
821                 return;
822         }
823
824         if (check_ignored_ctl(state, unitid, control))
825                 return;
826
827         cval = kcalloc(1, sizeof(*cval), GFP_KERNEL);
828         if (! cval) {
829                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
830                 return;
831         }
832         cval->mixer = state->mixer;
833         cval->id = unitid;
834         cval->control = control;
835         cval->cmask = ctl_mask;
836         cval->val_type = audio_feature_info[control-1].type;
837         if (ctl_mask == 0)
838                 cval->channels = 1;     /* master channel */
839         else {
840                 int i, c = 0;
841                 for (i = 0; i < 16; i++)
842                         if (ctl_mask & (1 << i))
843                                 c++;
844                 cval->channels = c;
845         }
846
847         /* get min/max values */
848         get_min_max(cval, 0);
849
850         kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
851         if (! kctl) {
852                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
853                 kfree(cval);
854                 return;
855         }
856         kctl->private_free = usb_mixer_elem_free;
857
858         len = check_mapped_name(state, unitid, control, kctl->id.name, sizeof(kctl->id.name));
859         mapped_name = len != 0;
860         if (! len && nameid)
861                 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
862
863         switch (control) {
864         case USB_FEATURE_MUTE:
865         case USB_FEATURE_VOLUME:
866                 /* determine the control name.  the rule is:
867                  * - if a name id is given in descriptor, use it.
868                  * - if the connected input can be determined, then use the name
869                  *   of terminal type.
870                  * - if the connected output can be determined, use it.
871                  * - otherwise, anonymous name.
872                  */
873                 if (! len) {
874                         len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 1);
875                         if (! len)
876                                 len = get_term_name(state, &state->oterm, kctl->id.name, sizeof(kctl->id.name), 1);
877                         if (! len)
878                                 len = snprintf(kctl->id.name, sizeof(kctl->id.name),
879                                                "Feature %d", unitid);
880                 }
881                 /* determine the stream direction:
882                  * if the connected output is USB stream, then it's likely a
883                  * capture stream.  otherwise it should be playback (hopefully :)
884                  */
885                 if (! mapped_name && ! (state->oterm.type >> 16)) {
886                         if ((state->oterm.type & 0xff00) == 0x0100) {
887                                 len = strlcat(kctl->id.name, " Capture", sizeof(kctl->id.name));
888                         } else {
889                                 len = strlcat(kctl->id.name + len, " Playback", sizeof(kctl->id.name));
890                         }
891                 }
892                 strlcat(kctl->id.name + len, control == USB_FEATURE_MUTE ? " Switch" : " Volume",
893                         sizeof(kctl->id.name));
894                 break;
895
896         default:
897                 if (! len)
898                         strlcpy(kctl->id.name, audio_feature_info[control-1].name,
899                                 sizeof(kctl->id.name));
900                 break;
901         }
902
903         /* quirk for UDA1321/N101 */
904         /* note that detection between firmware 2.1.1.7 (N101) and later 2.1.1.21 */
905         /* is not very clear from datasheets */
906         /* I hope that the min value is -15360 for newer firmware --jk */
907         switch (state->chip->usb_id) {
908         case USB_ID(0x0471, 0x0101):
909         case USB_ID(0x0471, 0x0104):
910         case USB_ID(0x0471, 0x0105):
911         case USB_ID(0x0672, 0x1041):
912                 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
913                     cval->min == -15616) {
914                         snd_printk("using volume control quirk for the UDA1321/N101 chip\n");
915                         cval->max = -256;
916                 }
917         }
918
919         snd_printdd(KERN_INFO "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
920                     cval->id, kctl->id.name, cval->channels, cval->min, cval->max, cval->res);
921         add_control_to_empty(state, kctl);
922 }
923
924
925
926 /*
927  * parse a feature unit
928  *
929  * most of controlls are defined here.
930  */
931 static int parse_audio_feature_unit(mixer_build_t *state, int unitid, unsigned char *ftr)
932 {
933         int channels, i, j;
934         usb_audio_term_t iterm;
935         unsigned int master_bits, first_ch_bits;
936         int err, csize;
937
938         if (ftr[0] < 7 || ! (csize = ftr[5]) || ftr[0] < 7 + csize) {
939                 snd_printk(KERN_ERR "usbaudio: unit %u: invalid FEATURE_UNIT descriptor\n", unitid);
940                 return -EINVAL;
941         }
942
943         /* parse the source unit */
944         if ((err = parse_audio_unit(state, ftr[4])) < 0)
945                 return err;
946
947         /* determine the input source type and name */
948         if (check_input_term(state, ftr[4], &iterm) < 0)
949                 return -EINVAL;
950
951         channels = (ftr[0] - 7) / csize - 1;
952
953         master_bits = snd_usb_combine_bytes(ftr + 6, csize);
954         if (channels > 0)
955                 first_ch_bits = snd_usb_combine_bytes(ftr + 6 + csize, csize);
956         else
957                 first_ch_bits = 0;
958         /* check all control types */
959         for (i = 0; i < 10; i++) {
960                 unsigned int ch_bits = 0;
961                 for (j = 0; j < channels; j++) {
962                         unsigned int mask = snd_usb_combine_bytes(ftr + 6 + csize * (j+1), csize);
963                         if (mask & (1 << i))
964                                 ch_bits |= (1 << j);
965                 }
966                 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
967                         build_feature_ctl(state, ftr, ch_bits, i, &iterm, unitid);
968                 if (master_bits & (1 << i))
969                         build_feature_ctl(state, ftr, 0, i, &iterm, unitid);
970         }
971
972         return 0;
973 }
974
975
976 /*
977  * Mixer Unit
978  */
979
980 /*
981  * build a mixer unit control
982  *
983  * the callbacks are identical with feature unit.
984  * input channel number (zero based) is given in control field instead.
985  */
986
987 static void build_mixer_unit_ctl(mixer_build_t *state, unsigned char *desc,
988                                  int in_pin, int in_ch, int unitid,
989                                  usb_audio_term_t *iterm)
990 {
991         usb_mixer_elem_info_t *cval;
992         unsigned int input_pins = desc[4];
993         unsigned int num_outs = desc[5 + input_pins];
994         unsigned int i, len;
995         snd_kcontrol_t *kctl;
996
997         if (check_ignored_ctl(state, unitid, 0))
998                 return;
999
1000         cval = kcalloc(1, sizeof(*cval), GFP_KERNEL);
1001         if (! cval)
1002                 return;
1003
1004         cval->mixer = state->mixer;
1005         cval->id = unitid;
1006         cval->control = in_ch + 1; /* based on 1 */
1007         cval->val_type = USB_MIXER_S16;
1008         for (i = 0; i < num_outs; i++) {
1009                 if (check_matrix_bitmap(desc + 9 + input_pins, in_ch, i, num_outs)) {
1010                         cval->cmask |= (1 << i);
1011                         cval->channels++;
1012                 }
1013         }
1014
1015         /* get min/max values */
1016         get_min_max(cval, 0);
1017
1018         kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1019         if (! kctl) {
1020                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1021                 kfree(cval);
1022                 return;
1023         }
1024         kctl->private_free = usb_mixer_elem_free;
1025
1026         len = check_mapped_name(state, unitid, 0, kctl->id.name, sizeof(kctl->id.name));
1027         if (! len)
1028                 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0);
1029         if (! len)
1030                 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
1031         strlcat(kctl->id.name + len, " Volume", sizeof(kctl->id.name));
1032
1033         snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n",
1034                     cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
1035         add_control_to_empty(state, kctl);
1036 }
1037
1038
1039 /*
1040  * parse a mixer unit
1041  */
1042 static int parse_audio_mixer_unit(mixer_build_t *state, int unitid, unsigned char *desc)
1043 {
1044         usb_audio_term_t iterm;
1045         int input_pins, num_ins, num_outs;
1046         int pin, ich, err;
1047
1048         if (desc[0] < 11 || ! (input_pins = desc[4]) || ! (num_outs = desc[5 + input_pins])) {
1049                 snd_printk(KERN_ERR "invalid MIXER UNIT descriptor %d\n", unitid);
1050                 return -EINVAL;
1051         }
1052         /* no bmControls field (e.g. Maya44) -> ignore */
1053         if (desc[0] <= 10 + input_pins) {
1054                 snd_printdd(KERN_INFO "MU %d has no bmControls field\n", unitid);
1055                 return 0;
1056         }
1057
1058         num_ins = 0;
1059         ich = 0;
1060         for (pin = 0; pin < input_pins; pin++) {
1061                 err = parse_audio_unit(state, desc[5 + pin]);
1062                 if (err < 0)
1063                         return err;
1064                 err = check_input_term(state, desc[5 + pin], &iterm);
1065                 if (err < 0)
1066                         return err;
1067                 num_ins += iterm.channels;
1068                 for (; ich < num_ins; ++ich) {
1069                         int och, ich_has_controls = 0;
1070
1071                         for (och = 0; och < num_outs; ++och) {
1072                                 if (check_matrix_bitmap(desc + 9 + input_pins,
1073                                                         ich, och, num_outs)) {
1074                                         ich_has_controls = 1;
1075                                         break;
1076                                 }
1077                         }
1078                         if (ich_has_controls)
1079                                 build_mixer_unit_ctl(state, desc, pin, ich,
1080                                                      unitid, &iterm);
1081                 }
1082         }
1083         return 0;
1084 }
1085
1086
1087 /*
1088  * Processing Unit / Extension Unit
1089  */
1090
1091 /* get callback for processing/extension unit */
1092 static int mixer_ctl_procunit_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
1093 {
1094         usb_mixer_elem_info_t *cval = kcontrol->private_data;
1095         int err, val;
1096
1097         err = get_cur_ctl_value(cval, cval->control << 8, &val);
1098         if (err < 0 && cval->mixer->ignore_ctl_error) {
1099                 ucontrol->value.integer.value[0] = cval->min;
1100                 return 0;
1101         }
1102         if (err < 0)
1103                 return err;
1104         val = get_relative_value(cval, val);
1105         ucontrol->value.integer.value[0] = val;
1106         return 0;
1107 }
1108
1109 /* put callback for processing/extension unit */
1110 static int mixer_ctl_procunit_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
1111 {
1112         usb_mixer_elem_info_t *cval = kcontrol->private_data;
1113         int val, oval, err;
1114
1115         err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1116         if (err < 0) {
1117                 if (cval->mixer->ignore_ctl_error)
1118                         return 0;
1119                 return err;
1120         }
1121         val = ucontrol->value.integer.value[0];
1122         val = get_abs_value(cval, val);
1123         if (val != oval) {
1124                 set_cur_ctl_value(cval, cval->control << 8, val);
1125                 return 1;
1126         }
1127         return 0;
1128 }
1129
1130 /* alsa control interface for processing/extension unit */
1131 static snd_kcontrol_new_t mixer_procunit_ctl = {
1132         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1133         .name = "", /* will be filled later */
1134         .info = mixer_ctl_feature_info,
1135         .get = mixer_ctl_procunit_get,
1136         .put = mixer_ctl_procunit_put,
1137 };
1138
1139
1140 /*
1141  * predefined data for processing units
1142  */
1143 struct procunit_value_info {
1144         int control;
1145         char *suffix;
1146         int val_type;
1147         int min_value;
1148 };
1149
1150 struct procunit_info {
1151         int type;
1152         char *name;
1153         struct procunit_value_info *values;
1154 };
1155
1156 static struct procunit_value_info updown_proc_info[] = {
1157         { USB_PROC_UPDOWN_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1158         { USB_PROC_UPDOWN_MODE_SEL, "Mode Select", USB_MIXER_U8, 1 },
1159         { 0 }
1160 };
1161 static struct procunit_value_info prologic_proc_info[] = {
1162         { USB_PROC_PROLOGIC_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1163         { USB_PROC_PROLOGIC_MODE_SEL, "Mode Select", USB_MIXER_U8, 1 },
1164         { 0 }
1165 };
1166 static struct procunit_value_info threed_enh_proc_info[] = {
1167         { USB_PROC_3DENH_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1168         { USB_PROC_3DENH_SPACE, "Spaciousness", USB_MIXER_U8 },
1169         { 0 }
1170 };
1171 static struct procunit_value_info reverb_proc_info[] = {
1172         { USB_PROC_REVERB_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1173         { USB_PROC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1174         { USB_PROC_REVERB_TIME, "Time", USB_MIXER_U16 },
1175         { USB_PROC_REVERB_DELAY, "Delay", USB_MIXER_U8 },
1176         { 0 }
1177 };
1178 static struct procunit_value_info chorus_proc_info[] = {
1179         { USB_PROC_CHORUS_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1180         { USB_PROC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1181         { USB_PROC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1182         { USB_PROC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
1183         { 0 }
1184 };
1185 static struct procunit_value_info dcr_proc_info[] = {
1186         { USB_PROC_DCR_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1187         { USB_PROC_DCR_RATIO, "Ratio", USB_MIXER_U16 },
1188         { USB_PROC_DCR_MAX_AMP, "Max Amp", USB_MIXER_S16 },
1189         { USB_PROC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1190         { USB_PROC_DCR_ATTACK, "Attack Time", USB_MIXER_U16 },
1191         { USB_PROC_DCR_RELEASE, "Release Time", USB_MIXER_U16 },
1192         { 0 }
1193 };
1194
1195 static struct procunit_info procunits[] = {
1196         { USB_PROC_UPDOWN, "Up Down", updown_proc_info },
1197         { USB_PROC_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1198         { USB_PROC_3DENH, "3D Stereo Extender", threed_enh_proc_info },
1199         { USB_PROC_REVERB, "Reverb", reverb_proc_info },
1200         { USB_PROC_CHORUS, "Chorus", chorus_proc_info },
1201         { USB_PROC_DCR, "DCR", dcr_proc_info },
1202         { 0 },
1203 };
1204
1205 /*
1206  * build a processing/extension unit
1207  */
1208 static int build_audio_procunit(mixer_build_t *state, int unitid, unsigned char *dsc, struct procunit_info *list, char *name)
1209 {
1210         int num_ins = dsc[6];
1211         usb_mixer_elem_info_t *cval;
1212         snd_kcontrol_t *kctl;
1213         int i, err, nameid, type, len;
1214         struct procunit_info *info;
1215         struct procunit_value_info *valinfo;
1216         static struct procunit_value_info default_value_info[] = {
1217                 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1218                 { 0 }
1219         };
1220         static struct procunit_info default_info = {
1221                 0, NULL, default_value_info
1222         };
1223
1224         if (dsc[0] < 13 || dsc[0] < 13 + num_ins || dsc[0] < num_ins + dsc[11 + num_ins]) {
1225                 snd_printk(KERN_ERR "invalid %s descriptor (id %d)\n", name, unitid);
1226                 return -EINVAL;
1227         }
1228
1229         for (i = 0; i < num_ins; i++) {
1230                 if ((err = parse_audio_unit(state, dsc[7 + i])) < 0)
1231                         return err;
1232         }
1233
1234         type = combine_word(&dsc[4]);
1235         for (info = list; info && info->type; info++)
1236                 if (info->type == type)
1237                         break;
1238         if (! info || ! info->type)
1239                 info = &default_info;
1240
1241         for (valinfo = info->values; valinfo->control; valinfo++) {
1242                 /* FIXME: bitmap might be longer than 8bit */
1243                 if (! (dsc[12 + num_ins] & (1 << (valinfo->control - 1))))
1244                         continue;
1245                 if (check_ignored_ctl(state, unitid, valinfo->control))
1246                         continue;
1247                 cval = kcalloc(1, sizeof(*cval), GFP_KERNEL);
1248                 if (! cval) {
1249                         snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1250                         return -ENOMEM;
1251                 }
1252                 cval->mixer = state->mixer;
1253                 cval->id = unitid;
1254                 cval->control = valinfo->control;
1255                 cval->val_type = valinfo->val_type;
1256                 cval->channels = 1;
1257
1258                 /* get min/max values */
1259                 if (type == USB_PROC_UPDOWN && cval->control == USB_PROC_UPDOWN_MODE_SEL) {
1260                         /* FIXME: hard-coded */
1261                         cval->min = 1;
1262                         cval->max = dsc[15];
1263                         cval->res = 1;
1264                         cval->initialized = 1;
1265                 } else
1266                         get_min_max(cval, valinfo->min_value);
1267
1268                 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
1269                 if (! kctl) {
1270                         snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1271                         kfree(cval);
1272                         return -ENOMEM;
1273                 }
1274                 kctl->private_free = usb_mixer_elem_free;
1275
1276                 if (check_mapped_name(state, unitid, cval->control, kctl->id.name, sizeof(kctl->id.name)))
1277                         ;
1278                 else if (info->name)
1279                         strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1280                 else {
1281                         nameid = dsc[12 + num_ins + dsc[11 + num_ins]];
1282                         len = 0;
1283                         if (nameid)
1284                                 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1285                         if (! len)
1286                                 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1287                 }
1288                 strlcat(kctl->id.name, " ", sizeof(kctl->id.name));
1289                 strlcat(kctl->id.name, valinfo->suffix, sizeof(kctl->id.name));
1290
1291                 snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n",
1292                             cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
1293                 if ((err = add_control_to_empty(state, kctl)) < 0)
1294                         return err;
1295         }
1296         return 0;
1297 }
1298
1299
1300 static int parse_audio_processing_unit(mixer_build_t *state, int unitid, unsigned char *desc)
1301 {
1302         return build_audio_procunit(state, unitid, desc, procunits, "Processing Unit");
1303 }
1304
1305 static int parse_audio_extension_unit(mixer_build_t *state, int unitid, unsigned char *desc)
1306 {
1307         return build_audio_procunit(state, unitid, desc, NULL, "Extension Unit");
1308 }
1309
1310
1311 /*
1312  * Selector Unit
1313  */
1314
1315 /* info callback for selector unit
1316  * use an enumerator type for routing
1317  */
1318 static int mixer_ctl_selector_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
1319 {
1320         usb_mixer_elem_info_t *cval = kcontrol->private_data;
1321         char **itemlist = (char **)kcontrol->private_value;
1322
1323         snd_assert(itemlist, return -EINVAL);
1324         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1325         uinfo->count = 1;
1326         uinfo->value.enumerated.items = cval->max;
1327         if ((int)uinfo->value.enumerated.item >= cval->max)
1328                 uinfo->value.enumerated.item = cval->max - 1;
1329         strcpy(uinfo->value.enumerated.name, itemlist[uinfo->value.enumerated.item]);
1330         return 0;
1331 }
1332
1333 /* get callback for selector unit */
1334 static int mixer_ctl_selector_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
1335 {
1336         usb_mixer_elem_info_t *cval = kcontrol->private_data;
1337         int val, err;
1338
1339         err = get_cur_ctl_value(cval, 0, &val);
1340         if (err < 0) {
1341                 if (cval->mixer->ignore_ctl_error) {
1342                         ucontrol->value.enumerated.item[0] = 0;
1343                         return 0;
1344                 }
1345                 return err;
1346         }
1347         val = get_relative_value(cval, val);
1348         ucontrol->value.enumerated.item[0] = val;
1349         return 0;
1350 }
1351
1352 /* put callback for selector unit */
1353 static int mixer_ctl_selector_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
1354 {
1355         usb_mixer_elem_info_t *cval = kcontrol->private_data;
1356         int val, oval, err;
1357
1358         err = get_cur_ctl_value(cval, 0, &oval);
1359         if (err < 0) {
1360                 if (cval->mixer->ignore_ctl_error)
1361                         return 0;
1362                 return err;
1363         }
1364         val = ucontrol->value.enumerated.item[0];
1365         val = get_abs_value(cval, val);
1366         if (val != oval) {
1367                 set_cur_ctl_value(cval, 0, val);
1368                 return 1;
1369         }
1370         return 0;
1371 }
1372
1373 /* alsa control interface for selector unit */
1374 static snd_kcontrol_new_t mixer_selectunit_ctl = {
1375         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1376         .name = "", /* will be filled later */
1377         .info = mixer_ctl_selector_info,
1378         .get = mixer_ctl_selector_get,
1379         .put = mixer_ctl_selector_put,
1380 };
1381
1382
1383 /* private free callback.
1384  * free both private_data and private_value
1385  */
1386 static void usb_mixer_selector_elem_free(snd_kcontrol_t *kctl)
1387 {
1388         int i, num_ins = 0;
1389
1390         if (kctl->private_data) {
1391                 usb_mixer_elem_info_t *cval = kctl->private_data;
1392                 num_ins = cval->max;
1393                 kfree(cval);
1394                 kctl->private_data = NULL;
1395         }
1396         if (kctl->private_value) {
1397                 char **itemlist = (char **)kctl->private_value;
1398                 for (i = 0; i < num_ins; i++)
1399                         kfree(itemlist[i]);
1400                 kfree(itemlist);
1401                 kctl->private_value = 0;
1402         }
1403 }
1404
1405 /*
1406  * parse a selector unit
1407  */
1408 static int parse_audio_selector_unit(mixer_build_t *state, int unitid, unsigned char *desc)
1409 {
1410         unsigned int num_ins = desc[4];
1411         unsigned int i, nameid, len;
1412         int err;
1413         usb_mixer_elem_info_t *cval;
1414         snd_kcontrol_t *kctl;
1415         char **namelist;
1416
1417         if (! num_ins || desc[0] < 6 + num_ins) {
1418                 snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
1419                 return -EINVAL;
1420         }
1421
1422         for (i = 0; i < num_ins; i++) {
1423                 if ((err = parse_audio_unit(state, desc[5 + i])) < 0)
1424                         return err;
1425         }
1426
1427         if (num_ins == 1) /* only one ? nonsense! */
1428                 return 0;
1429
1430         if (check_ignored_ctl(state, unitid, 0))
1431                 return 0;
1432
1433         cval = kcalloc(1, sizeof(*cval), GFP_KERNEL);
1434         if (! cval) {
1435                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1436                 return -ENOMEM;
1437         }
1438         cval->mixer = state->mixer;
1439         cval->id = unitid;
1440         cval->val_type = USB_MIXER_U8;
1441         cval->channels = 1;
1442         cval->min = 1;
1443         cval->max = num_ins;
1444         cval->res = 1;
1445         cval->initialized = 1;
1446
1447         namelist = kmalloc(sizeof(char *) * num_ins, GFP_KERNEL);
1448         if (! namelist) {
1449                 snd_printk(KERN_ERR "cannot malloc\n");
1450                 kfree(cval);
1451                 return -ENOMEM;
1452         }
1453 #define MAX_ITEM_NAME_LEN       64
1454         for (i = 0; i < num_ins; i++) {
1455                 usb_audio_term_t iterm;
1456                 len = 0;
1457                 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
1458                 if (! namelist[i]) {
1459                         snd_printk(KERN_ERR "cannot malloc\n");
1460                         while (--i > 0)
1461                                 kfree(namelist[i]);
1462                         kfree(namelist);
1463                         kfree(cval);
1464                         return -ENOMEM;
1465                 }
1466                 len = check_mapped_selector_name(state, unitid, i, namelist[i],
1467                                                  MAX_ITEM_NAME_LEN);
1468                 if (! len && check_input_term(state, desc[5 + i], &iterm) >= 0)
1469                         len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
1470                 if (! len)
1471                         sprintf(namelist[i], "Input %d", i);
1472         }
1473
1474         kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
1475         if (! kctl) {
1476                 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1477                 kfree(cval);
1478                 return -ENOMEM;
1479         }
1480         kctl->private_value = (unsigned long)namelist;
1481         kctl->private_free = usb_mixer_selector_elem_free;
1482
1483         nameid = desc[desc[0] - 1];
1484         len = check_mapped_name(state, unitid, 0, kctl->id.name, sizeof(kctl->id.name));
1485         if (len)
1486                 ;
1487         else if (nameid)
1488                 snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1489         else {
1490                 len = get_term_name(state, &state->oterm,
1491                                     kctl->id.name, sizeof(kctl->id.name), 0);
1492                 if (! len)
1493                         strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
1494
1495                 if ((state->oterm.type & 0xff00) == 0x0100)
1496                         strlcat(kctl->id.name, " Capture Source", sizeof(kctl->id.name));
1497                 else
1498                         strlcat(kctl->id.name, " Playback Source", sizeof(kctl->id.name));
1499         }
1500
1501         snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
1502                     cval->id, kctl->id.name, num_ins);
1503         if ((err = add_control_to_empty(state, kctl)) < 0)
1504                 return err;
1505
1506         return 0;
1507 }
1508
1509
1510 /*
1511  * parse an audio unit recursively
1512  */
1513
1514 static int parse_audio_unit(mixer_build_t *state, int unitid)
1515 {
1516         unsigned char *p1;
1517
1518         if (test_and_set_bit(unitid, state->unitbitmap))
1519                 return 0; /* the unit already visited */
1520
1521         p1 = find_audio_control_unit(state, unitid);
1522         if (!p1) {
1523                 snd_printk(KERN_ERR "usbaudio: unit %d not found!\n", unitid);
1524                 return -EINVAL;
1525         }
1526
1527         switch (p1[2]) {
1528         case INPUT_TERMINAL:
1529                 return 0; /* NOP */
1530         case MIXER_UNIT:
1531                 return parse_audio_mixer_unit(state, unitid, p1);
1532         case SELECTOR_UNIT:
1533                 return parse_audio_selector_unit(state, unitid, p1);
1534         case FEATURE_UNIT:
1535                 return parse_audio_feature_unit(state, unitid, p1);
1536         case PROCESSING_UNIT:
1537                 return parse_audio_processing_unit(state, unitid, p1);
1538         case EXTENSION_UNIT:
1539                 return parse_audio_extension_unit(state, unitid, p1);
1540         default:
1541                 snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
1542                 return -EINVAL;
1543         }
1544 }
1545
1546 static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
1547 {
1548         kfree(mixer->id_elems);
1549         if (mixer->urb) {
1550                 kfree(mixer->urb->transfer_buffer);
1551                 usb_free_urb(mixer->urb);
1552         }
1553         if (mixer->rc_urb)
1554                 usb_free_urb(mixer->rc_urb);
1555         kfree(mixer->rc_setup_packet);
1556         kfree(mixer);
1557 }
1558
1559 static int snd_usb_mixer_dev_free(snd_device_t *device)
1560 {
1561         struct usb_mixer_interface *mixer = device->device_data;
1562         snd_usb_mixer_free(mixer);
1563         return 0;
1564 }
1565
1566 /*
1567  * create mixer controls
1568  *
1569  * walk through all OUTPUT_TERMINAL descriptors to search for mixers
1570  */
1571 static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
1572 {
1573         unsigned char *desc;
1574         mixer_build_t state;
1575         int err;
1576         const struct usbmix_ctl_map *map;
1577         struct usb_host_interface *hostif;
1578
1579         hostif = &usb_ifnum_to_if(mixer->chip->dev, mixer->ctrlif)->altsetting[0];
1580         memset(&state, 0, sizeof(state));
1581         state.chip = mixer->chip;
1582         state.mixer = mixer;
1583         state.buffer = hostif->extra;
1584         state.buflen = hostif->extralen;
1585
1586         /* check the mapping table */
1587         for (map = usbmix_ctl_maps; map->id; map++) {
1588                 if (map->id == state.chip->usb_id) {
1589                         state.map = map->map;
1590                         state.selector_map = map->selector_map;
1591                         mixer->ignore_ctl_error = map->ignore_ctl_error;
1592                         break;
1593                 }
1594         }
1595
1596         desc = NULL;
1597         while ((desc = snd_usb_find_csint_desc(hostif->extra, hostif->extralen, desc, OUTPUT_TERMINAL)) != NULL) {
1598                 if (desc[0] < 9)
1599                         continue; /* invalid descriptor? */
1600                 set_bit(desc[3], state.unitbitmap);  /* mark terminal ID as visited */
1601                 state.oterm.id = desc[3];
1602                 state.oterm.type = combine_word(&desc[4]);
1603                 state.oterm.name = desc[8];
1604                 err = parse_audio_unit(&state, desc[7]);
1605                 if (err < 0)
1606                         return err;
1607         }
1608         return 0;
1609 }
1610
1611 static void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer,
1612                                     int unitid)
1613 {
1614         usb_mixer_elem_info_t *info;
1615
1616         for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
1617                 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1618                                info->elem_id);
1619 }
1620
1621 static void snd_usb_mixer_memory_change(struct usb_mixer_interface *mixer,
1622                                         int unitid)
1623 {
1624         /* SB remote control */
1625         if (mixer->rc_type != RC_NONE && unitid == 0) {
1626                 /* read control code from device memory */
1627                 mixer->rc_urb->dev = mixer->chip->dev;
1628                 usb_submit_urb(mixer->rc_urb, GFP_ATOMIC);
1629         }
1630 }
1631
1632 static void snd_usb_mixer_status_complete(struct urb *urb, struct pt_regs *regs)
1633 {
1634         struct usb_mixer_interface *mixer = urb->context;
1635
1636         if (urb->status == 0) {
1637                 u8 *buf = urb->transfer_buffer;
1638                 int i;
1639
1640                 for (i = urb->actual_length; i >= 2; buf += 2, i -= 2) {
1641                         snd_printd(KERN_DEBUG "status interrupt: %02x %02x\n",
1642                                    buf[0], buf[1]);
1643                         /* ignore any notifications not from the control interface */
1644                         if ((buf[0] & 0x0f) != 0)
1645                                 continue;
1646                         if (!(buf[0] & 0x40))
1647                                 snd_usb_mixer_notify_id(mixer, buf[1]);
1648                         else
1649                                 snd_usb_mixer_memory_change(mixer, buf[1]);
1650                 }
1651         }
1652         if (urb->status != -ENOENT && urb->status != -ECONNRESET) {
1653                 urb->dev = mixer->chip->dev;
1654                 usb_submit_urb(urb, GFP_ATOMIC);
1655         }
1656 }
1657
1658 /* create the handler for the optional status interrupt endpoint */
1659 static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
1660 {
1661         struct usb_host_interface *hostif;
1662         struct usb_endpoint_descriptor *ep;
1663         void *transfer_buffer;
1664         int buffer_length;
1665         unsigned int epnum;
1666
1667         hostif = &usb_ifnum_to_if(mixer->chip->dev, mixer->ctrlif)->altsetting[0];
1668         /* we need one interrupt input endpoint */
1669         if (get_iface_desc(hostif)->bNumEndpoints < 1)
1670                 return 0;
1671         ep = get_endpoint(hostif, 0);
1672         if ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK) != USB_DIR_IN ||
1673             (ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_INT)
1674                 return 0;
1675
1676         epnum = ep->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
1677         buffer_length = le16_to_cpu(ep->wMaxPacketSize);
1678         transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
1679         if (!transfer_buffer)
1680                 return -ENOMEM;
1681         mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
1682         if (!mixer->urb) {
1683                 kfree(transfer_buffer);
1684                 return -ENOMEM;
1685         }
1686         usb_fill_int_urb(mixer->urb, mixer->chip->dev,
1687                          usb_rcvintpipe(mixer->chip->dev, epnum),
1688                          transfer_buffer, buffer_length,
1689                          snd_usb_mixer_status_complete, mixer, ep->bInterval);
1690         usb_submit_urb(mixer->urb, GFP_KERNEL);
1691         return 0;
1692 }
1693
1694 static void snd_usb_soundblaster_remote_complete(struct urb *urb,
1695                                                  struct pt_regs *regs)
1696 {
1697         struct usb_mixer_interface *mixer = urb->context;
1698         /*
1699          * format of remote control data:
1700          * Extigy:      xx 00
1701          * Audigy 2 NX: 06 80 xx 00 00 00
1702          */
1703         int offset = mixer->rc_type == RC_EXTIGY ? 0 : 2;
1704         u32 code;
1705
1706         if (urb->status < 0 || urb->actual_length <= offset)
1707                 return;
1708         code = mixer->rc_buffer[offset];
1709         /* the Mute button actually changes the mixer control */
1710         if (code == 13)
1711                 snd_usb_mixer_notify_id(mixer, 18);
1712         mixer->rc_code = code;
1713         wmb();
1714         wake_up(&mixer->rc_waitq);
1715 }
1716
1717 static int snd_usb_sbrc_hwdep_open(snd_hwdep_t *hw, struct file *file)
1718 {
1719         struct usb_mixer_interface *mixer = hw->private_data;
1720
1721         if (test_and_set_bit(0, &mixer->rc_hwdep_open))
1722                 return -EBUSY;
1723         return 0;
1724 }
1725
1726 static int snd_usb_sbrc_hwdep_release(snd_hwdep_t *hw, struct file *file)
1727 {
1728         struct usb_mixer_interface *mixer = hw->private_data;
1729
1730         clear_bit(0, &mixer->rc_hwdep_open);
1731         smp_mb__after_clear_bit();
1732         return 0;
1733 }
1734
1735 static long snd_usb_sbrc_hwdep_read(snd_hwdep_t *hw, char __user *buf,
1736                                      long count, loff_t *offset)
1737 {
1738         struct usb_mixer_interface *mixer = hw->private_data;
1739         int err;
1740         u32 rc_code;
1741
1742         if (count != 1)
1743                 return -EINVAL;
1744         err = wait_event_interruptible(mixer->rc_waitq,
1745                                        (rc_code = xchg(&mixer->rc_code, 0)) != 0);
1746         if (err == 0) {
1747                 err = put_user(rc_code, buf);
1748         }
1749         return err < 0 ? err : count;
1750 }
1751
1752 static unsigned int snd_usb_sbrc_hwdep_poll(snd_hwdep_t *hw, struct file *file,
1753                                             poll_table *wait)
1754 {
1755         struct usb_mixer_interface *mixer = hw->private_data;
1756
1757         poll_wait(file, &mixer->rc_waitq, wait);
1758         return mixer->rc_code ? POLLIN | POLLRDNORM : 0;
1759 }
1760
1761 static int snd_usb_soundblaster_remote_init(struct usb_mixer_interface *mixer)
1762 {
1763         snd_hwdep_t *hwdep;
1764         int err, len;
1765
1766         switch (mixer->chip->usb_id) {
1767         case USB_ID(0x041e, 0x3000):
1768                 mixer->rc_type = RC_EXTIGY;
1769                 len = 2;
1770                 break;
1771         case USB_ID(0x041e, 0x3020):
1772                 mixer->rc_type = RC_AUDIGY2NX;
1773                 len = 6;
1774                 break;
1775         default:
1776                 return 0;
1777         }
1778
1779         init_waitqueue_head(&mixer->rc_waitq);
1780         err = snd_hwdep_new(mixer->chip->card, "SB remote control", 0, &hwdep);
1781         if (err < 0)
1782                 return err;
1783         snprintf(hwdep->name, sizeof(hwdep->name),
1784                  "%s remote control", mixer->chip->card->shortname);
1785         hwdep->iface = SNDRV_HWDEP_IFACE_SB_RC;
1786         hwdep->private_data = mixer;
1787         hwdep->ops.read = snd_usb_sbrc_hwdep_read;
1788         hwdep->ops.open = snd_usb_sbrc_hwdep_open;
1789         hwdep->ops.release = snd_usb_sbrc_hwdep_release;
1790         hwdep->ops.poll = snd_usb_sbrc_hwdep_poll;
1791
1792         mixer->rc_urb = usb_alloc_urb(0, GFP_KERNEL);
1793         if (!mixer->rc_urb)
1794                 return -ENOMEM;
1795         mixer->rc_setup_packet = kmalloc(sizeof(*mixer->rc_setup_packet), GFP_KERNEL);
1796         if (!mixer->rc_setup_packet) {
1797                 usb_free_urb(mixer->rc_urb);
1798                 mixer->rc_urb = NULL;
1799                 return -ENOMEM;
1800         }
1801         mixer->rc_setup_packet->bRequestType =
1802                 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE;
1803         mixer->rc_setup_packet->bRequest = GET_MEM;
1804         mixer->rc_setup_packet->wValue = cpu_to_le16(0);
1805         mixer->rc_setup_packet->wIndex = cpu_to_le16(0);
1806         mixer->rc_setup_packet->wLength = cpu_to_le16(len);
1807         usb_fill_control_urb(mixer->rc_urb, mixer->chip->dev,
1808                              usb_rcvctrlpipe(mixer->chip->dev, 0),
1809                              (u8*)mixer->rc_setup_packet, mixer->rc_buffer, len,
1810                              snd_usb_soundblaster_remote_complete, mixer);
1811         return 0;
1812 }
1813
1814 int snd_usb_create_mixer(snd_usb_audio_t *chip, int ctrlif)
1815 {
1816         static snd_device_ops_t dev_ops = {
1817                 .dev_free = snd_usb_mixer_dev_free
1818         };
1819         struct usb_mixer_interface *mixer;
1820         int err;
1821
1822         strcpy(chip->card->mixername, "USB Mixer");
1823
1824         mixer = kcalloc(1, sizeof(*mixer), GFP_KERNEL);
1825         if (!mixer)
1826                 return -ENOMEM;
1827         mixer->chip = chip;
1828         mixer->ctrlif = ctrlif;
1829 #ifdef IGNORE_CTL_ERROR
1830         mixer->ignore_ctl_error = 1;
1831 #endif
1832         mixer->id_elems = kcalloc(256, sizeof(*mixer->id_elems), GFP_KERNEL);
1833         if (!mixer->id_elems) {
1834                 kfree(mixer);
1835                 return -ENOMEM;
1836         }
1837
1838         if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
1839             (err = snd_usb_mixer_status_create(mixer)) < 0) {
1840                 snd_usb_mixer_free(mixer);
1841                 return err;
1842         }
1843
1844         if ((err = snd_usb_soundblaster_remote_init(mixer)) < 0) {
1845                 snd_usb_mixer_free(mixer);
1846                 return err;
1847         }
1848
1849         err = snd_device_new(chip->card, SNDRV_DEV_LOWLEVEL, mixer, &dev_ops);
1850         if (err < 0) {
1851                 snd_usb_mixer_free(mixer);
1852                 return err;
1853         }
1854         list_add(&mixer->list, &chip->mixer_list);
1855         return 0;
1856 }
1857
1858 void snd_usb_mixer_disconnect(struct list_head *p)
1859 {
1860         struct usb_mixer_interface *mixer;
1861         
1862         mixer = list_entry(p, struct usb_mixer_interface, list);
1863         if (mixer->urb)
1864                 usb_kill_urb(mixer->urb);
1865         if (mixer->rc_urb)
1866                 usb_kill_urb(mixer->rc_urb);
1867 }