2 * (Tentative) USB Audio Driver for ALSA
8 * Many codes borrowed from audio.c by
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 UAC3_SELECTOR_UNIT:
679 strcpy(name, "Selector");
681 case UAC3_PROCESSING_UNIT:
682 strcpy(name, "Process Unit");
684 case UAC3_EXTENSION_UNIT:
685 strcpy(name, "Ext Unit");
687 case UAC3_MIXER_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 = UAC3_MIXER_UNIT << 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 = UAC3_SELECTOR_UNIT << 16; /* virtual type */
850 term->name = uac_selector_unit_iSelector(d);
853 case UAC1_PROCESSING_UNIT:
854 /* UAC2_EFFECT_UNIT */
855 if (protocol == UAC_VERSION_1)
856 term->type = UAC3_PROCESSING_UNIT << 16; /* virtual type */
857 else /* UAC_VERSION_2 */
858 term->type = UAC3_EFFECT_UNIT << 16; /* virtual type */
860 case UAC1_EXTENSION_UNIT:
861 /* UAC2_PROCESSING_UNIT_V2 */
862 if (protocol == UAC_VERSION_1 && !term->type)
863 term->type = UAC3_EXTENSION_UNIT << 16; /* virtual type */
864 else if (protocol == UAC_VERSION_2 && !term->type)
865 term->type = UAC3_PROCESSING_UNIT << 16; /* virtual type */
867 case UAC2_EXTENSION_UNIT_V2: {
868 struct uac_processing_unit_descriptor *d = p1;
870 if (protocol == UAC_VERSION_2 &&
871 hdr[2] == UAC2_EFFECT_UNIT) {
872 /* UAC2/UAC1 unit IDs overlap here in an
873 * uncompatible way. Ignore this unit for now.
879 id = d->baSourceID[0];
880 break; /* continue to parse */
883 term->type = UAC3_EXTENSION_UNIT << 16; /* virtual type */
885 term->channels = uac_processing_unit_bNrChannels(d);
886 term->chconfig = uac_processing_unit_wChannelConfig(d, protocol);
887 term->name = uac_processing_unit_iProcessing(d, protocol);
890 case UAC2_CLOCK_SOURCE: {
891 struct uac_clock_source_descriptor *d = p1;
893 term->type = UAC3_CLOCK_SOURCE << 16; /* virtual type */
895 term->name = d->iClockSource;
901 } else { /* UAC_VERSION_3 */
903 case UAC_INPUT_TERMINAL: {
904 struct uac3_input_terminal_descriptor *d = p1;
906 /* call recursively to verify that the
907 * referenced clock entity is valid */
908 err = check_input_term(state, d->bCSourceID, term);
912 /* save input term properties after recursion,
913 * to ensure they are not overriden by the
916 term->type = le16_to_cpu(d->wTerminalType);
918 err = get_cluster_channels_v3(state, le16_to_cpu(d->wClusterDescrID));
921 term->channels = err;
923 /* REVISIT: UAC3 IT doesn't have channels cfg */
926 term->name = le16_to_cpu(d->wTerminalDescrStr);
929 case UAC3_FEATURE_UNIT: {
930 struct uac3_feature_unit_descriptor *d = p1;
933 break; /* continue to parse */
935 case UAC3_CLOCK_SOURCE: {
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);
943 case UAC3_MIXER_UNIT: {
944 struct uac_mixer_unit_descriptor *d = p1;
946 err = uac_mixer_unit_get_channels(state, d);
950 term->channels = err;
951 term->type = UAC3_MIXER_UNIT << 16; /* virtual type */
955 case UAC3_SELECTOR_UNIT:
956 case UAC3_CLOCK_SELECTOR: {
957 struct uac_selector_unit_descriptor *d = p1;
958 /* call recursively to retrieve the channel info */
959 err = check_input_term(state, d->baSourceID[0], term);
962 term->type = UAC3_SELECTOR_UNIT << 16; /* virtual type */
964 term->name = 0; /* TODO: UAC3 Class-specific strings */
968 case UAC3_PROCESSING_UNIT: {
969 struct uac_processing_unit_descriptor *d = p1;
974 /* call recursively to retrieve the channel info */
975 err = check_input_term(state, d->baSourceID[0], term);
979 term->type = UAC3_PROCESSING_UNIT << 16; /* virtual type */
981 term->name = 0; /* TODO: UAC3 Class-specific strings */
997 /* feature unit control information */
998 struct usb_feature_control_info {
1001 int type; /* data type for uac1 */
1002 int type_uac2; /* data type for uac2 if different from uac1, else -1 */
1005 static struct usb_feature_control_info audio_feature_info[] = {
1006 { UAC_FU_MUTE, "Mute", USB_MIXER_INV_BOOLEAN, -1 },
1007 { UAC_FU_VOLUME, "Volume", USB_MIXER_S16, -1 },
1008 { UAC_FU_BASS, "Tone Control - Bass", USB_MIXER_S8, -1 },
1009 { UAC_FU_MID, "Tone Control - Mid", USB_MIXER_S8, -1 },
1010 { UAC_FU_TREBLE, "Tone Control - Treble", USB_MIXER_S8, -1 },
1011 { UAC_FU_GRAPHIC_EQUALIZER, "Graphic Equalizer", USB_MIXER_S8, -1 }, /* FIXME: not implemented yet */
1012 { UAC_FU_AUTOMATIC_GAIN, "Auto Gain Control", USB_MIXER_BOOLEAN, -1 },
1013 { UAC_FU_DELAY, "Delay Control", USB_MIXER_U16, USB_MIXER_U32 },
1014 { UAC_FU_BASS_BOOST, "Bass Boost", USB_MIXER_BOOLEAN, -1 },
1015 { UAC_FU_LOUDNESS, "Loudness", USB_MIXER_BOOLEAN, -1 },
1017 { UAC2_FU_INPUT_GAIN, "Input Gain Control", USB_MIXER_S16, -1 },
1018 { UAC2_FU_INPUT_GAIN_PAD, "Input Gain Pad Control", USB_MIXER_S16, -1 },
1019 { UAC2_FU_PHASE_INVERTER, "Phase Inverter Control", USB_MIXER_BOOLEAN, -1 },
1022 /* private_free callback */
1023 void snd_usb_mixer_elem_free(struct snd_kcontrol *kctl)
1025 kfree(kctl->private_data);
1026 kctl->private_data = NULL;
1030 * interface to ALSA control for feature/mixer units
1033 /* volume control quirks */
1034 static void volume_control_quirks(struct usb_mixer_elem_info *cval,
1035 struct snd_kcontrol *kctl)
1037 struct snd_usb_audio *chip = cval->head.mixer->chip;
1038 switch (chip->usb_id) {
1039 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
1040 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
1041 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
1047 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
1048 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
1053 if (strstr(kctl->id.name, "Effect Return") != NULL) {
1059 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
1060 (strstr(kctl->id.name, "Effect Send") != NULL)) {
1061 cval->min = 0xb5fb; /* -73 dB = 0xb6ff */
1067 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
1068 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
1069 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
1070 usb_audio_info(chip,
1071 "set quirk for FTU Effect Duration\n");
1077 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
1078 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
1079 usb_audio_info(chip,
1080 "set quirks for FTU Effect Feedback/Volume\n");
1087 case USB_ID(0x0d8c, 0x0103):
1088 if (!strcmp(kctl->id.name, "PCM Playback Volume")) {
1089 usb_audio_info(chip,
1090 "set volume quirk for CM102-A+/102S+\n");
1095 case USB_ID(0x0471, 0x0101):
1096 case USB_ID(0x0471, 0x0104):
1097 case USB_ID(0x0471, 0x0105):
1098 case USB_ID(0x0672, 0x1041):
1099 /* quirk for UDA1321/N101.
1100 * note that detection between firmware 2.1.1.7 (N101)
1101 * and later 2.1.1.21 is not very clear from datasheets.
1102 * I hope that the min value is -15360 for newer firmware --jk
1104 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
1105 cval->min == -15616) {
1106 usb_audio_info(chip,
1107 "set volume quirk for UDA1321/N101 chip\n");
1112 case USB_ID(0x046d, 0x09a4):
1113 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1114 usb_audio_info(chip,
1115 "set volume quirk for QuickCam E3500\n");
1122 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
1123 case USB_ID(0x046d, 0x0808):
1124 case USB_ID(0x046d, 0x0809):
1125 case USB_ID(0x046d, 0x0819): /* Logitech Webcam C210 */
1126 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
1127 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
1128 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
1129 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
1130 case USB_ID(0x046d, 0x08ca): /* Logitech Quickcam Fusion */
1131 case USB_ID(0x046d, 0x0991):
1132 case USB_ID(0x046d, 0x09a2): /* QuickCam Communicate Deluxe/S7500 */
1133 /* Most audio usb devices lie about volume resolution.
1134 * Most Logitech webcams have res = 384.
1135 * Probably there is some logitech magic behind this number --fishor
1137 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1138 usb_audio_info(chip,
1139 "set resolution quirk: cval->res = 384\n");
1147 * retrieve the minimum and maximum values for the specified control
1149 static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
1150 int default_min, struct snd_kcontrol *kctl)
1153 cval->min = default_min;
1154 cval->max = cval->min + 1;
1156 cval->dBmin = cval->dBmax = 0;
1158 if (cval->val_type == USB_MIXER_BOOLEAN ||
1159 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1160 cval->initialized = 1;
1165 for (i = 0; i < MAX_CHANNELS; i++)
1166 if (cval->cmask & (1 << i)) {
1171 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
1172 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
1173 usb_audio_err(cval->head.mixer->chip,
1174 "%d:%d: cannot get min/max values for control %d (id %d)\n",
1175 cval->head.id, snd_usb_ctrl_intf(cval->head.mixer->chip),
1176 cval->control, cval->head.id);
1179 if (get_ctl_value(cval, UAC_GET_RES,
1180 (cval->control << 8) | minchn,
1184 int last_valid_res = cval->res;
1186 while (cval->res > 1) {
1187 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
1188 (cval->control << 8) | minchn,
1193 if (get_ctl_value(cval, UAC_GET_RES,
1194 (cval->control << 8) | minchn, &cval->res) < 0)
1195 cval->res = last_valid_res;
1200 /* Additional checks for the proper resolution
1202 * Some devices report smaller resolutions than actually
1203 * reacting. They don't return errors but simply clip
1204 * to the lower aligned value.
1206 if (cval->min + cval->res < cval->max) {
1207 int last_valid_res = cval->res;
1208 int saved, test, check;
1209 get_cur_mix_raw(cval, minchn, &saved);
1212 if (test < cval->max)
1216 if (test < cval->min || test > cval->max ||
1217 snd_usb_set_cur_mix_value(cval, minchn, 0, test) ||
1218 get_cur_mix_raw(cval, minchn, &check)) {
1219 cval->res = last_valid_res;
1226 snd_usb_set_cur_mix_value(cval, minchn, 0, saved);
1229 cval->initialized = 1;
1233 volume_control_quirks(cval, kctl);
1235 /* USB descriptions contain the dB scale in 1/256 dB unit
1236 * while ALSA TLV contains in 1/100 dB unit
1238 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
1239 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
1240 if (cval->dBmin > cval->dBmax) {
1241 /* something is wrong; assume it's either from/to 0dB */
1242 if (cval->dBmin < 0)
1244 else if (cval->dBmin > 0)
1246 if (cval->dBmin > cval->dBmax) {
1247 /* totally crap, return an error */
1255 #define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
1257 /* get a feature/mixer unit info */
1258 static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
1259 struct snd_ctl_elem_info *uinfo)
1261 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1263 if (cval->val_type == USB_MIXER_BOOLEAN ||
1264 cval->val_type == USB_MIXER_INV_BOOLEAN)
1265 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1267 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1268 uinfo->count = cval->channels;
1269 if (cval->val_type == USB_MIXER_BOOLEAN ||
1270 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1271 uinfo->value.integer.min = 0;
1272 uinfo->value.integer.max = 1;
1274 if (!cval->initialized) {
1275 get_min_max_with_quirks(cval, 0, kcontrol);
1276 if (cval->initialized && cval->dBmin >= cval->dBmax) {
1277 kcontrol->vd[0].access &=
1278 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1279 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK);
1280 snd_ctl_notify(cval->head.mixer->chip->card,
1281 SNDRV_CTL_EVENT_MASK_INFO,
1285 uinfo->value.integer.min = 0;
1286 uinfo->value.integer.max =
1287 (cval->max - cval->min + cval->res - 1) / cval->res;
1292 /* get the current value from feature/mixer unit */
1293 static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol,
1294 struct snd_ctl_elem_value *ucontrol)
1296 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1297 int c, cnt, val, err;
1299 ucontrol->value.integer.value[0] = cval->min;
1302 for (c = 0; c < MAX_CHANNELS; c++) {
1303 if (!(cval->cmask & (1 << c)))
1305 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &val);
1307 return filter_error(cval, err);
1308 val = get_relative_value(cval, val);
1309 ucontrol->value.integer.value[cnt] = val;
1314 /* master channel */
1315 err = snd_usb_get_cur_mix_value(cval, 0, 0, &val);
1317 return filter_error(cval, err);
1318 val = get_relative_value(cval, val);
1319 ucontrol->value.integer.value[0] = val;
1324 /* put the current value to feature/mixer unit */
1325 static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
1326 struct snd_ctl_elem_value *ucontrol)
1328 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1329 int c, cnt, val, oval, err;
1334 for (c = 0; c < MAX_CHANNELS; c++) {
1335 if (!(cval->cmask & (1 << c)))
1337 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &oval);
1339 return filter_error(cval, err);
1340 val = ucontrol->value.integer.value[cnt];
1341 val = get_abs_value(cval, val);
1343 snd_usb_set_cur_mix_value(cval, c + 1, cnt, val);
1349 /* master channel */
1350 err = snd_usb_get_cur_mix_value(cval, 0, 0, &oval);
1352 return filter_error(cval, err);
1353 val = ucontrol->value.integer.value[0];
1354 val = get_abs_value(cval, val);
1356 snd_usb_set_cur_mix_value(cval, 0, 0, val);
1363 /* get the boolean value from the master channel of a UAC control */
1364 static int mixer_ctl_master_bool_get(struct snd_kcontrol *kcontrol,
1365 struct snd_ctl_elem_value *ucontrol)
1367 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1370 err = snd_usb_get_cur_mix_value(cval, 0, 0, &val);
1372 return filter_error(cval, err);
1374 ucontrol->value.integer.value[0] = val;
1378 /* get the connectors status and report it as boolean type */
1379 static int mixer_ctl_connector_get(struct snd_kcontrol *kcontrol,
1380 struct snd_ctl_elem_value *ucontrol)
1382 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1383 struct snd_usb_audio *chip = cval->head.mixer->chip;
1384 int idx = 0, validx, ret, val;
1386 validx = cval->control << 8 | 0;
1388 ret = snd_usb_lock_shutdown(chip) ? -EIO : 0;
1392 idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8);
1393 if (cval->head.mixer->protocol == UAC_VERSION_2) {
1394 struct uac2_connectors_ctl_blk uac2_conn;
1396 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), UAC2_CS_CUR,
1397 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
1398 validx, idx, &uac2_conn, sizeof(uac2_conn));
1399 val = !!uac2_conn.bNrChannels;
1400 } else { /* UAC_VERSION_3 */
1401 struct uac3_insertion_ctl_blk uac3_conn;
1403 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), UAC2_CS_CUR,
1404 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
1405 validx, idx, &uac3_conn, sizeof(uac3_conn));
1406 val = !!uac3_conn.bmConInserted;
1409 snd_usb_unlock_shutdown(chip);
1414 "cannot get connectors status: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
1415 UAC_GET_CUR, validx, idx, cval->val_type);
1419 ucontrol->value.integer.value[0] = val;
1423 static struct snd_kcontrol_new usb_feature_unit_ctl = {
1424 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1425 .name = "", /* will be filled later manually */
1426 .info = mixer_ctl_feature_info,
1427 .get = mixer_ctl_feature_get,
1428 .put = mixer_ctl_feature_put,
1431 /* the read-only variant */
1432 static const struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
1433 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1434 .name = "", /* will be filled later manually */
1435 .info = mixer_ctl_feature_info,
1436 .get = mixer_ctl_feature_get,
1441 * A control which shows the boolean value from reading a UAC control on
1442 * the master channel.
1444 static struct snd_kcontrol_new usb_bool_master_control_ctl_ro = {
1445 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1446 .name = "", /* will be filled later manually */
1447 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1448 .info = snd_ctl_boolean_mono_info,
1449 .get = mixer_ctl_master_bool_get,
1453 static const struct snd_kcontrol_new usb_connector_ctl_ro = {
1454 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1455 .name = "", /* will be filled later manually */
1456 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1457 .info = snd_ctl_boolean_mono_info,
1458 .get = mixer_ctl_connector_get,
1463 * This symbol is exported in order to allow the mixer quirks to
1464 * hook up to the standard feature unit control mechanism
1466 struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl;
1469 * build a feature control
1471 static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
1473 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
1477 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1478 * rename it to "Headphone". We determine if something is a headphone
1479 * similar to how udev determines form factor.
1481 static void check_no_speaker_on_headset(struct snd_kcontrol *kctl,
1482 struct snd_card *card)
1484 const char *names_to_check[] = {
1485 "Headset", "headset", "Headphone", "headphone", NULL};
1489 if (strcmp("Speaker", kctl->id.name))
1492 for (s = names_to_check; *s; s++)
1493 if (strstr(card->shortname, *s)) {
1501 strlcpy(kctl->id.name, "Headphone", sizeof(kctl->id.name));
1504 static struct usb_feature_control_info *get_feature_control_info(int control)
1508 for (i = 0; i < ARRAY_SIZE(audio_feature_info); ++i) {
1509 if (audio_feature_info[i].control == control)
1510 return &audio_feature_info[i];
1515 static void __build_feature_ctl(struct usb_mixer_interface *mixer,
1516 const struct usbmix_name_map *imap,
1517 unsigned int ctl_mask, int control,
1518 struct usb_audio_term *iterm,
1519 struct usb_audio_term *oterm,
1520 int unitid, int nameid, int readonly_mask)
1522 struct usb_feature_control_info *ctl_info;
1523 unsigned int len = 0;
1524 int mapped_name = 0;
1525 struct snd_kcontrol *kctl;
1526 struct usb_mixer_elem_info *cval;
1527 const struct usbmix_name_map *map;
1530 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
1531 /* FIXME: not supported yet */
1535 map = find_map(imap, unitid, control);
1536 if (check_ignored_ctl(map))
1539 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1542 snd_usb_mixer_elem_init_std(&cval->head, mixer, unitid);
1543 cval->control = control;
1544 cval->cmask = ctl_mask;
1546 ctl_info = get_feature_control_info(control);
1551 if (mixer->protocol == UAC_VERSION_1)
1552 cval->val_type = ctl_info->type;
1553 else /* UAC_VERSION_2 */
1554 cval->val_type = ctl_info->type_uac2 >= 0 ?
1555 ctl_info->type_uac2 : ctl_info->type;
1557 if (ctl_mask == 0) {
1558 cval->channels = 1; /* master channel */
1559 cval->master_readonly = readonly_mask;
1562 for (i = 0; i < 16; i++)
1563 if (ctl_mask & (1 << i))
1566 cval->ch_readonly = readonly_mask;
1570 * If all channels in the mask are marked read-only, make the control
1571 * read-only. snd_usb_set_cur_mix_value() will check the mask again and won't
1572 * issue write commands to read-only channels.
1574 if (cval->channels == readonly_mask)
1575 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1577 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1580 usb_audio_err(mixer->chip, "cannot malloc kcontrol\n");
1584 kctl->private_free = snd_usb_mixer_elem_free;
1586 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
1587 mapped_name = len != 0;
1589 len = snd_usb_copy_string_desc(mixer->chip, nameid,
1590 kctl->id.name, sizeof(kctl->id.name));
1596 * determine the control name. the rule is:
1597 * - if a name id is given in descriptor, use it.
1598 * - if the connected input can be determined, then use the name
1600 * - if the connected output can be determined, use it.
1601 * - otherwise, anonymous name.
1605 len = get_term_name(mixer->chip, iterm,
1607 sizeof(kctl->id.name), 1);
1609 len = get_term_name(mixer->chip, oterm,
1611 sizeof(kctl->id.name), 1);
1613 snprintf(kctl->id.name, sizeof(kctl->id.name),
1614 "Feature %d", unitid);
1618 check_no_speaker_on_headset(kctl, mixer->chip->card);
1621 * determine the stream direction:
1622 * if the connected output is USB stream, then it's likely a
1623 * capture stream. otherwise it should be playback (hopefully :)
1625 if (!mapped_name && oterm && !(oterm->type >> 16)) {
1626 if ((oterm->type & 0xff00) == 0x0100)
1627 append_ctl_name(kctl, " Capture");
1629 append_ctl_name(kctl, " Playback");
1631 append_ctl_name(kctl, control == UAC_FU_MUTE ?
1632 " Switch" : " Volume");
1636 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1637 sizeof(kctl->id.name));
1641 /* get min/max values */
1642 get_min_max_with_quirks(cval, 0, kctl);
1644 if (control == UAC_FU_VOLUME) {
1645 check_mapped_dB(map, cval);
1646 if (cval->dBmin < cval->dBmax || !cval->initialized) {
1647 kctl->tlv.c = snd_usb_mixer_vol_tlv;
1648 kctl->vd[0].access |=
1649 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1650 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1654 snd_usb_mixer_fu_apply_quirk(mixer, cval, unitid, kctl);
1656 range = (cval->max - cval->min) / cval->res;
1658 * Are there devices with volume range more than 255? I use a bit more
1659 * to be sure. 384 is a resolution magic number found on Logitech
1660 * devices. It will definitively catch all buggy Logitech devices.
1663 usb_audio_warn(mixer->chip,
1664 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
1666 usb_audio_warn(mixer->chip,
1667 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
1668 cval->head.id, kctl->id.name, cval->channels,
1669 cval->min, cval->max, cval->res);
1672 usb_audio_dbg(mixer->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1673 cval->head.id, kctl->id.name, cval->channels,
1674 cval->min, cval->max, cval->res);
1675 snd_usb_mixer_add_control(&cval->head, kctl);
1678 static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
1679 unsigned int ctl_mask, int control,
1680 struct usb_audio_term *iterm, int unitid,
1683 struct uac_feature_unit_descriptor *desc = raw_desc;
1684 int nameid = uac_feature_unit_iFeature(desc);
1686 __build_feature_ctl(state->mixer, state->map, ctl_mask, control,
1687 iterm, &state->oterm, unitid, nameid, readonly_mask);
1690 static void build_feature_ctl_badd(struct usb_mixer_interface *mixer,
1691 unsigned int ctl_mask, int control, int unitid,
1692 const struct usbmix_name_map *badd_map)
1694 __build_feature_ctl(mixer, badd_map, ctl_mask, control,
1695 NULL, NULL, unitid, 0, 0);
1698 static void get_connector_control_name(struct usb_mixer_interface *mixer,
1699 struct usb_audio_term *term,
1700 bool is_input, char *name, int name_size)
1702 int name_len = get_term_name(mixer->chip, term, name, name_size, 0);
1705 strlcpy(name, "Unknown", name_size);
1708 * sound/core/ctljack.c has a convention of naming jack controls
1709 * by ending in " Jack". Make it slightly more useful by
1710 * indicating Input or Output after the terminal name.
1713 strlcat(name, " - Input Jack", name_size);
1715 strlcat(name, " - Output Jack", name_size);
1718 /* Build a mixer control for a UAC connector control (jack-detect) */
1719 static void build_connector_control(struct usb_mixer_interface *mixer,
1720 struct usb_audio_term *term, bool is_input)
1722 struct snd_kcontrol *kctl;
1723 struct usb_mixer_elem_info *cval;
1725 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1728 snd_usb_mixer_elem_init_std(&cval->head, mixer, term->id);
1730 * UAC2: The first byte from reading the UAC2_TE_CONNECTOR control returns the
1731 * number of channels connected.
1733 * UAC3: The first byte specifies size of bitmap for the inserted controls. The
1734 * following byte(s) specifies which connectors are inserted.
1736 * This boolean ctl will simply report if any channels are connected
1739 if (mixer->protocol == UAC_VERSION_2)
1740 cval->control = UAC2_TE_CONNECTOR;
1741 else /* UAC_VERSION_3 */
1742 cval->control = UAC3_TE_INSERTION;
1744 cval->val_type = USB_MIXER_BOOLEAN;
1745 cval->channels = 1; /* report true if any channel is connected */
1748 kctl = snd_ctl_new1(&usb_connector_ctl_ro, cval);
1750 usb_audio_err(mixer->chip, "cannot malloc kcontrol\n");
1754 get_connector_control_name(mixer, term, is_input, kctl->id.name,
1755 sizeof(kctl->id.name));
1756 kctl->private_free = snd_usb_mixer_elem_free;
1757 snd_usb_mixer_add_control(&cval->head, kctl);
1760 static int parse_clock_source_unit(struct mixer_build *state, int unitid,
1763 struct uac_clock_source_descriptor *hdr = _ftr;
1764 struct usb_mixer_elem_info *cval;
1765 struct snd_kcontrol *kctl;
1766 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
1769 if (state->mixer->protocol != UAC_VERSION_2)
1772 if (hdr->bLength != sizeof(*hdr)) {
1773 usb_audio_dbg(state->chip,
1774 "Bogus clock source descriptor length of %d, ignoring.\n",
1780 * The only property of this unit we are interested in is the
1781 * clock source validity. If that isn't readable, just bail out.
1783 if (!uac_v2v3_control_is_readable(hdr->bmControls,
1784 UAC2_CS_CONTROL_CLOCK_VALID))
1787 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1791 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, hdr->bClockID);
1796 cval->val_type = USB_MIXER_BOOLEAN;
1797 cval->control = UAC2_CS_CONTROL_CLOCK_VALID;
1799 cval->master_readonly = 1;
1800 /* From UAC2 5.2.5.1.2 "Only the get request is supported." */
1801 kctl = snd_ctl_new1(&usb_bool_master_control_ctl_ro, cval);
1808 kctl->private_free = snd_usb_mixer_elem_free;
1809 ret = snd_usb_copy_string_desc(state->chip, hdr->iClockSource,
1810 name, sizeof(name));
1812 snprintf(kctl->id.name, sizeof(kctl->id.name),
1813 "%s Validity", name);
1815 snprintf(kctl->id.name, sizeof(kctl->id.name),
1816 "Clock Source %d Validity", hdr->bClockID);
1818 return snd_usb_mixer_add_control(&cval->head, kctl);
1822 * parse a feature unit
1824 * most of controls are defined here.
1826 static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
1830 struct usb_audio_term iterm;
1831 unsigned int master_bits, first_ch_bits;
1833 struct uac_feature_unit_descriptor *hdr = _ftr;
1836 if (state->mixer->protocol == UAC_VERSION_1) {
1837 if (hdr->bLength < 7) {
1838 usb_audio_err(state->chip,
1839 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1843 csize = hdr->bControlSize;
1845 usb_audio_dbg(state->chip,
1846 "unit %u: invalid bControlSize == 0\n",
1850 channels = (hdr->bLength - 7) / csize - 1;
1851 bmaControls = hdr->bmaControls;
1852 if (hdr->bLength < 7 + csize) {
1853 usb_audio_err(state->chip,
1854 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1858 } else if (state->mixer->protocol == UAC_VERSION_2) {
1859 struct uac2_feature_unit_descriptor *ftr = _ftr;
1860 if (hdr->bLength < 6) {
1861 usb_audio_err(state->chip,
1862 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1867 channels = (hdr->bLength - 6) / 4 - 1;
1868 bmaControls = ftr->bmaControls;
1869 if (hdr->bLength < 6 + csize) {
1870 usb_audio_err(state->chip,
1871 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1875 } else { /* UAC_VERSION_3 */
1876 struct uac3_feature_unit_descriptor *ftr = _ftr;
1878 if (hdr->bLength < 7) {
1879 usb_audio_err(state->chip,
1880 "unit %u: invalid UAC3_FEATURE_UNIT descriptor\n",
1885 channels = (ftr->bLength - 7) / 4 - 1;
1886 bmaControls = ftr->bmaControls;
1887 if (hdr->bLength < 7 + csize) {
1888 usb_audio_err(state->chip,
1889 "unit %u: invalid UAC3_FEATURE_UNIT descriptor\n",
1895 /* parse the source unit */
1896 err = parse_audio_unit(state, hdr->bSourceID);
1900 /* determine the input source type and name */
1901 err = check_input_term(state, hdr->bSourceID, &iterm);
1905 master_bits = snd_usb_combine_bytes(bmaControls, csize);
1906 /* master configuration quirks */
1907 switch (state->chip->usb_id) {
1908 case USB_ID(0x08bb, 0x2702):
1909 usb_audio_info(state->chip,
1910 "usbmixer: master volume quirk for PCM2702 chip\n");
1911 /* disable non-functional volume control */
1912 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
1914 case USB_ID(0x1130, 0xf211):
1915 usb_audio_info(state->chip,
1916 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
1917 /* disable non-functional volume control */
1923 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
1927 if (state->mixer->protocol == UAC_VERSION_1) {
1928 /* check all control types */
1929 for (i = 0; i < 10; i++) {
1930 unsigned int ch_bits = 0;
1931 int control = audio_feature_info[i].control;
1933 for (j = 0; j < channels; j++) {
1936 mask = snd_usb_combine_bytes(bmaControls +
1937 csize * (j+1), csize);
1938 if (mask & (1 << i))
1939 ch_bits |= (1 << j);
1941 /* audio class v1 controls are never read-only */
1944 * The first channel must be set
1945 * (for ease of programming).
1948 build_feature_ctl(state, _ftr, ch_bits, control,
1950 if (master_bits & (1 << i))
1951 build_feature_ctl(state, _ftr, 0, control,
1954 } else { /* UAC_VERSION_2/3 */
1955 for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
1956 unsigned int ch_bits = 0;
1957 unsigned int ch_read_only = 0;
1958 int control = audio_feature_info[i].control;
1960 for (j = 0; j < channels; j++) {
1963 mask = snd_usb_combine_bytes(bmaControls +
1964 csize * (j+1), csize);
1965 if (uac_v2v3_control_is_readable(mask, control)) {
1966 ch_bits |= (1 << j);
1967 if (!uac_v2v3_control_is_writeable(mask, control))
1968 ch_read_only |= (1 << j);
1973 * NOTE: build_feature_ctl() will mark the control
1974 * read-only if all channels are marked read-only in
1975 * the descriptors. Otherwise, the control will be
1976 * reported as writeable, but the driver will not
1977 * actually issue a write command for read-only
1982 * The first channel must be set
1983 * (for ease of programming).
1986 build_feature_ctl(state, _ftr, ch_bits, control,
1987 &iterm, unitid, ch_read_only);
1988 if (uac_v2v3_control_is_readable(master_bits, control))
1989 build_feature_ctl(state, _ftr, 0, control,
1991 !uac_v2v3_control_is_writeable(master_bits,
2004 * build a mixer unit control
2006 * the callbacks are identical with feature unit.
2007 * input channel number (zero based) is given in control field instead.
2009 static void build_mixer_unit_ctl(struct mixer_build *state,
2010 struct uac_mixer_unit_descriptor *desc,
2011 int in_pin, int in_ch, int num_outs,
2012 int unitid, struct usb_audio_term *iterm)
2014 struct usb_mixer_elem_info *cval;
2015 unsigned int i, len;
2016 struct snd_kcontrol *kctl;
2017 const struct usbmix_name_map *map;
2019 map = find_map(state->map, unitid, 0);
2020 if (check_ignored_ctl(map))
2023 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
2027 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
2028 cval->control = in_ch + 1; /* based on 1 */
2029 cval->val_type = USB_MIXER_S16;
2030 for (i = 0; i < num_outs; i++) {
2031 __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol);
2033 if (check_matrix_bitmap(c, in_ch, i, num_outs)) {
2034 cval->cmask |= (1 << i);
2039 /* get min/max values */
2040 get_min_max(cval, 0);
2042 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
2044 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
2048 kctl->private_free = snd_usb_mixer_elem_free;
2050 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
2052 len = get_term_name(state->chip, iterm, kctl->id.name,
2053 sizeof(kctl->id.name), 0);
2055 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
2056 append_ctl_name(kctl, " Volume");
2058 usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n",
2059 cval->head.id, kctl->id.name, cval->channels, cval->min, cval->max);
2060 snd_usb_mixer_add_control(&cval->head, kctl);
2063 static int parse_audio_input_terminal(struct mixer_build *state, int unitid,
2066 struct usb_audio_term iterm;
2067 unsigned int control, bmctls, term_id;
2069 if (state->mixer->protocol == UAC_VERSION_2) {
2070 struct uac2_input_terminal_descriptor *d_v2 = raw_desc;
2071 control = UAC2_TE_CONNECTOR;
2072 term_id = d_v2->bTerminalID;
2073 bmctls = le16_to_cpu(d_v2->bmControls);
2074 } else if (state->mixer->protocol == UAC_VERSION_3) {
2075 struct uac3_input_terminal_descriptor *d_v3 = raw_desc;
2076 control = UAC3_TE_INSERTION;
2077 term_id = d_v3->bTerminalID;
2078 bmctls = le32_to_cpu(d_v3->bmControls);
2080 return 0; /* UAC1. No Insertion control */
2083 check_input_term(state, term_id, &iterm);
2085 /* Check for jack detection. */
2086 if (uac_v2v3_control_is_readable(bmctls, control))
2087 build_connector_control(state->mixer, &iterm, true);
2093 * parse a mixer unit
2095 static int parse_audio_mixer_unit(struct mixer_build *state, int unitid,
2098 struct uac_mixer_unit_descriptor *desc = raw_desc;
2099 struct usb_audio_term iterm;
2100 int input_pins, num_ins, num_outs;
2103 err = uac_mixer_unit_get_channels(state, desc);
2105 usb_audio_err(state->chip,
2106 "invalid MIXER UNIT descriptor %d\n",
2112 input_pins = desc->bNrInPins;
2116 for (pin = 0; pin < input_pins; pin++) {
2117 err = parse_audio_unit(state, desc->baSourceID[pin]);
2120 /* no bmControls field (e.g. Maya44) -> ignore */
2121 if (desc->bLength <= 10 + input_pins)
2123 err = check_input_term(state, desc->baSourceID[pin], &iterm);
2126 num_ins += iterm.channels;
2127 for (; ich < num_ins; ich++) {
2128 int och, ich_has_controls = 0;
2130 for (och = 0; och < num_outs; och++) {
2131 __u8 *c = uac_mixer_unit_bmControls(desc,
2132 state->mixer->protocol);
2134 if (check_matrix_bitmap(c, ich, och, num_outs)) {
2135 ich_has_controls = 1;
2139 if (ich_has_controls)
2140 build_mixer_unit_ctl(state, desc, pin, ich, num_outs,
2148 * Processing Unit / Extension Unit
2151 /* get callback for processing/extension unit */
2152 static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol,
2153 struct snd_ctl_elem_value *ucontrol)
2155 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2158 err = get_cur_ctl_value(cval, cval->control << 8, &val);
2160 ucontrol->value.integer.value[0] = cval->min;
2161 return filter_error(cval, err);
2163 val = get_relative_value(cval, val);
2164 ucontrol->value.integer.value[0] = val;
2168 /* put callback for processing/extension unit */
2169 static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
2170 struct snd_ctl_elem_value *ucontrol)
2172 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2175 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
2177 return filter_error(cval, err);
2178 val = ucontrol->value.integer.value[0];
2179 val = get_abs_value(cval, val);
2181 set_cur_ctl_value(cval, cval->control << 8, val);
2187 /* alsa control interface for processing/extension unit */
2188 static const struct snd_kcontrol_new mixer_procunit_ctl = {
2189 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2190 .name = "", /* will be filled later */
2191 .info = mixer_ctl_feature_info,
2192 .get = mixer_ctl_procunit_get,
2193 .put = mixer_ctl_procunit_put,
2197 * predefined data for processing units
2199 struct procunit_value_info {
2206 struct procunit_info {
2209 struct procunit_value_info *values;
2212 static struct procunit_value_info undefined_proc_info[] = {
2213 { 0x00, "Control Undefined", 0 },
2217 static struct procunit_value_info updown_proc_info[] = {
2218 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2219 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
2222 static struct procunit_value_info prologic_proc_info[] = {
2223 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2224 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
2227 static struct procunit_value_info threed_enh_proc_info[] = {
2228 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2229 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
2232 static struct procunit_value_info reverb_proc_info[] = {
2233 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2234 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
2235 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
2236 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
2239 static struct procunit_value_info chorus_proc_info[] = {
2240 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2241 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
2242 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
2243 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
2246 static struct procunit_value_info dcr_proc_info[] = {
2247 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2248 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
2249 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
2250 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
2251 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
2252 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
2256 static struct procunit_info procunits[] = {
2257 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
2258 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
2259 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
2260 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
2261 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
2262 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
2266 static struct procunit_value_info uac3_updown_proc_info[] = {
2267 { UAC3_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
2270 static struct procunit_value_info uac3_stereo_ext_proc_info[] = {
2271 { UAC3_EXT_WIDTH_CONTROL, "Width Control", USB_MIXER_U8 },
2275 static struct procunit_info uac3_procunits[] = {
2276 { UAC3_PROCESS_UP_DOWNMIX, "Up Down", uac3_updown_proc_info },
2277 { UAC3_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", uac3_stereo_ext_proc_info },
2278 { UAC3_PROCESS_MULTI_FUNCTION, "Multi-Function", undefined_proc_info },
2283 * predefined data for extension units
2285 static struct procunit_value_info clock_rate_xu_info[] = {
2286 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
2289 static struct procunit_value_info clock_source_xu_info[] = {
2290 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
2293 static struct procunit_value_info spdif_format_xu_info[] = {
2294 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
2297 static struct procunit_value_info soft_limit_xu_info[] = {
2298 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
2301 static struct procunit_info extunits[] = {
2302 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
2303 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
2304 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
2305 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
2310 * build a processing/extension unit
2312 static int build_audio_procunit(struct mixer_build *state, int unitid,
2313 void *raw_desc, struct procunit_info *list,
2316 struct uac_processing_unit_descriptor *desc = raw_desc;
2317 int num_ins = desc->bNrInPins;
2318 struct usb_mixer_elem_info *cval;
2319 struct snd_kcontrol *kctl;
2320 int i, err, nameid, type, len;
2321 struct procunit_info *info;
2322 struct procunit_value_info *valinfo;
2323 const struct usbmix_name_map *map;
2324 static struct procunit_value_info default_value_info[] = {
2325 { 0x01, "Switch", USB_MIXER_BOOLEAN },
2328 static struct procunit_info default_info = {
2329 0, NULL, default_value_info
2332 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
2333 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
2334 usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid);
2338 for (i = 0; i < num_ins; i++) {
2339 err = parse_audio_unit(state, desc->baSourceID[i]);
2344 type = le16_to_cpu(desc->wProcessType);
2345 for (info = list; info && info->type; info++)
2346 if (info->type == type)
2348 if (!info || !info->type)
2349 info = &default_info;
2351 for (valinfo = info->values; valinfo->control; valinfo++) {
2352 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
2354 if (state->mixer->protocol == UAC_VERSION_1) {
2355 if (!(controls[valinfo->control / 8] &
2356 (1 << ((valinfo->control % 8) - 1))))
2358 } else { /* UAC_VERSION_2/3 */
2359 if (!uac_v2v3_control_is_readable(controls[valinfo->control / 8],
2364 map = find_map(state->map, unitid, valinfo->control);
2365 if (check_ignored_ctl(map))
2367 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
2370 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
2371 cval->control = valinfo->control;
2372 cval->val_type = valinfo->val_type;
2375 if (state->mixer->protocol > UAC_VERSION_1 &&
2376 !uac_v2v3_control_is_writeable(controls[valinfo->control / 8],
2378 cval->master_readonly = 1;
2380 /* get min/max values */
2382 case UAC_PROCESS_UP_DOWNMIX: {
2383 bool mode_sel = false;
2385 switch (state->mixer->protocol) {
2389 if (cval->control == UAC_UD_MODE_SELECT)
2393 if (cval->control == UAC3_UD_MODE_SELECT)
2399 __u8 *control_spec = uac_processing_unit_specific(desc,
2400 state->mixer->protocol);
2402 cval->max = control_spec[0];
2404 cval->initialized = 1;
2408 get_min_max(cval, valinfo->min_value);
2411 case USB_XU_CLOCK_RATE:
2413 * E-Mu USB 0404/0202/TrackerPre/0204
2414 * samplerate control quirk
2419 cval->initialized = 1;
2422 get_min_max(cval, valinfo->min_value);
2426 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
2431 kctl->private_free = snd_usb_mixer_elem_free;
2433 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) {
2435 } else if (info->name) {
2436 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
2438 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
2441 len = snd_usb_copy_string_desc(state->chip,
2444 sizeof(kctl->id.name));
2446 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
2448 append_ctl_name(kctl, " ");
2449 append_ctl_name(kctl, valinfo->suffix);
2451 usb_audio_dbg(state->chip,
2452 "[%d] PU [%s] ch = %d, val = %d/%d\n",
2453 cval->head.id, kctl->id.name, cval->channels,
2454 cval->min, cval->max);
2456 err = snd_usb_mixer_add_control(&cval->head, kctl);
2463 static int parse_audio_processing_unit(struct mixer_build *state, int unitid,
2466 switch (state->mixer->protocol) {
2470 return build_audio_procunit(state, unitid, raw_desc,
2471 procunits, "Processing Unit");
2473 return build_audio_procunit(state, unitid, raw_desc,
2474 uac3_procunits, "Processing Unit");
2478 static int parse_audio_extension_unit(struct mixer_build *state, int unitid,
2482 * Note that we parse extension units with processing unit descriptors.
2483 * That's ok as the layout is the same.
2485 return build_audio_procunit(state, unitid, raw_desc,
2486 extunits, "Extension Unit");
2494 * info callback for selector unit
2495 * use an enumerator type for routing
2497 static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol,
2498 struct snd_ctl_elem_info *uinfo)
2500 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2501 const char **itemlist = (const char **)kcontrol->private_value;
2503 if (snd_BUG_ON(!itemlist))
2505 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
2508 /* get callback for selector unit */
2509 static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol,
2510 struct snd_ctl_elem_value *ucontrol)
2512 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2515 err = get_cur_ctl_value(cval, cval->control << 8, &val);
2517 ucontrol->value.enumerated.item[0] = 0;
2518 return filter_error(cval, err);
2520 val = get_relative_value(cval, val);
2521 ucontrol->value.enumerated.item[0] = val;
2525 /* put callback for selector unit */
2526 static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
2527 struct snd_ctl_elem_value *ucontrol)
2529 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2532 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
2534 return filter_error(cval, err);
2535 val = ucontrol->value.enumerated.item[0];
2536 val = get_abs_value(cval, val);
2538 set_cur_ctl_value(cval, cval->control << 8, val);
2544 /* alsa control interface for selector unit */
2545 static const struct snd_kcontrol_new mixer_selectunit_ctl = {
2546 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2547 .name = "", /* will be filled later */
2548 .info = mixer_ctl_selector_info,
2549 .get = mixer_ctl_selector_get,
2550 .put = mixer_ctl_selector_put,
2554 * private free callback.
2555 * free both private_data and private_value
2557 static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
2561 if (kctl->private_data) {
2562 struct usb_mixer_elem_info *cval = kctl->private_data;
2563 num_ins = cval->max;
2565 kctl->private_data = NULL;
2567 if (kctl->private_value) {
2568 char **itemlist = (char **)kctl->private_value;
2569 for (i = 0; i < num_ins; i++)
2572 kctl->private_value = 0;
2577 * parse a selector unit
2579 static int parse_audio_selector_unit(struct mixer_build *state, int unitid,
2582 struct uac_selector_unit_descriptor *desc = raw_desc;
2583 unsigned int i, nameid, len;
2585 struct usb_mixer_elem_info *cval;
2586 struct snd_kcontrol *kctl;
2587 const struct usbmix_name_map *map;
2590 if (desc->bLength < 5 || !desc->bNrInPins ||
2591 desc->bLength < 5 + desc->bNrInPins) {
2592 usb_audio_err(state->chip,
2593 "invalid SELECTOR UNIT descriptor %d\n", unitid);
2597 for (i = 0; i < desc->bNrInPins; i++) {
2598 err = parse_audio_unit(state, desc->baSourceID[i]);
2603 if (desc->bNrInPins == 1) /* only one ? nonsense! */
2606 map = find_map(state->map, unitid, 0);
2607 if (check_ignored_ctl(map))
2610 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
2613 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
2614 cval->val_type = USB_MIXER_U8;
2617 cval->max = desc->bNrInPins;
2619 cval->initialized = 1;
2621 switch (state->mixer->protocol) {
2628 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR ||
2629 desc->bDescriptorSubtype == UAC3_CLOCK_SELECTOR)
2630 cval->control = UAC2_CX_CLOCK_SELECTOR;
2631 else /* UAC2/3_SELECTOR_UNIT */
2632 cval->control = UAC2_SU_SELECTOR;
2636 namelist = kmalloc_array(desc->bNrInPins, sizeof(char *), GFP_KERNEL);
2641 #define MAX_ITEM_NAME_LEN 64
2642 for (i = 0; i < desc->bNrInPins; i++) {
2643 struct usb_audio_term iterm;
2645 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
2653 len = check_mapped_selector_name(state, unitid, i, namelist[i],
2655 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
2656 len = get_term_name(state->chip, &iterm, namelist[i],
2657 MAX_ITEM_NAME_LEN, 0);
2659 sprintf(namelist[i], "Input %u", i);
2662 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
2664 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
2669 kctl->private_value = (unsigned long)namelist;
2670 kctl->private_free = usb_mixer_selector_elem_free;
2672 /* check the static mapping table at first */
2673 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
2676 switch (state->mixer->protocol) {
2680 /* if iSelector is given, use it */
2681 nameid = uac_selector_unit_iSelector(desc);
2683 len = snd_usb_copy_string_desc(state->chip,
2684 nameid, kctl->id.name,
2685 sizeof(kctl->id.name));
2688 /* TODO: Class-Specific strings not yet supported */
2692 /* ... or pick up the terminal name at next */
2694 len = get_term_name(state->chip, &state->oterm,
2695 kctl->id.name, sizeof(kctl->id.name), 0);
2696 /* ... or use the fixed string "USB" as the last resort */
2698 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
2700 /* and add the proper suffix */
2701 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR ||
2702 desc->bDescriptorSubtype == UAC3_CLOCK_SELECTOR)
2703 append_ctl_name(kctl, " Clock Source");
2704 else if ((state->oterm.type & 0xff00) == 0x0100)
2705 append_ctl_name(kctl, " Capture Source");
2707 append_ctl_name(kctl, " Playback Source");
2710 usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n",
2711 cval->head.id, kctl->id.name, desc->bNrInPins);
2712 return snd_usb_mixer_add_control(&cval->head, kctl);
2716 * parse an audio unit recursively
2719 static int parse_audio_unit(struct mixer_build *state, int unitid)
2722 int protocol = state->mixer->protocol;
2724 if (test_and_set_bit(unitid, state->unitbitmap))
2725 return 0; /* the unit already visited */
2727 p1 = find_audio_control_unit(state, unitid);
2729 usb_audio_err(state->chip, "unit %d not found!\n", unitid);
2733 if (protocol == UAC_VERSION_1 || protocol == UAC_VERSION_2) {
2735 case UAC_INPUT_TERMINAL:
2736 return parse_audio_input_terminal(state, unitid, p1);
2737 case UAC_MIXER_UNIT:
2738 return parse_audio_mixer_unit(state, unitid, p1);
2739 case UAC2_CLOCK_SOURCE:
2740 return parse_clock_source_unit(state, unitid, p1);
2741 case UAC_SELECTOR_UNIT:
2742 case UAC2_CLOCK_SELECTOR:
2743 return parse_audio_selector_unit(state, unitid, p1);
2744 case UAC_FEATURE_UNIT:
2745 return parse_audio_feature_unit(state, unitid, p1);
2746 case UAC1_PROCESSING_UNIT:
2747 /* UAC2_EFFECT_UNIT has the same value */
2748 if (protocol == UAC_VERSION_1)
2749 return parse_audio_processing_unit(state, unitid, p1);
2751 return 0; /* FIXME - effect units not implemented yet */
2752 case UAC1_EXTENSION_UNIT:
2753 /* UAC2_PROCESSING_UNIT_V2 has the same value */
2754 if (protocol == UAC_VERSION_1)
2755 return parse_audio_extension_unit(state, unitid, p1);
2756 else /* UAC_VERSION_2 */
2757 return parse_audio_processing_unit(state, unitid, p1);
2758 case UAC2_EXTENSION_UNIT_V2:
2759 return parse_audio_extension_unit(state, unitid, p1);
2761 usb_audio_err(state->chip,
2762 "unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
2765 } else { /* UAC_VERSION_3 */
2767 case UAC_INPUT_TERMINAL:
2768 return parse_audio_input_terminal(state, unitid, p1);
2769 case UAC3_MIXER_UNIT:
2770 return parse_audio_mixer_unit(state, unitid, p1);
2771 case UAC3_CLOCK_SOURCE:
2772 return parse_clock_source_unit(state, unitid, p1);
2773 case UAC3_SELECTOR_UNIT:
2774 case UAC3_CLOCK_SELECTOR:
2775 return parse_audio_selector_unit(state, unitid, p1);
2776 case UAC3_FEATURE_UNIT:
2777 return parse_audio_feature_unit(state, unitid, p1);
2778 case UAC3_EFFECT_UNIT:
2779 return 0; /* FIXME - effect units not implemented yet */
2780 case UAC3_PROCESSING_UNIT:
2781 return parse_audio_processing_unit(state, unitid, p1);
2782 case UAC3_EXTENSION_UNIT:
2783 return parse_audio_extension_unit(state, unitid, p1);
2785 usb_audio_err(state->chip,
2786 "unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
2792 static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
2794 /* kill pending URBs */
2795 snd_usb_mixer_disconnect(mixer);
2797 kfree(mixer->id_elems);
2799 kfree(mixer->urb->transfer_buffer);
2800 usb_free_urb(mixer->urb);
2802 usb_free_urb(mixer->rc_urb);
2803 kfree(mixer->rc_setup_packet);
2807 static int snd_usb_mixer_dev_free(struct snd_device *device)
2809 struct usb_mixer_interface *mixer = device->device_data;
2810 snd_usb_mixer_free(mixer);
2814 /* UAC3 predefined channels configuration */
2815 struct uac3_badd_profile {
2818 int c_chmask; /* capture channels mask */
2819 int p_chmask; /* playback channels mask */
2820 int st_chmask; /* side tone mixing channel mask */
2823 static struct uac3_badd_profile uac3_badd_profiles[] = {
2826 * BAIF, BAOF or combination of both
2827 * IN: Mono or Stereo cfg, Mono alt possible
2828 * OUT: Mono or Stereo cfg, Mono alt possible
2830 .subclass = UAC3_FUNCTION_SUBCLASS_GENERIC_IO,
2831 .name = "GENERIC IO",
2832 .c_chmask = -1, /* dynamic channels */
2833 .p_chmask = -1, /* dynamic channels */
2836 /* BAOF; Stereo only cfg, Mono alt possible */
2837 .subclass = UAC3_FUNCTION_SUBCLASS_HEADPHONE,
2838 .name = "HEADPHONE",
2842 /* BAOF; Mono or Stereo cfg, Mono alt possible */
2843 .subclass = UAC3_FUNCTION_SUBCLASS_SPEAKER,
2845 .p_chmask = -1, /* dynamic channels */
2848 /* BAIF; Mono or Stereo cfg, Mono alt possible */
2849 .subclass = UAC3_FUNCTION_SUBCLASS_MICROPHONE,
2850 .name = "MICROPHONE",
2851 .c_chmask = -1, /* dynamic channels */
2857 * OUT: Mono or Stereo cfg, Mono alt possible
2859 .subclass = UAC3_FUNCTION_SUBCLASS_HEADSET,
2862 .p_chmask = -1, /* dynamic channels */
2866 /* BAIOF; IN: Mono only; OUT: Stereo only, Mono alt possible */
2867 .subclass = UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER,
2868 .name = "HEADSET ADAPTER",
2874 /* BAIF + BAOF; IN: Mono only; OUT: Mono only */
2875 .subclass = UAC3_FUNCTION_SUBCLASS_SPEAKERPHONE,
2876 .name = "SPEAKERPHONE",
2880 { 0 } /* terminator */
2883 static bool uac3_badd_func_has_valid_channels(struct usb_mixer_interface *mixer,
2884 struct uac3_badd_profile *f,
2885 int c_chmask, int p_chmask)
2888 * If both playback/capture channels are dynamic, make sure
2889 * at least one channel is present
2891 if (f->c_chmask < 0 && f->p_chmask < 0) {
2892 if (!c_chmask && !p_chmask) {
2893 usb_audio_warn(mixer->chip, "BAAD %s: no channels?",
2900 if ((f->c_chmask < 0 && !c_chmask) ||
2901 (f->c_chmask >= 0 && f->c_chmask != c_chmask)) {
2902 usb_audio_warn(mixer->chip, "BAAD %s c_chmask mismatch",
2906 if ((f->p_chmask < 0 && !p_chmask) ||
2907 (f->p_chmask >= 0 && f->p_chmask != p_chmask)) {
2908 usb_audio_warn(mixer->chip, "BAAD %s p_chmask mismatch",
2916 * create mixer controls for UAC3 BADD profiles
2918 * UAC3 BADD device doesn't contain CS descriptors thus we will guess everything
2920 * BADD device may contain Mixer Unit, which doesn't have any controls, skip it
2922 static int snd_usb_mixer_controls_badd(struct usb_mixer_interface *mixer,
2925 struct usb_device *dev = mixer->chip->dev;
2926 struct usb_interface_assoc_descriptor *assoc;
2927 int badd_profile = mixer->chip->badd_profile;
2928 struct uac3_badd_profile *f;
2929 const struct usbmix_ctl_map *map;
2930 int p_chmask = 0, c_chmask = 0, st_chmask = 0;
2933 assoc = usb_ifnum_to_if(dev, ctrlif)->intf_assoc;
2935 /* Detect BADD capture/playback channels from AS EP descriptors */
2936 for (i = 0; i < assoc->bInterfaceCount; i++) {
2937 int intf = assoc->bFirstInterface + i;
2939 struct usb_interface *iface;
2940 struct usb_host_interface *alts;
2941 struct usb_interface_descriptor *altsd;
2942 unsigned int maxpacksize;
2949 iface = usb_ifnum_to_if(dev, intf);
2950 num = iface->num_altsetting;
2956 * The number of Channels in an AudioStreaming interface
2957 * and the audio sample bit resolution (16 bits or 24
2958 * bits) can be derived from the wMaxPacketSize field in
2959 * the Standard AS Audio Data Endpoint descriptor in
2960 * Alternate Setting 1
2962 alts = &iface->altsetting[1];
2963 altsd = get_iface_desc(alts);
2965 if (altsd->bNumEndpoints < 1)
2968 /* check direction */
2969 dir_in = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN);
2970 maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
2972 switch (maxpacksize) {
2974 usb_audio_err(mixer->chip,
2975 "incorrect wMaxPacketSize 0x%x for BADD profile\n",
2978 case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_16:
2979 case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_16:
2980 case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_24:
2981 case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_24:
2984 case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_16:
2985 case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_16:
2986 case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_24:
2987 case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_24:
2998 usb_audio_dbg(mixer->chip,
2999 "UAC3 BADD profile 0x%x: detected c_chmask=%d p_chmask=%d\n",
3000 badd_profile, c_chmask, p_chmask);
3002 /* check the mapping table */
3003 for (map = uac3_badd_usbmix_ctl_maps; map->id; map++) {
3004 if (map->id == badd_profile)
3011 for (f = uac3_badd_profiles; f->name; f++) {
3012 if (badd_profile == f->subclass)
3017 if (!uac3_badd_func_has_valid_channels(mixer, f, c_chmask, p_chmask))
3019 st_chmask = f->st_chmask;
3023 /* Master channel, always writable */
3024 build_feature_ctl_badd(mixer, 0, UAC_FU_MUTE,
3025 UAC3_BADD_FU_ID2, map->map);
3026 /* Mono/Stereo volume channels, always writable */
3027 build_feature_ctl_badd(mixer, p_chmask, UAC_FU_VOLUME,
3028 UAC3_BADD_FU_ID2, map->map);
3033 /* Master channel, always writable */
3034 build_feature_ctl_badd(mixer, 0, UAC_FU_MUTE,
3035 UAC3_BADD_FU_ID5, map->map);
3036 /* Mono/Stereo volume channels, always writable */
3037 build_feature_ctl_badd(mixer, c_chmask, UAC_FU_VOLUME,
3038 UAC3_BADD_FU_ID5, map->map);
3041 /* Side tone-mixing */
3043 /* Master channel, always writable */
3044 build_feature_ctl_badd(mixer, 0, UAC_FU_MUTE,
3045 UAC3_BADD_FU_ID7, map->map);
3046 /* Mono volume channel, always writable */
3047 build_feature_ctl_badd(mixer, 1, UAC_FU_VOLUME,
3048 UAC3_BADD_FU_ID7, map->map);
3051 /* Insertion Control */
3052 if (f->subclass == UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER) {
3053 struct usb_audio_term iterm, oterm;
3055 /* Input Term - Insertion control */
3056 memset(&iterm, 0, sizeof(iterm));
3057 iterm.id = UAC3_BADD_IT_ID4;
3058 iterm.type = UAC_BIDIR_TERMINAL_HEADSET;
3059 build_connector_control(mixer, &iterm, true);
3061 /* Output Term - Insertion control */
3062 memset(&oterm, 0, sizeof(oterm));
3063 oterm.id = UAC3_BADD_OT_ID3;
3064 oterm.type = UAC_BIDIR_TERMINAL_HEADSET;
3065 build_connector_control(mixer, &oterm, false);
3072 * create mixer controls
3074 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
3076 static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
3078 struct mixer_build state;
3080 const struct usbmix_ctl_map *map;
3083 memset(&state, 0, sizeof(state));
3084 state.chip = mixer->chip;
3085 state.mixer = mixer;
3086 state.buffer = mixer->hostif->extra;
3087 state.buflen = mixer->hostif->extralen;
3089 /* check the mapping table */
3090 for (map = usbmix_ctl_maps; map->id; map++) {
3091 if (map->id == state.chip->usb_id) {
3092 state.map = map->map;
3093 state.selector_map = map->selector_map;
3094 mixer->ignore_ctl_error = map->ignore_ctl_error;
3100 while ((p = snd_usb_find_csint_desc(mixer->hostif->extra,
3101 mixer->hostif->extralen,
3102 p, UAC_OUTPUT_TERMINAL)) != NULL) {
3103 if (mixer->protocol == UAC_VERSION_1) {
3104 struct uac1_output_terminal_descriptor *desc = p;
3106 if (desc->bLength < sizeof(*desc))
3107 continue; /* invalid descriptor? */
3108 /* mark terminal ID as visited */
3109 set_bit(desc->bTerminalID, state.unitbitmap);
3110 state.oterm.id = desc->bTerminalID;
3111 state.oterm.type = le16_to_cpu(desc->wTerminalType);
3112 state.oterm.name = desc->iTerminal;
3113 err = parse_audio_unit(&state, desc->bSourceID);
3114 if (err < 0 && err != -EINVAL)
3116 } else if (mixer->protocol == UAC_VERSION_2) {
3117 struct uac2_output_terminal_descriptor *desc = p;
3119 if (desc->bLength < sizeof(*desc))
3120 continue; /* invalid descriptor? */
3121 /* mark terminal ID as visited */
3122 set_bit(desc->bTerminalID, state.unitbitmap);
3123 state.oterm.id = desc->bTerminalID;
3124 state.oterm.type = le16_to_cpu(desc->wTerminalType);
3125 state.oterm.name = desc->iTerminal;
3126 err = parse_audio_unit(&state, desc->bSourceID);
3127 if (err < 0 && err != -EINVAL)
3131 * For UAC2, use the same approach to also add the
3134 err = parse_audio_unit(&state, desc->bCSourceID);
3135 if (err < 0 && err != -EINVAL)
3138 if (uac_v2v3_control_is_readable(le16_to_cpu(desc->bmControls),
3139 UAC2_TE_CONNECTOR)) {
3140 build_connector_control(state.mixer, &state.oterm,
3143 } else { /* UAC_VERSION_3 */
3144 struct uac3_output_terminal_descriptor *desc = p;
3146 if (desc->bLength < sizeof(*desc))
3147 continue; /* invalid descriptor? */
3148 /* mark terminal ID as visited */
3149 set_bit(desc->bTerminalID, state.unitbitmap);
3150 state.oterm.id = desc->bTerminalID;
3151 state.oterm.type = le16_to_cpu(desc->wTerminalType);
3152 state.oterm.name = le16_to_cpu(desc->wTerminalDescrStr);
3153 err = parse_audio_unit(&state, desc->bSourceID);
3154 if (err < 0 && err != -EINVAL)
3158 * For UAC3, use the same approach to also add the
3161 err = parse_audio_unit(&state, desc->bCSourceID);
3162 if (err < 0 && err != -EINVAL)
3165 if (uac_v2v3_control_is_readable(le32_to_cpu(desc->bmControls),
3166 UAC3_TE_INSERTION)) {
3167 build_connector_control(state.mixer, &state.oterm,
3176 void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
3178 struct usb_mixer_elem_list *list;
3180 for_each_mixer_elem(list, mixer, unitid) {
3181 struct usb_mixer_elem_info *info =
3182 mixer_elem_list_to_info(list);
3183 /* invalidate cache, so the value is read from the device */
3185 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
3190 static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
3191 struct usb_mixer_elem_list *list)
3193 struct usb_mixer_elem_info *cval = mixer_elem_list_to_info(list);
3194 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
3195 "S8", "U8", "S16", "U16"};
3196 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
3197 "channels=%i, type=\"%s\"\n", cval->head.id,
3198 cval->control, cval->cmask, cval->channels,
3199 val_types[cval->val_type]);
3200 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
3201 cval->min, cval->max, cval->dBmin, cval->dBmax);
3204 static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
3205 struct snd_info_buffer *buffer)
3207 struct snd_usb_audio *chip = entry->private_data;
3208 struct usb_mixer_interface *mixer;
3209 struct usb_mixer_elem_list *list;
3212 list_for_each_entry(mixer, &chip->mixer_list, list) {
3214 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
3215 chip->usb_id, snd_usb_ctrl_intf(chip),
3216 mixer->ignore_ctl_error);
3217 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
3218 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
3219 for_each_mixer_elem(list, mixer, unitid) {
3220 snd_iprintf(buffer, " Unit: %i\n", list->id);
3223 " Control: name=\"%s\", index=%i\n",
3224 list->kctl->id.name,
3225 list->kctl->id.index);
3227 list->dump(buffer, list);
3233 static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
3234 int attribute, int value, int index)
3236 struct usb_mixer_elem_list *list;
3237 __u8 unitid = (index >> 8) & 0xff;
3238 __u8 control = (value >> 8) & 0xff;
3239 __u8 channel = value & 0xff;
3240 unsigned int count = 0;
3242 if (channel >= MAX_CHANNELS) {
3243 usb_audio_dbg(mixer->chip,
3244 "%s(): bogus channel number %d\n",
3249 for_each_mixer_elem(list, mixer, unitid)
3255 for_each_mixer_elem(list, mixer, unitid) {
3256 struct usb_mixer_elem_info *info;
3261 info = mixer_elem_list_to_info(list);
3262 if (count > 1 && info->control != control)
3265 switch (attribute) {
3267 /* invalidate cache, so the value is read from the device */
3269 info->cached &= ~(1 << channel);
3270 else /* master channel */
3273 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
3274 &info->head.kctl->id);
3286 usb_audio_dbg(mixer->chip,
3287 "unknown attribute %d in interrupt\n",
3294 static void snd_usb_mixer_interrupt(struct urb *urb)
3296 struct usb_mixer_interface *mixer = urb->context;
3297 int len = urb->actual_length;
3298 int ustatus = urb->status;
3303 if (mixer->protocol == UAC_VERSION_1) {
3304 struct uac1_status_word *status;
3306 for (status = urb->transfer_buffer;
3307 len >= sizeof(*status);
3308 len -= sizeof(*status), status++) {
3309 dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n",
3310 status->bStatusType,
3311 status->bOriginator);
3313 /* ignore any notifications not from the control interface */
3314 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
3315 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
3318 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
3319 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
3321 snd_usb_mixer_notify_id(mixer, status->bOriginator);
3323 } else { /* UAC_VERSION_2 */
3324 struct uac2_interrupt_data_msg *msg;
3326 for (msg = urb->transfer_buffer;
3327 len >= sizeof(*msg);
3328 len -= sizeof(*msg), msg++) {
3329 /* drop vendor specific and endpoint requests */
3330 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
3331 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
3334 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
3335 le16_to_cpu(msg->wValue),
3336 le16_to_cpu(msg->wIndex));
3341 if (ustatus != -ENOENT &&
3342 ustatus != -ECONNRESET &&
3343 ustatus != -ESHUTDOWN) {
3344 urb->dev = mixer->chip->dev;
3345 usb_submit_urb(urb, GFP_ATOMIC);
3349 /* create the handler for the optional status interrupt endpoint */
3350 static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
3352 struct usb_endpoint_descriptor *ep;
3353 void *transfer_buffer;
3357 /* we need one interrupt input endpoint */
3358 if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
3360 ep = get_endpoint(mixer->hostif, 0);
3361 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
3364 epnum = usb_endpoint_num(ep);
3365 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
3366 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
3367 if (!transfer_buffer)
3369 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
3371 kfree(transfer_buffer);
3374 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
3375 usb_rcvintpipe(mixer->chip->dev, epnum),
3376 transfer_buffer, buffer_length,
3377 snd_usb_mixer_interrupt, mixer, ep->bInterval);
3378 usb_submit_urb(mixer->urb, GFP_KERNEL);
3382 static int keep_iface_ctl_get(struct snd_kcontrol *kcontrol,
3383 struct snd_ctl_elem_value *ucontrol)
3385 struct usb_mixer_interface *mixer = snd_kcontrol_chip(kcontrol);
3387 ucontrol->value.integer.value[0] = mixer->chip->keep_iface;
3391 static int keep_iface_ctl_put(struct snd_kcontrol *kcontrol,
3392 struct snd_ctl_elem_value *ucontrol)
3394 struct usb_mixer_interface *mixer = snd_kcontrol_chip(kcontrol);
3395 bool keep_iface = !!ucontrol->value.integer.value[0];
3397 if (mixer->chip->keep_iface == keep_iface)
3399 mixer->chip->keep_iface = keep_iface;
3403 static const struct snd_kcontrol_new keep_iface_ctl = {
3404 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
3405 .name = "Keep Interface",
3406 .info = snd_ctl_boolean_mono_info,
3407 .get = keep_iface_ctl_get,
3408 .put = keep_iface_ctl_put,
3411 static int create_keep_iface_ctl(struct usb_mixer_interface *mixer)
3413 struct snd_kcontrol *kctl = snd_ctl_new1(&keep_iface_ctl, mixer);
3415 /* need only one control per card */
3416 if (snd_ctl_find_id(mixer->chip->card, &kctl->id)) {
3417 snd_ctl_free_one(kctl);
3421 return snd_ctl_add(mixer->chip->card, kctl);
3424 int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
3427 static struct snd_device_ops dev_ops = {
3428 .dev_free = snd_usb_mixer_dev_free
3430 struct usb_mixer_interface *mixer;
3431 struct snd_info_entry *entry;
3434 strcpy(chip->card->mixername, "USB Mixer");
3436 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
3440 mixer->ignore_ctl_error = ignore_error;
3441 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
3443 if (!mixer->id_elems) {
3448 mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
3449 switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
3452 mixer->protocol = UAC_VERSION_1;
3455 mixer->protocol = UAC_VERSION_2;
3458 mixer->protocol = UAC_VERSION_3;
3462 if (mixer->protocol == UAC_VERSION_3 &&
3463 chip->badd_profile >= UAC3_FUNCTION_SUBCLASS_GENERIC_IO) {
3464 err = snd_usb_mixer_controls_badd(mixer, ctrlif);
3468 err = snd_usb_mixer_controls(mixer);
3473 err = snd_usb_mixer_status_create(mixer);
3477 err = create_keep_iface_ctl(mixer);
3481 snd_usb_mixer_apply_create_quirk(mixer);
3483 err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops);
3487 if (list_empty(&chip->mixer_list) &&
3488 !snd_card_proc_new(chip->card, "usbmixer", &entry))
3489 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
3491 list_add(&mixer->list, &chip->mixer_list);
3495 snd_usb_mixer_free(mixer);
3499 void snd_usb_mixer_disconnect(struct usb_mixer_interface *mixer)
3501 if (mixer->disconnected)
3504 usb_kill_urb(mixer->urb);
3506 usb_kill_urb(mixer->rc_urb);
3507 mixer->disconnected = true;
3511 /* stop any bus activity of a mixer */
3512 static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
3514 usb_kill_urb(mixer->urb);
3515 usb_kill_urb(mixer->rc_urb);
3518 static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
3523 err = usb_submit_urb(mixer->urb, GFP_NOIO);
3531 int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer)
3533 snd_usb_mixer_inactivate(mixer);
3537 static int restore_mixer_value(struct usb_mixer_elem_list *list)
3539 struct usb_mixer_elem_info *cval = mixer_elem_list_to_info(list);
3544 for (c = 0; c < MAX_CHANNELS; c++) {
3545 if (!(cval->cmask & (1 << c)))
3547 if (cval->cached & (1 << (c + 1))) {
3548 err = snd_usb_set_cur_mix_value(cval, c + 1, idx,
3549 cval->cache_val[idx]);
3558 err = snd_usb_set_cur_mix_value(cval, 0, 0, *cval->cache_val);
3567 int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume)
3569 struct usb_mixer_elem_list *list;
3573 /* restore cached mixer values */
3574 for (id = 0; id < MAX_ID_ELEMS; id++) {
3575 for_each_mixer_elem(list, mixer, id) {
3577 err = list->resume(list);
3585 snd_usb_mixer_resume_quirk(mixer);
3587 return snd_usb_mixer_activate(mixer);
3591 void snd_usb_mixer_elem_init_std(struct usb_mixer_elem_list *list,
3592 struct usb_mixer_interface *mixer,
3595 list->mixer = mixer;
3597 list->dump = snd_usb_mixer_dump_cval;
3599 list->resume = restore_mixer_value;