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
30 * TODOs, for both the mixer and the streaming interfaces:
32 * - support for UAC2 effect units
33 * - support for graphical equalizers
34 * - RANGE and MEM set commands (UAC2)
35 * - RANGE and MEM interrupt dispatchers (UAC2)
36 * - audio channel clustering (UAC2)
37 * - audio sample rate converter units (UAC2)
38 * - proper handling of clock multipliers (UAC2)
39 * - dispatch clock change notifications (UAC2)
40 * - stop PCM streams which use a clock that became invalid
41 * - stop PCM streams which use a clock selector that has changed
42 * - parse available sample rates again when clock sources changed
45 #include <linux/bitops.h>
46 #include <linux/init.h>
47 #include <linux/list.h>
48 #include <linux/log2.h>
49 #include <linux/slab.h>
50 #include <linux/string.h>
51 #include <linux/usb.h>
52 #include <linux/usb/audio.h>
53 #include <linux/usb/audio-v2.h>
54 #include <linux/usb/audio-v3.h>
56 #include <sound/core.h>
57 #include <sound/control.h>
58 #include <sound/hwdep.h>
59 #include <sound/info.h>
60 #include <sound/tlv.h>
65 #include "mixer_quirks.h"
68 #define MAX_ID_ELEMS 256
70 struct usb_audio_term
{
74 unsigned int chconfig
;
78 struct usbmix_name_map
;
81 struct snd_usb_audio
*chip
;
82 struct usb_mixer_interface
*mixer
;
83 unsigned char *buffer
;
85 DECLARE_BITMAP(unitbitmap
, MAX_ID_ELEMS
);
86 struct usb_audio_term oterm
;
87 const struct usbmix_name_map
*map
;
88 const struct usbmix_selector_map
*selector_map
;
91 /*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
93 USB_XU_CLOCK_RATE
= 0xe301,
94 USB_XU_CLOCK_SOURCE
= 0xe302,
95 USB_XU_DIGITAL_IO_STATUS
= 0xe303,
96 USB_XU_DEVICE_OPTIONS
= 0xe304,
97 USB_XU_DIRECT_MONITORING
= 0xe305,
98 USB_XU_METERING
= 0xe306
101 USB_XU_CLOCK_SOURCE_SELECTOR
= 0x02, /* clock source*/
102 USB_XU_CLOCK_RATE_SELECTOR
= 0x03, /* clock rate */
103 USB_XU_DIGITAL_FORMAT_SELECTOR
= 0x01, /* the spdif format */
104 USB_XU_SOFT_LIMIT_SELECTOR
= 0x03 /* soft limiter */
108 * manual mapping of mixer names
109 * if the mixer topology is too complicated and the parsed names are
110 * ambiguous, add the entries in usbmixer_maps.c.
112 #include "mixer_maps.c"
114 static const struct usbmix_name_map
*
115 find_map(const struct usbmix_name_map
*p
, int unitid
, int control
)
121 if (p
->id
== unitid
&&
122 (!control
|| !p
->control
|| control
== p
->control
))
128 /* get the mapped name if the unit matches */
130 check_mapped_name(const struct usbmix_name_map
*p
, char *buf
, int buflen
)
136 return strlcpy(buf
, p
->name
, buflen
);
139 /* ignore the error value if ignore_ctl_error flag is set */
140 #define filter_error(cval, err) \
141 ((cval)->head.mixer->ignore_ctl_error ? 0 : (err))
143 /* check whether the control should be ignored */
145 check_ignored_ctl(const struct usbmix_name_map
*p
)
147 if (!p
|| p
->name
|| p
->dB
)
153 static inline void check_mapped_dB(const struct usbmix_name_map
*p
,
154 struct usb_mixer_elem_info
*cval
)
157 cval
->dBmin
= p
->dB
->min
;
158 cval
->dBmax
= p
->dB
->max
;
159 cval
->initialized
= 1;
163 /* get the mapped selector source name */
164 static int check_mapped_selector_name(struct mixer_build
*state
, int unitid
,
165 int index
, char *buf
, int buflen
)
167 const struct usbmix_selector_map
*p
;
169 if (!state
->selector_map
)
171 for (p
= state
->selector_map
; p
->id
; p
++) {
172 if (p
->id
== unitid
&& index
< p
->count
)
173 return strlcpy(buf
, p
->names
[index
], buflen
);
179 * find an audio control unit with the given unit id
181 static void *find_audio_control_unit(struct mixer_build
*state
,
184 /* we just parse the header */
185 struct uac_feature_unit_descriptor
*hdr
= NULL
;
187 while ((hdr
= snd_usb_find_desc(state
->buffer
, state
->buflen
, hdr
,
188 USB_DT_CS_INTERFACE
)) != NULL
) {
189 if (hdr
->bLength
>= 4 &&
190 hdr
->bDescriptorSubtype
>= UAC_INPUT_TERMINAL
&&
191 hdr
->bDescriptorSubtype
<= UAC3_SAMPLE_RATE_CONVERTER
&&
192 hdr
->bUnitID
== unit
)
200 * copy a string with the given id
202 static int snd_usb_copy_string_desc(struct snd_usb_audio
*chip
,
203 int index
, char *buf
, int maxlen
)
205 int len
= usb_string(chip
->dev
, index
, buf
, maxlen
- 1);
215 * convert from the byte/word on usb descriptor to the zero-based integer
217 static int convert_signed_value(struct usb_mixer_elem_info
*cval
, int val
)
219 switch (cval
->val_type
) {
220 case USB_MIXER_BOOLEAN
:
222 case USB_MIXER_INV_BOOLEAN
:
245 * convert from the zero-based int to the byte/word for usb descriptor
247 static int convert_bytes_value(struct usb_mixer_elem_info
*cval
, int val
)
249 switch (cval
->val_type
) {
250 case USB_MIXER_BOOLEAN
:
252 case USB_MIXER_INV_BOOLEAN
:
261 return 0; /* not reached */
264 static int get_relative_value(struct usb_mixer_elem_info
*cval
, int val
)
270 else if (val
>= cval
->max
)
271 return (cval
->max
- cval
->min
+ cval
->res
- 1) / cval
->res
;
273 return (val
- cval
->min
) / cval
->res
;
276 static int get_abs_value(struct usb_mixer_elem_info
*cval
, int val
)
289 static int uac2_ctl_value_size(int val_type
)
301 return 0; /* unreachable */
306 * retrieve a mixer value
309 static int get_ctl_value_v1(struct usb_mixer_elem_info
*cval
, int request
,
310 int validx
, int *value_ret
)
312 struct snd_usb_audio
*chip
= cval
->head
.mixer
->chip
;
313 unsigned char buf
[2];
314 int val_len
= cval
->val_type
>= USB_MIXER_S16
? 2 : 1;
318 err
= snd_usb_lock_shutdown(chip
);
322 while (timeout
-- > 0) {
323 idx
= snd_usb_ctrl_intf(chip
) | (cval
->head
.id
<< 8);
324 err
= snd_usb_ctl_msg(chip
->dev
, usb_rcvctrlpipe(chip
->dev
, 0), request
,
325 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
326 validx
, idx
, buf
, val_len
);
327 if (err
>= val_len
) {
328 *value_ret
= convert_signed_value(cval
, snd_usb_combine_bytes(buf
, val_len
));
331 } else if (err
== -ETIMEDOUT
) {
336 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
337 request
, validx
, idx
, cval
->val_type
);
341 snd_usb_unlock_shutdown(chip
);
345 static int get_ctl_value_v2(struct usb_mixer_elem_info
*cval
, int request
,
346 int validx
, int *value_ret
)
348 struct snd_usb_audio
*chip
= cval
->head
.mixer
->chip
;
349 /* enough space for one range */
350 unsigned char buf
[sizeof(__u16
) + 3 * sizeof(__u32
)];
352 int idx
= 0, ret
, val_size
, size
;
355 val_size
= uac2_ctl_value_size(cval
->val_type
);
357 if (request
== UAC_GET_CUR
) {
358 bRequest
= UAC2_CS_CUR
;
361 bRequest
= UAC2_CS_RANGE
;
362 size
= sizeof(__u16
) + 3 * val_size
;
365 memset(buf
, 0, sizeof(buf
));
367 ret
= snd_usb_lock_shutdown(chip
) ? -EIO
: 0;
371 idx
= snd_usb_ctrl_intf(chip
) | (cval
->head
.id
<< 8);
372 ret
= snd_usb_ctl_msg(chip
->dev
, usb_rcvctrlpipe(chip
->dev
, 0), bRequest
,
373 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
374 validx
, idx
, buf
, size
);
375 snd_usb_unlock_shutdown(chip
);
380 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
381 request
, validx
, idx
, cval
->val_type
);
385 /* FIXME: how should we handle multiple triplets here? */
392 val
= buf
+ sizeof(__u16
);
395 val
= buf
+ sizeof(__u16
) + val_size
;
398 val
= buf
+ sizeof(__u16
) + val_size
* 2;
404 *value_ret
= convert_signed_value(cval
,
405 snd_usb_combine_bytes(val
, val_size
));
410 static int get_ctl_value(struct usb_mixer_elem_info
*cval
, int request
,
411 int validx
, int *value_ret
)
413 validx
+= cval
->idx_off
;
415 return (cval
->head
.mixer
->protocol
== UAC_VERSION_1
) ?
416 get_ctl_value_v1(cval
, request
, validx
, value_ret
) :
417 get_ctl_value_v2(cval
, request
, validx
, value_ret
);
420 static int get_cur_ctl_value(struct usb_mixer_elem_info
*cval
,
421 int validx
, int *value
)
423 return get_ctl_value(cval
, UAC_GET_CUR
, validx
, value
);
426 /* channel = 0: master, 1 = first channel */
427 static inline int get_cur_mix_raw(struct usb_mixer_elem_info
*cval
,
428 int channel
, int *value
)
430 return get_ctl_value(cval
, UAC_GET_CUR
,
431 (cval
->control
<< 8) | channel
,
435 int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info
*cval
,
436 int channel
, int index
, int *value
)
440 if (cval
->cached
& (1 << channel
)) {
441 *value
= cval
->cache_val
[index
];
444 err
= get_cur_mix_raw(cval
, channel
, value
);
446 if (!cval
->head
.mixer
->ignore_ctl_error
)
447 usb_audio_dbg(cval
->head
.mixer
->chip
,
448 "cannot get current value for control %d ch %d: err = %d\n",
449 cval
->control
, channel
, err
);
452 cval
->cached
|= 1 << channel
;
453 cval
->cache_val
[index
] = *value
;
461 int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info
*cval
,
462 int request
, int validx
, int value_set
)
464 struct snd_usb_audio
*chip
= cval
->head
.mixer
->chip
;
465 unsigned char buf
[4];
466 int idx
= 0, val_len
, err
, timeout
= 10;
468 validx
+= cval
->idx_off
;
471 if (cval
->head
.mixer
->protocol
== UAC_VERSION_1
) {
472 val_len
= cval
->val_type
>= USB_MIXER_S16
? 2 : 1;
473 } else { /* UAC_VERSION_2/3 */
474 val_len
= uac2_ctl_value_size(cval
->val_type
);
477 if (request
!= UAC_SET_CUR
) {
478 usb_audio_dbg(chip
, "RANGE setting not yet supported\n");
482 request
= UAC2_CS_CUR
;
485 value_set
= convert_bytes_value(cval
, value_set
);
486 buf
[0] = value_set
& 0xff;
487 buf
[1] = (value_set
>> 8) & 0xff;
488 buf
[2] = (value_set
>> 16) & 0xff;
489 buf
[3] = (value_set
>> 24) & 0xff;
491 err
= snd_usb_lock_shutdown(chip
);
495 while (timeout
-- > 0) {
496 idx
= snd_usb_ctrl_intf(chip
) | (cval
->head
.id
<< 8);
497 err
= snd_usb_ctl_msg(chip
->dev
,
498 usb_sndctrlpipe(chip
->dev
, 0), request
,
499 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_OUT
,
500 validx
, idx
, buf
, val_len
);
504 } else if (err
== -ETIMEDOUT
) {
508 usb_audio_dbg(chip
, "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
509 request
, validx
, idx
, cval
->val_type
, buf
[0], buf
[1]);
513 snd_usb_unlock_shutdown(chip
);
517 static int set_cur_ctl_value(struct usb_mixer_elem_info
*cval
,
518 int validx
, int value
)
520 return snd_usb_mixer_set_ctl_value(cval
, UAC_SET_CUR
, validx
, value
);
523 int snd_usb_set_cur_mix_value(struct usb_mixer_elem_info
*cval
, int channel
,
524 int index
, int value
)
527 unsigned int read_only
= (channel
== 0) ?
528 cval
->master_readonly
:
529 cval
->ch_readonly
& (1 << (channel
- 1));
532 usb_audio_dbg(cval
->head
.mixer
->chip
,
533 "%s(): channel %d of control %d is read_only\n",
534 __func__
, channel
, cval
->control
);
538 err
= snd_usb_mixer_set_ctl_value(cval
,
539 UAC_SET_CUR
, (cval
->control
<< 8) | channel
,
543 cval
->cached
|= 1 << channel
;
544 cval
->cache_val
[index
] = value
;
549 * TLV callback for mixer volume controls
551 int snd_usb_mixer_vol_tlv(struct snd_kcontrol
*kcontrol
, int op_flag
,
552 unsigned int size
, unsigned int __user
*_tlv
)
554 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
555 DECLARE_TLV_DB_MINMAX(scale
, 0, 0);
557 if (size
< sizeof(scale
))
560 scale
[0] = SNDRV_CTL_TLVT_DB_MINMAX_MUTE
;
561 scale
[2] = cval
->dBmin
;
562 scale
[3] = cval
->dBmax
;
563 if (copy_to_user(_tlv
, scale
, sizeof(scale
)))
569 * parser routines begin here...
572 static int parse_audio_unit(struct mixer_build
*state
, int unitid
);
576 * check if the input/output channel routing is enabled on the given bitmap.
577 * used for mixer unit parser
579 static int check_matrix_bitmap(unsigned char *bmap
,
580 int ich
, int och
, int num_outs
)
582 int idx
= ich
* num_outs
+ och
;
583 return bmap
[idx
>> 3] & (0x80 >> (idx
& 7));
587 * add an alsa control element
588 * search and increment the index until an empty slot is found.
590 * if failed, give up and free the control instance.
593 int snd_usb_mixer_add_control(struct usb_mixer_elem_list
*list
,
594 struct snd_kcontrol
*kctl
)
596 struct usb_mixer_interface
*mixer
= list
->mixer
;
599 while (snd_ctl_find_id(mixer
->chip
->card
, &kctl
->id
))
601 err
= snd_ctl_add(mixer
->chip
->card
, kctl
);
603 usb_audio_dbg(mixer
->chip
, "cannot add control (err = %d)\n",
608 list
->next_id_elem
= mixer
->id_elems
[list
->id
];
609 mixer
->id_elems
[list
->id
] = list
;
614 * get a terminal name string
617 static struct iterm_name_combo
{
621 { 0x0300, "Output" },
622 { 0x0301, "Speaker" },
623 { 0x0302, "Headphone" },
624 { 0x0303, "HMD Audio" },
625 { 0x0304, "Desktop Speaker" },
626 { 0x0305, "Room Speaker" },
627 { 0x0306, "Com Speaker" },
629 { 0x0600, "External In" },
630 { 0x0601, "Analog In" },
631 { 0x0602, "Digital In" },
633 { 0x0604, "Legacy In" },
634 { 0x0605, "IEC958 In" },
635 { 0x0606, "1394 DA Stream" },
636 { 0x0607, "1394 DV Stream" },
637 { 0x0700, "Embedded" },
638 { 0x0701, "Noise Source" },
639 { 0x0702, "Equalization Noise" },
643 { 0x0706, "MiniDisk" },
644 { 0x0707, "Analog Tape" },
645 { 0x0708, "Phonograph" },
646 { 0x0709, "VCR Audio" },
647 { 0x070a, "Video Disk Audio" },
648 { 0x070b, "DVD Audio" },
649 { 0x070c, "TV Tuner Audio" },
650 { 0x070d, "Satellite Rec Audio" },
651 { 0x070e, "Cable Tuner Audio" },
652 { 0x070f, "DSS Audio" },
653 { 0x0710, "Radio Receiver" },
654 { 0x0711, "Radio Transmitter" },
655 { 0x0712, "Multi-Track Recorder" },
656 { 0x0713, "Synthesizer" },
660 static int get_term_name(struct snd_usb_audio
*chip
, struct usb_audio_term
*iterm
,
661 unsigned char *name
, int maxlen
, int term_only
)
663 struct iterm_name_combo
*names
;
667 len
= snd_usb_copy_string_desc(chip
, iterm
->name
,
673 /* virtual type - not a real terminal */
674 if (iterm
->type
>> 16) {
677 switch (iterm
->type
>> 16) {
678 case UAC_SELECTOR_UNIT
:
679 strcpy(name
, "Selector");
681 case UAC1_PROCESSING_UNIT
:
682 strcpy(name
, "Process Unit");
684 case UAC1_EXTENSION_UNIT
:
685 strcpy(name
, "Ext Unit");
688 strcpy(name
, "Mixer");
691 return sprintf(name
, "Unit %d", iterm
->id
);
695 switch (iterm
->type
& 0xff00) {
703 strcpy(name
, "Headset");
706 strcpy(name
, "Phone");
710 for (names
= iterm_names
; names
->type
; names
++) {
711 if (names
->type
== iterm
->type
) {
712 strcpy(name
, names
->name
);
713 return strlen(names
->name
);
721 * Get logical cluster information for UAC3 devices.
723 static int get_cluster_channels_v3(struct mixer_build
*state
, unsigned int cluster_id
)
725 struct uac3_cluster_header_descriptor c_header
;
728 err
= snd_usb_ctl_msg(state
->chip
->dev
,
729 usb_rcvctrlpipe(state
->chip
->dev
, 0),
730 UAC3_CS_REQ_HIGH_CAPABILITY_DESCRIPTOR
,
731 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
733 snd_usb_ctrl_intf(state
->chip
),
734 &c_header
, sizeof(c_header
));
737 if (err
!= sizeof(c_header
)) {
742 return c_header
.bNrChannels
;
745 usb_audio_err(state
->chip
, "cannot request logical cluster ID: %d (err: %d)\n", cluster_id
, err
);
750 * Get number of channels for a Mixer Unit.
752 static int uac_mixer_unit_get_channels(struct mixer_build
*state
,
753 struct uac_mixer_unit_descriptor
*desc
)
757 if (desc
->bLength
< 11)
759 if (!desc
->bNrInPins
)
762 switch (state
->mixer
->protocol
) {
766 mu_channels
= uac_mixer_unit_bNrChannels(desc
);
769 mu_channels
= get_cluster_channels_v3(state
,
770 uac3_mixer_unit_wClusterDescrID(desc
));
781 * parse the source unit recursively until it reaches to a terminal
782 * or a branched unit.
784 static int check_input_term(struct mixer_build
*state
, int id
,
785 struct usb_audio_term
*term
)
787 int protocol
= state
->mixer
->protocol
;
791 memset(term
, 0, sizeof(*term
));
792 while ((p1
= find_audio_control_unit(state
, id
)) != NULL
) {
793 unsigned char *hdr
= p1
;
796 if (protocol
== UAC_VERSION_1
|| protocol
== UAC_VERSION_2
) {
798 case UAC_INPUT_TERMINAL
:
799 if (protocol
== UAC_VERSION_1
) {
800 struct uac_input_terminal_descriptor
*d
= p1
;
802 term
->type
= le16_to_cpu(d
->wTerminalType
);
803 term
->channels
= d
->bNrChannels
;
804 term
->chconfig
= le16_to_cpu(d
->wChannelConfig
);
805 term
->name
= d
->iTerminal
;
806 } else { /* UAC_VERSION_2 */
807 struct uac2_input_terminal_descriptor
*d
= p1
;
809 /* call recursively to verify that the
810 * referenced clock entity is valid */
811 err
= check_input_term(state
, d
->bCSourceID
, term
);
815 /* save input term properties after recursion,
816 * to ensure they are not overriden by the
819 term
->type
= le16_to_cpu(d
->wTerminalType
);
820 term
->channels
= d
->bNrChannels
;
821 term
->chconfig
= le32_to_cpu(d
->bmChannelConfig
);
822 term
->name
= d
->iTerminal
;
825 case UAC_FEATURE_UNIT
: {
826 /* the header is the same for v1 and v2 */
827 struct uac_feature_unit_descriptor
*d
= p1
;
830 break; /* continue to parse */
832 case UAC_MIXER_UNIT
: {
833 struct uac_mixer_unit_descriptor
*d
= p1
;
835 term
->type
= d
->bDescriptorSubtype
<< 16; /* virtual type */
836 term
->channels
= uac_mixer_unit_bNrChannels(d
);
837 term
->chconfig
= uac_mixer_unit_wChannelConfig(d
, protocol
);
838 term
->name
= uac_mixer_unit_iMixer(d
);
841 case UAC_SELECTOR_UNIT
:
842 case UAC2_CLOCK_SELECTOR
: {
843 struct uac_selector_unit_descriptor
*d
= p1
;
844 /* call recursively to retrieve the channel info */
845 err
= check_input_term(state
, d
->baSourceID
[0], term
);
848 term
->type
= d
->bDescriptorSubtype
<< 16; /* virtual type */
850 term
->name
= uac_selector_unit_iSelector(d
);
853 case UAC1_PROCESSING_UNIT
:
854 case UAC1_EXTENSION_UNIT
:
855 /* UAC2_PROCESSING_UNIT_V2 */
856 /* UAC2_EFFECT_UNIT */
857 case UAC2_EXTENSION_UNIT_V2
: {
858 struct uac_processing_unit_descriptor
*d
= p1
;
860 if (protocol
== UAC_VERSION_2
&&
861 hdr
[2] == UAC2_EFFECT_UNIT
) {
862 /* UAC2/UAC1 unit IDs overlap here in an
863 * uncompatible way. Ignore this unit for now.
869 id
= d
->baSourceID
[0];
870 break; /* continue to parse */
872 term
->type
= d
->bDescriptorSubtype
<< 16; /* virtual type */
873 term
->channels
= uac_processing_unit_bNrChannels(d
);
874 term
->chconfig
= uac_processing_unit_wChannelConfig(d
, protocol
);
875 term
->name
= uac_processing_unit_iProcessing(d
, protocol
);
878 case UAC2_CLOCK_SOURCE
: {
879 struct uac_clock_source_descriptor
*d
= p1
;
881 term
->type
= d
->bDescriptorSubtype
<< 16; /* virtual type */
883 term
->name
= d
->iClockSource
;
889 } else { /* UAC_VERSION_3 */
891 case UAC_INPUT_TERMINAL
: {
892 struct uac3_input_terminal_descriptor
*d
= p1
;
894 /* call recursively to verify that the
895 * referenced clock entity is valid */
896 err
= check_input_term(state
, d
->bCSourceID
, term
);
900 /* save input term properties after recursion,
901 * to ensure they are not overriden by the
904 term
->type
= le16_to_cpu(d
->wTerminalType
);
906 err
= get_cluster_channels_v3(state
, le16_to_cpu(d
->wClusterDescrID
));
909 term
->channels
= err
;
911 /* REVISIT: UAC3 IT doesn't have channels cfg */
914 term
->name
= le16_to_cpu(d
->wTerminalDescrStr
);
917 case UAC3_FEATURE_UNIT
: {
918 struct uac3_feature_unit_descriptor
*d
= p1
;
921 break; /* continue to parse */
923 case UAC3_CLOCK_SOURCE
: {
924 struct uac3_clock_source_descriptor
*d
= p1
;
926 term
->type
= d
->bDescriptorSubtype
<< 16; /* virtual type */
928 term
->name
= le16_to_cpu(d
->wClockSourceStr
);
931 case UAC3_MIXER_UNIT
: {
932 struct uac_mixer_unit_descriptor
*d
= p1
;
934 err
= uac_mixer_unit_get_channels(state
, d
);
938 term
->channels
= err
;
939 term
->type
= d
->bDescriptorSubtype
<< 16; /* virtual type */
955 /* feature unit control information */
956 struct usb_feature_control_info
{
959 int type
; /* data type for uac1 */
960 int type_uac2
; /* data type for uac2 if different from uac1, else -1 */
963 static struct usb_feature_control_info audio_feature_info
[] = {
964 { UAC_FU_MUTE
, "Mute", USB_MIXER_INV_BOOLEAN
, -1 },
965 { UAC_FU_VOLUME
, "Volume", USB_MIXER_S16
, -1 },
966 { UAC_FU_BASS
, "Tone Control - Bass", USB_MIXER_S8
, -1 },
967 { UAC_FU_MID
, "Tone Control - Mid", USB_MIXER_S8
, -1 },
968 { UAC_FU_TREBLE
, "Tone Control - Treble", USB_MIXER_S8
, -1 },
969 { UAC_FU_GRAPHIC_EQUALIZER
, "Graphic Equalizer", USB_MIXER_S8
, -1 }, /* FIXME: not implemented yet */
970 { UAC_FU_AUTOMATIC_GAIN
, "Auto Gain Control", USB_MIXER_BOOLEAN
, -1 },
971 { UAC_FU_DELAY
, "Delay Control", USB_MIXER_U16
, USB_MIXER_U32
},
972 { UAC_FU_BASS_BOOST
, "Bass Boost", USB_MIXER_BOOLEAN
, -1 },
973 { UAC_FU_LOUDNESS
, "Loudness", USB_MIXER_BOOLEAN
, -1 },
975 { UAC2_FU_INPUT_GAIN
, "Input Gain Control", USB_MIXER_S16
, -1 },
976 { UAC2_FU_INPUT_GAIN_PAD
, "Input Gain Pad Control", USB_MIXER_S16
, -1 },
977 { UAC2_FU_PHASE_INVERTER
, "Phase Inverter Control", USB_MIXER_BOOLEAN
, -1 },
980 /* private_free callback */
981 void snd_usb_mixer_elem_free(struct snd_kcontrol
*kctl
)
983 kfree(kctl
->private_data
);
984 kctl
->private_data
= NULL
;
988 * interface to ALSA control for feature/mixer units
991 /* volume control quirks */
992 static void volume_control_quirks(struct usb_mixer_elem_info
*cval
,
993 struct snd_kcontrol
*kctl
)
995 struct snd_usb_audio
*chip
= cval
->head
.mixer
->chip
;
996 switch (chip
->usb_id
) {
997 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
998 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
999 if (strcmp(kctl
->id
.name
, "Effect Duration") == 0) {
1005 if (strcmp(kctl
->id
.name
, "Effect Volume") == 0 ||
1006 strcmp(kctl
->id
.name
, "Effect Feedback Volume") == 0) {
1011 if (strstr(kctl
->id
.name
, "Effect Return") != NULL
) {
1017 if ((strstr(kctl
->id
.name
, "Playback Volume") != NULL
) ||
1018 (strstr(kctl
->id
.name
, "Effect Send") != NULL
)) {
1019 cval
->min
= 0xb5fb; /* -73 dB = 0xb6ff */
1025 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
1026 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
1027 if (strcmp(kctl
->id
.name
, "Effect Duration") == 0) {
1028 usb_audio_info(chip
,
1029 "set quirk for FTU Effect Duration\n");
1035 if (strcmp(kctl
->id
.name
, "Effect Volume") == 0 ||
1036 strcmp(kctl
->id
.name
, "Effect Feedback Volume") == 0) {
1037 usb_audio_info(chip
,
1038 "set quirks for FTU Effect Feedback/Volume\n");
1045 case USB_ID(0x0d8c, 0x0103):
1046 if (!strcmp(kctl
->id
.name
, "PCM Playback Volume")) {
1047 usb_audio_info(chip
,
1048 "set volume quirk for CM102-A+/102S+\n");
1053 case USB_ID(0x0471, 0x0101):
1054 case USB_ID(0x0471, 0x0104):
1055 case USB_ID(0x0471, 0x0105):
1056 case USB_ID(0x0672, 0x1041):
1057 /* quirk for UDA1321/N101.
1058 * note that detection between firmware 2.1.1.7 (N101)
1059 * and later 2.1.1.21 is not very clear from datasheets.
1060 * I hope that the min value is -15360 for newer firmware --jk
1062 if (!strcmp(kctl
->id
.name
, "PCM Playback Volume") &&
1063 cval
->min
== -15616) {
1064 usb_audio_info(chip
,
1065 "set volume quirk for UDA1321/N101 chip\n");
1070 case USB_ID(0x046d, 0x09a4):
1071 if (!strcmp(kctl
->id
.name
, "Mic Capture Volume")) {
1072 usb_audio_info(chip
,
1073 "set volume quirk for QuickCam E3500\n");
1080 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
1081 case USB_ID(0x046d, 0x0808):
1082 case USB_ID(0x046d, 0x0809):
1083 case USB_ID(0x046d, 0x0819): /* Logitech Webcam C210 */
1084 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
1085 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
1086 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
1087 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
1088 case USB_ID(0x046d, 0x08ca): /* Logitech Quickcam Fusion */
1089 case USB_ID(0x046d, 0x0991):
1090 case USB_ID(0x046d, 0x09a2): /* QuickCam Communicate Deluxe/S7500 */
1091 /* Most audio usb devices lie about volume resolution.
1092 * Most Logitech webcams have res = 384.
1093 * Probably there is some logitech magic behind this number --fishor
1095 if (!strcmp(kctl
->id
.name
, "Mic Capture Volume")) {
1096 usb_audio_info(chip
,
1097 "set resolution quirk: cval->res = 384\n");
1105 * retrieve the minimum and maximum values for the specified control
1107 static int get_min_max_with_quirks(struct usb_mixer_elem_info
*cval
,
1108 int default_min
, struct snd_kcontrol
*kctl
)
1111 cval
->min
= default_min
;
1112 cval
->max
= cval
->min
+ 1;
1114 cval
->dBmin
= cval
->dBmax
= 0;
1116 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
1117 cval
->val_type
== USB_MIXER_INV_BOOLEAN
) {
1118 cval
->initialized
= 1;
1123 for (i
= 0; i
< MAX_CHANNELS
; i
++)
1124 if (cval
->cmask
& (1 << i
)) {
1129 if (get_ctl_value(cval
, UAC_GET_MAX
, (cval
->control
<< 8) | minchn
, &cval
->max
) < 0 ||
1130 get_ctl_value(cval
, UAC_GET_MIN
, (cval
->control
<< 8) | minchn
, &cval
->min
) < 0) {
1131 usb_audio_err(cval
->head
.mixer
->chip
,
1132 "%d:%d: cannot get min/max values for control %d (id %d)\n",
1133 cval
->head
.id
, snd_usb_ctrl_intf(cval
->head
.mixer
->chip
),
1134 cval
->control
, cval
->head
.id
);
1137 if (get_ctl_value(cval
, UAC_GET_RES
,
1138 (cval
->control
<< 8) | minchn
,
1142 int last_valid_res
= cval
->res
;
1144 while (cval
->res
> 1) {
1145 if (snd_usb_mixer_set_ctl_value(cval
, UAC_SET_RES
,
1146 (cval
->control
<< 8) | minchn
,
1151 if (get_ctl_value(cval
, UAC_GET_RES
,
1152 (cval
->control
<< 8) | minchn
, &cval
->res
) < 0)
1153 cval
->res
= last_valid_res
;
1158 /* Additional checks for the proper resolution
1160 * Some devices report smaller resolutions than actually
1161 * reacting. They don't return errors but simply clip
1162 * to the lower aligned value.
1164 if (cval
->min
+ cval
->res
< cval
->max
) {
1165 int last_valid_res
= cval
->res
;
1166 int saved
, test
, check
;
1167 get_cur_mix_raw(cval
, minchn
, &saved
);
1170 if (test
< cval
->max
)
1174 if (test
< cval
->min
|| test
> cval
->max
||
1175 snd_usb_set_cur_mix_value(cval
, minchn
, 0, test
) ||
1176 get_cur_mix_raw(cval
, minchn
, &check
)) {
1177 cval
->res
= last_valid_res
;
1184 snd_usb_set_cur_mix_value(cval
, minchn
, 0, saved
);
1187 cval
->initialized
= 1;
1191 volume_control_quirks(cval
, kctl
);
1193 /* USB descriptions contain the dB scale in 1/256 dB unit
1194 * while ALSA TLV contains in 1/100 dB unit
1196 cval
->dBmin
= (convert_signed_value(cval
, cval
->min
) * 100) / 256;
1197 cval
->dBmax
= (convert_signed_value(cval
, cval
->max
) * 100) / 256;
1198 if (cval
->dBmin
> cval
->dBmax
) {
1199 /* something is wrong; assume it's either from/to 0dB */
1200 if (cval
->dBmin
< 0)
1202 else if (cval
->dBmin
> 0)
1204 if (cval
->dBmin
> cval
->dBmax
) {
1205 /* totally crap, return an error */
1213 #define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
1215 /* get a feature/mixer unit info */
1216 static int mixer_ctl_feature_info(struct snd_kcontrol
*kcontrol
,
1217 struct snd_ctl_elem_info
*uinfo
)
1219 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1221 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
1222 cval
->val_type
== USB_MIXER_INV_BOOLEAN
)
1223 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1225 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1226 uinfo
->count
= cval
->channels
;
1227 if (cval
->val_type
== USB_MIXER_BOOLEAN
||
1228 cval
->val_type
== USB_MIXER_INV_BOOLEAN
) {
1229 uinfo
->value
.integer
.min
= 0;
1230 uinfo
->value
.integer
.max
= 1;
1232 if (!cval
->initialized
) {
1233 get_min_max_with_quirks(cval
, 0, kcontrol
);
1234 if (cval
->initialized
&& cval
->dBmin
>= cval
->dBmax
) {
1235 kcontrol
->vd
[0].access
&=
1236 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ
|
1237 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
);
1238 snd_ctl_notify(cval
->head
.mixer
->chip
->card
,
1239 SNDRV_CTL_EVENT_MASK_INFO
,
1243 uinfo
->value
.integer
.min
= 0;
1244 uinfo
->value
.integer
.max
=
1245 (cval
->max
- cval
->min
+ cval
->res
- 1) / cval
->res
;
1250 /* get the current value from feature/mixer unit */
1251 static int mixer_ctl_feature_get(struct snd_kcontrol
*kcontrol
,
1252 struct snd_ctl_elem_value
*ucontrol
)
1254 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1255 int c
, cnt
, val
, err
;
1257 ucontrol
->value
.integer
.value
[0] = cval
->min
;
1260 for (c
= 0; c
< MAX_CHANNELS
; c
++) {
1261 if (!(cval
->cmask
& (1 << c
)))
1263 err
= snd_usb_get_cur_mix_value(cval
, c
+ 1, cnt
, &val
);
1265 return filter_error(cval
, err
);
1266 val
= get_relative_value(cval
, val
);
1267 ucontrol
->value
.integer
.value
[cnt
] = val
;
1272 /* master channel */
1273 err
= snd_usb_get_cur_mix_value(cval
, 0, 0, &val
);
1275 return filter_error(cval
, err
);
1276 val
= get_relative_value(cval
, val
);
1277 ucontrol
->value
.integer
.value
[0] = val
;
1282 /* put the current value to feature/mixer unit */
1283 static int mixer_ctl_feature_put(struct snd_kcontrol
*kcontrol
,
1284 struct snd_ctl_elem_value
*ucontrol
)
1286 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1287 int c
, cnt
, val
, oval
, err
;
1292 for (c
= 0; c
< MAX_CHANNELS
; c
++) {
1293 if (!(cval
->cmask
& (1 << c
)))
1295 err
= snd_usb_get_cur_mix_value(cval
, c
+ 1, cnt
, &oval
);
1297 return filter_error(cval
, err
);
1298 val
= ucontrol
->value
.integer
.value
[cnt
];
1299 val
= get_abs_value(cval
, val
);
1301 snd_usb_set_cur_mix_value(cval
, c
+ 1, cnt
, val
);
1307 /* master channel */
1308 err
= snd_usb_get_cur_mix_value(cval
, 0, 0, &oval
);
1310 return filter_error(cval
, err
);
1311 val
= ucontrol
->value
.integer
.value
[0];
1312 val
= get_abs_value(cval
, val
);
1314 snd_usb_set_cur_mix_value(cval
, 0, 0, val
);
1321 /* get the boolean value from the master channel of a UAC control */
1322 static int mixer_ctl_master_bool_get(struct snd_kcontrol
*kcontrol
,
1323 struct snd_ctl_elem_value
*ucontrol
)
1325 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1328 err
= snd_usb_get_cur_mix_value(cval
, 0, 0, &val
);
1330 return filter_error(cval
, err
);
1332 ucontrol
->value
.integer
.value
[0] = val
;
1336 /* get the connectors status and report it as boolean type */
1337 static int mixer_ctl_connector_get(struct snd_kcontrol
*kcontrol
,
1338 struct snd_ctl_elem_value
*ucontrol
)
1340 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
1341 struct snd_usb_audio
*chip
= cval
->head
.mixer
->chip
;
1342 int idx
= 0, validx
, ret
, val
;
1344 validx
= cval
->control
<< 8 | 0;
1346 ret
= snd_usb_lock_shutdown(chip
) ? -EIO
: 0;
1350 idx
= snd_usb_ctrl_intf(chip
) | (cval
->head
.id
<< 8);
1351 if (cval
->head
.mixer
->protocol
== UAC_VERSION_2
) {
1352 struct uac2_connectors_ctl_blk uac2_conn
;
1354 ret
= snd_usb_ctl_msg(chip
->dev
, usb_rcvctrlpipe(chip
->dev
, 0), UAC2_CS_CUR
,
1355 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
1356 validx
, idx
, &uac2_conn
, sizeof(uac2_conn
));
1357 val
= !!uac2_conn
.bNrChannels
;
1358 } else { /* UAC_VERSION_3 */
1359 struct uac3_insertion_ctl_blk uac3_conn
;
1361 ret
= snd_usb_ctl_msg(chip
->dev
, usb_rcvctrlpipe(chip
->dev
, 0), UAC2_CS_CUR
,
1362 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
1363 validx
, idx
, &uac3_conn
, sizeof(uac3_conn
));
1364 val
= !!uac3_conn
.bmConInserted
;
1367 snd_usb_unlock_shutdown(chip
);
1372 "cannot get connectors status: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
1373 UAC_GET_CUR
, validx
, idx
, cval
->val_type
);
1377 ucontrol
->value
.integer
.value
[0] = val
;
1381 static struct snd_kcontrol_new usb_feature_unit_ctl
= {
1382 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1383 .name
= "", /* will be filled later manually */
1384 .info
= mixer_ctl_feature_info
,
1385 .get
= mixer_ctl_feature_get
,
1386 .put
= mixer_ctl_feature_put
,
1389 /* the read-only variant */
1390 static const struct snd_kcontrol_new usb_feature_unit_ctl_ro
= {
1391 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1392 .name
= "", /* will be filled later manually */
1393 .info
= mixer_ctl_feature_info
,
1394 .get
= mixer_ctl_feature_get
,
1399 * A control which shows the boolean value from reading a UAC control on
1400 * the master channel.
1402 static struct snd_kcontrol_new usb_bool_master_control_ctl_ro
= {
1403 .iface
= SNDRV_CTL_ELEM_IFACE_CARD
,
1404 .name
= "", /* will be filled later manually */
1405 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
1406 .info
= snd_ctl_boolean_mono_info
,
1407 .get
= mixer_ctl_master_bool_get
,
1411 static const struct snd_kcontrol_new usb_connector_ctl_ro
= {
1412 .iface
= SNDRV_CTL_ELEM_IFACE_CARD
,
1413 .name
= "", /* will be filled later manually */
1414 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
1415 .info
= snd_ctl_boolean_mono_info
,
1416 .get
= mixer_ctl_connector_get
,
1421 * This symbol is exported in order to allow the mixer quirks to
1422 * hook up to the standard feature unit control mechanism
1424 struct snd_kcontrol_new
*snd_usb_feature_unit_ctl
= &usb_feature_unit_ctl
;
1427 * build a feature control
1429 static size_t append_ctl_name(struct snd_kcontrol
*kctl
, const char *str
)
1431 return strlcat(kctl
->id
.name
, str
, sizeof(kctl
->id
.name
));
1435 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1436 * rename it to "Headphone". We determine if something is a headphone
1437 * similar to how udev determines form factor.
1439 static void check_no_speaker_on_headset(struct snd_kcontrol
*kctl
,
1440 struct snd_card
*card
)
1442 const char *names_to_check
[] = {
1443 "Headset", "headset", "Headphone", "headphone", NULL
};
1447 if (strcmp("Speaker", kctl
->id
.name
))
1450 for (s
= names_to_check
; *s
; s
++)
1451 if (strstr(card
->shortname
, *s
)) {
1459 strlcpy(kctl
->id
.name
, "Headphone", sizeof(kctl
->id
.name
));
1462 static struct usb_feature_control_info
*get_feature_control_info(int control
)
1466 for (i
= 0; i
< ARRAY_SIZE(audio_feature_info
); ++i
) {
1467 if (audio_feature_info
[i
].control
== control
)
1468 return &audio_feature_info
[i
];
1473 static void __build_feature_ctl(struct usb_mixer_interface
*mixer
,
1474 const struct usbmix_name_map
*imap
,
1475 unsigned int ctl_mask
, int control
,
1476 struct usb_audio_term
*iterm
,
1477 struct usb_audio_term
*oterm
,
1478 int unitid
, int nameid
, int readonly_mask
)
1480 struct usb_feature_control_info
*ctl_info
;
1481 unsigned int len
= 0;
1482 int mapped_name
= 0;
1483 struct snd_kcontrol
*kctl
;
1484 struct usb_mixer_elem_info
*cval
;
1485 const struct usbmix_name_map
*map
;
1488 if (control
== UAC_FU_GRAPHIC_EQUALIZER
) {
1489 /* FIXME: not supported yet */
1493 map
= find_map(imap
, unitid
, control
);
1494 if (check_ignored_ctl(map
))
1497 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1500 snd_usb_mixer_elem_init_std(&cval
->head
, mixer
, unitid
);
1501 cval
->control
= control
;
1502 cval
->cmask
= ctl_mask
;
1504 ctl_info
= get_feature_control_info(control
);
1509 if (mixer
->protocol
== UAC_VERSION_1
)
1510 cval
->val_type
= ctl_info
->type
;
1511 else /* UAC_VERSION_2 */
1512 cval
->val_type
= ctl_info
->type_uac2
>= 0 ?
1513 ctl_info
->type_uac2
: ctl_info
->type
;
1515 if (ctl_mask
== 0) {
1516 cval
->channels
= 1; /* master channel */
1517 cval
->master_readonly
= readonly_mask
;
1520 for (i
= 0; i
< 16; i
++)
1521 if (ctl_mask
& (1 << i
))
1524 cval
->ch_readonly
= readonly_mask
;
1528 * If all channels in the mask are marked read-only, make the control
1529 * read-only. snd_usb_set_cur_mix_value() will check the mask again and won't
1530 * issue write commands to read-only channels.
1532 if (cval
->channels
== readonly_mask
)
1533 kctl
= snd_ctl_new1(&usb_feature_unit_ctl_ro
, cval
);
1535 kctl
= snd_ctl_new1(&usb_feature_unit_ctl
, cval
);
1538 usb_audio_err(mixer
->chip
, "cannot malloc kcontrol\n");
1542 kctl
->private_free
= snd_usb_mixer_elem_free
;
1544 len
= check_mapped_name(map
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
1545 mapped_name
= len
!= 0;
1547 len
= snd_usb_copy_string_desc(mixer
->chip
, nameid
,
1548 kctl
->id
.name
, sizeof(kctl
->id
.name
));
1554 * determine the control name. the rule is:
1555 * - if a name id is given in descriptor, use it.
1556 * - if the connected input can be determined, then use the name
1558 * - if the connected output can be determined, use it.
1559 * - otherwise, anonymous name.
1563 len
= get_term_name(mixer
->chip
, iterm
,
1565 sizeof(kctl
->id
.name
), 1);
1567 len
= get_term_name(mixer
->chip
, oterm
,
1569 sizeof(kctl
->id
.name
), 1);
1571 snprintf(kctl
->id
.name
, sizeof(kctl
->id
.name
),
1572 "Feature %d", unitid
);
1576 check_no_speaker_on_headset(kctl
, mixer
->chip
->card
);
1579 * determine the stream direction:
1580 * if the connected output is USB stream, then it's likely a
1581 * capture stream. otherwise it should be playback (hopefully :)
1583 if (!mapped_name
&& oterm
&& !(oterm
->type
>> 16)) {
1584 if ((oterm
->type
& 0xff00) == 0x0100)
1585 append_ctl_name(kctl
, " Capture");
1587 append_ctl_name(kctl
, " Playback");
1589 append_ctl_name(kctl
, control
== UAC_FU_MUTE
?
1590 " Switch" : " Volume");
1594 strlcpy(kctl
->id
.name
, audio_feature_info
[control
-1].name
,
1595 sizeof(kctl
->id
.name
));
1599 /* get min/max values */
1600 get_min_max_with_quirks(cval
, 0, kctl
);
1602 if (control
== UAC_FU_VOLUME
) {
1603 check_mapped_dB(map
, cval
);
1604 if (cval
->dBmin
< cval
->dBmax
|| !cval
->initialized
) {
1605 kctl
->tlv
.c
= snd_usb_mixer_vol_tlv
;
1606 kctl
->vd
[0].access
|=
1607 SNDRV_CTL_ELEM_ACCESS_TLV_READ
|
1608 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
;
1612 snd_usb_mixer_fu_apply_quirk(mixer
, cval
, unitid
, kctl
);
1614 range
= (cval
->max
- cval
->min
) / cval
->res
;
1616 * Are there devices with volume range more than 255? I use a bit more
1617 * to be sure. 384 is a resolution magic number found on Logitech
1618 * devices. It will definitively catch all buggy Logitech devices.
1621 usb_audio_warn(mixer
->chip
,
1622 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
1624 usb_audio_warn(mixer
->chip
,
1625 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
1626 cval
->head
.id
, kctl
->id
.name
, cval
->channels
,
1627 cval
->min
, cval
->max
, cval
->res
);
1630 usb_audio_dbg(mixer
->chip
, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1631 cval
->head
.id
, kctl
->id
.name
, cval
->channels
,
1632 cval
->min
, cval
->max
, cval
->res
);
1633 snd_usb_mixer_add_control(&cval
->head
, kctl
);
1636 static void build_feature_ctl(struct mixer_build
*state
, void *raw_desc
,
1637 unsigned int ctl_mask
, int control
,
1638 struct usb_audio_term
*iterm
, int unitid
,
1641 struct uac_feature_unit_descriptor
*desc
= raw_desc
;
1642 int nameid
= uac_feature_unit_iFeature(desc
);
1644 __build_feature_ctl(state
->mixer
, state
->map
, ctl_mask
, control
,
1645 iterm
, &state
->oterm
, unitid
, nameid
, readonly_mask
);
1648 static void build_feature_ctl_badd(struct usb_mixer_interface
*mixer
,
1649 unsigned int ctl_mask
, int control
, int unitid
,
1650 const struct usbmix_name_map
*badd_map
)
1652 __build_feature_ctl(mixer
, badd_map
, ctl_mask
, control
,
1653 NULL
, NULL
, unitid
, 0, 0);
1656 static void get_connector_control_name(struct usb_mixer_interface
*mixer
,
1657 struct usb_audio_term
*term
,
1658 bool is_input
, char *name
, int name_size
)
1660 int name_len
= get_term_name(mixer
->chip
, term
, name
, name_size
, 0);
1663 strlcpy(name
, "Unknown", name_size
);
1666 * sound/core/ctljack.c has a convention of naming jack controls
1667 * by ending in " Jack". Make it slightly more useful by
1668 * indicating Input or Output after the terminal name.
1671 strlcat(name
, " - Input Jack", name_size
);
1673 strlcat(name
, " - Output Jack", name_size
);
1676 /* Build a mixer control for a UAC connector control (jack-detect) */
1677 static void build_connector_control(struct usb_mixer_interface
*mixer
,
1678 struct usb_audio_term
*term
, bool is_input
)
1680 struct snd_kcontrol
*kctl
;
1681 struct usb_mixer_elem_info
*cval
;
1683 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1686 snd_usb_mixer_elem_init_std(&cval
->head
, mixer
, term
->id
);
1688 * UAC2: The first byte from reading the UAC2_TE_CONNECTOR control returns the
1689 * number of channels connected.
1691 * UAC3: The first byte specifies size of bitmap for the inserted controls. The
1692 * following byte(s) specifies which connectors are inserted.
1694 * This boolean ctl will simply report if any channels are connected
1697 if (mixer
->protocol
== UAC_VERSION_2
)
1698 cval
->control
= UAC2_TE_CONNECTOR
;
1699 else /* UAC_VERSION_3 */
1700 cval
->control
= UAC3_TE_INSERTION
;
1702 cval
->val_type
= USB_MIXER_BOOLEAN
;
1703 cval
->channels
= 1; /* report true if any channel is connected */
1706 kctl
= snd_ctl_new1(&usb_connector_ctl_ro
, cval
);
1708 usb_audio_err(mixer
->chip
, "cannot malloc kcontrol\n");
1712 get_connector_control_name(mixer
, term
, is_input
, kctl
->id
.name
,
1713 sizeof(kctl
->id
.name
));
1714 kctl
->private_free
= snd_usb_mixer_elem_free
;
1715 snd_usb_mixer_add_control(&cval
->head
, kctl
);
1718 static int parse_clock_source_unit(struct mixer_build
*state
, int unitid
,
1721 struct uac_clock_source_descriptor
*hdr
= _ftr
;
1722 struct usb_mixer_elem_info
*cval
;
1723 struct snd_kcontrol
*kctl
;
1724 char name
[SNDRV_CTL_ELEM_ID_NAME_MAXLEN
];
1727 if (state
->mixer
->protocol
!= UAC_VERSION_2
)
1730 if (hdr
->bLength
!= sizeof(*hdr
)) {
1731 usb_audio_dbg(state
->chip
,
1732 "Bogus clock source descriptor length of %d, ignoring.\n",
1738 * The only property of this unit we are interested in is the
1739 * clock source validity. If that isn't readable, just bail out.
1741 if (!uac_v2v3_control_is_readable(hdr
->bmControls
,
1742 UAC2_CS_CONTROL_CLOCK_VALID
))
1745 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1749 snd_usb_mixer_elem_init_std(&cval
->head
, state
->mixer
, hdr
->bClockID
);
1754 cval
->val_type
= USB_MIXER_BOOLEAN
;
1755 cval
->control
= UAC2_CS_CONTROL_CLOCK_VALID
;
1757 cval
->master_readonly
= 1;
1758 /* From UAC2 5.2.5.1.2 "Only the get request is supported." */
1759 kctl
= snd_ctl_new1(&usb_bool_master_control_ctl_ro
, cval
);
1766 kctl
->private_free
= snd_usb_mixer_elem_free
;
1767 ret
= snd_usb_copy_string_desc(state
->chip
, hdr
->iClockSource
,
1768 name
, sizeof(name
));
1770 snprintf(kctl
->id
.name
, sizeof(kctl
->id
.name
),
1771 "%s Validity", name
);
1773 snprintf(kctl
->id
.name
, sizeof(kctl
->id
.name
),
1774 "Clock Source %d Validity", hdr
->bClockID
);
1776 return snd_usb_mixer_add_control(&cval
->head
, kctl
);
1780 * parse a feature unit
1782 * most of controls are defined here.
1784 static int parse_audio_feature_unit(struct mixer_build
*state
, int unitid
,
1788 struct usb_audio_term iterm
;
1789 unsigned int master_bits
, first_ch_bits
;
1791 struct uac_feature_unit_descriptor
*hdr
= _ftr
;
1794 if (state
->mixer
->protocol
== UAC_VERSION_1
) {
1795 if (hdr
->bLength
< 7) {
1796 usb_audio_err(state
->chip
,
1797 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1801 csize
= hdr
->bControlSize
;
1803 usb_audio_dbg(state
->chip
,
1804 "unit %u: invalid bControlSize == 0\n",
1808 channels
= (hdr
->bLength
- 7) / csize
- 1;
1809 bmaControls
= hdr
->bmaControls
;
1810 if (hdr
->bLength
< 7 + csize
) {
1811 usb_audio_err(state
->chip
,
1812 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1816 } else if (state
->mixer
->protocol
== UAC_VERSION_2
) {
1817 struct uac2_feature_unit_descriptor
*ftr
= _ftr
;
1818 if (hdr
->bLength
< 6) {
1819 usb_audio_err(state
->chip
,
1820 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1825 channels
= (hdr
->bLength
- 6) / 4 - 1;
1826 bmaControls
= ftr
->bmaControls
;
1827 if (hdr
->bLength
< 6 + csize
) {
1828 usb_audio_err(state
->chip
,
1829 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1833 } else { /* UAC_VERSION_3 */
1834 struct uac3_feature_unit_descriptor
*ftr
= _ftr
;
1836 if (hdr
->bLength
< 7) {
1837 usb_audio_err(state
->chip
,
1838 "unit %u: invalid UAC3_FEATURE_UNIT descriptor\n",
1843 channels
= (ftr
->bLength
- 7) / 4 - 1;
1844 bmaControls
= ftr
->bmaControls
;
1845 if (hdr
->bLength
< 7 + csize
) {
1846 usb_audio_err(state
->chip
,
1847 "unit %u: invalid UAC3_FEATURE_UNIT descriptor\n",
1853 /* parse the source unit */
1854 err
= parse_audio_unit(state
, hdr
->bSourceID
);
1858 /* determine the input source type and name */
1859 err
= check_input_term(state
, hdr
->bSourceID
, &iterm
);
1863 master_bits
= snd_usb_combine_bytes(bmaControls
, csize
);
1864 /* master configuration quirks */
1865 switch (state
->chip
->usb_id
) {
1866 case USB_ID(0x08bb, 0x2702):
1867 usb_audio_info(state
->chip
,
1868 "usbmixer: master volume quirk for PCM2702 chip\n");
1869 /* disable non-functional volume control */
1870 master_bits
&= ~UAC_CONTROL_BIT(UAC_FU_VOLUME
);
1872 case USB_ID(0x1130, 0xf211):
1873 usb_audio_info(state
->chip
,
1874 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
1875 /* disable non-functional volume control */
1881 first_ch_bits
= snd_usb_combine_bytes(bmaControls
+ csize
, csize
);
1885 if (state
->mixer
->protocol
== UAC_VERSION_1
) {
1886 /* check all control types */
1887 for (i
= 0; i
< 10; i
++) {
1888 unsigned int ch_bits
= 0;
1889 int control
= audio_feature_info
[i
].control
;
1891 for (j
= 0; j
< channels
; j
++) {
1894 mask
= snd_usb_combine_bytes(bmaControls
+
1895 csize
* (j
+1), csize
);
1896 if (mask
& (1 << i
))
1897 ch_bits
|= (1 << j
);
1899 /* audio class v1 controls are never read-only */
1902 * The first channel must be set
1903 * (for ease of programming).
1906 build_feature_ctl(state
, _ftr
, ch_bits
, control
,
1908 if (master_bits
& (1 << i
))
1909 build_feature_ctl(state
, _ftr
, 0, control
,
1912 } else { /* UAC_VERSION_2/3 */
1913 for (i
= 0; i
< ARRAY_SIZE(audio_feature_info
); i
++) {
1914 unsigned int ch_bits
= 0;
1915 unsigned int ch_read_only
= 0;
1916 int control
= audio_feature_info
[i
].control
;
1918 for (j
= 0; j
< channels
; j
++) {
1921 mask
= snd_usb_combine_bytes(bmaControls
+
1922 csize
* (j
+1), csize
);
1923 if (uac_v2v3_control_is_readable(mask
, control
)) {
1924 ch_bits
|= (1 << j
);
1925 if (!uac_v2v3_control_is_writeable(mask
, control
))
1926 ch_read_only
|= (1 << j
);
1931 * NOTE: build_feature_ctl() will mark the control
1932 * read-only if all channels are marked read-only in
1933 * the descriptors. Otherwise, the control will be
1934 * reported as writeable, but the driver will not
1935 * actually issue a write command for read-only
1940 * The first channel must be set
1941 * (for ease of programming).
1944 build_feature_ctl(state
, _ftr
, ch_bits
, control
,
1945 &iterm
, unitid
, ch_read_only
);
1946 if (uac_v2v3_control_is_readable(master_bits
, control
))
1947 build_feature_ctl(state
, _ftr
, 0, control
,
1949 !uac_v2v3_control_is_writeable(master_bits
,
1962 * build a mixer unit control
1964 * the callbacks are identical with feature unit.
1965 * input channel number (zero based) is given in control field instead.
1967 static void build_mixer_unit_ctl(struct mixer_build
*state
,
1968 struct uac_mixer_unit_descriptor
*desc
,
1969 int in_pin
, int in_ch
, int num_outs
,
1970 int unitid
, struct usb_audio_term
*iterm
)
1972 struct usb_mixer_elem_info
*cval
;
1973 unsigned int i
, len
;
1974 struct snd_kcontrol
*kctl
;
1975 const struct usbmix_name_map
*map
;
1977 map
= find_map(state
->map
, unitid
, 0);
1978 if (check_ignored_ctl(map
))
1981 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
1985 snd_usb_mixer_elem_init_std(&cval
->head
, state
->mixer
, unitid
);
1986 cval
->control
= in_ch
+ 1; /* based on 1 */
1987 cval
->val_type
= USB_MIXER_S16
;
1988 for (i
= 0; i
< num_outs
; i
++) {
1989 __u8
*c
= uac_mixer_unit_bmControls(desc
, state
->mixer
->protocol
);
1991 if (check_matrix_bitmap(c
, in_ch
, i
, num_outs
)) {
1992 cval
->cmask
|= (1 << i
);
1997 /* get min/max values */
1998 get_min_max(cval
, 0);
2000 kctl
= snd_ctl_new1(&usb_feature_unit_ctl
, cval
);
2002 usb_audio_err(state
->chip
, "cannot malloc kcontrol\n");
2006 kctl
->private_free
= snd_usb_mixer_elem_free
;
2008 len
= check_mapped_name(map
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
2010 len
= get_term_name(state
->chip
, iterm
, kctl
->id
.name
,
2011 sizeof(kctl
->id
.name
), 0);
2013 len
= sprintf(kctl
->id
.name
, "Mixer Source %d", in_ch
+ 1);
2014 append_ctl_name(kctl
, " Volume");
2016 usb_audio_dbg(state
->chip
, "[%d] MU [%s] ch = %d, val = %d/%d\n",
2017 cval
->head
.id
, kctl
->id
.name
, cval
->channels
, cval
->min
, cval
->max
);
2018 snd_usb_mixer_add_control(&cval
->head
, kctl
);
2021 static int parse_audio_input_terminal(struct mixer_build
*state
, int unitid
,
2024 struct usb_audio_term iterm
;
2025 unsigned int control
, bmctls
, term_id
;
2027 if (state
->mixer
->protocol
== UAC_VERSION_2
) {
2028 struct uac2_input_terminal_descriptor
*d_v2
= raw_desc
;
2029 control
= UAC2_TE_CONNECTOR
;
2030 term_id
= d_v2
->bTerminalID
;
2031 bmctls
= le16_to_cpu(d_v2
->bmControls
);
2032 } else if (state
->mixer
->protocol
== UAC_VERSION_3
) {
2033 struct uac3_input_terminal_descriptor
*d_v3
= raw_desc
;
2034 control
= UAC3_TE_INSERTION
;
2035 term_id
= d_v3
->bTerminalID
;
2036 bmctls
= le32_to_cpu(d_v3
->bmControls
);
2038 return 0; /* UAC1. No Insertion control */
2041 check_input_term(state
, term_id
, &iterm
);
2043 /* Check for jack detection. */
2044 if (uac_v2v3_control_is_readable(bmctls
, control
))
2045 build_connector_control(state
->mixer
, &iterm
, true);
2051 * parse a mixer unit
2053 static int parse_audio_mixer_unit(struct mixer_build
*state
, int unitid
,
2056 struct uac_mixer_unit_descriptor
*desc
= raw_desc
;
2057 struct usb_audio_term iterm
;
2058 int input_pins
, num_ins
, num_outs
;
2061 err
= uac_mixer_unit_get_channels(state
, desc
);
2063 usb_audio_err(state
->chip
,
2064 "invalid MIXER UNIT descriptor %d\n",
2070 input_pins
= desc
->bNrInPins
;
2074 for (pin
= 0; pin
< input_pins
; pin
++) {
2075 err
= parse_audio_unit(state
, desc
->baSourceID
[pin
]);
2078 /* no bmControls field (e.g. Maya44) -> ignore */
2079 if (desc
->bLength
<= 10 + input_pins
)
2081 err
= check_input_term(state
, desc
->baSourceID
[pin
], &iterm
);
2084 num_ins
+= iterm
.channels
;
2085 for (; ich
< num_ins
; ich
++) {
2086 int och
, ich_has_controls
= 0;
2088 for (och
= 0; och
< num_outs
; och
++) {
2089 __u8
*c
= uac_mixer_unit_bmControls(desc
,
2090 state
->mixer
->protocol
);
2092 if (check_matrix_bitmap(c
, ich
, och
, num_outs
)) {
2093 ich_has_controls
= 1;
2097 if (ich_has_controls
)
2098 build_mixer_unit_ctl(state
, desc
, pin
, ich
, num_outs
,
2106 * Processing Unit / Extension Unit
2109 /* get callback for processing/extension unit */
2110 static int mixer_ctl_procunit_get(struct snd_kcontrol
*kcontrol
,
2111 struct snd_ctl_elem_value
*ucontrol
)
2113 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
2116 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &val
);
2118 ucontrol
->value
.integer
.value
[0] = cval
->min
;
2119 return filter_error(cval
, err
);
2121 val
= get_relative_value(cval
, val
);
2122 ucontrol
->value
.integer
.value
[0] = val
;
2126 /* put callback for processing/extension unit */
2127 static int mixer_ctl_procunit_put(struct snd_kcontrol
*kcontrol
,
2128 struct snd_ctl_elem_value
*ucontrol
)
2130 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
2133 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &oval
);
2135 return filter_error(cval
, err
);
2136 val
= ucontrol
->value
.integer
.value
[0];
2137 val
= get_abs_value(cval
, val
);
2139 set_cur_ctl_value(cval
, cval
->control
<< 8, val
);
2145 /* alsa control interface for processing/extension unit */
2146 static const struct snd_kcontrol_new mixer_procunit_ctl
= {
2147 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2148 .name
= "", /* will be filled later */
2149 .info
= mixer_ctl_feature_info
,
2150 .get
= mixer_ctl_procunit_get
,
2151 .put
= mixer_ctl_procunit_put
,
2155 * predefined data for processing units
2157 struct procunit_value_info
{
2164 struct procunit_info
{
2167 struct procunit_value_info
*values
;
2170 static struct procunit_value_info updown_proc_info
[] = {
2171 { UAC_UD_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2172 { UAC_UD_MODE_SELECT
, "Mode Select", USB_MIXER_U8
, 1 },
2175 static struct procunit_value_info prologic_proc_info
[] = {
2176 { UAC_DP_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2177 { UAC_DP_MODE_SELECT
, "Mode Select", USB_MIXER_U8
, 1 },
2180 static struct procunit_value_info threed_enh_proc_info
[] = {
2181 { UAC_3D_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2182 { UAC_3D_SPACE
, "Spaciousness", USB_MIXER_U8
},
2185 static struct procunit_value_info reverb_proc_info
[] = {
2186 { UAC_REVERB_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2187 { UAC_REVERB_LEVEL
, "Level", USB_MIXER_U8
},
2188 { UAC_REVERB_TIME
, "Time", USB_MIXER_U16
},
2189 { UAC_REVERB_FEEDBACK
, "Feedback", USB_MIXER_U8
},
2192 static struct procunit_value_info chorus_proc_info
[] = {
2193 { UAC_CHORUS_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2194 { UAC_CHORUS_LEVEL
, "Level", USB_MIXER_U8
},
2195 { UAC_CHORUS_RATE
, "Rate", USB_MIXER_U16
},
2196 { UAC_CHORUS_DEPTH
, "Depth", USB_MIXER_U16
},
2199 static struct procunit_value_info dcr_proc_info
[] = {
2200 { UAC_DCR_ENABLE
, "Switch", USB_MIXER_BOOLEAN
},
2201 { UAC_DCR_RATE
, "Ratio", USB_MIXER_U16
},
2202 { UAC_DCR_MAXAMPL
, "Max Amp", USB_MIXER_S16
},
2203 { UAC_DCR_THRESHOLD
, "Threshold", USB_MIXER_S16
},
2204 { UAC_DCR_ATTACK_TIME
, "Attack Time", USB_MIXER_U16
},
2205 { UAC_DCR_RELEASE_TIME
, "Release Time", USB_MIXER_U16
},
2209 static struct procunit_info procunits
[] = {
2210 { UAC_PROCESS_UP_DOWNMIX
, "Up Down", updown_proc_info
},
2211 { UAC_PROCESS_DOLBY_PROLOGIC
, "Dolby Prologic", prologic_proc_info
},
2212 { UAC_PROCESS_STEREO_EXTENDER
, "3D Stereo Extender", threed_enh_proc_info
},
2213 { UAC_PROCESS_REVERB
, "Reverb", reverb_proc_info
},
2214 { UAC_PROCESS_CHORUS
, "Chorus", chorus_proc_info
},
2215 { UAC_PROCESS_DYN_RANGE_COMP
, "DCR", dcr_proc_info
},
2219 * predefined data for extension units
2221 static struct procunit_value_info clock_rate_xu_info
[] = {
2222 { USB_XU_CLOCK_RATE_SELECTOR
, "Selector", USB_MIXER_U8
, 0 },
2225 static struct procunit_value_info clock_source_xu_info
[] = {
2226 { USB_XU_CLOCK_SOURCE_SELECTOR
, "External", USB_MIXER_BOOLEAN
},
2229 static struct procunit_value_info spdif_format_xu_info
[] = {
2230 { USB_XU_DIGITAL_FORMAT_SELECTOR
, "SPDIF/AC3", USB_MIXER_BOOLEAN
},
2233 static struct procunit_value_info soft_limit_xu_info
[] = {
2234 { USB_XU_SOFT_LIMIT_SELECTOR
, " ", USB_MIXER_BOOLEAN
},
2237 static struct procunit_info extunits
[] = {
2238 { USB_XU_CLOCK_RATE
, "Clock rate", clock_rate_xu_info
},
2239 { USB_XU_CLOCK_SOURCE
, "DigitalIn CLK source", clock_source_xu_info
},
2240 { USB_XU_DIGITAL_IO_STATUS
, "DigitalOut format:", spdif_format_xu_info
},
2241 { USB_XU_DEVICE_OPTIONS
, "AnalogueIn Soft Limit", soft_limit_xu_info
},
2246 * build a processing/extension unit
2248 static int build_audio_procunit(struct mixer_build
*state
, int unitid
,
2249 void *raw_desc
, struct procunit_info
*list
,
2252 struct uac_processing_unit_descriptor
*desc
= raw_desc
;
2253 int num_ins
= desc
->bNrInPins
;
2254 struct usb_mixer_elem_info
*cval
;
2255 struct snd_kcontrol
*kctl
;
2256 int i
, err
, nameid
, type
, len
;
2257 struct procunit_info
*info
;
2258 struct procunit_value_info
*valinfo
;
2259 const struct usbmix_name_map
*map
;
2260 static struct procunit_value_info default_value_info
[] = {
2261 { 0x01, "Switch", USB_MIXER_BOOLEAN
},
2264 static struct procunit_info default_info
= {
2265 0, NULL
, default_value_info
2268 if (desc
->bLength
< 13 || desc
->bLength
< 13 + num_ins
||
2269 desc
->bLength
< num_ins
+ uac_processing_unit_bControlSize(desc
, state
->mixer
->protocol
)) {
2270 usb_audio_err(state
->chip
, "invalid %s descriptor (id %d)\n", name
, unitid
);
2274 for (i
= 0; i
< num_ins
; i
++) {
2275 err
= parse_audio_unit(state
, desc
->baSourceID
[i
]);
2280 type
= le16_to_cpu(desc
->wProcessType
);
2281 for (info
= list
; info
&& info
->type
; info
++)
2282 if (info
->type
== type
)
2284 if (!info
|| !info
->type
)
2285 info
= &default_info
;
2287 for (valinfo
= info
->values
; valinfo
->control
; valinfo
++) {
2288 __u8
*controls
= uac_processing_unit_bmControls(desc
, state
->mixer
->protocol
);
2290 if (!(controls
[valinfo
->control
/ 8] & (1 << ((valinfo
->control
% 8) - 1))))
2292 map
= find_map(state
->map
, unitid
, valinfo
->control
);
2293 if (check_ignored_ctl(map
))
2295 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
2298 snd_usb_mixer_elem_init_std(&cval
->head
, state
->mixer
, unitid
);
2299 cval
->control
= valinfo
->control
;
2300 cval
->val_type
= valinfo
->val_type
;
2303 /* get min/max values */
2304 if (type
== UAC_PROCESS_UP_DOWNMIX
&& cval
->control
== UAC_UD_MODE_SELECT
) {
2305 __u8
*control_spec
= uac_processing_unit_specific(desc
, state
->mixer
->protocol
);
2306 /* FIXME: hard-coded */
2308 cval
->max
= control_spec
[0];
2310 cval
->initialized
= 1;
2312 if (type
== USB_XU_CLOCK_RATE
) {
2314 * E-Mu USB 0404/0202/TrackerPre/0204
2315 * samplerate control quirk
2320 cval
->initialized
= 1;
2322 get_min_max(cval
, valinfo
->min_value
);
2325 kctl
= snd_ctl_new1(&mixer_procunit_ctl
, cval
);
2330 kctl
->private_free
= snd_usb_mixer_elem_free
;
2332 if (check_mapped_name(map
, kctl
->id
.name
, sizeof(kctl
->id
.name
))) {
2334 } else if (info
->name
) {
2335 strlcpy(kctl
->id
.name
, info
->name
, sizeof(kctl
->id
.name
));
2337 nameid
= uac_processing_unit_iProcessing(desc
, state
->mixer
->protocol
);
2340 len
= snd_usb_copy_string_desc(state
->chip
,
2343 sizeof(kctl
->id
.name
));
2345 strlcpy(kctl
->id
.name
, name
, sizeof(kctl
->id
.name
));
2347 append_ctl_name(kctl
, " ");
2348 append_ctl_name(kctl
, valinfo
->suffix
);
2350 usb_audio_dbg(state
->chip
,
2351 "[%d] PU [%s] ch = %d, val = %d/%d\n",
2352 cval
->head
.id
, kctl
->id
.name
, cval
->channels
,
2353 cval
->min
, cval
->max
);
2355 err
= snd_usb_mixer_add_control(&cval
->head
, kctl
);
2362 static int parse_audio_processing_unit(struct mixer_build
*state
, int unitid
,
2365 return build_audio_procunit(state
, unitid
, raw_desc
,
2366 procunits
, "Processing Unit");
2369 static int parse_audio_extension_unit(struct mixer_build
*state
, int unitid
,
2373 * Note that we parse extension units with processing unit descriptors.
2374 * That's ok as the layout is the same.
2376 return build_audio_procunit(state
, unitid
, raw_desc
,
2377 extunits
, "Extension Unit");
2385 * info callback for selector unit
2386 * use an enumerator type for routing
2388 static int mixer_ctl_selector_info(struct snd_kcontrol
*kcontrol
,
2389 struct snd_ctl_elem_info
*uinfo
)
2391 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
2392 const char **itemlist
= (const char **)kcontrol
->private_value
;
2394 if (snd_BUG_ON(!itemlist
))
2396 return snd_ctl_enum_info(uinfo
, 1, cval
->max
, itemlist
);
2399 /* get callback for selector unit */
2400 static int mixer_ctl_selector_get(struct snd_kcontrol
*kcontrol
,
2401 struct snd_ctl_elem_value
*ucontrol
)
2403 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
2406 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &val
);
2408 ucontrol
->value
.enumerated
.item
[0] = 0;
2409 return filter_error(cval
, err
);
2411 val
= get_relative_value(cval
, val
);
2412 ucontrol
->value
.enumerated
.item
[0] = val
;
2416 /* put callback for selector unit */
2417 static int mixer_ctl_selector_put(struct snd_kcontrol
*kcontrol
,
2418 struct snd_ctl_elem_value
*ucontrol
)
2420 struct usb_mixer_elem_info
*cval
= kcontrol
->private_data
;
2423 err
= get_cur_ctl_value(cval
, cval
->control
<< 8, &oval
);
2425 return filter_error(cval
, err
);
2426 val
= ucontrol
->value
.enumerated
.item
[0];
2427 val
= get_abs_value(cval
, val
);
2429 set_cur_ctl_value(cval
, cval
->control
<< 8, val
);
2435 /* alsa control interface for selector unit */
2436 static const struct snd_kcontrol_new mixer_selectunit_ctl
= {
2437 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2438 .name
= "", /* will be filled later */
2439 .info
= mixer_ctl_selector_info
,
2440 .get
= mixer_ctl_selector_get
,
2441 .put
= mixer_ctl_selector_put
,
2445 * private free callback.
2446 * free both private_data and private_value
2448 static void usb_mixer_selector_elem_free(struct snd_kcontrol
*kctl
)
2452 if (kctl
->private_data
) {
2453 struct usb_mixer_elem_info
*cval
= kctl
->private_data
;
2454 num_ins
= cval
->max
;
2456 kctl
->private_data
= NULL
;
2458 if (kctl
->private_value
) {
2459 char **itemlist
= (char **)kctl
->private_value
;
2460 for (i
= 0; i
< num_ins
; i
++)
2463 kctl
->private_value
= 0;
2468 * parse a selector unit
2470 static int parse_audio_selector_unit(struct mixer_build
*state
, int unitid
,
2473 struct uac_selector_unit_descriptor
*desc
= raw_desc
;
2474 unsigned int i
, nameid
, len
;
2476 struct usb_mixer_elem_info
*cval
;
2477 struct snd_kcontrol
*kctl
;
2478 const struct usbmix_name_map
*map
;
2481 if (desc
->bLength
< 5 || !desc
->bNrInPins
||
2482 desc
->bLength
< 5 + desc
->bNrInPins
) {
2483 usb_audio_err(state
->chip
,
2484 "invalid SELECTOR UNIT descriptor %d\n", unitid
);
2488 for (i
= 0; i
< desc
->bNrInPins
; i
++) {
2489 err
= parse_audio_unit(state
, desc
->baSourceID
[i
]);
2494 if (desc
->bNrInPins
== 1) /* only one ? nonsense! */
2497 map
= find_map(state
->map
, unitid
, 0);
2498 if (check_ignored_ctl(map
))
2501 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
2504 snd_usb_mixer_elem_init_std(&cval
->head
, state
->mixer
, unitid
);
2505 cval
->val_type
= USB_MIXER_U8
;
2508 cval
->max
= desc
->bNrInPins
;
2510 cval
->initialized
= 1;
2512 if (state
->mixer
->protocol
== UAC_VERSION_1
)
2514 else /* UAC_VERSION_2 */
2515 cval
->control
= (desc
->bDescriptorSubtype
== UAC2_CLOCK_SELECTOR
) ?
2516 UAC2_CX_CLOCK_SELECTOR
: UAC2_SU_SELECTOR
;
2518 namelist
= kmalloc_array(desc
->bNrInPins
, sizeof(char *), GFP_KERNEL
);
2523 #define MAX_ITEM_NAME_LEN 64
2524 for (i
= 0; i
< desc
->bNrInPins
; i
++) {
2525 struct usb_audio_term iterm
;
2527 namelist
[i
] = kmalloc(MAX_ITEM_NAME_LEN
, GFP_KERNEL
);
2535 len
= check_mapped_selector_name(state
, unitid
, i
, namelist
[i
],
2537 if (! len
&& check_input_term(state
, desc
->baSourceID
[i
], &iterm
) >= 0)
2538 len
= get_term_name(state
->chip
, &iterm
, namelist
[i
],
2539 MAX_ITEM_NAME_LEN
, 0);
2541 sprintf(namelist
[i
], "Input %u", i
);
2544 kctl
= snd_ctl_new1(&mixer_selectunit_ctl
, cval
);
2546 usb_audio_err(state
->chip
, "cannot malloc kcontrol\n");
2551 kctl
->private_value
= (unsigned long)namelist
;
2552 kctl
->private_free
= usb_mixer_selector_elem_free
;
2554 /* check the static mapping table at first */
2555 len
= check_mapped_name(map
, kctl
->id
.name
, sizeof(kctl
->id
.name
));
2558 /* if iSelector is given, use it */
2559 nameid
= uac_selector_unit_iSelector(desc
);
2561 len
= snd_usb_copy_string_desc(state
->chip
, nameid
,
2563 sizeof(kctl
->id
.name
));
2564 /* ... or pick up the terminal name at next */
2566 len
= get_term_name(state
->chip
, &state
->oterm
,
2567 kctl
->id
.name
, sizeof(kctl
->id
.name
), 0);
2568 /* ... or use the fixed string "USB" as the last resort */
2570 strlcpy(kctl
->id
.name
, "USB", sizeof(kctl
->id
.name
));
2572 /* and add the proper suffix */
2573 if (desc
->bDescriptorSubtype
== UAC2_CLOCK_SELECTOR
)
2574 append_ctl_name(kctl
, " Clock Source");
2575 else if ((state
->oterm
.type
& 0xff00) == 0x0100)
2576 append_ctl_name(kctl
, " Capture Source");
2578 append_ctl_name(kctl
, " Playback Source");
2581 usb_audio_dbg(state
->chip
, "[%d] SU [%s] items = %d\n",
2582 cval
->head
.id
, kctl
->id
.name
, desc
->bNrInPins
);
2583 return snd_usb_mixer_add_control(&cval
->head
, kctl
);
2587 * parse an audio unit recursively
2590 static int parse_audio_unit(struct mixer_build
*state
, int unitid
)
2593 int protocol
= state
->mixer
->protocol
;
2595 if (test_and_set_bit(unitid
, state
->unitbitmap
))
2596 return 0; /* the unit already visited */
2598 p1
= find_audio_control_unit(state
, unitid
);
2600 usb_audio_err(state
->chip
, "unit %d not found!\n", unitid
);
2604 if (protocol
== UAC_VERSION_1
|| protocol
== UAC_VERSION_2
) {
2606 case UAC_INPUT_TERMINAL
:
2607 return parse_audio_input_terminal(state
, unitid
, p1
);
2608 case UAC_MIXER_UNIT
:
2609 return parse_audio_mixer_unit(state
, unitid
, p1
);
2610 case UAC2_CLOCK_SOURCE
:
2611 return parse_clock_source_unit(state
, unitid
, p1
);
2612 case UAC_SELECTOR_UNIT
:
2613 case UAC2_CLOCK_SELECTOR
:
2614 return parse_audio_selector_unit(state
, unitid
, p1
);
2615 case UAC_FEATURE_UNIT
:
2616 return parse_audio_feature_unit(state
, unitid
, p1
);
2617 case UAC1_PROCESSING_UNIT
:
2618 /* UAC2_EFFECT_UNIT has the same value */
2619 if (protocol
== UAC_VERSION_1
)
2620 return parse_audio_processing_unit(state
, unitid
, p1
);
2622 return 0; /* FIXME - effect units not implemented yet */
2623 case UAC1_EXTENSION_UNIT
:
2624 /* UAC2_PROCESSING_UNIT_V2 has the same value */
2625 if (protocol
== UAC_VERSION_1
)
2626 return parse_audio_extension_unit(state
, unitid
, p1
);
2627 else /* UAC_VERSION_2 */
2628 return parse_audio_processing_unit(state
, unitid
, p1
);
2629 case UAC2_EXTENSION_UNIT_V2
:
2630 return parse_audio_extension_unit(state
, unitid
, p1
);
2632 usb_audio_err(state
->chip
,
2633 "unit %u: unexpected type 0x%02x\n", unitid
, p1
[2]);
2636 } else { /* UAC_VERSION_3 */
2638 case UAC_INPUT_TERMINAL
:
2639 return parse_audio_input_terminal(state
, unitid
, p1
);
2640 case UAC3_MIXER_UNIT
:
2641 return parse_audio_mixer_unit(state
, unitid
, p1
);
2642 case UAC3_CLOCK_SOURCE
:
2643 return parse_clock_source_unit(state
, unitid
, p1
);
2644 case UAC3_CLOCK_SELECTOR
:
2645 return parse_audio_selector_unit(state
, unitid
, p1
);
2646 case UAC3_FEATURE_UNIT
:
2647 return parse_audio_feature_unit(state
, unitid
, p1
);
2648 case UAC3_EFFECT_UNIT
:
2649 return 0; /* FIXME - effect units not implemented yet */
2650 case UAC3_PROCESSING_UNIT
:
2651 return parse_audio_processing_unit(state
, unitid
, p1
);
2652 case UAC3_EXTENSION_UNIT
:
2653 return parse_audio_extension_unit(state
, unitid
, p1
);
2655 usb_audio_err(state
->chip
,
2656 "unit %u: unexpected type 0x%02x\n", unitid
, p1
[2]);
2662 static void snd_usb_mixer_free(struct usb_mixer_interface
*mixer
)
2664 /* kill pending URBs */
2665 snd_usb_mixer_disconnect(mixer
);
2667 kfree(mixer
->id_elems
);
2669 kfree(mixer
->urb
->transfer_buffer
);
2670 usb_free_urb(mixer
->urb
);
2672 usb_free_urb(mixer
->rc_urb
);
2673 kfree(mixer
->rc_setup_packet
);
2677 static int snd_usb_mixer_dev_free(struct snd_device
*device
)
2679 struct usb_mixer_interface
*mixer
= device
->device_data
;
2680 snd_usb_mixer_free(mixer
);
2684 /* UAC3 predefined channels configuration */
2685 struct uac3_badd_profile
{
2688 int c_chmask
; /* capture channels mask */
2689 int p_chmask
; /* playback channels mask */
2690 int st_chmask
; /* side tone mixing channel mask */
2693 static struct uac3_badd_profile uac3_badd_profiles
[] = {
2696 * BAIF, BAOF or combination of both
2697 * IN: Mono or Stereo cfg, Mono alt possible
2698 * OUT: Mono or Stereo cfg, Mono alt possible
2700 .subclass
= UAC3_FUNCTION_SUBCLASS_GENERIC_IO
,
2701 .name
= "GENERIC IO",
2702 .c_chmask
= -1, /* dynamic channels */
2703 .p_chmask
= -1, /* dynamic channels */
2706 /* BAOF; Stereo only cfg, Mono alt possible */
2707 .subclass
= UAC3_FUNCTION_SUBCLASS_HEADPHONE
,
2708 .name
= "HEADPHONE",
2712 /* BAOF; Mono or Stereo cfg, Mono alt possible */
2713 .subclass
= UAC3_FUNCTION_SUBCLASS_SPEAKER
,
2715 .p_chmask
= -1, /* dynamic channels */
2718 /* BAIF; Mono or Stereo cfg, Mono alt possible */
2719 .subclass
= UAC3_FUNCTION_SUBCLASS_MICROPHONE
,
2720 .name
= "MICROPHONE",
2721 .c_chmask
= -1, /* dynamic channels */
2727 * OUT: Mono or Stereo cfg, Mono alt possible
2729 .subclass
= UAC3_FUNCTION_SUBCLASS_HEADSET
,
2732 .p_chmask
= -1, /* dynamic channels */
2736 /* BAIOF; IN: Mono only; OUT: Stereo only, Mono alt possible */
2737 .subclass
= UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER
,
2738 .name
= "HEADSET ADAPTER",
2744 /* BAIF + BAOF; IN: Mono only; OUT: Mono only */
2745 .subclass
= UAC3_FUNCTION_SUBCLASS_SPEAKERPHONE
,
2746 .name
= "SPEAKERPHONE",
2750 { 0 } /* terminator */
2753 static bool uac3_badd_func_has_valid_channels(struct usb_mixer_interface
*mixer
,
2754 struct uac3_badd_profile
*f
,
2755 int c_chmask
, int p_chmask
)
2758 * If both playback/capture channels are dynamic, make sure
2759 * at least one channel is present
2761 if (f
->c_chmask
< 0 && f
->p_chmask
< 0) {
2762 if (!c_chmask
&& !p_chmask
) {
2763 usb_audio_warn(mixer
->chip
, "BAAD %s: no channels?",
2770 if ((f
->c_chmask
< 0 && !c_chmask
) ||
2771 (f
->c_chmask
>= 0 && f
->c_chmask
!= c_chmask
)) {
2772 usb_audio_warn(mixer
->chip
, "BAAD %s c_chmask mismatch",
2776 if ((f
->p_chmask
< 0 && !p_chmask
) ||
2777 (f
->p_chmask
>= 0 && f
->p_chmask
!= p_chmask
)) {
2778 usb_audio_warn(mixer
->chip
, "BAAD %s p_chmask mismatch",
2786 * create mixer controls for UAC3 BADD profiles
2788 * UAC3 BADD device doesn't contain CS descriptors thus we will guess everything
2790 * BADD device may contain Mixer Unit, which doesn't have any controls, skip it
2792 static int snd_usb_mixer_controls_badd(struct usb_mixer_interface
*mixer
,
2795 struct usb_device
*dev
= mixer
->chip
->dev
;
2796 struct usb_interface_assoc_descriptor
*assoc
;
2797 int badd_profile
= mixer
->chip
->badd_profile
;
2798 struct uac3_badd_profile
*f
;
2799 const struct usbmix_ctl_map
*map
;
2800 int p_chmask
= 0, c_chmask
= 0, st_chmask
= 0;
2803 assoc
= usb_ifnum_to_if(dev
, ctrlif
)->intf_assoc
;
2805 /* Detect BADD capture/playback channels from AS EP descriptors */
2806 for (i
= 0; i
< assoc
->bInterfaceCount
; i
++) {
2807 int intf
= assoc
->bFirstInterface
+ i
;
2809 struct usb_interface
*iface
;
2810 struct usb_host_interface
*alts
;
2811 struct usb_interface_descriptor
*altsd
;
2812 unsigned int maxpacksize
;
2819 iface
= usb_ifnum_to_if(dev
, intf
);
2820 num
= iface
->num_altsetting
;
2826 * The number of Channels in an AudioStreaming interface
2827 * and the audio sample bit resolution (16 bits or 24
2828 * bits) can be derived from the wMaxPacketSize field in
2829 * the Standard AS Audio Data Endpoint descriptor in
2830 * Alternate Setting 1
2832 alts
= &iface
->altsetting
[1];
2833 altsd
= get_iface_desc(alts
);
2835 if (altsd
->bNumEndpoints
< 1)
2838 /* check direction */
2839 dir_in
= (get_endpoint(alts
, 0)->bEndpointAddress
& USB_DIR_IN
);
2840 maxpacksize
= le16_to_cpu(get_endpoint(alts
, 0)->wMaxPacketSize
);
2842 switch (maxpacksize
) {
2844 usb_audio_err(mixer
->chip
,
2845 "incorrect wMaxPacketSize 0x%x for BADD profile\n",
2848 case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_16
:
2849 case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_16
:
2850 case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_24
:
2851 case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_24
:
2854 case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_16
:
2855 case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_16
:
2856 case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_24
:
2857 case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_24
:
2868 usb_audio_dbg(mixer
->chip
,
2869 "UAC3 BADD profile 0x%x: detected c_chmask=%d p_chmask=%d\n",
2870 badd_profile
, c_chmask
, p_chmask
);
2872 /* check the mapping table */
2873 for (map
= uac3_badd_usbmix_ctl_maps
; map
->id
; map
++) {
2874 if (map
->id
== badd_profile
)
2881 for (f
= uac3_badd_profiles
; f
->name
; f
++) {
2882 if (badd_profile
== f
->subclass
)
2887 if (!uac3_badd_func_has_valid_channels(mixer
, f
, c_chmask
, p_chmask
))
2889 st_chmask
= f
->st_chmask
;
2893 /* Master channel, always writable */
2894 build_feature_ctl_badd(mixer
, 0, UAC_FU_MUTE
,
2895 UAC3_BADD_FU_ID2
, map
->map
);
2896 /* Mono/Stereo volume channels, always writable */
2897 build_feature_ctl_badd(mixer
, p_chmask
, UAC_FU_VOLUME
,
2898 UAC3_BADD_FU_ID2
, map
->map
);
2903 /* Master channel, always writable */
2904 build_feature_ctl_badd(mixer
, 0, UAC_FU_MUTE
,
2905 UAC3_BADD_FU_ID5
, map
->map
);
2906 /* Mono/Stereo volume channels, always writable */
2907 build_feature_ctl_badd(mixer
, c_chmask
, UAC_FU_VOLUME
,
2908 UAC3_BADD_FU_ID5
, map
->map
);
2911 /* Side tone-mixing */
2913 /* Master channel, always writable */
2914 build_feature_ctl_badd(mixer
, 0, UAC_FU_MUTE
,
2915 UAC3_BADD_FU_ID7
, map
->map
);
2916 /* Mono volume channel, always writable */
2917 build_feature_ctl_badd(mixer
, 1, UAC_FU_VOLUME
,
2918 UAC3_BADD_FU_ID7
, map
->map
);
2921 /* Insertion Control */
2922 if (f
->subclass
== UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER
) {
2923 struct usb_audio_term iterm
, oterm
;
2925 /* Input Term - Insertion control */
2926 memset(&iterm
, 0, sizeof(iterm
));
2927 iterm
.id
= UAC3_BADD_IT_ID4
;
2928 iterm
.type
= UAC_BIDIR_TERMINAL_HEADSET
;
2929 build_connector_control(mixer
, &iterm
, true);
2931 /* Output Term - Insertion control */
2932 memset(&oterm
, 0, sizeof(oterm
));
2933 oterm
.id
= UAC3_BADD_OT_ID3
;
2934 oterm
.type
= UAC_BIDIR_TERMINAL_HEADSET
;
2935 build_connector_control(mixer
, &oterm
, false);
2942 * create mixer controls
2944 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
2946 static int snd_usb_mixer_controls(struct usb_mixer_interface
*mixer
)
2948 struct mixer_build state
;
2950 const struct usbmix_ctl_map
*map
;
2953 memset(&state
, 0, sizeof(state
));
2954 state
.chip
= mixer
->chip
;
2955 state
.mixer
= mixer
;
2956 state
.buffer
= mixer
->hostif
->extra
;
2957 state
.buflen
= mixer
->hostif
->extralen
;
2959 /* check the mapping table */
2960 for (map
= usbmix_ctl_maps
; map
->id
; map
++) {
2961 if (map
->id
== state
.chip
->usb_id
) {
2962 state
.map
= map
->map
;
2963 state
.selector_map
= map
->selector_map
;
2964 mixer
->ignore_ctl_error
= map
->ignore_ctl_error
;
2970 while ((p
= snd_usb_find_csint_desc(mixer
->hostif
->extra
,
2971 mixer
->hostif
->extralen
,
2972 p
, UAC_OUTPUT_TERMINAL
)) != NULL
) {
2973 if (mixer
->protocol
== UAC_VERSION_1
) {
2974 struct uac1_output_terminal_descriptor
*desc
= p
;
2976 if (desc
->bLength
< sizeof(*desc
))
2977 continue; /* invalid descriptor? */
2978 /* mark terminal ID as visited */
2979 set_bit(desc
->bTerminalID
, state
.unitbitmap
);
2980 state
.oterm
.id
= desc
->bTerminalID
;
2981 state
.oterm
.type
= le16_to_cpu(desc
->wTerminalType
);
2982 state
.oterm
.name
= desc
->iTerminal
;
2983 err
= parse_audio_unit(&state
, desc
->bSourceID
);
2984 if (err
< 0 && err
!= -EINVAL
)
2986 } else if (mixer
->protocol
== UAC_VERSION_2
) {
2987 struct uac2_output_terminal_descriptor
*desc
= p
;
2989 if (desc
->bLength
< sizeof(*desc
))
2990 continue; /* invalid descriptor? */
2991 /* mark terminal ID as visited */
2992 set_bit(desc
->bTerminalID
, state
.unitbitmap
);
2993 state
.oterm
.id
= desc
->bTerminalID
;
2994 state
.oterm
.type
= le16_to_cpu(desc
->wTerminalType
);
2995 state
.oterm
.name
= desc
->iTerminal
;
2996 err
= parse_audio_unit(&state
, desc
->bSourceID
);
2997 if (err
< 0 && err
!= -EINVAL
)
3001 * For UAC2, use the same approach to also add the
3004 err
= parse_audio_unit(&state
, desc
->bCSourceID
);
3005 if (err
< 0 && err
!= -EINVAL
)
3008 if (uac_v2v3_control_is_readable(le16_to_cpu(desc
->bmControls
),
3009 UAC2_TE_CONNECTOR
)) {
3010 build_connector_control(state
.mixer
, &state
.oterm
,
3013 } else { /* UAC_VERSION_3 */
3014 struct uac3_output_terminal_descriptor
*desc
= p
;
3016 if (desc
->bLength
< sizeof(*desc
))
3017 continue; /* invalid descriptor? */
3018 /* mark terminal ID as visited */
3019 set_bit(desc
->bTerminalID
, state
.unitbitmap
);
3020 state
.oterm
.id
= desc
->bTerminalID
;
3021 state
.oterm
.type
= le16_to_cpu(desc
->wTerminalType
);
3022 state
.oterm
.name
= le16_to_cpu(desc
->wTerminalDescrStr
);
3023 err
= parse_audio_unit(&state
, desc
->bSourceID
);
3024 if (err
< 0 && err
!= -EINVAL
)
3028 * For UAC3, use the same approach to also add the
3031 err
= parse_audio_unit(&state
, desc
->bCSourceID
);
3032 if (err
< 0 && err
!= -EINVAL
)
3035 if (uac_v2v3_control_is_readable(le32_to_cpu(desc
->bmControls
),
3036 UAC3_TE_INSERTION
)) {
3037 build_connector_control(state
.mixer
, &state
.oterm
,
3046 void snd_usb_mixer_notify_id(struct usb_mixer_interface
*mixer
, int unitid
)
3048 struct usb_mixer_elem_list
*list
;
3050 for_each_mixer_elem(list
, mixer
, unitid
) {
3051 struct usb_mixer_elem_info
*info
=
3052 mixer_elem_list_to_info(list
);
3053 /* invalidate cache, so the value is read from the device */
3055 snd_ctl_notify(mixer
->chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
3060 static void snd_usb_mixer_dump_cval(struct snd_info_buffer
*buffer
,
3061 struct usb_mixer_elem_list
*list
)
3063 struct usb_mixer_elem_info
*cval
= mixer_elem_list_to_info(list
);
3064 static char *val_types
[] = {"BOOLEAN", "INV_BOOLEAN",
3065 "S8", "U8", "S16", "U16"};
3066 snd_iprintf(buffer
, " Info: id=%i, control=%i, cmask=0x%x, "
3067 "channels=%i, type=\"%s\"\n", cval
->head
.id
,
3068 cval
->control
, cval
->cmask
, cval
->channels
,
3069 val_types
[cval
->val_type
]);
3070 snd_iprintf(buffer
, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
3071 cval
->min
, cval
->max
, cval
->dBmin
, cval
->dBmax
);
3074 static void snd_usb_mixer_proc_read(struct snd_info_entry
*entry
,
3075 struct snd_info_buffer
*buffer
)
3077 struct snd_usb_audio
*chip
= entry
->private_data
;
3078 struct usb_mixer_interface
*mixer
;
3079 struct usb_mixer_elem_list
*list
;
3082 list_for_each_entry(mixer
, &chip
->mixer_list
, list
) {
3084 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
3085 chip
->usb_id
, snd_usb_ctrl_intf(chip
),
3086 mixer
->ignore_ctl_error
);
3087 snd_iprintf(buffer
, "Card: %s\n", chip
->card
->longname
);
3088 for (unitid
= 0; unitid
< MAX_ID_ELEMS
; unitid
++) {
3089 for_each_mixer_elem(list
, mixer
, unitid
) {
3090 snd_iprintf(buffer
, " Unit: %i\n", list
->id
);
3093 " Control: name=\"%s\", index=%i\n",
3094 list
->kctl
->id
.name
,
3095 list
->kctl
->id
.index
);
3097 list
->dump(buffer
, list
);
3103 static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface
*mixer
,
3104 int attribute
, int value
, int index
)
3106 struct usb_mixer_elem_list
*list
;
3107 __u8 unitid
= (index
>> 8) & 0xff;
3108 __u8 control
= (value
>> 8) & 0xff;
3109 __u8 channel
= value
& 0xff;
3110 unsigned int count
= 0;
3112 if (channel
>= MAX_CHANNELS
) {
3113 usb_audio_dbg(mixer
->chip
,
3114 "%s(): bogus channel number %d\n",
3119 for_each_mixer_elem(list
, mixer
, unitid
)
3125 for_each_mixer_elem(list
, mixer
, unitid
) {
3126 struct usb_mixer_elem_info
*info
;
3131 info
= mixer_elem_list_to_info(list
);
3132 if (count
> 1 && info
->control
!= control
)
3135 switch (attribute
) {
3137 /* invalidate cache, so the value is read from the device */
3139 info
->cached
&= ~(1 << channel
);
3140 else /* master channel */
3143 snd_ctl_notify(mixer
->chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
3144 &info
->head
.kctl
->id
);
3156 usb_audio_dbg(mixer
->chip
,
3157 "unknown attribute %d in interrupt\n",
3164 static void snd_usb_mixer_interrupt(struct urb
*urb
)
3166 struct usb_mixer_interface
*mixer
= urb
->context
;
3167 int len
= urb
->actual_length
;
3168 int ustatus
= urb
->status
;
3173 if (mixer
->protocol
== UAC_VERSION_1
) {
3174 struct uac1_status_word
*status
;
3176 for (status
= urb
->transfer_buffer
;
3177 len
>= sizeof(*status
);
3178 len
-= sizeof(*status
), status
++) {
3179 dev_dbg(&urb
->dev
->dev
, "status interrupt: %02x %02x\n",
3180 status
->bStatusType
,
3181 status
->bOriginator
);
3183 /* ignore any notifications not from the control interface */
3184 if ((status
->bStatusType
& UAC1_STATUS_TYPE_ORIG_MASK
) !=
3185 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF
)
3188 if (status
->bStatusType
& UAC1_STATUS_TYPE_MEM_CHANGED
)
3189 snd_usb_mixer_rc_memory_change(mixer
, status
->bOriginator
);
3191 snd_usb_mixer_notify_id(mixer
, status
->bOriginator
);
3193 } else { /* UAC_VERSION_2 */
3194 struct uac2_interrupt_data_msg
*msg
;
3196 for (msg
= urb
->transfer_buffer
;
3197 len
>= sizeof(*msg
);
3198 len
-= sizeof(*msg
), msg
++) {
3199 /* drop vendor specific and endpoint requests */
3200 if ((msg
->bInfo
& UAC2_INTERRUPT_DATA_MSG_VENDOR
) ||
3201 (msg
->bInfo
& UAC2_INTERRUPT_DATA_MSG_EP
))
3204 snd_usb_mixer_interrupt_v2(mixer
, msg
->bAttribute
,
3205 le16_to_cpu(msg
->wValue
),
3206 le16_to_cpu(msg
->wIndex
));
3211 if (ustatus
!= -ENOENT
&&
3212 ustatus
!= -ECONNRESET
&&
3213 ustatus
!= -ESHUTDOWN
) {
3214 urb
->dev
= mixer
->chip
->dev
;
3215 usb_submit_urb(urb
, GFP_ATOMIC
);
3219 /* create the handler for the optional status interrupt endpoint */
3220 static int snd_usb_mixer_status_create(struct usb_mixer_interface
*mixer
)
3222 struct usb_endpoint_descriptor
*ep
;
3223 void *transfer_buffer
;
3227 /* we need one interrupt input endpoint */
3228 if (get_iface_desc(mixer
->hostif
)->bNumEndpoints
< 1)
3230 ep
= get_endpoint(mixer
->hostif
, 0);
3231 if (!usb_endpoint_dir_in(ep
) || !usb_endpoint_xfer_int(ep
))
3234 epnum
= usb_endpoint_num(ep
);
3235 buffer_length
= le16_to_cpu(ep
->wMaxPacketSize
);
3236 transfer_buffer
= kmalloc(buffer_length
, GFP_KERNEL
);
3237 if (!transfer_buffer
)
3239 mixer
->urb
= usb_alloc_urb(0, GFP_KERNEL
);
3241 kfree(transfer_buffer
);
3244 usb_fill_int_urb(mixer
->urb
, mixer
->chip
->dev
,
3245 usb_rcvintpipe(mixer
->chip
->dev
, epnum
),
3246 transfer_buffer
, buffer_length
,
3247 snd_usb_mixer_interrupt
, mixer
, ep
->bInterval
);
3248 usb_submit_urb(mixer
->urb
, GFP_KERNEL
);
3252 static int keep_iface_ctl_get(struct snd_kcontrol
*kcontrol
,
3253 struct snd_ctl_elem_value
*ucontrol
)
3255 struct usb_mixer_interface
*mixer
= snd_kcontrol_chip(kcontrol
);
3257 ucontrol
->value
.integer
.value
[0] = mixer
->chip
->keep_iface
;
3261 static int keep_iface_ctl_put(struct snd_kcontrol
*kcontrol
,
3262 struct snd_ctl_elem_value
*ucontrol
)
3264 struct usb_mixer_interface
*mixer
= snd_kcontrol_chip(kcontrol
);
3265 bool keep_iface
= !!ucontrol
->value
.integer
.value
[0];
3267 if (mixer
->chip
->keep_iface
== keep_iface
)
3269 mixer
->chip
->keep_iface
= keep_iface
;
3273 static const struct snd_kcontrol_new keep_iface_ctl
= {
3274 .iface
= SNDRV_CTL_ELEM_IFACE_CARD
,
3275 .name
= "Keep Interface",
3276 .info
= snd_ctl_boolean_mono_info
,
3277 .get
= keep_iface_ctl_get
,
3278 .put
= keep_iface_ctl_put
,
3281 static int create_keep_iface_ctl(struct usb_mixer_interface
*mixer
)
3283 struct snd_kcontrol
*kctl
= snd_ctl_new1(&keep_iface_ctl
, mixer
);
3285 /* need only one control per card */
3286 if (snd_ctl_find_id(mixer
->chip
->card
, &kctl
->id
)) {
3287 snd_ctl_free_one(kctl
);
3291 return snd_ctl_add(mixer
->chip
->card
, kctl
);
3294 int snd_usb_create_mixer(struct snd_usb_audio
*chip
, int ctrlif
,
3297 static struct snd_device_ops dev_ops
= {
3298 .dev_free
= snd_usb_mixer_dev_free
3300 struct usb_mixer_interface
*mixer
;
3301 struct snd_info_entry
*entry
;
3304 strcpy(chip
->card
->mixername
, "USB Mixer");
3306 mixer
= kzalloc(sizeof(*mixer
), GFP_KERNEL
);
3310 mixer
->ignore_ctl_error
= ignore_error
;
3311 mixer
->id_elems
= kcalloc(MAX_ID_ELEMS
, sizeof(*mixer
->id_elems
),
3313 if (!mixer
->id_elems
) {
3318 mixer
->hostif
= &usb_ifnum_to_if(chip
->dev
, ctrlif
)->altsetting
[0];
3319 switch (get_iface_desc(mixer
->hostif
)->bInterfaceProtocol
) {
3322 mixer
->protocol
= UAC_VERSION_1
;
3325 mixer
->protocol
= UAC_VERSION_2
;
3328 mixer
->protocol
= UAC_VERSION_3
;
3332 if (mixer
->protocol
== UAC_VERSION_3
&&
3333 chip
->badd_profile
>= UAC3_FUNCTION_SUBCLASS_GENERIC_IO
) {
3334 err
= snd_usb_mixer_controls_badd(mixer
, ctrlif
);
3338 err
= snd_usb_mixer_controls(mixer
);
3343 err
= snd_usb_mixer_status_create(mixer
);
3347 err
= create_keep_iface_ctl(mixer
);
3351 snd_usb_mixer_apply_create_quirk(mixer
);
3353 err
= snd_device_new(chip
->card
, SNDRV_DEV_CODEC
, mixer
, &dev_ops
);
3357 if (list_empty(&chip
->mixer_list
) &&
3358 !snd_card_proc_new(chip
->card
, "usbmixer", &entry
))
3359 snd_info_set_text_ops(entry
, chip
, snd_usb_mixer_proc_read
);
3361 list_add(&mixer
->list
, &chip
->mixer_list
);
3365 snd_usb_mixer_free(mixer
);
3369 void snd_usb_mixer_disconnect(struct usb_mixer_interface
*mixer
)
3371 if (mixer
->disconnected
)
3374 usb_kill_urb(mixer
->urb
);
3376 usb_kill_urb(mixer
->rc_urb
);
3377 mixer
->disconnected
= true;
3381 /* stop any bus activity of a mixer */
3382 static void snd_usb_mixer_inactivate(struct usb_mixer_interface
*mixer
)
3384 usb_kill_urb(mixer
->urb
);
3385 usb_kill_urb(mixer
->rc_urb
);
3388 static int snd_usb_mixer_activate(struct usb_mixer_interface
*mixer
)
3393 err
= usb_submit_urb(mixer
->urb
, GFP_NOIO
);
3401 int snd_usb_mixer_suspend(struct usb_mixer_interface
*mixer
)
3403 snd_usb_mixer_inactivate(mixer
);
3407 static int restore_mixer_value(struct usb_mixer_elem_list
*list
)
3409 struct usb_mixer_elem_info
*cval
= mixer_elem_list_to_info(list
);
3414 for (c
= 0; c
< MAX_CHANNELS
; c
++) {
3415 if (!(cval
->cmask
& (1 << c
)))
3417 if (cval
->cached
& (1 << (c
+ 1))) {
3418 err
= snd_usb_set_cur_mix_value(cval
, c
+ 1, idx
,
3419 cval
->cache_val
[idx
]);
3428 err
= snd_usb_set_cur_mix_value(cval
, 0, 0, *cval
->cache_val
);
3437 int snd_usb_mixer_resume(struct usb_mixer_interface
*mixer
, bool reset_resume
)
3439 struct usb_mixer_elem_list
*list
;
3443 /* restore cached mixer values */
3444 for (id
= 0; id
< MAX_ID_ELEMS
; id
++) {
3445 for_each_mixer_elem(list
, mixer
, id
) {
3447 err
= list
->resume(list
);
3455 snd_usb_mixer_resume_quirk(mixer
);
3457 return snd_usb_mixer_activate(mixer
);
3461 void snd_usb_mixer_elem_init_std(struct usb_mixer_elem_list
*list
,
3462 struct usb_mixer_interface
*mixer
,
3465 list
->mixer
= mixer
;
3467 list
->dump
= snd_usb_mixer_dump_cval
;
3469 list
->resume
= restore_mixer_value
;