2 * (Tentative) USB Audio Driver for ALSA
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
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.
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.
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
29 #include <linux/bitops.h>
30 #include <linux/init.h>
31 #include <linux/list.h>
32 #include <linux/slab.h>
33 #include <linux/string.h>
34 #include <linux/usb.h>
35 #include <sound/core.h>
36 #include <sound/control.h>
37 #include <sound/hwdep.h>
38 #include <sound/info.h>
39 #include <sound/tlv.h>
46 /* ignore error from controls - for debugging */
47 /* #define IGNORE_CTL_ERROR */
50 * Sound Blaster remote control configuration
52 * format of remote control data:
54 * Audigy 2 NX: 06 80 xx 00 00 00
55 * Live! 24-bit: 06 80 xx yy 22 83
57 static const struct rc_config
{
62 u8 min_packet_length
; /* minimum accepted length of the URB result */
66 { USB_ID(0x041e, 0x3000), 0, 1, 2, 1, 18, 0x0013 }, /* Extigy */
67 { USB_ID(0x041e, 0x3020), 2, 1, 6, 6, 18, 0x0013 }, /* Audigy 2 NX */
68 { USB_ID(0x041e, 0x3040), 2, 2, 6, 6, 2, 0x6e91 }, /* Live! 24-bit */
69 { USB_ID(0x041e, 0x3048), 2, 2, 6, 6, 2, 0x6e91 }, /* Toshiba SB0500 */
72 struct usb_mixer_interface
{
73 struct snd_usb_audio
*chip
;
75 struct list_head list
;
76 unsigned int ignore_ctl_error
;
78 struct usb_mixer_elem_info
**id_elems
; /* array[256], indexed by unit id */
80 /* Sound Blaster remote control stuff */
81 const struct rc_config
*rc_cfg
;
83 wait_queue_head_t rc_waitq
;
85 struct usb_ctrlrequest
*rc_setup_packet
;
92 struct usb_audio_term
{
96 unsigned int chconfig
;
100 struct usbmix_name_map
;
103 struct snd_usb_audio
*chip
;
104 struct usb_mixer_interface
*mixer
;
105 unsigned char *buffer
;
107 DECLARE_BITMAP(unitbitmap
, 256);
108 struct usb_audio_term oterm
;
109 const struct usbmix_name_map
*map
;
110 const struct usbmix_selector_map
*selector_map
;
113 #define MAX_CHANNELS 10 /* max logical channels */
115 struct usb_mixer_elem_info
{
116 struct usb_mixer_interface
*mixer
;
117 struct usb_mixer_elem_info
*next_id_elem
; /* list of controls with same id */
118 struct snd_ctl_elem_id
*elem_id
;
120 unsigned int control
; /* CS or ICN (high byte) */
121 unsigned int cmask
; /* channel mask bitmap: 0 = master */
126 int cache_val
[MAX_CHANNELS
];
132 USB_FEATURE_NONE
= 0,
133 USB_FEATURE_MUTE
= 1,
141 USB_FEATURE_BASSBOOST
,
147 USB_MIXER_INV_BOOLEAN
,
156 USB_PROC_UPDOWN_SWITCH
= 1,
157 USB_PROC_UPDOWN_MODE_SEL
= 2,
159 USB_PROC_PROLOGIC
= 2,
160 USB_PROC_PROLOGIC_SWITCH
= 1,
161 USB_PROC_PROLOGIC_MODE_SEL
= 2,
164 USB_PROC_3DENH_SWITCH
= 1,
165 USB_PROC_3DENH_SPACE
= 2,
168 USB_PROC_REVERB_SWITCH
= 1,
169 USB_PROC_REVERB_LEVEL
= 2,
170 USB_PROC_REVERB_TIME
= 3,
171 USB_PROC_REVERB_DELAY
= 4,
174 USB_PROC_CHORUS_SWITCH
= 1,
175 USB_PROC_CHORUS_LEVEL
= 2,
176 USB_PROC_CHORUS_RATE
= 3,
177 USB_PROC_CHORUS_DEPTH
= 4,
180 USB_PROC_DCR_SWITCH
= 1,
181 USB_PROC_DCR_RATIO
= 2,
182 USB_PROC_DCR_MAX_AMP
= 3,
183 USB_PROC_DCR_THRESHOLD
= 4,
184 USB_PROC_DCR_ATTACK
= 5,
185 USB_PROC_DCR_RELEASE
= 6,
190 * manual mapping of mixer names
191 * if the mixer topology is too complicated and the parsed names are
192 * ambiguous, add the entries in usbmixer_maps.c.
194 #include "usbmixer_maps.c"
196 /* get the mapped name if the unit matches */
197 static int check_mapped_name(struct mixer_build
*state
, int unitid
, int control
, char *buf
, int buflen
)
199 const struct usbmix_name_map
*p
;
204 for (p
= state
->map
; p
->id
; p
++) {
205 if (p
->id
== unitid
&& p
->name
&&
206 (! control
|| ! p
->control
|| control
== p
->control
)) {
208 return strlcpy(buf
, p
->name
, buflen
);
214 /* check whether the control should be ignored */
215 static int check_ignored_ctl(struct mixer_build
*state
, int unitid
, int control
)
217 const struct usbmix_name_map
*p
;
221 for (p
= state
->map
; p
->id
; p
++) {
222 if (p
->id
== unitid
&& ! p
->name
&&
223 (! control
|| ! p
->control
|| control
== p
->control
)) {
225 printk(KERN_DEBUG "ignored control %d:%d\n",
234 /* get the mapped selector source name */
235 static int check_mapped_selector_name(struct mixer_build
*state
, int unitid
,
236 int index
, char *buf
, int buflen
)
238 const struct usbmix_selector_map
*p
;
240 if (! state
->selector_map
)
242 for (p
= state
->selector_map
; p
->id
; p
++) {
243 if (p
->id
== unitid
&& index
< p
->count
)
244 return strlcpy(buf
, p
->names
[index
], buflen
);
250 * find an audio control unit with the given unit id
252 static void *find_audio_control_unit(struct mixer_build
*state
, unsigned char unit
)
257 while ((p
= snd_usb_find_desc(state
->buffer
, state
->buflen
, p
,
258 USB_DT_CS_INTERFACE
)) != NULL
) {
259 if (p
[0] >= 4 && p
[2] >= INPUT_TERMINAL
&& p
[2] <= EXTENSION_UNIT
&& p
[3] == unit
)
267 * copy a string with the given id
269 static int snd_usb_copy_string_desc(struct mixer_build
*state
, int index
, char *buf
, int maxlen
)
271 int len
= usb_string(state
->chip
->dev
, index
, buf
, maxlen
- 1);
277 * convert from the byte/word on usb descriptor to the zero-based integer
279 static int convert_signed_value(struct usb_mixer_elem_info
*cval
, int val
)
281 switch (cval
->val_type
) {
282 case USB_MIXER_BOOLEAN
:
284 case USB_MIXER_INV_BOOLEAN
:
307 * convert from the zero-based int to the byte/word for usb descriptor
309 static int convert_bytes_value(struct usb_mixer_elem_info
*cval
, int val
)
311 switch (cval
->val_type
) {
312 case USB_MIXER_BOOLEAN
:
314 case USB_MIXER_INV_BOOLEAN
:
323 return 0; /* not reached */
326 static int get_relative_value(struct usb_mixer_elem_info
*cval
, int val
)
332 else if (val
>= cval
->max
)
333 return (cval
->max
- cval
->min
+ cval
->res
- 1) / cval
->res
;
335 return (val
- cval
->min
) / cval
->res
;
338 static int get_abs_value(struct usb_mixer_elem_info
*cval
, int val
)
353 * retrieve a mixer value
356 static int get_ctl_value(struct usb_mixer_elem_info
*cval
, int request
, int validx
, int *value_ret
)
358 unsigned char buf
[2];
359 int val_len
= cval
->val_type
>= USB_MIXER_S16
? 2 : 1;
362 while (timeout
-- > 0) {
363 if (snd_usb_ctl_msg(cval
->mixer
->chip
->dev
,
364 usb_rcvctrlpipe(cval
->mixer
->chip
->dev
, 0),
366 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
367 validx
, cval
->mixer
->ctrlif
| (cval
->id
<< 8),
368 buf
, val_len
, 100) >= val_len
) {
369 *value_ret
= convert_signed_value(cval
, snd_usb_combine_bytes(buf
, val_len
));
373 snd_printdd(KERN_ERR
"cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
374 request
, validx
, cval
->mixer
->ctrlif
| (cval
->id
<< 8), cval
->val_type
);
378 static int get_cur_ctl_value(struct usb_mixer_elem_info
*cval
, int validx
, int *value
)
380 return get_ctl_value(cval
, GET_CUR
, validx
, value
);
383 /* channel = 0: master, 1 = first channel */
384 static inline int get_cur_mix_raw(struct usb_mixer_elem_info
*cval
,
385 int channel
, int *value
)
387 return get_ctl_value(cval
, GET_CUR
, (cval
->control
<< 8) | channel
, value
);
390 static int get_cur_mix_value(struct usb_mixer_elem_info
*cval
,
391 int channel
, int index
, int *value
)
395 if (cval
->cached
& (1 << channel
)) {
396 *value
= cval
->cache_val
[index
];
399 err
= get_cur_mix_raw(cval
, channel
, value
);
401 if (!cval
->mixer
->ignore_ctl_error
)
402 snd_printd(KERN_ERR
"cannot get current value for "
403 "control %d ch %d: err = %d\n",
404 cval
->control
, channel
, err
);
407 cval
->cached
|= 1 << channel
;
408 cval
->cache_val
[index
] = *value
;
417 static int set_ctl_value(struct usb_mixer_elem_info
*cval
, int request
, int validx
, int value_set
)
419 unsigned char buf
[2];
420 int val_len
= cval
->val_type
>= USB_MIXER_S16
? 2 : 1;
423 value_set
= convert_bytes_value(cval
, value_set
);
424 buf
[0] = value_set
& 0xff;
425 buf
[1] = (value_set
>> 8) & 0xff;
426 while (timeout
-- > 0)
427 if (snd_usb_ctl_msg(cval
->mixer
->chip
->dev
,
428 usb_sndctrlpipe(cval
->mixer
->chip
->dev
, 0),
430 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_OUT
,
431 validx
, cval
->mixer
->ctrlif
| (cval
->id
<< 8),
432 buf
, val_len
, 100) >= 0)
434 snd_printdd(KERN_ERR
"cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
435 request
, validx
, cval
->mixer
->ctrlif
| (cval
->id
<< 8), cval
->val_type
, buf
[0], buf
[1]);
439 static int set_cur_ctl_value(struct usb_mixer_elem_info
*cval
, int validx
, int value
)
441 return set_ctl_value(cval
, SET_CUR
, validx
, value
);
444 static int set_cur_mix_value(struct usb_mixer_elem_info
*cval
, int channel
,
445 int index
, int value
)
448 err
= set_ctl_value(cval
, SET_CUR
, (cval
->control
<< 8) | channel
,
452 cval
->cached
|= 1 << channel
;
453 cval
->cache_val
[index
] = value
;
458 * TLV callback for mixer volume controls
460 static int mixer_vol_tlv(struct snd_kcontrol
*kcontrol
, int op_flag
,
461 unsigned int size
, unsigned int __user
*_tlv
)
463 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
464 DECLARE_TLV_DB_SCALE(scale
, 0, 0, 0);
466 if (size
< sizeof(scale
))
468 /* USB descriptions contain the dB scale in 1/256 dB unit
469 * while ALSA TLV contains in 1/100 dB unit
471 scale
[2] = (convert_signed_value(cval
, cval
->min
) * 100) / 256;
472 scale
[3] = (convert_signed_value(cval
, cval
->res
) * 100) / 256;
473 if (copy_to_user(_tlv
, scale
, sizeof(scale
)))
479 * parser routines begin here...
482 static int parse_audio_unit(struct mixer_build
*state
, int unitid
);
486 * check if the input/output channel routing is enabled on the given bitmap.
487 * used for mixer unit parser
489 static int check_matrix_bitmap(unsigned char *bmap
, int ich
, int och
, int num_outs
)
491 int idx
= ich
* num_outs
+ och
;
492 return bmap
[idx
>> 3] & (0x80 >> (idx
& 7));
497 * add an alsa control element
498 * search and increment the index until an empty slot is found.
500 * if failed, give up and free the control instance.
503 static int add_control_to_empty(struct mixer_build
*state
, struct snd_kcontrol
*kctl
)
505 struct usb_mixer_elem_info
*cval
= kctl
->private_data
;
508 while (snd_ctl_find_id(state
->chip
->card
, &kctl
->id
))
510 if ((err
= snd_ctl_add(state
->chip
->card
, kctl
)) < 0) {
511 snd_printd(KERN_ERR
"cannot add control (err = %d)\n", err
);
514 cval
->elem_id
= &kctl
->id
;
515 cval
->next_id_elem
= state
->mixer
->id_elems
[cval
->id
];
516 state
->mixer
->id_elems
[cval
->id
] = cval
;
522 * get a terminal name string
525 static struct iterm_name_combo
{
529 { 0x0300, "Output" },
530 { 0x0301, "Speaker" },
531 { 0x0302, "Headphone" },
532 { 0x0303, "HMD Audio" },
533 { 0x0304, "Desktop Speaker" },
534 { 0x0305, "Room Speaker" },
535 { 0x0306, "Com Speaker" },
537 { 0x0600, "External In" },
538 { 0x0601, "Analog In" },
539 { 0x0602, "Digital In" },
541 { 0x0604, "Legacy In" },
542 { 0x0605, "IEC958 In" },
543 { 0x0606, "1394 DA Stream" },
544 { 0x0607, "1394 DV Stream" },
545 { 0x0700, "Embedded" },
546 { 0x0701, "Noise Source" },
547 { 0x0702, "Equalization Noise" },
551 { 0x0706, "MiniDisk" },
552 { 0x0707, "Analog Tape" },
553 { 0x0708, "Phonograph" },
554 { 0x0709, "VCR Audio" },
555 { 0x070a, "Video Disk Audio" },
556 { 0x070b, "DVD Audio" },
557 { 0x070c, "TV Tuner Audio" },
558 { 0x070d, "Satellite Rec Audio" },
559 { 0x070e, "Cable Tuner Audio" },
560 { 0x070f, "DSS Audio" },
561 { 0x0710, "Radio Receiver" },
562 { 0x0711, "Radio Transmitter" },
563 { 0x0712, "Multi-Track Recorder" },
564 { 0x0713, "Synthesizer" },
568 static int get_term_name(struct mixer_build
*state
, struct usb_audio_term
*iterm
,
569 unsigned char *name
, int maxlen
, int term_only
)
571 struct iterm_name_combo
*names
;
574 return snd_usb_copy_string_desc(state
, iterm
->name
, name
, maxlen
);
576 /* virtual type - not a real terminal */
577 if (iterm
->type
>> 16) {
580 switch (iterm
->type
>> 16) {
582 strcpy(name
, "Selector"); return 8;
583 case PROCESSING_UNIT
:
584 strcpy(name
, "Process Unit"); return 12;
586 strcpy(name
, "Ext Unit"); return 8;
588 strcpy(name
, "Mixer"); return 5;
590 return sprintf(name
, "Unit %d", iterm
->id
);
594 switch (iterm
->type
& 0xff00) {
596 strcpy(name
, "PCM"); return 3;
598 strcpy(name
, "Mic"); return 3;
600 strcpy(name
, "Headset"); return 7;
602 strcpy(name
, "Phone"); return 5;
605 for (names
= iterm_names
; names
->type
; names
++)
606 if (names
->type
== iterm
->type
) {
607 strcpy(name
, names
->name
);
608 return strlen(names
->name
);
615 * parse the source unit recursively until it reaches to a terminal
616 * or a branched unit.
618 static int check_input_term(struct mixer_build
*state
, int id
, struct usb_audio_term
*term
)
622 memset(term
, 0, sizeof(*term
));
623 while ((p1
= find_audio_control_unit(state
, id
)) != NULL
) {
627 term
->type
= combine_word(p1
+ 4);
628 term
->channels
= p1
[7];
629 term
->chconfig
= combine_word(p1
+ 8);
634 break; /* continue to parse */
636 term
->type
= p1
[2] << 16; /* virtual type */
637 term
->channels
= p1
[5 + p1
[4]];
638 term
->chconfig
= combine_word(p1
+ 6 + p1
[4]);
639 term
->name
= p1
[p1
[0] - 1];
642 /* call recursively to retrieve the channel info */
643 if (check_input_term(state
, p1
[5], term
) < 0)
645 term
->type
= p1
[2] << 16; /* virtual type */
647 term
->name
= p1
[9 + p1
[0] - 1];
649 case PROCESSING_UNIT
:
653 break; /* continue to parse */
655 term
->type
= p1
[2] << 16; /* virtual type */
656 term
->channels
= p1
[7 + p1
[6]];
657 term
->chconfig
= combine_word(p1
+ 8 + p1
[6]);
658 term
->name
= p1
[12 + p1
[6] + p1
[11 + p1
[6]]];
672 /* feature unit control information */
673 struct usb_feature_control_info
{
675 unsigned int type
; /* control type (mute, volume, etc.) */
678 static struct usb_feature_control_info audio_feature_info
[] = {
679 { "Mute", USB_MIXER_INV_BOOLEAN
},
680 { "Volume", USB_MIXER_S16
},
681 { "Tone Control - Bass", USB_MIXER_S8
},
682 { "Tone Control - Mid", USB_MIXER_S8
},
683 { "Tone Control - Treble", USB_MIXER_S8
},
684 { "Graphic Equalizer", USB_MIXER_S8
}, /* FIXME: not implemeted yet */
685 { "Auto Gain Control", USB_MIXER_BOOLEAN
},
686 { "Delay Control", USB_MIXER_U16
},
687 { "Bass Boost", USB_MIXER_BOOLEAN
},
688 { "Loudness", USB_MIXER_BOOLEAN
},
692 /* private_free callback */
693 static void usb_mixer_elem_free(struct snd_kcontrol
*kctl
)
695 kfree(kctl
->private_data
);
696 kctl
->private_data
= NULL
;
701 * interface to ALSA control for feature/mixer units
705 * retrieve the minimum and maximum values for the specified control
707 static int get_min_max(struct usb_mixer_elem_info
*cval
, int default_min
)
710 cval
->min
= default_min
;
711 cval
->max
= cval
->min
+ 1;
714 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
715 cval
->val_type
== USB_MIXER_INV_BOOLEAN
) {
716 cval
->initialized
= 1;
721 for (i
= 0; i
< MAX_CHANNELS
; i
++)
722 if (cval
->cmask
& (1 << i
)) {
727 if (get_ctl_value(cval
, GET_MAX
, (cval
->control
<< 8) | minchn
, &cval
->max
) < 0 ||
728 get_ctl_value(cval
, GET_MIN
, (cval
->control
<< 8) | minchn
, &cval
->min
) < 0) {
729 snd_printd(KERN_ERR
"%d:%d: cannot get min/max values for control %d (id %d)\n",
730 cval
->id
, cval
->mixer
->ctrlif
, cval
->control
, cval
->id
);
733 if (get_ctl_value(cval
, GET_RES
, (cval
->control
<< 8) | minchn
, &cval
->res
) < 0) {
736 int last_valid_res
= cval
->res
;
738 while (cval
->res
> 1) {
739 if (set_ctl_value(cval
, SET_RES
, (cval
->control
<< 8) | minchn
, cval
->res
/ 2) < 0)
743 if (get_ctl_value(cval
, GET_RES
, (cval
->control
<< 8) | minchn
, &cval
->res
) < 0)
744 cval
->res
= last_valid_res
;
749 /* Additional checks for the proper resolution
751 * Some devices report smaller resolutions than actually
752 * reacting. They don't return errors but simply clip
753 * to the lower aligned value.
755 if (cval
->min
+ cval
->res
< cval
->max
) {
756 int last_valid_res
= cval
->res
;
757 int saved
, test
, check
;
758 get_cur_mix_raw(cval
, minchn
, &saved
);
761 if (test
< cval
->max
)
765 if (test
< cval
->min
|| test
> cval
->max
||
766 set_cur_mix_value(cval
, minchn
, 0, test
) ||
767 get_cur_mix_raw(cval
, minchn
, &check
)) {
768 cval
->res
= last_valid_res
;
775 set_cur_mix_value(cval
, minchn
, 0, saved
);
778 cval
->initialized
= 1;
784 /* get a feature/mixer unit info */
785 static int mixer_ctl_feature_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
787 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
789 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
790 cval
->val_type
== USB_MIXER_INV_BOOLEAN
)
791 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
793 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
794 uinfo
->count
= cval
->channels
;
795 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
796 cval
->val_type
== USB_MIXER_INV_BOOLEAN
) {
797 uinfo
->value
.integer
.min
= 0;
798 uinfo
->value
.integer
.max
= 1;
800 if (! cval
->initialized
)
801 get_min_max(cval
, 0);
802 uinfo
->value
.integer
.min
= 0;
803 uinfo
->value
.integer
.max
=
804 (cval
->max
- cval
->min
+ cval
->res
- 1) / cval
->res
;
809 /* get the current value from feature/mixer unit */
810 static int mixer_ctl_feature_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
812 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
813 int c
, cnt
, val
, err
;
815 ucontrol
->value
.integer
.value
[0] = cval
->min
;
818 for (c
= 0; c
< MAX_CHANNELS
; c
++) {
819 if (!(cval
->cmask
& (1 << c
)))
821 err
= get_cur_mix_value(cval
, c
+ 1, cnt
, &val
);
823 return cval
->mixer
->ignore_ctl_error
? 0 : err
;
824 val
= get_relative_value(cval
, val
);
825 ucontrol
->value
.integer
.value
[cnt
] = val
;
831 err
= get_cur_mix_value(cval
, 0, 0, &val
);
833 return cval
->mixer
->ignore_ctl_error
? 0 : err
;
834 val
= get_relative_value(cval
, val
);
835 ucontrol
->value
.integer
.value
[0] = val
;
840 /* put the current value to feature/mixer unit */
841 static int mixer_ctl_feature_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
843 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
844 int c
, cnt
, val
, oval
, err
;
849 for (c
= 0; c
< MAX_CHANNELS
; c
++) {
850 if (!(cval
->cmask
& (1 << c
)))
852 err
= get_cur_mix_value(cval
, c
+ 1, cnt
, &oval
);
854 return cval
->mixer
->ignore_ctl_error
? 0 : err
;
855 val
= ucontrol
->value
.integer
.value
[cnt
];
856 val
= get_abs_value(cval
, val
);
858 set_cur_mix_value(cval
, c
+ 1, cnt
, val
);
865 err
= get_cur_mix_value(cval
, 0, 0, &oval
);
867 return cval
->mixer
->ignore_ctl_error
? 0 : err
;
868 val
= ucontrol
->value
.integer
.value
[0];
869 val
= get_abs_value(cval
, val
);
871 set_cur_mix_value(cval
, 0, 0, val
);
878 static struct snd_kcontrol_new usb_feature_unit_ctl
= {
879 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
880 .name
= "", /* will be filled later manually */
881 .info
= mixer_ctl_feature_info
,
882 .get
= mixer_ctl_feature_get
,
883 .put
= mixer_ctl_feature_put
,
888 * build a feature control
891 static void build_feature_ctl(struct mixer_build
*state
, unsigned char *desc
,
892 unsigned int ctl_mask
, int control
,
893 struct usb_audio_term
*iterm
, int unitid
)
895 unsigned int len
= 0;
897 int nameid
= desc
[desc
[0] - 1];
898 struct snd_kcontrol
*kctl
;
899 struct usb_mixer_elem_info
*cval
;
901 control
++; /* change from zero-based to 1-based value */
903 if (control
== USB_FEATURE_GEQ
) {
904 /* FIXME: not supported yet */
908 if (check_ignored_ctl(state
, unitid
, control
))
911 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
913 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
916 cval
->mixer
= state
->mixer
;
918 cval
->control
= control
;
919 cval
->cmask
= ctl_mask
;
920 cval
->val_type
= audio_feature_info
[control
-1].type
;
922 cval
->channels
= 1; /* master channel */
925 for (i
= 0; i
< 16; i
++)
926 if (ctl_mask
& (1 << i
))
931 /* get min/max values */
932 get_min_max(cval
, 0);
934 kctl
= snd_ctl_new1(&usb_feature_unit_ctl
, cval
);
936 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
940 kctl
->private_free
= usb_mixer_elem_free
;
942 len
= check_mapped_name(state
, unitid
, control
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
943 mapped_name
= len
!= 0;
945 len
= snd_usb_copy_string_desc(state
, nameid
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
948 case USB_FEATURE_MUTE
:
949 case USB_FEATURE_VOLUME
:
950 /* determine the control name. the rule is:
951 * - if a name id is given in descriptor, use it.
952 * - if the connected input can be determined, then use the name
954 * - if the connected output can be determined, use it.
955 * - otherwise, anonymous name.
958 len
= get_term_name(state
, iterm
, kctl
->id
.name
, sizeof(kctl
->id
.name
), 1);
960 len
= get_term_name(state
, &state
->oterm
, kctl
->id
.name
, sizeof(kctl
->id
.name
), 1);
962 len
= snprintf(kctl
->id
.name
, sizeof(kctl
->id
.name
),
963 "Feature %d", unitid
);
965 /* determine the stream direction:
966 * if the connected output is USB stream, then it's likely a
967 * capture stream. otherwise it should be playback (hopefully :)
969 if (! mapped_name
&& ! (state
->oterm
.type
>> 16)) {
970 if ((state
->oterm
.type
& 0xff00) == 0x0100) {
971 len
= strlcat(kctl
->id
.name
, " Capture", sizeof(kctl
->id
.name
));
973 len
= strlcat(kctl
->id
.name
+ len
, " Playback", sizeof(kctl
->id
.name
));
976 strlcat(kctl
->id
.name
+ len
, control
== USB_FEATURE_MUTE
? " Switch" : " Volume",
977 sizeof(kctl
->id
.name
));
978 if (control
== USB_FEATURE_VOLUME
) {
979 kctl
->tlv
.c
= mixer_vol_tlv
;
980 kctl
->vd
[0].access
|=
981 SNDRV_CTL_ELEM_ACCESS_TLV_READ
|
982 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
;
988 strlcpy(kctl
->id
.name
, audio_feature_info
[control
-1].name
,
989 sizeof(kctl
->id
.name
));
993 /* volume control quirks */
994 switch (state
->chip
->usb_id
) {
995 case USB_ID(0x0471, 0x0101):
996 case USB_ID(0x0471, 0x0104):
997 case USB_ID(0x0471, 0x0105):
998 case USB_ID(0x0672, 0x1041):
999 /* quirk for UDA1321/N101.
1000 * note that detection between firmware 2.1.1.7 (N101)
1001 * and later 2.1.1.21 is not very clear from datasheets.
1002 * I hope that the min value is -15360 for newer firmware --jk
1004 if (!strcmp(kctl
->id
.name
, "PCM Playback Volume") &&
1005 cval
->min
== -15616) {
1006 snd_printk(KERN_INFO
1007 "set volume quirk for UDA1321/N101 chip\n");
1012 case USB_ID(0x046d, 0x09a4):
1013 if (!strcmp(kctl
->id
.name
, "Mic Capture Volume")) {
1014 snd_printk(KERN_INFO
1015 "set volume quirk for QuickCam E3500\n");
1024 snd_printdd(KERN_INFO
"[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1025 cval
->id
, kctl
->id
.name
, cval
->channels
, cval
->min
, cval
->max
, cval
->res
);
1026 add_control_to_empty(state
, kctl
);
1032 * parse a feature unit
1034 * most of controlls are defined here.
1036 static int parse_audio_feature_unit(struct mixer_build
*state
, int unitid
, unsigned char *ftr
)
1039 struct usb_audio_term iterm
;
1040 unsigned int master_bits
, first_ch_bits
;
1043 if (ftr
[0] < 7 || ! (csize
= ftr
[5]) || ftr
[0] < 7 + csize
) {
1044 snd_printk(KERN_ERR
"usbaudio: unit %u: invalid FEATURE_UNIT descriptor\n", unitid
);
1048 /* parse the source unit */
1049 if ((err
= parse_audio_unit(state
, ftr
[4])) < 0)
1052 /* determine the input source type and name */
1053 if (check_input_term(state
, ftr
[4], &iterm
) < 0)
1056 channels
= (ftr
[0] - 7) / csize
- 1;
1058 master_bits
= snd_usb_combine_bytes(ftr
+ 6, csize
);
1060 first_ch_bits
= snd_usb_combine_bytes(ftr
+ 6 + csize
, csize
);
1063 /* check all control types */
1064 for (i
= 0; i
< 10; i
++) {
1065 unsigned int ch_bits
= 0;
1066 for (j
= 0; j
< channels
; j
++) {
1067 unsigned int mask
= snd_usb_combine_bytes(ftr
+ 6 + csize
* (j
+1), csize
);
1068 if (mask
& (1 << i
))
1069 ch_bits
|= (1 << j
);
1071 if (ch_bits
& 1) /* the first channel must be set (for ease of programming) */
1072 build_feature_ctl(state
, ftr
, ch_bits
, i
, &iterm
, unitid
);
1073 if (master_bits
& (1 << i
))
1074 build_feature_ctl(state
, ftr
, 0, i
, &iterm
, unitid
);
1086 * build a mixer unit control
1088 * the callbacks are identical with feature unit.
1089 * input channel number (zero based) is given in control field instead.
1092 static void build_mixer_unit_ctl(struct mixer_build
*state
, unsigned char *desc
,
1093 int in_pin
, int in_ch
, int unitid
,
1094 struct usb_audio_term
*iterm
)
1096 struct usb_mixer_elem_info
*cval
;
1097 unsigned int input_pins
= desc
[4];
1098 unsigned int num_outs
= desc
[5 + input_pins
];
1099 unsigned int i
, len
;
1100 struct snd_kcontrol
*kctl
;
1102 if (check_ignored_ctl(state
, unitid
, 0))
1105 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1109 cval
->mixer
= state
->mixer
;
1111 cval
->control
= in_ch
+ 1; /* based on 1 */
1112 cval
->val_type
= USB_MIXER_S16
;
1113 for (i
= 0; i
< num_outs
; i
++) {
1114 if (check_matrix_bitmap(desc
+ 9 + input_pins
, in_ch
, i
, num_outs
)) {
1115 cval
->cmask
|= (1 << i
);
1120 /* get min/max values */
1121 get_min_max(cval
, 0);
1123 kctl
= snd_ctl_new1(&usb_feature_unit_ctl
, cval
);
1125 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
1129 kctl
->private_free
= usb_mixer_elem_free
;
1131 len
= check_mapped_name(state
, unitid
, 0, kctl
->id
.name
, sizeof(kctl
->id
.name
));
1133 len
= get_term_name(state
, iterm
, kctl
->id
.name
, sizeof(kctl
->id
.name
), 0);
1135 len
= sprintf(kctl
->id
.name
, "Mixer Source %d", in_ch
+ 1);
1136 strlcat(kctl
->id
.name
+ len
, " Volume", sizeof(kctl
->id
.name
));
1138 snd_printdd(KERN_INFO
"[%d] MU [%s] ch = %d, val = %d/%d\n",
1139 cval
->id
, kctl
->id
.name
, cval
->channels
, cval
->min
, cval
->max
);
1140 add_control_to_empty(state
, kctl
);
1145 * parse a mixer unit
1147 static int parse_audio_mixer_unit(struct mixer_build
*state
, int unitid
, unsigned char *desc
)
1149 struct usb_audio_term iterm
;
1150 int input_pins
, num_ins
, num_outs
;
1153 if (desc
[0] < 11 || ! (input_pins
= desc
[4]) || ! (num_outs
= desc
[5 + input_pins
])) {
1154 snd_printk(KERN_ERR
"invalid MIXER UNIT descriptor %d\n", unitid
);
1157 /* no bmControls field (e.g. Maya44) -> ignore */
1158 if (desc
[0] <= 10 + input_pins
) {
1159 snd_printdd(KERN_INFO
"MU %d has no bmControls field\n", unitid
);
1165 for (pin
= 0; pin
< input_pins
; pin
++) {
1166 err
= parse_audio_unit(state
, desc
[5 + pin
]);
1169 err
= check_input_term(state
, desc
[5 + pin
], &iterm
);
1172 num_ins
+= iterm
.channels
;
1173 for (; ich
< num_ins
; ++ich
) {
1174 int och
, ich_has_controls
= 0;
1176 for (och
= 0; och
< num_outs
; ++och
) {
1177 if (check_matrix_bitmap(desc
+ 9 + input_pins
,
1178 ich
, och
, num_outs
)) {
1179 ich_has_controls
= 1;
1183 if (ich_has_controls
)
1184 build_mixer_unit_ctl(state
, desc
, pin
, ich
,
1193 * Processing Unit / Extension Unit
1196 /* get callback for processing/extension unit */
1197 static int mixer_ctl_procunit_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1199 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1202 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &val
);
1203 if (err
< 0 && cval
->mixer
->ignore_ctl_error
) {
1204 ucontrol
->value
.integer
.value
[0] = cval
->min
;
1209 val
= get_relative_value(cval
, val
);
1210 ucontrol
->value
.integer
.value
[0] = val
;
1214 /* put callback for processing/extension unit */
1215 static int mixer_ctl_procunit_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1217 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1220 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &oval
);
1222 if (cval
->mixer
->ignore_ctl_error
)
1226 val
= ucontrol
->value
.integer
.value
[0];
1227 val
= get_abs_value(cval
, val
);
1229 set_cur_ctl_value(cval
, cval
->control
<< 8, val
);
1235 /* alsa control interface for processing/extension unit */
1236 static struct snd_kcontrol_new mixer_procunit_ctl
= {
1237 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1238 .name
= "", /* will be filled later */
1239 .info
= mixer_ctl_feature_info
,
1240 .get
= mixer_ctl_procunit_get
,
1241 .put
= mixer_ctl_procunit_put
,
1246 * predefined data for processing units
1248 struct procunit_value_info
{
1255 struct procunit_info
{
1258 struct procunit_value_info
*values
;
1261 static struct procunit_value_info updown_proc_info
[] = {
1262 { USB_PROC_UPDOWN_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1263 { USB_PROC_UPDOWN_MODE_SEL
, "Mode Select", USB_MIXER_U8
, 1 },
1266 static struct procunit_value_info prologic_proc_info
[] = {
1267 { USB_PROC_PROLOGIC_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1268 { USB_PROC_PROLOGIC_MODE_SEL
, "Mode Select", USB_MIXER_U8
, 1 },
1271 static struct procunit_value_info threed_enh_proc_info
[] = {
1272 { USB_PROC_3DENH_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1273 { USB_PROC_3DENH_SPACE
, "Spaciousness", USB_MIXER_U8
},
1276 static struct procunit_value_info reverb_proc_info
[] = {
1277 { USB_PROC_REVERB_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1278 { USB_PROC_REVERB_LEVEL
, "Level", USB_MIXER_U8
},
1279 { USB_PROC_REVERB_TIME
, "Time", USB_MIXER_U16
},
1280 { USB_PROC_REVERB_DELAY
, "Delay", USB_MIXER_U8
},
1283 static struct procunit_value_info chorus_proc_info
[] = {
1284 { USB_PROC_CHORUS_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1285 { USB_PROC_CHORUS_LEVEL
, "Level", USB_MIXER_U8
},
1286 { USB_PROC_CHORUS_RATE
, "Rate", USB_MIXER_U16
},
1287 { USB_PROC_CHORUS_DEPTH
, "Depth", USB_MIXER_U16
},
1290 static struct procunit_value_info dcr_proc_info
[] = {
1291 { USB_PROC_DCR_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1292 { USB_PROC_DCR_RATIO
, "Ratio", USB_MIXER_U16
},
1293 { USB_PROC_DCR_MAX_AMP
, "Max Amp", USB_MIXER_S16
},
1294 { USB_PROC_DCR_THRESHOLD
, "Threshold", USB_MIXER_S16
},
1295 { USB_PROC_DCR_ATTACK
, "Attack Time", USB_MIXER_U16
},
1296 { USB_PROC_DCR_RELEASE
, "Release Time", USB_MIXER_U16
},
1300 static struct procunit_info procunits
[] = {
1301 { USB_PROC_UPDOWN
, "Up Down", updown_proc_info
},
1302 { USB_PROC_PROLOGIC
, "Dolby Prologic", prologic_proc_info
},
1303 { USB_PROC_3DENH
, "3D Stereo Extender", threed_enh_proc_info
},
1304 { USB_PROC_REVERB
, "Reverb", reverb_proc_info
},
1305 { USB_PROC_CHORUS
, "Chorus", chorus_proc_info
},
1306 { USB_PROC_DCR
, "DCR", dcr_proc_info
},
1311 * build a processing/extension unit
1313 static int build_audio_procunit(struct mixer_build
*state
, int unitid
, unsigned char *dsc
, struct procunit_info
*list
, char *name
)
1315 int num_ins
= dsc
[6];
1316 struct usb_mixer_elem_info
*cval
;
1317 struct snd_kcontrol
*kctl
;
1318 int i
, err
, nameid
, type
, len
;
1319 struct procunit_info
*info
;
1320 struct procunit_value_info
*valinfo
;
1321 static struct procunit_value_info default_value_info
[] = {
1322 { 0x01, "Switch", USB_MIXER_BOOLEAN
},
1325 static struct procunit_info default_info
= {
1326 0, NULL
, default_value_info
1329 if (dsc
[0] < 13 || dsc
[0] < 13 + num_ins
|| dsc
[0] < num_ins
+ dsc
[11 + num_ins
]) {
1330 snd_printk(KERN_ERR
"invalid %s descriptor (id %d)\n", name
, unitid
);
1334 for (i
= 0; i
< num_ins
; i
++) {
1335 if ((err
= parse_audio_unit(state
, dsc
[7 + i
])) < 0)
1339 type
= combine_word(&dsc
[4]);
1340 for (info
= list
; info
&& info
->type
; info
++)
1341 if (info
->type
== type
)
1343 if (! info
|| ! info
->type
)
1344 info
= &default_info
;
1346 for (valinfo
= info
->values
; valinfo
->control
; valinfo
++) {
1347 /* FIXME: bitmap might be longer than 8bit */
1348 if (! (dsc
[12 + num_ins
] & (1 << (valinfo
->control
- 1))))
1350 if (check_ignored_ctl(state
, unitid
, valinfo
->control
))
1352 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1354 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
1357 cval
->mixer
= state
->mixer
;
1359 cval
->control
= valinfo
->control
;
1360 cval
->val_type
= valinfo
->val_type
;
1363 /* get min/max values */
1364 if (type
== USB_PROC_UPDOWN
&& cval
->control
== USB_PROC_UPDOWN_MODE_SEL
) {
1365 /* FIXME: hard-coded */
1367 cval
->max
= dsc
[15];
1369 cval
->initialized
= 1;
1371 get_min_max(cval
, valinfo
->min_value
);
1373 kctl
= snd_ctl_new1(&mixer_procunit_ctl
, cval
);
1375 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
1379 kctl
->private_free
= usb_mixer_elem_free
;
1381 if (check_mapped_name(state
, unitid
, cval
->control
, kctl
->id
.name
, sizeof(kctl
->id
.name
)))
1383 else if (info
->name
)
1384 strlcpy(kctl
->id
.name
, info
->name
, sizeof(kctl
->id
.name
));
1386 nameid
= dsc
[12 + num_ins
+ dsc
[11 + num_ins
]];
1389 len
= snd_usb_copy_string_desc(state
, nameid
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
1391 strlcpy(kctl
->id
.name
, name
, sizeof(kctl
->id
.name
));
1393 strlcat(kctl
->id
.name
, " ", sizeof(kctl
->id
.name
));
1394 strlcat(kctl
->id
.name
, valinfo
->suffix
, sizeof(kctl
->id
.name
));
1396 snd_printdd(KERN_INFO
"[%d] PU [%s] ch = %d, val = %d/%d\n",
1397 cval
->id
, kctl
->id
.name
, cval
->channels
, cval
->min
, cval
->max
);
1398 if ((err
= add_control_to_empty(state
, kctl
)) < 0)
1405 static int parse_audio_processing_unit(struct mixer_build
*state
, int unitid
, unsigned char *desc
)
1407 return build_audio_procunit(state
, unitid
, desc
, procunits
, "Processing Unit");
1410 static int parse_audio_extension_unit(struct mixer_build
*state
, int unitid
, unsigned char *desc
)
1412 return build_audio_procunit(state
, unitid
, desc
, NULL
, "Extension Unit");
1420 /* info callback for selector unit
1421 * use an enumerator type for routing
1423 static int mixer_ctl_selector_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1425 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1426 char **itemlist
= (char **)kcontrol
->private_value
;
1428 if (snd_BUG_ON(!itemlist
))
1430 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1432 uinfo
->value
.enumerated
.items
= cval
->max
;
1433 if ((int)uinfo
->value
.enumerated
.item
>= cval
->max
)
1434 uinfo
->value
.enumerated
.item
= cval
->max
- 1;
1435 strcpy(uinfo
->value
.enumerated
.name
, itemlist
[uinfo
->value
.enumerated
.item
]);
1439 /* get callback for selector unit */
1440 static int mixer_ctl_selector_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1442 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1445 err
= get_cur_ctl_value(cval
, 0, &val
);
1447 if (cval
->mixer
->ignore_ctl_error
) {
1448 ucontrol
->value
.enumerated
.item
[0] = 0;
1453 val
= get_relative_value(cval
, val
);
1454 ucontrol
->value
.enumerated
.item
[0] = val
;
1458 /* put callback for selector unit */
1459 static int mixer_ctl_selector_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1461 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1464 err
= get_cur_ctl_value(cval
, 0, &oval
);
1466 if (cval
->mixer
->ignore_ctl_error
)
1470 val
= ucontrol
->value
.enumerated
.item
[0];
1471 val
= get_abs_value(cval
, val
);
1473 set_cur_ctl_value(cval
, 0, val
);
1479 /* alsa control interface for selector unit */
1480 static struct snd_kcontrol_new mixer_selectunit_ctl
= {
1481 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1482 .name
= "", /* will be filled later */
1483 .info
= mixer_ctl_selector_info
,
1484 .get
= mixer_ctl_selector_get
,
1485 .put
= mixer_ctl_selector_put
,
1489 /* private free callback.
1490 * free both private_data and private_value
1492 static void usb_mixer_selector_elem_free(struct snd_kcontrol
*kctl
)
1496 if (kctl
->private_data
) {
1497 struct usb_mixer_elem_info
*cval
= kctl
->private_data
;
1498 num_ins
= cval
->max
;
1500 kctl
->private_data
= NULL
;
1502 if (kctl
->private_value
) {
1503 char **itemlist
= (char **)kctl
->private_value
;
1504 for (i
= 0; i
< num_ins
; i
++)
1507 kctl
->private_value
= 0;
1512 * parse a selector unit
1514 static int parse_audio_selector_unit(struct mixer_build
*state
, int unitid
, unsigned char *desc
)
1516 unsigned int num_ins
= desc
[4];
1517 unsigned int i
, nameid
, len
;
1519 struct usb_mixer_elem_info
*cval
;
1520 struct snd_kcontrol
*kctl
;
1523 if (! num_ins
|| desc
[0] < 5 + num_ins
) {
1524 snd_printk(KERN_ERR
"invalid SELECTOR UNIT descriptor %d\n", unitid
);
1528 for (i
= 0; i
< num_ins
; i
++) {
1529 if ((err
= parse_audio_unit(state
, desc
[5 + i
])) < 0)
1533 if (num_ins
== 1) /* only one ? nonsense! */
1536 if (check_ignored_ctl(state
, unitid
, 0))
1539 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1541 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
1544 cval
->mixer
= state
->mixer
;
1546 cval
->val_type
= USB_MIXER_U8
;
1549 cval
->max
= num_ins
;
1551 cval
->initialized
= 1;
1553 namelist
= kmalloc(sizeof(char *) * num_ins
, GFP_KERNEL
);
1555 snd_printk(KERN_ERR
"cannot malloc\n");
1559 #define MAX_ITEM_NAME_LEN 64
1560 for (i
= 0; i
< num_ins
; i
++) {
1561 struct usb_audio_term iterm
;
1563 namelist
[i
] = kmalloc(MAX_ITEM_NAME_LEN
, GFP_KERNEL
);
1564 if (! namelist
[i
]) {
1565 snd_printk(KERN_ERR
"cannot malloc\n");
1572 len
= check_mapped_selector_name(state
, unitid
, i
, namelist
[i
],
1574 if (! len
&& check_input_term(state
, desc
[5 + i
], &iterm
) >= 0)
1575 len
= get_term_name(state
, &iterm
, namelist
[i
], MAX_ITEM_NAME_LEN
, 0);
1577 sprintf(namelist
[i
], "Input %d", i
);
1580 kctl
= snd_ctl_new1(&mixer_selectunit_ctl
, cval
);
1582 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
1587 kctl
->private_value
= (unsigned long)namelist
;
1588 kctl
->private_free
= usb_mixer_selector_elem_free
;
1590 nameid
= desc
[desc
[0] - 1];
1591 len
= check_mapped_name(state
, unitid
, 0, kctl
->id
.name
, sizeof(kctl
->id
.name
));
1595 snd_usb_copy_string_desc(state
, nameid
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
1597 len
= get_term_name(state
, &state
->oterm
,
1598 kctl
->id
.name
, sizeof(kctl
->id
.name
), 0);
1600 strlcpy(kctl
->id
.name
, "USB", sizeof(kctl
->id
.name
));
1602 if ((state
->oterm
.type
& 0xff00) == 0x0100)
1603 strlcat(kctl
->id
.name
, " Capture Source", sizeof(kctl
->id
.name
));
1605 strlcat(kctl
->id
.name
, " Playback Source", sizeof(kctl
->id
.name
));
1608 snd_printdd(KERN_INFO
"[%d] SU [%s] items = %d\n",
1609 cval
->id
, kctl
->id
.name
, num_ins
);
1610 if ((err
= add_control_to_empty(state
, kctl
)) < 0)
1618 * parse an audio unit recursively
1621 static int parse_audio_unit(struct mixer_build
*state
, int unitid
)
1625 if (test_and_set_bit(unitid
, state
->unitbitmap
))
1626 return 0; /* the unit already visited */
1628 p1
= find_audio_control_unit(state
, unitid
);
1630 snd_printk(KERN_ERR
"usbaudio: unit %d not found!\n", unitid
);
1635 case INPUT_TERMINAL
:
1638 return parse_audio_mixer_unit(state
, unitid
, p1
);
1640 return parse_audio_selector_unit(state
, unitid
, p1
);
1642 return parse_audio_feature_unit(state
, unitid
, p1
);
1643 case PROCESSING_UNIT
:
1644 return parse_audio_processing_unit(state
, unitid
, p1
);
1645 case EXTENSION_UNIT
:
1646 return parse_audio_extension_unit(state
, unitid
, p1
);
1648 snd_printk(KERN_ERR
"usbaudio: unit %u: unexpected type 0x%02x\n", unitid
, p1
[2]);
1653 static void snd_usb_mixer_free(struct usb_mixer_interface
*mixer
)
1655 kfree(mixer
->id_elems
);
1657 kfree(mixer
->urb
->transfer_buffer
);
1658 usb_free_urb(mixer
->urb
);
1660 usb_free_urb(mixer
->rc_urb
);
1661 kfree(mixer
->rc_setup_packet
);
1665 static int snd_usb_mixer_dev_free(struct snd_device
*device
)
1667 struct usb_mixer_interface
*mixer
= device
->device_data
;
1668 snd_usb_mixer_free(mixer
);
1673 * create mixer controls
1675 * walk through all OUTPUT_TERMINAL descriptors to search for mixers
1677 static int snd_usb_mixer_controls(struct usb_mixer_interface
*mixer
)
1679 unsigned char *desc
;
1680 struct mixer_build state
;
1682 const struct usbmix_ctl_map
*map
;
1683 struct usb_host_interface
*hostif
;
1685 hostif
= &usb_ifnum_to_if(mixer
->chip
->dev
, mixer
->ctrlif
)->altsetting
[0];
1686 memset(&state
, 0, sizeof(state
));
1687 state
.chip
= mixer
->chip
;
1688 state
.mixer
= mixer
;
1689 state
.buffer
= hostif
->extra
;
1690 state
.buflen
= hostif
->extralen
;
1692 /* check the mapping table */
1693 for (map
= usbmix_ctl_maps
; map
->id
; map
++) {
1694 if (map
->id
== state
.chip
->usb_id
) {
1695 state
.map
= map
->map
;
1696 state
.selector_map
= map
->selector_map
;
1697 mixer
->ignore_ctl_error
= map
->ignore_ctl_error
;
1703 while ((desc
= snd_usb_find_csint_desc(hostif
->extra
, hostif
->extralen
, desc
, OUTPUT_TERMINAL
)) != NULL
) {
1705 continue; /* invalid descriptor? */
1706 set_bit(desc
[3], state
.unitbitmap
); /* mark terminal ID as visited */
1707 state
.oterm
.id
= desc
[3];
1708 state
.oterm
.type
= combine_word(&desc
[4]);
1709 state
.oterm
.name
= desc
[8];
1710 err
= parse_audio_unit(&state
, desc
[7]);
1717 static void snd_usb_mixer_notify_id(struct usb_mixer_interface
*mixer
,
1720 struct usb_mixer_elem_info
*info
;
1722 for (info
= mixer
->id_elems
[unitid
]; info
; info
= info
->next_id_elem
)
1723 snd_ctl_notify(mixer
->chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
1727 static void snd_usb_mixer_memory_change(struct usb_mixer_interface
*mixer
,
1732 /* unit ids specific to Extigy/Audigy 2 NX: */
1734 case 0: /* remote control */
1735 mixer
->rc_urb
->dev
= mixer
->chip
->dev
;
1736 usb_submit_urb(mixer
->rc_urb
, GFP_ATOMIC
);
1738 case 4: /* digital in jack */
1739 case 7: /* line in jacks */
1740 case 19: /* speaker out jacks */
1741 case 20: /* headphones out jack */
1743 /* live24ext: 4 = line-in jack */
1744 case 3: /* hp-out jack (may actuate Mute) */
1745 if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
1746 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048))
1747 snd_usb_mixer_notify_id(mixer
, mixer
->rc_cfg
->mute_mixer_id
);
1750 snd_printd(KERN_DEBUG
"memory change in unknown unit %d\n", unitid
);
1755 static void snd_usb_mixer_status_complete(struct urb
*urb
)
1757 struct usb_mixer_interface
*mixer
= urb
->context
;
1759 if (urb
->status
== 0) {
1760 u8
*buf
= urb
->transfer_buffer
;
1763 for (i
= urb
->actual_length
; i
>= 2; buf
+= 2, i
-= 2) {
1764 snd_printd(KERN_DEBUG
"status interrupt: %02x %02x\n",
1766 /* ignore any notifications not from the control interface */
1767 if ((buf
[0] & 0x0f) != 0)
1769 if (!(buf
[0] & 0x40))
1770 snd_usb_mixer_notify_id(mixer
, buf
[1]);
1772 snd_usb_mixer_memory_change(mixer
, buf
[1]);
1775 if (urb
->status
!= -ENOENT
&& urb
->status
!= -ECONNRESET
) {
1776 urb
->dev
= mixer
->chip
->dev
;
1777 usb_submit_urb(urb
, GFP_ATOMIC
);
1781 /* create the handler for the optional status interrupt endpoint */
1782 static int snd_usb_mixer_status_create(struct usb_mixer_interface
*mixer
)
1784 struct usb_host_interface
*hostif
;
1785 struct usb_endpoint_descriptor
*ep
;
1786 void *transfer_buffer
;
1790 hostif
= &usb_ifnum_to_if(mixer
->chip
->dev
, mixer
->ctrlif
)->altsetting
[0];
1791 /* we need one interrupt input endpoint */
1792 if (get_iface_desc(hostif
)->bNumEndpoints
< 1)
1794 ep
= get_endpoint(hostif
, 0);
1795 if (!usb_endpoint_dir_in(ep
) || !usb_endpoint_xfer_int(ep
))
1798 epnum
= usb_endpoint_num(ep
);
1799 buffer_length
= le16_to_cpu(ep
->wMaxPacketSize
);
1800 transfer_buffer
= kmalloc(buffer_length
, GFP_KERNEL
);
1801 if (!transfer_buffer
)
1803 mixer
->urb
= usb_alloc_urb(0, GFP_KERNEL
);
1805 kfree(transfer_buffer
);
1808 usb_fill_int_urb(mixer
->urb
, mixer
->chip
->dev
,
1809 usb_rcvintpipe(mixer
->chip
->dev
, epnum
),
1810 transfer_buffer
, buffer_length
,
1811 snd_usb_mixer_status_complete
, mixer
, ep
->bInterval
);
1812 usb_submit_urb(mixer
->urb
, GFP_KERNEL
);
1816 static void snd_usb_soundblaster_remote_complete(struct urb
*urb
)
1818 struct usb_mixer_interface
*mixer
= urb
->context
;
1819 const struct rc_config
*rc
= mixer
->rc_cfg
;
1822 if (urb
->status
< 0 || urb
->actual_length
< rc
->min_packet_length
)
1825 code
= mixer
->rc_buffer
[rc
->offset
];
1826 if (rc
->length
== 2)
1827 code
|= mixer
->rc_buffer
[rc
->offset
+ 1] << 8;
1829 /* the Mute button actually changes the mixer control */
1830 if (code
== rc
->mute_code
)
1831 snd_usb_mixer_notify_id(mixer
, rc
->mute_mixer_id
);
1832 mixer
->rc_code
= code
;
1834 wake_up(&mixer
->rc_waitq
);
1837 static long snd_usb_sbrc_hwdep_read(struct snd_hwdep
*hw
, char __user
*buf
,
1838 long count
, loff_t
*offset
)
1840 struct usb_mixer_interface
*mixer
= hw
->private_data
;
1844 if (count
!= 1 && count
!= 4)
1846 err
= wait_event_interruptible(mixer
->rc_waitq
,
1847 (rc_code
= xchg(&mixer
->rc_code
, 0)) != 0);
1850 err
= put_user(rc_code
, buf
);
1852 err
= put_user(rc_code
, (u32 __user
*)buf
);
1854 return err
< 0 ? err
: count
;
1857 static unsigned int snd_usb_sbrc_hwdep_poll(struct snd_hwdep
*hw
, struct file
*file
,
1860 struct usb_mixer_interface
*mixer
= hw
->private_data
;
1862 poll_wait(file
, &mixer
->rc_waitq
, wait
);
1863 return mixer
->rc_code
? POLLIN
| POLLRDNORM
: 0;
1866 static int snd_usb_soundblaster_remote_init(struct usb_mixer_interface
*mixer
)
1868 struct snd_hwdep
*hwdep
;
1871 for (i
= 0; i
< ARRAY_SIZE(rc_configs
); ++i
)
1872 if (rc_configs
[i
].usb_id
== mixer
->chip
->usb_id
)
1874 if (i
>= ARRAY_SIZE(rc_configs
))
1876 mixer
->rc_cfg
= &rc_configs
[i
];
1878 len
= mixer
->rc_cfg
->packet_length
;
1880 init_waitqueue_head(&mixer
->rc_waitq
);
1881 err
= snd_hwdep_new(mixer
->chip
->card
, "SB remote control", 0, &hwdep
);
1884 snprintf(hwdep
->name
, sizeof(hwdep
->name
),
1885 "%s remote control", mixer
->chip
->card
->shortname
);
1886 hwdep
->iface
= SNDRV_HWDEP_IFACE_SB_RC
;
1887 hwdep
->private_data
= mixer
;
1888 hwdep
->ops
.read
= snd_usb_sbrc_hwdep_read
;
1889 hwdep
->ops
.poll
= snd_usb_sbrc_hwdep_poll
;
1890 hwdep
->exclusive
= 1;
1892 mixer
->rc_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1895 mixer
->rc_setup_packet
= kmalloc(sizeof(*mixer
->rc_setup_packet
), GFP_KERNEL
);
1896 if (!mixer
->rc_setup_packet
) {
1897 usb_free_urb(mixer
->rc_urb
);
1898 mixer
->rc_urb
= NULL
;
1901 mixer
->rc_setup_packet
->bRequestType
=
1902 USB_DIR_IN
| USB_TYPE_CLASS
| USB_RECIP_INTERFACE
;
1903 mixer
->rc_setup_packet
->bRequest
= GET_MEM
;
1904 mixer
->rc_setup_packet
->wValue
= cpu_to_le16(0);
1905 mixer
->rc_setup_packet
->wIndex
= cpu_to_le16(0);
1906 mixer
->rc_setup_packet
->wLength
= cpu_to_le16(len
);
1907 usb_fill_control_urb(mixer
->rc_urb
, mixer
->chip
->dev
,
1908 usb_rcvctrlpipe(mixer
->chip
->dev
, 0),
1909 (u8
*)mixer
->rc_setup_packet
, mixer
->rc_buffer
, len
,
1910 snd_usb_soundblaster_remote_complete
, mixer
);
1914 #define snd_audigy2nx_led_info snd_ctl_boolean_mono_info
1916 static int snd_audigy2nx_led_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1918 struct usb_mixer_interface
*mixer
= snd_kcontrol_chip(kcontrol
);
1919 int index
= kcontrol
->private_value
;
1921 ucontrol
->value
.integer
.value
[0] = mixer
->audigy2nx_leds
[index
];
1925 static int snd_audigy2nx_led_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1927 struct usb_mixer_interface
*mixer
= snd_kcontrol_chip(kcontrol
);
1928 int index
= kcontrol
->private_value
;
1929 int value
= ucontrol
->value
.integer
.value
[0];
1934 changed
= value
!= mixer
->audigy2nx_leds
[index
];
1935 err
= snd_usb_ctl_msg(mixer
->chip
->dev
,
1936 usb_sndctrlpipe(mixer
->chip
->dev
, 0), 0x24,
1937 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
1938 value
, index
+ 2, NULL
, 0, 100);
1941 mixer
->audigy2nx_leds
[index
] = value
;
1945 static struct snd_kcontrol_new snd_audigy2nx_controls
[] = {
1947 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1948 .name
= "CMSS LED Switch",
1949 .info
= snd_audigy2nx_led_info
,
1950 .get
= snd_audigy2nx_led_get
,
1951 .put
= snd_audigy2nx_led_put
,
1955 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1956 .name
= "Power LED Switch",
1957 .info
= snd_audigy2nx_led_info
,
1958 .get
= snd_audigy2nx_led_get
,
1959 .put
= snd_audigy2nx_led_put
,
1963 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1964 .name
= "Dolby Digital LED Switch",
1965 .info
= snd_audigy2nx_led_info
,
1966 .get
= snd_audigy2nx_led_get
,
1967 .put
= snd_audigy2nx_led_put
,
1972 static int snd_audigy2nx_controls_create(struct usb_mixer_interface
*mixer
)
1976 for (i
= 0; i
< ARRAY_SIZE(snd_audigy2nx_controls
); ++i
) {
1977 if (i
> 1 && /* Live24ext has 2 LEDs only */
1978 (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
1979 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048)))
1981 err
= snd_ctl_add(mixer
->chip
->card
,
1982 snd_ctl_new1(&snd_audigy2nx_controls
[i
], mixer
));
1986 mixer
->audigy2nx_leds
[1] = 1; /* Power LED is on by default */
1990 static void snd_audigy2nx_proc_read(struct snd_info_entry
*entry
,
1991 struct snd_info_buffer
*buffer
)
1993 static const struct sb_jack
{
1996 } jacks_audigy2nx
[] = {
2002 }, jacks_live24ext
[] = {
2003 {4, "line in"}, /* &1=Line, &2=Mic*/
2004 {3, "hph out"}, /* headphones */
2005 {0, "RC "}, /* last command, 6 bytes see rc_config above */
2008 const struct sb_jack
*jacks
;
2009 struct usb_mixer_interface
*mixer
= entry
->private_data
;
2013 snd_iprintf(buffer
, "%s jacks\n\n", mixer
->chip
->card
->shortname
);
2014 if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3020))
2015 jacks
= jacks_audigy2nx
;
2016 else if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
2017 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048))
2018 jacks
= jacks_live24ext
;
2022 for (i
= 0; jacks
[i
].name
; ++i
) {
2023 snd_iprintf(buffer
, "%s: ", jacks
[i
].name
);
2024 err
= snd_usb_ctl_msg(mixer
->chip
->dev
,
2025 usb_rcvctrlpipe(mixer
->chip
->dev
, 0),
2026 GET_MEM
, USB_DIR_IN
| USB_TYPE_CLASS
|
2027 USB_RECIP_INTERFACE
, 0,
2028 jacks
[i
].unitid
<< 8, buf
, 3, 100);
2029 if (err
== 3 && (buf
[0] == 3 || buf
[0] == 6))
2030 snd_iprintf(buffer
, "%02x %02x\n", buf
[1], buf
[2]);
2032 snd_iprintf(buffer
, "?\n");
2036 int snd_usb_create_mixer(struct snd_usb_audio
*chip
, int ctrlif
,
2039 static struct snd_device_ops dev_ops
= {
2040 .dev_free
= snd_usb_mixer_dev_free
2042 struct usb_mixer_interface
*mixer
;
2045 strcpy(chip
->card
->mixername
, "USB Mixer");
2047 mixer
= kzalloc(sizeof(*mixer
), GFP_KERNEL
);
2051 mixer
->ctrlif
= ctrlif
;
2052 mixer
->ignore_ctl_error
= ignore_error
;
2053 mixer
->id_elems
= kcalloc(256, sizeof(*mixer
->id_elems
), GFP_KERNEL
);
2054 if (!mixer
->id_elems
) {
2059 if ((err
= snd_usb_mixer_controls(mixer
)) < 0 ||
2060 (err
= snd_usb_mixer_status_create(mixer
)) < 0)
2063 if ((err
= snd_usb_soundblaster_remote_init(mixer
)) < 0)
2066 if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3020) ||
2067 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
2068 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048)) {
2069 struct snd_info_entry
*entry
;
2071 if ((err
= snd_audigy2nx_controls_create(mixer
)) < 0)
2073 if (!snd_card_proc_new(chip
->card
, "audigy2nx", &entry
))
2074 snd_info_set_text_ops(entry
, mixer
,
2075 snd_audigy2nx_proc_read
);
2078 err
= snd_device_new(chip
->card
, SNDRV_DEV_LOWLEVEL
, mixer
, &dev_ops
);
2081 list_add(&mixer
->list
, &chip
->mixer_list
);
2085 snd_usb_mixer_free(mixer
);
2089 void snd_usb_mixer_disconnect(struct list_head
*p
)
2091 struct usb_mixer_interface
*mixer
;
2093 mixer
= list_entry(p
, struct usb_mixer_interface
, list
);
2094 usb_kill_urb(mixer
->urb
);
2095 usb_kill_urb(mixer
->rc_urb
);