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
;
93 struct usb_audio_term
{
97 unsigned int chconfig
;
101 struct usbmix_name_map
;
104 struct snd_usb_audio
*chip
;
105 struct usb_mixer_interface
*mixer
;
106 unsigned char *buffer
;
108 DECLARE_BITMAP(unitbitmap
, 256);
109 struct usb_audio_term oterm
;
110 const struct usbmix_name_map
*map
;
111 const struct usbmix_selector_map
*selector_map
;
114 #define MAX_CHANNELS 10 /* max logical channels */
116 struct usb_mixer_elem_info
{
117 struct usb_mixer_interface
*mixer
;
118 struct usb_mixer_elem_info
*next_id_elem
; /* list of controls with same id */
119 struct snd_ctl_elem_id
*elem_id
;
121 unsigned int control
; /* CS or ICN (high byte) */
122 unsigned int cmask
; /* channel mask bitmap: 0 = master */
127 int cache_val
[MAX_CHANNELS
];
133 USB_FEATURE_NONE
= 0,
134 USB_FEATURE_MUTE
= 1,
142 USB_FEATURE_BASSBOOST
,
148 USB_MIXER_INV_BOOLEAN
,
157 USB_PROC_UPDOWN_SWITCH
= 1,
158 USB_PROC_UPDOWN_MODE_SEL
= 2,
160 USB_PROC_PROLOGIC
= 2,
161 USB_PROC_PROLOGIC_SWITCH
= 1,
162 USB_PROC_PROLOGIC_MODE_SEL
= 2,
165 USB_PROC_3DENH_SWITCH
= 1,
166 USB_PROC_3DENH_SPACE
= 2,
169 USB_PROC_REVERB_SWITCH
= 1,
170 USB_PROC_REVERB_LEVEL
= 2,
171 USB_PROC_REVERB_TIME
= 3,
172 USB_PROC_REVERB_DELAY
= 4,
175 USB_PROC_CHORUS_SWITCH
= 1,
176 USB_PROC_CHORUS_LEVEL
= 2,
177 USB_PROC_CHORUS_RATE
= 3,
178 USB_PROC_CHORUS_DEPTH
= 4,
181 USB_PROC_DCR_SWITCH
= 1,
182 USB_PROC_DCR_RATIO
= 2,
183 USB_PROC_DCR_MAX_AMP
= 3,
184 USB_PROC_DCR_THRESHOLD
= 4,
185 USB_PROC_DCR_ATTACK
= 5,
186 USB_PROC_DCR_RELEASE
= 6,
191 * manual mapping of mixer names
192 * if the mixer topology is too complicated and the parsed names are
193 * ambiguous, add the entries in usbmixer_maps.c.
195 #include "usbmixer_maps.c"
197 /* get the mapped name if the unit matches */
198 static int check_mapped_name(struct mixer_build
*state
, int unitid
, int control
, char *buf
, int buflen
)
200 const struct usbmix_name_map
*p
;
205 for (p
= state
->map
; p
->id
; p
++) {
206 if (p
->id
== unitid
&& p
->name
&&
207 (! control
|| ! p
->control
|| control
== p
->control
)) {
209 return strlcpy(buf
, p
->name
, buflen
);
215 /* check whether the control should be ignored */
216 static int check_ignored_ctl(struct mixer_build
*state
, int unitid
, int control
)
218 const struct usbmix_name_map
*p
;
222 for (p
= state
->map
; p
->id
; p
++) {
223 if (p
->id
== unitid
&& ! p
->name
&&
224 (! control
|| ! p
->control
|| control
== p
->control
)) {
226 printk(KERN_DEBUG "ignored control %d:%d\n",
235 /* get the mapped selector source name */
236 static int check_mapped_selector_name(struct mixer_build
*state
, int unitid
,
237 int index
, char *buf
, int buflen
)
239 const struct usbmix_selector_map
*p
;
241 if (! state
->selector_map
)
243 for (p
= state
->selector_map
; p
->id
; p
++) {
244 if (p
->id
== unitid
&& index
< p
->count
)
245 return strlcpy(buf
, p
->names
[index
], buflen
);
251 * find an audio control unit with the given unit id
253 static void *find_audio_control_unit(struct mixer_build
*state
, unsigned char unit
)
258 while ((p
= snd_usb_find_desc(state
->buffer
, state
->buflen
, p
,
259 USB_DT_CS_INTERFACE
)) != NULL
) {
260 if (p
[0] >= 4 && p
[2] >= INPUT_TERMINAL
&& p
[2] <= EXTENSION_UNIT
&& p
[3] == unit
)
268 * copy a string with the given id
270 static int snd_usb_copy_string_desc(struct mixer_build
*state
, int index
, char *buf
, int maxlen
)
272 int len
= usb_string(state
->chip
->dev
, index
, buf
, maxlen
- 1);
278 * convert from the byte/word on usb descriptor to the zero-based integer
280 static int convert_signed_value(struct usb_mixer_elem_info
*cval
, int val
)
282 switch (cval
->val_type
) {
283 case USB_MIXER_BOOLEAN
:
285 case USB_MIXER_INV_BOOLEAN
:
308 * convert from the zero-based int to the byte/word for usb descriptor
310 static int convert_bytes_value(struct usb_mixer_elem_info
*cval
, int val
)
312 switch (cval
->val_type
) {
313 case USB_MIXER_BOOLEAN
:
315 case USB_MIXER_INV_BOOLEAN
:
324 return 0; /* not reached */
327 static int get_relative_value(struct usb_mixer_elem_info
*cval
, int val
)
333 else if (val
>= cval
->max
)
334 return (cval
->max
- cval
->min
+ cval
->res
- 1) / cval
->res
;
336 return (val
- cval
->min
) / cval
->res
;
339 static int get_abs_value(struct usb_mixer_elem_info
*cval
, int val
)
354 * retrieve a mixer value
357 static int get_ctl_value(struct usb_mixer_elem_info
*cval
, int request
, int validx
, int *value_ret
)
359 unsigned char buf
[2];
360 int val_len
= cval
->val_type
>= USB_MIXER_S16
? 2 : 1;
363 while (timeout
-- > 0) {
364 if (snd_usb_ctl_msg(cval
->mixer
->chip
->dev
,
365 usb_rcvctrlpipe(cval
->mixer
->chip
->dev
, 0),
367 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
368 validx
, cval
->mixer
->ctrlif
| (cval
->id
<< 8),
369 buf
, val_len
, 100) >= val_len
) {
370 *value_ret
= convert_signed_value(cval
, snd_usb_combine_bytes(buf
, val_len
));
374 snd_printdd(KERN_ERR
"cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
375 request
, validx
, cval
->mixer
->ctrlif
| (cval
->id
<< 8), cval
->val_type
);
379 static int get_cur_ctl_value(struct usb_mixer_elem_info
*cval
, int validx
, int *value
)
381 return get_ctl_value(cval
, GET_CUR
, validx
, value
);
384 /* channel = 0: master, 1 = first channel */
385 static inline int get_cur_mix_raw(struct usb_mixer_elem_info
*cval
,
386 int channel
, int *value
)
388 return get_ctl_value(cval
, GET_CUR
, (cval
->control
<< 8) | channel
, value
);
391 static int get_cur_mix_value(struct usb_mixer_elem_info
*cval
,
392 int channel
, int index
, int *value
)
396 if (cval
->cached
& (1 << channel
)) {
397 *value
= cval
->cache_val
[index
];
400 err
= get_cur_mix_raw(cval
, channel
, value
);
402 if (!cval
->mixer
->ignore_ctl_error
)
403 snd_printd(KERN_ERR
"cannot get current value for "
404 "control %d ch %d: err = %d\n",
405 cval
->control
, channel
, err
);
408 cval
->cached
|= 1 << channel
;
409 cval
->cache_val
[index
] = *value
;
418 static int set_ctl_value(struct usb_mixer_elem_info
*cval
, int request
, int validx
, int value_set
)
420 unsigned char buf
[2];
421 int val_len
= cval
->val_type
>= USB_MIXER_S16
? 2 : 1;
424 value_set
= convert_bytes_value(cval
, value_set
);
425 buf
[0] = value_set
& 0xff;
426 buf
[1] = (value_set
>> 8) & 0xff;
427 while (timeout
-- > 0)
428 if (snd_usb_ctl_msg(cval
->mixer
->chip
->dev
,
429 usb_sndctrlpipe(cval
->mixer
->chip
->dev
, 0),
431 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_OUT
,
432 validx
, cval
->mixer
->ctrlif
| (cval
->id
<< 8),
433 buf
, val_len
, 100) >= 0)
435 snd_printdd(KERN_ERR
"cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
436 request
, validx
, cval
->mixer
->ctrlif
| (cval
->id
<< 8), cval
->val_type
, buf
[0], buf
[1]);
440 static int set_cur_ctl_value(struct usb_mixer_elem_info
*cval
, int validx
, int value
)
442 return set_ctl_value(cval
, SET_CUR
, validx
, value
);
445 static int set_cur_mix_value(struct usb_mixer_elem_info
*cval
, int channel
,
446 int index
, int value
)
449 err
= set_ctl_value(cval
, SET_CUR
, (cval
->control
<< 8) | channel
,
453 cval
->cached
|= 1 << channel
;
454 cval
->cache_val
[index
] = value
;
459 * TLV callback for mixer volume controls
461 static int mixer_vol_tlv(struct snd_kcontrol
*kcontrol
, int op_flag
,
462 unsigned int size
, unsigned int __user
*_tlv
)
464 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
465 DECLARE_TLV_DB_MINMAX(scale
, 0, 0);
467 if (size
< sizeof(scale
))
469 /* USB descriptions contain the dB scale in 1/256 dB unit
470 * while ALSA TLV contains in 1/100 dB unit
472 scale
[2] = (convert_signed_value(cval
, cval
->min
) * 100) / 256;
473 scale
[3] = (convert_signed_value(cval
, cval
->max
) * 100) / 256;
474 if (scale
[3] <= scale
[2]) {
475 /* something is wrong; assume it's either from/to 0dB */
478 else if (scale
[2] > 0)
480 else /* totally crap, return an error */
483 if (copy_to_user(_tlv
, scale
, sizeof(scale
)))
489 * parser routines begin here...
492 static int parse_audio_unit(struct mixer_build
*state
, int unitid
);
496 * check if the input/output channel routing is enabled on the given bitmap.
497 * used for mixer unit parser
499 static int check_matrix_bitmap(unsigned char *bmap
, int ich
, int och
, int num_outs
)
501 int idx
= ich
* num_outs
+ och
;
502 return bmap
[idx
>> 3] & (0x80 >> (idx
& 7));
507 * add an alsa control element
508 * search and increment the index until an empty slot is found.
510 * if failed, give up and free the control instance.
513 static int add_control_to_empty(struct mixer_build
*state
, struct snd_kcontrol
*kctl
)
515 struct usb_mixer_elem_info
*cval
= kctl
->private_data
;
518 while (snd_ctl_find_id(state
->chip
->card
, &kctl
->id
))
520 if ((err
= snd_ctl_add(state
->chip
->card
, kctl
)) < 0) {
521 snd_printd(KERN_ERR
"cannot add control (err = %d)\n", err
);
524 cval
->elem_id
= &kctl
->id
;
525 cval
->next_id_elem
= state
->mixer
->id_elems
[cval
->id
];
526 state
->mixer
->id_elems
[cval
->id
] = cval
;
532 * get a terminal name string
535 static struct iterm_name_combo
{
539 { 0x0300, "Output" },
540 { 0x0301, "Speaker" },
541 { 0x0302, "Headphone" },
542 { 0x0303, "HMD Audio" },
543 { 0x0304, "Desktop Speaker" },
544 { 0x0305, "Room Speaker" },
545 { 0x0306, "Com Speaker" },
547 { 0x0600, "External In" },
548 { 0x0601, "Analog In" },
549 { 0x0602, "Digital In" },
551 { 0x0604, "Legacy In" },
552 { 0x0605, "IEC958 In" },
553 { 0x0606, "1394 DA Stream" },
554 { 0x0607, "1394 DV Stream" },
555 { 0x0700, "Embedded" },
556 { 0x0701, "Noise Source" },
557 { 0x0702, "Equalization Noise" },
561 { 0x0706, "MiniDisk" },
562 { 0x0707, "Analog Tape" },
563 { 0x0708, "Phonograph" },
564 { 0x0709, "VCR Audio" },
565 { 0x070a, "Video Disk Audio" },
566 { 0x070b, "DVD Audio" },
567 { 0x070c, "TV Tuner Audio" },
568 { 0x070d, "Satellite Rec Audio" },
569 { 0x070e, "Cable Tuner Audio" },
570 { 0x070f, "DSS Audio" },
571 { 0x0710, "Radio Receiver" },
572 { 0x0711, "Radio Transmitter" },
573 { 0x0712, "Multi-Track Recorder" },
574 { 0x0713, "Synthesizer" },
578 static int get_term_name(struct mixer_build
*state
, struct usb_audio_term
*iterm
,
579 unsigned char *name
, int maxlen
, int term_only
)
581 struct iterm_name_combo
*names
;
584 return snd_usb_copy_string_desc(state
, iterm
->name
, name
, maxlen
);
586 /* virtual type - not a real terminal */
587 if (iterm
->type
>> 16) {
590 switch (iterm
->type
>> 16) {
592 strcpy(name
, "Selector"); return 8;
593 case PROCESSING_UNIT
:
594 strcpy(name
, "Process Unit"); return 12;
596 strcpy(name
, "Ext Unit"); return 8;
598 strcpy(name
, "Mixer"); return 5;
600 return sprintf(name
, "Unit %d", iterm
->id
);
604 switch (iterm
->type
& 0xff00) {
606 strcpy(name
, "PCM"); return 3;
608 strcpy(name
, "Mic"); return 3;
610 strcpy(name
, "Headset"); return 7;
612 strcpy(name
, "Phone"); return 5;
615 for (names
= iterm_names
; names
->type
; names
++)
616 if (names
->type
== iterm
->type
) {
617 strcpy(name
, names
->name
);
618 return strlen(names
->name
);
625 * parse the source unit recursively until it reaches to a terminal
626 * or a branched unit.
628 static int check_input_term(struct mixer_build
*state
, int id
, struct usb_audio_term
*term
)
632 memset(term
, 0, sizeof(*term
));
633 while ((p1
= find_audio_control_unit(state
, id
)) != NULL
) {
637 term
->type
= combine_word(p1
+ 4);
638 term
->channels
= p1
[7];
639 term
->chconfig
= combine_word(p1
+ 8);
644 break; /* continue to parse */
646 term
->type
= p1
[2] << 16; /* virtual type */
647 term
->channels
= p1
[5 + p1
[4]];
648 term
->chconfig
= combine_word(p1
+ 6 + p1
[4]);
649 term
->name
= p1
[p1
[0] - 1];
652 /* call recursively to retrieve the channel info */
653 if (check_input_term(state
, p1
[5], term
) < 0)
655 term
->type
= p1
[2] << 16; /* virtual type */
657 term
->name
= p1
[9 + p1
[0] - 1];
659 case PROCESSING_UNIT
:
663 break; /* continue to parse */
665 term
->type
= p1
[2] << 16; /* virtual type */
666 term
->channels
= p1
[7 + p1
[6]];
667 term
->chconfig
= combine_word(p1
+ 8 + p1
[6]);
668 term
->name
= p1
[12 + p1
[6] + p1
[11 + p1
[6]]];
682 /* feature unit control information */
683 struct usb_feature_control_info
{
685 unsigned int type
; /* control type (mute, volume, etc.) */
688 static struct usb_feature_control_info audio_feature_info
[] = {
689 { "Mute", USB_MIXER_INV_BOOLEAN
},
690 { "Volume", USB_MIXER_S16
},
691 { "Tone Control - Bass", USB_MIXER_S8
},
692 { "Tone Control - Mid", USB_MIXER_S8
},
693 { "Tone Control - Treble", USB_MIXER_S8
},
694 { "Graphic Equalizer", USB_MIXER_S8
}, /* FIXME: not implemeted yet */
695 { "Auto Gain Control", USB_MIXER_BOOLEAN
},
696 { "Delay Control", USB_MIXER_U16
},
697 { "Bass Boost", USB_MIXER_BOOLEAN
},
698 { "Loudness", USB_MIXER_BOOLEAN
},
702 /* private_free callback */
703 static void usb_mixer_elem_free(struct snd_kcontrol
*kctl
)
705 kfree(kctl
->private_data
);
706 kctl
->private_data
= NULL
;
711 * interface to ALSA control for feature/mixer units
715 * retrieve the minimum and maximum values for the specified control
717 static int get_min_max(struct usb_mixer_elem_info
*cval
, int default_min
)
720 cval
->min
= default_min
;
721 cval
->max
= cval
->min
+ 1;
724 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
725 cval
->val_type
== USB_MIXER_INV_BOOLEAN
) {
726 cval
->initialized
= 1;
731 for (i
= 0; i
< MAX_CHANNELS
; i
++)
732 if (cval
->cmask
& (1 << i
)) {
737 if (get_ctl_value(cval
, GET_MAX
, (cval
->control
<< 8) | minchn
, &cval
->max
) < 0 ||
738 get_ctl_value(cval
, GET_MIN
, (cval
->control
<< 8) | minchn
, &cval
->min
) < 0) {
739 snd_printd(KERN_ERR
"%d:%d: cannot get min/max values for control %d (id %d)\n",
740 cval
->id
, cval
->mixer
->ctrlif
, cval
->control
, cval
->id
);
743 if (get_ctl_value(cval
, GET_RES
, (cval
->control
<< 8) | minchn
, &cval
->res
) < 0) {
746 int last_valid_res
= cval
->res
;
748 while (cval
->res
> 1) {
749 if (set_ctl_value(cval
, SET_RES
, (cval
->control
<< 8) | minchn
, cval
->res
/ 2) < 0)
753 if (get_ctl_value(cval
, GET_RES
, (cval
->control
<< 8) | minchn
, &cval
->res
) < 0)
754 cval
->res
= last_valid_res
;
759 /* Additional checks for the proper resolution
761 * Some devices report smaller resolutions than actually
762 * reacting. They don't return errors but simply clip
763 * to the lower aligned value.
765 if (cval
->min
+ cval
->res
< cval
->max
) {
766 int last_valid_res
= cval
->res
;
767 int saved
, test
, check
;
768 get_cur_mix_raw(cval
, minchn
, &saved
);
771 if (test
< cval
->max
)
775 if (test
< cval
->min
|| test
> cval
->max
||
776 set_cur_mix_value(cval
, minchn
, 0, test
) ||
777 get_cur_mix_raw(cval
, minchn
, &check
)) {
778 cval
->res
= last_valid_res
;
785 set_cur_mix_value(cval
, minchn
, 0, saved
);
788 cval
->initialized
= 1;
794 /* get a feature/mixer unit info */
795 static int mixer_ctl_feature_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
797 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
799 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
800 cval
->val_type
== USB_MIXER_INV_BOOLEAN
)
801 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
803 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
804 uinfo
->count
= cval
->channels
;
805 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
806 cval
->val_type
== USB_MIXER_INV_BOOLEAN
) {
807 uinfo
->value
.integer
.min
= 0;
808 uinfo
->value
.integer
.max
= 1;
810 if (! cval
->initialized
)
811 get_min_max(cval
, 0);
812 uinfo
->value
.integer
.min
= 0;
813 uinfo
->value
.integer
.max
=
814 (cval
->max
- cval
->min
+ cval
->res
- 1) / cval
->res
;
819 /* get the current value from feature/mixer unit */
820 static int mixer_ctl_feature_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
822 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
823 int c
, cnt
, val
, err
;
825 ucontrol
->value
.integer
.value
[0] = cval
->min
;
828 for (c
= 0; c
< MAX_CHANNELS
; c
++) {
829 if (!(cval
->cmask
& (1 << c
)))
831 err
= get_cur_mix_value(cval
, c
+ 1, cnt
, &val
);
833 return cval
->mixer
->ignore_ctl_error
? 0 : err
;
834 val
= get_relative_value(cval
, val
);
835 ucontrol
->value
.integer
.value
[cnt
] = val
;
841 err
= get_cur_mix_value(cval
, 0, 0, &val
);
843 return cval
->mixer
->ignore_ctl_error
? 0 : err
;
844 val
= get_relative_value(cval
, val
);
845 ucontrol
->value
.integer
.value
[0] = val
;
850 /* put the current value to feature/mixer unit */
851 static int mixer_ctl_feature_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
853 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
854 int c
, cnt
, val
, oval
, err
;
859 for (c
= 0; c
< MAX_CHANNELS
; c
++) {
860 if (!(cval
->cmask
& (1 << c
)))
862 err
= get_cur_mix_value(cval
, c
+ 1, cnt
, &oval
);
864 return cval
->mixer
->ignore_ctl_error
? 0 : err
;
865 val
= ucontrol
->value
.integer
.value
[cnt
];
866 val
= get_abs_value(cval
, val
);
868 set_cur_mix_value(cval
, c
+ 1, cnt
, val
);
875 err
= get_cur_mix_value(cval
, 0, 0, &oval
);
877 return cval
->mixer
->ignore_ctl_error
? 0 : err
;
878 val
= ucontrol
->value
.integer
.value
[0];
879 val
= get_abs_value(cval
, val
);
881 set_cur_mix_value(cval
, 0, 0, val
);
888 static struct snd_kcontrol_new usb_feature_unit_ctl
= {
889 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
890 .name
= "", /* will be filled later manually */
891 .info
= mixer_ctl_feature_info
,
892 .get
= mixer_ctl_feature_get
,
893 .put
= mixer_ctl_feature_put
,
898 * build a feature control
901 static void build_feature_ctl(struct mixer_build
*state
, unsigned char *desc
,
902 unsigned int ctl_mask
, int control
,
903 struct usb_audio_term
*iterm
, int unitid
)
905 unsigned int len
= 0;
907 int nameid
= desc
[desc
[0] - 1];
908 struct snd_kcontrol
*kctl
;
909 struct usb_mixer_elem_info
*cval
;
911 control
++; /* change from zero-based to 1-based value */
913 if (control
== USB_FEATURE_GEQ
) {
914 /* FIXME: not supported yet */
918 if (check_ignored_ctl(state
, unitid
, control
))
921 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
923 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
926 cval
->mixer
= state
->mixer
;
928 cval
->control
= control
;
929 cval
->cmask
= ctl_mask
;
930 cval
->val_type
= audio_feature_info
[control
-1].type
;
932 cval
->channels
= 1; /* master channel */
935 for (i
= 0; i
< 16; i
++)
936 if (ctl_mask
& (1 << i
))
941 /* get min/max values */
942 get_min_max(cval
, 0);
944 kctl
= snd_ctl_new1(&usb_feature_unit_ctl
, cval
);
946 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
950 kctl
->private_free
= usb_mixer_elem_free
;
952 len
= check_mapped_name(state
, unitid
, control
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
953 mapped_name
= len
!= 0;
955 len
= snd_usb_copy_string_desc(state
, nameid
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
958 case USB_FEATURE_MUTE
:
959 case USB_FEATURE_VOLUME
:
960 /* determine the control name. the rule is:
961 * - if a name id is given in descriptor, use it.
962 * - if the connected input can be determined, then use the name
964 * - if the connected output can be determined, use it.
965 * - otherwise, anonymous name.
968 len
= get_term_name(state
, iterm
, kctl
->id
.name
, sizeof(kctl
->id
.name
), 1);
970 len
= get_term_name(state
, &state
->oterm
, kctl
->id
.name
, sizeof(kctl
->id
.name
), 1);
972 len
= snprintf(kctl
->id
.name
, sizeof(kctl
->id
.name
),
973 "Feature %d", unitid
);
975 /* determine the stream direction:
976 * if the connected output is USB stream, then it's likely a
977 * capture stream. otherwise it should be playback (hopefully :)
979 if (! mapped_name
&& ! (state
->oterm
.type
>> 16)) {
980 if ((state
->oterm
.type
& 0xff00) == 0x0100) {
981 len
= strlcat(kctl
->id
.name
, " Capture", sizeof(kctl
->id
.name
));
983 len
= strlcat(kctl
->id
.name
+ len
, " Playback", sizeof(kctl
->id
.name
));
986 strlcat(kctl
->id
.name
+ len
, control
== USB_FEATURE_MUTE
? " Switch" : " Volume",
987 sizeof(kctl
->id
.name
));
988 if (control
== USB_FEATURE_VOLUME
) {
989 kctl
->tlv
.c
= mixer_vol_tlv
;
990 kctl
->vd
[0].access
|=
991 SNDRV_CTL_ELEM_ACCESS_TLV_READ
|
992 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
;
998 strlcpy(kctl
->id
.name
, audio_feature_info
[control
-1].name
,
999 sizeof(kctl
->id
.name
));
1003 /* volume control quirks */
1004 switch (state
->chip
->usb_id
) {
1005 case USB_ID(0x0471, 0x0101):
1006 case USB_ID(0x0471, 0x0104):
1007 case USB_ID(0x0471, 0x0105):
1008 case USB_ID(0x0672, 0x1041):
1009 /* quirk for UDA1321/N101.
1010 * note that detection between firmware 2.1.1.7 (N101)
1011 * and later 2.1.1.21 is not very clear from datasheets.
1012 * I hope that the min value is -15360 for newer firmware --jk
1014 if (!strcmp(kctl
->id
.name
, "PCM Playback Volume") &&
1015 cval
->min
== -15616) {
1016 snd_printk(KERN_INFO
1017 "set volume quirk for UDA1321/N101 chip\n");
1022 case USB_ID(0x046d, 0x09a4):
1023 if (!strcmp(kctl
->id
.name
, "Mic Capture Volume")) {
1024 snd_printk(KERN_INFO
1025 "set volume quirk for QuickCam E3500\n");
1034 snd_printdd(KERN_INFO
"[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1035 cval
->id
, kctl
->id
.name
, cval
->channels
, cval
->min
, cval
->max
, cval
->res
);
1036 add_control_to_empty(state
, kctl
);
1042 * parse a feature unit
1044 * most of controlls are defined here.
1046 static int parse_audio_feature_unit(struct mixer_build
*state
, int unitid
, unsigned char *ftr
)
1049 struct usb_audio_term iterm
;
1050 unsigned int master_bits
, first_ch_bits
;
1053 if (ftr
[0] < 7 || ! (csize
= ftr
[5]) || ftr
[0] < 7 + csize
) {
1054 snd_printk(KERN_ERR
"usbaudio: unit %u: invalid FEATURE_UNIT descriptor\n", unitid
);
1058 /* parse the source unit */
1059 if ((err
= parse_audio_unit(state
, ftr
[4])) < 0)
1062 /* determine the input source type and name */
1063 if (check_input_term(state
, ftr
[4], &iterm
) < 0)
1066 channels
= (ftr
[0] - 7) / csize
- 1;
1068 master_bits
= snd_usb_combine_bytes(ftr
+ 6, csize
);
1070 first_ch_bits
= snd_usb_combine_bytes(ftr
+ 6 + csize
, csize
);
1073 /* check all control types */
1074 for (i
= 0; i
< 10; i
++) {
1075 unsigned int ch_bits
= 0;
1076 for (j
= 0; j
< channels
; j
++) {
1077 unsigned int mask
= snd_usb_combine_bytes(ftr
+ 6 + csize
* (j
+1), csize
);
1078 if (mask
& (1 << i
))
1079 ch_bits
|= (1 << j
);
1081 if (ch_bits
& 1) /* the first channel must be set (for ease of programming) */
1082 build_feature_ctl(state
, ftr
, ch_bits
, i
, &iterm
, unitid
);
1083 if (master_bits
& (1 << i
))
1084 build_feature_ctl(state
, ftr
, 0, i
, &iterm
, unitid
);
1096 * build a mixer unit control
1098 * the callbacks are identical with feature unit.
1099 * input channel number (zero based) is given in control field instead.
1102 static void build_mixer_unit_ctl(struct mixer_build
*state
, unsigned char *desc
,
1103 int in_pin
, int in_ch
, int unitid
,
1104 struct usb_audio_term
*iterm
)
1106 struct usb_mixer_elem_info
*cval
;
1107 unsigned int input_pins
= desc
[4];
1108 unsigned int num_outs
= desc
[5 + input_pins
];
1109 unsigned int i
, len
;
1110 struct snd_kcontrol
*kctl
;
1112 if (check_ignored_ctl(state
, unitid
, 0))
1115 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1119 cval
->mixer
= state
->mixer
;
1121 cval
->control
= in_ch
+ 1; /* based on 1 */
1122 cval
->val_type
= USB_MIXER_S16
;
1123 for (i
= 0; i
< num_outs
; i
++) {
1124 if (check_matrix_bitmap(desc
+ 9 + input_pins
, in_ch
, i
, num_outs
)) {
1125 cval
->cmask
|= (1 << i
);
1130 /* get min/max values */
1131 get_min_max(cval
, 0);
1133 kctl
= snd_ctl_new1(&usb_feature_unit_ctl
, cval
);
1135 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
1139 kctl
->private_free
= usb_mixer_elem_free
;
1141 len
= check_mapped_name(state
, unitid
, 0, kctl
->id
.name
, sizeof(kctl
->id
.name
));
1143 len
= get_term_name(state
, iterm
, kctl
->id
.name
, sizeof(kctl
->id
.name
), 0);
1145 len
= sprintf(kctl
->id
.name
, "Mixer Source %d", in_ch
+ 1);
1146 strlcat(kctl
->id
.name
+ len
, " Volume", sizeof(kctl
->id
.name
));
1148 snd_printdd(KERN_INFO
"[%d] MU [%s] ch = %d, val = %d/%d\n",
1149 cval
->id
, kctl
->id
.name
, cval
->channels
, cval
->min
, cval
->max
);
1150 add_control_to_empty(state
, kctl
);
1155 * parse a mixer unit
1157 static int parse_audio_mixer_unit(struct mixer_build
*state
, int unitid
, unsigned char *desc
)
1159 struct usb_audio_term iterm
;
1160 int input_pins
, num_ins
, num_outs
;
1163 if (desc
[0] < 11 || ! (input_pins
= desc
[4]) || ! (num_outs
= desc
[5 + input_pins
])) {
1164 snd_printk(KERN_ERR
"invalid MIXER UNIT descriptor %d\n", unitid
);
1167 /* no bmControls field (e.g. Maya44) -> ignore */
1168 if (desc
[0] <= 10 + input_pins
) {
1169 snd_printdd(KERN_INFO
"MU %d has no bmControls field\n", unitid
);
1175 for (pin
= 0; pin
< input_pins
; pin
++) {
1176 err
= parse_audio_unit(state
, desc
[5 + pin
]);
1179 err
= check_input_term(state
, desc
[5 + pin
], &iterm
);
1182 num_ins
+= iterm
.channels
;
1183 for (; ich
< num_ins
; ++ich
) {
1184 int och
, ich_has_controls
= 0;
1186 for (och
= 0; och
< num_outs
; ++och
) {
1187 if (check_matrix_bitmap(desc
+ 9 + input_pins
,
1188 ich
, och
, num_outs
)) {
1189 ich_has_controls
= 1;
1193 if (ich_has_controls
)
1194 build_mixer_unit_ctl(state
, desc
, pin
, ich
,
1203 * Processing Unit / Extension Unit
1206 /* get callback for processing/extension unit */
1207 static int mixer_ctl_procunit_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1209 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1212 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &val
);
1213 if (err
< 0 && cval
->mixer
->ignore_ctl_error
) {
1214 ucontrol
->value
.integer
.value
[0] = cval
->min
;
1219 val
= get_relative_value(cval
, val
);
1220 ucontrol
->value
.integer
.value
[0] = val
;
1224 /* put callback for processing/extension unit */
1225 static int mixer_ctl_procunit_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1227 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1230 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &oval
);
1232 if (cval
->mixer
->ignore_ctl_error
)
1236 val
= ucontrol
->value
.integer
.value
[0];
1237 val
= get_abs_value(cval
, val
);
1239 set_cur_ctl_value(cval
, cval
->control
<< 8, val
);
1245 /* alsa control interface for processing/extension unit */
1246 static struct snd_kcontrol_new mixer_procunit_ctl
= {
1247 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1248 .name
= "", /* will be filled later */
1249 .info
= mixer_ctl_feature_info
,
1250 .get
= mixer_ctl_procunit_get
,
1251 .put
= mixer_ctl_procunit_put
,
1256 * predefined data for processing units
1258 struct procunit_value_info
{
1265 struct procunit_info
{
1268 struct procunit_value_info
*values
;
1271 static struct procunit_value_info updown_proc_info
[] = {
1272 { USB_PROC_UPDOWN_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1273 { USB_PROC_UPDOWN_MODE_SEL
, "Mode Select", USB_MIXER_U8
, 1 },
1276 static struct procunit_value_info prologic_proc_info
[] = {
1277 { USB_PROC_PROLOGIC_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1278 { USB_PROC_PROLOGIC_MODE_SEL
, "Mode Select", USB_MIXER_U8
, 1 },
1281 static struct procunit_value_info threed_enh_proc_info
[] = {
1282 { USB_PROC_3DENH_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1283 { USB_PROC_3DENH_SPACE
, "Spaciousness", USB_MIXER_U8
},
1286 static struct procunit_value_info reverb_proc_info
[] = {
1287 { USB_PROC_REVERB_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1288 { USB_PROC_REVERB_LEVEL
, "Level", USB_MIXER_U8
},
1289 { USB_PROC_REVERB_TIME
, "Time", USB_MIXER_U16
},
1290 { USB_PROC_REVERB_DELAY
, "Delay", USB_MIXER_U8
},
1293 static struct procunit_value_info chorus_proc_info
[] = {
1294 { USB_PROC_CHORUS_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1295 { USB_PROC_CHORUS_LEVEL
, "Level", USB_MIXER_U8
},
1296 { USB_PROC_CHORUS_RATE
, "Rate", USB_MIXER_U16
},
1297 { USB_PROC_CHORUS_DEPTH
, "Depth", USB_MIXER_U16
},
1300 static struct procunit_value_info dcr_proc_info
[] = {
1301 { USB_PROC_DCR_SWITCH
, "Switch", USB_MIXER_BOOLEAN
},
1302 { USB_PROC_DCR_RATIO
, "Ratio", USB_MIXER_U16
},
1303 { USB_PROC_DCR_MAX_AMP
, "Max Amp", USB_MIXER_S16
},
1304 { USB_PROC_DCR_THRESHOLD
, "Threshold", USB_MIXER_S16
},
1305 { USB_PROC_DCR_ATTACK
, "Attack Time", USB_MIXER_U16
},
1306 { USB_PROC_DCR_RELEASE
, "Release Time", USB_MIXER_U16
},
1310 static struct procunit_info procunits
[] = {
1311 { USB_PROC_UPDOWN
, "Up Down", updown_proc_info
},
1312 { USB_PROC_PROLOGIC
, "Dolby Prologic", prologic_proc_info
},
1313 { USB_PROC_3DENH
, "3D Stereo Extender", threed_enh_proc_info
},
1314 { USB_PROC_REVERB
, "Reverb", reverb_proc_info
},
1315 { USB_PROC_CHORUS
, "Chorus", chorus_proc_info
},
1316 { USB_PROC_DCR
, "DCR", dcr_proc_info
},
1321 * build a processing/extension unit
1323 static int build_audio_procunit(struct mixer_build
*state
, int unitid
, unsigned char *dsc
, struct procunit_info
*list
, char *name
)
1325 int num_ins
= dsc
[6];
1326 struct usb_mixer_elem_info
*cval
;
1327 struct snd_kcontrol
*kctl
;
1328 int i
, err
, nameid
, type
, len
;
1329 struct procunit_info
*info
;
1330 struct procunit_value_info
*valinfo
;
1331 static struct procunit_value_info default_value_info
[] = {
1332 { 0x01, "Switch", USB_MIXER_BOOLEAN
},
1335 static struct procunit_info default_info
= {
1336 0, NULL
, default_value_info
1339 if (dsc
[0] < 13 || dsc
[0] < 13 + num_ins
|| dsc
[0] < num_ins
+ dsc
[11 + num_ins
]) {
1340 snd_printk(KERN_ERR
"invalid %s descriptor (id %d)\n", name
, unitid
);
1344 for (i
= 0; i
< num_ins
; i
++) {
1345 if ((err
= parse_audio_unit(state
, dsc
[7 + i
])) < 0)
1349 type
= combine_word(&dsc
[4]);
1350 for (info
= list
; info
&& info
->type
; info
++)
1351 if (info
->type
== type
)
1353 if (! info
|| ! info
->type
)
1354 info
= &default_info
;
1356 for (valinfo
= info
->values
; valinfo
->control
; valinfo
++) {
1357 /* FIXME: bitmap might be longer than 8bit */
1358 if (! (dsc
[12 + num_ins
] & (1 << (valinfo
->control
- 1))))
1360 if (check_ignored_ctl(state
, unitid
, valinfo
->control
))
1362 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1364 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
1367 cval
->mixer
= state
->mixer
;
1369 cval
->control
= valinfo
->control
;
1370 cval
->val_type
= valinfo
->val_type
;
1373 /* get min/max values */
1374 if (type
== USB_PROC_UPDOWN
&& cval
->control
== USB_PROC_UPDOWN_MODE_SEL
) {
1375 /* FIXME: hard-coded */
1377 cval
->max
= dsc
[15];
1379 cval
->initialized
= 1;
1381 get_min_max(cval
, valinfo
->min_value
);
1383 kctl
= snd_ctl_new1(&mixer_procunit_ctl
, cval
);
1385 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
1389 kctl
->private_free
= usb_mixer_elem_free
;
1391 if (check_mapped_name(state
, unitid
, cval
->control
, kctl
->id
.name
, sizeof(kctl
->id
.name
)))
1393 else if (info
->name
)
1394 strlcpy(kctl
->id
.name
, info
->name
, sizeof(kctl
->id
.name
));
1396 nameid
= dsc
[12 + num_ins
+ dsc
[11 + num_ins
]];
1399 len
= snd_usb_copy_string_desc(state
, nameid
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
1401 strlcpy(kctl
->id
.name
, name
, sizeof(kctl
->id
.name
));
1403 strlcat(kctl
->id
.name
, " ", sizeof(kctl
->id
.name
));
1404 strlcat(kctl
->id
.name
, valinfo
->suffix
, sizeof(kctl
->id
.name
));
1406 snd_printdd(KERN_INFO
"[%d] PU [%s] ch = %d, val = %d/%d\n",
1407 cval
->id
, kctl
->id
.name
, cval
->channels
, cval
->min
, cval
->max
);
1408 if ((err
= add_control_to_empty(state
, kctl
)) < 0)
1415 static int parse_audio_processing_unit(struct mixer_build
*state
, int unitid
, unsigned char *desc
)
1417 return build_audio_procunit(state
, unitid
, desc
, procunits
, "Processing Unit");
1420 static int parse_audio_extension_unit(struct mixer_build
*state
, int unitid
, unsigned char *desc
)
1422 return build_audio_procunit(state
, unitid
, desc
, NULL
, "Extension Unit");
1430 /* info callback for selector unit
1431 * use an enumerator type for routing
1433 static int mixer_ctl_selector_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1435 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1436 char **itemlist
= (char **)kcontrol
->private_value
;
1438 if (snd_BUG_ON(!itemlist
))
1440 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1442 uinfo
->value
.enumerated
.items
= cval
->max
;
1443 if ((int)uinfo
->value
.enumerated
.item
>= cval
->max
)
1444 uinfo
->value
.enumerated
.item
= cval
->max
- 1;
1445 strcpy(uinfo
->value
.enumerated
.name
, itemlist
[uinfo
->value
.enumerated
.item
]);
1449 /* get callback for selector unit */
1450 static int mixer_ctl_selector_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1452 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1455 err
= get_cur_ctl_value(cval
, 0, &val
);
1457 if (cval
->mixer
->ignore_ctl_error
) {
1458 ucontrol
->value
.enumerated
.item
[0] = 0;
1463 val
= get_relative_value(cval
, val
);
1464 ucontrol
->value
.enumerated
.item
[0] = val
;
1468 /* put callback for selector unit */
1469 static int mixer_ctl_selector_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1471 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1474 err
= get_cur_ctl_value(cval
, 0, &oval
);
1476 if (cval
->mixer
->ignore_ctl_error
)
1480 val
= ucontrol
->value
.enumerated
.item
[0];
1481 val
= get_abs_value(cval
, val
);
1483 set_cur_ctl_value(cval
, 0, val
);
1489 /* alsa control interface for selector unit */
1490 static struct snd_kcontrol_new mixer_selectunit_ctl
= {
1491 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1492 .name
= "", /* will be filled later */
1493 .info
= mixer_ctl_selector_info
,
1494 .get
= mixer_ctl_selector_get
,
1495 .put
= mixer_ctl_selector_put
,
1499 /* private free callback.
1500 * free both private_data and private_value
1502 static void usb_mixer_selector_elem_free(struct snd_kcontrol
*kctl
)
1506 if (kctl
->private_data
) {
1507 struct usb_mixer_elem_info
*cval
= kctl
->private_data
;
1508 num_ins
= cval
->max
;
1510 kctl
->private_data
= NULL
;
1512 if (kctl
->private_value
) {
1513 char **itemlist
= (char **)kctl
->private_value
;
1514 for (i
= 0; i
< num_ins
; i
++)
1517 kctl
->private_value
= 0;
1522 * parse a selector unit
1524 static int parse_audio_selector_unit(struct mixer_build
*state
, int unitid
, unsigned char *desc
)
1526 unsigned int num_ins
= desc
[4];
1527 unsigned int i
, nameid
, len
;
1529 struct usb_mixer_elem_info
*cval
;
1530 struct snd_kcontrol
*kctl
;
1533 if (! num_ins
|| desc
[0] < 5 + num_ins
) {
1534 snd_printk(KERN_ERR
"invalid SELECTOR UNIT descriptor %d\n", unitid
);
1538 for (i
= 0; i
< num_ins
; i
++) {
1539 if ((err
= parse_audio_unit(state
, desc
[5 + i
])) < 0)
1543 if (num_ins
== 1) /* only one ? nonsense! */
1546 if (check_ignored_ctl(state
, unitid
, 0))
1549 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1551 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
1554 cval
->mixer
= state
->mixer
;
1556 cval
->val_type
= USB_MIXER_U8
;
1559 cval
->max
= num_ins
;
1561 cval
->initialized
= 1;
1563 namelist
= kmalloc(sizeof(char *) * num_ins
, GFP_KERNEL
);
1565 snd_printk(KERN_ERR
"cannot malloc\n");
1569 #define MAX_ITEM_NAME_LEN 64
1570 for (i
= 0; i
< num_ins
; i
++) {
1571 struct usb_audio_term iterm
;
1573 namelist
[i
] = kmalloc(MAX_ITEM_NAME_LEN
, GFP_KERNEL
);
1574 if (! namelist
[i
]) {
1575 snd_printk(KERN_ERR
"cannot malloc\n");
1582 len
= check_mapped_selector_name(state
, unitid
, i
, namelist
[i
],
1584 if (! len
&& check_input_term(state
, desc
[5 + i
], &iterm
) >= 0)
1585 len
= get_term_name(state
, &iterm
, namelist
[i
], MAX_ITEM_NAME_LEN
, 0);
1587 sprintf(namelist
[i
], "Input %d", i
);
1590 kctl
= snd_ctl_new1(&mixer_selectunit_ctl
, cval
);
1592 snd_printk(KERN_ERR
"cannot malloc kcontrol\n");
1597 kctl
->private_value
= (unsigned long)namelist
;
1598 kctl
->private_free
= usb_mixer_selector_elem_free
;
1600 nameid
= desc
[desc
[0] - 1];
1601 len
= check_mapped_name(state
, unitid
, 0, kctl
->id
.name
, sizeof(kctl
->id
.name
));
1605 snd_usb_copy_string_desc(state
, nameid
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
1607 len
= get_term_name(state
, &state
->oterm
,
1608 kctl
->id
.name
, sizeof(kctl
->id
.name
), 0);
1610 strlcpy(kctl
->id
.name
, "USB", sizeof(kctl
->id
.name
));
1612 if ((state
->oterm
.type
& 0xff00) == 0x0100)
1613 strlcat(kctl
->id
.name
, " Capture Source", sizeof(kctl
->id
.name
));
1615 strlcat(kctl
->id
.name
, " Playback Source", sizeof(kctl
->id
.name
));
1618 snd_printdd(KERN_INFO
"[%d] SU [%s] items = %d\n",
1619 cval
->id
, kctl
->id
.name
, num_ins
);
1620 if ((err
= add_control_to_empty(state
, kctl
)) < 0)
1628 * parse an audio unit recursively
1631 static int parse_audio_unit(struct mixer_build
*state
, int unitid
)
1635 if (test_and_set_bit(unitid
, state
->unitbitmap
))
1636 return 0; /* the unit already visited */
1638 p1
= find_audio_control_unit(state
, unitid
);
1640 snd_printk(KERN_ERR
"usbaudio: unit %d not found!\n", unitid
);
1645 case INPUT_TERMINAL
:
1648 return parse_audio_mixer_unit(state
, unitid
, p1
);
1650 return parse_audio_selector_unit(state
, unitid
, p1
);
1652 return parse_audio_feature_unit(state
, unitid
, p1
);
1653 case PROCESSING_UNIT
:
1654 return parse_audio_processing_unit(state
, unitid
, p1
);
1655 case EXTENSION_UNIT
:
1656 return parse_audio_extension_unit(state
, unitid
, p1
);
1658 snd_printk(KERN_ERR
"usbaudio: unit %u: unexpected type 0x%02x\n", unitid
, p1
[2]);
1663 static void snd_usb_mixer_free(struct usb_mixer_interface
*mixer
)
1665 kfree(mixer
->id_elems
);
1667 kfree(mixer
->urb
->transfer_buffer
);
1668 usb_free_urb(mixer
->urb
);
1670 usb_free_urb(mixer
->rc_urb
);
1671 kfree(mixer
->rc_setup_packet
);
1675 static int snd_usb_mixer_dev_free(struct snd_device
*device
)
1677 struct usb_mixer_interface
*mixer
= device
->device_data
;
1678 snd_usb_mixer_free(mixer
);
1683 * create mixer controls
1685 * walk through all OUTPUT_TERMINAL descriptors to search for mixers
1687 static int snd_usb_mixer_controls(struct usb_mixer_interface
*mixer
)
1689 unsigned char *desc
;
1690 struct mixer_build state
;
1692 const struct usbmix_ctl_map
*map
;
1693 struct usb_host_interface
*hostif
;
1695 hostif
= &usb_ifnum_to_if(mixer
->chip
->dev
, mixer
->ctrlif
)->altsetting
[0];
1696 memset(&state
, 0, sizeof(state
));
1697 state
.chip
= mixer
->chip
;
1698 state
.mixer
= mixer
;
1699 state
.buffer
= hostif
->extra
;
1700 state
.buflen
= hostif
->extralen
;
1702 /* check the mapping table */
1703 for (map
= usbmix_ctl_maps
; map
->id
; map
++) {
1704 if (map
->id
== state
.chip
->usb_id
) {
1705 state
.map
= map
->map
;
1706 state
.selector_map
= map
->selector_map
;
1707 mixer
->ignore_ctl_error
= map
->ignore_ctl_error
;
1713 while ((desc
= snd_usb_find_csint_desc(hostif
->extra
, hostif
->extralen
, desc
, OUTPUT_TERMINAL
)) != NULL
) {
1715 continue; /* invalid descriptor? */
1716 set_bit(desc
[3], state
.unitbitmap
); /* mark terminal ID as visited */
1717 state
.oterm
.id
= desc
[3];
1718 state
.oterm
.type
= combine_word(&desc
[4]);
1719 state
.oterm
.name
= desc
[8];
1720 err
= parse_audio_unit(&state
, desc
[7]);
1727 static void snd_usb_mixer_notify_id(struct usb_mixer_interface
*mixer
,
1730 struct usb_mixer_elem_info
*info
;
1732 for (info
= mixer
->id_elems
[unitid
]; info
; info
= info
->next_id_elem
)
1733 snd_ctl_notify(mixer
->chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
1737 static void snd_usb_mixer_memory_change(struct usb_mixer_interface
*mixer
,
1742 /* unit ids specific to Extigy/Audigy 2 NX: */
1744 case 0: /* remote control */
1745 mixer
->rc_urb
->dev
= mixer
->chip
->dev
;
1746 usb_submit_urb(mixer
->rc_urb
, GFP_ATOMIC
);
1748 case 4: /* digital in jack */
1749 case 7: /* line in jacks */
1750 case 19: /* speaker out jacks */
1751 case 20: /* headphones out jack */
1753 /* live24ext: 4 = line-in jack */
1754 case 3: /* hp-out jack (may actuate Mute) */
1755 if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
1756 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048))
1757 snd_usb_mixer_notify_id(mixer
, mixer
->rc_cfg
->mute_mixer_id
);
1760 snd_printd(KERN_DEBUG
"memory change in unknown unit %d\n", unitid
);
1765 static void snd_usb_mixer_status_complete(struct urb
*urb
)
1767 struct usb_mixer_interface
*mixer
= urb
->context
;
1769 if (urb
->status
== 0) {
1770 u8
*buf
= urb
->transfer_buffer
;
1773 for (i
= urb
->actual_length
; i
>= 2; buf
+= 2, i
-= 2) {
1774 snd_printd(KERN_DEBUG
"status interrupt: %02x %02x\n",
1776 /* ignore any notifications not from the control interface */
1777 if ((buf
[0] & 0x0f) != 0)
1779 if (!(buf
[0] & 0x40))
1780 snd_usb_mixer_notify_id(mixer
, buf
[1]);
1782 snd_usb_mixer_memory_change(mixer
, buf
[1]);
1785 if (urb
->status
!= -ENOENT
&& urb
->status
!= -ECONNRESET
) {
1786 urb
->dev
= mixer
->chip
->dev
;
1787 usb_submit_urb(urb
, GFP_ATOMIC
);
1791 /* create the handler for the optional status interrupt endpoint */
1792 static int snd_usb_mixer_status_create(struct usb_mixer_interface
*mixer
)
1794 struct usb_host_interface
*hostif
;
1795 struct usb_endpoint_descriptor
*ep
;
1796 void *transfer_buffer
;
1800 hostif
= &usb_ifnum_to_if(mixer
->chip
->dev
, mixer
->ctrlif
)->altsetting
[0];
1801 /* we need one interrupt input endpoint */
1802 if (get_iface_desc(hostif
)->bNumEndpoints
< 1)
1804 ep
= get_endpoint(hostif
, 0);
1805 if (!usb_endpoint_dir_in(ep
) || !usb_endpoint_xfer_int(ep
))
1808 epnum
= usb_endpoint_num(ep
);
1809 buffer_length
= le16_to_cpu(ep
->wMaxPacketSize
);
1810 transfer_buffer
= kmalloc(buffer_length
, GFP_KERNEL
);
1811 if (!transfer_buffer
)
1813 mixer
->urb
= usb_alloc_urb(0, GFP_KERNEL
);
1815 kfree(transfer_buffer
);
1818 usb_fill_int_urb(mixer
->urb
, mixer
->chip
->dev
,
1819 usb_rcvintpipe(mixer
->chip
->dev
, epnum
),
1820 transfer_buffer
, buffer_length
,
1821 snd_usb_mixer_status_complete
, mixer
, ep
->bInterval
);
1822 usb_submit_urb(mixer
->urb
, GFP_KERNEL
);
1826 static void snd_usb_soundblaster_remote_complete(struct urb
*urb
)
1828 struct usb_mixer_interface
*mixer
= urb
->context
;
1829 const struct rc_config
*rc
= mixer
->rc_cfg
;
1832 if (urb
->status
< 0 || urb
->actual_length
< rc
->min_packet_length
)
1835 code
= mixer
->rc_buffer
[rc
->offset
];
1836 if (rc
->length
== 2)
1837 code
|= mixer
->rc_buffer
[rc
->offset
+ 1] << 8;
1839 /* the Mute button actually changes the mixer control */
1840 if (code
== rc
->mute_code
)
1841 snd_usb_mixer_notify_id(mixer
, rc
->mute_mixer_id
);
1842 mixer
->rc_code
= code
;
1844 wake_up(&mixer
->rc_waitq
);
1847 static long snd_usb_sbrc_hwdep_read(struct snd_hwdep
*hw
, char __user
*buf
,
1848 long count
, loff_t
*offset
)
1850 struct usb_mixer_interface
*mixer
= hw
->private_data
;
1854 if (count
!= 1 && count
!= 4)
1856 err
= wait_event_interruptible(mixer
->rc_waitq
,
1857 (rc_code
= xchg(&mixer
->rc_code
, 0)) != 0);
1860 err
= put_user(rc_code
, buf
);
1862 err
= put_user(rc_code
, (u32 __user
*)buf
);
1864 return err
< 0 ? err
: count
;
1867 static unsigned int snd_usb_sbrc_hwdep_poll(struct snd_hwdep
*hw
, struct file
*file
,
1870 struct usb_mixer_interface
*mixer
= hw
->private_data
;
1872 poll_wait(file
, &mixer
->rc_waitq
, wait
);
1873 return mixer
->rc_code
? POLLIN
| POLLRDNORM
: 0;
1876 static int snd_usb_soundblaster_remote_init(struct usb_mixer_interface
*mixer
)
1878 struct snd_hwdep
*hwdep
;
1881 for (i
= 0; i
< ARRAY_SIZE(rc_configs
); ++i
)
1882 if (rc_configs
[i
].usb_id
== mixer
->chip
->usb_id
)
1884 if (i
>= ARRAY_SIZE(rc_configs
))
1886 mixer
->rc_cfg
= &rc_configs
[i
];
1888 len
= mixer
->rc_cfg
->packet_length
;
1890 init_waitqueue_head(&mixer
->rc_waitq
);
1891 err
= snd_hwdep_new(mixer
->chip
->card
, "SB remote control", 0, &hwdep
);
1894 snprintf(hwdep
->name
, sizeof(hwdep
->name
),
1895 "%s remote control", mixer
->chip
->card
->shortname
);
1896 hwdep
->iface
= SNDRV_HWDEP_IFACE_SB_RC
;
1897 hwdep
->private_data
= mixer
;
1898 hwdep
->ops
.read
= snd_usb_sbrc_hwdep_read
;
1899 hwdep
->ops
.poll
= snd_usb_sbrc_hwdep_poll
;
1900 hwdep
->exclusive
= 1;
1902 mixer
->rc_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1905 mixer
->rc_setup_packet
= kmalloc(sizeof(*mixer
->rc_setup_packet
), GFP_KERNEL
);
1906 if (!mixer
->rc_setup_packet
) {
1907 usb_free_urb(mixer
->rc_urb
);
1908 mixer
->rc_urb
= NULL
;
1911 mixer
->rc_setup_packet
->bRequestType
=
1912 USB_DIR_IN
| USB_TYPE_CLASS
| USB_RECIP_INTERFACE
;
1913 mixer
->rc_setup_packet
->bRequest
= GET_MEM
;
1914 mixer
->rc_setup_packet
->wValue
= cpu_to_le16(0);
1915 mixer
->rc_setup_packet
->wIndex
= cpu_to_le16(0);
1916 mixer
->rc_setup_packet
->wLength
= cpu_to_le16(len
);
1917 usb_fill_control_urb(mixer
->rc_urb
, mixer
->chip
->dev
,
1918 usb_rcvctrlpipe(mixer
->chip
->dev
, 0),
1919 (u8
*)mixer
->rc_setup_packet
, mixer
->rc_buffer
, len
,
1920 snd_usb_soundblaster_remote_complete
, mixer
);
1924 #define snd_audigy2nx_led_info snd_ctl_boolean_mono_info
1926 static int snd_audigy2nx_led_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1928 struct usb_mixer_interface
*mixer
= snd_kcontrol_chip(kcontrol
);
1929 int index
= kcontrol
->private_value
;
1931 ucontrol
->value
.integer
.value
[0] = mixer
->audigy2nx_leds
[index
];
1935 static int snd_audigy2nx_led_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1937 struct usb_mixer_interface
*mixer
= snd_kcontrol_chip(kcontrol
);
1938 int index
= kcontrol
->private_value
;
1939 int value
= ucontrol
->value
.integer
.value
[0];
1944 changed
= value
!= mixer
->audigy2nx_leds
[index
];
1945 err
= snd_usb_ctl_msg(mixer
->chip
->dev
,
1946 usb_sndctrlpipe(mixer
->chip
->dev
, 0), 0x24,
1947 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
1948 value
, index
+ 2, NULL
, 0, 100);
1951 mixer
->audigy2nx_leds
[index
] = value
;
1955 static struct snd_kcontrol_new snd_audigy2nx_controls
[] = {
1957 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1958 .name
= "CMSS LED Switch",
1959 .info
= snd_audigy2nx_led_info
,
1960 .get
= snd_audigy2nx_led_get
,
1961 .put
= snd_audigy2nx_led_put
,
1965 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1966 .name
= "Power LED Switch",
1967 .info
= snd_audigy2nx_led_info
,
1968 .get
= snd_audigy2nx_led_get
,
1969 .put
= snd_audigy2nx_led_put
,
1973 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1974 .name
= "Dolby Digital LED Switch",
1975 .info
= snd_audigy2nx_led_info
,
1976 .get
= snd_audigy2nx_led_get
,
1977 .put
= snd_audigy2nx_led_put
,
1982 static int snd_audigy2nx_controls_create(struct usb_mixer_interface
*mixer
)
1986 for (i
= 0; i
< ARRAY_SIZE(snd_audigy2nx_controls
); ++i
) {
1987 if (i
> 1 && /* Live24ext has 2 LEDs only */
1988 (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
1989 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048)))
1991 err
= snd_ctl_add(mixer
->chip
->card
,
1992 snd_ctl_new1(&snd_audigy2nx_controls
[i
], mixer
));
1996 mixer
->audigy2nx_leds
[1] = 1; /* Power LED is on by default */
2000 static void snd_audigy2nx_proc_read(struct snd_info_entry
*entry
,
2001 struct snd_info_buffer
*buffer
)
2003 static const struct sb_jack
{
2006 } jacks_audigy2nx
[] = {
2012 }, jacks_live24ext
[] = {
2013 {4, "line in"}, /* &1=Line, &2=Mic*/
2014 {3, "hph out"}, /* headphones */
2015 {0, "RC "}, /* last command, 6 bytes see rc_config above */
2018 const struct sb_jack
*jacks
;
2019 struct usb_mixer_interface
*mixer
= entry
->private_data
;
2023 snd_iprintf(buffer
, "%s jacks\n\n", mixer
->chip
->card
->shortname
);
2024 if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3020))
2025 jacks
= jacks_audigy2nx
;
2026 else if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
2027 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048))
2028 jacks
= jacks_live24ext
;
2032 for (i
= 0; jacks
[i
].name
; ++i
) {
2033 snd_iprintf(buffer
, "%s: ", jacks
[i
].name
);
2034 err
= snd_usb_ctl_msg(mixer
->chip
->dev
,
2035 usb_rcvctrlpipe(mixer
->chip
->dev
, 0),
2036 GET_MEM
, USB_DIR_IN
| USB_TYPE_CLASS
|
2037 USB_RECIP_INTERFACE
, 0,
2038 jacks
[i
].unitid
<< 8, buf
, 3, 100);
2039 if (err
== 3 && (buf
[0] == 3 || buf
[0] == 6))
2040 snd_iprintf(buffer
, "%02x %02x\n", buf
[1], buf
[2]);
2042 snd_iprintf(buffer
, "?\n");
2046 static int snd_xonar_u1_switch_get(struct snd_kcontrol
*kcontrol
,
2047 struct snd_ctl_elem_value
*ucontrol
)
2049 struct usb_mixer_interface
*mixer
= snd_kcontrol_chip(kcontrol
);
2051 ucontrol
->value
.integer
.value
[0] = !!(mixer
->xonar_u1_status
& 0x02);
2055 static int snd_xonar_u1_switch_put(struct snd_kcontrol
*kcontrol
,
2056 struct snd_ctl_elem_value
*ucontrol
)
2058 struct usb_mixer_interface
*mixer
= snd_kcontrol_chip(kcontrol
);
2059 u8 old_status
, new_status
;
2062 old_status
= mixer
->xonar_u1_status
;
2063 if (ucontrol
->value
.integer
.value
[0])
2064 new_status
= old_status
| 0x02;
2066 new_status
= old_status
& ~0x02;
2067 changed
= new_status
!= old_status
;
2068 err
= snd_usb_ctl_msg(mixer
->chip
->dev
,
2069 usb_sndctrlpipe(mixer
->chip
->dev
, 0), 0x08,
2070 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
2071 50, 0, &new_status
, 1, 100);
2074 mixer
->xonar_u1_status
= new_status
;
2078 static struct snd_kcontrol_new snd_xonar_u1_output_switch
= {
2079 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2080 .name
= "Digital Playback Switch",
2081 .info
= snd_ctl_boolean_mono_info
,
2082 .get
= snd_xonar_u1_switch_get
,
2083 .put
= snd_xonar_u1_switch_put
,
2086 static int snd_xonar_u1_controls_create(struct usb_mixer_interface
*mixer
)
2090 err
= snd_ctl_add(mixer
->chip
->card
,
2091 snd_ctl_new1(&snd_xonar_u1_output_switch
, mixer
));
2094 mixer
->xonar_u1_status
= 0x05;
2098 int snd_usb_create_mixer(struct snd_usb_audio
*chip
, int ctrlif
,
2101 static struct snd_device_ops dev_ops
= {
2102 .dev_free
= snd_usb_mixer_dev_free
2104 struct usb_mixer_interface
*mixer
;
2107 strcpy(chip
->card
->mixername
, "USB Mixer");
2109 mixer
= kzalloc(sizeof(*mixer
), GFP_KERNEL
);
2113 mixer
->ctrlif
= ctrlif
;
2114 mixer
->ignore_ctl_error
= ignore_error
;
2115 mixer
->id_elems
= kcalloc(256, sizeof(*mixer
->id_elems
), GFP_KERNEL
);
2116 if (!mixer
->id_elems
) {
2121 if ((err
= snd_usb_mixer_controls(mixer
)) < 0 ||
2122 (err
= snd_usb_mixer_status_create(mixer
)) < 0)
2125 if ((err
= snd_usb_soundblaster_remote_init(mixer
)) < 0)
2128 if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3020) ||
2129 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
2130 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048)) {
2131 struct snd_info_entry
*entry
;
2133 if ((err
= snd_audigy2nx_controls_create(mixer
)) < 0)
2135 if (!snd_card_proc_new(chip
->card
, "audigy2nx", &entry
))
2136 snd_info_set_text_ops(entry
, mixer
,
2137 snd_audigy2nx_proc_read
);
2140 if (mixer
->chip
->usb_id
== USB_ID(0x0b05, 0x1739) ||
2141 mixer
->chip
->usb_id
== USB_ID(0x0b05, 0x1743)) {
2142 err
= snd_xonar_u1_controls_create(mixer
);
2147 err
= snd_device_new(chip
->card
, SNDRV_DEV_LOWLEVEL
, mixer
, &dev_ops
);
2150 list_add(&mixer
->list
, &chip
->mixer_list
);
2154 snd_usb_mixer_free(mixer
);
2158 void snd_usb_mixer_disconnect(struct list_head
*p
)
2160 struct usb_mixer_interface
*mixer
;
2162 mixer
= list_entry(p
, struct usb_mixer_interface
, list
);
2163 usb_kill_urb(mixer
->urb
);
2164 usb_kill_urb(mixer
->rc_urb
);