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/slab.h>
49 #include <linux/string.h>
50 #include <linux/usb.h>
51 #include <linux/usb/audio.h>
52 #include <linux/usb/audio-v2.h>
54 #include <sound/core.h>
55 #include <sound/control.h>
56 #include <sound/hwdep.h>
57 #include <sound/info.h>
58 #include <sound/tlv.h>
63 #include "mixer_quirks.h"
66 #define MAX_ID_ELEMS 256
68 struct usb_audio_term {
72 unsigned int chconfig;
76 struct usbmix_name_map;
79 struct snd_usb_audio *chip;
80 struct usb_mixer_interface *mixer;
81 unsigned char *buffer;
83 DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
84 struct usb_audio_term oterm;
85 const struct usbmix_name_map *map;
86 const struct usbmix_selector_map *selector_map;
89 /*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
91 USB_XU_CLOCK_RATE = 0xe301,
92 USB_XU_CLOCK_SOURCE = 0xe302,
93 USB_XU_DIGITAL_IO_STATUS = 0xe303,
94 USB_XU_DEVICE_OPTIONS = 0xe304,
95 USB_XU_DIRECT_MONITORING = 0xe305,
96 USB_XU_METERING = 0xe306
99 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
100 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
101 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
102 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
106 * manual mapping of mixer names
107 * if the mixer topology is too complicated and the parsed names are
108 * ambiguous, add the entries in usbmixer_maps.c.
110 #include "mixer_maps.c"
112 static const struct usbmix_name_map *
113 find_map(struct mixer_build *state, int unitid, int control)
115 const struct usbmix_name_map *p = state->map;
120 for (p = state->map; p->id; p++) {
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 /* check whether the control should be ignored */
141 check_ignored_ctl(const struct usbmix_name_map *p)
143 if (!p || p->name || p->dB)
149 static inline void check_mapped_dB(const struct usbmix_name_map *p,
150 struct usb_mixer_elem_info *cval)
153 cval->dBmin = p->dB->min;
154 cval->dBmax = p->dB->max;
155 cval->initialized = 1;
159 /* get the mapped selector source name */
160 static int check_mapped_selector_name(struct mixer_build *state, int unitid,
161 int index, char *buf, int buflen)
163 const struct usbmix_selector_map *p;
165 if (!state->selector_map)
167 for (p = state->selector_map; p->id; p++) {
168 if (p->id == unitid && index < p->count)
169 return strlcpy(buf, p->names[index], buflen);
175 * find an audio control unit with the given unit id
177 static void *find_audio_control_unit(struct mixer_build *state,
180 /* we just parse the header */
181 struct uac_feature_unit_descriptor *hdr = NULL;
183 while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
184 USB_DT_CS_INTERFACE)) != NULL) {
185 if (hdr->bLength >= 4 &&
186 hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
187 hdr->bDescriptorSubtype <= UAC2_SAMPLE_RATE_CONVERTER &&
188 hdr->bUnitID == unit)
196 * copy a string with the given id
198 static int snd_usb_copy_string_desc(struct mixer_build *state,
199 int index, char *buf, int maxlen)
201 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
207 * convert from the byte/word on usb descriptor to the zero-based integer
209 static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
211 switch (cval->val_type) {
212 case USB_MIXER_BOOLEAN:
214 case USB_MIXER_INV_BOOLEAN:
237 * convert from the zero-based int to the byte/word for usb descriptor
239 static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
241 switch (cval->val_type) {
242 case USB_MIXER_BOOLEAN:
244 case USB_MIXER_INV_BOOLEAN:
253 return 0; /* not reached */
256 static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
262 else if (val >= cval->max)
263 return (cval->max - cval->min + cval->res - 1) / cval->res;
265 return (val - cval->min) / cval->res;
268 static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
283 * retrieve a mixer value
286 static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request,
287 int validx, int *value_ret)
289 struct snd_usb_audio *chip = cval->mixer->chip;
290 unsigned char buf[2];
291 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
295 err = snd_usb_autoresume(cval->mixer->chip);
299 down_read(&chip->shutdown_rwsem);
300 while (timeout-- > 0) {
303 idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
304 if (snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
305 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
306 validx, idx, buf, val_len) >= val_len) {
307 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
313 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
314 request, validx, idx, cval->val_type);
318 up_read(&chip->shutdown_rwsem);
319 snd_usb_autosuspend(cval->mixer->chip);
323 static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request,
324 int validx, int *value_ret)
326 struct snd_usb_audio *chip = cval->mixer->chip;
327 unsigned char buf[2 + 3 * sizeof(__u16)]; /* enough space for one range */
329 int idx = 0, ret, size;
332 if (request == UAC_GET_CUR) {
333 bRequest = UAC2_CS_CUR;
334 size = sizeof(__u16);
336 bRequest = UAC2_CS_RANGE;
340 memset(buf, 0, sizeof(buf));
342 ret = snd_usb_autoresume(chip) ? -EIO : 0;
346 down_read(&chip->shutdown_rwsem);
347 if (chip->shutdown) {
350 idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
351 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
352 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
353 validx, idx, buf, size);
355 up_read(&chip->shutdown_rwsem);
356 snd_usb_autosuspend(chip);
361 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
362 request, validx, idx, cval->val_type);
366 /* FIXME: how should we handle multiple triplets here? */
373 val = buf + sizeof(__u16);
376 val = buf + sizeof(__u16) * 2;
379 val = buf + sizeof(__u16) * 3;
385 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(val, sizeof(__u16)));
390 static int get_ctl_value(struct usb_mixer_elem_info *cval, int request,
391 int validx, int *value_ret)
393 validx += cval->idx_off;
395 return (cval->mixer->protocol == UAC_VERSION_1) ?
396 get_ctl_value_v1(cval, request, validx, value_ret) :
397 get_ctl_value_v2(cval, request, validx, value_ret);
400 static int get_cur_ctl_value(struct usb_mixer_elem_info *cval,
401 int validx, int *value)
403 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
406 /* channel = 0: master, 1 = first channel */
407 static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
408 int channel, int *value)
410 return get_ctl_value(cval, UAC_GET_CUR,
411 (cval->control << 8) | channel,
415 static int get_cur_mix_value(struct usb_mixer_elem_info *cval,
416 int channel, int index, int *value)
420 if (cval->cached & (1 << channel)) {
421 *value = cval->cache_val[index];
424 err = get_cur_mix_raw(cval, channel, value);
426 if (!cval->mixer->ignore_ctl_error)
427 usb_audio_dbg(cval->mixer->chip,
428 "cannot get current value for control %d ch %d: err = %d\n",
429 cval->control, channel, err);
432 cval->cached |= 1 << channel;
433 cval->cache_val[index] = *value;
441 int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
442 int request, int validx, int value_set)
444 struct snd_usb_audio *chip = cval->mixer->chip;
445 unsigned char buf[2];
446 int idx = 0, val_len, err, timeout = 10;
448 validx += cval->idx_off;
450 if (cval->mixer->protocol == UAC_VERSION_1) {
451 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
452 } else { /* UAC_VERSION_2 */
453 /* audio class v2 controls are always 2 bytes in size */
454 val_len = sizeof(__u16);
457 if (request != UAC_SET_CUR) {
458 usb_audio_dbg(chip, "RANGE setting not yet supported\n");
462 request = UAC2_CS_CUR;
465 value_set = convert_bytes_value(cval, value_set);
466 buf[0] = value_set & 0xff;
467 buf[1] = (value_set >> 8) & 0xff;
468 err = snd_usb_autoresume(chip);
471 down_read(&chip->shutdown_rwsem);
472 while (timeout-- > 0) {
475 idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
476 if (snd_usb_ctl_msg(chip->dev,
477 usb_sndctrlpipe(chip->dev, 0), request,
478 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
479 validx, idx, buf, val_len) >= 0) {
484 usb_audio_dbg(chip, "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
485 request, validx, idx, cval->val_type, buf[0], buf[1]);
489 up_read(&chip->shutdown_rwsem);
490 snd_usb_autosuspend(chip);
494 static int set_cur_ctl_value(struct usb_mixer_elem_info *cval,
495 int validx, int value)
497 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
500 static int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
501 int index, int value)
504 unsigned int read_only = (channel == 0) ?
505 cval->master_readonly :
506 cval->ch_readonly & (1 << (channel - 1));
509 usb_audio_dbg(cval->mixer->chip,
510 "%s(): channel %d of control %d is read_only\n",
511 __func__, channel, cval->control);
515 err = snd_usb_mixer_set_ctl_value(cval,
516 UAC_SET_CUR, (cval->control << 8) | channel,
520 cval->cached |= 1 << channel;
521 cval->cache_val[index] = value;
526 * TLV callback for mixer volume controls
528 int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
529 unsigned int size, unsigned int __user *_tlv)
531 struct usb_mixer_elem_info *cval = kcontrol->private_data;
532 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
534 if (size < sizeof(scale))
536 scale[2] = cval->dBmin;
537 scale[3] = cval->dBmax;
538 if (copy_to_user(_tlv, scale, sizeof(scale)))
544 * parser routines begin here...
547 static int parse_audio_unit(struct mixer_build *state, int unitid);
551 * check if the input/output channel routing is enabled on the given bitmap.
552 * used for mixer unit parser
554 static int check_matrix_bitmap(unsigned char *bmap,
555 int ich, int och, int num_outs)
557 int idx = ich * num_outs + och;
558 return bmap[idx >> 3] & (0x80 >> (idx & 7));
562 * add an alsa control element
563 * search and increment the index until an empty slot is found.
565 * if failed, give up and free the control instance.
568 int snd_usb_mixer_add_control(struct usb_mixer_interface *mixer,
569 struct snd_kcontrol *kctl)
571 struct usb_mixer_elem_info *cval = kctl->private_data;
574 while (snd_ctl_find_id(mixer->chip->card, &kctl->id))
576 if ((err = snd_ctl_add(mixer->chip->card, kctl)) < 0) {
577 usb_audio_dbg(mixer->chip, "cannot add control (err = %d)\n",
581 cval->elem_id = &kctl->id;
582 cval->next_id_elem = mixer->id_elems[cval->id];
583 mixer->id_elems[cval->id] = cval;
588 * get a terminal name string
591 static struct iterm_name_combo {
595 { 0x0300, "Output" },
596 { 0x0301, "Speaker" },
597 { 0x0302, "Headphone" },
598 { 0x0303, "HMD Audio" },
599 { 0x0304, "Desktop Speaker" },
600 { 0x0305, "Room Speaker" },
601 { 0x0306, "Com Speaker" },
603 { 0x0600, "External In" },
604 { 0x0601, "Analog In" },
605 { 0x0602, "Digital In" },
607 { 0x0604, "Legacy In" },
608 { 0x0605, "IEC958 In" },
609 { 0x0606, "1394 DA Stream" },
610 { 0x0607, "1394 DV Stream" },
611 { 0x0700, "Embedded" },
612 { 0x0701, "Noise Source" },
613 { 0x0702, "Equalization Noise" },
617 { 0x0706, "MiniDisk" },
618 { 0x0707, "Analog Tape" },
619 { 0x0708, "Phonograph" },
620 { 0x0709, "VCR Audio" },
621 { 0x070a, "Video Disk Audio" },
622 { 0x070b, "DVD Audio" },
623 { 0x070c, "TV Tuner Audio" },
624 { 0x070d, "Satellite Rec Audio" },
625 { 0x070e, "Cable Tuner Audio" },
626 { 0x070f, "DSS Audio" },
627 { 0x0710, "Radio Receiver" },
628 { 0x0711, "Radio Transmitter" },
629 { 0x0712, "Multi-Track Recorder" },
630 { 0x0713, "Synthesizer" },
634 static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
635 unsigned char *name, int maxlen, int term_only)
637 struct iterm_name_combo *names;
640 return snd_usb_copy_string_desc(state, iterm->name,
643 /* virtual type - not a real terminal */
644 if (iterm->type >> 16) {
647 switch (iterm->type >> 16) {
648 case UAC_SELECTOR_UNIT:
649 strcpy(name, "Selector");
651 case UAC1_PROCESSING_UNIT:
652 strcpy(name, "Process Unit");
654 case UAC1_EXTENSION_UNIT:
655 strcpy(name, "Ext Unit");
658 strcpy(name, "Mixer");
661 return sprintf(name, "Unit %d", iterm->id);
665 switch (iterm->type & 0xff00) {
673 strcpy(name, "Headset");
676 strcpy(name, "Phone");
680 for (names = iterm_names; names->type; names++) {
681 if (names->type == iterm->type) {
682 strcpy(name, names->name);
683 return strlen(names->name);
691 * parse the source unit recursively until it reaches to a terminal
692 * or a branched unit.
694 static int check_input_term(struct mixer_build *state, int id,
695 struct usb_audio_term *term)
700 memset(term, 0, sizeof(*term));
701 while ((p1 = find_audio_control_unit(state, id)) != NULL) {
702 unsigned char *hdr = p1;
705 case UAC_INPUT_TERMINAL:
706 if (state->mixer->protocol == UAC_VERSION_1) {
707 struct uac_input_terminal_descriptor *d = p1;
708 term->type = le16_to_cpu(d->wTerminalType);
709 term->channels = d->bNrChannels;
710 term->chconfig = le16_to_cpu(d->wChannelConfig);
711 term->name = d->iTerminal;
712 } else { /* UAC_VERSION_2 */
713 struct uac2_input_terminal_descriptor *d = p1;
714 term->type = le16_to_cpu(d->wTerminalType);
715 term->channels = d->bNrChannels;
716 term->chconfig = le32_to_cpu(d->bmChannelConfig);
717 term->name = d->iTerminal;
719 /* call recursively to get the clock selectors */
720 err = check_input_term(state, d->bCSourceID, term);
725 case UAC_FEATURE_UNIT: {
726 /* the header is the same for v1 and v2 */
727 struct uac_feature_unit_descriptor *d = p1;
729 break; /* continue to parse */
731 case UAC_MIXER_UNIT: {
732 struct uac_mixer_unit_descriptor *d = p1;
733 term->type = d->bDescriptorSubtype << 16; /* virtual type */
734 term->channels = uac_mixer_unit_bNrChannels(d);
735 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
736 term->name = uac_mixer_unit_iMixer(d);
739 case UAC_SELECTOR_UNIT:
740 case UAC2_CLOCK_SELECTOR: {
741 struct uac_selector_unit_descriptor *d = p1;
742 /* call recursively to retrieve the channel info */
743 err = check_input_term(state, d->baSourceID[0], term);
746 term->type = d->bDescriptorSubtype << 16; /* virtual type */
748 term->name = uac_selector_unit_iSelector(d);
751 case UAC1_PROCESSING_UNIT:
752 case UAC1_EXTENSION_UNIT:
753 /* UAC2_PROCESSING_UNIT_V2 */
754 /* UAC2_EFFECT_UNIT */
755 case UAC2_EXTENSION_UNIT_V2: {
756 struct uac_processing_unit_descriptor *d = p1;
758 if (state->mixer->protocol == UAC_VERSION_2 &&
759 hdr[2] == UAC2_EFFECT_UNIT) {
760 /* UAC2/UAC1 unit IDs overlap here in an
761 * uncompatible way. Ignore this unit for now.
767 id = d->baSourceID[0];
768 break; /* continue to parse */
770 term->type = d->bDescriptorSubtype << 16; /* virtual type */
771 term->channels = uac_processing_unit_bNrChannels(d);
772 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
773 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
776 case UAC2_CLOCK_SOURCE: {
777 struct uac_clock_source_descriptor *d = p1;
778 term->type = d->bDescriptorSubtype << 16; /* virtual type */
780 term->name = d->iClockSource;
794 /* feature unit control information */
795 struct usb_feature_control_info {
797 unsigned int type; /* control type (mute, volume, etc.) */
800 static struct usb_feature_control_info audio_feature_info[] = {
801 { "Mute", USB_MIXER_INV_BOOLEAN },
802 { "Volume", USB_MIXER_S16 },
803 { "Tone Control - Bass", USB_MIXER_S8 },
804 { "Tone Control - Mid", USB_MIXER_S8 },
805 { "Tone Control - Treble", USB_MIXER_S8 },
806 { "Graphic Equalizer", USB_MIXER_S8 }, /* FIXME: not implemeted yet */
807 { "Auto Gain Control", USB_MIXER_BOOLEAN },
808 { "Delay Control", USB_MIXER_U16 },
809 { "Bass Boost", USB_MIXER_BOOLEAN },
810 { "Loudness", USB_MIXER_BOOLEAN },
812 { "Input Gain Control", USB_MIXER_U16 },
813 { "Input Gain Pad Control", USB_MIXER_BOOLEAN },
814 { "Phase Inverter Control", USB_MIXER_BOOLEAN },
817 /* private_free callback */
818 static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
820 kfree(kctl->private_data);
821 kctl->private_data = NULL;
825 * interface to ALSA control for feature/mixer units
828 /* volume control quirks */
829 static void volume_control_quirks(struct usb_mixer_elem_info *cval,
830 struct snd_kcontrol *kctl)
832 struct snd_usb_audio *chip = cval->mixer->chip;
833 switch (chip->usb_id) {
834 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
835 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
836 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
842 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
843 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
848 if (strstr(kctl->id.name, "Effect Return") != NULL) {
854 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
855 (strstr(kctl->id.name, "Effect Send") != NULL)) {
856 cval->min = 0xb5fb; /* -73 dB = 0xb6ff */
862 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
863 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
864 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
866 "set quirk for FTU Effect Duration\n");
872 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
873 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
875 "set quirks for FTU Effect Feedback/Volume\n");
882 case USB_ID(0x0471, 0x0101):
883 case USB_ID(0x0471, 0x0104):
884 case USB_ID(0x0471, 0x0105):
885 case USB_ID(0x0672, 0x1041):
886 /* quirk for UDA1321/N101.
887 * note that detection between firmware 2.1.1.7 (N101)
888 * and later 2.1.1.21 is not very clear from datasheets.
889 * I hope that the min value is -15360 for newer firmware --jk
891 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
892 cval->min == -15616) {
894 "set volume quirk for UDA1321/N101 chip\n");
899 case USB_ID(0x046d, 0x09a4):
900 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
902 "set volume quirk for QuickCam E3500\n");
909 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
910 case USB_ID(0x046d, 0x0808):
911 case USB_ID(0x046d, 0x0809):
912 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
913 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
914 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
915 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
916 case USB_ID(0x046d, 0x0991):
917 /* Most audio usb devices lie about volume resolution.
918 * Most Logitech webcams have res = 384.
919 * Proboly there is some logitech magic behind this number --fishor
921 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
923 "set resolution quirk: cval->res = 384\n");
931 * retrieve the minimum and maximum values for the specified control
933 static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
934 int default_min, struct snd_kcontrol *kctl)
937 cval->min = default_min;
938 cval->max = cval->min + 1;
940 cval->dBmin = cval->dBmax = 0;
942 if (cval->val_type == USB_MIXER_BOOLEAN ||
943 cval->val_type == USB_MIXER_INV_BOOLEAN) {
944 cval->initialized = 1;
949 for (i = 0; i < MAX_CHANNELS; i++)
950 if (cval->cmask & (1 << i)) {
955 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
956 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
957 usb_audio_err(cval->mixer->chip,
958 "%d:%d: cannot get min/max values for control %d (id %d)\n",
959 cval->id, snd_usb_ctrl_intf(cval->mixer->chip),
960 cval->control, cval->id);
963 if (get_ctl_value(cval, UAC_GET_RES,
964 (cval->control << 8) | minchn,
968 int last_valid_res = cval->res;
970 while (cval->res > 1) {
971 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
972 (cval->control << 8) | minchn,
977 if (get_ctl_value(cval, UAC_GET_RES,
978 (cval->control << 8) | minchn, &cval->res) < 0)
979 cval->res = last_valid_res;
984 /* Additional checks for the proper resolution
986 * Some devices report smaller resolutions than actually
987 * reacting. They don't return errors but simply clip
988 * to the lower aligned value.
990 if (cval->min + cval->res < cval->max) {
991 int last_valid_res = cval->res;
992 int saved, test, check;
993 get_cur_mix_raw(cval, minchn, &saved);
996 if (test < cval->max)
1000 if (test < cval->min || test > cval->max ||
1001 set_cur_mix_value(cval, minchn, 0, test) ||
1002 get_cur_mix_raw(cval, minchn, &check)) {
1003 cval->res = last_valid_res;
1010 set_cur_mix_value(cval, minchn, 0, saved);
1013 cval->initialized = 1;
1017 volume_control_quirks(cval, kctl);
1019 /* USB descriptions contain the dB scale in 1/256 dB unit
1020 * while ALSA TLV contains in 1/100 dB unit
1022 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
1023 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
1024 if (cval->dBmin > cval->dBmax) {
1025 /* something is wrong; assume it's either from/to 0dB */
1026 if (cval->dBmin < 0)
1028 else if (cval->dBmin > 0)
1030 if (cval->dBmin > cval->dBmax) {
1031 /* totally crap, return an error */
1039 #define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
1041 /* get a feature/mixer unit info */
1042 static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
1043 struct snd_ctl_elem_info *uinfo)
1045 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1047 if (cval->val_type == USB_MIXER_BOOLEAN ||
1048 cval->val_type == USB_MIXER_INV_BOOLEAN)
1049 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1051 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1052 uinfo->count = cval->channels;
1053 if (cval->val_type == USB_MIXER_BOOLEAN ||
1054 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1055 uinfo->value.integer.min = 0;
1056 uinfo->value.integer.max = 1;
1058 if (!cval->initialized) {
1059 get_min_max_with_quirks(cval, 0, kcontrol);
1060 if (cval->initialized && cval->dBmin >= cval->dBmax) {
1061 kcontrol->vd[0].access &=
1062 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1063 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK);
1064 snd_ctl_notify(cval->mixer->chip->card,
1065 SNDRV_CTL_EVENT_MASK_INFO,
1069 uinfo->value.integer.min = 0;
1070 uinfo->value.integer.max =
1071 (cval->max - cval->min + cval->res - 1) / cval->res;
1076 /* get the current value from feature/mixer unit */
1077 static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol,
1078 struct snd_ctl_elem_value *ucontrol)
1080 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1081 int c, cnt, val, err;
1083 ucontrol->value.integer.value[0] = cval->min;
1086 for (c = 0; c < MAX_CHANNELS; c++) {
1087 if (!(cval->cmask & (1 << c)))
1089 err = get_cur_mix_value(cval, c + 1, cnt, &val);
1091 return cval->mixer->ignore_ctl_error ? 0 : err;
1092 val = get_relative_value(cval, val);
1093 ucontrol->value.integer.value[cnt] = val;
1098 /* master channel */
1099 err = get_cur_mix_value(cval, 0, 0, &val);
1101 return cval->mixer->ignore_ctl_error ? 0 : err;
1102 val = get_relative_value(cval, val);
1103 ucontrol->value.integer.value[0] = val;
1108 /* put the current value to feature/mixer unit */
1109 static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
1110 struct snd_ctl_elem_value *ucontrol)
1112 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1113 int c, cnt, val, oval, err;
1118 for (c = 0; c < MAX_CHANNELS; c++) {
1119 if (!(cval->cmask & (1 << c)))
1121 err = get_cur_mix_value(cval, c + 1, cnt, &oval);
1123 return cval->mixer->ignore_ctl_error ? 0 : err;
1124 val = ucontrol->value.integer.value[cnt];
1125 val = get_abs_value(cval, val);
1127 set_cur_mix_value(cval, c + 1, cnt, val);
1133 /* master channel */
1134 err = get_cur_mix_value(cval, 0, 0, &oval);
1136 return cval->mixer->ignore_ctl_error ? 0 : err;
1137 val = ucontrol->value.integer.value[0];
1138 val = get_abs_value(cval, val);
1140 set_cur_mix_value(cval, 0, 0, val);
1147 static struct snd_kcontrol_new usb_feature_unit_ctl = {
1148 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1149 .name = "", /* will be filled later manually */
1150 .info = mixer_ctl_feature_info,
1151 .get = mixer_ctl_feature_get,
1152 .put = mixer_ctl_feature_put,
1155 /* the read-only variant */
1156 static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
1157 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1158 .name = "", /* will be filled later manually */
1159 .info = mixer_ctl_feature_info,
1160 .get = mixer_ctl_feature_get,
1165 * This symbol is exported in order to allow the mixer quirks to
1166 * hook up to the standard feature unit control mechanism
1168 struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl;
1171 * build a feature control
1173 static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
1175 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
1179 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1180 * rename it to "Headphone". We determine if something is a headphone
1181 * similar to how udev determines form factor.
1183 static void check_no_speaker_on_headset(struct snd_kcontrol *kctl,
1184 struct snd_card *card)
1186 const char *names_to_check[] = {
1187 "Headset", "headset", "Headphone", "headphone", NULL};
1191 if (strcmp("Speaker", kctl->id.name))
1194 for (s = names_to_check; *s; s++)
1195 if (strstr(card->shortname, *s)) {
1203 strlcpy(kctl->id.name, "Headphone", sizeof(kctl->id.name));
1206 static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
1207 unsigned int ctl_mask, int control,
1208 struct usb_audio_term *iterm, int unitid,
1211 struct uac_feature_unit_descriptor *desc = raw_desc;
1212 unsigned int len = 0;
1213 int mapped_name = 0;
1214 int nameid = uac_feature_unit_iFeature(desc);
1215 struct snd_kcontrol *kctl;
1216 struct usb_mixer_elem_info *cval;
1217 const struct usbmix_name_map *map;
1220 control++; /* change from zero-based to 1-based value */
1222 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
1223 /* FIXME: not supported yet */
1227 map = find_map(state, unitid, control);
1228 if (check_ignored_ctl(map))
1231 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1234 cval->mixer = state->mixer;
1236 cval->control = control;
1237 cval->cmask = ctl_mask;
1238 cval->val_type = audio_feature_info[control-1].type;
1239 if (ctl_mask == 0) {
1240 cval->channels = 1; /* master channel */
1241 cval->master_readonly = readonly_mask;
1244 for (i = 0; i < 16; i++)
1245 if (ctl_mask & (1 << i))
1248 cval->ch_readonly = readonly_mask;
1252 * If all channels in the mask are marked read-only, make the control
1253 * read-only. set_cur_mix_value() will check the mask again and won't
1254 * issue write commands to read-only channels.
1256 if (cval->channels == readonly_mask)
1257 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1259 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1262 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
1266 kctl->private_free = usb_mixer_elem_free;
1268 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
1269 mapped_name = len != 0;
1271 len = snd_usb_copy_string_desc(state, nameid,
1272 kctl->id.name, sizeof(kctl->id.name));
1278 * determine the control name. the rule is:
1279 * - if a name id is given in descriptor, use it.
1280 * - if the connected input can be determined, then use the name
1282 * - if the connected output can be determined, use it.
1283 * - otherwise, anonymous name.
1286 len = get_term_name(state, iterm, kctl->id.name,
1287 sizeof(kctl->id.name), 1);
1289 len = get_term_name(state, &state->oterm,
1291 sizeof(kctl->id.name), 1);
1293 len = snprintf(kctl->id.name,
1294 sizeof(kctl->id.name),
1295 "Feature %d", unitid);
1299 check_no_speaker_on_headset(kctl, state->mixer->chip->card);
1302 * determine the stream direction:
1303 * if the connected output is USB stream, then it's likely a
1304 * capture stream. otherwise it should be playback (hopefully :)
1306 if (!mapped_name && !(state->oterm.type >> 16)) {
1307 if ((state->oterm.type & 0xff00) == 0x0100)
1308 len = append_ctl_name(kctl, " Capture");
1310 len = append_ctl_name(kctl, " Playback");
1312 append_ctl_name(kctl, control == UAC_FU_MUTE ?
1313 " Switch" : " Volume");
1317 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1318 sizeof(kctl->id.name));
1322 /* get min/max values */
1323 get_min_max_with_quirks(cval, 0, kctl);
1325 if (control == UAC_FU_VOLUME) {
1326 check_mapped_dB(map, cval);
1327 if (cval->dBmin < cval->dBmax || !cval->initialized) {
1328 kctl->tlv.c = snd_usb_mixer_vol_tlv;
1329 kctl->vd[0].access |=
1330 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1331 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1335 range = (cval->max - cval->min) / cval->res;
1337 * Are there devices with volume range more than 255? I use a bit more
1338 * to be sure. 384 is a resolution magic number found on Logitech
1339 * devices. It will definitively catch all buggy Logitech devices.
1342 usb_audio_warn(state->chip,
1343 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
1345 usb_audio_warn(state->chip,
1346 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
1347 cval->id, kctl->id.name, cval->channels,
1348 cval->min, cval->max, cval->res);
1351 usb_audio_dbg(state->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1352 cval->id, kctl->id.name, cval->channels,
1353 cval->min, cval->max, cval->res);
1354 snd_usb_mixer_add_control(state->mixer, kctl);
1358 * parse a feature unit
1360 * most of controls are defined here.
1362 static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
1366 struct usb_audio_term iterm;
1367 unsigned int master_bits, first_ch_bits;
1369 struct uac_feature_unit_descriptor *hdr = _ftr;
1372 if (state->mixer->protocol == UAC_VERSION_1) {
1373 csize = hdr->bControlSize;
1375 usb_audio_dbg(state->chip,
1376 "unit %u: invalid bControlSize == 0\n",
1380 channels = (hdr->bLength - 7) / csize - 1;
1381 bmaControls = hdr->bmaControls;
1382 if (hdr->bLength < 7 + csize) {
1383 usb_audio_err(state->chip,
1384 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1389 struct uac2_feature_unit_descriptor *ftr = _ftr;
1391 channels = (hdr->bLength - 6) / 4 - 1;
1392 bmaControls = ftr->bmaControls;
1393 if (hdr->bLength < 6 + csize) {
1394 usb_audio_err(state->chip,
1395 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1401 /* parse the source unit */
1402 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
1405 /* determine the input source type and name */
1406 err = check_input_term(state, hdr->bSourceID, &iterm);
1410 master_bits = snd_usb_combine_bytes(bmaControls, csize);
1411 /* master configuration quirks */
1412 switch (state->chip->usb_id) {
1413 case USB_ID(0x08bb, 0x2702):
1414 usb_audio_info(state->chip,
1415 "usbmixer: master volume quirk for PCM2702 chip\n");
1416 /* disable non-functional volume control */
1417 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
1419 case USB_ID(0x1130, 0xf211):
1420 usb_audio_info(state->chip,
1421 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
1422 /* disable non-functional volume control */
1428 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
1432 if (state->mixer->protocol == UAC_VERSION_1) {
1433 /* check all control types */
1434 for (i = 0; i < 10; i++) {
1435 unsigned int ch_bits = 0;
1436 for (j = 0; j < channels; j++) {
1439 mask = snd_usb_combine_bytes(bmaControls +
1440 csize * (j+1), csize);
1441 if (mask & (1 << i))
1442 ch_bits |= (1 << j);
1444 /* audio class v1 controls are never read-only */
1447 * The first channel must be set
1448 * (for ease of programming).
1451 build_feature_ctl(state, _ftr, ch_bits, i,
1453 if (master_bits & (1 << i))
1454 build_feature_ctl(state, _ftr, 0, i, &iterm,
1457 } else { /* UAC_VERSION_2 */
1458 for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
1459 unsigned int ch_bits = 0;
1460 unsigned int ch_read_only = 0;
1462 for (j = 0; j < channels; j++) {
1465 mask = snd_usb_combine_bytes(bmaControls +
1466 csize * (j+1), csize);
1467 if (uac2_control_is_readable(mask, i)) {
1468 ch_bits |= (1 << j);
1469 if (!uac2_control_is_writeable(mask, i))
1470 ch_read_only |= (1 << j);
1475 * NOTE: build_feature_ctl() will mark the control
1476 * read-only if all channels are marked read-only in
1477 * the descriptors. Otherwise, the control will be
1478 * reported as writeable, but the driver will not
1479 * actually issue a write command for read-only
1484 * The first channel must be set
1485 * (for ease of programming).
1488 build_feature_ctl(state, _ftr, ch_bits, i,
1489 &iterm, unitid, ch_read_only);
1490 if (uac2_control_is_readable(master_bits, i))
1491 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
1492 !uac2_control_is_writeable(master_bits, i));
1504 * build a mixer unit control
1506 * the callbacks are identical with feature unit.
1507 * input channel number (zero based) is given in control field instead.
1509 static void build_mixer_unit_ctl(struct mixer_build *state,
1510 struct uac_mixer_unit_descriptor *desc,
1511 int in_pin, int in_ch, int unitid,
1512 struct usb_audio_term *iterm)
1514 struct usb_mixer_elem_info *cval;
1515 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
1516 unsigned int i, len;
1517 struct snd_kcontrol *kctl;
1518 const struct usbmix_name_map *map;
1520 map = find_map(state, unitid, 0);
1521 if (check_ignored_ctl(map))
1524 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1528 cval->mixer = state->mixer;
1530 cval->control = in_ch + 1; /* based on 1 */
1531 cval->val_type = USB_MIXER_S16;
1532 for (i = 0; i < num_outs; i++) {
1533 __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol);
1535 if (check_matrix_bitmap(c, in_ch, i, num_outs)) {
1536 cval->cmask |= (1 << i);
1541 /* get min/max values */
1542 get_min_max(cval, 0);
1544 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1546 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
1550 kctl->private_free = usb_mixer_elem_free;
1552 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
1554 len = get_term_name(state, iterm, kctl->id.name,
1555 sizeof(kctl->id.name), 0);
1557 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
1558 append_ctl_name(kctl, " Volume");
1560 usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n",
1561 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
1562 snd_usb_mixer_add_control(state->mixer, kctl);
1566 * parse a mixer unit
1568 static int parse_audio_mixer_unit(struct mixer_build *state, int unitid,
1571 struct uac_mixer_unit_descriptor *desc = raw_desc;
1572 struct usb_audio_term iterm;
1573 int input_pins, num_ins, num_outs;
1576 if (desc->bLength < 11 || !(input_pins = desc->bNrInPins) ||
1577 !(num_outs = uac_mixer_unit_bNrChannels(desc))) {
1578 usb_audio_err(state->chip,
1579 "invalid MIXER UNIT descriptor %d\n",
1583 /* no bmControls field (e.g. Maya44) -> ignore */
1584 if (desc->bLength <= 10 + input_pins) {
1585 usb_audio_dbg(state->chip, "MU %d has no bmControls field\n",
1592 for (pin = 0; pin < input_pins; pin++) {
1593 err = parse_audio_unit(state, desc->baSourceID[pin]);
1596 err = check_input_term(state, desc->baSourceID[pin], &iterm);
1599 num_ins += iterm.channels;
1600 for (; ich < num_ins; ich++) {
1601 int och, ich_has_controls = 0;
1603 for (och = 0; och < num_outs; och++) {
1604 __u8 *c = uac_mixer_unit_bmControls(desc,
1605 state->mixer->protocol);
1607 if (check_matrix_bitmap(c, ich, och, num_outs)) {
1608 ich_has_controls = 1;
1612 if (ich_has_controls)
1613 build_mixer_unit_ctl(state, desc, pin, ich,
1621 * Processing Unit / Extension Unit
1624 /* get callback for processing/extension unit */
1625 static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol,
1626 struct snd_ctl_elem_value *ucontrol)
1628 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1631 err = get_cur_ctl_value(cval, cval->control << 8, &val);
1632 if (err < 0 && cval->mixer->ignore_ctl_error) {
1633 ucontrol->value.integer.value[0] = cval->min;
1638 val = get_relative_value(cval, val);
1639 ucontrol->value.integer.value[0] = val;
1643 /* put callback for processing/extension unit */
1644 static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
1645 struct snd_ctl_elem_value *ucontrol)
1647 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1650 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1652 if (cval->mixer->ignore_ctl_error)
1656 val = ucontrol->value.integer.value[0];
1657 val = get_abs_value(cval, val);
1659 set_cur_ctl_value(cval, cval->control << 8, val);
1665 /* alsa control interface for processing/extension unit */
1666 static struct snd_kcontrol_new mixer_procunit_ctl = {
1667 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1668 .name = "", /* will be filled later */
1669 .info = mixer_ctl_feature_info,
1670 .get = mixer_ctl_procunit_get,
1671 .put = mixer_ctl_procunit_put,
1675 * predefined data for processing units
1677 struct procunit_value_info {
1684 struct procunit_info {
1687 struct procunit_value_info *values;
1690 static struct procunit_value_info updown_proc_info[] = {
1691 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1692 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
1695 static struct procunit_value_info prologic_proc_info[] = {
1696 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1697 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
1700 static struct procunit_value_info threed_enh_proc_info[] = {
1701 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1702 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
1705 static struct procunit_value_info reverb_proc_info[] = {
1706 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1707 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1708 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1709 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
1712 static struct procunit_value_info chorus_proc_info[] = {
1713 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1714 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1715 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1716 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
1719 static struct procunit_value_info dcr_proc_info[] = {
1720 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1721 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1722 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1723 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1724 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1725 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
1729 static struct procunit_info procunits[] = {
1730 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1731 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1732 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1733 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1734 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1735 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
1739 * predefined data for extension units
1741 static struct procunit_value_info clock_rate_xu_info[] = {
1742 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1745 static struct procunit_value_info clock_source_xu_info[] = {
1746 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1749 static struct procunit_value_info spdif_format_xu_info[] = {
1750 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1753 static struct procunit_value_info soft_limit_xu_info[] = {
1754 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1757 static struct procunit_info extunits[] = {
1758 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1759 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1760 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1761 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1766 * build a processing/extension unit
1768 static int build_audio_procunit(struct mixer_build *state, int unitid,
1769 void *raw_desc, struct procunit_info *list,
1772 struct uac_processing_unit_descriptor *desc = raw_desc;
1773 int num_ins = desc->bNrInPins;
1774 struct usb_mixer_elem_info *cval;
1775 struct snd_kcontrol *kctl;
1776 int i, err, nameid, type, len;
1777 struct procunit_info *info;
1778 struct procunit_value_info *valinfo;
1779 const struct usbmix_name_map *map;
1780 static struct procunit_value_info default_value_info[] = {
1781 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1784 static struct procunit_info default_info = {
1785 0, NULL, default_value_info
1788 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1789 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
1790 usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid);
1794 for (i = 0; i < num_ins; i++) {
1795 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
1799 type = le16_to_cpu(desc->wProcessType);
1800 for (info = list; info && info->type; info++)
1801 if (info->type == type)
1803 if (!info || !info->type)
1804 info = &default_info;
1806 for (valinfo = info->values; valinfo->control; valinfo++) {
1807 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
1809 if (!(controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
1811 map = find_map(state, unitid, valinfo->control);
1812 if (check_ignored_ctl(map))
1814 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1817 cval->mixer = state->mixer;
1819 cval->control = valinfo->control;
1820 cval->val_type = valinfo->val_type;
1823 /* get min/max values */
1824 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
1825 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
1826 /* FIXME: hard-coded */
1828 cval->max = control_spec[0];
1830 cval->initialized = 1;
1832 if (type == USB_XU_CLOCK_RATE) {
1834 * E-Mu USB 0404/0202/TrackerPre/0204
1835 * samplerate control quirk
1840 cval->initialized = 1;
1842 get_min_max(cval, valinfo->min_value);
1845 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
1850 kctl->private_free = usb_mixer_elem_free;
1852 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) {
1854 } else if (info->name) {
1855 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1857 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
1860 len = snd_usb_copy_string_desc(state, nameid,
1862 sizeof(kctl->id.name));
1864 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1866 append_ctl_name(kctl, " ");
1867 append_ctl_name(kctl, valinfo->suffix);
1869 usb_audio_dbg(state->chip,
1870 "[%d] PU [%s] ch = %d, val = %d/%d\n",
1871 cval->id, kctl->id.name, cval->channels,
1872 cval->min, cval->max);
1874 err = snd_usb_mixer_add_control(state->mixer, kctl);
1881 static int parse_audio_processing_unit(struct mixer_build *state, int unitid,
1884 return build_audio_procunit(state, unitid, raw_desc,
1885 procunits, "Processing Unit");
1888 static int parse_audio_extension_unit(struct mixer_build *state, int unitid,
1892 * Note that we parse extension units with processing unit descriptors.
1893 * That's ok as the layout is the same.
1895 return build_audio_procunit(state, unitid, raw_desc,
1896 extunits, "Extension Unit");
1904 * info callback for selector unit
1905 * use an enumerator type for routing
1907 static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol,
1908 struct snd_ctl_elem_info *uinfo)
1910 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1911 const char **itemlist = (const char **)kcontrol->private_value;
1913 if (snd_BUG_ON(!itemlist))
1915 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
1918 /* get callback for selector unit */
1919 static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol,
1920 struct snd_ctl_elem_value *ucontrol)
1922 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1925 err = get_cur_ctl_value(cval, cval->control << 8, &val);
1927 if (cval->mixer->ignore_ctl_error) {
1928 ucontrol->value.enumerated.item[0] = 0;
1933 val = get_relative_value(cval, val);
1934 ucontrol->value.enumerated.item[0] = val;
1938 /* put callback for selector unit */
1939 static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
1940 struct snd_ctl_elem_value *ucontrol)
1942 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1945 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1947 if (cval->mixer->ignore_ctl_error)
1951 val = ucontrol->value.enumerated.item[0];
1952 val = get_abs_value(cval, val);
1954 set_cur_ctl_value(cval, cval->control << 8, val);
1960 /* alsa control interface for selector unit */
1961 static struct snd_kcontrol_new mixer_selectunit_ctl = {
1962 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1963 .name = "", /* will be filled later */
1964 .info = mixer_ctl_selector_info,
1965 .get = mixer_ctl_selector_get,
1966 .put = mixer_ctl_selector_put,
1970 * private free callback.
1971 * free both private_data and private_value
1973 static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
1977 if (kctl->private_data) {
1978 struct usb_mixer_elem_info *cval = kctl->private_data;
1979 num_ins = cval->max;
1981 kctl->private_data = NULL;
1983 if (kctl->private_value) {
1984 char **itemlist = (char **)kctl->private_value;
1985 for (i = 0; i < num_ins; i++)
1988 kctl->private_value = 0;
1993 * parse a selector unit
1995 static int parse_audio_selector_unit(struct mixer_build *state, int unitid,
1998 struct uac_selector_unit_descriptor *desc = raw_desc;
1999 unsigned int i, nameid, len;
2001 struct usb_mixer_elem_info *cval;
2002 struct snd_kcontrol *kctl;
2003 const struct usbmix_name_map *map;
2006 if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
2007 usb_audio_err(state->chip,
2008 "invalid SELECTOR UNIT descriptor %d\n", unitid);
2012 for (i = 0; i < desc->bNrInPins; i++) {
2013 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
2017 if (desc->bNrInPins == 1) /* only one ? nonsense! */
2020 map = find_map(state, unitid, 0);
2021 if (check_ignored_ctl(map))
2024 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
2027 cval->mixer = state->mixer;
2029 cval->val_type = USB_MIXER_U8;
2032 cval->max = desc->bNrInPins;
2034 cval->initialized = 1;
2036 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2037 cval->control = UAC2_CX_CLOCK_SELECTOR;
2041 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
2046 #define MAX_ITEM_NAME_LEN 64
2047 for (i = 0; i < desc->bNrInPins; i++) {
2048 struct usb_audio_term iterm;
2050 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
2058 len = check_mapped_selector_name(state, unitid, i, namelist[i],
2060 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
2061 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
2063 sprintf(namelist[i], "Input %u", i);
2066 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
2068 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
2073 kctl->private_value = (unsigned long)namelist;
2074 kctl->private_free = usb_mixer_selector_elem_free;
2076 nameid = uac_selector_unit_iSelector(desc);
2077 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
2081 snd_usb_copy_string_desc(state, nameid, kctl->id.name,
2082 sizeof(kctl->id.name));
2084 len = get_term_name(state, &state->oterm,
2085 kctl->id.name, sizeof(kctl->id.name), 0);
2087 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
2089 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2090 append_ctl_name(kctl, " Clock Source");
2091 else if ((state->oterm.type & 0xff00) == 0x0100)
2092 append_ctl_name(kctl, " Capture Source");
2094 append_ctl_name(kctl, " Playback Source");
2097 usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n",
2098 cval->id, kctl->id.name, desc->bNrInPins);
2099 if ((err = snd_usb_mixer_add_control(state->mixer, kctl)) < 0)
2106 * parse an audio unit recursively
2109 static int parse_audio_unit(struct mixer_build *state, int unitid)
2113 if (test_and_set_bit(unitid, state->unitbitmap))
2114 return 0; /* the unit already visited */
2116 p1 = find_audio_control_unit(state, unitid);
2118 usb_audio_err(state->chip, "unit %d not found!\n", unitid);
2123 case UAC_INPUT_TERMINAL:
2124 case UAC2_CLOCK_SOURCE:
2126 case UAC_MIXER_UNIT:
2127 return parse_audio_mixer_unit(state, unitid, p1);
2128 case UAC_SELECTOR_UNIT:
2129 case UAC2_CLOCK_SELECTOR:
2130 return parse_audio_selector_unit(state, unitid, p1);
2131 case UAC_FEATURE_UNIT:
2132 return parse_audio_feature_unit(state, unitid, p1);
2133 case UAC1_PROCESSING_UNIT:
2134 /* UAC2_EFFECT_UNIT has the same value */
2135 if (state->mixer->protocol == UAC_VERSION_1)
2136 return parse_audio_processing_unit(state, unitid, p1);
2138 return 0; /* FIXME - effect units not implemented yet */
2139 case UAC1_EXTENSION_UNIT:
2140 /* UAC2_PROCESSING_UNIT_V2 has the same value */
2141 if (state->mixer->protocol == UAC_VERSION_1)
2142 return parse_audio_extension_unit(state, unitid, p1);
2143 else /* UAC_VERSION_2 */
2144 return parse_audio_processing_unit(state, unitid, p1);
2145 case UAC2_EXTENSION_UNIT_V2:
2146 return parse_audio_extension_unit(state, unitid, p1);
2148 usb_audio_err(state->chip,
2149 "unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
2154 static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
2156 kfree(mixer->id_elems);
2158 kfree(mixer->urb->transfer_buffer);
2159 usb_free_urb(mixer->urb);
2161 usb_free_urb(mixer->rc_urb);
2162 kfree(mixer->rc_setup_packet);
2166 static int snd_usb_mixer_dev_free(struct snd_device *device)
2168 struct usb_mixer_interface *mixer = device->device_data;
2169 snd_usb_mixer_free(mixer);
2174 * create mixer controls
2176 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
2178 static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
2180 struct mixer_build state;
2182 const struct usbmix_ctl_map *map;
2185 memset(&state, 0, sizeof(state));
2186 state.chip = mixer->chip;
2187 state.mixer = mixer;
2188 state.buffer = mixer->hostif->extra;
2189 state.buflen = mixer->hostif->extralen;
2191 /* check the mapping table */
2192 for (map = usbmix_ctl_maps; map->id; map++) {
2193 if (map->id == state.chip->usb_id) {
2194 state.map = map->map;
2195 state.selector_map = map->selector_map;
2196 mixer->ignore_ctl_error = map->ignore_ctl_error;
2202 while ((p = snd_usb_find_csint_desc(mixer->hostif->extra,
2203 mixer->hostif->extralen,
2204 p, UAC_OUTPUT_TERMINAL)) != NULL) {
2205 if (mixer->protocol == UAC_VERSION_1) {
2206 struct uac1_output_terminal_descriptor *desc = p;
2208 if (desc->bLength < sizeof(*desc))
2209 continue; /* invalid descriptor? */
2210 /* mark terminal ID as visited */
2211 set_bit(desc->bTerminalID, state.unitbitmap);
2212 state.oterm.id = desc->bTerminalID;
2213 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2214 state.oterm.name = desc->iTerminal;
2215 err = parse_audio_unit(&state, desc->bSourceID);
2216 if (err < 0 && err != -EINVAL)
2218 } else { /* UAC_VERSION_2 */
2219 struct uac2_output_terminal_descriptor *desc = p;
2221 if (desc->bLength < sizeof(*desc))
2222 continue; /* invalid descriptor? */
2223 /* mark terminal ID as visited */
2224 set_bit(desc->bTerminalID, state.unitbitmap);
2225 state.oterm.id = desc->bTerminalID;
2226 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2227 state.oterm.name = desc->iTerminal;
2228 err = parse_audio_unit(&state, desc->bSourceID);
2229 if (err < 0 && err != -EINVAL)
2233 * For UAC2, use the same approach to also add the
2236 err = parse_audio_unit(&state, desc->bCSourceID);
2237 if (err < 0 && err != -EINVAL)
2245 void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
2247 struct usb_mixer_elem_info *info;
2249 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
2250 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2254 static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
2256 struct usb_mixer_elem_info *cval)
2258 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
2259 "S8", "U8", "S16", "U16"};
2260 snd_iprintf(buffer, " Unit: %i\n", unitid);
2262 snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
2263 cval->elem_id->name, cval->elem_id->index);
2264 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
2265 "channels=%i, type=\"%s\"\n", cval->id,
2266 cval->control, cval->cmask, cval->channels,
2267 val_types[cval->val_type]);
2268 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
2269 cval->min, cval->max, cval->dBmin, cval->dBmax);
2272 static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
2273 struct snd_info_buffer *buffer)
2275 struct snd_usb_audio *chip = entry->private_data;
2276 struct usb_mixer_interface *mixer;
2277 struct usb_mixer_elem_info *cval;
2280 list_for_each_entry(mixer, &chip->mixer_list, list) {
2282 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
2283 chip->usb_id, snd_usb_ctrl_intf(chip),
2284 mixer->ignore_ctl_error);
2285 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
2286 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
2287 for (cval = mixer->id_elems[unitid]; cval;
2288 cval = cval->next_id_elem)
2289 snd_usb_mixer_dump_cval(buffer, unitid, cval);
2294 static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
2295 int attribute, int value, int index)
2297 struct usb_mixer_elem_info *info;
2298 __u8 unitid = (index >> 8) & 0xff;
2299 __u8 control = (value >> 8) & 0xff;
2300 __u8 channel = value & 0xff;
2302 if (channel >= MAX_CHANNELS) {
2303 usb_audio_dbg(mixer->chip,
2304 "%s(): bogus channel number %d\n",
2309 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem) {
2310 if (info->control != control)
2313 switch (attribute) {
2315 /* invalidate cache, so the value is read from the device */
2317 info->cached &= ~(1 << channel);
2318 else /* master channel */
2321 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2334 usb_audio_dbg(mixer->chip,
2335 "unknown attribute %d in interrupt\n",
2342 static void snd_usb_mixer_interrupt(struct urb *urb)
2344 struct usb_mixer_interface *mixer = urb->context;
2345 int len = urb->actual_length;
2346 int ustatus = urb->status;
2351 if (mixer->protocol == UAC_VERSION_1) {
2352 struct uac1_status_word *status;
2354 for (status = urb->transfer_buffer;
2355 len >= sizeof(*status);
2356 len -= sizeof(*status), status++) {
2357 dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n",
2358 status->bStatusType,
2359 status->bOriginator);
2361 /* ignore any notifications not from the control interface */
2362 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2363 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
2366 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2367 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
2369 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2371 } else { /* UAC_VERSION_2 */
2372 struct uac2_interrupt_data_msg *msg;
2374 for (msg = urb->transfer_buffer;
2375 len >= sizeof(*msg);
2376 len -= sizeof(*msg), msg++) {
2377 /* drop vendor specific and endpoint requests */
2378 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2379 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2382 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2383 le16_to_cpu(msg->wValue),
2384 le16_to_cpu(msg->wIndex));
2389 if (ustatus != -ENOENT &&
2390 ustatus != -ECONNRESET &&
2391 ustatus != -ESHUTDOWN) {
2392 urb->dev = mixer->chip->dev;
2393 usb_submit_urb(urb, GFP_ATOMIC);
2397 /* create the handler for the optional status interrupt endpoint */
2398 static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2400 struct usb_endpoint_descriptor *ep;
2401 void *transfer_buffer;
2405 /* we need one interrupt input endpoint */
2406 if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
2408 ep = get_endpoint(mixer->hostif, 0);
2409 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
2412 epnum = usb_endpoint_num(ep);
2413 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2414 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2415 if (!transfer_buffer)
2417 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2419 kfree(transfer_buffer);
2422 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2423 usb_rcvintpipe(mixer->chip->dev, epnum),
2424 transfer_buffer, buffer_length,
2425 snd_usb_mixer_interrupt, mixer, ep->bInterval);
2426 usb_submit_urb(mixer->urb, GFP_KERNEL);
2430 int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2433 static struct snd_device_ops dev_ops = {
2434 .dev_free = snd_usb_mixer_dev_free
2436 struct usb_mixer_interface *mixer;
2437 struct snd_info_entry *entry;
2440 strcpy(chip->card->mixername, "USB Mixer");
2442 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
2446 mixer->ignore_ctl_error = ignore_error;
2447 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2449 if (!mixer->id_elems) {
2454 mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
2455 switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
2458 mixer->protocol = UAC_VERSION_1;
2461 mixer->protocol = UAC_VERSION_2;
2465 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
2466 (err = snd_usb_mixer_status_create(mixer)) < 0)
2469 snd_usb_mixer_apply_create_quirk(mixer);
2471 err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops);
2475 if (list_empty(&chip->mixer_list) &&
2476 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2477 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2479 list_add(&mixer->list, &chip->mixer_list);
2483 snd_usb_mixer_free(mixer);
2487 void snd_usb_mixer_disconnect(struct list_head *p)
2489 struct usb_mixer_interface *mixer;
2491 mixer = list_entry(p, struct usb_mixer_interface, list);
2492 usb_kill_urb(mixer->urb);
2493 usb_kill_urb(mixer->rc_urb);
2497 /* stop any bus activity of a mixer */
2498 static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
2500 usb_kill_urb(mixer->urb);
2501 usb_kill_urb(mixer->rc_urb);
2504 static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
2509 err = usb_submit_urb(mixer->urb, GFP_NOIO);
2517 int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer)
2519 snd_usb_mixer_inactivate(mixer);
2523 static int restore_mixer_value(struct usb_mixer_elem_info *cval)
2529 for (c = 0; c < MAX_CHANNELS; c++) {
2530 if (!(cval->cmask & (1 << c)))
2532 if (cval->cached & (1 << c)) {
2533 err = set_cur_mix_value(cval, c + 1, idx,
2534 cval->cache_val[idx]);
2543 err = set_cur_mix_value(cval, 0, 0, *cval->cache_val);
2552 int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume)
2554 struct usb_mixer_elem_info *cval;
2557 /* FIXME: any mixer quirks? */
2560 /* restore cached mixer values */
2561 for (id = 0; id < MAX_ID_ELEMS; id++) {
2562 for (cval = mixer->id_elems[id]; cval;
2563 cval = cval->next_id_elem) {
2564 err = restore_mixer_value(cval);
2571 return snd_usb_mixer_activate(mixer);