1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * (Tentative) USB Audio Driver for ALSA
9 * Many codes borrowed from audio.c by
15 * TODOs, for both the mixer and the streaming interfaces:
17 * - support for UAC2 effect units
18 * - support for graphical equalizers
19 * - RANGE and MEM set commands (UAC2)
20 * - RANGE and MEM interrupt dispatchers (UAC2)
21 * - audio channel clustering (UAC2)
22 * - audio sample rate converter units (UAC2)
23 * - proper handling of clock multipliers (UAC2)
24 * - dispatch clock change notifications (UAC2)
25 * - stop PCM streams which use a clock that became invalid
26 * - stop PCM streams which use a clock selector that has changed
27 * - parse available sample rates again when clock sources changed
30 #include <linux/bitops.h>
31 #include <linux/init.h>
32 #include <linux/list.h>
33 #include <linux/log2.h>
34 #include <linux/slab.h>
35 #include <linux/string.h>
36 #include <linux/usb.h>
37 #include <linux/usb/audio.h>
38 #include <linux/usb/audio-v2.h>
39 #include <linux/usb/audio-v3.h>
41 #include <sound/core.h>
42 #include <sound/control.h>
43 #include <sound/hwdep.h>
44 #include <sound/info.h>
45 #include <sound/tlv.h>
50 #include "mixer_quirks.h"
53 #define MAX_ID_ELEMS 256
55 struct usb_audio_term {
59 unsigned int chconfig;
63 struct usbmix_name_map;
66 struct snd_usb_audio *chip;
67 struct usb_mixer_interface *mixer;
68 unsigned char *buffer;
70 DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
71 DECLARE_BITMAP(termbitmap, MAX_ID_ELEMS);
72 struct usb_audio_term oterm;
73 const struct usbmix_name_map *map;
74 const struct usbmix_selector_map *selector_map;
77 /*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
79 USB_XU_CLOCK_RATE = 0xe301,
80 USB_XU_CLOCK_SOURCE = 0xe302,
81 USB_XU_DIGITAL_IO_STATUS = 0xe303,
82 USB_XU_DEVICE_OPTIONS = 0xe304,
83 USB_XU_DIRECT_MONITORING = 0xe305,
84 USB_XU_METERING = 0xe306
87 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
88 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
89 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
90 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
94 * manual mapping of mixer names
95 * if the mixer topology is too complicated and the parsed names are
96 * ambiguous, add the entries in usbmixer_maps.c.
98 #include "mixer_maps.c"
100 static const struct usbmix_name_map *
101 find_map(const struct usbmix_name_map *p, int unitid, int control)
107 if (p->id == unitid &&
108 (!control || !p->control || control == p->control))
114 /* get the mapped name if the unit matches */
116 check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
122 return strlcpy(buf, p->name, buflen);
125 /* ignore the error value if ignore_ctl_error flag is set */
126 #define filter_error(cval, err) \
127 ((cval)->head.mixer->ignore_ctl_error ? 0 : (err))
129 /* check whether the control should be ignored */
131 check_ignored_ctl(const struct usbmix_name_map *p)
133 if (!p || p->name || p->dB)
139 static inline void check_mapped_dB(const struct usbmix_name_map *p,
140 struct usb_mixer_elem_info *cval)
143 cval->dBmin = p->dB->min;
144 cval->dBmax = p->dB->max;
145 cval->initialized = 1;
149 /* get the mapped selector source name */
150 static int check_mapped_selector_name(struct mixer_build *state, int unitid,
151 int index, char *buf, int buflen)
153 const struct usbmix_selector_map *p;
155 if (!state->selector_map)
157 for (p = state->selector_map; p->id; p++) {
158 if (p->id == unitid && index < p->count)
159 return strlcpy(buf, p->names[index], buflen);
165 * find an audio control unit with the given unit id
167 static void *find_audio_control_unit(struct mixer_build *state,
170 /* we just parse the header */
171 struct uac_feature_unit_descriptor *hdr = NULL;
173 while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
174 USB_DT_CS_INTERFACE)) != NULL) {
175 if (hdr->bLength >= 4 &&
176 hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
177 hdr->bDescriptorSubtype <= UAC3_SAMPLE_RATE_CONVERTER &&
178 hdr->bUnitID == unit)
186 * copy a string with the given id
188 static int snd_usb_copy_string_desc(struct snd_usb_audio *chip,
189 int index, char *buf, int maxlen)
191 int len = usb_string(chip->dev, index, buf, maxlen - 1);
201 * convert from the byte/word on usb descriptor to the zero-based integer
203 static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
205 switch (cval->val_type) {
206 case USB_MIXER_BOOLEAN:
208 case USB_MIXER_INV_BOOLEAN:
231 * convert from the zero-based int to the byte/word for usb descriptor
233 static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
235 switch (cval->val_type) {
236 case USB_MIXER_BOOLEAN:
238 case USB_MIXER_INV_BOOLEAN:
247 return 0; /* not reached */
250 static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
256 else if (val >= cval->max)
257 return (cval->max - cval->min + cval->res - 1) / cval->res;
259 return (val - cval->min) / cval->res;
262 static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
275 static int uac2_ctl_value_size(int val_type)
287 return 0; /* unreachable */
292 * retrieve a mixer value
295 static inline int mixer_ctrl_intf(struct usb_mixer_interface *mixer)
297 return get_iface_desc(mixer->hostif)->bInterfaceNumber;
300 static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request,
301 int validx, int *value_ret)
303 struct snd_usb_audio *chip = cval->head.mixer->chip;
304 unsigned char buf[2];
305 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
309 err = snd_usb_lock_shutdown(chip);
313 while (timeout-- > 0) {
314 idx = mixer_ctrl_intf(cval->head.mixer) | (cval->head.id << 8);
315 err = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
316 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
317 validx, idx, buf, val_len);
318 if (err >= val_len) {
319 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
322 } else if (err == -ETIMEDOUT) {
327 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
328 request, validx, idx, cval->val_type);
332 snd_usb_unlock_shutdown(chip);
336 static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request,
337 int validx, int *value_ret)
339 struct snd_usb_audio *chip = cval->head.mixer->chip;
340 /* enough space for one range */
341 unsigned char buf[sizeof(__u16) + 3 * sizeof(__u32)];
343 int idx = 0, ret, val_size, size;
346 val_size = uac2_ctl_value_size(cval->val_type);
348 if (request == UAC_GET_CUR) {
349 bRequest = UAC2_CS_CUR;
352 bRequest = UAC2_CS_RANGE;
353 size = sizeof(__u16) + 3 * val_size;
356 memset(buf, 0, sizeof(buf));
358 ret = snd_usb_lock_shutdown(chip) ? -EIO : 0;
362 idx = mixer_ctrl_intf(cval->head.mixer) | (cval->head.id << 8);
363 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
364 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
365 validx, idx, buf, size);
366 snd_usb_unlock_shutdown(chip);
371 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
372 request, validx, idx, cval->val_type);
376 /* FIXME: how should we handle multiple triplets here? */
383 val = buf + sizeof(__u16);
386 val = buf + sizeof(__u16) + val_size;
389 val = buf + sizeof(__u16) + val_size * 2;
395 *value_ret = convert_signed_value(cval,
396 snd_usb_combine_bytes(val, val_size));
401 static int get_ctl_value(struct usb_mixer_elem_info *cval, int request,
402 int validx, int *value_ret)
404 validx += cval->idx_off;
406 return (cval->head.mixer->protocol == UAC_VERSION_1) ?
407 get_ctl_value_v1(cval, request, validx, value_ret) :
408 get_ctl_value_v2(cval, request, validx, value_ret);
411 static int get_cur_ctl_value(struct usb_mixer_elem_info *cval,
412 int validx, int *value)
414 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
417 /* channel = 0: master, 1 = first channel */
418 static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
419 int channel, int *value)
421 return get_ctl_value(cval, UAC_GET_CUR,
422 (cval->control << 8) | channel,
426 int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info *cval,
427 int channel, int index, int *value)
431 if (cval->cached & (1 << channel)) {
432 *value = cval->cache_val[index];
435 err = get_cur_mix_raw(cval, channel, value);
437 if (!cval->head.mixer->ignore_ctl_error)
438 usb_audio_dbg(cval->head.mixer->chip,
439 "cannot get current value for control %d ch %d: err = %d\n",
440 cval->control, channel, err);
443 cval->cached |= 1 << channel;
444 cval->cache_val[index] = *value;
452 int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
453 int request, int validx, int value_set)
455 struct snd_usb_audio *chip = cval->head.mixer->chip;
456 unsigned char buf[4];
457 int idx = 0, val_len, err, timeout = 10;
459 validx += cval->idx_off;
462 if (cval->head.mixer->protocol == UAC_VERSION_1) {
463 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
464 } else { /* UAC_VERSION_2/3 */
465 val_len = uac2_ctl_value_size(cval->val_type);
468 if (request != UAC_SET_CUR) {
469 usb_audio_dbg(chip, "RANGE setting not yet supported\n");
473 request = UAC2_CS_CUR;
476 value_set = convert_bytes_value(cval, value_set);
477 buf[0] = value_set & 0xff;
478 buf[1] = (value_set >> 8) & 0xff;
479 buf[2] = (value_set >> 16) & 0xff;
480 buf[3] = (value_set >> 24) & 0xff;
482 err = snd_usb_lock_shutdown(chip);
486 while (timeout-- > 0) {
487 idx = mixer_ctrl_intf(cval->head.mixer) | (cval->head.id << 8);
488 err = snd_usb_ctl_msg(chip->dev,
489 usb_sndctrlpipe(chip->dev, 0), request,
490 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
491 validx, idx, buf, val_len);
495 } else if (err == -ETIMEDOUT) {
499 usb_audio_dbg(chip, "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
500 request, validx, idx, cval->val_type, buf[0], buf[1]);
504 snd_usb_unlock_shutdown(chip);
508 static int set_cur_ctl_value(struct usb_mixer_elem_info *cval,
509 int validx, int value)
511 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
514 int snd_usb_set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
515 int index, int value)
518 unsigned int read_only = (channel == 0) ?
519 cval->master_readonly :
520 cval->ch_readonly & (1 << (channel - 1));
523 usb_audio_dbg(cval->head.mixer->chip,
524 "%s(): channel %d of control %d is read_only\n",
525 __func__, channel, cval->control);
529 err = snd_usb_mixer_set_ctl_value(cval,
530 UAC_SET_CUR, (cval->control << 8) | channel,
534 cval->cached |= 1 << channel;
535 cval->cache_val[index] = value;
540 * TLV callback for mixer volume controls
542 int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
543 unsigned int size, unsigned int __user *_tlv)
545 struct usb_mixer_elem_info *cval = kcontrol->private_data;
546 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
548 if (size < sizeof(scale))
551 scale[0] = SNDRV_CTL_TLVT_DB_MINMAX_MUTE;
552 scale[2] = cval->dBmin;
553 scale[3] = cval->dBmax;
554 if (copy_to_user(_tlv, scale, sizeof(scale)))
560 * parser routines begin here...
563 static int parse_audio_unit(struct mixer_build *state, int unitid);
567 * check if the input/output channel routing is enabled on the given bitmap.
568 * used for mixer unit parser
570 static int check_matrix_bitmap(unsigned char *bmap,
571 int ich, int och, int num_outs)
573 int idx = ich * num_outs + och;
574 return bmap[idx >> 3] & (0x80 >> (idx & 7));
578 * add an alsa control element
579 * search and increment the index until an empty slot is found.
581 * if failed, give up and free the control instance.
584 int snd_usb_mixer_add_list(struct usb_mixer_elem_list *list,
585 struct snd_kcontrol *kctl,
588 struct usb_mixer_interface *mixer = list->mixer;
591 while (snd_ctl_find_id(mixer->chip->card, &kctl->id))
593 err = snd_ctl_add(mixer->chip->card, kctl);
595 usb_audio_dbg(mixer->chip, "cannot add control (err = %d)\n",
600 list->is_std_info = is_std_info;
601 list->next_id_elem = mixer->id_elems[list->id];
602 mixer->id_elems[list->id] = list;
607 * get a terminal name string
610 static struct iterm_name_combo {
614 { 0x0300, "Output" },
615 { 0x0301, "Speaker" },
616 { 0x0302, "Headphone" },
617 { 0x0303, "HMD Audio" },
618 { 0x0304, "Desktop Speaker" },
619 { 0x0305, "Room Speaker" },
620 { 0x0306, "Com Speaker" },
622 { 0x0600, "External In" },
623 { 0x0601, "Analog In" },
624 { 0x0602, "Digital In" },
626 { 0x0604, "Legacy In" },
627 { 0x0605, "IEC958 In" },
628 { 0x0606, "1394 DA Stream" },
629 { 0x0607, "1394 DV Stream" },
630 { 0x0700, "Embedded" },
631 { 0x0701, "Noise Source" },
632 { 0x0702, "Equalization Noise" },
636 { 0x0706, "MiniDisk" },
637 { 0x0707, "Analog Tape" },
638 { 0x0708, "Phonograph" },
639 { 0x0709, "VCR Audio" },
640 { 0x070a, "Video Disk Audio" },
641 { 0x070b, "DVD Audio" },
642 { 0x070c, "TV Tuner Audio" },
643 { 0x070d, "Satellite Rec Audio" },
644 { 0x070e, "Cable Tuner Audio" },
645 { 0x070f, "DSS Audio" },
646 { 0x0710, "Radio Receiver" },
647 { 0x0711, "Radio Transmitter" },
648 { 0x0712, "Multi-Track Recorder" },
649 { 0x0713, "Synthesizer" },
653 static int get_term_name(struct snd_usb_audio *chip, struct usb_audio_term *iterm,
654 unsigned char *name, int maxlen, int term_only)
656 struct iterm_name_combo *names;
660 len = snd_usb_copy_string_desc(chip, iterm->name,
666 /* virtual type - not a real terminal */
667 if (iterm->type >> 16) {
670 switch (iterm->type >> 16) {
671 case UAC3_SELECTOR_UNIT:
672 strcpy(name, "Selector");
674 case UAC3_PROCESSING_UNIT:
675 strcpy(name, "Process Unit");
677 case UAC3_EXTENSION_UNIT:
678 strcpy(name, "Ext Unit");
680 case UAC3_MIXER_UNIT:
681 strcpy(name, "Mixer");
684 return sprintf(name, "Unit %d", iterm->id);
688 switch (iterm->type & 0xff00) {
696 strcpy(name, "Headset");
699 strcpy(name, "Phone");
703 for (names = iterm_names; names->type; names++) {
704 if (names->type == iterm->type) {
705 strcpy(name, names->name);
706 return strlen(names->name);
714 * Get logical cluster information for UAC3 devices.
716 static int get_cluster_channels_v3(struct mixer_build *state, unsigned int cluster_id)
718 struct uac3_cluster_header_descriptor c_header;
721 err = snd_usb_ctl_msg(state->chip->dev,
722 usb_rcvctrlpipe(state->chip->dev, 0),
723 UAC3_CS_REQ_HIGH_CAPABILITY_DESCRIPTOR,
724 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
726 snd_usb_ctrl_intf(state->chip),
727 &c_header, sizeof(c_header));
730 if (err != sizeof(c_header)) {
735 return c_header.bNrChannels;
738 usb_audio_err(state->chip, "cannot request logical cluster ID: %d (err: %d)\n", cluster_id, err);
743 * Get number of channels for a Mixer Unit.
745 static int uac_mixer_unit_get_channels(struct mixer_build *state,
746 struct uac_mixer_unit_descriptor *desc)
750 switch (state->mixer->protocol) {
754 if (desc->bLength < sizeof(*desc) + desc->bNrInPins + 1)
755 return 0; /* no bmControls -> skip */
756 mu_channels = uac_mixer_unit_bNrChannels(desc);
759 mu_channels = get_cluster_channels_v3(state,
760 uac3_mixer_unit_wClusterDescrID(desc));
768 * Parse Input Terminal Unit
770 static int __check_input_term(struct mixer_build *state, int id,
771 struct usb_audio_term *term);
773 static int parse_term_uac1_iterm_unit(struct mixer_build *state,
774 struct usb_audio_term *term,
777 struct uac_input_terminal_descriptor *d = p1;
779 term->type = le16_to_cpu(d->wTerminalType);
780 term->channels = d->bNrChannels;
781 term->chconfig = le16_to_cpu(d->wChannelConfig);
782 term->name = d->iTerminal;
786 static int parse_term_uac2_iterm_unit(struct mixer_build *state,
787 struct usb_audio_term *term,
790 struct uac2_input_terminal_descriptor *d = p1;
793 /* call recursively to verify the referenced clock entity */
794 err = __check_input_term(state, d->bCSourceID, term);
798 /* save input term properties after recursion,
799 * to ensure they are not overriden by the recursion calls
802 term->type = le16_to_cpu(d->wTerminalType);
803 term->channels = d->bNrChannels;
804 term->chconfig = le32_to_cpu(d->bmChannelConfig);
805 term->name = d->iTerminal;
809 static int parse_term_uac3_iterm_unit(struct mixer_build *state,
810 struct usb_audio_term *term,
813 struct uac3_input_terminal_descriptor *d = p1;
816 /* call recursively to verify the referenced clock entity */
817 err = __check_input_term(state, d->bCSourceID, term);
821 /* save input term properties after recursion,
822 * to ensure they are not overriden by the recursion calls
825 term->type = le16_to_cpu(d->wTerminalType);
827 err = get_cluster_channels_v3(state, le16_to_cpu(d->wClusterDescrID));
830 term->channels = err;
832 /* REVISIT: UAC3 IT doesn't have channels cfg */
835 term->name = le16_to_cpu(d->wTerminalDescrStr);
839 static int parse_term_mixer_unit(struct mixer_build *state,
840 struct usb_audio_term *term,
843 struct uac_mixer_unit_descriptor *d = p1;
844 int protocol = state->mixer->protocol;
847 err = uac_mixer_unit_get_channels(state, d);
851 term->type = UAC3_MIXER_UNIT << 16; /* virtual type */
852 term->channels = err;
853 if (protocol != UAC_VERSION_3) {
854 term->chconfig = uac_mixer_unit_wChannelConfig(d, protocol);
855 term->name = uac_mixer_unit_iMixer(d);
860 static int parse_term_selector_unit(struct mixer_build *state,
861 struct usb_audio_term *term,
864 struct uac_selector_unit_descriptor *d = p1;
867 /* call recursively to retrieve the channel info */
868 err = __check_input_term(state, d->baSourceID[0], term);
871 term->type = UAC3_SELECTOR_UNIT << 16; /* virtual type */
873 if (state->mixer->protocol != UAC_VERSION_3)
874 term->name = uac_selector_unit_iSelector(d);
878 static int parse_term_proc_unit(struct mixer_build *state,
879 struct usb_audio_term *term,
880 void *p1, int id, int vtype)
882 struct uac_processing_unit_descriptor *d = p1;
883 int protocol = state->mixer->protocol;
887 /* call recursively to retrieve the channel info */
888 err = __check_input_term(state, d->baSourceID[0], term);
893 term->type = vtype << 16; /* virtual type */
896 if (protocol == UAC_VERSION_3)
899 if (!term->channels) {
900 term->channels = uac_processing_unit_bNrChannels(d);
901 term->chconfig = uac_processing_unit_wChannelConfig(d, protocol);
903 term->name = uac_processing_unit_iProcessing(d, protocol);
907 static int parse_term_effect_unit(struct mixer_build *state,
908 struct usb_audio_term *term,
911 struct uac2_effect_unit_descriptor *d = p1;
914 err = __check_input_term(state, d->bSourceID, term);
917 term->type = UAC3_EFFECT_UNIT << 16; /* virtual type */
922 static int parse_term_uac2_clock_source(struct mixer_build *state,
923 struct usb_audio_term *term,
926 struct uac_clock_source_descriptor *d = p1;
928 term->type = UAC3_CLOCK_SOURCE << 16; /* virtual type */
930 term->name = d->iClockSource;
934 static int parse_term_uac3_clock_source(struct mixer_build *state,
935 struct usb_audio_term *term,
938 struct uac3_clock_source_descriptor *d = p1;
940 term->type = UAC3_CLOCK_SOURCE << 16; /* virtual type */
942 term->name = le16_to_cpu(d->wClockSourceStr);
946 #define PTYPE(a, b) ((a) << 8 | (b))
949 * parse the source unit recursively until it reaches to a terminal
950 * or a branched unit.
952 static int __check_input_term(struct mixer_build *state, int id,
953 struct usb_audio_term *term)
955 int protocol = state->mixer->protocol;
960 /* a loop in the terminal chain? */
961 if (test_and_set_bit(id, state->termbitmap))
964 p1 = find_audio_control_unit(state, id);
967 if (!snd_usb_validate_audio_desc(p1, protocol))
968 break; /* bad descriptor */
973 switch (PTYPE(protocol, hdr[2])) {
974 case PTYPE(UAC_VERSION_1, UAC_FEATURE_UNIT):
975 case PTYPE(UAC_VERSION_2, UAC_FEATURE_UNIT):
976 case PTYPE(UAC_VERSION_3, UAC3_FEATURE_UNIT): {
977 /* the header is the same for all versions */
978 struct uac_feature_unit_descriptor *d = p1;
981 break; /* continue to parse */
983 case PTYPE(UAC_VERSION_1, UAC_INPUT_TERMINAL):
984 return parse_term_uac1_iterm_unit(state, term, p1, id);
985 case PTYPE(UAC_VERSION_2, UAC_INPUT_TERMINAL):
986 return parse_term_uac2_iterm_unit(state, term, p1, id);
987 case PTYPE(UAC_VERSION_3, UAC_INPUT_TERMINAL):
988 return parse_term_uac3_iterm_unit(state, term, p1, id);
989 case PTYPE(UAC_VERSION_1, UAC_MIXER_UNIT):
990 case PTYPE(UAC_VERSION_2, UAC_MIXER_UNIT):
991 case PTYPE(UAC_VERSION_3, UAC3_MIXER_UNIT):
992 return parse_term_mixer_unit(state, term, p1, id);
993 case PTYPE(UAC_VERSION_1, UAC_SELECTOR_UNIT):
994 case PTYPE(UAC_VERSION_2, UAC_SELECTOR_UNIT):
995 case PTYPE(UAC_VERSION_2, UAC2_CLOCK_SELECTOR):
996 case PTYPE(UAC_VERSION_3, UAC3_SELECTOR_UNIT):
997 case PTYPE(UAC_VERSION_3, UAC3_CLOCK_SELECTOR):
998 return parse_term_selector_unit(state, term, p1, id);
999 case PTYPE(UAC_VERSION_1, UAC1_PROCESSING_UNIT):
1000 case PTYPE(UAC_VERSION_2, UAC2_PROCESSING_UNIT_V2):
1001 case PTYPE(UAC_VERSION_3, UAC3_PROCESSING_UNIT):
1002 return parse_term_proc_unit(state, term, p1, id,
1003 UAC3_PROCESSING_UNIT);
1004 case PTYPE(UAC_VERSION_2, UAC2_EFFECT_UNIT):
1005 case PTYPE(UAC_VERSION_3, UAC3_EFFECT_UNIT):
1006 return parse_term_effect_unit(state, term, p1, id);
1007 case PTYPE(UAC_VERSION_1, UAC1_EXTENSION_UNIT):
1008 case PTYPE(UAC_VERSION_2, UAC2_EXTENSION_UNIT_V2):
1009 case PTYPE(UAC_VERSION_3, UAC3_EXTENSION_UNIT):
1010 return parse_term_proc_unit(state, term, p1, id,
1011 UAC3_EXTENSION_UNIT);
1012 case PTYPE(UAC_VERSION_2, UAC2_CLOCK_SOURCE):
1013 return parse_term_uac2_clock_source(state, term, p1, id);
1014 case PTYPE(UAC_VERSION_3, UAC3_CLOCK_SOURCE):
1015 return parse_term_uac3_clock_source(state, term, p1, id);
1024 static int check_input_term(struct mixer_build *state, int id,
1025 struct usb_audio_term *term)
1027 memset(term, 0, sizeof(*term));
1028 memset(state->termbitmap, 0, sizeof(state->termbitmap));
1029 return __check_input_term(state, id, term);
1036 /* feature unit control information */
1037 struct usb_feature_control_info {
1040 int type; /* data type for uac1 */
1041 int type_uac2; /* data type for uac2 if different from uac1, else -1 */
1044 static const struct usb_feature_control_info audio_feature_info[] = {
1045 { UAC_FU_MUTE, "Mute", USB_MIXER_INV_BOOLEAN, -1 },
1046 { UAC_FU_VOLUME, "Volume", USB_MIXER_S16, -1 },
1047 { UAC_FU_BASS, "Tone Control - Bass", USB_MIXER_S8, -1 },
1048 { UAC_FU_MID, "Tone Control - Mid", USB_MIXER_S8, -1 },
1049 { UAC_FU_TREBLE, "Tone Control - Treble", USB_MIXER_S8, -1 },
1050 { UAC_FU_GRAPHIC_EQUALIZER, "Graphic Equalizer", USB_MIXER_S8, -1 }, /* FIXME: not implemented yet */
1051 { UAC_FU_AUTOMATIC_GAIN, "Auto Gain Control", USB_MIXER_BOOLEAN, -1 },
1052 { UAC_FU_DELAY, "Delay Control", USB_MIXER_U16, USB_MIXER_U32 },
1053 { UAC_FU_BASS_BOOST, "Bass Boost", USB_MIXER_BOOLEAN, -1 },
1054 { UAC_FU_LOUDNESS, "Loudness", USB_MIXER_BOOLEAN, -1 },
1056 { UAC2_FU_INPUT_GAIN, "Input Gain Control", USB_MIXER_S16, -1 },
1057 { UAC2_FU_INPUT_GAIN_PAD, "Input Gain Pad Control", USB_MIXER_S16, -1 },
1058 { UAC2_FU_PHASE_INVERTER, "Phase Inverter Control", USB_MIXER_BOOLEAN, -1 },
1061 static void usb_mixer_elem_info_free(struct usb_mixer_elem_info *cval)
1066 /* private_free callback */
1067 void snd_usb_mixer_elem_free(struct snd_kcontrol *kctl)
1069 usb_mixer_elem_info_free(kctl->private_data);
1070 kctl->private_data = NULL;
1074 * interface to ALSA control for feature/mixer units
1077 /* volume control quirks */
1078 static void volume_control_quirks(struct usb_mixer_elem_info *cval,
1079 struct snd_kcontrol *kctl)
1081 struct snd_usb_audio *chip = cval->head.mixer->chip;
1082 switch (chip->usb_id) {
1083 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
1084 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
1085 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
1091 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
1092 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
1097 if (strstr(kctl->id.name, "Effect Return") != NULL) {
1103 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
1104 (strstr(kctl->id.name, "Effect Send") != NULL)) {
1105 cval->min = 0xb5fb; /* -73 dB = 0xb6ff */
1111 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
1112 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
1113 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
1114 usb_audio_info(chip,
1115 "set quirk for FTU Effect Duration\n");
1121 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
1122 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
1123 usb_audio_info(chip,
1124 "set quirks for FTU Effect Feedback/Volume\n");
1131 case USB_ID(0x0d8c, 0x0103):
1132 if (!strcmp(kctl->id.name, "PCM Playback Volume")) {
1133 usb_audio_info(chip,
1134 "set volume quirk for CM102-A+/102S+\n");
1139 case USB_ID(0x0471, 0x0101):
1140 case USB_ID(0x0471, 0x0104):
1141 case USB_ID(0x0471, 0x0105):
1142 case USB_ID(0x0672, 0x1041):
1143 /* quirk for UDA1321/N101.
1144 * note that detection between firmware 2.1.1.7 (N101)
1145 * and later 2.1.1.21 is not very clear from datasheets.
1146 * I hope that the min value is -15360 for newer firmware --jk
1148 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
1149 cval->min == -15616) {
1150 usb_audio_info(chip,
1151 "set volume quirk for UDA1321/N101 chip\n");
1156 case USB_ID(0x046d, 0x09a4):
1157 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1158 usb_audio_info(chip,
1159 "set volume quirk for QuickCam E3500\n");
1166 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
1167 case USB_ID(0x046d, 0x0808):
1168 case USB_ID(0x046d, 0x0809):
1169 case USB_ID(0x046d, 0x0819): /* Logitech Webcam C210 */
1170 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
1171 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
1172 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
1173 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
1174 case USB_ID(0x046d, 0x08ca): /* Logitech Quickcam Fusion */
1175 case USB_ID(0x046d, 0x0991):
1176 case USB_ID(0x046d, 0x09a2): /* QuickCam Communicate Deluxe/S7500 */
1177 /* Most audio usb devices lie about volume resolution.
1178 * Most Logitech webcams have res = 384.
1179 * Probably there is some logitech magic behind this number --fishor
1181 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1182 usb_audio_info(chip,
1183 "set resolution quirk: cval->res = 384\n");
1187 case USB_ID(0x0495, 0x3042): /* ESS Technology Asus USB DAC */
1188 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
1189 strstr(kctl->id.name, "Capture Volume") != NULL) {
1199 * retrieve the minimum and maximum values for the specified control
1201 static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
1202 int default_min, struct snd_kcontrol *kctl)
1205 cval->min = default_min;
1206 cval->max = cval->min + 1;
1208 cval->dBmin = cval->dBmax = 0;
1210 if (cval->val_type == USB_MIXER_BOOLEAN ||
1211 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1212 cval->initialized = 1;
1217 for (i = 0; i < MAX_CHANNELS; i++)
1218 if (cval->cmask & (1 << i)) {
1223 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
1224 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
1225 usb_audio_err(cval->head.mixer->chip,
1226 "%d:%d: cannot get min/max values for control %d (id %d)\n",
1227 cval->head.id, mixer_ctrl_intf(cval->head.mixer),
1228 cval->control, cval->head.id);
1231 if (get_ctl_value(cval, UAC_GET_RES,
1232 (cval->control << 8) | minchn,
1236 int last_valid_res = cval->res;
1238 while (cval->res > 1) {
1239 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
1240 (cval->control << 8) | minchn,
1245 if (get_ctl_value(cval, UAC_GET_RES,
1246 (cval->control << 8) | minchn, &cval->res) < 0)
1247 cval->res = last_valid_res;
1252 /* Additional checks for the proper resolution
1254 * Some devices report smaller resolutions than actually
1255 * reacting. They don't return errors but simply clip
1256 * to the lower aligned value.
1258 if (cval->min + cval->res < cval->max) {
1259 int last_valid_res = cval->res;
1260 int saved, test, check;
1261 if (get_cur_mix_raw(cval, minchn, &saved) < 0)
1265 if (test < cval->max)
1269 if (test < cval->min || test > cval->max ||
1270 snd_usb_set_cur_mix_value(cval, minchn, 0, test) ||
1271 get_cur_mix_raw(cval, minchn, &check)) {
1272 cval->res = last_valid_res;
1279 snd_usb_set_cur_mix_value(cval, minchn, 0, saved);
1283 cval->initialized = 1;
1287 volume_control_quirks(cval, kctl);
1289 /* USB descriptions contain the dB scale in 1/256 dB unit
1290 * while ALSA TLV contains in 1/100 dB unit
1292 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
1293 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
1294 if (cval->dBmin > cval->dBmax) {
1295 /* something is wrong; assume it's either from/to 0dB */
1296 if (cval->dBmin < 0)
1298 else if (cval->dBmin > 0)
1300 if (cval->dBmin > cval->dBmax) {
1301 /* totally crap, return an error */
1309 #define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
1311 /* get a feature/mixer unit info */
1312 static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
1313 struct snd_ctl_elem_info *uinfo)
1315 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1317 if (cval->val_type == USB_MIXER_BOOLEAN ||
1318 cval->val_type == USB_MIXER_INV_BOOLEAN)
1319 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1321 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1322 uinfo->count = cval->channels;
1323 if (cval->val_type == USB_MIXER_BOOLEAN ||
1324 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1325 uinfo->value.integer.min = 0;
1326 uinfo->value.integer.max = 1;
1328 if (!cval->initialized) {
1329 get_min_max_with_quirks(cval, 0, kcontrol);
1330 if (cval->initialized && cval->dBmin >= cval->dBmax) {
1331 kcontrol->vd[0].access &=
1332 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1333 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK);
1334 snd_ctl_notify(cval->head.mixer->chip->card,
1335 SNDRV_CTL_EVENT_MASK_INFO,
1339 uinfo->value.integer.min = 0;
1340 uinfo->value.integer.max =
1341 (cval->max - cval->min + cval->res - 1) / cval->res;
1346 /* get the current value from feature/mixer unit */
1347 static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol,
1348 struct snd_ctl_elem_value *ucontrol)
1350 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1351 int c, cnt, val, err;
1353 ucontrol->value.integer.value[0] = cval->min;
1356 for (c = 0; c < MAX_CHANNELS; c++) {
1357 if (!(cval->cmask & (1 << c)))
1359 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &val);
1361 return filter_error(cval, err);
1362 val = get_relative_value(cval, val);
1363 ucontrol->value.integer.value[cnt] = val;
1368 /* master channel */
1369 err = snd_usb_get_cur_mix_value(cval, 0, 0, &val);
1371 return filter_error(cval, err);
1372 val = get_relative_value(cval, val);
1373 ucontrol->value.integer.value[0] = val;
1378 /* put the current value to feature/mixer unit */
1379 static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
1380 struct snd_ctl_elem_value *ucontrol)
1382 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1383 int c, cnt, val, oval, err;
1388 for (c = 0; c < MAX_CHANNELS; c++) {
1389 if (!(cval->cmask & (1 << c)))
1391 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &oval);
1393 return filter_error(cval, err);
1394 val = ucontrol->value.integer.value[cnt];
1395 val = get_abs_value(cval, val);
1397 snd_usb_set_cur_mix_value(cval, c + 1, cnt, val);
1403 /* master channel */
1404 err = snd_usb_get_cur_mix_value(cval, 0, 0, &oval);
1406 return filter_error(cval, err);
1407 val = ucontrol->value.integer.value[0];
1408 val = get_abs_value(cval, val);
1410 snd_usb_set_cur_mix_value(cval, 0, 0, val);
1417 /* get the boolean value from the master channel of a UAC control */
1418 static int mixer_ctl_master_bool_get(struct snd_kcontrol *kcontrol,
1419 struct snd_ctl_elem_value *ucontrol)
1421 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1424 err = snd_usb_get_cur_mix_value(cval, 0, 0, &val);
1426 return filter_error(cval, err);
1428 ucontrol->value.integer.value[0] = val;
1432 /* get the connectors status and report it as boolean type */
1433 static int mixer_ctl_connector_get(struct snd_kcontrol *kcontrol,
1434 struct snd_ctl_elem_value *ucontrol)
1436 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1437 struct snd_usb_audio *chip = cval->head.mixer->chip;
1438 int idx = 0, validx, ret, val;
1440 validx = cval->control << 8 | 0;
1442 ret = snd_usb_lock_shutdown(chip) ? -EIO : 0;
1446 idx = mixer_ctrl_intf(cval->head.mixer) | (cval->head.id << 8);
1447 if (cval->head.mixer->protocol == UAC_VERSION_2) {
1448 struct uac2_connectors_ctl_blk uac2_conn;
1450 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), UAC2_CS_CUR,
1451 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
1452 validx, idx, &uac2_conn, sizeof(uac2_conn));
1453 val = !!uac2_conn.bNrChannels;
1454 } else { /* UAC_VERSION_3 */
1455 struct uac3_insertion_ctl_blk uac3_conn;
1457 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), UAC2_CS_CUR,
1458 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
1459 validx, idx, &uac3_conn, sizeof(uac3_conn));
1460 val = !!uac3_conn.bmConInserted;
1463 snd_usb_unlock_shutdown(chip);
1466 if (strstr(kcontrol->id.name, "Speaker")) {
1467 ucontrol->value.integer.value[0] = 1;
1472 "cannot get connectors status: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
1473 UAC_GET_CUR, validx, idx, cval->val_type);
1474 return filter_error(cval, ret);
1477 ucontrol->value.integer.value[0] = val;
1481 static const struct snd_kcontrol_new usb_feature_unit_ctl = {
1482 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1483 .name = "", /* will be filled later manually */
1484 .info = mixer_ctl_feature_info,
1485 .get = mixer_ctl_feature_get,
1486 .put = mixer_ctl_feature_put,
1489 /* the read-only variant */
1490 static const struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
1491 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1492 .name = "", /* will be filled later manually */
1493 .info = mixer_ctl_feature_info,
1494 .get = mixer_ctl_feature_get,
1499 * A control which shows the boolean value from reading a UAC control on
1500 * the master channel.
1502 static const struct snd_kcontrol_new usb_bool_master_control_ctl_ro = {
1503 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1504 .name = "", /* will be filled later manually */
1505 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1506 .info = snd_ctl_boolean_mono_info,
1507 .get = mixer_ctl_master_bool_get,
1511 static const struct snd_kcontrol_new usb_connector_ctl_ro = {
1512 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1513 .name = "", /* will be filled later manually */
1514 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1515 .info = snd_ctl_boolean_mono_info,
1516 .get = mixer_ctl_connector_get,
1521 * This symbol is exported in order to allow the mixer quirks to
1522 * hook up to the standard feature unit control mechanism
1524 const struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl;
1527 * build a feature control
1529 static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
1531 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
1535 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1536 * rename it to "Headphone". We determine if something is a headphone
1537 * similar to how udev determines form factor.
1539 static void check_no_speaker_on_headset(struct snd_kcontrol *kctl,
1540 struct snd_card *card)
1542 const char *names_to_check[] = {
1543 "Headset", "headset", "Headphone", "headphone", NULL};
1547 if (strcmp("Speaker", kctl->id.name))
1550 for (s = names_to_check; *s; s++)
1551 if (strstr(card->shortname, *s)) {
1559 strlcpy(kctl->id.name, "Headphone", sizeof(kctl->id.name));
1562 static const struct usb_feature_control_info *get_feature_control_info(int control)
1566 for (i = 0; i < ARRAY_SIZE(audio_feature_info); ++i) {
1567 if (audio_feature_info[i].control == control)
1568 return &audio_feature_info[i];
1573 static void __build_feature_ctl(struct usb_mixer_interface *mixer,
1574 const struct usbmix_name_map *imap,
1575 unsigned int ctl_mask, int control,
1576 struct usb_audio_term *iterm,
1577 struct usb_audio_term *oterm,
1578 int unitid, int nameid, int readonly_mask)
1580 const struct usb_feature_control_info *ctl_info;
1581 unsigned int len = 0;
1582 int mapped_name = 0;
1583 struct snd_kcontrol *kctl;
1584 struct usb_mixer_elem_info *cval;
1585 const struct usbmix_name_map *map;
1588 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
1589 /* FIXME: not supported yet */
1593 map = find_map(imap, unitid, control);
1594 if (check_ignored_ctl(map))
1597 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1600 snd_usb_mixer_elem_init_std(&cval->head, mixer, unitid);
1601 cval->control = control;
1602 cval->cmask = ctl_mask;
1604 ctl_info = get_feature_control_info(control);
1606 usb_mixer_elem_info_free(cval);
1609 if (mixer->protocol == UAC_VERSION_1)
1610 cval->val_type = ctl_info->type;
1611 else /* UAC_VERSION_2 */
1612 cval->val_type = ctl_info->type_uac2 >= 0 ?
1613 ctl_info->type_uac2 : ctl_info->type;
1615 if (ctl_mask == 0) {
1616 cval->channels = 1; /* master channel */
1617 cval->master_readonly = readonly_mask;
1620 for (i = 0; i < 16; i++)
1621 if (ctl_mask & (1 << i))
1624 cval->ch_readonly = readonly_mask;
1628 * If all channels in the mask are marked read-only, make the control
1629 * read-only. snd_usb_set_cur_mix_value() will check the mask again and won't
1630 * issue write commands to read-only channels.
1632 if (cval->channels == readonly_mask)
1633 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1635 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1638 usb_audio_err(mixer->chip, "cannot malloc kcontrol\n");
1639 usb_mixer_elem_info_free(cval);
1642 kctl->private_free = snd_usb_mixer_elem_free;
1644 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
1645 mapped_name = len != 0;
1647 len = snd_usb_copy_string_desc(mixer->chip, nameid,
1648 kctl->id.name, sizeof(kctl->id.name));
1654 * determine the control name. the rule is:
1655 * - if a name id is given in descriptor, use it.
1656 * - if the connected input can be determined, then use the name
1658 * - if the connected output can be determined, use it.
1659 * - otherwise, anonymous name.
1663 len = get_term_name(mixer->chip, iterm,
1665 sizeof(kctl->id.name), 1);
1667 len = get_term_name(mixer->chip, oterm,
1669 sizeof(kctl->id.name), 1);
1671 snprintf(kctl->id.name, sizeof(kctl->id.name),
1672 "Feature %d", unitid);
1676 check_no_speaker_on_headset(kctl, mixer->chip->card);
1679 * determine the stream direction:
1680 * if the connected output is USB stream, then it's likely a
1681 * capture stream. otherwise it should be playback (hopefully :)
1683 if (!mapped_name && oterm && !(oterm->type >> 16)) {
1684 if ((oterm->type & 0xff00) == 0x0100)
1685 append_ctl_name(kctl, " Capture");
1687 append_ctl_name(kctl, " Playback");
1689 append_ctl_name(kctl, control == UAC_FU_MUTE ?
1690 " Switch" : " Volume");
1694 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1695 sizeof(kctl->id.name));
1699 /* get min/max values */
1700 get_min_max_with_quirks(cval, 0, kctl);
1702 /* skip a bogus volume range */
1703 if (cval->max <= cval->min) {
1704 usb_audio_dbg(mixer->chip,
1705 "[%d] FU [%s] skipped due to invalid volume\n",
1706 cval->head.id, kctl->id.name);
1707 snd_ctl_free_one(kctl);
1712 if (control == UAC_FU_VOLUME) {
1713 check_mapped_dB(map, cval);
1714 if (cval->dBmin < cval->dBmax || !cval->initialized) {
1715 kctl->tlv.c = snd_usb_mixer_vol_tlv;
1716 kctl->vd[0].access |=
1717 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1718 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1722 snd_usb_mixer_fu_apply_quirk(mixer, cval, unitid, kctl);
1724 range = (cval->max - cval->min) / cval->res;
1726 * Are there devices with volume range more than 255? I use a bit more
1727 * to be sure. 384 is a resolution magic number found on Logitech
1728 * devices. It will definitively catch all buggy Logitech devices.
1731 usb_audio_warn(mixer->chip,
1732 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
1734 usb_audio_warn(mixer->chip,
1735 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
1736 cval->head.id, kctl->id.name, cval->channels,
1737 cval->min, cval->max, cval->res);
1740 usb_audio_dbg(mixer->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1741 cval->head.id, kctl->id.name, cval->channels,
1742 cval->min, cval->max, cval->res);
1743 snd_usb_mixer_add_control(&cval->head, kctl);
1746 static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
1747 unsigned int ctl_mask, int control,
1748 struct usb_audio_term *iterm, int unitid,
1751 struct uac_feature_unit_descriptor *desc = raw_desc;
1752 int nameid = uac_feature_unit_iFeature(desc);
1754 __build_feature_ctl(state->mixer, state->map, ctl_mask, control,
1755 iterm, &state->oterm, unitid, nameid, readonly_mask);
1758 static void build_feature_ctl_badd(struct usb_mixer_interface *mixer,
1759 unsigned int ctl_mask, int control, int unitid,
1760 const struct usbmix_name_map *badd_map)
1762 __build_feature_ctl(mixer, badd_map, ctl_mask, control,
1763 NULL, NULL, unitid, 0, 0);
1766 static void get_connector_control_name(struct usb_mixer_interface *mixer,
1767 struct usb_audio_term *term,
1768 bool is_input, char *name, int name_size)
1770 int name_len = get_term_name(mixer->chip, term, name, name_size, 0);
1773 strlcpy(name, "Unknown", name_size);
1776 * sound/core/ctljack.c has a convention of naming jack controls
1777 * by ending in " Jack". Make it slightly more useful by
1778 * indicating Input or Output after the terminal name.
1781 strlcat(name, " - Input Jack", name_size);
1783 strlcat(name, " - Output Jack", name_size);
1786 /* Build a mixer control for a UAC connector control (jack-detect) */
1787 static void build_connector_control(struct usb_mixer_interface *mixer,
1788 const struct usbmix_name_map *imap,
1789 struct usb_audio_term *term, bool is_input)
1791 struct snd_kcontrol *kctl;
1792 struct usb_mixer_elem_info *cval;
1793 const struct usbmix_name_map *map;
1795 map = find_map(imap, term->id, 0);
1796 if (check_ignored_ctl(map))
1799 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1802 snd_usb_mixer_elem_init_std(&cval->head, mixer, term->id);
1804 * UAC2: The first byte from reading the UAC2_TE_CONNECTOR control returns the
1805 * number of channels connected.
1807 * UAC3: The first byte specifies size of bitmap for the inserted controls. The
1808 * following byte(s) specifies which connectors are inserted.
1810 * This boolean ctl will simply report if any channels are connected
1813 if (mixer->protocol == UAC_VERSION_2)
1814 cval->control = UAC2_TE_CONNECTOR;
1815 else /* UAC_VERSION_3 */
1816 cval->control = UAC3_TE_INSERTION;
1818 cval->val_type = USB_MIXER_BOOLEAN;
1819 cval->channels = 1; /* report true if any channel is connected */
1822 kctl = snd_ctl_new1(&usb_connector_ctl_ro, cval);
1824 usb_audio_err(mixer->chip, "cannot malloc kcontrol\n");
1825 usb_mixer_elem_info_free(cval);
1829 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name)))
1830 strlcat(kctl->id.name, " Jack", sizeof(kctl->id.name));
1832 get_connector_control_name(mixer, term, is_input, kctl->id.name,
1833 sizeof(kctl->id.name));
1834 kctl->private_free = snd_usb_mixer_elem_free;
1835 snd_usb_mixer_add_control(&cval->head, kctl);
1838 static int parse_clock_source_unit(struct mixer_build *state, int unitid,
1841 struct uac_clock_source_descriptor *hdr = _ftr;
1842 struct usb_mixer_elem_info *cval;
1843 struct snd_kcontrol *kctl;
1844 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
1847 if (state->mixer->protocol != UAC_VERSION_2)
1851 * The only property of this unit we are interested in is the
1852 * clock source validity. If that isn't readable, just bail out.
1854 if (!uac_v2v3_control_is_readable(hdr->bmControls,
1855 UAC2_CS_CONTROL_CLOCK_VALID))
1858 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1862 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, hdr->bClockID);
1867 cval->val_type = USB_MIXER_BOOLEAN;
1868 cval->control = UAC2_CS_CONTROL_CLOCK_VALID;
1870 cval->master_readonly = 1;
1871 /* From UAC2 5.2.5.1.2 "Only the get request is supported." */
1872 kctl = snd_ctl_new1(&usb_bool_master_control_ctl_ro, cval);
1875 usb_mixer_elem_info_free(cval);
1879 kctl->private_free = snd_usb_mixer_elem_free;
1880 ret = snd_usb_copy_string_desc(state->chip, hdr->iClockSource,
1881 name, sizeof(name));
1883 snprintf(kctl->id.name, sizeof(kctl->id.name),
1884 "%s Validity", name);
1886 snprintf(kctl->id.name, sizeof(kctl->id.name),
1887 "Clock Source %d Validity", hdr->bClockID);
1889 return snd_usb_mixer_add_control(&cval->head, kctl);
1893 * parse a feature unit
1895 * most of controls are defined here.
1897 static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
1901 struct usb_audio_term iterm;
1902 unsigned int master_bits;
1904 struct uac_feature_unit_descriptor *hdr = _ftr;
1907 if (state->mixer->protocol == UAC_VERSION_1) {
1908 csize = hdr->bControlSize;
1909 channels = (hdr->bLength - 7) / csize - 1;
1910 bmaControls = hdr->bmaControls;
1911 } else if (state->mixer->protocol == UAC_VERSION_2) {
1912 struct uac2_feature_unit_descriptor *ftr = _ftr;
1914 channels = (hdr->bLength - 6) / 4 - 1;
1915 bmaControls = ftr->bmaControls;
1916 } else { /* UAC_VERSION_3 */
1917 struct uac3_feature_unit_descriptor *ftr = _ftr;
1920 channels = (ftr->bLength - 7) / 4 - 1;
1921 bmaControls = ftr->bmaControls;
1924 /* parse the source unit */
1925 err = parse_audio_unit(state, hdr->bSourceID);
1929 /* determine the input source type and name */
1930 err = check_input_term(state, hdr->bSourceID, &iterm);
1934 master_bits = snd_usb_combine_bytes(bmaControls, csize);
1935 /* master configuration quirks */
1936 switch (state->chip->usb_id) {
1937 case USB_ID(0x08bb, 0x2702):
1938 usb_audio_info(state->chip,
1939 "usbmixer: master volume quirk for PCM2702 chip\n");
1940 /* disable non-functional volume control */
1941 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
1943 case USB_ID(0x1130, 0xf211):
1944 usb_audio_info(state->chip,
1945 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
1946 /* disable non-functional volume control */
1952 if (state->mixer->protocol == UAC_VERSION_1) {
1953 /* check all control types */
1954 for (i = 0; i < 10; i++) {
1955 unsigned int ch_bits = 0;
1956 int control = audio_feature_info[i].control;
1958 for (j = 0; j < channels; j++) {
1961 mask = snd_usb_combine_bytes(bmaControls +
1962 csize * (j+1), csize);
1963 if (mask & (1 << i))
1964 ch_bits |= (1 << j);
1966 /* audio class v1 controls are never read-only */
1969 * The first channel must be set
1970 * (for ease of programming).
1973 build_feature_ctl(state, _ftr, ch_bits, control,
1975 if (master_bits & (1 << i))
1976 build_feature_ctl(state, _ftr, 0, control,
1979 } else { /* UAC_VERSION_2/3 */
1980 for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
1981 unsigned int ch_bits = 0;
1982 unsigned int ch_read_only = 0;
1983 int control = audio_feature_info[i].control;
1985 for (j = 0; j < channels; j++) {
1988 mask = snd_usb_combine_bytes(bmaControls +
1989 csize * (j+1), csize);
1990 if (uac_v2v3_control_is_readable(mask, control)) {
1991 ch_bits |= (1 << j);
1992 if (!uac_v2v3_control_is_writeable(mask, control))
1993 ch_read_only |= (1 << j);
1998 * NOTE: build_feature_ctl() will mark the control
1999 * read-only if all channels are marked read-only in
2000 * the descriptors. Otherwise, the control will be
2001 * reported as writeable, but the driver will not
2002 * actually issue a write command for read-only
2007 * The first channel must be set
2008 * (for ease of programming).
2011 build_feature_ctl(state, _ftr, ch_bits, control,
2012 &iterm, unitid, ch_read_only);
2013 if (uac_v2v3_control_is_readable(master_bits, control))
2014 build_feature_ctl(state, _ftr, 0, control,
2016 !uac_v2v3_control_is_writeable(master_bits,
2028 /* check whether the given in/out overflows bmMixerControls matrix */
2029 static bool mixer_bitmap_overflow(struct uac_mixer_unit_descriptor *desc,
2030 int protocol, int num_ins, int num_outs)
2032 u8 *hdr = (u8 *)desc;
2033 u8 *c = uac_mixer_unit_bmControls(desc, protocol);
2034 size_t rest; /* remaining bytes after bmMixerControls */
2039 rest = 1; /* iMixer */
2042 rest = 2; /* bmControls + iMixer */
2045 rest = 6; /* bmControls + wMixerDescrStr */
2050 return c + (num_ins * num_outs + 7) / 8 + rest > hdr + hdr[0];
2054 * build a mixer unit control
2056 * the callbacks are identical with feature unit.
2057 * input channel number (zero based) is given in control field instead.
2059 static void build_mixer_unit_ctl(struct mixer_build *state,
2060 struct uac_mixer_unit_descriptor *desc,
2061 int in_pin, int in_ch, int num_outs,
2062 int unitid, struct usb_audio_term *iterm)
2064 struct usb_mixer_elem_info *cval;
2065 unsigned int i, len;
2066 struct snd_kcontrol *kctl;
2067 const struct usbmix_name_map *map;
2069 map = find_map(state->map, unitid, 0);
2070 if (check_ignored_ctl(map))
2073 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
2077 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
2078 cval->control = in_ch + 1; /* based on 1 */
2079 cval->val_type = USB_MIXER_S16;
2080 for (i = 0; i < num_outs; i++) {
2081 __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol);
2083 if (check_matrix_bitmap(c, in_ch, i, num_outs)) {
2084 cval->cmask |= (1 << i);
2089 /* get min/max values */
2090 get_min_max(cval, 0);
2092 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
2094 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
2095 usb_mixer_elem_info_free(cval);
2098 kctl->private_free = snd_usb_mixer_elem_free;
2100 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
2102 len = get_term_name(state->chip, iterm, kctl->id.name,
2103 sizeof(kctl->id.name), 0);
2105 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
2106 append_ctl_name(kctl, " Volume");
2108 usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n",
2109 cval->head.id, kctl->id.name, cval->channels, cval->min, cval->max);
2110 snd_usb_mixer_add_control(&cval->head, kctl);
2113 static int parse_audio_input_terminal(struct mixer_build *state, int unitid,
2116 struct usb_audio_term iterm;
2117 unsigned int control, bmctls, term_id;
2119 if (state->mixer->protocol == UAC_VERSION_2) {
2120 struct uac2_input_terminal_descriptor *d_v2 = raw_desc;
2121 control = UAC2_TE_CONNECTOR;
2122 term_id = d_v2->bTerminalID;
2123 bmctls = le16_to_cpu(d_v2->bmControls);
2124 } else if (state->mixer->protocol == UAC_VERSION_3) {
2125 struct uac3_input_terminal_descriptor *d_v3 = raw_desc;
2126 control = UAC3_TE_INSERTION;
2127 term_id = d_v3->bTerminalID;
2128 bmctls = le32_to_cpu(d_v3->bmControls);
2130 return 0; /* UAC1. No Insertion control */
2133 check_input_term(state, term_id, &iterm);
2135 /* Check for jack detection. */
2136 if ((iterm.type & 0xff00) != 0x0100 &&
2137 uac_v2v3_control_is_readable(bmctls, control))
2138 build_connector_control(state->mixer, state->map, &iterm, true);
2144 * parse a mixer unit
2146 static int parse_audio_mixer_unit(struct mixer_build *state, int unitid,
2149 struct uac_mixer_unit_descriptor *desc = raw_desc;
2150 struct usb_audio_term iterm;
2151 int input_pins, num_ins, num_outs;
2154 err = uac_mixer_unit_get_channels(state, desc);
2156 usb_audio_err(state->chip,
2157 "invalid MIXER UNIT descriptor %d\n",
2163 input_pins = desc->bNrInPins;
2167 for (pin = 0; pin < input_pins; pin++) {
2168 err = parse_audio_unit(state, desc->baSourceID[pin]);
2171 /* no bmControls field (e.g. Maya44) -> ignore */
2174 err = check_input_term(state, desc->baSourceID[pin], &iterm);
2177 num_ins += iterm.channels;
2178 if (mixer_bitmap_overflow(desc, state->mixer->protocol,
2181 for (; ich < num_ins; ich++) {
2182 int och, ich_has_controls = 0;
2184 for (och = 0; och < num_outs; och++) {
2185 __u8 *c = uac_mixer_unit_bmControls(desc,
2186 state->mixer->protocol);
2188 if (check_matrix_bitmap(c, ich, och, num_outs)) {
2189 ich_has_controls = 1;
2193 if (ich_has_controls)
2194 build_mixer_unit_ctl(state, desc, pin, ich, num_outs,
2202 * Processing Unit / Extension Unit
2205 /* get callback for processing/extension unit */
2206 static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol,
2207 struct snd_ctl_elem_value *ucontrol)
2209 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2212 err = get_cur_ctl_value(cval, cval->control << 8, &val);
2214 ucontrol->value.integer.value[0] = cval->min;
2215 return filter_error(cval, err);
2217 val = get_relative_value(cval, val);
2218 ucontrol->value.integer.value[0] = val;
2222 /* put callback for processing/extension unit */
2223 static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
2224 struct snd_ctl_elem_value *ucontrol)
2226 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2229 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
2231 return filter_error(cval, err);
2232 val = ucontrol->value.integer.value[0];
2233 val = get_abs_value(cval, val);
2235 set_cur_ctl_value(cval, cval->control << 8, val);
2241 /* alsa control interface for processing/extension unit */
2242 static const struct snd_kcontrol_new mixer_procunit_ctl = {
2243 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2244 .name = "", /* will be filled later */
2245 .info = mixer_ctl_feature_info,
2246 .get = mixer_ctl_procunit_get,
2247 .put = mixer_ctl_procunit_put,
2251 * predefined data for processing units
2253 struct procunit_value_info {
2260 struct procunit_info {
2263 const struct procunit_value_info *values;
2266 static const struct procunit_value_info undefined_proc_info[] = {
2267 { 0x00, "Control Undefined", 0 },
2271 static const struct procunit_value_info updown_proc_info[] = {
2272 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2273 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
2276 static const struct procunit_value_info prologic_proc_info[] = {
2277 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2278 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
2281 static const struct procunit_value_info threed_enh_proc_info[] = {
2282 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2283 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
2286 static const struct procunit_value_info reverb_proc_info[] = {
2287 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2288 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
2289 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
2290 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
2293 static const struct procunit_value_info chorus_proc_info[] = {
2294 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2295 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
2296 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
2297 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
2300 static const struct procunit_value_info dcr_proc_info[] = {
2301 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2302 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
2303 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
2304 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
2305 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
2306 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
2310 static const struct procunit_info procunits[] = {
2311 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
2312 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
2313 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
2314 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
2315 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
2316 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
2320 static const struct procunit_value_info uac3_updown_proc_info[] = {
2321 { UAC3_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
2324 static const struct procunit_value_info uac3_stereo_ext_proc_info[] = {
2325 { UAC3_EXT_WIDTH_CONTROL, "Width Control", USB_MIXER_U8 },
2329 static const struct procunit_info uac3_procunits[] = {
2330 { UAC3_PROCESS_UP_DOWNMIX, "Up Down", uac3_updown_proc_info },
2331 { UAC3_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", uac3_stereo_ext_proc_info },
2332 { UAC3_PROCESS_MULTI_FUNCTION, "Multi-Function", undefined_proc_info },
2337 * predefined data for extension units
2339 static const struct procunit_value_info clock_rate_xu_info[] = {
2340 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
2343 static const struct procunit_value_info clock_source_xu_info[] = {
2344 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
2347 static const struct procunit_value_info spdif_format_xu_info[] = {
2348 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
2351 static const struct procunit_value_info soft_limit_xu_info[] = {
2352 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
2355 static const struct procunit_info extunits[] = {
2356 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
2357 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
2358 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
2359 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
2364 * build a processing/extension unit
2366 static int build_audio_procunit(struct mixer_build *state, int unitid,
2367 void *raw_desc, const struct procunit_info *list,
2368 bool extension_unit)
2370 struct uac_processing_unit_descriptor *desc = raw_desc;
2372 struct usb_mixer_elem_info *cval;
2373 struct snd_kcontrol *kctl;
2374 int i, err, nameid, type, len;
2375 const struct procunit_info *info;
2376 const struct procunit_value_info *valinfo;
2377 const struct usbmix_name_map *map;
2378 static const struct procunit_value_info default_value_info[] = {
2379 { 0x01, "Switch", USB_MIXER_BOOLEAN },
2382 static const struct procunit_info default_info = {
2383 0, NULL, default_value_info
2385 const char *name = extension_unit ?
2386 "Extension Unit" : "Processing Unit";
2388 num_ins = desc->bNrInPins;
2389 for (i = 0; i < num_ins; i++) {
2390 err = parse_audio_unit(state, desc->baSourceID[i]);
2395 type = le16_to_cpu(desc->wProcessType);
2396 for (info = list; info && info->type; info++)
2397 if (info->type == type)
2399 if (!info || !info->type)
2400 info = &default_info;
2402 for (valinfo = info->values; valinfo->control; valinfo++) {
2403 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
2405 if (state->mixer->protocol == UAC_VERSION_1) {
2406 if (!(controls[valinfo->control / 8] &
2407 (1 << ((valinfo->control % 8) - 1))))
2409 } else { /* UAC_VERSION_2/3 */
2410 if (!uac_v2v3_control_is_readable(controls[valinfo->control / 8],
2415 map = find_map(state->map, unitid, valinfo->control);
2416 if (check_ignored_ctl(map))
2418 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
2421 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
2422 cval->control = valinfo->control;
2423 cval->val_type = valinfo->val_type;
2426 if (state->mixer->protocol > UAC_VERSION_1 &&
2427 !uac_v2v3_control_is_writeable(controls[valinfo->control / 8],
2429 cval->master_readonly = 1;
2431 /* get min/max values */
2433 case UAC_PROCESS_UP_DOWNMIX: {
2434 bool mode_sel = false;
2436 switch (state->mixer->protocol) {
2440 if (cval->control == UAC_UD_MODE_SELECT)
2444 if (cval->control == UAC3_UD_MODE_SELECT)
2450 __u8 *control_spec = uac_processing_unit_specific(desc,
2451 state->mixer->protocol);
2453 cval->max = control_spec[0];
2455 cval->initialized = 1;
2459 get_min_max(cval, valinfo->min_value);
2462 case USB_XU_CLOCK_RATE:
2464 * E-Mu USB 0404/0202/TrackerPre/0204
2465 * samplerate control quirk
2470 cval->initialized = 1;
2473 get_min_max(cval, valinfo->min_value);
2477 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
2479 usb_mixer_elem_info_free(cval);
2482 kctl->private_free = snd_usb_mixer_elem_free;
2484 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) {
2486 } else if (info->name) {
2487 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
2490 nameid = uac_extension_unit_iExtension(desc, state->mixer->protocol);
2492 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
2495 len = snd_usb_copy_string_desc(state->chip,
2498 sizeof(kctl->id.name));
2500 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
2502 append_ctl_name(kctl, " ");
2503 append_ctl_name(kctl, valinfo->suffix);
2505 usb_audio_dbg(state->chip,
2506 "[%d] PU [%s] ch = %d, val = %d/%d\n",
2507 cval->head.id, kctl->id.name, cval->channels,
2508 cval->min, cval->max);
2510 err = snd_usb_mixer_add_control(&cval->head, kctl);
2517 static int parse_audio_processing_unit(struct mixer_build *state, int unitid,
2520 switch (state->mixer->protocol) {
2524 return build_audio_procunit(state, unitid, raw_desc,
2527 return build_audio_procunit(state, unitid, raw_desc,
2528 uac3_procunits, false);
2532 static int parse_audio_extension_unit(struct mixer_build *state, int unitid,
2536 * Note that we parse extension units with processing unit descriptors.
2537 * That's ok as the layout is the same.
2539 return build_audio_procunit(state, unitid, raw_desc, extunits, true);
2547 * info callback for selector unit
2548 * use an enumerator type for routing
2550 static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol,
2551 struct snd_ctl_elem_info *uinfo)
2553 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2554 const char **itemlist = (const char **)kcontrol->private_value;
2556 if (snd_BUG_ON(!itemlist))
2558 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
2561 /* get callback for selector unit */
2562 static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol,
2563 struct snd_ctl_elem_value *ucontrol)
2565 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2568 err = get_cur_ctl_value(cval, cval->control << 8, &val);
2570 ucontrol->value.enumerated.item[0] = 0;
2571 return filter_error(cval, err);
2573 val = get_relative_value(cval, val);
2574 ucontrol->value.enumerated.item[0] = val;
2578 /* put callback for selector unit */
2579 static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
2580 struct snd_ctl_elem_value *ucontrol)
2582 struct usb_mixer_elem_info *cval = kcontrol->private_data;
2585 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
2587 return filter_error(cval, err);
2588 val = ucontrol->value.enumerated.item[0];
2589 val = get_abs_value(cval, val);
2591 set_cur_ctl_value(cval, cval->control << 8, val);
2597 /* alsa control interface for selector unit */
2598 static const struct snd_kcontrol_new mixer_selectunit_ctl = {
2599 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2600 .name = "", /* will be filled later */
2601 .info = mixer_ctl_selector_info,
2602 .get = mixer_ctl_selector_get,
2603 .put = mixer_ctl_selector_put,
2607 * private free callback.
2608 * free both private_data and private_value
2610 static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
2614 if (kctl->private_data) {
2615 struct usb_mixer_elem_info *cval = kctl->private_data;
2616 num_ins = cval->max;
2617 usb_mixer_elem_info_free(cval);
2618 kctl->private_data = NULL;
2620 if (kctl->private_value) {
2621 char **itemlist = (char **)kctl->private_value;
2622 for (i = 0; i < num_ins; i++)
2625 kctl->private_value = 0;
2630 * parse a selector unit
2632 static int parse_audio_selector_unit(struct mixer_build *state, int unitid,
2635 struct uac_selector_unit_descriptor *desc = raw_desc;
2636 unsigned int i, nameid, len;
2638 struct usb_mixer_elem_info *cval;
2639 struct snd_kcontrol *kctl;
2640 const struct usbmix_name_map *map;
2643 for (i = 0; i < desc->bNrInPins; i++) {
2644 err = parse_audio_unit(state, desc->baSourceID[i]);
2649 if (desc->bNrInPins == 1) /* only one ? nonsense! */
2652 map = find_map(state->map, unitid, 0);
2653 if (check_ignored_ctl(map))
2656 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
2659 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
2660 cval->val_type = USB_MIXER_U8;
2663 cval->max = desc->bNrInPins;
2665 cval->initialized = 1;
2667 switch (state->mixer->protocol) {
2674 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR ||
2675 desc->bDescriptorSubtype == UAC3_CLOCK_SELECTOR)
2676 cval->control = UAC2_CX_CLOCK_SELECTOR;
2677 else /* UAC2/3_SELECTOR_UNIT */
2678 cval->control = UAC2_SU_SELECTOR;
2682 namelist = kcalloc(desc->bNrInPins, sizeof(char *), GFP_KERNEL);
2687 #define MAX_ITEM_NAME_LEN 64
2688 for (i = 0; i < desc->bNrInPins; i++) {
2689 struct usb_audio_term iterm;
2691 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
2696 len = check_mapped_selector_name(state, unitid, i, namelist[i],
2698 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
2699 len = get_term_name(state->chip, &iterm, namelist[i],
2700 MAX_ITEM_NAME_LEN, 0);
2702 sprintf(namelist[i], "Input %u", i);
2705 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
2707 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
2711 kctl->private_value = (unsigned long)namelist;
2712 kctl->private_free = usb_mixer_selector_elem_free;
2714 /* check the static mapping table at first */
2715 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
2718 switch (state->mixer->protocol) {
2722 /* if iSelector is given, use it */
2723 nameid = uac_selector_unit_iSelector(desc);
2725 len = snd_usb_copy_string_desc(state->chip,
2726 nameid, kctl->id.name,
2727 sizeof(kctl->id.name));
2730 /* TODO: Class-Specific strings not yet supported */
2734 /* ... or pick up the terminal name at next */
2736 len = get_term_name(state->chip, &state->oterm,
2737 kctl->id.name, sizeof(kctl->id.name), 0);
2738 /* ... or use the fixed string "USB" as the last resort */
2740 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
2742 /* and add the proper suffix */
2743 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR ||
2744 desc->bDescriptorSubtype == UAC3_CLOCK_SELECTOR)
2745 append_ctl_name(kctl, " Clock Source");
2746 else if ((state->oterm.type & 0xff00) == 0x0100)
2747 append_ctl_name(kctl, " Capture Source");
2749 append_ctl_name(kctl, " Playback Source");
2752 usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n",
2753 cval->head.id, kctl->id.name, desc->bNrInPins);
2754 return snd_usb_mixer_add_control(&cval->head, kctl);
2757 for (i = 0; i < desc->bNrInPins; i++)
2761 usb_mixer_elem_info_free(cval);
2766 * parse an audio unit recursively
2769 static int parse_audio_unit(struct mixer_build *state, int unitid)
2772 int protocol = state->mixer->protocol;
2774 if (test_and_set_bit(unitid, state->unitbitmap))
2775 return 0; /* the unit already visited */
2777 p1 = find_audio_control_unit(state, unitid);
2779 usb_audio_err(state->chip, "unit %d not found!\n", unitid);
2783 if (!snd_usb_validate_audio_desc(p1, protocol)) {
2784 usb_audio_dbg(state->chip, "invalid unit %d\n", unitid);
2785 return 0; /* skip invalid unit */
2788 switch (PTYPE(protocol, p1[2])) {
2789 case PTYPE(UAC_VERSION_1, UAC_INPUT_TERMINAL):
2790 case PTYPE(UAC_VERSION_2, UAC_INPUT_TERMINAL):
2791 case PTYPE(UAC_VERSION_3, UAC_INPUT_TERMINAL):
2792 return parse_audio_input_terminal(state, unitid, p1);
2793 case PTYPE(UAC_VERSION_1, UAC_MIXER_UNIT):
2794 case PTYPE(UAC_VERSION_2, UAC_MIXER_UNIT):
2795 case PTYPE(UAC_VERSION_3, UAC3_MIXER_UNIT):
2796 return parse_audio_mixer_unit(state, unitid, p1);
2797 case PTYPE(UAC_VERSION_2, UAC2_CLOCK_SOURCE):
2798 case PTYPE(UAC_VERSION_3, UAC3_CLOCK_SOURCE):
2799 return parse_clock_source_unit(state, unitid, p1);
2800 case PTYPE(UAC_VERSION_1, UAC_SELECTOR_UNIT):
2801 case PTYPE(UAC_VERSION_2, UAC_SELECTOR_UNIT):
2802 case PTYPE(UAC_VERSION_3, UAC3_SELECTOR_UNIT):
2803 case PTYPE(UAC_VERSION_2, UAC2_CLOCK_SELECTOR):
2804 case PTYPE(UAC_VERSION_3, UAC3_CLOCK_SELECTOR):
2805 return parse_audio_selector_unit(state, unitid, p1);
2806 case PTYPE(UAC_VERSION_1, UAC_FEATURE_UNIT):
2807 case PTYPE(UAC_VERSION_2, UAC_FEATURE_UNIT):
2808 case PTYPE(UAC_VERSION_3, UAC3_FEATURE_UNIT):
2809 return parse_audio_feature_unit(state, unitid, p1);
2810 case PTYPE(UAC_VERSION_1, UAC1_PROCESSING_UNIT):
2811 case PTYPE(UAC_VERSION_2, UAC2_PROCESSING_UNIT_V2):
2812 case PTYPE(UAC_VERSION_3, UAC3_PROCESSING_UNIT):
2813 return parse_audio_processing_unit(state, unitid, p1);
2814 case PTYPE(UAC_VERSION_1, UAC1_EXTENSION_UNIT):
2815 case PTYPE(UAC_VERSION_2, UAC2_EXTENSION_UNIT_V2):
2816 case PTYPE(UAC_VERSION_3, UAC3_EXTENSION_UNIT):
2817 return parse_audio_extension_unit(state, unitid, p1);
2818 case PTYPE(UAC_VERSION_2, UAC2_EFFECT_UNIT):
2819 case PTYPE(UAC_VERSION_3, UAC3_EFFECT_UNIT):
2820 return 0; /* FIXME - effect units not implemented yet */
2822 usb_audio_err(state->chip,
2823 "unit %u: unexpected type 0x%02x\n",
2829 static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
2831 /* kill pending URBs */
2832 snd_usb_mixer_disconnect(mixer);
2834 kfree(mixer->id_elems);
2836 kfree(mixer->urb->transfer_buffer);
2837 usb_free_urb(mixer->urb);
2839 usb_free_urb(mixer->rc_urb);
2840 kfree(mixer->rc_setup_packet);
2844 static int snd_usb_mixer_dev_free(struct snd_device *device)
2846 struct usb_mixer_interface *mixer = device->device_data;
2847 snd_usb_mixer_free(mixer);
2851 /* UAC3 predefined channels configuration */
2852 struct uac3_badd_profile {
2855 int c_chmask; /* capture channels mask */
2856 int p_chmask; /* playback channels mask */
2857 int st_chmask; /* side tone mixing channel mask */
2860 static const struct uac3_badd_profile uac3_badd_profiles[] = {
2863 * BAIF, BAOF or combination of both
2864 * IN: Mono or Stereo cfg, Mono alt possible
2865 * OUT: Mono or Stereo cfg, Mono alt possible
2867 .subclass = UAC3_FUNCTION_SUBCLASS_GENERIC_IO,
2868 .name = "GENERIC IO",
2869 .c_chmask = -1, /* dynamic channels */
2870 .p_chmask = -1, /* dynamic channels */
2873 /* BAOF; Stereo only cfg, Mono alt possible */
2874 .subclass = UAC3_FUNCTION_SUBCLASS_HEADPHONE,
2875 .name = "HEADPHONE",
2879 /* BAOF; Mono or Stereo cfg, Mono alt possible */
2880 .subclass = UAC3_FUNCTION_SUBCLASS_SPEAKER,
2882 .p_chmask = -1, /* dynamic channels */
2885 /* BAIF; Mono or Stereo cfg, Mono alt possible */
2886 .subclass = UAC3_FUNCTION_SUBCLASS_MICROPHONE,
2887 .name = "MICROPHONE",
2888 .c_chmask = -1, /* dynamic channels */
2894 * OUT: Mono or Stereo cfg, Mono alt possible
2896 .subclass = UAC3_FUNCTION_SUBCLASS_HEADSET,
2899 .p_chmask = -1, /* dynamic channels */
2903 /* BAIOF; IN: Mono only; OUT: Stereo only, Mono alt possible */
2904 .subclass = UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER,
2905 .name = "HEADSET ADAPTER",
2911 /* BAIF + BAOF; IN: Mono only; OUT: Mono only */
2912 .subclass = UAC3_FUNCTION_SUBCLASS_SPEAKERPHONE,
2913 .name = "SPEAKERPHONE",
2917 { 0 } /* terminator */
2920 static bool uac3_badd_func_has_valid_channels(struct usb_mixer_interface *mixer,
2921 const struct uac3_badd_profile *f,
2922 int c_chmask, int p_chmask)
2925 * If both playback/capture channels are dynamic, make sure
2926 * at least one channel is present
2928 if (f->c_chmask < 0 && f->p_chmask < 0) {
2929 if (!c_chmask && !p_chmask) {
2930 usb_audio_warn(mixer->chip, "BAAD %s: no channels?",
2937 if ((f->c_chmask < 0 && !c_chmask) ||
2938 (f->c_chmask >= 0 && f->c_chmask != c_chmask)) {
2939 usb_audio_warn(mixer->chip, "BAAD %s c_chmask mismatch",
2943 if ((f->p_chmask < 0 && !p_chmask) ||
2944 (f->p_chmask >= 0 && f->p_chmask != p_chmask)) {
2945 usb_audio_warn(mixer->chip, "BAAD %s p_chmask mismatch",
2953 * create mixer controls for UAC3 BADD profiles
2955 * UAC3 BADD device doesn't contain CS descriptors thus we will guess everything
2957 * BADD device may contain Mixer Unit, which doesn't have any controls, skip it
2959 static int snd_usb_mixer_controls_badd(struct usb_mixer_interface *mixer,
2962 struct usb_device *dev = mixer->chip->dev;
2963 struct usb_interface_assoc_descriptor *assoc;
2964 int badd_profile = mixer->chip->badd_profile;
2965 const struct uac3_badd_profile *f;
2966 const struct usbmix_ctl_map *map;
2967 int p_chmask = 0, c_chmask = 0, st_chmask = 0;
2970 assoc = usb_ifnum_to_if(dev, ctrlif)->intf_assoc;
2972 /* Detect BADD capture/playback channels from AS EP descriptors */
2973 for (i = 0; i < assoc->bInterfaceCount; i++) {
2974 int intf = assoc->bFirstInterface + i;
2976 struct usb_interface *iface;
2977 struct usb_host_interface *alts;
2978 struct usb_interface_descriptor *altsd;
2979 unsigned int maxpacksize;
2986 iface = usb_ifnum_to_if(dev, intf);
2990 num = iface->num_altsetting;
2996 * The number of Channels in an AudioStreaming interface
2997 * and the audio sample bit resolution (16 bits or 24
2998 * bits) can be derived from the wMaxPacketSize field in
2999 * the Standard AS Audio Data Endpoint descriptor in
3000 * Alternate Setting 1
3002 alts = &iface->altsetting[1];
3003 altsd = get_iface_desc(alts);
3005 if (altsd->bNumEndpoints < 1)
3008 /* check direction */
3009 dir_in = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN);
3010 maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3012 switch (maxpacksize) {
3014 usb_audio_err(mixer->chip,
3015 "incorrect wMaxPacketSize 0x%x for BADD profile\n",
3018 case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_16:
3019 case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_16:
3020 case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_24:
3021 case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_24:
3024 case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_16:
3025 case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_16:
3026 case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_24:
3027 case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_24:
3038 usb_audio_dbg(mixer->chip,
3039 "UAC3 BADD profile 0x%x: detected c_chmask=%d p_chmask=%d\n",
3040 badd_profile, c_chmask, p_chmask);
3042 /* check the mapping table */
3043 for (map = uac3_badd_usbmix_ctl_maps; map->id; map++) {
3044 if (map->id == badd_profile)
3051 for (f = uac3_badd_profiles; f->name; f++) {
3052 if (badd_profile == f->subclass)
3057 if (!uac3_badd_func_has_valid_channels(mixer, f, c_chmask, p_chmask))
3059 st_chmask = f->st_chmask;
3063 /* Master channel, always writable */
3064 build_feature_ctl_badd(mixer, 0, UAC_FU_MUTE,
3065 UAC3_BADD_FU_ID2, map->map);
3066 /* Mono/Stereo volume channels, always writable */
3067 build_feature_ctl_badd(mixer, p_chmask, UAC_FU_VOLUME,
3068 UAC3_BADD_FU_ID2, map->map);
3073 /* Master channel, always writable */
3074 build_feature_ctl_badd(mixer, 0, UAC_FU_MUTE,
3075 UAC3_BADD_FU_ID5, map->map);
3076 /* Mono/Stereo volume channels, always writable */
3077 build_feature_ctl_badd(mixer, c_chmask, UAC_FU_VOLUME,
3078 UAC3_BADD_FU_ID5, map->map);
3081 /* Side tone-mixing */
3083 /* Master channel, always writable */
3084 build_feature_ctl_badd(mixer, 0, UAC_FU_MUTE,
3085 UAC3_BADD_FU_ID7, map->map);
3086 /* Mono volume channel, always writable */
3087 build_feature_ctl_badd(mixer, 1, UAC_FU_VOLUME,
3088 UAC3_BADD_FU_ID7, map->map);
3091 /* Insertion Control */
3092 if (f->subclass == UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER) {
3093 struct usb_audio_term iterm, oterm;
3095 /* Input Term - Insertion control */
3096 memset(&iterm, 0, sizeof(iterm));
3097 iterm.id = UAC3_BADD_IT_ID4;
3098 iterm.type = UAC_BIDIR_TERMINAL_HEADSET;
3099 build_connector_control(mixer, map->map, &iterm, true);
3101 /* Output Term - Insertion control */
3102 memset(&oterm, 0, sizeof(oterm));
3103 oterm.id = UAC3_BADD_OT_ID3;
3104 oterm.type = UAC_BIDIR_TERMINAL_HEADSET;
3105 build_connector_control(mixer, map->map, &oterm, false);
3112 * create mixer controls
3114 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
3116 static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
3118 struct mixer_build state;
3120 const struct usbmix_ctl_map *map;
3123 memset(&state, 0, sizeof(state));
3124 state.chip = mixer->chip;
3125 state.mixer = mixer;
3126 state.buffer = mixer->hostif->extra;
3127 state.buflen = mixer->hostif->extralen;
3129 /* check the mapping table */
3130 for (map = usbmix_ctl_maps; map->id; map++) {
3131 if (map->id == state.chip->usb_id) {
3132 state.map = map->map;
3133 state.selector_map = map->selector_map;
3134 mixer->connector_map = map->connector_map;
3135 mixer->ignore_ctl_error |= map->ignore_ctl_error;
3141 while ((p = snd_usb_find_csint_desc(mixer->hostif->extra,
3142 mixer->hostif->extralen,
3143 p, UAC_OUTPUT_TERMINAL)) != NULL) {
3144 if (!snd_usb_validate_audio_desc(p, mixer->protocol))
3145 continue; /* skip invalid descriptor */
3147 if (mixer->protocol == UAC_VERSION_1) {
3148 struct uac1_output_terminal_descriptor *desc = p;
3150 /* mark terminal ID as visited */
3151 set_bit(desc->bTerminalID, state.unitbitmap);
3152 state.oterm.id = desc->bTerminalID;
3153 state.oterm.type = le16_to_cpu(desc->wTerminalType);
3154 state.oterm.name = desc->iTerminal;
3155 err = parse_audio_unit(&state, desc->bSourceID);
3156 if (err < 0 && err != -EINVAL)
3158 } else if (mixer->protocol == UAC_VERSION_2) {
3159 struct uac2_output_terminal_descriptor *desc = p;
3161 /* mark terminal ID as visited */
3162 set_bit(desc->bTerminalID, state.unitbitmap);
3163 state.oterm.id = desc->bTerminalID;
3164 state.oterm.type = le16_to_cpu(desc->wTerminalType);
3165 state.oterm.name = desc->iTerminal;
3166 err = parse_audio_unit(&state, desc->bSourceID);
3167 if (err < 0 && err != -EINVAL)
3171 * For UAC2, use the same approach to also add the
3174 err = parse_audio_unit(&state, desc->bCSourceID);
3175 if (err < 0 && err != -EINVAL)
3178 if ((state.oterm.type & 0xff00) != 0x0100 &&
3179 uac_v2v3_control_is_readable(le16_to_cpu(desc->bmControls),
3180 UAC2_TE_CONNECTOR)) {
3181 build_connector_control(state.mixer, state.map,
3182 &state.oterm, false);
3184 } else { /* UAC_VERSION_3 */
3185 struct uac3_output_terminal_descriptor *desc = p;
3187 /* mark terminal ID as visited */
3188 set_bit(desc->bTerminalID, state.unitbitmap);
3189 state.oterm.id = desc->bTerminalID;
3190 state.oterm.type = le16_to_cpu(desc->wTerminalType);
3191 state.oterm.name = le16_to_cpu(desc->wTerminalDescrStr);
3192 err = parse_audio_unit(&state, desc->bSourceID);
3193 if (err < 0 && err != -EINVAL)
3197 * For UAC3, use the same approach to also add the
3200 err = parse_audio_unit(&state, desc->bCSourceID);
3201 if (err < 0 && err != -EINVAL)
3204 if ((state.oterm.type & 0xff00) != 0x0100 &&
3205 uac_v2v3_control_is_readable(le32_to_cpu(desc->bmControls),
3206 UAC3_TE_INSERTION)) {
3207 build_connector_control(state.mixer, state.map,
3208 &state.oterm, false);
3216 static int delegate_notify(struct usb_mixer_interface *mixer, int unitid,
3217 u8 *control, u8 *channel)
3219 const struct usbmix_connector_map *map = mixer->connector_map;
3224 for (; map->id; map++) {
3225 if (map->id == unitid) {
3226 if (control && map->control)
3227 *control = map->control;
3228 if (channel && map->channel)
3229 *channel = map->channel;
3230 return map->delegated_id;
3236 void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
3238 struct usb_mixer_elem_list *list;
3240 unitid = delegate_notify(mixer, unitid, NULL, NULL);
3242 for_each_mixer_elem(list, mixer, unitid) {
3243 struct usb_mixer_elem_info *info;
3245 if (!list->is_std_info)
3247 info = mixer_elem_list_to_info(list);
3248 /* invalidate cache, so the value is read from the device */
3250 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
3255 static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
3256 struct usb_mixer_elem_list *list)
3258 struct usb_mixer_elem_info *cval = mixer_elem_list_to_info(list);
3259 static const char * const val_types[] = {"BOOLEAN", "INV_BOOLEAN",
3260 "S8", "U8", "S16", "U16"};
3261 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
3262 "channels=%i, type=\"%s\"\n", cval->head.id,
3263 cval->control, cval->cmask, cval->channels,
3264 val_types[cval->val_type]);
3265 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
3266 cval->min, cval->max, cval->dBmin, cval->dBmax);
3269 static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
3270 struct snd_info_buffer *buffer)
3272 struct snd_usb_audio *chip = entry->private_data;
3273 struct usb_mixer_interface *mixer;
3274 struct usb_mixer_elem_list *list;
3277 list_for_each_entry(mixer, &chip->mixer_list, list) {
3279 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
3280 chip->usb_id, mixer_ctrl_intf(mixer),
3281 mixer->ignore_ctl_error);
3282 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
3283 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
3284 for_each_mixer_elem(list, mixer, unitid) {
3285 snd_iprintf(buffer, " Unit: %i\n", list->id);
3288 " Control: name=\"%s\", index=%i\n",
3289 list->kctl->id.name,
3290 list->kctl->id.index);
3292 list->dump(buffer, list);
3298 static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
3299 int attribute, int value, int index)
3301 struct usb_mixer_elem_list *list;
3302 __u8 unitid = (index >> 8) & 0xff;
3303 __u8 control = (value >> 8) & 0xff;
3304 __u8 channel = value & 0xff;
3305 unsigned int count = 0;
3307 if (channel >= MAX_CHANNELS) {
3308 usb_audio_dbg(mixer->chip,
3309 "%s(): bogus channel number %d\n",
3314 unitid = delegate_notify(mixer, unitid, &control, &channel);
3316 for_each_mixer_elem(list, mixer, unitid)
3322 for_each_mixer_elem(list, mixer, unitid) {
3323 struct usb_mixer_elem_info *info;
3327 if (!list->is_std_info)
3330 info = mixer_elem_list_to_info(list);
3331 if (count > 1 && info->control != control)
3334 switch (attribute) {
3336 /* invalidate cache, so the value is read from the device */
3338 info->cached &= ~(1 << channel);
3339 else /* master channel */
3342 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
3343 &info->head.kctl->id);
3355 usb_audio_dbg(mixer->chip,
3356 "unknown attribute %d in interrupt\n",
3363 static void snd_usb_mixer_interrupt(struct urb *urb)
3365 struct usb_mixer_interface *mixer = urb->context;
3366 int len = urb->actual_length;
3367 int ustatus = urb->status;
3372 if (mixer->protocol == UAC_VERSION_1) {
3373 struct uac1_status_word *status;
3375 for (status = urb->transfer_buffer;
3376 len >= sizeof(*status);
3377 len -= sizeof(*status), status++) {
3378 dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n",
3379 status->bStatusType,
3380 status->bOriginator);
3382 /* ignore any notifications not from the control interface */
3383 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
3384 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
3387 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
3388 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
3390 snd_usb_mixer_notify_id(mixer, status->bOriginator);
3392 } else { /* UAC_VERSION_2 */
3393 struct uac2_interrupt_data_msg *msg;
3395 for (msg = urb->transfer_buffer;
3396 len >= sizeof(*msg);
3397 len -= sizeof(*msg), msg++) {
3398 /* drop vendor specific and endpoint requests */
3399 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
3400 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
3403 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
3404 le16_to_cpu(msg->wValue),
3405 le16_to_cpu(msg->wIndex));
3410 if (ustatus != -ENOENT &&
3411 ustatus != -ECONNRESET &&
3412 ustatus != -ESHUTDOWN) {
3413 urb->dev = mixer->chip->dev;
3414 usb_submit_urb(urb, GFP_ATOMIC);
3418 /* create the handler for the optional status interrupt endpoint */
3419 static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
3421 struct usb_endpoint_descriptor *ep;
3422 void *transfer_buffer;
3426 /* we need one interrupt input endpoint */
3427 if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
3429 ep = get_endpoint(mixer->hostif, 0);
3430 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
3433 epnum = usb_endpoint_num(ep);
3434 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
3435 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
3436 if (!transfer_buffer)
3438 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
3440 kfree(transfer_buffer);
3443 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
3444 usb_rcvintpipe(mixer->chip->dev, epnum),
3445 transfer_buffer, buffer_length,
3446 snd_usb_mixer_interrupt, mixer, ep->bInterval);
3447 usb_submit_urb(mixer->urb, GFP_KERNEL);
3451 static int keep_iface_ctl_get(struct snd_kcontrol *kcontrol,
3452 struct snd_ctl_elem_value *ucontrol)
3454 struct usb_mixer_interface *mixer = snd_kcontrol_chip(kcontrol);
3456 ucontrol->value.integer.value[0] = mixer->chip->keep_iface;
3460 static int keep_iface_ctl_put(struct snd_kcontrol *kcontrol,
3461 struct snd_ctl_elem_value *ucontrol)
3463 struct usb_mixer_interface *mixer = snd_kcontrol_chip(kcontrol);
3464 bool keep_iface = !!ucontrol->value.integer.value[0];
3466 if (mixer->chip->keep_iface == keep_iface)
3468 mixer->chip->keep_iface = keep_iface;
3472 static const struct snd_kcontrol_new keep_iface_ctl = {
3473 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
3474 .name = "Keep Interface",
3475 .info = snd_ctl_boolean_mono_info,
3476 .get = keep_iface_ctl_get,
3477 .put = keep_iface_ctl_put,
3480 static int create_keep_iface_ctl(struct usb_mixer_interface *mixer)
3482 struct snd_kcontrol *kctl = snd_ctl_new1(&keep_iface_ctl, mixer);
3484 /* need only one control per card */
3485 if (snd_ctl_find_id(mixer->chip->card, &kctl->id)) {
3486 snd_ctl_free_one(kctl);
3490 return snd_ctl_add(mixer->chip->card, kctl);
3493 int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
3496 static const struct snd_device_ops dev_ops = {
3497 .dev_free = snd_usb_mixer_dev_free
3499 struct usb_mixer_interface *mixer;
3502 strcpy(chip->card->mixername, "USB Mixer");
3504 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
3508 mixer->ignore_ctl_error = ignore_error;
3509 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
3511 if (!mixer->id_elems) {
3516 mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
3517 switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
3520 mixer->protocol = UAC_VERSION_1;
3523 mixer->protocol = UAC_VERSION_2;
3526 mixer->protocol = UAC_VERSION_3;
3530 if (mixer->protocol == UAC_VERSION_3 &&
3531 chip->badd_profile >= UAC3_FUNCTION_SUBCLASS_GENERIC_IO) {
3532 err = snd_usb_mixer_controls_badd(mixer, ctrlif);
3536 err = snd_usb_mixer_controls(mixer);
3541 err = snd_usb_mixer_status_create(mixer);
3545 err = create_keep_iface_ctl(mixer);
3549 err = snd_usb_mixer_apply_create_quirk(mixer);
3553 err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops);
3557 if (list_empty(&chip->mixer_list))
3558 snd_card_ro_proc_new(chip->card, "usbmixer", chip,
3559 snd_usb_mixer_proc_read);
3561 list_add(&mixer->list, &chip->mixer_list);
3565 snd_usb_mixer_free(mixer);
3569 void snd_usb_mixer_disconnect(struct usb_mixer_interface *mixer)
3571 if (mixer->disconnected)
3574 usb_kill_urb(mixer->urb);
3576 usb_kill_urb(mixer->rc_urb);
3577 if (mixer->private_free)
3578 mixer->private_free(mixer);
3579 mixer->disconnected = true;
3583 /* stop any bus activity of a mixer */
3584 static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
3586 usb_kill_urb(mixer->urb);
3587 usb_kill_urb(mixer->rc_urb);
3590 static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
3595 err = usb_submit_urb(mixer->urb, GFP_NOIO);
3603 int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer)
3605 snd_usb_mixer_inactivate(mixer);
3606 if (mixer->private_suspend)
3607 mixer->private_suspend(mixer);
3611 static int restore_mixer_value(struct usb_mixer_elem_list *list)
3613 struct usb_mixer_elem_info *cval = mixer_elem_list_to_info(list);
3618 for (c = 0; c < MAX_CHANNELS; c++) {
3619 if (!(cval->cmask & (1 << c)))
3621 if (cval->cached & (1 << (c + 1))) {
3622 err = snd_usb_set_cur_mix_value(cval, c + 1, idx,
3623 cval->cache_val[idx]);
3632 err = snd_usb_set_cur_mix_value(cval, 0, 0, *cval->cache_val);
3641 int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume)
3643 struct usb_mixer_elem_list *list;
3647 /* restore cached mixer values */
3648 for (id = 0; id < MAX_ID_ELEMS; id++) {
3649 for_each_mixer_elem(list, mixer, id) {
3651 err = list->resume(list);
3659 snd_usb_mixer_resume_quirk(mixer);
3661 return snd_usb_mixer_activate(mixer);
3665 void snd_usb_mixer_elem_init_std(struct usb_mixer_elem_list *list,
3666 struct usb_mixer_interface *mixer,
3669 list->mixer = mixer;
3671 list->dump = snd_usb_mixer_dump_cval;
3673 list->resume = restore_mixer_value;