1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * (Tentative) USB Audio Driver for ALSA
7 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
9 * Many codes borrowed from audio.c by
10 * Alan Cox (alan@lxorguk.ukuu.org.uk)
11 * Thomas Sailer (sailer@ife.ee.ethz.ch)
15 * TODOs, for both the mixer and the streaming interfaces:
17 * - support for UAC2 effect units
18 * - support for graphical equalizers
19 * - RANGE and MEM set commands (UAC2)
20 * - RANGE and MEM interrupt dispatchers (UAC2)
21 * - audio channel clustering (UAC2)
22 * - audio sample rate converter units (UAC2)
23 * - proper handling of clock multipliers (UAC2)
24 * - dispatch clock change notifications (UAC2)
25 * - stop PCM streams which use a clock that became invalid
26 * - stop PCM streams which use a clock selector that has changed
27 * - parse available sample rates again when clock sources changed
30 #include <linux/bitops.h>
31 #include <linux/init.h>
32 #include <linux/list.h>
33 #include <linux/log2.h>
34 #include <linux/slab.h>
35 #include <linux/string.h>
36 #include <linux/usb.h>
37 #include <linux/usb/audio.h>
38 #include <linux/usb/audio-v2.h>
39 #include <linux/usb/audio-v3.h>
41 #include <sound/core.h>
42 #include <sound/control.h>
43 #include <sound/hwdep.h>
44 #include <sound/info.h>
45 #include <sound/tlv.h>
50 #include "mixer_quirks.h"
53 #define MAX_ID_ELEMS 256
55 struct usb_audio_term
{
59 unsigned int chconfig
;
63 struct usbmix_name_map
;
66 struct snd_usb_audio
*chip
;
67 struct usb_mixer_interface
*mixer
;
68 unsigned char *buffer
;
70 DECLARE_BITMAP(unitbitmap
, MAX_ID_ELEMS
);
71 DECLARE_BITMAP(termbitmap
, MAX_ID_ELEMS
);
72 struct usb_audio_term oterm
;
73 const struct usbmix_name_map
*map
;
74 const struct usbmix_selector_map
*selector_map
;
77 /*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
79 USB_XU_CLOCK_RATE
= 0xe301,
80 USB_XU_CLOCK_SOURCE
= 0xe302,
81 USB_XU_DIGITAL_IO_STATUS
= 0xe303,
82 USB_XU_DEVICE_OPTIONS
= 0xe304,
83 USB_XU_DIRECT_MONITORING
= 0xe305,
84 USB_XU_METERING
= 0xe306
87 USB_XU_CLOCK_SOURCE_SELECTOR
= 0x02, /* clock source*/
88 USB_XU_CLOCK_RATE_SELECTOR
= 0x03, /* clock rate */
89 USB_XU_DIGITAL_FORMAT_SELECTOR
= 0x01, /* the spdif format */
90 USB_XU_SOFT_LIMIT_SELECTOR
= 0x03 /* soft limiter */
94 * manual mapping of mixer names
95 * if the mixer topology is too complicated and the parsed names are
96 * ambiguous, add the entries in usbmixer_maps.c.
98 #include "mixer_maps.c"
100 static const struct usbmix_name_map
*
101 find_map(const struct usbmix_name_map
*p
, int unitid
, int control
)
107 if (p
->id
== unitid
&&
108 (!control
|| !p
->control
|| control
== p
->control
))
114 /* get the mapped name if the unit matches */
116 check_mapped_name(const struct usbmix_name_map
*p
, char *buf
, int buflen
)
122 return strlcpy(buf
, p
->name
, buflen
);
125 /* ignore the error value if ignore_ctl_error flag is set */
126 #define filter_error(cval, err) \
127 ((cval)->head.mixer->ignore_ctl_error ? 0 : (err))
129 /* check whether the control should be ignored */
131 check_ignored_ctl(const struct usbmix_name_map
*p
)
133 if (!p
|| p
->name
|| p
->dB
)
139 static inline void check_mapped_dB(const struct usbmix_name_map
*p
,
140 struct usb_mixer_elem_info
*cval
)
143 cval
->dBmin
= p
->dB
->min
;
144 cval
->dBmax
= p
->dB
->max
;
145 cval
->initialized
= 1;
149 /* get the mapped selector source name */
150 static int check_mapped_selector_name(struct mixer_build
*state
, int unitid
,
151 int index
, char *buf
, int buflen
)
153 const struct usbmix_selector_map
*p
;
155 if (!state
->selector_map
)
157 for (p
= state
->selector_map
; p
->id
; p
++) {
158 if (p
->id
== unitid
&& index
< p
->count
)
159 return strlcpy(buf
, p
->names
[index
], buflen
);
165 * find an audio control unit with the given unit id
167 static void *find_audio_control_unit(struct mixer_build
*state
,
170 /* we just parse the header */
171 struct uac_feature_unit_descriptor
*hdr
= NULL
;
173 while ((hdr
= snd_usb_find_desc(state
->buffer
, state
->buflen
, hdr
,
174 USB_DT_CS_INTERFACE
)) != NULL
) {
175 if (hdr
->bLength
>= 4 &&
176 hdr
->bDescriptorSubtype
>= UAC_INPUT_TERMINAL
&&
177 hdr
->bDescriptorSubtype
<= UAC3_SAMPLE_RATE_CONVERTER
&&
178 hdr
->bUnitID
== unit
)
186 * copy a string with the given id
188 static int snd_usb_copy_string_desc(struct snd_usb_audio
*chip
,
189 int index
, char *buf
, int maxlen
)
191 int len
= usb_string(chip
->dev
, index
, buf
, maxlen
- 1);
201 * convert from the byte/word on usb descriptor to the zero-based integer
203 static int convert_signed_value(struct usb_mixer_elem_info
*cval
, int val
)
205 switch (cval
->val_type
) {
206 case USB_MIXER_BOOLEAN
:
208 case USB_MIXER_INV_BOOLEAN
:
231 * convert from the zero-based int to the byte/word for usb descriptor
233 static int convert_bytes_value(struct usb_mixer_elem_info
*cval
, int val
)
235 switch (cval
->val_type
) {
236 case USB_MIXER_BOOLEAN
:
238 case USB_MIXER_INV_BOOLEAN
:
247 return 0; /* not reached */
250 static int get_relative_value(struct usb_mixer_elem_info
*cval
, int val
)
256 else if (val
>= cval
->max
)
257 return (cval
->max
- cval
->min
+ cval
->res
- 1) / cval
->res
;
259 return (val
- cval
->min
) / cval
->res
;
262 static int get_abs_value(struct usb_mixer_elem_info
*cval
, int val
)
275 static int uac2_ctl_value_size(int val_type
)
287 return 0; /* unreachable */
292 * retrieve a mixer value
295 static inline int mixer_ctrl_intf(struct usb_mixer_interface
*mixer
)
297 return get_iface_desc(mixer
->hostif
)->bInterfaceNumber
;
300 static int get_ctl_value_v1(struct usb_mixer_elem_info
*cval
, int request
,
301 int validx
, int *value_ret
)
303 struct snd_usb_audio
*chip
= cval
->head
.mixer
->chip
;
304 unsigned char buf
[2];
305 int val_len
= cval
->val_type
>= USB_MIXER_S16
? 2 : 1;
309 err
= snd_usb_lock_shutdown(chip
);
313 while (timeout
-- > 0) {
314 idx
= mixer_ctrl_intf(cval
->head
.mixer
) | (cval
->head
.id
<< 8);
315 err
= snd_usb_ctl_msg(chip
->dev
, usb_rcvctrlpipe(chip
->dev
, 0), request
,
316 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
317 validx
, idx
, buf
, val_len
);
318 if (err
>= val_len
) {
319 *value_ret
= convert_signed_value(cval
, snd_usb_combine_bytes(buf
, val_len
));
322 } else if (err
== -ETIMEDOUT
) {
327 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
328 request
, validx
, idx
, cval
->val_type
);
332 snd_usb_unlock_shutdown(chip
);
336 static int get_ctl_value_v2(struct usb_mixer_elem_info
*cval
, int request
,
337 int validx
, int *value_ret
)
339 struct snd_usb_audio
*chip
= cval
->head
.mixer
->chip
;
340 /* enough space for one range */
341 unsigned char buf
[sizeof(__u16
) + 3 * sizeof(__u32
)];
343 int idx
= 0, ret
, val_size
, size
;
346 val_size
= uac2_ctl_value_size(cval
->val_type
);
348 if (request
== UAC_GET_CUR
) {
349 bRequest
= UAC2_CS_CUR
;
352 bRequest
= UAC2_CS_RANGE
;
353 size
= sizeof(__u16
) + 3 * val_size
;
356 memset(buf
, 0, sizeof(buf
));
358 ret
= snd_usb_lock_shutdown(chip
) ? -EIO
: 0;
362 idx
= mixer_ctrl_intf(cval
->head
.mixer
) | (cval
->head
.id
<< 8);
363 ret
= snd_usb_ctl_msg(chip
->dev
, usb_rcvctrlpipe(chip
->dev
, 0), bRequest
,
364 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
365 validx
, idx
, buf
, size
);
366 snd_usb_unlock_shutdown(chip
);
371 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
372 request
, validx
, idx
, cval
->val_type
);
376 /* FIXME: how should we handle multiple triplets here? */
383 val
= buf
+ sizeof(__u16
);
386 val
= buf
+ sizeof(__u16
) + val_size
;
389 val
= buf
+ sizeof(__u16
) + val_size
* 2;
395 *value_ret
= convert_signed_value(cval
,
396 snd_usb_combine_bytes(val
, val_size
));
401 static int get_ctl_value(struct usb_mixer_elem_info
*cval
, int request
,
402 int validx
, int *value_ret
)
404 validx
+= cval
->idx_off
;
406 return (cval
->head
.mixer
->protocol
== UAC_VERSION_1
) ?
407 get_ctl_value_v1(cval
, request
, validx
, value_ret
) :
408 get_ctl_value_v2(cval
, request
, validx
, value_ret
);
411 static int get_cur_ctl_value(struct usb_mixer_elem_info
*cval
,
412 int validx
, int *value
)
414 return get_ctl_value(cval
, UAC_GET_CUR
, validx
, value
);
417 /* channel = 0: master, 1 = first channel */
418 static inline int get_cur_mix_raw(struct usb_mixer_elem_info
*cval
,
419 int channel
, int *value
)
421 return get_ctl_value(cval
, UAC_GET_CUR
,
422 (cval
->control
<< 8) | channel
,
426 int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info
*cval
,
427 int channel
, int index
, int *value
)
431 if (cval
->cached
& (1 << channel
)) {
432 *value
= cval
->cache_val
[index
];
435 err
= get_cur_mix_raw(cval
, channel
, value
);
437 if (!cval
->head
.mixer
->ignore_ctl_error
)
438 usb_audio_dbg(cval
->head
.mixer
->chip
,
439 "cannot get current value for control %d ch %d: err = %d\n",
440 cval
->control
, channel
, err
);
443 cval
->cached
|= 1 << channel
;
444 cval
->cache_val
[index
] = *value
;
452 int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info
*cval
,
453 int request
, int validx
, int value_set
)
455 struct snd_usb_audio
*chip
= cval
->head
.mixer
->chip
;
456 unsigned char buf
[4];
457 int idx
= 0, val_len
, err
, timeout
= 10;
459 validx
+= cval
->idx_off
;
462 if (cval
->head
.mixer
->protocol
== UAC_VERSION_1
) {
463 val_len
= cval
->val_type
>= USB_MIXER_S16
? 2 : 1;
464 } else { /* UAC_VERSION_2/3 */
465 val_len
= uac2_ctl_value_size(cval
->val_type
);
468 if (request
!= UAC_SET_CUR
) {
469 usb_audio_dbg(chip
, "RANGE setting not yet supported\n");
473 request
= UAC2_CS_CUR
;
476 value_set
= convert_bytes_value(cval
, value_set
);
477 buf
[0] = value_set
& 0xff;
478 buf
[1] = (value_set
>> 8) & 0xff;
479 buf
[2] = (value_set
>> 16) & 0xff;
480 buf
[3] = (value_set
>> 24) & 0xff;
482 err
= snd_usb_lock_shutdown(chip
);
486 while (timeout
-- > 0) {
487 idx
= mixer_ctrl_intf(cval
->head
.mixer
) | (cval
->head
.id
<< 8);
488 err
= snd_usb_ctl_msg(chip
->dev
,
489 usb_sndctrlpipe(chip
->dev
, 0), request
,
490 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_OUT
,
491 validx
, idx
, buf
, val_len
);
495 } else if (err
== -ETIMEDOUT
) {
499 usb_audio_dbg(chip
, "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
500 request
, validx
, idx
, cval
->val_type
, buf
[0], buf
[1]);
504 snd_usb_unlock_shutdown(chip
);
508 static int set_cur_ctl_value(struct usb_mixer_elem_info
*cval
,
509 int validx
, int value
)
511 return snd_usb_mixer_set_ctl_value(cval
, UAC_SET_CUR
, validx
, value
);
514 int snd_usb_set_cur_mix_value(struct usb_mixer_elem_info
*cval
, int channel
,
515 int index
, int value
)
518 unsigned int read_only
= (channel
== 0) ?
519 cval
->master_readonly
:
520 cval
->ch_readonly
& (1 << (channel
- 1));
523 usb_audio_dbg(cval
->head
.mixer
->chip
,
524 "%s(): channel %d of control %d is read_only\n",
525 __func__
, channel
, cval
->control
);
529 err
= snd_usb_mixer_set_ctl_value(cval
,
530 UAC_SET_CUR
, (cval
->control
<< 8) | channel
,
534 cval
->cached
|= 1 << channel
;
535 cval
->cache_val
[index
] = value
;
540 * TLV callback for mixer volume controls
542 int snd_usb_mixer_vol_tlv(struct snd_kcontrol
*kcontrol
, int op_flag
,
543 unsigned int size
, unsigned int __user
*_tlv
)
545 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
546 DECLARE_TLV_DB_MINMAX(scale
, 0, 0);
548 if (size
< sizeof(scale
))
551 scale
[0] = SNDRV_CTL_TLVT_DB_MINMAX_MUTE
;
552 scale
[2] = cval
->dBmin
;
553 scale
[3] = cval
->dBmax
;
554 if (copy_to_user(_tlv
, scale
, sizeof(scale
)))
560 * parser routines begin here...
563 static int parse_audio_unit(struct mixer_build
*state
, int unitid
);
567 * check if the input/output channel routing is enabled on the given bitmap.
568 * used for mixer unit parser
570 static int check_matrix_bitmap(unsigned char *bmap
,
571 int ich
, int och
, int num_outs
)
573 int idx
= ich
* num_outs
+ och
;
574 return bmap
[idx
>> 3] & (0x80 >> (idx
& 7));
578 * add an alsa control element
579 * search and increment the index until an empty slot is found.
581 * if failed, give up and free the control instance.
584 int snd_usb_mixer_add_control(struct usb_mixer_elem_list
*list
,
585 struct snd_kcontrol
*kctl
)
587 struct usb_mixer_interface
*mixer
= list
->mixer
;
590 while (snd_ctl_find_id(mixer
->chip
->card
, &kctl
->id
))
592 err
= snd_ctl_add(mixer
->chip
->card
, kctl
);
594 usb_audio_dbg(mixer
->chip
, "cannot add control (err = %d)\n",
599 list
->next_id_elem
= mixer
->id_elems
[list
->id
];
600 mixer
->id_elems
[list
->id
] = list
;
605 * get a terminal name string
608 static struct iterm_name_combo
{
612 { 0x0300, "Output" },
613 { 0x0301, "Speaker" },
614 { 0x0302, "Headphone" },
615 { 0x0303, "HMD Audio" },
616 { 0x0304, "Desktop Speaker" },
617 { 0x0305, "Room Speaker" },
618 { 0x0306, "Com Speaker" },
620 { 0x0600, "External In" },
621 { 0x0601, "Analog In" },
622 { 0x0602, "Digital In" },
624 { 0x0604, "Legacy In" },
625 { 0x0605, "IEC958 In" },
626 { 0x0606, "1394 DA Stream" },
627 { 0x0607, "1394 DV Stream" },
628 { 0x0700, "Embedded" },
629 { 0x0701, "Noise Source" },
630 { 0x0702, "Equalization Noise" },
634 { 0x0706, "MiniDisk" },
635 { 0x0707, "Analog Tape" },
636 { 0x0708, "Phonograph" },
637 { 0x0709, "VCR Audio" },
638 { 0x070a, "Video Disk Audio" },
639 { 0x070b, "DVD Audio" },
640 { 0x070c, "TV Tuner Audio" },
641 { 0x070d, "Satellite Rec Audio" },
642 { 0x070e, "Cable Tuner Audio" },
643 { 0x070f, "DSS Audio" },
644 { 0x0710, "Radio Receiver" },
645 { 0x0711, "Radio Transmitter" },
646 { 0x0712, "Multi-Track Recorder" },
647 { 0x0713, "Synthesizer" },
651 static int get_term_name(struct snd_usb_audio
*chip
, struct usb_audio_term
*iterm
,
652 unsigned char *name
, int maxlen
, int term_only
)
654 struct iterm_name_combo
*names
;
658 len
= snd_usb_copy_string_desc(chip
, iterm
->name
,
664 /* virtual type - not a real terminal */
665 if (iterm
->type
>> 16) {
668 switch (iterm
->type
>> 16) {
669 case UAC3_SELECTOR_UNIT
:
670 strcpy(name
, "Selector");
672 case UAC3_PROCESSING_UNIT
:
673 strcpy(name
, "Process Unit");
675 case UAC3_EXTENSION_UNIT
:
676 strcpy(name
, "Ext Unit");
678 case UAC3_MIXER_UNIT
:
679 strcpy(name
, "Mixer");
682 return sprintf(name
, "Unit %d", iterm
->id
);
686 switch (iterm
->type
& 0xff00) {
694 strcpy(name
, "Headset");
697 strcpy(name
, "Phone");
701 for (names
= iterm_names
; names
->type
; names
++) {
702 if (names
->type
== iterm
->type
) {
703 strcpy(name
, names
->name
);
704 return strlen(names
->name
);
712 * Get logical cluster information for UAC3 devices.
714 static int get_cluster_channels_v3(struct mixer_build
*state
, unsigned int cluster_id
)
716 struct uac3_cluster_header_descriptor c_header
;
719 err
= snd_usb_ctl_msg(state
->chip
->dev
,
720 usb_rcvctrlpipe(state
->chip
->dev
, 0),
721 UAC3_CS_REQ_HIGH_CAPABILITY_DESCRIPTOR
,
722 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
724 snd_usb_ctrl_intf(state
->chip
),
725 &c_header
, sizeof(c_header
));
728 if (err
!= sizeof(c_header
)) {
733 return c_header
.bNrChannels
;
736 usb_audio_err(state
->chip
, "cannot request logical cluster ID: %d (err: %d)\n", cluster_id
, err
);
741 * Get number of channels for a Mixer Unit.
743 static int uac_mixer_unit_get_channels(struct mixer_build
*state
,
744 struct uac_mixer_unit_descriptor
*desc
)
748 switch (state
->mixer
->protocol
) {
752 if (desc
->bLength
< sizeof(*desc
) + desc
->bNrInPins
+ 1)
753 return 0; /* no bmControls -> skip */
754 mu_channels
= uac_mixer_unit_bNrChannels(desc
);
757 mu_channels
= get_cluster_channels_v3(state
,
758 uac3_mixer_unit_wClusterDescrID(desc
));
766 * Parse Input Terminal Unit
768 static int __check_input_term(struct mixer_build
*state
, int id
,
769 struct usb_audio_term
*term
);
771 static int parse_term_uac1_iterm_unit(struct mixer_build
*state
,
772 struct usb_audio_term
*term
,
775 struct uac_input_terminal_descriptor
*d
= p1
;
777 term
->type
= le16_to_cpu(d
->wTerminalType
);
778 term
->channels
= d
->bNrChannels
;
779 term
->chconfig
= le16_to_cpu(d
->wChannelConfig
);
780 term
->name
= d
->iTerminal
;
784 static int parse_term_uac2_iterm_unit(struct mixer_build
*state
,
785 struct usb_audio_term
*term
,
788 struct uac2_input_terminal_descriptor
*d
= p1
;
791 /* call recursively to verify the referenced clock entity */
792 err
= __check_input_term(state
, d
->bCSourceID
, term
);
796 /* save input term properties after recursion,
797 * to ensure they are not overriden by the recursion calls
800 term
->type
= le16_to_cpu(d
->wTerminalType
);
801 term
->channels
= d
->bNrChannels
;
802 term
->chconfig
= le32_to_cpu(d
->bmChannelConfig
);
803 term
->name
= d
->iTerminal
;
807 static int parse_term_uac3_iterm_unit(struct mixer_build
*state
,
808 struct usb_audio_term
*term
,
811 struct uac3_input_terminal_descriptor
*d
= p1
;
814 /* call recursively to verify the referenced clock entity */
815 err
= __check_input_term(state
, d
->bCSourceID
, term
);
819 /* save input term properties after recursion,
820 * to ensure they are not overriden by the recursion calls
823 term
->type
= le16_to_cpu(d
->wTerminalType
);
825 err
= get_cluster_channels_v3(state
, le16_to_cpu(d
->wClusterDescrID
));
828 term
->channels
= err
;
830 /* REVISIT: UAC3 IT doesn't have channels cfg */
833 term
->name
= le16_to_cpu(d
->wTerminalDescrStr
);
837 static int parse_term_mixer_unit(struct mixer_build
*state
,
838 struct usb_audio_term
*term
,
841 struct uac_mixer_unit_descriptor
*d
= p1
;
842 int protocol
= state
->mixer
->protocol
;
845 err
= uac_mixer_unit_get_channels(state
, d
);
849 term
->type
= UAC3_MIXER_UNIT
<< 16; /* virtual type */
850 term
->channels
= err
;
851 if (protocol
!= UAC_VERSION_3
) {
852 term
->chconfig
= uac_mixer_unit_wChannelConfig(d
, protocol
);
853 term
->name
= uac_mixer_unit_iMixer(d
);
858 static int parse_term_selector_unit(struct mixer_build
*state
,
859 struct usb_audio_term
*term
,
862 struct uac_selector_unit_descriptor
*d
= p1
;
865 /* call recursively to retrieve the channel info */
866 err
= __check_input_term(state
, d
->baSourceID
[0], term
);
869 term
->type
= UAC3_SELECTOR_UNIT
<< 16; /* virtual type */
871 if (state
->mixer
->protocol
!= UAC_VERSION_3
)
872 term
->name
= uac_selector_unit_iSelector(d
);
876 static int parse_term_proc_unit(struct mixer_build
*state
,
877 struct usb_audio_term
*term
,
878 void *p1
, int id
, int vtype
)
880 struct uac_processing_unit_descriptor
*d
= p1
;
881 int protocol
= state
->mixer
->protocol
;
885 /* call recursively to retrieve the channel info */
886 err
= __check_input_term(state
, d
->baSourceID
[0], term
);
891 term
->type
= vtype
<< 16; /* virtual type */
894 if (protocol
== UAC_VERSION_3
)
897 if (!term
->channels
) {
898 term
->channels
= uac_processing_unit_bNrChannels(d
);
899 term
->chconfig
= uac_processing_unit_wChannelConfig(d
, protocol
);
901 term
->name
= uac_processing_unit_iProcessing(d
, protocol
);
905 static int parse_term_effect_unit(struct mixer_build
*state
,
906 struct usb_audio_term
*term
,
909 struct uac2_effect_unit_descriptor
*d
= p1
;
912 err
= __check_input_term(state
, d
->bSourceID
, term
);
915 term
->type
= UAC3_EFFECT_UNIT
<< 16; /* virtual type */
920 static int parse_term_uac2_clock_source(struct mixer_build
*state
,
921 struct usb_audio_term
*term
,
924 struct uac_clock_source_descriptor
*d
= p1
;
926 term
->type
= UAC3_CLOCK_SOURCE
<< 16; /* virtual type */
928 term
->name
= d
->iClockSource
;
932 static int parse_term_uac3_clock_source(struct mixer_build
*state
,
933 struct usb_audio_term
*term
,
936 struct uac3_clock_source_descriptor
*d
= p1
;
938 term
->type
= UAC3_CLOCK_SOURCE
<< 16; /* virtual type */
940 term
->name
= le16_to_cpu(d
->wClockSourceStr
);
944 #define PTYPE(a, b) ((a) << 8 | (b))
947 * parse the source unit recursively until it reaches to a terminal
948 * or a branched unit.
950 static int __check_input_term(struct mixer_build
*state
, int id
,
951 struct usb_audio_term
*term
)
953 int protocol
= state
->mixer
->protocol
;
958 /* a loop in the terminal chain? */
959 if (test_and_set_bit(id
, state
->termbitmap
))
962 p1
= find_audio_control_unit(state
, id
);
965 if (!snd_usb_validate_audio_desc(p1
, protocol
))
966 break; /* bad descriptor */
971 switch (PTYPE(protocol
, hdr
[2])) {
972 case PTYPE(UAC_VERSION_1
, UAC_FEATURE_UNIT
):
973 case PTYPE(UAC_VERSION_2
, UAC_FEATURE_UNIT
):
974 case PTYPE(UAC_VERSION_3
, UAC3_FEATURE_UNIT
): {
975 /* the header is the same for all versions */
976 struct uac_feature_unit_descriptor
*d
= p1
;
979 break; /* continue to parse */
981 case PTYPE(UAC_VERSION_1
, UAC_INPUT_TERMINAL
):
982 return parse_term_uac1_iterm_unit(state
, term
, p1
, id
);
983 case PTYPE(UAC_VERSION_2
, UAC_INPUT_TERMINAL
):
984 return parse_term_uac2_iterm_unit(state
, term
, p1
, id
);
985 case PTYPE(UAC_VERSION_3
, UAC_INPUT_TERMINAL
):
986 return parse_term_uac3_iterm_unit(state
, term
, p1
, id
);
987 case PTYPE(UAC_VERSION_1
, UAC_MIXER_UNIT
):
988 case PTYPE(UAC_VERSION_2
, UAC_MIXER_UNIT
):
989 case PTYPE(UAC_VERSION_3
, UAC3_MIXER_UNIT
):
990 return parse_term_mixer_unit(state
, term
, p1
, id
);
991 case PTYPE(UAC_VERSION_1
, UAC_SELECTOR_UNIT
):
992 case PTYPE(UAC_VERSION_2
, UAC_SELECTOR_UNIT
):
993 case PTYPE(UAC_VERSION_2
, UAC2_CLOCK_SELECTOR
):
994 case PTYPE(UAC_VERSION_3
, UAC3_SELECTOR_UNIT
):
995 case PTYPE(UAC_VERSION_3
, UAC3_CLOCK_SELECTOR
):
996 return parse_term_selector_unit(state
, term
, p1
, id
);
997 case PTYPE(UAC_VERSION_1
, UAC1_PROCESSING_UNIT
):
998 case PTYPE(UAC_VERSION_2
, UAC2_PROCESSING_UNIT_V2
):
999 case PTYPE(UAC_VERSION_3
, UAC3_PROCESSING_UNIT
):
1000 return parse_term_proc_unit(state
, term
, p1
, id
,
1001 UAC3_PROCESSING_UNIT
);
1002 case PTYPE(UAC_VERSION_2
, UAC2_EFFECT_UNIT
):
1003 case PTYPE(UAC_VERSION_3
, UAC3_EFFECT_UNIT
):
1004 return parse_term_effect_unit(state
, term
, p1
, id
);
1005 case PTYPE(UAC_VERSION_1
, UAC1_EXTENSION_UNIT
):
1006 case PTYPE(UAC_VERSION_2
, UAC2_EXTENSION_UNIT_V2
):
1007 case PTYPE(UAC_VERSION_3
, UAC3_EXTENSION_UNIT
):
1008 return parse_term_proc_unit(state
, term
, p1
, id
,
1009 UAC3_EXTENSION_UNIT
);
1010 case PTYPE(UAC_VERSION_2
, UAC2_CLOCK_SOURCE
):
1011 return parse_term_uac2_clock_source(state
, term
, p1
, id
);
1012 case PTYPE(UAC_VERSION_3
, UAC3_CLOCK_SOURCE
):
1013 return parse_term_uac3_clock_source(state
, term
, p1
, id
);
1022 static int check_input_term(struct mixer_build
*state
, int id
,
1023 struct usb_audio_term
*term
)
1025 memset(term
, 0, sizeof(*term
));
1026 memset(state
->termbitmap
, 0, sizeof(state
->termbitmap
));
1027 return __check_input_term(state
, id
, term
);
1034 /* feature unit control information */
1035 struct usb_feature_control_info
{
1038 int type
; /* data type for uac1 */
1039 int type_uac2
; /* data type for uac2 if different from uac1, else -1 */
1042 static const struct usb_feature_control_info audio_feature_info
[] = {
1043 { UAC_FU_MUTE
, "Mute", USB_MIXER_INV_BOOLEAN
, -1 },
1044 { UAC_FU_VOLUME
, "Volume", USB_MIXER_S16
, -1 },
1045 { UAC_FU_BASS
, "Tone Control - Bass", USB_MIXER_S8
, -1 },
1046 { UAC_FU_MID
, "Tone Control - Mid", USB_MIXER_S8
, -1 },
1047 { UAC_FU_TREBLE
, "Tone Control - Treble", USB_MIXER_S8
, -1 },
1048 { UAC_FU_GRAPHIC_EQUALIZER
, "Graphic Equalizer", USB_MIXER_S8
, -1 }, /* FIXME: not implemented yet */
1049 { UAC_FU_AUTOMATIC_GAIN
, "Auto Gain Control", USB_MIXER_BOOLEAN
, -1 },
1050 { UAC_FU_DELAY
, "Delay Control", USB_MIXER_U16
, USB_MIXER_U32
},
1051 { UAC_FU_BASS_BOOST
, "Bass Boost", USB_MIXER_BOOLEAN
, -1 },
1052 { UAC_FU_LOUDNESS
, "Loudness", USB_MIXER_BOOLEAN
, -1 },
1054 { UAC2_FU_INPUT_GAIN
, "Input Gain Control", USB_MIXER_S16
, -1 },
1055 { UAC2_FU_INPUT_GAIN_PAD
, "Input Gain Pad Control", USB_MIXER_S16
, -1 },
1056 { UAC2_FU_PHASE_INVERTER
, "Phase Inverter Control", USB_MIXER_BOOLEAN
, -1 },
1059 static void usb_mixer_elem_info_free(struct usb_mixer_elem_info
*cval
)
1064 /* private_free callback */
1065 void snd_usb_mixer_elem_free(struct snd_kcontrol
*kctl
)
1067 usb_mixer_elem_info_free(kctl
->private_data
);
1068 kctl
->private_data
= NULL
;
1072 * interface to ALSA control for feature/mixer units
1075 /* volume control quirks */
1076 static void volume_control_quirks(struct usb_mixer_elem_info
*cval
,
1077 struct snd_kcontrol
*kctl
)
1079 struct snd_usb_audio
*chip
= cval
->head
.mixer
->chip
;
1080 switch (chip
->usb_id
) {
1081 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
1082 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
1083 if (strcmp(kctl
->id
.name
, "Effect Duration") == 0) {
1089 if (strcmp(kctl
->id
.name
, "Effect Volume") == 0 ||
1090 strcmp(kctl
->id
.name
, "Effect Feedback Volume") == 0) {
1095 if (strstr(kctl
->id
.name
, "Effect Return") != NULL
) {
1101 if ((strstr(kctl
->id
.name
, "Playback Volume") != NULL
) ||
1102 (strstr(kctl
->id
.name
, "Effect Send") != NULL
)) {
1103 cval
->min
= 0xb5fb; /* -73 dB = 0xb6ff */
1109 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
1110 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
1111 if (strcmp(kctl
->id
.name
, "Effect Duration") == 0) {
1112 usb_audio_info(chip
,
1113 "set quirk for FTU Effect Duration\n");
1119 if (strcmp(kctl
->id
.name
, "Effect Volume") == 0 ||
1120 strcmp(kctl
->id
.name
, "Effect Feedback Volume") == 0) {
1121 usb_audio_info(chip
,
1122 "set quirks for FTU Effect Feedback/Volume\n");
1129 case USB_ID(0x0d8c, 0x0103):
1130 if (!strcmp(kctl
->id
.name
, "PCM Playback Volume")) {
1131 usb_audio_info(chip
,
1132 "set volume quirk for CM102-A+/102S+\n");
1137 case USB_ID(0x0471, 0x0101):
1138 case USB_ID(0x0471, 0x0104):
1139 case USB_ID(0x0471, 0x0105):
1140 case USB_ID(0x0672, 0x1041):
1141 /* quirk for UDA1321/N101.
1142 * note that detection between firmware 2.1.1.7 (N101)
1143 * and later 2.1.1.21 is not very clear from datasheets.
1144 * I hope that the min value is -15360 for newer firmware --jk
1146 if (!strcmp(kctl
->id
.name
, "PCM Playback Volume") &&
1147 cval
->min
== -15616) {
1148 usb_audio_info(chip
,
1149 "set volume quirk for UDA1321/N101 chip\n");
1154 case USB_ID(0x046d, 0x09a4):
1155 if (!strcmp(kctl
->id
.name
, "Mic Capture Volume")) {
1156 usb_audio_info(chip
,
1157 "set volume quirk for QuickCam E3500\n");
1164 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
1165 case USB_ID(0x046d, 0x0808):
1166 case USB_ID(0x046d, 0x0809):
1167 case USB_ID(0x046d, 0x0819): /* Logitech Webcam C210 */
1168 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
1169 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
1170 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
1171 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
1172 case USB_ID(0x046d, 0x08ca): /* Logitech Quickcam Fusion */
1173 case USB_ID(0x046d, 0x0991):
1174 case USB_ID(0x046d, 0x09a2): /* QuickCam Communicate Deluxe/S7500 */
1175 /* Most audio usb devices lie about volume resolution.
1176 * Most Logitech webcams have res = 384.
1177 * Probably there is some logitech magic behind this number --fishor
1179 if (!strcmp(kctl
->id
.name
, "Mic Capture Volume")) {
1180 usb_audio_info(chip
,
1181 "set resolution quirk: cval->res = 384\n");
1189 * retrieve the minimum and maximum values for the specified control
1191 static int get_min_max_with_quirks(struct usb_mixer_elem_info
*cval
,
1192 int default_min
, struct snd_kcontrol
*kctl
)
1195 cval
->min
= default_min
;
1196 cval
->max
= cval
->min
+ 1;
1198 cval
->dBmin
= cval
->dBmax
= 0;
1200 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
1201 cval
->val_type
== USB_MIXER_INV_BOOLEAN
) {
1202 cval
->initialized
= 1;
1207 for (i
= 0; i
< MAX_CHANNELS
; i
++)
1208 if (cval
->cmask
& (1 << i
)) {
1213 if (get_ctl_value(cval
, UAC_GET_MAX
, (cval
->control
<< 8) | minchn
, &cval
->max
) < 0 ||
1214 get_ctl_value(cval
, UAC_GET_MIN
, (cval
->control
<< 8) | minchn
, &cval
->min
) < 0) {
1215 usb_audio_err(cval
->head
.mixer
->chip
,
1216 "%d:%d: cannot get min/max values for control %d (id %d)\n",
1217 cval
->head
.id
, mixer_ctrl_intf(cval
->head
.mixer
),
1218 cval
->control
, cval
->head
.id
);
1221 if (get_ctl_value(cval
, UAC_GET_RES
,
1222 (cval
->control
<< 8) | minchn
,
1226 int last_valid_res
= cval
->res
;
1228 while (cval
->res
> 1) {
1229 if (snd_usb_mixer_set_ctl_value(cval
, UAC_SET_RES
,
1230 (cval
->control
<< 8) | minchn
,
1235 if (get_ctl_value(cval
, UAC_GET_RES
,
1236 (cval
->control
<< 8) | minchn
, &cval
->res
) < 0)
1237 cval
->res
= last_valid_res
;
1242 /* Additional checks for the proper resolution
1244 * Some devices report smaller resolutions than actually
1245 * reacting. They don't return errors but simply clip
1246 * to the lower aligned value.
1248 if (cval
->min
+ cval
->res
< cval
->max
) {
1249 int last_valid_res
= cval
->res
;
1250 int saved
, test
, check
;
1251 if (get_cur_mix_raw(cval
, minchn
, &saved
) < 0)
1255 if (test
< cval
->max
)
1259 if (test
< cval
->min
|| test
> cval
->max
||
1260 snd_usb_set_cur_mix_value(cval
, minchn
, 0, test
) ||
1261 get_cur_mix_raw(cval
, minchn
, &check
)) {
1262 cval
->res
= last_valid_res
;
1269 snd_usb_set_cur_mix_value(cval
, minchn
, 0, saved
);
1273 cval
->initialized
= 1;
1277 volume_control_quirks(cval
, kctl
);
1279 /* USB descriptions contain the dB scale in 1/256 dB unit
1280 * while ALSA TLV contains in 1/100 dB unit
1282 cval
->dBmin
= (convert_signed_value(cval
, cval
->min
) * 100) / 256;
1283 cval
->dBmax
= (convert_signed_value(cval
, cval
->max
) * 100) / 256;
1284 if (cval
->dBmin
> cval
->dBmax
) {
1285 /* something is wrong; assume it's either from/to 0dB */
1286 if (cval
->dBmin
< 0)
1288 else if (cval
->dBmin
> 0)
1290 if (cval
->dBmin
> cval
->dBmax
) {
1291 /* totally crap, return an error */
1299 #define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
1301 /* get a feature/mixer unit info */
1302 static int mixer_ctl_feature_info(struct snd_kcontrol
*kcontrol
,
1303 struct snd_ctl_elem_info
*uinfo
)
1305 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1307 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
1308 cval
->val_type
== USB_MIXER_INV_BOOLEAN
)
1309 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1311 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1312 uinfo
->count
= cval
->channels
;
1313 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
1314 cval
->val_type
== USB_MIXER_INV_BOOLEAN
) {
1315 uinfo
->value
.integer
.min
= 0;
1316 uinfo
->value
.integer
.max
= 1;
1318 if (!cval
->initialized
) {
1319 get_min_max_with_quirks(cval
, 0, kcontrol
);
1320 if (cval
->initialized
&& cval
->dBmin
>= cval
->dBmax
) {
1321 kcontrol
->vd
[0].access
&=
1322 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ
|
1323 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
);
1324 snd_ctl_notify(cval
->head
.mixer
->chip
->card
,
1325 SNDRV_CTL_EVENT_MASK_INFO
,
1329 uinfo
->value
.integer
.min
= 0;
1330 uinfo
->value
.integer
.max
=
1331 (cval
->max
- cval
->min
+ cval
->res
- 1) / cval
->res
;
1336 /* get the current value from feature/mixer unit */
1337 static int mixer_ctl_feature_get(struct snd_kcontrol
*kcontrol
,
1338 struct snd_ctl_elem_value
*ucontrol
)
1340 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1341 int c
, cnt
, val
, err
;
1343 ucontrol
->value
.integer
.value
[0] = cval
->min
;
1346 for (c
= 0; c
< MAX_CHANNELS
; c
++) {
1347 if (!(cval
->cmask
& (1 << c
)))
1349 err
= snd_usb_get_cur_mix_value(cval
, c
+ 1, cnt
, &val
);
1351 return filter_error(cval
, err
);
1352 val
= get_relative_value(cval
, val
);
1353 ucontrol
->value
.integer
.value
[cnt
] = val
;
1358 /* master channel */
1359 err
= snd_usb_get_cur_mix_value(cval
, 0, 0, &val
);
1361 return filter_error(cval
, err
);
1362 val
= get_relative_value(cval
, val
);
1363 ucontrol
->value
.integer
.value
[0] = val
;
1368 /* put the current value to feature/mixer unit */
1369 static int mixer_ctl_feature_put(struct snd_kcontrol
*kcontrol
,
1370 struct snd_ctl_elem_value
*ucontrol
)
1372 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1373 int c
, cnt
, val
, oval
, err
;
1378 for (c
= 0; c
< MAX_CHANNELS
; c
++) {
1379 if (!(cval
->cmask
& (1 << c
)))
1381 err
= snd_usb_get_cur_mix_value(cval
, c
+ 1, cnt
, &oval
);
1383 return filter_error(cval
, err
);
1384 val
= ucontrol
->value
.integer
.value
[cnt
];
1385 val
= get_abs_value(cval
, val
);
1387 snd_usb_set_cur_mix_value(cval
, c
+ 1, cnt
, val
);
1393 /* master channel */
1394 err
= snd_usb_get_cur_mix_value(cval
, 0, 0, &oval
);
1396 return filter_error(cval
, err
);
1397 val
= ucontrol
->value
.integer
.value
[0];
1398 val
= get_abs_value(cval
, val
);
1400 snd_usb_set_cur_mix_value(cval
, 0, 0, val
);
1407 /* get the boolean value from the master channel of a UAC control */
1408 static int mixer_ctl_master_bool_get(struct snd_kcontrol
*kcontrol
,
1409 struct snd_ctl_elem_value
*ucontrol
)
1411 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1414 err
= snd_usb_get_cur_mix_value(cval
, 0, 0, &val
);
1416 return filter_error(cval
, err
);
1418 ucontrol
->value
.integer
.value
[0] = val
;
1422 /* get the connectors status and report it as boolean type */
1423 static int mixer_ctl_connector_get(struct snd_kcontrol
*kcontrol
,
1424 struct snd_ctl_elem_value
*ucontrol
)
1426 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1427 struct snd_usb_audio
*chip
= cval
->head
.mixer
->chip
;
1428 int idx
= 0, validx
, ret
, val
;
1430 validx
= cval
->control
<< 8 | 0;
1432 ret
= snd_usb_lock_shutdown(chip
) ? -EIO
: 0;
1436 idx
= mixer_ctrl_intf(cval
->head
.mixer
) | (cval
->head
.id
<< 8);
1437 if (cval
->head
.mixer
->protocol
== UAC_VERSION_2
) {
1438 struct uac2_connectors_ctl_blk uac2_conn
;
1440 ret
= snd_usb_ctl_msg(chip
->dev
, usb_rcvctrlpipe(chip
->dev
, 0), UAC2_CS_CUR
,
1441 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
1442 validx
, idx
, &uac2_conn
, sizeof(uac2_conn
));
1443 val
= !!uac2_conn
.bNrChannels
;
1444 } else { /* UAC_VERSION_3 */
1445 struct uac3_insertion_ctl_blk uac3_conn
;
1447 ret
= snd_usb_ctl_msg(chip
->dev
, usb_rcvctrlpipe(chip
->dev
, 0), UAC2_CS_CUR
,
1448 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
1449 validx
, idx
, &uac3_conn
, sizeof(uac3_conn
));
1450 val
= !!uac3_conn
.bmConInserted
;
1453 snd_usb_unlock_shutdown(chip
);
1458 "cannot get connectors status: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
1459 UAC_GET_CUR
, validx
, idx
, cval
->val_type
);
1463 ucontrol
->value
.integer
.value
[0] = val
;
1467 static const struct snd_kcontrol_new usb_feature_unit_ctl
= {
1468 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1469 .name
= "", /* will be filled later manually */
1470 .info
= mixer_ctl_feature_info
,
1471 .get
= mixer_ctl_feature_get
,
1472 .put
= mixer_ctl_feature_put
,
1475 /* the read-only variant */
1476 static const struct snd_kcontrol_new usb_feature_unit_ctl_ro
= {
1477 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1478 .name
= "", /* will be filled later manually */
1479 .info
= mixer_ctl_feature_info
,
1480 .get
= mixer_ctl_feature_get
,
1485 * A control which shows the boolean value from reading a UAC control on
1486 * the master channel.
1488 static const struct snd_kcontrol_new usb_bool_master_control_ctl_ro
= {
1489 .iface
= SNDRV_CTL_ELEM_IFACE_CARD
,
1490 .name
= "", /* will be filled later manually */
1491 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
1492 .info
= snd_ctl_boolean_mono_info
,
1493 .get
= mixer_ctl_master_bool_get
,
1497 static const struct snd_kcontrol_new usb_connector_ctl_ro
= {
1498 .iface
= SNDRV_CTL_ELEM_IFACE_CARD
,
1499 .name
= "", /* will be filled later manually */
1500 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
1501 .info
= snd_ctl_boolean_mono_info
,
1502 .get
= mixer_ctl_connector_get
,
1507 * This symbol is exported in order to allow the mixer quirks to
1508 * hook up to the standard feature unit control mechanism
1510 const struct snd_kcontrol_new
*snd_usb_feature_unit_ctl
= &usb_feature_unit_ctl
;
1513 * build a feature control
1515 static size_t append_ctl_name(struct snd_kcontrol
*kctl
, const char *str
)
1517 return strlcat(kctl
->id
.name
, str
, sizeof(kctl
->id
.name
));
1521 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1522 * rename it to "Headphone". We determine if something is a headphone
1523 * similar to how udev determines form factor.
1525 static void check_no_speaker_on_headset(struct snd_kcontrol
*kctl
,
1526 struct snd_card
*card
)
1528 const char *names_to_check
[] = {
1529 "Headset", "headset", "Headphone", "headphone", NULL
};
1533 if (strcmp("Speaker", kctl
->id
.name
))
1536 for (s
= names_to_check
; *s
; s
++)
1537 if (strstr(card
->shortname
, *s
)) {
1545 strlcpy(kctl
->id
.name
, "Headphone", sizeof(kctl
->id
.name
));
1548 static const struct usb_feature_control_info
*get_feature_control_info(int control
)
1552 for (i
= 0; i
< ARRAY_SIZE(audio_feature_info
); ++i
) {
1553 if (audio_feature_info
[i
].control
== control
)
1554 return &audio_feature_info
[i
];
1559 static void __build_feature_ctl(struct usb_mixer_interface
*mixer
,
1560 const struct usbmix_name_map
*imap
,
1561 unsigned int ctl_mask
, int control
,
1562 struct usb_audio_term
*iterm
,
1563 struct usb_audio_term
*oterm
,
1564 int unitid
, int nameid
, int readonly_mask
)
1566 const struct usb_feature_control_info
*ctl_info
;
1567 unsigned int len
= 0;
1568 int mapped_name
= 0;
1569 struct snd_kcontrol
*kctl
;
1570 struct usb_mixer_elem_info
*cval
;
1571 const struct usbmix_name_map
*map
;
1574 if (control
== UAC_FU_GRAPHIC_EQUALIZER
) {
1575 /* FIXME: not supported yet */
1579 map
= find_map(imap
, unitid
, control
);
1580 if (check_ignored_ctl(map
))
1583 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1586 snd_usb_mixer_elem_init_std(&cval
->head
, mixer
, unitid
);
1587 cval
->control
= control
;
1588 cval
->cmask
= ctl_mask
;
1590 ctl_info
= get_feature_control_info(control
);
1592 usb_mixer_elem_info_free(cval
);
1595 if (mixer
->protocol
== UAC_VERSION_1
)
1596 cval
->val_type
= ctl_info
->type
;
1597 else /* UAC_VERSION_2 */
1598 cval
->val_type
= ctl_info
->type_uac2
>= 0 ?
1599 ctl_info
->type_uac2
: ctl_info
->type
;
1601 if (ctl_mask
== 0) {
1602 cval
->channels
= 1; /* master channel */
1603 cval
->master_readonly
= readonly_mask
;
1606 for (i
= 0; i
< 16; i
++)
1607 if (ctl_mask
& (1 << i
))
1610 cval
->ch_readonly
= readonly_mask
;
1614 * If all channels in the mask are marked read-only, make the control
1615 * read-only. snd_usb_set_cur_mix_value() will check the mask again and won't
1616 * issue write commands to read-only channels.
1618 if (cval
->channels
== readonly_mask
)
1619 kctl
= snd_ctl_new1(&usb_feature_unit_ctl_ro
, cval
);
1621 kctl
= snd_ctl_new1(&usb_feature_unit_ctl
, cval
);
1624 usb_audio_err(mixer
->chip
, "cannot malloc kcontrol\n");
1625 usb_mixer_elem_info_free(cval
);
1628 kctl
->private_free
= snd_usb_mixer_elem_free
;
1630 len
= check_mapped_name(map
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
1631 mapped_name
= len
!= 0;
1633 len
= snd_usb_copy_string_desc(mixer
->chip
, nameid
,
1634 kctl
->id
.name
, sizeof(kctl
->id
.name
));
1640 * determine the control name. the rule is:
1641 * - if a name id is given in descriptor, use it.
1642 * - if the connected input can be determined, then use the name
1644 * - if the connected output can be determined, use it.
1645 * - otherwise, anonymous name.
1649 len
= get_term_name(mixer
->chip
, iterm
,
1651 sizeof(kctl
->id
.name
), 1);
1653 len
= get_term_name(mixer
->chip
, oterm
,
1655 sizeof(kctl
->id
.name
), 1);
1657 snprintf(kctl
->id
.name
, sizeof(kctl
->id
.name
),
1658 "Feature %d", unitid
);
1662 check_no_speaker_on_headset(kctl
, mixer
->chip
->card
);
1665 * determine the stream direction:
1666 * if the connected output is USB stream, then it's likely a
1667 * capture stream. otherwise it should be playback (hopefully :)
1669 if (!mapped_name
&& oterm
&& !(oterm
->type
>> 16)) {
1670 if ((oterm
->type
& 0xff00) == 0x0100)
1671 append_ctl_name(kctl
, " Capture");
1673 append_ctl_name(kctl
, " Playback");
1675 append_ctl_name(kctl
, control
== UAC_FU_MUTE
?
1676 " Switch" : " Volume");
1680 strlcpy(kctl
->id
.name
, audio_feature_info
[control
-1].name
,
1681 sizeof(kctl
->id
.name
));
1685 /* get min/max values */
1686 get_min_max_with_quirks(cval
, 0, kctl
);
1688 /* skip a bogus volume range */
1689 if (cval
->max
<= cval
->min
) {
1690 usb_audio_dbg(mixer
->chip
,
1691 "[%d] FU [%s] skipped due to invalid volume\n",
1692 cval
->head
.id
, kctl
->id
.name
);
1693 snd_ctl_free_one(kctl
);
1698 if (control
== UAC_FU_VOLUME
) {
1699 check_mapped_dB(map
, cval
);
1700 if (cval
->dBmin
< cval
->dBmax
|| !cval
->initialized
) {
1701 kctl
->tlv
.c
= snd_usb_mixer_vol_tlv
;
1702 kctl
->vd
[0].access
|=
1703 SNDRV_CTL_ELEM_ACCESS_TLV_READ
|
1704 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
;
1708 snd_usb_mixer_fu_apply_quirk(mixer
, cval
, unitid
, kctl
);
1710 range
= (cval
->max
- cval
->min
) / cval
->res
;
1712 * Are there devices with volume range more than 255? I use a bit more
1713 * to be sure. 384 is a resolution magic number found on Logitech
1714 * devices. It will definitively catch all buggy Logitech devices.
1717 usb_audio_warn(mixer
->chip
,
1718 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
1720 usb_audio_warn(mixer
->chip
,
1721 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
1722 cval
->head
.id
, kctl
->id
.name
, cval
->channels
,
1723 cval
->min
, cval
->max
, cval
->res
);
1726 usb_audio_dbg(mixer
->chip
, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1727 cval
->head
.id
, kctl
->id
.name
, cval
->channels
,
1728 cval
->min
, cval
->max
, cval
->res
);
1729 snd_usb_mixer_add_control(&cval
->head
, kctl
);
1732 static void build_feature_ctl(struct mixer_build
*state
, void *raw_desc
,
1733 unsigned int ctl_mask
, int control
,
1734 struct usb_audio_term
*iterm
, int unitid
,
1737 struct uac_feature_unit_descriptor
*desc
= raw_desc
;
1738 int nameid
= uac_feature_unit_iFeature(desc
);
1740 __build_feature_ctl(state
->mixer
, state
->map
, ctl_mask
, control
,
1741 iterm
, &state
->oterm
, unitid
, nameid
, readonly_mask
);
1744 static void build_feature_ctl_badd(struct usb_mixer_interface
*mixer
,
1745 unsigned int ctl_mask
, int control
, int unitid
,
1746 const struct usbmix_name_map
*badd_map
)
1748 __build_feature_ctl(mixer
, badd_map
, ctl_mask
, control
,
1749 NULL
, NULL
, unitid
, 0, 0);
1752 static void get_connector_control_name(struct usb_mixer_interface
*mixer
,
1753 struct usb_audio_term
*term
,
1754 bool is_input
, char *name
, int name_size
)
1756 int name_len
= get_term_name(mixer
->chip
, term
, name
, name_size
, 0);
1759 strlcpy(name
, "Unknown", name_size
);
1762 * sound/core/ctljack.c has a convention of naming jack controls
1763 * by ending in " Jack". Make it slightly more useful by
1764 * indicating Input or Output after the terminal name.
1767 strlcat(name
, " - Input Jack", name_size
);
1769 strlcat(name
, " - Output Jack", name_size
);
1772 /* Build a mixer control for a UAC connector control (jack-detect) */
1773 static void build_connector_control(struct usb_mixer_interface
*mixer
,
1774 struct usb_audio_term
*term
, bool is_input
)
1776 struct snd_kcontrol
*kctl
;
1777 struct usb_mixer_elem_info
*cval
;
1779 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1782 snd_usb_mixer_elem_init_std(&cval
->head
, mixer
, term
->id
);
1784 * UAC2: The first byte from reading the UAC2_TE_CONNECTOR control returns the
1785 * number of channels connected.
1787 * UAC3: The first byte specifies size of bitmap for the inserted controls. The
1788 * following byte(s) specifies which connectors are inserted.
1790 * This boolean ctl will simply report if any channels are connected
1793 if (mixer
->protocol
== UAC_VERSION_2
)
1794 cval
->control
= UAC2_TE_CONNECTOR
;
1795 else /* UAC_VERSION_3 */
1796 cval
->control
= UAC3_TE_INSERTION
;
1798 cval
->val_type
= USB_MIXER_BOOLEAN
;
1799 cval
->channels
= 1; /* report true if any channel is connected */
1802 kctl
= snd_ctl_new1(&usb_connector_ctl_ro
, cval
);
1804 usb_audio_err(mixer
->chip
, "cannot malloc kcontrol\n");
1805 usb_mixer_elem_info_free(cval
);
1808 get_connector_control_name(mixer
, term
, is_input
, kctl
->id
.name
,
1809 sizeof(kctl
->id
.name
));
1810 kctl
->private_free
= snd_usb_mixer_elem_free
;
1811 snd_usb_mixer_add_control(&cval
->head
, kctl
);
1814 static int parse_clock_source_unit(struct mixer_build
*state
, int unitid
,
1817 struct uac_clock_source_descriptor
*hdr
= _ftr
;
1818 struct usb_mixer_elem_info
*cval
;
1819 struct snd_kcontrol
*kctl
;
1820 char name
[SNDRV_CTL_ELEM_ID_NAME_MAXLEN
];
1823 if (state
->mixer
->protocol
!= UAC_VERSION_2
)
1827 * The only property of this unit we are interested in is the
1828 * clock source validity. If that isn't readable, just bail out.
1830 if (!uac_v2v3_control_is_readable(hdr
->bmControls
,
1831 UAC2_CS_CONTROL_CLOCK_VALID
))
1834 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1838 snd_usb_mixer_elem_init_std(&cval
->head
, state
->mixer
, hdr
->bClockID
);
1843 cval
->val_type
= USB_MIXER_BOOLEAN
;
1844 cval
->control
= UAC2_CS_CONTROL_CLOCK_VALID
;
1846 cval
->master_readonly
= 1;
1847 /* From UAC2 5.2.5.1.2 "Only the get request is supported." */
1848 kctl
= snd_ctl_new1(&usb_bool_master_control_ctl_ro
, cval
);
1851 usb_mixer_elem_info_free(cval
);
1855 kctl
->private_free
= snd_usb_mixer_elem_free
;
1856 ret
= snd_usb_copy_string_desc(state
->chip
, hdr
->iClockSource
,
1857 name
, sizeof(name
));
1859 snprintf(kctl
->id
.name
, sizeof(kctl
->id
.name
),
1860 "%s Validity", name
);
1862 snprintf(kctl
->id
.name
, sizeof(kctl
->id
.name
),
1863 "Clock Source %d Validity", hdr
->bClockID
);
1865 return snd_usb_mixer_add_control(&cval
->head
, kctl
);
1869 * parse a feature unit
1871 * most of controls are defined here.
1873 static int parse_audio_feature_unit(struct mixer_build
*state
, int unitid
,
1877 struct usb_audio_term iterm
;
1878 unsigned int master_bits
;
1880 struct uac_feature_unit_descriptor
*hdr
= _ftr
;
1883 if (state
->mixer
->protocol
== UAC_VERSION_1
) {
1884 csize
= hdr
->bControlSize
;
1885 channels
= (hdr
->bLength
- 7) / csize
- 1;
1886 bmaControls
= hdr
->bmaControls
;
1887 } else if (state
->mixer
->protocol
== UAC_VERSION_2
) {
1888 struct uac2_feature_unit_descriptor
*ftr
= _ftr
;
1890 channels
= (hdr
->bLength
- 6) / 4 - 1;
1891 bmaControls
= ftr
->bmaControls
;
1892 } else { /* UAC_VERSION_3 */
1893 struct uac3_feature_unit_descriptor
*ftr
= _ftr
;
1896 channels
= (ftr
->bLength
- 7) / 4 - 1;
1897 bmaControls
= ftr
->bmaControls
;
1900 /* parse the source unit */
1901 err
= parse_audio_unit(state
, hdr
->bSourceID
);
1905 /* determine the input source type and name */
1906 err
= check_input_term(state
, hdr
->bSourceID
, &iterm
);
1910 master_bits
= snd_usb_combine_bytes(bmaControls
, csize
);
1911 /* master configuration quirks */
1912 switch (state
->chip
->usb_id
) {
1913 case USB_ID(0x08bb, 0x2702):
1914 usb_audio_info(state
->chip
,
1915 "usbmixer: master volume quirk for PCM2702 chip\n");
1916 /* disable non-functional volume control */
1917 master_bits
&= ~UAC_CONTROL_BIT(UAC_FU_VOLUME
);
1919 case USB_ID(0x1130, 0xf211):
1920 usb_audio_info(state
->chip
,
1921 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
1922 /* disable non-functional volume control */
1928 if (state
->mixer
->protocol
== UAC_VERSION_1
) {
1929 /* check all control types */
1930 for (i
= 0; i
< 10; i
++) {
1931 unsigned int ch_bits
= 0;
1932 int control
= audio_feature_info
[i
].control
;
1934 for (j
= 0; j
< channels
; j
++) {
1937 mask
= snd_usb_combine_bytes(bmaControls
+
1938 csize
* (j
+1), csize
);
1939 if (mask
& (1 << i
))
1940 ch_bits
|= (1 << j
);
1942 /* audio class v1 controls are never read-only */
1945 * The first channel must be set
1946 * (for ease of programming).
1949 build_feature_ctl(state
, _ftr
, ch_bits
, control
,
1951 if (master_bits
& (1 << i
))
1952 build_feature_ctl(state
, _ftr
, 0, control
,
1955 } else { /* UAC_VERSION_2/3 */
1956 for (i
= 0; i
< ARRAY_SIZE(audio_feature_info
); i
++) {
1957 unsigned int ch_bits
= 0;
1958 unsigned int ch_read_only
= 0;
1959 int control
= audio_feature_info
[i
].control
;
1961 for (j
= 0; j
< channels
; j
++) {
1964 mask
= snd_usb_combine_bytes(bmaControls
+
1965 csize
* (j
+1), csize
);
1966 if (uac_v2v3_control_is_readable(mask
, control
)) {
1967 ch_bits
|= (1 << j
);
1968 if (!uac_v2v3_control_is_writeable(mask
, control
))
1969 ch_read_only
|= (1 << j
);
1974 * NOTE: build_feature_ctl() will mark the control
1975 * read-only if all channels are marked read-only in
1976 * the descriptors. Otherwise, the control will be
1977 * reported as writeable, but the driver will not
1978 * actually issue a write command for read-only
1983 * The first channel must be set
1984 * (for ease of programming).
1987 build_feature_ctl(state
, _ftr
, ch_bits
, control
,
1988 &iterm
, unitid
, ch_read_only
);
1989 if (uac_v2v3_control_is_readable(master_bits
, control
))
1990 build_feature_ctl(state
, _ftr
, 0, control
,
1992 !uac_v2v3_control_is_writeable(master_bits
,
2004 /* check whether the given in/out overflows bmMixerControls matrix */
2005 static bool mixer_bitmap_overflow(struct uac_mixer_unit_descriptor
*desc
,
2006 int protocol
, int num_ins
, int num_outs
)
2008 u8
*hdr
= (u8
*)desc
;
2009 u8
*c
= uac_mixer_unit_bmControls(desc
, protocol
);
2010 size_t rest
; /* remaining bytes after bmMixerControls */
2015 rest
= 1; /* iMixer */
2018 rest
= 2; /* bmControls + iMixer */
2021 rest
= 6; /* bmControls + wMixerDescrStr */
2026 return c
+ (num_ins
* num_outs
+ 7) / 8 + rest
> hdr
+ hdr
[0];
2030 * build a mixer unit control
2032 * the callbacks are identical with feature unit.
2033 * input channel number (zero based) is given in control field instead.
2035 static void build_mixer_unit_ctl(struct mixer_build
*state
,
2036 struct uac_mixer_unit_descriptor
*desc
,
2037 int in_pin
, int in_ch
, int num_outs
,
2038 int unitid
, struct usb_audio_term
*iterm
)
2040 struct usb_mixer_elem_info
*cval
;
2041 unsigned int i
, len
;
2042 struct snd_kcontrol
*kctl
;
2043 const struct usbmix_name_map
*map
;
2045 map
= find_map(state
->map
, unitid
, 0);
2046 if (check_ignored_ctl(map
))
2049 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
2053 snd_usb_mixer_elem_init_std(&cval
->head
, state
->mixer
, unitid
);
2054 cval
->control
= in_ch
+ 1; /* based on 1 */
2055 cval
->val_type
= USB_MIXER_S16
;
2056 for (i
= 0; i
< num_outs
; i
++) {
2057 __u8
*c
= uac_mixer_unit_bmControls(desc
, state
->mixer
->protocol
);
2059 if (check_matrix_bitmap(c
, in_ch
, i
, num_outs
)) {
2060 cval
->cmask
|= (1 << i
);
2065 /* get min/max values */
2066 get_min_max(cval
, 0);
2068 kctl
= snd_ctl_new1(&usb_feature_unit_ctl
, cval
);
2070 usb_audio_err(state
->chip
, "cannot malloc kcontrol\n");
2071 usb_mixer_elem_info_free(cval
);
2074 kctl
->private_free
= snd_usb_mixer_elem_free
;
2076 len
= check_mapped_name(map
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
2078 len
= get_term_name(state
->chip
, iterm
, kctl
->id
.name
,
2079 sizeof(kctl
->id
.name
), 0);
2081 len
= sprintf(kctl
->id
.name
, "Mixer Source %d", in_ch
+ 1);
2082 append_ctl_name(kctl
, " Volume");
2084 usb_audio_dbg(state
->chip
, "[%d] MU [%s] ch = %d, val = %d/%d\n",
2085 cval
->head
.id
, kctl
->id
.name
, cval
->channels
, cval
->min
, cval
->max
);
2086 snd_usb_mixer_add_control(&cval
->head
, kctl
);
2089 static int parse_audio_input_terminal(struct mixer_build
*state
, int unitid
,
2092 struct usb_audio_term iterm
;
2093 unsigned int control
, bmctls
, term_id
;
2095 if (state
->mixer
->protocol
== UAC_VERSION_2
) {
2096 struct uac2_input_terminal_descriptor
*d_v2
= raw_desc
;
2097 control
= UAC2_TE_CONNECTOR
;
2098 term_id
= d_v2
->bTerminalID
;
2099 bmctls
= le16_to_cpu(d_v2
->bmControls
);
2100 } else if (state
->mixer
->protocol
== UAC_VERSION_3
) {
2101 struct uac3_input_terminal_descriptor
*d_v3
= raw_desc
;
2102 control
= UAC3_TE_INSERTION
;
2103 term_id
= d_v3
->bTerminalID
;
2104 bmctls
= le32_to_cpu(d_v3
->bmControls
);
2106 return 0; /* UAC1. No Insertion control */
2109 check_input_term(state
, term_id
, &iterm
);
2111 /* Check for jack detection. */
2112 if (uac_v2v3_control_is_readable(bmctls
, control
))
2113 build_connector_control(state
->mixer
, &iterm
, true);
2119 * parse a mixer unit
2121 static int parse_audio_mixer_unit(struct mixer_build
*state
, int unitid
,
2124 struct uac_mixer_unit_descriptor
*desc
= raw_desc
;
2125 struct usb_audio_term iterm
;
2126 int input_pins
, num_ins
, num_outs
;
2129 err
= uac_mixer_unit_get_channels(state
, desc
);
2131 usb_audio_err(state
->chip
,
2132 "invalid MIXER UNIT descriptor %d\n",
2138 input_pins
= desc
->bNrInPins
;
2142 for (pin
= 0; pin
< input_pins
; pin
++) {
2143 err
= parse_audio_unit(state
, desc
->baSourceID
[pin
]);
2146 /* no bmControls field (e.g. Maya44) -> ignore */
2149 err
= check_input_term(state
, desc
->baSourceID
[pin
], &iterm
);
2152 num_ins
+= iterm
.channels
;
2153 if (mixer_bitmap_overflow(desc
, state
->mixer
->protocol
,
2156 for (; ich
< num_ins
; ich
++) {
2157 int och
, ich_has_controls
= 0;
2159 for (och
= 0; och
< num_outs
; och
++) {
2160 __u8
*c
= uac_mixer_unit_bmControls(desc
,
2161 state
->mixer
->protocol
);
2163 if (check_matrix_bitmap(c
, ich
, och
, num_outs
)) {
2164 ich_has_controls
= 1;
2168 if (ich_has_controls
)
2169 build_mixer_unit_ctl(state
, desc
, pin
, ich
, num_outs
,
2177 * Processing Unit / Extension Unit
2180 /* get callback for processing/extension unit */
2181 static int mixer_ctl_procunit_get(struct snd_kcontrol
*kcontrol
,
2182 struct snd_ctl_elem_value
*ucontrol
)
2184 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
2187 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &val
);
2189 ucontrol
->value
.integer
.value
[0] = cval
->min
;
2190 return filter_error(cval
, err
);
2192 val
= get_relative_value(cval
, val
);
2193 ucontrol
->value
.integer
.value
[0] = val
;
2197 /* put callback for processing/extension unit */
2198 static int mixer_ctl_procunit_put(struct snd_kcontrol
*kcontrol
,
2199 struct snd_ctl_elem_value
*ucontrol
)
2201 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
2204 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &oval
);
2206 return filter_error(cval
, err
);
2207 val
= ucontrol
->value
.integer
.value
[0];
2208 val
= get_abs_value(cval
, val
);
2210 set_cur_ctl_value(cval
, cval
->control
<< 8, val
);
2216 /* alsa control interface for processing/extension unit */
2217 static const struct snd_kcontrol_new mixer_procunit_ctl
= {
2218 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2219 .name
= "", /* will be filled later */
2220 .info
= mixer_ctl_feature_info
,
2221 .get
= mixer_ctl_procunit_get
,
2222 .put
= mixer_ctl_procunit_put
,
2226 * predefined data for processing units
2228 struct procunit_value_info
{
2235 struct procunit_info
{
2238 const struct procunit_value_info
*values
;
2241 static const struct procunit_value_info undefined_proc_info
[] = {
2242 { 0x00, "Control Undefined", 0 },
2246 static const struct procunit_value_info updown_proc_info
[] = {
2247 { UAC_UD_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2248 { UAC_UD_MODE_SELECT
, "Mode Select", USB_MIXER_U8
, 1 },
2251 static const struct procunit_value_info prologic_proc_info
[] = {
2252 { UAC_DP_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2253 { UAC_DP_MODE_SELECT
, "Mode Select", USB_MIXER_U8
, 1 },
2256 static const struct procunit_value_info threed_enh_proc_info
[] = {
2257 { UAC_3D_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2258 { UAC_3D_SPACE
, "Spaciousness", USB_MIXER_U8
},
2261 static const struct procunit_value_info reverb_proc_info
[] = {
2262 { UAC_REVERB_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2263 { UAC_REVERB_LEVEL
, "Level", USB_MIXER_U8
},
2264 { UAC_REVERB_TIME
, "Time", USB_MIXER_U16
},
2265 { UAC_REVERB_FEEDBACK
, "Feedback", USB_MIXER_U8
},
2268 static const struct procunit_value_info chorus_proc_info
[] = {
2269 { UAC_CHORUS_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2270 { UAC_CHORUS_LEVEL
, "Level", USB_MIXER_U8
},
2271 { UAC_CHORUS_RATE
, "Rate", USB_MIXER_U16
},
2272 { UAC_CHORUS_DEPTH
, "Depth", USB_MIXER_U16
},
2275 static const struct procunit_value_info dcr_proc_info
[] = {
2276 { UAC_DCR_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2277 { UAC_DCR_RATE
, "Ratio", USB_MIXER_U16
},
2278 { UAC_DCR_MAXAMPL
, "Max Amp", USB_MIXER_S16
},
2279 { UAC_DCR_THRESHOLD
, "Threshold", USB_MIXER_S16
},
2280 { UAC_DCR_ATTACK_TIME
, "Attack Time", USB_MIXER_U16
},
2281 { UAC_DCR_RELEASE_TIME
, "Release Time", USB_MIXER_U16
},
2285 static const struct procunit_info procunits
[] = {
2286 { UAC_PROCESS_UP_DOWNMIX
, "Up Down", updown_proc_info
},
2287 { UAC_PROCESS_DOLBY_PROLOGIC
, "Dolby Prologic", prologic_proc_info
},
2288 { UAC_PROCESS_STEREO_EXTENDER
, "3D Stereo Extender", threed_enh_proc_info
},
2289 { UAC_PROCESS_REVERB
, "Reverb", reverb_proc_info
},
2290 { UAC_PROCESS_CHORUS
, "Chorus", chorus_proc_info
},
2291 { UAC_PROCESS_DYN_RANGE_COMP
, "DCR", dcr_proc_info
},
2295 static const struct procunit_value_info uac3_updown_proc_info
[] = {
2296 { UAC3_UD_MODE_SELECT
, "Mode Select", USB_MIXER_U8
, 1 },
2299 static const struct procunit_value_info uac3_stereo_ext_proc_info
[] = {
2300 { UAC3_EXT_WIDTH_CONTROL
, "Width Control", USB_MIXER_U8
},
2304 static const struct procunit_info uac3_procunits
[] = {
2305 { UAC3_PROCESS_UP_DOWNMIX
, "Up Down", uac3_updown_proc_info
},
2306 { UAC3_PROCESS_STEREO_EXTENDER
, "3D Stereo Extender", uac3_stereo_ext_proc_info
},
2307 { UAC3_PROCESS_MULTI_FUNCTION
, "Multi-Function", undefined_proc_info
},
2312 * predefined data for extension units
2314 static const struct procunit_value_info clock_rate_xu_info
[] = {
2315 { USB_XU_CLOCK_RATE_SELECTOR
, "Selector", USB_MIXER_U8
, 0 },
2318 static const struct procunit_value_info clock_source_xu_info
[] = {
2319 { USB_XU_CLOCK_SOURCE_SELECTOR
, "External", USB_MIXER_BOOLEAN
},
2322 static const struct procunit_value_info spdif_format_xu_info
[] = {
2323 { USB_XU_DIGITAL_FORMAT_SELECTOR
, "SPDIF/AC3", USB_MIXER_BOOLEAN
},
2326 static const struct procunit_value_info soft_limit_xu_info
[] = {
2327 { USB_XU_SOFT_LIMIT_SELECTOR
, " ", USB_MIXER_BOOLEAN
},
2330 static const struct procunit_info extunits
[] = {
2331 { USB_XU_CLOCK_RATE
, "Clock rate", clock_rate_xu_info
},
2332 { USB_XU_CLOCK_SOURCE
, "DigitalIn CLK source", clock_source_xu_info
},
2333 { USB_XU_DIGITAL_IO_STATUS
, "DigitalOut format:", spdif_format_xu_info
},
2334 { USB_XU_DEVICE_OPTIONS
, "AnalogueIn Soft Limit", soft_limit_xu_info
},
2339 * build a processing/extension unit
2341 static int build_audio_procunit(struct mixer_build
*state
, int unitid
,
2342 void *raw_desc
, const struct procunit_info
*list
,
2343 bool extension_unit
)
2345 struct uac_processing_unit_descriptor
*desc
= raw_desc
;
2347 struct usb_mixer_elem_info
*cval
;
2348 struct snd_kcontrol
*kctl
;
2349 int i
, err
, nameid
, type
, len
;
2350 const struct procunit_info
*info
;
2351 const struct procunit_value_info
*valinfo
;
2352 const struct usbmix_name_map
*map
;
2353 static const struct procunit_value_info default_value_info
[] = {
2354 { 0x01, "Switch", USB_MIXER_BOOLEAN
},
2357 static const struct procunit_info default_info
= {
2358 0, NULL
, default_value_info
2360 const char *name
= extension_unit
?
2361 "Extension Unit" : "Processing Unit";
2363 num_ins
= desc
->bNrInPins
;
2364 for (i
= 0; i
< num_ins
; i
++) {
2365 err
= parse_audio_unit(state
, desc
->baSourceID
[i
]);
2370 type
= le16_to_cpu(desc
->wProcessType
);
2371 for (info
= list
; info
&& info
->type
; info
++)
2372 if (info
->type
== type
)
2374 if (!info
|| !info
->type
)
2375 info
= &default_info
;
2377 for (valinfo
= info
->values
; valinfo
->control
; valinfo
++) {
2378 __u8
*controls
= uac_processing_unit_bmControls(desc
, state
->mixer
->protocol
);
2380 if (state
->mixer
->protocol
== UAC_VERSION_1
) {
2381 if (!(controls
[valinfo
->control
/ 8] &
2382 (1 << ((valinfo
->control
% 8) - 1))))
2384 } else { /* UAC_VERSION_2/3 */
2385 if (!uac_v2v3_control_is_readable(controls
[valinfo
->control
/ 8],
2390 map
= find_map(state
->map
, unitid
, valinfo
->control
);
2391 if (check_ignored_ctl(map
))
2393 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
2396 snd_usb_mixer_elem_init_std(&cval
->head
, state
->mixer
, unitid
);
2397 cval
->control
= valinfo
->control
;
2398 cval
->val_type
= valinfo
->val_type
;
2401 if (state
->mixer
->protocol
> UAC_VERSION_1
&&
2402 !uac_v2v3_control_is_writeable(controls
[valinfo
->control
/ 8],
2404 cval
->master_readonly
= 1;
2406 /* get min/max values */
2408 case UAC_PROCESS_UP_DOWNMIX
: {
2409 bool mode_sel
= false;
2411 switch (state
->mixer
->protocol
) {
2415 if (cval
->control
== UAC_UD_MODE_SELECT
)
2419 if (cval
->control
== UAC3_UD_MODE_SELECT
)
2425 __u8
*control_spec
= uac_processing_unit_specific(desc
,
2426 state
->mixer
->protocol
);
2428 cval
->max
= control_spec
[0];
2430 cval
->initialized
= 1;
2434 get_min_max(cval
, valinfo
->min_value
);
2437 case USB_XU_CLOCK_RATE
:
2439 * E-Mu USB 0404/0202/TrackerPre/0204
2440 * samplerate control quirk
2445 cval
->initialized
= 1;
2448 get_min_max(cval
, valinfo
->min_value
);
2452 kctl
= snd_ctl_new1(&mixer_procunit_ctl
, cval
);
2454 usb_mixer_elem_info_free(cval
);
2457 kctl
->private_free
= snd_usb_mixer_elem_free
;
2459 if (check_mapped_name(map
, kctl
->id
.name
, sizeof(kctl
->id
.name
))) {
2461 } else if (info
->name
) {
2462 strlcpy(kctl
->id
.name
, info
->name
, sizeof(kctl
->id
.name
));
2465 nameid
= uac_extension_unit_iExtension(desc
, state
->mixer
->protocol
);
2467 nameid
= uac_processing_unit_iProcessing(desc
, state
->mixer
->protocol
);
2470 len
= snd_usb_copy_string_desc(state
->chip
,
2473 sizeof(kctl
->id
.name
));
2475 strlcpy(kctl
->id
.name
, name
, sizeof(kctl
->id
.name
));
2477 append_ctl_name(kctl
, " ");
2478 append_ctl_name(kctl
, valinfo
->suffix
);
2480 usb_audio_dbg(state
->chip
,
2481 "[%d] PU [%s] ch = %d, val = %d/%d\n",
2482 cval
->head
.id
, kctl
->id
.name
, cval
->channels
,
2483 cval
->min
, cval
->max
);
2485 err
= snd_usb_mixer_add_control(&cval
->head
, kctl
);
2492 static int parse_audio_processing_unit(struct mixer_build
*state
, int unitid
,
2495 switch (state
->mixer
->protocol
) {
2499 return build_audio_procunit(state
, unitid
, raw_desc
,
2502 return build_audio_procunit(state
, unitid
, raw_desc
,
2503 uac3_procunits
, false);
2507 static int parse_audio_extension_unit(struct mixer_build
*state
, int unitid
,
2511 * Note that we parse extension units with processing unit descriptors.
2512 * That's ok as the layout is the same.
2514 return build_audio_procunit(state
, unitid
, raw_desc
, extunits
, true);
2522 * info callback for selector unit
2523 * use an enumerator type for routing
2525 static int mixer_ctl_selector_info(struct snd_kcontrol
*kcontrol
,
2526 struct snd_ctl_elem_info
*uinfo
)
2528 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
2529 const char **itemlist
= (const char **)kcontrol
->private_value
;
2531 if (snd_BUG_ON(!itemlist
))
2533 return snd_ctl_enum_info(uinfo
, 1, cval
->max
, itemlist
);
2536 /* get callback for selector unit */
2537 static int mixer_ctl_selector_get(struct snd_kcontrol
*kcontrol
,
2538 struct snd_ctl_elem_value
*ucontrol
)
2540 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
2543 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &val
);
2545 ucontrol
->value
.enumerated
.item
[0] = 0;
2546 return filter_error(cval
, err
);
2548 val
= get_relative_value(cval
, val
);
2549 ucontrol
->value
.enumerated
.item
[0] = val
;
2553 /* put callback for selector unit */
2554 static int mixer_ctl_selector_put(struct snd_kcontrol
*kcontrol
,
2555 struct snd_ctl_elem_value
*ucontrol
)
2557 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
2560 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &oval
);
2562 return filter_error(cval
, err
);
2563 val
= ucontrol
->value
.enumerated
.item
[0];
2564 val
= get_abs_value(cval
, val
);
2566 set_cur_ctl_value(cval
, cval
->control
<< 8, val
);
2572 /* alsa control interface for selector unit */
2573 static const struct snd_kcontrol_new mixer_selectunit_ctl
= {
2574 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2575 .name
= "", /* will be filled later */
2576 .info
= mixer_ctl_selector_info
,
2577 .get
= mixer_ctl_selector_get
,
2578 .put
= mixer_ctl_selector_put
,
2582 * private free callback.
2583 * free both private_data and private_value
2585 static void usb_mixer_selector_elem_free(struct snd_kcontrol
*kctl
)
2589 if (kctl
->private_data
) {
2590 struct usb_mixer_elem_info
*cval
= kctl
->private_data
;
2591 num_ins
= cval
->max
;
2592 usb_mixer_elem_info_free(cval
);
2593 kctl
->private_data
= NULL
;
2595 if (kctl
->private_value
) {
2596 char **itemlist
= (char **)kctl
->private_value
;
2597 for (i
= 0; i
< num_ins
; i
++)
2600 kctl
->private_value
= 0;
2605 * parse a selector unit
2607 static int parse_audio_selector_unit(struct mixer_build
*state
, int unitid
,
2610 struct uac_selector_unit_descriptor
*desc
= raw_desc
;
2611 unsigned int i
, nameid
, len
;
2613 struct usb_mixer_elem_info
*cval
;
2614 struct snd_kcontrol
*kctl
;
2615 const struct usbmix_name_map
*map
;
2618 for (i
= 0; i
< desc
->bNrInPins
; i
++) {
2619 err
= parse_audio_unit(state
, desc
->baSourceID
[i
]);
2624 if (desc
->bNrInPins
== 1) /* only one ? nonsense! */
2627 map
= find_map(state
->map
, unitid
, 0);
2628 if (check_ignored_ctl(map
))
2631 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
2634 snd_usb_mixer_elem_init_std(&cval
->head
, state
->mixer
, unitid
);
2635 cval
->val_type
= USB_MIXER_U8
;
2638 cval
->max
= desc
->bNrInPins
;
2640 cval
->initialized
= 1;
2642 switch (state
->mixer
->protocol
) {
2649 if (desc
->bDescriptorSubtype
== UAC2_CLOCK_SELECTOR
||
2650 desc
->bDescriptorSubtype
== UAC3_CLOCK_SELECTOR
)
2651 cval
->control
= UAC2_CX_CLOCK_SELECTOR
;
2652 else /* UAC2/3_SELECTOR_UNIT */
2653 cval
->control
= UAC2_SU_SELECTOR
;
2657 namelist
= kcalloc(desc
->bNrInPins
, sizeof(char *), GFP_KERNEL
);
2662 #define MAX_ITEM_NAME_LEN 64
2663 for (i
= 0; i
< desc
->bNrInPins
; i
++) {
2664 struct usb_audio_term iterm
;
2666 namelist
[i
] = kmalloc(MAX_ITEM_NAME_LEN
, GFP_KERNEL
);
2671 len
= check_mapped_selector_name(state
, unitid
, i
, namelist
[i
],
2673 if (! len
&& check_input_term(state
, desc
->baSourceID
[i
], &iterm
) >= 0)
2674 len
= get_term_name(state
->chip
, &iterm
, namelist
[i
],
2675 MAX_ITEM_NAME_LEN
, 0);
2677 sprintf(namelist
[i
], "Input %u", i
);
2680 kctl
= snd_ctl_new1(&mixer_selectunit_ctl
, cval
);
2682 usb_audio_err(state
->chip
, "cannot malloc kcontrol\n");
2686 kctl
->private_value
= (unsigned long)namelist
;
2687 kctl
->private_free
= usb_mixer_selector_elem_free
;
2689 /* check the static mapping table at first */
2690 len
= check_mapped_name(map
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
2693 switch (state
->mixer
->protocol
) {
2697 /* if iSelector is given, use it */
2698 nameid
= uac_selector_unit_iSelector(desc
);
2700 len
= snd_usb_copy_string_desc(state
->chip
,
2701 nameid
, kctl
->id
.name
,
2702 sizeof(kctl
->id
.name
));
2705 /* TODO: Class-Specific strings not yet supported */
2709 /* ... or pick up the terminal name at next */
2711 len
= get_term_name(state
->chip
, &state
->oterm
,
2712 kctl
->id
.name
, sizeof(kctl
->id
.name
), 0);
2713 /* ... or use the fixed string "USB" as the last resort */
2715 strlcpy(kctl
->id
.name
, "USB", sizeof(kctl
->id
.name
));
2717 /* and add the proper suffix */
2718 if (desc
->bDescriptorSubtype
== UAC2_CLOCK_SELECTOR
||
2719 desc
->bDescriptorSubtype
== UAC3_CLOCK_SELECTOR
)
2720 append_ctl_name(kctl
, " Clock Source");
2721 else if ((state
->oterm
.type
& 0xff00) == 0x0100)
2722 append_ctl_name(kctl
, " Capture Source");
2724 append_ctl_name(kctl
, " Playback Source");
2727 usb_audio_dbg(state
->chip
, "[%d] SU [%s] items = %d\n",
2728 cval
->head
.id
, kctl
->id
.name
, desc
->bNrInPins
);
2729 return snd_usb_mixer_add_control(&cval
->head
, kctl
);
2732 for (i
= 0; i
< desc
->bNrInPins
; i
++)
2736 usb_mixer_elem_info_free(cval
);
2741 * parse an audio unit recursively
2744 static int parse_audio_unit(struct mixer_build
*state
, int unitid
)
2747 int protocol
= state
->mixer
->protocol
;
2749 if (test_and_set_bit(unitid
, state
->unitbitmap
))
2750 return 0; /* the unit already visited */
2752 p1
= find_audio_control_unit(state
, unitid
);
2754 usb_audio_err(state
->chip
, "unit %d not found!\n", unitid
);
2758 if (!snd_usb_validate_audio_desc(p1
, protocol
)) {
2759 usb_audio_dbg(state
->chip
, "invalid unit %d\n", unitid
);
2760 return 0; /* skip invalid unit */
2763 switch (PTYPE(protocol
, p1
[2])) {
2764 case PTYPE(UAC_VERSION_1
, UAC_INPUT_TERMINAL
):
2765 case PTYPE(UAC_VERSION_2
, UAC_INPUT_TERMINAL
):
2766 case PTYPE(UAC_VERSION_3
, UAC_INPUT_TERMINAL
):
2767 return parse_audio_input_terminal(state
, unitid
, p1
);
2768 case PTYPE(UAC_VERSION_1
, UAC_MIXER_UNIT
):
2769 case PTYPE(UAC_VERSION_2
, UAC_MIXER_UNIT
):
2770 case PTYPE(UAC_VERSION_3
, UAC3_MIXER_UNIT
):
2771 return parse_audio_mixer_unit(state
, unitid
, p1
);
2772 case PTYPE(UAC_VERSION_2
, UAC2_CLOCK_SOURCE
):
2773 case PTYPE(UAC_VERSION_3
, UAC3_CLOCK_SOURCE
):
2774 return parse_clock_source_unit(state
, unitid
, p1
);
2775 case PTYPE(UAC_VERSION_1
, UAC_SELECTOR_UNIT
):
2776 case PTYPE(UAC_VERSION_2
, UAC_SELECTOR_UNIT
):
2777 case PTYPE(UAC_VERSION_3
, UAC3_SELECTOR_UNIT
):
2778 case PTYPE(UAC_VERSION_2
, UAC2_CLOCK_SELECTOR
):
2779 case PTYPE(UAC_VERSION_3
, UAC3_CLOCK_SELECTOR
):
2780 return parse_audio_selector_unit(state
, unitid
, p1
);
2781 case PTYPE(UAC_VERSION_1
, UAC_FEATURE_UNIT
):
2782 case PTYPE(UAC_VERSION_2
, UAC_FEATURE_UNIT
):
2783 case PTYPE(UAC_VERSION_3
, UAC3_FEATURE_UNIT
):
2784 return parse_audio_feature_unit(state
, unitid
, p1
);
2785 case PTYPE(UAC_VERSION_1
, UAC1_PROCESSING_UNIT
):
2786 case PTYPE(UAC_VERSION_2
, UAC2_PROCESSING_UNIT_V2
):
2787 case PTYPE(UAC_VERSION_3
, UAC3_PROCESSING_UNIT
):
2788 return parse_audio_processing_unit(state
, unitid
, p1
);
2789 case PTYPE(UAC_VERSION_1
, UAC1_EXTENSION_UNIT
):
2790 case PTYPE(UAC_VERSION_2
, UAC2_EXTENSION_UNIT_V2
):
2791 case PTYPE(UAC_VERSION_3
, UAC3_EXTENSION_UNIT
):
2792 return parse_audio_extension_unit(state
, unitid
, p1
);
2793 case PTYPE(UAC_VERSION_2
, UAC2_EFFECT_UNIT
):
2794 case PTYPE(UAC_VERSION_3
, UAC3_EFFECT_UNIT
):
2795 return 0; /* FIXME - effect units not implemented yet */
2797 usb_audio_err(state
->chip
,
2798 "unit %u: unexpected type 0x%02x\n",
2804 static void snd_usb_mixer_free(struct usb_mixer_interface
*mixer
)
2806 /* kill pending URBs */
2807 snd_usb_mixer_disconnect(mixer
);
2809 kfree(mixer
->id_elems
);
2811 kfree(mixer
->urb
->transfer_buffer
);
2812 usb_free_urb(mixer
->urb
);
2814 usb_free_urb(mixer
->rc_urb
);
2815 kfree(mixer
->rc_setup_packet
);
2819 static int snd_usb_mixer_dev_free(struct snd_device
*device
)
2821 struct usb_mixer_interface
*mixer
= device
->device_data
;
2822 snd_usb_mixer_free(mixer
);
2826 /* UAC3 predefined channels configuration */
2827 struct uac3_badd_profile
{
2830 int c_chmask
; /* capture channels mask */
2831 int p_chmask
; /* playback channels mask */
2832 int st_chmask
; /* side tone mixing channel mask */
2835 static const struct uac3_badd_profile uac3_badd_profiles
[] = {
2838 * BAIF, BAOF or combination of both
2839 * IN: Mono or Stereo cfg, Mono alt possible
2840 * OUT: Mono or Stereo cfg, Mono alt possible
2842 .subclass
= UAC3_FUNCTION_SUBCLASS_GENERIC_IO
,
2843 .name
= "GENERIC IO",
2844 .c_chmask
= -1, /* dynamic channels */
2845 .p_chmask
= -1, /* dynamic channels */
2848 /* BAOF; Stereo only cfg, Mono alt possible */
2849 .subclass
= UAC3_FUNCTION_SUBCLASS_HEADPHONE
,
2850 .name
= "HEADPHONE",
2854 /* BAOF; Mono or Stereo cfg, Mono alt possible */
2855 .subclass
= UAC3_FUNCTION_SUBCLASS_SPEAKER
,
2857 .p_chmask
= -1, /* dynamic channels */
2860 /* BAIF; Mono or Stereo cfg, Mono alt possible */
2861 .subclass
= UAC3_FUNCTION_SUBCLASS_MICROPHONE
,
2862 .name
= "MICROPHONE",
2863 .c_chmask
= -1, /* dynamic channels */
2869 * OUT: Mono or Stereo cfg, Mono alt possible
2871 .subclass
= UAC3_FUNCTION_SUBCLASS_HEADSET
,
2874 .p_chmask
= -1, /* dynamic channels */
2878 /* BAIOF; IN: Mono only; OUT: Stereo only, Mono alt possible */
2879 .subclass
= UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER
,
2880 .name
= "HEADSET ADAPTER",
2886 /* BAIF + BAOF; IN: Mono only; OUT: Mono only */
2887 .subclass
= UAC3_FUNCTION_SUBCLASS_SPEAKERPHONE
,
2888 .name
= "SPEAKERPHONE",
2892 { 0 } /* terminator */
2895 static bool uac3_badd_func_has_valid_channels(struct usb_mixer_interface
*mixer
,
2896 const struct uac3_badd_profile
*f
,
2897 int c_chmask
, int p_chmask
)
2900 * If both playback/capture channels are dynamic, make sure
2901 * at least one channel is present
2903 if (f
->c_chmask
< 0 && f
->p_chmask
< 0) {
2904 if (!c_chmask
&& !p_chmask
) {
2905 usb_audio_warn(mixer
->chip
, "BAAD %s: no channels?",
2912 if ((f
->c_chmask
< 0 && !c_chmask
) ||
2913 (f
->c_chmask
>= 0 && f
->c_chmask
!= c_chmask
)) {
2914 usb_audio_warn(mixer
->chip
, "BAAD %s c_chmask mismatch",
2918 if ((f
->p_chmask
< 0 && !p_chmask
) ||
2919 (f
->p_chmask
>= 0 && f
->p_chmask
!= p_chmask
)) {
2920 usb_audio_warn(mixer
->chip
, "BAAD %s p_chmask mismatch",
2928 * create mixer controls for UAC3 BADD profiles
2930 * UAC3 BADD device doesn't contain CS descriptors thus we will guess everything
2932 * BADD device may contain Mixer Unit, which doesn't have any controls, skip it
2934 static int snd_usb_mixer_controls_badd(struct usb_mixer_interface
*mixer
,
2937 struct usb_device
*dev
= mixer
->chip
->dev
;
2938 struct usb_interface_assoc_descriptor
*assoc
;
2939 int badd_profile
= mixer
->chip
->badd_profile
;
2940 const struct uac3_badd_profile
*f
;
2941 const struct usbmix_ctl_map
*map
;
2942 int p_chmask
= 0, c_chmask
= 0, st_chmask
= 0;
2945 assoc
= usb_ifnum_to_if(dev
, ctrlif
)->intf_assoc
;
2947 /* Detect BADD capture/playback channels from AS EP descriptors */
2948 for (i
= 0; i
< assoc
->bInterfaceCount
; i
++) {
2949 int intf
= assoc
->bFirstInterface
+ i
;
2951 struct usb_interface
*iface
;
2952 struct usb_host_interface
*alts
;
2953 struct usb_interface_descriptor
*altsd
;
2954 unsigned int maxpacksize
;
2961 iface
= usb_ifnum_to_if(dev
, intf
);
2965 num
= iface
->num_altsetting
;
2971 * The number of Channels in an AudioStreaming interface
2972 * and the audio sample bit resolution (16 bits or 24
2973 * bits) can be derived from the wMaxPacketSize field in
2974 * the Standard AS Audio Data Endpoint descriptor in
2975 * Alternate Setting 1
2977 alts
= &iface
->altsetting
[1];
2978 altsd
= get_iface_desc(alts
);
2980 if (altsd
->bNumEndpoints
< 1)
2983 /* check direction */
2984 dir_in
= (get_endpoint(alts
, 0)->bEndpointAddress
& USB_DIR_IN
);
2985 maxpacksize
= le16_to_cpu(get_endpoint(alts
, 0)->wMaxPacketSize
);
2987 switch (maxpacksize
) {
2989 usb_audio_err(mixer
->chip
,
2990 "incorrect wMaxPacketSize 0x%x for BADD profile\n",
2993 case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_16
:
2994 case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_16
:
2995 case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_24
:
2996 case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_24
:
2999 case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_16
:
3000 case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_16
:
3001 case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_24
:
3002 case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_24
:
3013 usb_audio_dbg(mixer
->chip
,
3014 "UAC3 BADD profile 0x%x: detected c_chmask=%d p_chmask=%d\n",
3015 badd_profile
, c_chmask
, p_chmask
);
3017 /* check the mapping table */
3018 for (map
= uac3_badd_usbmix_ctl_maps
; map
->id
; map
++) {
3019 if (map
->id
== badd_profile
)
3026 for (f
= uac3_badd_profiles
; f
->name
; f
++) {
3027 if (badd_profile
== f
->subclass
)
3032 if (!uac3_badd_func_has_valid_channels(mixer
, f
, c_chmask
, p_chmask
))
3034 st_chmask
= f
->st_chmask
;
3038 /* Master channel, always writable */
3039 build_feature_ctl_badd(mixer
, 0, UAC_FU_MUTE
,
3040 UAC3_BADD_FU_ID2
, map
->map
);
3041 /* Mono/Stereo volume channels, always writable */
3042 build_feature_ctl_badd(mixer
, p_chmask
, UAC_FU_VOLUME
,
3043 UAC3_BADD_FU_ID2
, map
->map
);
3048 /* Master channel, always writable */
3049 build_feature_ctl_badd(mixer
, 0, UAC_FU_MUTE
,
3050 UAC3_BADD_FU_ID5
, map
->map
);
3051 /* Mono/Stereo volume channels, always writable */
3052 build_feature_ctl_badd(mixer
, c_chmask
, UAC_FU_VOLUME
,
3053 UAC3_BADD_FU_ID5
, map
->map
);
3056 /* Side tone-mixing */
3058 /* Master channel, always writable */
3059 build_feature_ctl_badd(mixer
, 0, UAC_FU_MUTE
,
3060 UAC3_BADD_FU_ID7
, map
->map
);
3061 /* Mono volume channel, always writable */
3062 build_feature_ctl_badd(mixer
, 1, UAC_FU_VOLUME
,
3063 UAC3_BADD_FU_ID7
, map
->map
);
3066 /* Insertion Control */
3067 if (f
->subclass
== UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER
) {
3068 struct usb_audio_term iterm
, oterm
;
3070 /* Input Term - Insertion control */
3071 memset(&iterm
, 0, sizeof(iterm
));
3072 iterm
.id
= UAC3_BADD_IT_ID4
;
3073 iterm
.type
= UAC_BIDIR_TERMINAL_HEADSET
;
3074 build_connector_control(mixer
, &iterm
, true);
3076 /* Output Term - Insertion control */
3077 memset(&oterm
, 0, sizeof(oterm
));
3078 oterm
.id
= UAC3_BADD_OT_ID3
;
3079 oterm
.type
= UAC_BIDIR_TERMINAL_HEADSET
;
3080 build_connector_control(mixer
, &oterm
, false);
3087 * create mixer controls
3089 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
3091 static int snd_usb_mixer_controls(struct usb_mixer_interface
*mixer
)
3093 struct mixer_build state
;
3095 const struct usbmix_ctl_map
*map
;
3098 memset(&state
, 0, sizeof(state
));
3099 state
.chip
= mixer
->chip
;
3100 state
.mixer
= mixer
;
3101 state
.buffer
= mixer
->hostif
->extra
;
3102 state
.buflen
= mixer
->hostif
->extralen
;
3104 /* check the mapping table */
3105 for (map
= usbmix_ctl_maps
; map
->id
; map
++) {
3106 if (map
->id
== state
.chip
->usb_id
) {
3107 state
.map
= map
->map
;
3108 state
.selector_map
= map
->selector_map
;
3109 mixer
->ignore_ctl_error
= map
->ignore_ctl_error
;
3115 while ((p
= snd_usb_find_csint_desc(mixer
->hostif
->extra
,
3116 mixer
->hostif
->extralen
,
3117 p
, UAC_OUTPUT_TERMINAL
)) != NULL
) {
3118 if (!snd_usb_validate_audio_desc(p
, mixer
->protocol
))
3119 continue; /* skip invalid descriptor */
3121 if (mixer
->protocol
== UAC_VERSION_1
) {
3122 struct uac1_output_terminal_descriptor
*desc
= p
;
3124 /* mark terminal ID as visited */
3125 set_bit(desc
->bTerminalID
, state
.unitbitmap
);
3126 state
.oterm
.id
= desc
->bTerminalID
;
3127 state
.oterm
.type
= le16_to_cpu(desc
->wTerminalType
);
3128 state
.oterm
.name
= desc
->iTerminal
;
3129 err
= parse_audio_unit(&state
, desc
->bSourceID
);
3130 if (err
< 0 && err
!= -EINVAL
)
3132 } else if (mixer
->protocol
== UAC_VERSION_2
) {
3133 struct uac2_output_terminal_descriptor
*desc
= p
;
3135 /* mark terminal ID as visited */
3136 set_bit(desc
->bTerminalID
, state
.unitbitmap
);
3137 state
.oterm
.id
= desc
->bTerminalID
;
3138 state
.oterm
.type
= le16_to_cpu(desc
->wTerminalType
);
3139 state
.oterm
.name
= desc
->iTerminal
;
3140 err
= parse_audio_unit(&state
, desc
->bSourceID
);
3141 if (err
< 0 && err
!= -EINVAL
)
3145 * For UAC2, use the same approach to also add the
3148 err
= parse_audio_unit(&state
, desc
->bCSourceID
);
3149 if (err
< 0 && err
!= -EINVAL
)
3152 if (uac_v2v3_control_is_readable(le16_to_cpu(desc
->bmControls
),
3153 UAC2_TE_CONNECTOR
)) {
3154 build_connector_control(state
.mixer
, &state
.oterm
,
3157 } else { /* UAC_VERSION_3 */
3158 struct uac3_output_terminal_descriptor
*desc
= p
;
3160 /* mark terminal ID as visited */
3161 set_bit(desc
->bTerminalID
, state
.unitbitmap
);
3162 state
.oterm
.id
= desc
->bTerminalID
;
3163 state
.oterm
.type
= le16_to_cpu(desc
->wTerminalType
);
3164 state
.oterm
.name
= le16_to_cpu(desc
->wTerminalDescrStr
);
3165 err
= parse_audio_unit(&state
, desc
->bSourceID
);
3166 if (err
< 0 && err
!= -EINVAL
)
3170 * For UAC3, use the same approach to also add the
3173 err
= parse_audio_unit(&state
, desc
->bCSourceID
);
3174 if (err
< 0 && err
!= -EINVAL
)
3177 if (uac_v2v3_control_is_readable(le32_to_cpu(desc
->bmControls
),
3178 UAC3_TE_INSERTION
)) {
3179 build_connector_control(state
.mixer
, &state
.oterm
,
3188 void snd_usb_mixer_notify_id(struct usb_mixer_interface
*mixer
, int unitid
)
3190 struct usb_mixer_elem_list
*list
;
3192 for_each_mixer_elem(list
, mixer
, unitid
) {
3193 struct usb_mixer_elem_info
*info
=
3194 mixer_elem_list_to_info(list
);
3195 /* invalidate cache, so the value is read from the device */
3197 snd_ctl_notify(mixer
->chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
3202 static void snd_usb_mixer_dump_cval(struct snd_info_buffer
*buffer
,
3203 struct usb_mixer_elem_list
*list
)
3205 struct usb_mixer_elem_info
*cval
= mixer_elem_list_to_info(list
);
3206 static const char * const val_types
[] = {"BOOLEAN", "INV_BOOLEAN",
3207 "S8", "U8", "S16", "U16"};
3208 snd_iprintf(buffer
, " Info: id=%i, control=%i, cmask=0x%x, "
3209 "channels=%i, type=\"%s\"\n", cval
->head
.id
,
3210 cval
->control
, cval
->cmask
, cval
->channels
,
3211 val_types
[cval
->val_type
]);
3212 snd_iprintf(buffer
, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
3213 cval
->min
, cval
->max
, cval
->dBmin
, cval
->dBmax
);
3216 static void snd_usb_mixer_proc_read(struct snd_info_entry
*entry
,
3217 struct snd_info_buffer
*buffer
)
3219 struct snd_usb_audio
*chip
= entry
->private_data
;
3220 struct usb_mixer_interface
*mixer
;
3221 struct usb_mixer_elem_list
*list
;
3224 list_for_each_entry(mixer
, &chip
->mixer_list
, list
) {
3226 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
3227 chip
->usb_id
, mixer_ctrl_intf(mixer
),
3228 mixer
->ignore_ctl_error
);
3229 snd_iprintf(buffer
, "Card: %s\n", chip
->card
->longname
);
3230 for (unitid
= 0; unitid
< MAX_ID_ELEMS
; unitid
++) {
3231 for_each_mixer_elem(list
, mixer
, unitid
) {
3232 snd_iprintf(buffer
, " Unit: %i\n", list
->id
);
3235 " Control: name=\"%s\", index=%i\n",
3236 list
->kctl
->id
.name
,
3237 list
->kctl
->id
.index
);
3239 list
->dump(buffer
, list
);
3245 static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface
*mixer
,
3246 int attribute
, int value
, int index
)
3248 struct usb_mixer_elem_list
*list
;
3249 __u8 unitid
= (index
>> 8) & 0xff;
3250 __u8 control
= (value
>> 8) & 0xff;
3251 __u8 channel
= value
& 0xff;
3252 unsigned int count
= 0;
3254 if (channel
>= MAX_CHANNELS
) {
3255 usb_audio_dbg(mixer
->chip
,
3256 "%s(): bogus channel number %d\n",
3261 for_each_mixer_elem(list
, mixer
, unitid
)
3267 for_each_mixer_elem(list
, mixer
, unitid
) {
3268 struct usb_mixer_elem_info
*info
;
3273 info
= mixer_elem_list_to_info(list
);
3274 if (count
> 1 && info
->control
!= control
)
3277 switch (attribute
) {
3279 /* invalidate cache, so the value is read from the device */
3281 info
->cached
&= ~(1 << channel
);
3282 else /* master channel */
3285 snd_ctl_notify(mixer
->chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
3286 &info
->head
.kctl
->id
);
3298 usb_audio_dbg(mixer
->chip
,
3299 "unknown attribute %d in interrupt\n",
3306 static void snd_usb_mixer_interrupt(struct urb
*urb
)
3308 struct usb_mixer_interface
*mixer
= urb
->context
;
3309 int len
= urb
->actual_length
;
3310 int ustatus
= urb
->status
;
3315 if (mixer
->protocol
== UAC_VERSION_1
) {
3316 struct uac1_status_word
*status
;
3318 for (status
= urb
->transfer_buffer
;
3319 len
>= sizeof(*status
);
3320 len
-= sizeof(*status
), status
++) {
3321 dev_dbg(&urb
->dev
->dev
, "status interrupt: %02x %02x\n",
3322 status
->bStatusType
,
3323 status
->bOriginator
);
3325 /* ignore any notifications not from the control interface */
3326 if ((status
->bStatusType
& UAC1_STATUS_TYPE_ORIG_MASK
) !=
3327 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF
)
3330 if (status
->bStatusType
& UAC1_STATUS_TYPE_MEM_CHANGED
)
3331 snd_usb_mixer_rc_memory_change(mixer
, status
->bOriginator
);
3333 snd_usb_mixer_notify_id(mixer
, status
->bOriginator
);
3335 } else { /* UAC_VERSION_2 */
3336 struct uac2_interrupt_data_msg
*msg
;
3338 for (msg
= urb
->transfer_buffer
;
3339 len
>= sizeof(*msg
);
3340 len
-= sizeof(*msg
), msg
++) {
3341 /* drop vendor specific and endpoint requests */
3342 if ((msg
->bInfo
& UAC2_INTERRUPT_DATA_MSG_VENDOR
) ||
3343 (msg
->bInfo
& UAC2_INTERRUPT_DATA_MSG_EP
))
3346 snd_usb_mixer_interrupt_v2(mixer
, msg
->bAttribute
,
3347 le16_to_cpu(msg
->wValue
),
3348 le16_to_cpu(msg
->wIndex
));
3353 if (ustatus
!= -ENOENT
&&
3354 ustatus
!= -ECONNRESET
&&
3355 ustatus
!= -ESHUTDOWN
) {
3356 urb
->dev
= mixer
->chip
->dev
;
3357 usb_submit_urb(urb
, GFP_ATOMIC
);
3361 /* create the handler for the optional status interrupt endpoint */
3362 static int snd_usb_mixer_status_create(struct usb_mixer_interface
*mixer
)
3364 struct usb_endpoint_descriptor
*ep
;
3365 void *transfer_buffer
;
3369 /* we need one interrupt input endpoint */
3370 if (get_iface_desc(mixer
->hostif
)->bNumEndpoints
< 1)
3372 ep
= get_endpoint(mixer
->hostif
, 0);
3373 if (!usb_endpoint_dir_in(ep
) || !usb_endpoint_xfer_int(ep
))
3376 epnum
= usb_endpoint_num(ep
);
3377 buffer_length
= le16_to_cpu(ep
->wMaxPacketSize
);
3378 transfer_buffer
= kmalloc(buffer_length
, GFP_KERNEL
);
3379 if (!transfer_buffer
)
3381 mixer
->urb
= usb_alloc_urb(0, GFP_KERNEL
);
3383 kfree(transfer_buffer
);
3386 usb_fill_int_urb(mixer
->urb
, mixer
->chip
->dev
,
3387 usb_rcvintpipe(mixer
->chip
->dev
, epnum
),
3388 transfer_buffer
, buffer_length
,
3389 snd_usb_mixer_interrupt
, mixer
, ep
->bInterval
);
3390 usb_submit_urb(mixer
->urb
, GFP_KERNEL
);
3394 static int keep_iface_ctl_get(struct snd_kcontrol
*kcontrol
,
3395 struct snd_ctl_elem_value
*ucontrol
)
3397 struct usb_mixer_interface
*mixer
= snd_kcontrol_chip(kcontrol
);
3399 ucontrol
->value
.integer
.value
[0] = mixer
->chip
->keep_iface
;
3403 static int keep_iface_ctl_put(struct snd_kcontrol
*kcontrol
,
3404 struct snd_ctl_elem_value
*ucontrol
)
3406 struct usb_mixer_interface
*mixer
= snd_kcontrol_chip(kcontrol
);
3407 bool keep_iface
= !!ucontrol
->value
.integer
.value
[0];
3409 if (mixer
->chip
->keep_iface
== keep_iface
)
3411 mixer
->chip
->keep_iface
= keep_iface
;
3415 static const struct snd_kcontrol_new keep_iface_ctl
= {
3416 .iface
= SNDRV_CTL_ELEM_IFACE_CARD
,
3417 .name
= "Keep Interface",
3418 .info
= snd_ctl_boolean_mono_info
,
3419 .get
= keep_iface_ctl_get
,
3420 .put
= keep_iface_ctl_put
,
3423 static int create_keep_iface_ctl(struct usb_mixer_interface
*mixer
)
3425 struct snd_kcontrol
*kctl
= snd_ctl_new1(&keep_iface_ctl
, mixer
);
3427 /* need only one control per card */
3428 if (snd_ctl_find_id(mixer
->chip
->card
, &kctl
->id
)) {
3429 snd_ctl_free_one(kctl
);
3433 return snd_ctl_add(mixer
->chip
->card
, kctl
);
3436 int snd_usb_create_mixer(struct snd_usb_audio
*chip
, int ctrlif
,
3439 static const struct snd_device_ops dev_ops
= {
3440 .dev_free
= snd_usb_mixer_dev_free
3442 struct usb_mixer_interface
*mixer
;
3445 strcpy(chip
->card
->mixername
, "USB Mixer");
3447 mixer
= kzalloc(sizeof(*mixer
), GFP_KERNEL
);
3451 mixer
->ignore_ctl_error
= ignore_error
;
3452 mixer
->id_elems
= kcalloc(MAX_ID_ELEMS
, sizeof(*mixer
->id_elems
),
3454 if (!mixer
->id_elems
) {
3459 mixer
->hostif
= &usb_ifnum_to_if(chip
->dev
, ctrlif
)->altsetting
[0];
3460 switch (get_iface_desc(mixer
->hostif
)->bInterfaceProtocol
) {
3463 mixer
->protocol
= UAC_VERSION_1
;
3466 mixer
->protocol
= UAC_VERSION_2
;
3469 mixer
->protocol
= UAC_VERSION_3
;
3473 if (mixer
->protocol
== UAC_VERSION_3
&&
3474 chip
->badd_profile
>= UAC3_FUNCTION_SUBCLASS_GENERIC_IO
) {
3475 err
= snd_usb_mixer_controls_badd(mixer
, ctrlif
);
3479 err
= snd_usb_mixer_controls(mixer
);
3484 err
= snd_usb_mixer_status_create(mixer
);
3488 err
= create_keep_iface_ctl(mixer
);
3492 err
= snd_usb_mixer_apply_create_quirk(mixer
);
3496 err
= snd_device_new(chip
->card
, SNDRV_DEV_CODEC
, mixer
, &dev_ops
);
3500 if (list_empty(&chip
->mixer_list
))
3501 snd_card_ro_proc_new(chip
->card
, "usbmixer", chip
,
3502 snd_usb_mixer_proc_read
);
3504 list_add(&mixer
->list
, &chip
->mixer_list
);
3508 snd_usb_mixer_free(mixer
);
3512 void snd_usb_mixer_disconnect(struct usb_mixer_interface
*mixer
)
3514 if (mixer
->disconnected
)
3517 usb_kill_urb(mixer
->urb
);
3519 usb_kill_urb(mixer
->rc_urb
);
3520 if (mixer
->private_free
)
3521 mixer
->private_free(mixer
);
3522 mixer
->disconnected
= true;
3526 /* stop any bus activity of a mixer */
3527 static void snd_usb_mixer_inactivate(struct usb_mixer_interface
*mixer
)
3529 usb_kill_urb(mixer
->urb
);
3530 usb_kill_urb(mixer
->rc_urb
);
3533 static int snd_usb_mixer_activate(struct usb_mixer_interface
*mixer
)
3538 err
= usb_submit_urb(mixer
->urb
, GFP_NOIO
);
3546 int snd_usb_mixer_suspend(struct usb_mixer_interface
*mixer
)
3548 snd_usb_mixer_inactivate(mixer
);
3549 if (mixer
->private_suspend
)
3550 mixer
->private_suspend(mixer
);
3554 static int restore_mixer_value(struct usb_mixer_elem_list
*list
)
3556 struct usb_mixer_elem_info
*cval
= mixer_elem_list_to_info(list
);
3561 for (c
= 0; c
< MAX_CHANNELS
; c
++) {
3562 if (!(cval
->cmask
& (1 << c
)))
3564 if (cval
->cached
& (1 << (c
+ 1))) {
3565 err
= snd_usb_set_cur_mix_value(cval
, c
+ 1, idx
,
3566 cval
->cache_val
[idx
]);
3575 err
= snd_usb_set_cur_mix_value(cval
, 0, 0, *cval
->cache_val
);
3584 int snd_usb_mixer_resume(struct usb_mixer_interface
*mixer
, bool reset_resume
)
3586 struct usb_mixer_elem_list
*list
;
3590 /* restore cached mixer values */
3591 for (id
= 0; id
< MAX_ID_ELEMS
; id
++) {
3592 for_each_mixer_elem(list
, mixer
, id
) {
3594 err
= list
->resume(list
);
3602 snd_usb_mixer_resume_quirk(mixer
);
3604 return snd_usb_mixer_activate(mixer
);
3608 void snd_usb_mixer_elem_init_std(struct usb_mixer_elem_list
*list
,
3609 struct usb_mixer_interface
*mixer
,
3612 list
->mixer
= mixer
;
3614 list
->dump
= snd_usb_mixer_dump_cval
;
3616 list
->resume
= restore_mixer_value
;