blob: 64fa1bbf0acb3e3287daaf76c18ea3d480154863 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Mixer control part
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
11 *
12 *
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.
17 *
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.
22 *
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
26 *
27 */
28
Daniel Mack157a57b2010-06-16 17:57:30 +020029/*
30 * TODOs, for both the mixer and the streaming interfaces:
31 *
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
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/bitops.h>
46#include <linux/init.h>
47#include <linux/list.h>
Daniel Mackcddaafb2016-04-09 11:21:46 +020048#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/slab.h>
50#include <linux/string.h>
51#include <linux/usb.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010052#include <linux/usb/audio.h>
Daniel Mack23caaf12010-03-11 21:13:25 +010053#include <linux/usb/audio-v2.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <sound/core.h>
56#include <sound/control.h>
Clemens Ladischb259b102005-04-29 16:29:28 +020057#include <sound/hwdep.h>
Clemens Ladischaafad562005-05-10 14:47:38 +020058#include <sound/info.h>
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +020059#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#include "usbaudio.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010062#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010063#include "helper.h"
Daniel Mack7b1eda22010-03-11 21:13:22 +010064#include "mixer_quirks.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010065#include "power.h"
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +020066
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +010067#define MAX_ID_ELEMS 256
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069struct usb_audio_term {
70 int id;
71 int type;
72 int channels;
73 unsigned int chconfig;
74 int name;
75};
76
77struct usbmix_name_map;
78
Takashi Iwai86e07d32005-11-17 15:08:02 +010079struct mixer_build {
80 struct snd_usb_audio *chip;
Clemens Ladisch84957a82005-04-29 16:23:13 +020081 struct usb_mixer_interface *mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 unsigned char *buffer;
83 unsigned int buflen;
Jaroslav Kysela291186e2010-02-16 11:55:18 +010084 DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
Hui Peng2bac3a32019-08-15 00:31:34 -040085 DECLARE_BITMAP(termbitmap, MAX_ID_ELEMS);
Takashi Iwai86e07d32005-11-17 15:08:02 +010086 struct usb_audio_term oterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 const struct usbmix_name_map *map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +020088 const struct usbmix_selector_map *selector_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
Joseph Teichman1cdfa9f2011-02-08 01:22:36 -050091/*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -080092enum {
93 USB_XU_CLOCK_RATE = 0xe301,
94 USB_XU_CLOCK_SOURCE = 0xe302,
95 USB_XU_DIGITAL_IO_STATUS = 0xe303,
96 USB_XU_DEVICE_OPTIONS = 0xe304,
97 USB_XU_DIRECT_MONITORING = 0xe305,
98 USB_XU_METERING = 0xe306
99};
100enum {
101 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
102 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
103 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
104 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
105};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107/*
108 * manual mapping of mixer names
109 * if the mixer topology is too complicated and the parsed names are
110 * ambiguous, add the entries in usbmixer_maps.c.
111 */
Daniel Mackf0b5e632010-03-11 21:13:23 +0100112#include "mixer_maps.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100114static const struct usbmix_name_map *
115find_map(struct mixer_build *state, int unitid, int control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100117 const struct usbmix_name_map *p = state->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100119 if (!p)
120 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 for (p = state->map; p->id; p++) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100123 if (p->id == unitid &&
124 (!control || !p->control || control == p->control))
125 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100127 return NULL;
128}
129
130/* get the mapped name if the unit matches */
131static int
132check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
133{
134 if (!p || !p->name)
135 return 0;
136
137 buflen--;
138 return strlcpy(buf, p->name, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Takashi Iwai5aeee342014-11-18 11:02:14 +0100141/* ignore the error value if ignore_ctl_error flag is set */
142#define filter_error(cval, err) \
Takashi Iwai3360b842014-11-18 11:47:04 +0100143 ((cval)->head.mixer->ignore_ctl_error ? 0 : (err))
Takashi Iwai5aeee342014-11-18 11:02:14 +0100144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* check whether the control should be ignored */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100146static inline int
147check_ignored_ctl(const struct usbmix_name_map *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100149 if (!p || p->name || p->dB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return 0;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100151 return 1;
152}
153
154/* dB mapping */
155static inline void check_mapped_dB(const struct usbmix_name_map *p,
156 struct usb_mixer_elem_info *cval)
157{
158 if (p && p->dB) {
159 cval->dBmin = p->dB->min;
160 cval->dBmax = p->dB->max;
Takashi Iwai38b65192011-08-19 07:55:10 +0200161 cval->initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200165/* get the mapped selector source name */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100166static int check_mapped_selector_name(struct mixer_build *state, int unitid,
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200167 int index, char *buf, int buflen)
168{
169 const struct usbmix_selector_map *p;
170
Daniel Mack6bc170e2014-05-24 10:58:16 +0200171 if (!state->selector_map)
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200172 return 0;
173 for (p = state->selector_map; p->id; p++) {
174 if (p->id == unitid && index < p->count)
175 return strlcpy(buf, p->names[index], buflen);
176 }
177 return 0;
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*
181 * find an audio control unit with the given unit id
182 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200183static void *find_audio_control_unit(struct mixer_build *state,
184 unsigned char unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Daniel Mack67e1daa2010-05-31 13:35:43 +0200186 /* we just parse the header */
187 struct uac_feature_unit_descriptor *hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Daniel Mack67e1daa2010-05-31 13:35:43 +0200189 while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
190 USB_DT_CS_INTERFACE)) != NULL) {
191 if (hdr->bLength >= 4 &&
192 hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
193 hdr->bDescriptorSubtype <= UAC2_SAMPLE_RATE_CONVERTER &&
194 hdr->bUnitID == unit)
195 return hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Daniel Mack67e1daa2010-05-31 13:35:43 +0200197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return NULL;
199}
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/*
202 * copy a string with the given id
203 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200204static int snd_usb_copy_string_desc(struct mixer_build *state,
205 int index, char *buf, int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
Jaejoong Kimc40457c2017-12-04 15:31:48 +0900208
209 if (len < 0)
210 return 0;
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 buf[len] = 0;
213 return len;
214}
215
216/*
217 * convert from the byte/word on usb descriptor to the zero-based integer
218 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100219static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 switch (cval->val_type) {
222 case USB_MIXER_BOOLEAN:
223 return !!val;
224 case USB_MIXER_INV_BOOLEAN:
225 return !val;
226 case USB_MIXER_U8:
227 val &= 0xff;
228 break;
229 case USB_MIXER_S8:
230 val &= 0xff;
231 if (val >= 0x80)
232 val -= 0x100;
233 break;
234 case USB_MIXER_U16:
235 val &= 0xffff;
236 break;
237 case USB_MIXER_S16:
238 val &= 0xffff;
239 if (val >= 0x8000)
240 val -= 0x10000;
241 break;
242 }
243 return val;
244}
245
246/*
247 * convert from the zero-based int to the byte/word for usb descriptor
248 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100249static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 switch (cval->val_type) {
252 case USB_MIXER_BOOLEAN:
253 return !!val;
254 case USB_MIXER_INV_BOOLEAN:
255 return !val;
256 case USB_MIXER_S8:
257 case USB_MIXER_U8:
258 return val & 0xff;
259 case USB_MIXER_S16:
260 case USB_MIXER_U16:
261 return val & 0xffff;
262 }
263 return 0; /* not reached */
264}
265
Takashi Iwai86e07d32005-11-17 15:08:02 +0100266static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Daniel Mack6bc170e2014-05-24 10:58:16 +0200268 if (!cval->res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 cval->res = 1;
270 if (val < cval->min)
271 return 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200272 else if (val >= cval->max)
273 return (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 else
275 return (val - cval->min) / cval->res;
276}
277
Takashi Iwai86e07d32005-11-17 15:08:02 +0100278static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 if (val < 0)
281 return cval->min;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200282 if (!cval->res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 cval->res = 1;
284 val *= cval->res;
285 val += cval->min;
286 if (val > cval->max)
287 return cval->max;
288 return val;
289}
290
Julian Scheelbc18e312015-08-14 16:14:45 +0200291static int uac2_ctl_value_size(int val_type)
292{
293 switch (val_type) {
294 case USB_MIXER_S32:
295 case USB_MIXER_U32:
296 return 4;
297 case USB_MIXER_S16:
298 case USB_MIXER_U16:
299 return 2;
300 default:
301 return 1;
302 }
303 return 0; /* unreachable */
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307/*
308 * retrieve a mixer value
309 */
310
Daniel Mack6bc170e2014-05-24 10:58:16 +0200311static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request,
312 int validx, int *value_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Takashi Iwai3360b842014-11-18 11:47:04 +0100314 struct snd_usb_audio *chip = cval->head.mixer->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 unsigned char buf[2];
316 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
317 int timeout = 10;
Takashi Iwai978520b2012-10-12 15:12:55 +0200318 int idx = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Takashi Iwai47ab1542015-08-25 16:09:00 +0200320 err = snd_usb_lock_shutdown(chip);
Oliver Neukum88a85162011-03-11 14:51:12 +0100321 if (err < 0)
322 return -EIO;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 while (timeout-- > 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100325 idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8);
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200326 if (snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Takashi Iwai978520b2012-10-12 15:12:55 +0200328 validx, idx, buf, val_len) >= val_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
Takashi Iwai978520b2012-10-12 15:12:55 +0200330 err = 0;
331 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100334 usb_audio_dbg(chip,
335 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
336 request, validx, idx, cval->val_type);
Takashi Iwai978520b2012-10-12 15:12:55 +0200337 err = -EINVAL;
338
339 out:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200340 snd_usb_unlock_shutdown(chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200341 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Daniel Mack6bc170e2014-05-24 10:58:16 +0200344static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request,
345 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100346{
Takashi Iwai3360b842014-11-18 11:47:04 +0100347 struct snd_usb_audio *chip = cval->head.mixer->chip;
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100348 /* enough space for one range */
349 unsigned char buf[sizeof(__u16) + 3 * sizeof(__u32)];
Daniel Mack23caaf12010-03-11 21:13:25 +0100350 unsigned char *val;
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100351 int idx = 0, ret, val_size, size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100352 __u8 bRequest;
353
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100354 val_size = uac2_ctl_value_size(cval->val_type);
355
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200356 if (request == UAC_GET_CUR) {
357 bRequest = UAC2_CS_CUR;
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100358 size = val_size;
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200359 } else {
360 bRequest = UAC2_CS_RANGE;
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100361 size = sizeof(__u16) + 3 * val_size;
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200362 }
363
364 memset(buf, 0, sizeof(buf));
Daniel Mack23caaf12010-03-11 21:13:25 +0100365
Takashi Iwai47ab1542015-08-25 16:09:00 +0200366 ret = snd_usb_lock_shutdown(chip) ? -EIO : 0;
Oliver Neukum88a85162011-03-11 14:51:12 +0100367 if (ret)
368 goto error;
369
Takashi Iwai47ab1542015-08-25 16:09:00 +0200370 idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8);
371 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
Daniel Mack23caaf12010-03-11 21:13:25 +0100372 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Takashi Iwai978520b2012-10-12 15:12:55 +0200373 validx, idx, buf, size);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200374 snd_usb_unlock_shutdown(chip);
Daniel Mack23caaf12010-03-11 21:13:25 +0100375
376 if (ret < 0) {
Oliver Neukum88a85162011-03-11 14:51:12 +0100377error:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100378 usb_audio_err(chip,
379 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
380 request, validx, idx, cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100381 return ret;
382 }
383
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200384 /* FIXME: how should we handle multiple triplets here? */
385
Daniel Mack23caaf12010-03-11 21:13:25 +0100386 switch (request) {
387 case UAC_GET_CUR:
388 val = buf;
389 break;
390 case UAC_GET_MIN:
391 val = buf + sizeof(__u16);
392 break;
393 case UAC_GET_MAX:
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100394 val = buf + sizeof(__u16) + val_size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100395 break;
396 case UAC_GET_RES:
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100397 val = buf + sizeof(__u16) + val_size * 2;
Daniel Mack23caaf12010-03-11 21:13:25 +0100398 break;
399 default:
400 return -EINVAL;
401 }
402
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100403 *value_ret = convert_signed_value(cval,
404 snd_usb_combine_bytes(val, val_size));
Daniel Mack23caaf12010-03-11 21:13:25 +0100405
406 return 0;
407}
408
Daniel Mack6bc170e2014-05-24 10:58:16 +0200409static int get_ctl_value(struct usb_mixer_elem_info *cval, int request,
410 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100411{
Eldad Zack9f814102012-11-28 23:55:35 +0100412 validx += cval->idx_off;
413
Takashi Iwai3360b842014-11-18 11:47:04 +0100414 return (cval->head.mixer->protocol == UAC_VERSION_1) ?
Daniel Mack23caaf12010-03-11 21:13:25 +0100415 get_ctl_value_v1(cval, request, validx, value_ret) :
416 get_ctl_value_v2(cval, request, validx, value_ret);
417}
418
Daniel Mack6bc170e2014-05-24 10:58:16 +0200419static int get_cur_ctl_value(struct usb_mixer_elem_info *cval,
420 int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100422 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
425/* channel = 0: master, 1 = first channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100426static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
427 int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Daniel Mack6bc170e2014-05-24 10:58:16 +0200429 return get_ctl_value(cval, UAC_GET_CUR,
430 (cval->control << 8) | channel,
431 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Chris J Argeseef90452014-11-12 12:07:01 -0600434int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info *cval,
Takashi Iwai641b4872009-01-15 17:05:24 +0100435 int channel, int index, int *value)
436{
437 int err;
438
439 if (cval->cached & (1 << channel)) {
440 *value = cval->cache_val[index];
441 return 0;
442 }
443 err = get_cur_mix_raw(cval, channel, value);
444 if (err < 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100445 if (!cval->head.mixer->ignore_ctl_error)
446 usb_audio_dbg(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100447 "cannot get current value for control %d ch %d: err = %d\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200448 cval->control, channel, err);
Takashi Iwai641b4872009-01-15 17:05:24 +0100449 return err;
450 }
451 cval->cached |= 1 << channel;
452 cval->cache_val[index] = *value;
453 return 0;
454}
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/*
457 * set a mixer value
458 */
459
Daniel Mack7b1eda22010-03-11 21:13:22 +0100460int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
461 int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Takashi Iwai3360b842014-11-18 11:47:04 +0100463 struct snd_usb_audio *chip = cval->head.mixer->chip;
Julian Scheelbc18e312015-08-14 16:14:45 +0200464 unsigned char buf[4];
Takashi Iwai978520b2012-10-12 15:12:55 +0200465 int idx = 0, val_len, err, timeout = 10;
Daniel Mack23caaf12010-03-11 21:13:25 +0100466
Eldad Zack9f814102012-11-28 23:55:35 +0100467 validx += cval->idx_off;
468
Takashi Iwai3360b842014-11-18 11:47:04 +0100469 if (cval->head.mixer->protocol == UAC_VERSION_1) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100470 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
471 } else { /* UAC_VERSION_2 */
Julian Scheelbc18e312015-08-14 16:14:45 +0200472 val_len = uac2_ctl_value_size(cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100473
474 /* FIXME */
475 if (request != UAC_SET_CUR) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100476 usb_audio_dbg(chip, "RANGE setting not yet supported\n");
Daniel Mack23caaf12010-03-11 21:13:25 +0100477 return -EINVAL;
478 }
479
480 request = UAC2_CS_CUR;
481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 value_set = convert_bytes_value(cval, value_set);
484 buf[0] = value_set & 0xff;
485 buf[1] = (value_set >> 8) & 0xff;
Julian Scheelbc18e312015-08-14 16:14:45 +0200486 buf[2] = (value_set >> 16) & 0xff;
487 buf[3] = (value_set >> 24) & 0xff;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200488
489 err = snd_usb_lock_shutdown(chip);
Oliver Neukum88a85162011-03-11 14:51:12 +0100490 if (err < 0)
491 return -EIO;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200492
Takashi Iwai978520b2012-10-12 15:12:55 +0200493 while (timeout-- > 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100494 idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8);
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200495 if (snd_usb_ctl_msg(chip->dev,
496 usb_sndctrlpipe(chip->dev, 0), request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
Takashi Iwai978520b2012-10-12 15:12:55 +0200498 validx, idx, buf, val_len) >= 0) {
499 err = 0;
500 goto out;
Oliver Neukum88a85162011-03-11 14:51:12 +0100501 }
Takashi Iwai978520b2012-10-12 15:12:55 +0200502 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100503 usb_audio_dbg(chip, "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200504 request, validx, idx, cval->val_type, buf[0], buf[1]);
Takashi Iwai978520b2012-10-12 15:12:55 +0200505 err = -EINVAL;
506
507 out:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200508 snd_usb_unlock_shutdown(chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200509 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Daniel Mack6bc170e2014-05-24 10:58:16 +0200512static int set_cur_ctl_value(struct usb_mixer_elem_info *cval,
513 int validx, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Daniel Mack7b1eda22010-03-11 21:13:22 +0100515 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Chris J Argeseef90452014-11-12 12:07:01 -0600518int snd_usb_set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
Takashi Iwai641b4872009-01-15 17:05:24 +0100519 int index, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Takashi Iwai641b4872009-01-15 17:05:24 +0100521 int err;
Daniel Macka6a33252010-05-31 13:35:37 +0200522 unsigned int read_only = (channel == 0) ?
523 cval->master_readonly :
524 cval->ch_readonly & (1 << (channel - 1));
525
526 if (read_only) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100527 usb_audio_dbg(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100528 "%s(): channel %d of control %d is read_only\n",
Daniel Macka6a33252010-05-31 13:35:37 +0200529 __func__, channel, cval->control);
530 return 0;
531 }
532
Daniel Mack6bc170e2014-05-24 10:58:16 +0200533 err = snd_usb_mixer_set_ctl_value(cval,
534 UAC_SET_CUR, (cval->control << 8) | channel,
535 value);
Takashi Iwai641b4872009-01-15 17:05:24 +0100536 if (err < 0)
537 return err;
538 cval->cached |= 1 << channel;
539 cval->cache_val[index] = value;
540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200543/*
544 * TLV callback for mixer volume controls
545 */
Felix Homann285de9c2012-04-23 20:24:24 +0200546int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200547 unsigned int size, unsigned int __user *_tlv)
548{
549 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Takashi Iwaib8e1c732009-06-16 14:04:37 +0200550 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200551
552 if (size < sizeof(scale))
553 return -ENOMEM;
Takashi Iwaid3e6e592017-08-16 14:18:37 +0200554 if (cval->min_mute)
555 scale[0] = SNDRV_CTL_TLVT_DB_MINMAX_MUTE;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100556 scale[2] = cval->dBmin;
557 scale[3] = cval->dBmax;
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200558 if (copy_to_user(_tlv, scale, sizeof(scale)))
559 return -EFAULT;
560 return 0;
561}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563/*
564 * parser routines begin here...
565 */
566
Takashi Iwai86e07d32005-11-17 15:08:02 +0100567static int parse_audio_unit(struct mixer_build *state, int unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569
570/*
571 * check if the input/output channel routing is enabled on the given bitmap.
572 * used for mixer unit parser
573 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200574static int check_matrix_bitmap(unsigned char *bmap,
575 int ich, int och, int num_outs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 int idx = ich * num_outs + och;
578 return bmap[idx >> 3] & (0x80 >> (idx & 7));
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/*
582 * add an alsa control element
583 * search and increment the index until an empty slot is found.
584 *
585 * if failed, give up and free the control instance.
586 */
587
Takashi Iwai3360b842014-11-18 11:47:04 +0100588int snd_usb_mixer_add_control(struct usb_mixer_elem_list *list,
Daniel Mackef9d5972011-05-25 09:09:00 +0200589 struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Takashi Iwai3360b842014-11-18 11:47:04 +0100591 struct usb_mixer_interface *mixer = list->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200593
Daniel Mackef9d5972011-05-25 09:09:00 +0200594 while (snd_ctl_find_id(mixer->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 kctl->id.index++;
Daniel Mackef9d5972011-05-25 09:09:00 +0200596 if ((err = snd_ctl_add(mixer->chip->card, kctl)) < 0) {
Daniel Mack6bc170e2014-05-24 10:58:16 +0200597 usb_audio_dbg(mixer->chip, "cannot add control (err = %d)\n",
598 err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200599 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Takashi Iwai3360b842014-11-18 11:47:04 +0100601 list->kctl = kctl;
602 list->next_id_elem = mixer->id_elems[list->id];
603 mixer->id_elems[list->id] = list;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200604 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607/*
608 * get a terminal name string
609 */
610
611static struct iterm_name_combo {
612 int type;
613 char *name;
614} iterm_names[] = {
615 { 0x0300, "Output" },
616 { 0x0301, "Speaker" },
617 { 0x0302, "Headphone" },
618 { 0x0303, "HMD Audio" },
619 { 0x0304, "Desktop Speaker" },
620 { 0x0305, "Room Speaker" },
621 { 0x0306, "Com Speaker" },
622 { 0x0307, "LFE" },
623 { 0x0600, "External In" },
624 { 0x0601, "Analog In" },
625 { 0x0602, "Digital In" },
626 { 0x0603, "Line" },
627 { 0x0604, "Legacy In" },
628 { 0x0605, "IEC958 In" },
629 { 0x0606, "1394 DA Stream" },
630 { 0x0607, "1394 DV Stream" },
631 { 0x0700, "Embedded" },
632 { 0x0701, "Noise Source" },
633 { 0x0702, "Equalization Noise" },
634 { 0x0703, "CD" },
635 { 0x0704, "DAT" },
636 { 0x0705, "DCC" },
637 { 0x0706, "MiniDisk" },
638 { 0x0707, "Analog Tape" },
639 { 0x0708, "Phonograph" },
640 { 0x0709, "VCR Audio" },
641 { 0x070a, "Video Disk Audio" },
642 { 0x070b, "DVD Audio" },
643 { 0x070c, "TV Tuner Audio" },
644 { 0x070d, "Satellite Rec Audio" },
645 { 0x070e, "Cable Tuner Audio" },
646 { 0x070f, "DSS Audio" },
647 { 0x0710, "Radio Receiver" },
648 { 0x0711, "Radio Transmitter" },
649 { 0x0712, "Multi-Track Recorder" },
650 { 0x0713, "Synthesizer" },
651 { 0 },
652};
653
Takashi Iwai86e07d32005-11-17 15:08:02 +0100654static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 unsigned char *name, int maxlen, int term_only)
656{
657 struct iterm_name_combo *names;
658
659 if (iterm->name)
Daniel Mack6bc170e2014-05-24 10:58:16 +0200660 return snd_usb_copy_string_desc(state, iterm->name,
661 name, maxlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 /* virtual type - not a real terminal */
664 if (iterm->type >> 16) {
665 if (term_only)
666 return 0;
667 switch (iterm->type >> 16) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100668 case UAC_SELECTOR_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200669 strcpy(name, "Selector");
670 return 8;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200671 case UAC1_PROCESSING_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200672 strcpy(name, "Process Unit");
673 return 12;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200674 case UAC1_EXTENSION_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200675 strcpy(name, "Ext Unit");
676 return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100677 case UAC_MIXER_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200678 strcpy(name, "Mixer");
679 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 default:
681 return sprintf(name, "Unit %d", iterm->id);
682 }
683 }
684
685 switch (iterm->type & 0xff00) {
686 case 0x0100:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200687 strcpy(name, "PCM");
688 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 case 0x0200:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200690 strcpy(name, "Mic");
691 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 case 0x0400:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200693 strcpy(name, "Headset");
694 return 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 case 0x0500:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200696 strcpy(name, "Phone");
697 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699
Daniel Mack6bc170e2014-05-24 10:58:16 +0200700 for (names = iterm_names; names->type; names++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (names->type == iterm->type) {
702 strcpy(name, names->name);
703 return strlen(names->name);
704 }
Daniel Mack6bc170e2014-05-24 10:58:16 +0200705 }
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 0;
708}
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710/*
711 * parse the source unit recursively until it reaches to a terminal
712 * or a branched unit.
713 */
Hui Peng2bac3a32019-08-15 00:31:34 -0400714static int __check_input_term(struct mixer_build *state, int id,
Daniel Mack6bc170e2014-05-24 10:58:16 +0200715 struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Daniel Mack09414202010-05-31 13:35:44 +0200717 int err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100718 void *p1;
Hui Peng2bac3a32019-08-15 00:31:34 -0400719 unsigned char *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 memset(term, 0, sizeof(*term));
Hui Peng2bac3a32019-08-15 00:31:34 -0400722 for (;;) {
723 /* a loop in the terminal chain? */
724 if (test_and_set_bit(id, state->termbitmap))
725 return -EINVAL;
726
727 p1 = find_audio_control_unit(state, id);
728 if (!p1)
729 break;
730
731 hdr = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100733 switch (hdr[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100734 case UAC_INPUT_TERMINAL:
Daniel Mack23caaf12010-03-11 21:13:25 +0100735 if (state->mixer->protocol == UAC_VERSION_1) {
736 struct uac_input_terminal_descriptor *d = p1;
737 term->type = le16_to_cpu(d->wTerminalType);
738 term->channels = d->bNrChannels;
739 term->chconfig = le16_to_cpu(d->wChannelConfig);
740 term->name = d->iTerminal;
741 } else { /* UAC_VERSION_2 */
742 struct uac2_input_terminal_descriptor *d = p1;
Julian Scheel9430e542015-08-19 09:28:09 +0200743
744 /* call recursively to verify that the
745 * referenced clock entity is valid */
Hui Peng2bac3a32019-08-15 00:31:34 -0400746 err = __check_input_term(state, d->bCSourceID, term);
Julian Scheel9430e542015-08-19 09:28:09 +0200747 if (err < 0)
748 return err;
749
750 /* save input term properties after recursion,
751 * to ensure they are not overriden by the
752 * recursion calls */
753 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100754 term->type = le16_to_cpu(d->wTerminalType);
755 term->channels = d->bNrChannels;
756 term->chconfig = le32_to_cpu(d->bmChannelConfig);
757 term->name = d->iTerminal;
758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100760 case UAC_FEATURE_UNIT: {
761 /* the header is the same for v1 and v2 */
762 struct uac_feature_unit_descriptor *d = p1;
Daniel Mack5e688882010-05-08 11:24:56 +0200763 id = d->bSourceID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 break; /* continue to parse */
Daniel Mack23caaf12010-03-11 21:13:25 +0100765 }
766 case UAC_MIXER_UNIT: {
767 struct uac_mixer_unit_descriptor *d = p1;
768 term->type = d->bDescriptorSubtype << 16; /* virtual type */
769 term->channels = uac_mixer_unit_bNrChannels(d);
770 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
771 term->name = uac_mixer_unit_iMixer(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100773 }
Daniel Mack09414202010-05-31 13:35:44 +0200774 case UAC_SELECTOR_UNIT:
775 case UAC2_CLOCK_SELECTOR: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100776 struct uac_selector_unit_descriptor *d = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /* call recursively to retrieve the channel info */
Hui Peng2bac3a32019-08-15 00:31:34 -0400778 err = __check_input_term(state, d->baSourceID[0], term);
Daniel Mack4d7b86c2013-03-19 21:09:24 +0100779 if (err < 0)
780 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100781 term->type = d->bDescriptorSubtype << 16; /* virtual type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100783 term->name = uac_selector_unit_iSelector(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100785 }
Daniel Mack69da9bc2010-06-16 17:57:28 +0200786 case UAC1_PROCESSING_UNIT:
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100787 case UAC1_EXTENSION_UNIT:
788 /* UAC2_PROCESSING_UNIT_V2 */
Torstein Hegge61ac5132013-03-19 17:12:14 +0100789 /* UAC2_EFFECT_UNIT */
790 case UAC2_EXTENSION_UNIT_V2: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100791 struct uac_processing_unit_descriptor *d = p1;
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100792
793 if (state->mixer->protocol == UAC_VERSION_2 &&
794 hdr[2] == UAC2_EFFECT_UNIT) {
795 /* UAC2/UAC1 unit IDs overlap here in an
796 * uncompatible way. Ignore this unit for now.
797 */
798 return 0;
799 }
800
Daniel Mack23caaf12010-03-11 21:13:25 +0100801 if (d->bNrInPins) {
802 id = d->baSourceID[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 break; /* continue to parse */
804 }
Daniel Mack23caaf12010-03-11 21:13:25 +0100805 term->type = d->bDescriptorSubtype << 16; /* virtual type */
806 term->channels = uac_processing_unit_bNrChannels(d);
807 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
808 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100810 }
Daniel Mack09414202010-05-31 13:35:44 +0200811 case UAC2_CLOCK_SOURCE: {
812 struct uac_clock_source_descriptor *d = p1;
813 term->type = d->bDescriptorSubtype << 16; /* virtual type */
814 term->id = id;
815 term->name = d->iClockSource;
816 return 0;
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 default:
819 return -ENODEV;
820 }
821 }
822 return -ENODEV;
823}
824
Hui Peng2bac3a32019-08-15 00:31:34 -0400825
826static int check_input_term(struct mixer_build *state, int id,
827 struct usb_audio_term *term)
828{
829 memset(term, 0, sizeof(*term));
830 memset(state->termbitmap, 0, sizeof(state->termbitmap));
831 return __check_input_term(state, id, term);
832}
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834/*
835 * Feature Unit
836 */
837
838/* feature unit control information */
839struct usb_feature_control_info {
840 const char *name;
Julian Scheelbc18e312015-08-14 16:14:45 +0200841 int type; /* data type for uac1 */
842 int type_uac2; /* data type for uac2 if different from uac1, else -1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843};
844
845static struct usb_feature_control_info audio_feature_info[] = {
Julian Scheelbc18e312015-08-14 16:14:45 +0200846 { "Mute", USB_MIXER_INV_BOOLEAN, -1 },
847 { "Volume", USB_MIXER_S16, -1 },
848 { "Tone Control - Bass", USB_MIXER_S8, -1 },
849 { "Tone Control - Mid", USB_MIXER_S8, -1 },
850 { "Tone Control - Treble", USB_MIXER_S8, -1 },
851 { "Graphic Equalizer", USB_MIXER_S8, -1 }, /* FIXME: not implemeted yet */
852 { "Auto Gain Control", USB_MIXER_BOOLEAN, -1 },
853 { "Delay Control", USB_MIXER_U16, USB_MIXER_U32 },
854 { "Bass Boost", USB_MIXER_BOOLEAN, -1 },
855 { "Loudness", USB_MIXER_BOOLEAN, -1 },
Daniel Mack2e0281d2010-05-31 13:35:42 +0200856 /* UAC2 specific */
Julian Scheelbc18e312015-08-14 16:14:45 +0200857 { "Input Gain Control", USB_MIXER_S16, -1 },
858 { "Input Gain Pad Control", USB_MIXER_S16, -1 },
859 { "Phase Inverter Control", USB_MIXER_BOOLEAN, -1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860};
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862/* private_free callback */
Chris J Argeseef90452014-11-12 12:07:01 -0600863void snd_usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Jesper Juhl4d572772005-05-30 17:30:32 +0200865 kfree(kctl->private_data);
866 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869/*
870 * interface to ALSA control for feature/mixer units
871 */
872
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100873/* volume control quirks */
874static void volume_control_quirks(struct usb_mixer_elem_info *cval,
875 struct snd_kcontrol *kctl)
876{
Takashi Iwai3360b842014-11-18 11:47:04 +0100877 struct snd_usb_audio *chip = cval->head.mixer->chip;
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100878 switch (chip->usb_id) {
Eldad Zackd50ed622012-11-28 23:55:39 +0100879 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
Matt Gruskine9a25e02013-02-09 12:56:35 -0500880 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
Eldad Zackd50ed622012-11-28 23:55:39 +0100881 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
882 cval->min = 0x0000;
883 cval->max = 0xffff;
884 cval->res = 0x00e6;
885 break;
886 }
887 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
888 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
889 cval->min = 0x00;
890 cval->max = 0xff;
891 break;
892 }
893 if (strstr(kctl->id.name, "Effect Return") != NULL) {
894 cval->min = 0xb706;
895 cval->max = 0xff7b;
896 cval->res = 0x0073;
897 break;
898 }
899 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
900 (strstr(kctl->id.name, "Effect Send") != NULL)) {
901 cval->min = 0xb5fb; /* -73 dB = 0xb6ff */
902 cval->max = 0xfcfe;
903 cval->res = 0x0073;
904 }
905 break;
906
Felix Homannd34bf142012-04-23 20:24:27 +0200907 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
908 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
909 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100910 usb_audio_info(chip,
911 "set quirk for FTU Effect Duration\n");
Felix Homannd34bf142012-04-23 20:24:27 +0200912 cval->min = 0x0000;
913 cval->max = 0x7f00;
914 cval->res = 0x0100;
915 break;
916 }
917 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
918 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100919 usb_audio_info(chip,
920 "set quirks for FTU Effect Feedback/Volume\n");
Felix Homannd34bf142012-04-23 20:24:27 +0200921 cval->min = 0x00;
922 cval->max = 0x7f;
923 break;
924 }
925 break;
926
Federico Cuello639a74b2018-05-09 00:13:38 +0200927 case USB_ID(0x0d8c, 0x0103):
928 if (!strcmp(kctl->id.name, "PCM Playback Volume")) {
929 usb_audio_info(chip,
930 "set volume quirk for CM102-A+/102S+\n");
931 cval->min = -256;
932 }
933 break;
934
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100935 case USB_ID(0x0471, 0x0101):
936 case USB_ID(0x0471, 0x0104):
937 case USB_ID(0x0471, 0x0105):
938 case USB_ID(0x0672, 0x1041):
939 /* quirk for UDA1321/N101.
940 * note that detection between firmware 2.1.1.7 (N101)
941 * and later 2.1.1.21 is not very clear from datasheets.
942 * I hope that the min value is -15360 for newer firmware --jk
943 */
944 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
945 cval->min == -15616) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100946 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100947 "set volume quirk for UDA1321/N101 chip\n");
948 cval->max = -256;
949 }
950 break;
951
952 case USB_ID(0x046d, 0x09a4):
953 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100954 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100955 "set volume quirk for QuickCam E3500\n");
956 cval->min = 6080;
957 cval->max = 8768;
958 cval->res = 192;
959 }
960 break;
961
Takashi Iwaie805ca82014-03-05 12:34:39 +0100962 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100963 case USB_ID(0x046d, 0x0808):
964 case USB_ID(0x046d, 0x0809):
Jason Lee Cragg64559312015-01-17 12:28:29 -0500965 case USB_ID(0x046d, 0x0819): /* Logitech Webcam C210 */
Takashi Iwai36691e12013-06-17 10:25:02 +0200966 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
Alexey Fisher55c00082011-11-09 11:39:24 +0100967 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
Takashi Iwai11e70642013-06-05 08:35:26 +0200968 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
Maksim A. Boyko140d37d2013-08-10 12:20:02 +0400969 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
Wolfram Sang1ef9f052015-05-29 19:50:56 +0900970 case USB_ID(0x046d, 0x08ca): /* Logitech Quickcam Fusion */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100971 case USB_ID(0x046d, 0x0991):
Con Kolivas205d3de2016-12-09 15:15:57 +1100972 case USB_ID(0x046d, 0x09a2): /* QuickCam Communicate Deluxe/S7500 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100973 /* Most audio usb devices lie about volume resolution.
974 * Most Logitech webcams have res = 384.
Con Kolivas205d3de2016-12-09 15:15:57 +1100975 * Probably there is some logitech magic behind this number --fishor
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100976 */
977 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100978 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100979 "set resolution quirk: cval->res = 384\n");
980 cval->res = 384;
981 }
982 break;
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100983 }
984}
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986/*
987 * retrieve the minimum and maximum values for the specified control
988 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100989static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
990 int default_min, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 /* for failsafe */
993 cval->min = default_min;
994 cval->max = cval->min + 1;
995 cval->res = 1;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100996 cval->dBmin = cval->dBmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 if (cval->val_type == USB_MIXER_BOOLEAN ||
999 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1000 cval->initialized = 1;
1001 } else {
1002 int minchn = 0;
1003 if (cval->cmask) {
1004 int i;
1005 for (i = 0; i < MAX_CHANNELS; i++)
1006 if (cval->cmask & (1 << i)) {
1007 minchn = i + 1;
1008 break;
1009 }
1010 }
Daniel Mackde48c7b2010-02-22 23:49:13 +01001011 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
1012 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +01001013 usb_audio_err(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001014 "%d:%d: cannot get min/max values for control %d (id %d)\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01001015 cval->head.id, snd_usb_ctrl_intf(cval->head.mixer->chip),
1016 cval->control, cval->head.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return -EINVAL;
1018 }
Daniel Mack6bc170e2014-05-24 10:58:16 +02001019 if (get_ctl_value(cval, UAC_GET_RES,
1020 (cval->control << 8) | minchn,
1021 &cval->res) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 cval->res = 1;
1023 } else {
1024 int last_valid_res = cval->res;
1025
1026 while (cval->res > 1) {
Daniel Mack7b1eda22010-03-11 21:13:22 +01001027 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001028 (cval->control << 8) | minchn,
1029 cval->res / 2) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 break;
1031 cval->res /= 2;
1032 }
Daniel Mack6bc170e2014-05-24 10:58:16 +02001033 if (get_ctl_value(cval, UAC_GET_RES,
1034 (cval->control << 8) | minchn, &cval->res) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 cval->res = last_valid_res;
1036 }
1037 if (cval->res == 0)
1038 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +02001039
1040 /* Additional checks for the proper resolution
1041 *
1042 * Some devices report smaller resolutions than actually
1043 * reacting. They don't return errors but simply clip
1044 * to the lower aligned value.
1045 */
1046 if (cval->min + cval->res < cval->max) {
1047 int last_valid_res = cval->res;
1048 int saved, test, check;
Takashi Iwai40157312019-11-09 19:16:58 +01001049 if (get_cur_mix_raw(cval, minchn, &saved) < 0)
1050 goto no_res_check;
Takashi Iwai14790f12006-03-28 17:58:28 +02001051 for (;;) {
1052 test = saved;
1053 if (test < cval->max)
1054 test += cval->res;
1055 else
1056 test -= cval->res;
1057 if (test < cval->min || test > cval->max ||
Chris J Argeseef90452014-11-12 12:07:01 -06001058 snd_usb_set_cur_mix_value(cval, minchn, 0, test) ||
Takashi Iwai641b4872009-01-15 17:05:24 +01001059 get_cur_mix_raw(cval, minchn, &check)) {
Takashi Iwai14790f12006-03-28 17:58:28 +02001060 cval->res = last_valid_res;
1061 break;
1062 }
1063 if (test == check)
1064 break;
1065 cval->res *= 2;
1066 }
Chris J Argeseef90452014-11-12 12:07:01 -06001067 snd_usb_set_cur_mix_value(cval, minchn, 0, saved);
Takashi Iwai14790f12006-03-28 17:58:28 +02001068 }
1069
Takashi Iwai40157312019-11-09 19:16:58 +01001070no_res_check:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 cval->initialized = 1;
1072 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001073
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001074 if (kctl)
1075 volume_control_quirks(cval, kctl);
1076
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001077 /* USB descriptions contain the dB scale in 1/256 dB unit
1078 * while ALSA TLV contains in 1/100 dB unit
1079 */
1080 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
1081 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
1082 if (cval->dBmin > cval->dBmax) {
1083 /* something is wrong; assume it's either from/to 0dB */
1084 if (cval->dBmin < 0)
1085 cval->dBmax = 0;
1086 else if (cval->dBmin > 0)
1087 cval->dBmin = 0;
1088 if (cval->dBmin > cval->dBmax) {
1089 /* totally crap, return an error */
1090 return -EINVAL;
1091 }
1092 }
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return 0;
1095}
1096
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001097#define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099/* get a feature/mixer unit info */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001100static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
1101 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001103 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 if (cval->val_type == USB_MIXER_BOOLEAN ||
1106 cval->val_type == USB_MIXER_INV_BOOLEAN)
1107 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1108 else
1109 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1110 uinfo->count = cval->channels;
1111 if (cval->val_type == USB_MIXER_BOOLEAN ||
1112 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1113 uinfo->value.integer.min = 0;
1114 uinfo->value.integer.max = 1;
1115 } else {
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001116 if (!cval->initialized) {
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001117 get_min_max_with_quirks(cval, 0, kcontrol);
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001118 if (cval->initialized && cval->dBmin >= cval->dBmax) {
1119 kcontrol->vd[0].access &=
1120 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1121 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK);
Takashi Iwai3360b842014-11-18 11:47:04 +01001122 snd_ctl_notify(cval->head.mixer->chip->card,
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001123 SNDRV_CTL_EVENT_MASK_INFO,
1124 &kcontrol->id);
1125 }
1126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +02001128 uinfo->value.integer.max =
1129 (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131 return 0;
1132}
1133
1134/* get the current value from feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001135static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol,
1136 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001138 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 int c, cnt, val, err;
1140
Takashi Iwai641b4872009-01-15 17:05:24 +01001141 ucontrol->value.integer.value[0] = cval->min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (cval->cmask) {
1143 cnt = 0;
1144 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001145 if (!(cval->cmask & (1 << c)))
1146 continue;
Chris J Argeseef90452014-11-12 12:07:01 -06001147 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001148 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001149 return filter_error(cval, err);
Takashi Iwai641b4872009-01-15 17:05:24 +01001150 val = get_relative_value(cval, val);
1151 ucontrol->value.integer.value[cnt] = val;
1152 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 } else {
1156 /* master channel */
Chris J Argeseef90452014-11-12 12:07:01 -06001157 err = snd_usb_get_cur_mix_value(cval, 0, 0, &val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001158 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001159 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 val = get_relative_value(cval, val);
1161 ucontrol->value.integer.value[0] = val;
1162 }
1163 return 0;
1164}
1165
1166/* put the current value to feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001167static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
1168 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001170 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 int c, cnt, val, oval, err;
1172 int changed = 0;
1173
1174 if (cval->cmask) {
1175 cnt = 0;
1176 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001177 if (!(cval->cmask & (1 << c)))
1178 continue;
Chris J Argeseef90452014-11-12 12:07:01 -06001179 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &oval);
Takashi Iwai641b4872009-01-15 17:05:24 +01001180 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001181 return filter_error(cval, err);
Takashi Iwai641b4872009-01-15 17:05:24 +01001182 val = ucontrol->value.integer.value[cnt];
1183 val = get_abs_value(cval, val);
1184 if (oval != val) {
Chris J Argeseef90452014-11-12 12:07:01 -06001185 snd_usb_set_cur_mix_value(cval, c + 1, cnt, val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001186 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001188 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190 } else {
1191 /* master channel */
Chris J Argeseef90452014-11-12 12:07:01 -06001192 err = snd_usb_get_cur_mix_value(cval, 0, 0, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001194 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 val = ucontrol->value.integer.value[0];
1196 val = get_abs_value(cval, val);
1197 if (val != oval) {
Chris J Argeseef90452014-11-12 12:07:01 -06001198 snd_usb_set_cur_mix_value(cval, 0, 0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 changed = 1;
1200 }
1201 }
1202 return changed;
1203}
1204
Takashi Iwai86e07d32005-11-17 15:08:02 +01001205static struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1207 .name = "", /* will be filled later manually */
1208 .info = mixer_ctl_feature_info,
1209 .get = mixer_ctl_feature_get,
1210 .put = mixer_ctl_feature_put,
1211};
1212
Daniel Mack23caaf12010-03-11 21:13:25 +01001213/* the read-only variant */
1214static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
1215 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1216 .name = "", /* will be filled later manually */
1217 .info = mixer_ctl_feature_info,
1218 .get = mixer_ctl_feature_get,
1219 .put = NULL,
1220};
1221
Daniel Mack6bc170e2014-05-24 10:58:16 +02001222/*
1223 * This symbol is exported in order to allow the mixer quirks to
1224 * hook up to the standard feature unit control mechanism
1225 */
Daniel Mack9e386582011-05-25 09:09:01 +02001226struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228/*
1229 * build a feature control
1230 */
Takashi Iwai08d1e632009-10-02 14:06:08 +02001231static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
1232{
1233 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
1234}
1235
Daniel Mack6bc170e2014-05-24 10:58:16 +02001236/*
1237 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1238 * rename it to "Headphone". We determine if something is a headphone
1239 * similar to how udev determines form factor.
1240 */
David Henningsson9b4ef972012-11-23 13:48:55 +01001241static void check_no_speaker_on_headset(struct snd_kcontrol *kctl,
1242 struct snd_card *card)
1243{
1244 const char *names_to_check[] = {
1245 "Headset", "headset", "Headphone", "headphone", NULL};
1246 const char **s;
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001247 bool found = false;
David Henningsson9b4ef972012-11-23 13:48:55 +01001248
1249 if (strcmp("Speaker", kctl->id.name))
1250 return;
1251
1252 for (s = names_to_check; *s; s++)
1253 if (strstr(card->shortname, *s)) {
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001254 found = true;
David Henningsson9b4ef972012-11-23 13:48:55 +01001255 break;
1256 }
1257
1258 if (!found)
1259 return;
1260
1261 strlcpy(kctl->id.name, "Headphone", sizeof(kctl->id.name));
1262}
1263
Daniel Mack99fc8642010-03-11 21:13:24 +01001264static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 unsigned int ctl_mask, int control,
Daniel Mack23caaf12010-03-11 21:13:25 +01001266 struct usb_audio_term *iterm, int unitid,
Daniel Macka6a33252010-05-31 13:35:37 +02001267 int readonly_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Daniel Mack99fc8642010-03-11 21:13:24 +01001269 struct uac_feature_unit_descriptor *desc = raw_desc;
Julian Scheelbc18e312015-08-14 16:14:45 +02001270 struct usb_feature_control_info *ctl_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 unsigned int len = 0;
1272 int mapped_name = 0;
Daniel Mack99fc8642010-03-11 21:13:24 +01001273 int nameid = uac_feature_unit_iFeature(desc);
Takashi Iwai86e07d32005-11-17 15:08:02 +01001274 struct snd_kcontrol *kctl;
1275 struct usb_mixer_elem_info *cval;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001276 const struct usbmix_name_map *map;
Alexey Fisher80aceff2011-03-10 14:53:38 +01001277 unsigned int range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 control++; /* change from zero-based to 1-based value */
1280
Daniel Mack65f25da2010-05-31 13:35:41 +02001281 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 /* FIXME: not supported yet */
1283 return;
1284 }
1285
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001286 map = find_map(state, unitid, control);
1287 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return;
1289
Takashi Iwai561b2202005-09-09 14:22:34 +02001290 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001291 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return;
Takashi Iwai3360b842014-11-18 11:47:04 +01001293 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 cval->control = control;
1295 cval->cmask = ctl_mask;
Julian Scheelbc18e312015-08-14 16:14:45 +02001296 ctl_info = &audio_feature_info[control-1];
1297 if (state->mixer->protocol == UAC_VERSION_1)
1298 cval->val_type = ctl_info->type;
1299 else /* UAC_VERSION_2 */
1300 cval->val_type = ctl_info->type_uac2 >= 0 ?
1301 ctl_info->type_uac2 : ctl_info->type;
1302
Daniel Macka6a33252010-05-31 13:35:37 +02001303 if (ctl_mask == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 cval->channels = 1; /* master channel */
Daniel Macka6a33252010-05-31 13:35:37 +02001305 cval->master_readonly = readonly_mask;
1306 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 int i, c = 0;
1308 for (i = 0; i < 16; i++)
1309 if (ctl_mask & (1 << i))
1310 c++;
1311 cval->channels = c;
Daniel Macka6a33252010-05-31 13:35:37 +02001312 cval->ch_readonly = readonly_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314
Daniel Mack6bc170e2014-05-24 10:58:16 +02001315 /*
1316 * If all channels in the mask are marked read-only, make the control
Chris J Argeseef90452014-11-12 12:07:01 -06001317 * read-only. snd_usb_set_cur_mix_value() will check the mask again and won't
Daniel Mack6bc170e2014-05-24 10:58:16 +02001318 * issue write commands to read-only channels.
1319 */
Daniel Macka6a33252010-05-31 13:35:37 +02001320 if (cval->channels == readonly_mask)
Daniel Mack23caaf12010-03-11 21:13:25 +01001321 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1322 else
1323 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1324
Daniel Mack6bc170e2014-05-24 10:58:16 +02001325 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001326 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 kfree(cval);
1328 return;
1329 }
Chris J Argeseef90452014-11-12 12:07:01 -06001330 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001332 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 mapped_name = len != 0;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001334 if (!len && nameid)
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001335 len = snd_usb_copy_string_desc(state, nameid,
1336 kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338 switch (control) {
Daniel Mack65f25da2010-05-31 13:35:41 +02001339 case UAC_FU_MUTE:
1340 case UAC_FU_VOLUME:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001341 /*
1342 * determine the control name. the rule is:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 * - if a name id is given in descriptor, use it.
1344 * - if the connected input can be determined, then use the name
1345 * of terminal type.
1346 * - if the connected output can be determined, use it.
1347 * - otherwise, anonymous name.
1348 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001349 if (!len) {
1350 len = get_term_name(state, iterm, kctl->id.name,
1351 sizeof(kctl->id.name), 1);
1352 if (!len)
1353 len = get_term_name(state, &state->oterm,
1354 kctl->id.name,
1355 sizeof(kctl->id.name), 1);
1356 if (!len)
Daniel Mack49fd46d2014-10-19 09:11:25 +02001357 snprintf(kctl->id.name, sizeof(kctl->id.name),
1358 "Feature %d", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
David Henningsson9b4ef972012-11-23 13:48:55 +01001360
1361 if (!mapped_name)
1362 check_no_speaker_on_headset(kctl, state->mixer->chip->card);
1363
Daniel Mack6bc170e2014-05-24 10:58:16 +02001364 /*
1365 * determine the stream direction:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 * if the connected output is USB stream, then it's likely a
1367 * capture stream. otherwise it should be playback (hopefully :)
1368 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001369 if (!mapped_name && !(state->oterm.type >> 16)) {
1370 if ((state->oterm.type & 0xff00) == 0x0100)
Daniel Mack49fd46d2014-10-19 09:11:25 +02001371 append_ctl_name(kctl, " Capture");
Daniel Mack6bc170e2014-05-24 10:58:16 +02001372 else
Daniel Mack49fd46d2014-10-19 09:11:25 +02001373 append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
Daniel Mack65f25da2010-05-31 13:35:41 +02001375 append_ctl_name(kctl, control == UAC_FU_MUTE ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001376 " Switch" : " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 default:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001379 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1381 sizeof(kctl->id.name));
1382 break;
1383 }
1384
Takashi Iwaie1825342012-05-14 17:11:06 +02001385 /* get min/max values */
1386 get_min_max_with_quirks(cval, 0, kctl);
1387
1388 if (control == UAC_FU_VOLUME) {
1389 check_mapped_dB(map, cval);
1390 if (cval->dBmin < cval->dBmax || !cval->initialized) {
1391 kctl->tlv.c = snd_usb_mixer_vol_tlv;
1392 kctl->vd[0].access |=
1393 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1394 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1395 }
1396 }
1397
Anssi Hannula42e31212015-12-13 20:49:58 +02001398 snd_usb_mixer_fu_apply_quirk(state->mixer, cval, unitid, kctl);
1399
Alexey Fisher80aceff2011-03-10 14:53:38 +01001400 range = (cval->max - cval->min) / cval->res;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001401 /*
1402 * Are there devices with volume range more than 255? I use a bit more
Alexey Fisher80aceff2011-03-10 14:53:38 +01001403 * to be sure. 384 is a resolution magic number found on Logitech
1404 * devices. It will definitively catch all buggy Logitech devices.
1405 */
1406 if (range > 384) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001407 usb_audio_warn(state->chip,
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001408 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
Daniel Mack6bc170e2014-05-24 10:58:16 +02001409 range);
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001410 usb_audio_warn(state->chip,
1411 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
Takashi Iwai3360b842014-11-18 11:47:04 +01001412 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001413 cval->min, cval->max, cval->res);
Alexey Fisher80aceff2011-03-10 14:53:38 +01001414 }
1415
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001416 usb_audio_dbg(state->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01001417 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001418 cval->min, cval->max, cval->res);
Takashi Iwai3360b842014-11-18 11:47:04 +01001419 snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
Daniel Mackcddaafb2016-04-09 11:21:46 +02001422static int parse_clock_source_unit(struct mixer_build *state, int unitid,
1423 void *_ftr)
1424{
1425 struct uac_clock_source_descriptor *hdr = _ftr;
1426 struct usb_mixer_elem_info *cval;
1427 struct snd_kcontrol *kctl;
1428 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
1429 int ret;
1430
1431 if (state->mixer->protocol != UAC_VERSION_2)
1432 return -EINVAL;
1433
1434 if (hdr->bLength != sizeof(*hdr)) {
1435 usb_audio_dbg(state->chip,
1436 "Bogus clock source descriptor length of %d, ignoring.\n",
1437 hdr->bLength);
1438 return 0;
1439 }
1440
1441 /*
1442 * The only property of this unit we are interested in is the
1443 * clock source validity. If that isn't readable, just bail out.
1444 */
1445 if (!uac2_control_is_readable(hdr->bmControls,
1446 ilog2(UAC2_CS_CONTROL_CLOCK_VALID)))
1447 return 0;
1448
1449 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1450 if (!cval)
1451 return -ENOMEM;
1452
1453 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, hdr->bClockID);
1454
1455 cval->min = 0;
1456 cval->max = 1;
1457 cval->channels = 1;
1458 cval->val_type = USB_MIXER_BOOLEAN;
1459 cval->control = UAC2_CS_CONTROL_CLOCK_VALID;
1460
1461 if (uac2_control_is_writeable(hdr->bmControls,
1462 ilog2(UAC2_CS_CONTROL_CLOCK_VALID)))
1463 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1464 else {
1465 cval->master_readonly = 1;
1466 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1467 }
1468
1469 if (!kctl) {
1470 kfree(cval);
1471 return -ENOMEM;
1472 }
1473
1474 kctl->private_free = snd_usb_mixer_elem_free;
1475 ret = snd_usb_copy_string_desc(state, hdr->iClockSource,
1476 name, sizeof(name));
1477 if (ret > 0)
1478 snprintf(kctl->id.name, sizeof(kctl->id.name),
1479 "%s Validity", name);
1480 else
1481 snprintf(kctl->id.name, sizeof(kctl->id.name),
1482 "Clock Source %d Validity", hdr->bClockID);
1483
1484 return snd_usb_mixer_add_control(&cval->head, kctl);
1485}
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487/*
1488 * parse a feature unit
1489 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001490 * most of controls are defined here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001492static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
1493 void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
1495 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001496 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 unsigned int master_bits, first_ch_bits;
1498 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001499 struct uac_feature_unit_descriptor *hdr = _ftr;
1500 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Daniel Mack23caaf12010-03-11 21:13:25 +01001502 if (state->mixer->protocol == UAC_VERSION_1) {
Takashi Iwai85cc0202017-11-21 16:55:51 +01001503 if (hdr->bLength < 7) {
1504 usb_audio_err(state->chip,
1505 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1506 unitid);
1507 return -EINVAL;
1508 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001509 csize = hdr->bControlSize;
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001510 if (!csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001511 usb_audio_dbg(state->chip,
1512 "unit %u: invalid bControlSize == 0\n",
1513 unitid);
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001514 return -EINVAL;
1515 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001516 channels = (hdr->bLength - 7) / csize - 1;
1517 bmaControls = hdr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001518 if (hdr->bLength < 7 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001519 usb_audio_err(state->chip,
1520 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1521 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001522 return -EINVAL;
1523 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001524 } else {
1525 struct uac2_feature_unit_descriptor *ftr = _ftr;
Takashi Iwai85cc0202017-11-21 16:55:51 +01001526 if (hdr->bLength < 6) {
1527 usb_audio_err(state->chip,
1528 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1529 unitid);
1530 return -EINVAL;
1531 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001532 csize = 4;
Daniel Macke8d0fee2010-05-27 20:15:14 +02001533 channels = (hdr->bLength - 6) / 4 - 1;
Daniel Mack23caaf12010-03-11 21:13:25 +01001534 bmaControls = ftr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001535 if (hdr->bLength < 6 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001536 usb_audio_err(state->chip,
1537 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1538 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001539 return -EINVAL;
1540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542
1543 /* parse the source unit */
Daniel Mack23caaf12010-03-11 21:13:25 +01001544 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return err;
1546
1547 /* determine the input source type and name */
Daniel Mack4d7b86c2013-03-19 21:09:24 +01001548 err = check_input_term(state, hdr->bSourceID, &iterm);
1549 if (err < 0)
1550 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Daniel Mack23caaf12010-03-11 21:13:25 +01001552 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001553 /* master configuration quirks */
1554 switch (state->chip->usb_id) {
1555 case USB_ID(0x08bb, 0x2702):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001556 usb_audio_info(state->chip,
1557 "usbmixer: master volume quirk for PCM2702 chip\n");
Javier Kohen0c3cee52009-11-17 15:36:13 +01001558 /* disable non-functional volume control */
Daniel Mack65f25da2010-05-31 13:35:41 +02001559 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001560 break;
David Henningssonc1051432012-09-20 10:20:41 +02001561 case USB_ID(0x1130, 0xf211):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001562 usb_audio_info(state->chip,
1563 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
David Henningssonc1051432012-09-20 10:20:41 +02001564 /* disable non-functional volume control */
1565 channels = 0;
1566 break;
1567
Javier Kohen0c3cee52009-11-17 15:36:13 +01001568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (channels > 0)
Daniel Mack23caaf12010-03-11 21:13:25 +01001570 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 else
1572 first_ch_bits = 0;
Daniel Mack23caaf12010-03-11 21:13:25 +01001573
1574 if (state->mixer->protocol == UAC_VERSION_1) {
1575 /* check all control types */
1576 for (i = 0; i < 10; i++) {
1577 unsigned int ch_bits = 0;
1578 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001579 unsigned int mask;
1580
1581 mask = snd_usb_combine_bytes(bmaControls +
1582 csize * (j+1), csize);
Daniel Mack23caaf12010-03-11 21:13:25 +01001583 if (mask & (1 << i))
1584 ch_bits |= (1 << j);
1585 }
1586 /* audio class v1 controls are never read-only */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001587
1588 /*
1589 * The first channel must be set
1590 * (for ease of programming).
1591 */
1592 if (ch_bits & 1)
1593 build_feature_ctl(state, _ftr, ch_bits, i,
1594 &iterm, unitid, 0);
Daniel Mack23caaf12010-03-11 21:13:25 +01001595 if (master_bits & (1 << i))
Daniel Mack6bc170e2014-05-24 10:58:16 +02001596 build_feature_ctl(state, _ftr, 0, i, &iterm,
1597 unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001599 } else { /* UAC_VERSION_2 */
Takashi Iwaid09c06c2011-10-13 08:19:09 +02001600 for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001601 unsigned int ch_bits = 0;
1602 unsigned int ch_read_only = 0;
1603
1604 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001605 unsigned int mask;
1606
1607 mask = snd_usb_combine_bytes(bmaControls +
1608 csize * (j+1), csize);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001609 if (uac2_control_is_readable(mask, i)) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001610 ch_bits |= (1 << j);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001611 if (!uac2_control_is_writeable(mask, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001612 ch_read_only |= (1 << j);
1613 }
1614 }
1615
Daniel Mack6bc170e2014-05-24 10:58:16 +02001616 /*
1617 * NOTE: build_feature_ctl() will mark the control
1618 * read-only if all channels are marked read-only in
1619 * the descriptors. Otherwise, the control will be
1620 * reported as writeable, but the driver will not
1621 * actually issue a write command for read-only
1622 * channels.
1623 */
1624
1625 /*
1626 * The first channel must be set
1627 * (for ease of programming).
1628 */
1629 if (ch_bits & 1)
1630 build_feature_ctl(state, _ftr, ch_bits, i,
1631 &iterm, unitid, ch_read_only);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001632 if (uac2_control_is_readable(master_bits, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001633 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001634 !uac2_control_is_writeable(master_bits, i));
Daniel Mack23caaf12010-03-11 21:13:25 +01001635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 }
1637
1638 return 0;
1639}
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641/*
1642 * Mixer Unit
1643 */
1644
1645/*
1646 * build a mixer unit control
1647 *
1648 * the callbacks are identical with feature unit.
1649 * input channel number (zero based) is given in control field instead.
1650 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001651static void build_mixer_unit_ctl(struct mixer_build *state,
1652 struct uac_mixer_unit_descriptor *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001654 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001656 struct usb_mixer_elem_info *cval;
Daniel Mack99fc8642010-03-11 21:13:24 +01001657 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001659 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001660 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001662 map = find_map(state, unitid, 0);
1663 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return;
1665
Takashi Iwai561b2202005-09-09 14:22:34 +02001666 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001667 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return;
1669
Takashi Iwai3360b842014-11-18 11:47:04 +01001670 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 cval->control = in_ch + 1; /* based on 1 */
1672 cval->val_type = USB_MIXER_S16;
1673 for (i = 0; i < num_outs; i++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001674 __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol);
1675
1676 if (check_matrix_bitmap(c, in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 cval->cmask |= (1 << i);
1678 cval->channels++;
1679 }
1680 }
1681
1682 /* get min/max values */
1683 get_min_max(cval, 0);
1684
1685 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001686 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001687 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 kfree(cval);
1689 return;
1690 }
Chris J Argeseef90452014-11-12 12:07:01 -06001691 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001693 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001694 if (!len)
1695 len = get_term_name(state, iterm, kctl->id.name,
1696 sizeof(kctl->id.name), 0);
1697 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02001699 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001701 usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01001702 cval->head.id, kctl->id.name, cval->channels, cval->min, cval->max);
1703 snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704}
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706/*
1707 * parse a mixer unit
1708 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001709static int parse_audio_mixer_unit(struct mixer_build *state, int unitid,
1710 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
Daniel Mack99fc8642010-03-11 21:13:24 +01001712 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001713 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 int input_pins, num_ins, num_outs;
1715 int pin, ich, err;
1716
Daniel Mack6bc170e2014-05-24 10:58:16 +02001717 if (desc->bLength < 11 || !(input_pins = desc->bNrInPins) ||
Hui Peng53856af72019-08-13 22:34:04 -04001718 desc->bLength < sizeof(*desc) + desc->bNrInPins ||
Daniel Mack6bc170e2014-05-24 10:58:16 +02001719 !(num_outs = uac_mixer_unit_bNrChannels(desc))) {
1720 usb_audio_err(state->chip,
1721 "invalid MIXER UNIT descriptor %d\n",
1722 unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 return -EINVAL;
1724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 num_ins = 0;
1727 ich = 0;
1728 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001729 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 if (err < 0)
Mark Hills284a8dd2012-04-14 17:19:23 +01001731 continue;
Clemens Ladischea114fc2015-06-03 11:36:51 +02001732 /* no bmControls field (e.g. Maya44) -> ignore */
1733 if (desc->bLength <= 10 + input_pins)
1734 continue;
Daniel Mack99fc8642010-03-11 21:13:24 +01001735 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (err < 0)
1737 return err;
1738 num_ins += iterm.channels;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001739 for (; ich < num_ins; ich++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 int och, ich_has_controls = 0;
1741
Daniel Mack6bc170e2014-05-24 10:58:16 +02001742 for (och = 0; och < num_outs; och++) {
1743 __u8 *c = uac_mixer_unit_bmControls(desc,
1744 state->mixer->protocol);
1745
1746 if (check_matrix_bitmap(c, ich, och, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 ich_has_controls = 1;
1748 break;
1749 }
1750 }
1751 if (ich_has_controls)
1752 build_mixer_unit_ctl(state, desc, pin, ich,
1753 unitid, &iterm);
1754 }
1755 }
1756 return 0;
1757}
1758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759/*
1760 * Processing Unit / Extension Unit
1761 */
1762
1763/* get callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001764static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol,
1765 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001767 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 int err, val;
1769
1770 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Takashi Iwai5aeee342014-11-18 11:02:14 +01001771 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 ucontrol->value.integer.value[0] = cval->min;
Takashi Iwai5aeee342014-11-18 11:02:14 +01001773 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 val = get_relative_value(cval, val);
1776 ucontrol->value.integer.value[0] = val;
1777 return 0;
1778}
1779
1780/* put callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001781static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
1782 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001784 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 int val, oval, err;
1786
1787 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Takashi Iwai5aeee342014-11-18 11:02:14 +01001788 if (err < 0)
1789 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 val = ucontrol->value.integer.value[0];
1791 val = get_abs_value(cval, val);
1792 if (val != oval) {
1793 set_cur_ctl_value(cval, cval->control << 8, val);
1794 return 1;
1795 }
1796 return 0;
1797}
1798
1799/* alsa control interface for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001800static struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1802 .name = "", /* will be filled later */
1803 .info = mixer_ctl_feature_info,
1804 .get = mixer_ctl_procunit_get,
1805 .put = mixer_ctl_procunit_put,
1806};
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808/*
1809 * predefined data for processing units
1810 */
1811struct procunit_value_info {
1812 int control;
1813 char *suffix;
1814 int val_type;
1815 int min_value;
1816};
1817
1818struct procunit_info {
1819 int type;
1820 char *name;
1821 struct procunit_value_info *values;
1822};
1823
1824static struct procunit_value_info updown_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001825 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1826 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 { 0 }
1828};
1829static struct procunit_value_info prologic_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001830 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1831 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 { 0 }
1833};
1834static struct procunit_value_info threed_enh_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001835 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1836 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 { 0 }
1838};
1839static struct procunit_value_info reverb_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001840 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1841 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1842 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1843 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 { 0 }
1845};
1846static struct procunit_value_info chorus_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001847 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1848 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1849 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1850 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 { 0 }
1852};
1853static struct procunit_value_info dcr_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001854 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1855 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1856 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1857 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1858 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1859 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 { 0 }
1861};
1862
1863static struct procunit_info procunits[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001864 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1865 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1866 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1867 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1868 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1869 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 { 0 },
1871};
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001872/*
1873 * predefined data for extension units
1874 */
1875static struct procunit_value_info clock_rate_xu_info[] = {
Daniel Macke213e9c2010-05-11 18:13:50 +02001876 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1877 { 0 }
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001878};
1879static struct procunit_value_info clock_source_xu_info[] = {
1880 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1881 { 0 }
1882};
1883static struct procunit_value_info spdif_format_xu_info[] = {
1884 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1885 { 0 }
1886};
1887static struct procunit_value_info soft_limit_xu_info[] = {
1888 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1889 { 0 }
1890};
1891static struct procunit_info extunits[] = {
1892 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1893 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1894 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1895 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1896 { 0 }
1897};
Daniel Mack6bc170e2014-05-24 10:58:16 +02001898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899/*
1900 * build a processing/extension unit
1901 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001902static int build_audio_procunit(struct mixer_build *state, int unitid,
1903 void *raw_desc, struct procunit_info *list,
1904 char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
Daniel Mack99fc8642010-03-11 21:13:24 +01001906 struct uac_processing_unit_descriptor *desc = raw_desc;
Takashi Iwaibeab6f32018-12-19 12:36:27 +01001907 int num_ins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001908 struct usb_mixer_elem_info *cval;
1909 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 int i, err, nameid, type, len;
1911 struct procunit_info *info;
1912 struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001913 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 static struct procunit_value_info default_value_info[] = {
1915 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1916 { 0 }
1917 };
1918 static struct procunit_info default_info = {
1919 0, NULL, default_value_info
1920 };
1921
Takashi Iwaibeab6f32018-12-19 12:36:27 +01001922 if (desc->bLength < 13) {
1923 usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid);
1924 return -EINVAL;
1925 }
1926
1927 num_ins = desc->bNrInPins;
1928 if (desc->bLength < 13 + num_ins ||
Daniel Mack23caaf12010-03-11 21:13:25 +01001929 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001930 usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 return -EINVAL;
1932 }
1933
1934 for (i = 0; i < num_ins; i++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001935 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 return err;
1937 }
1938
Daniel Mack99fc8642010-03-11 21:13:24 +01001939 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 for (info = list; info && info->type; info++)
1941 if (info->type == type)
1942 break;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001943 if (!info || !info->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 info = &default_info;
1945
1946 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001947 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01001948
Daniel Mack6bc170e2014-05-24 10:58:16 +02001949 if (!(controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 continue;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001951 map = find_map(state, unitid, valinfo->control);
1952 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02001954 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001955 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return -ENOMEM;
Takashi Iwai3360b842014-11-18 11:47:04 +01001957 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 cval->control = valinfo->control;
1959 cval->val_type = valinfo->val_type;
1960 cval->channels = 1;
1961
1962 /* get min/max values */
Daniel Mack65f25da2010-05-31 13:35:41 +02001963 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001964 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 /* FIXME: hard-coded */
1966 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001967 cval->max = control_spec[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 cval->res = 1;
1969 cval->initialized = 1;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001970 } else {
1971 if (type == USB_XU_CLOCK_RATE) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001972 /*
1973 * E-Mu USB 0404/0202/TrackerPre/0204
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001974 * samplerate control quirk
1975 */
1976 cval->min = 0;
1977 cval->max = 5;
1978 cval->res = 1;
1979 cval->initialized = 1;
1980 } else
1981 get_min_max(cval, valinfo->min_value);
1982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001985 if (!kctl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 kfree(cval);
1987 return -ENOMEM;
1988 }
Chris J Argeseef90452014-11-12 12:07:01 -06001989 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Daniel Mack6bc170e2014-05-24 10:58:16 +02001991 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001992 /* nothing */ ;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001993 } else if (info->name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001995 } else {
Daniel Mack23caaf12010-03-11 21:13:25 +01001996 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 len = 0;
1998 if (nameid)
Daniel Mack6bc170e2014-05-24 10:58:16 +02001999 len = snd_usb_copy_string_desc(state, nameid,
2000 kctl->id.name,
2001 sizeof(kctl->id.name));
2002 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
2004 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02002005 append_ctl_name(kctl, " ");
2006 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002008 usb_audio_dbg(state->chip,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002009 "[%d] PU [%s] ch = %d, val = %d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01002010 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002011 cval->min, cval->max);
2012
Takashi Iwai3360b842014-11-18 11:47:04 +01002013 err = snd_usb_mixer_add_control(&cval->head, kctl);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002014 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return err;
2016 }
2017 return 0;
2018}
2019
Daniel Mack6bc170e2014-05-24 10:58:16 +02002020static int parse_audio_processing_unit(struct mixer_build *state, int unitid,
2021 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
Daniel Mack6bc170e2014-05-24 10:58:16 +02002023 return build_audio_procunit(state, unitid, raw_desc,
2024 procunits, "Processing Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
2026
Daniel Mack6bc170e2014-05-24 10:58:16 +02002027static int parse_audio_extension_unit(struct mixer_build *state, int unitid,
2028 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
Daniel Mack6bc170e2014-05-24 10:58:16 +02002030 /*
2031 * Note that we parse extension units with processing unit descriptors.
2032 * That's ok as the layout is the same.
2033 */
2034 return build_audio_procunit(state, unitid, raw_desc,
2035 extunits, "Extension Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036}
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038/*
2039 * Selector Unit
2040 */
2041
Daniel Mack6bc170e2014-05-24 10:58:16 +02002042/*
2043 * info callback for selector unit
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 * use an enumerator type for routing
2045 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002046static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol,
2047 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002049 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01002050 const char **itemlist = (const char **)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Takashi Iwai5e246b82008-08-08 17:12:47 +02002052 if (snd_BUG_ON(!itemlist))
2053 return -EINVAL;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01002054 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056
2057/* get callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002058static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol,
2059 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002061 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 int val, err;
2063
Daniel Mack09414202010-05-31 13:35:44 +02002064 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 if (err < 0) {
Takashi Iwai5aeee342014-11-18 11:02:14 +01002066 ucontrol->value.enumerated.item[0] = 0;
2067 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 }
2069 val = get_relative_value(cval, val);
2070 ucontrol->value.enumerated.item[0] = val;
2071 return 0;
2072}
2073
2074/* put callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002075static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
2076 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002078 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 int val, oval, err;
2080
Daniel Mack09414202010-05-31 13:35:44 +02002081 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Takashi Iwai5aeee342014-11-18 11:02:14 +01002082 if (err < 0)
2083 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 val = ucontrol->value.enumerated.item[0];
2085 val = get_abs_value(cval, val);
2086 if (val != oval) {
Daniel Mack09414202010-05-31 13:35:44 +02002087 set_cur_ctl_value(cval, cval->control << 8, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 return 1;
2089 }
2090 return 0;
2091}
2092
2093/* alsa control interface for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002094static struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2096 .name = "", /* will be filled later */
2097 .info = mixer_ctl_selector_info,
2098 .get = mixer_ctl_selector_get,
2099 .put = mixer_ctl_selector_put,
2100};
2101
Daniel Mack6bc170e2014-05-24 10:58:16 +02002102/*
2103 * private free callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 * free both private_data and private_value
2105 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002106static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107{
2108 int i, num_ins = 0;
2109
2110 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002111 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 num_ins = cval->max;
2113 kfree(cval);
2114 kctl->private_data = NULL;
2115 }
2116 if (kctl->private_value) {
2117 char **itemlist = (char **)kctl->private_value;
2118 for (i = 0; i < num_ins; i++)
2119 kfree(itemlist[i]);
2120 kfree(itemlist);
2121 kctl->private_value = 0;
2122 }
2123}
2124
2125/*
2126 * parse a selector unit
2127 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002128static int parse_audio_selector_unit(struct mixer_build *state, int unitid,
2129 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
Daniel Mack99fc8642010-03-11 21:13:24 +01002131 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 unsigned int i, nameid, len;
2133 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002134 struct usb_mixer_elem_info *cval;
2135 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002136 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 char **namelist;
2138
Takashi Iwai23353222017-11-21 17:00:32 +01002139 if (desc->bLength < 5 || !desc->bNrInPins ||
2140 desc->bLength < 5 + desc->bNrInPins) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002141 usb_audio_err(state->chip,
2142 "invalid SELECTOR UNIT descriptor %d\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 return -EINVAL;
2144 }
2145
Daniel Mack99fc8642010-03-11 21:13:24 +01002146 for (i = 0; i < desc->bNrInPins; i++) {
2147 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return err;
2149 }
2150
Daniel Mack99fc8642010-03-11 21:13:24 +01002151 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 return 0;
2153
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002154 map = find_map(state, unitid, 0);
2155 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return 0;
2157
Takashi Iwai561b2202005-09-09 14:22:34 +02002158 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02002159 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 return -ENOMEM;
Takashi Iwai3360b842014-11-18 11:47:04 +01002161 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 cval->val_type = USB_MIXER_U8;
2163 cval->channels = 1;
2164 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01002165 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 cval->res = 1;
2167 cval->initialized = 1;
2168
Johan Rasténa358a0e2014-11-17 08:39:33 +01002169 if (state->mixer->protocol == UAC_VERSION_1)
Daniel Mack09414202010-05-31 13:35:44 +02002170 cval->control = 0;
Johan Rasténa358a0e2014-11-17 08:39:33 +01002171 else /* UAC_VERSION_2 */
2172 cval->control = (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR) ?
2173 UAC2_CX_CLOCK_SELECTOR : UAC2_SU_SELECTOR;
Daniel Mack09414202010-05-31 13:35:44 +02002174
Daniel Mack99fc8642010-03-11 21:13:24 +01002175 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002176 if (!namelist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 kfree(cval);
2178 return -ENOMEM;
2179 }
2180#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01002181 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002182 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 len = 0;
2184 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002185 if (!namelist[i]) {
Mariusz Kozlowski7fbe3ca2007-01-08 11:25:30 +01002186 while (i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 kfree(namelist[i]);
2188 kfree(namelist);
2189 kfree(cval);
2190 return -ENOMEM;
2191 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002192 len = check_mapped_selector_name(state, unitid, i, namelist[i],
2193 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01002194 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
2196 if (! len)
Masanari Iidaaf831ee2014-04-28 13:08:55 +09002197 sprintf(namelist[i], "Input %u", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
2199
2200 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
2201 if (! kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002202 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Wenwen Wangf934bf32019-04-27 01:06:46 -05002203 for (i = 0; i < desc->bNrInPins; i++)
2204 kfree(namelist[i]);
Jesper Juhl878b4782006-03-20 11:27:13 +01002205 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 kfree(cval);
2207 return -ENOMEM;
2208 }
2209 kctl->private_value = (unsigned long)namelist;
2210 kctl->private_free = usb_mixer_selector_elem_free;
2211
Takashi Iwai31760652017-12-18 23:36:57 +01002212 /* check the static mapping table at first */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002213 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Jaejoong Kim173c8c32017-12-04 15:31:49 +09002214 if (!len) {
Takashi Iwai31760652017-12-18 23:36:57 +01002215 /* no mapping ? */
2216 /* if iSelector is given, use it */
2217 nameid = uac_selector_unit_iSelector(desc);
2218 if (nameid)
2219 len = snd_usb_copy_string_desc(state, nameid,
2220 kctl->id.name,
2221 sizeof(kctl->id.name));
2222 /* ... or pick up the terminal name at next */
2223 if (!len)
2224 len = get_term_name(state, &state->oterm,
2225 kctl->id.name, sizeof(kctl->id.name), 0);
2226 /* ... or use the fixed string "USB" as the last resort */
2227 if (!len)
2228 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Takashi Iwai31760652017-12-18 23:36:57 +01002230 /* and add the proper suffix */
Daniel Mack09414202010-05-31 13:35:44 +02002231 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2232 append_ctl_name(kctl, " Clock Source");
2233 else if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02002234 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02002236 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
2238
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002239 usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01002240 cval->head.id, kctl->id.name, desc->bNrInPins);
2241 return snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242}
2243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244/*
2245 * parse an audio unit recursively
2246 */
2247
Takashi Iwai86e07d32005-11-17 15:08:02 +01002248static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249{
2250 unsigned char *p1;
2251
2252 if (test_and_set_bit(unitid, state->unitbitmap))
2253 return 0; /* the unit already visited */
2254
2255 p1 = find_audio_control_unit(state, unitid);
2256 if (!p1) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002257 usb_audio_err(state->chip, "unit %d not found!\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 return -EINVAL;
2259 }
2260
2261 switch (p1[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01002262 case UAC_INPUT_TERMINAL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 return 0; /* NOP */
Daniel Mackde48c7b2010-02-22 23:49:13 +01002264 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 return parse_audio_mixer_unit(state, unitid, p1);
Daniel Mackcddaafb2016-04-09 11:21:46 +02002266 case UAC2_CLOCK_SOURCE:
2267 return parse_clock_source_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01002268 case UAC_SELECTOR_UNIT:
Daniel Mack09414202010-05-31 13:35:44 +02002269 case UAC2_CLOCK_SELECTOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 return parse_audio_selector_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01002271 case UAC_FEATURE_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 return parse_audio_feature_unit(state, unitid, p1);
Daniel Mack69da9bc2010-06-16 17:57:28 +02002273 case UAC1_PROCESSING_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002274 /* UAC2_EFFECT_UNIT has the same value */
2275 if (state->mixer->protocol == UAC_VERSION_1)
2276 return parse_audio_processing_unit(state, unitid, p1);
2277 else
2278 return 0; /* FIXME - effect units not implemented yet */
Daniel Mack69da9bc2010-06-16 17:57:28 +02002279 case UAC1_EXTENSION_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002280 /* UAC2_PROCESSING_UNIT_V2 has the same value */
2281 if (state->mixer->protocol == UAC_VERSION_1)
2282 return parse_audio_extension_unit(state, unitid, p1);
2283 else /* UAC_VERSION_2 */
2284 return parse_audio_processing_unit(state, unitid, p1);
Torstein Hegge61ac5132013-03-19 17:12:14 +01002285 case UAC2_EXTENSION_UNIT_V2:
2286 return parse_audio_extension_unit(state, unitid, p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002288 usb_audio_err(state->chip,
2289 "unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 return -EINVAL;
2291 }
2292}
2293
Clemens Ladisch84957a82005-04-29 16:23:13 +02002294static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
2295{
Takashi Iwaie0c70282017-10-10 14:10:32 +02002296 /* kill pending URBs */
2297 snd_usb_mixer_disconnect(mixer);
2298
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002299 kfree(mixer->id_elems);
2300 if (mixer->urb) {
2301 kfree(mixer->urb->transfer_buffer);
2302 usb_free_urb(mixer->urb);
2303 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002304 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02002305 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002306 kfree(mixer);
2307}
2308
Takashi Iwai86e07d32005-11-17 15:08:02 +01002309static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002310{
2311 struct usb_mixer_interface *mixer = device->device_data;
2312 snd_usb_mixer_free(mixer);
2313 return 0;
2314}
2315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316/*
2317 * create mixer controls
2318 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01002319 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02002321static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002323 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 int err;
2325 const struct usbmix_ctl_map *map;
Daniel Mack23caaf12010-03-11 21:13:25 +01002326 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02002329 state.chip = mixer->chip;
2330 state.mixer = mixer;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002331 state.buffer = mixer->hostif->extra;
2332 state.buflen = mixer->hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
2334 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002335 for (map = usbmix_ctl_maps; map->id; map++) {
2336 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002338 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002339 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 break;
2341 }
2342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Daniel Mack23caaf12010-03-11 21:13:25 +01002344 p = NULL;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002345 while ((p = snd_usb_find_csint_desc(mixer->hostif->extra,
2346 mixer->hostif->extralen,
Daniel Mack1faa5d02011-08-04 15:56:28 +02002347 p, UAC_OUTPUT_TERMINAL)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002348 if (mixer->protocol == UAC_VERSION_1) {
Daniel Mack69da9bc2010-06-16 17:57:28 +02002349 struct uac1_output_terminal_descriptor *desc = p;
Daniel Mack23caaf12010-03-11 21:13:25 +01002350
2351 if (desc->bLength < sizeof(*desc))
2352 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002353 /* mark terminal ID as visited */
2354 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002355 state.oterm.id = desc->bTerminalID;
2356 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2357 state.oterm.name = desc->iTerminal;
2358 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002359 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002360 return err;
2361 } else { /* UAC_VERSION_2 */
2362 struct uac2_output_terminal_descriptor *desc = p;
2363
2364 if (desc->bLength < sizeof(*desc))
2365 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002366 /* mark terminal ID as visited */
2367 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002368 state.oterm.id = desc->bTerminalID;
2369 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2370 state.oterm.name = desc->iTerminal;
2371 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002372 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002373 return err;
Daniel Mack09414202010-05-31 13:35:44 +02002374
Daniel Mack6bc170e2014-05-24 10:58:16 +02002375 /*
2376 * For UAC2, use the same approach to also add the
2377 * clock selectors
2378 */
Daniel Mack09414202010-05-31 13:35:44 +02002379 err = parse_audio_unit(&state, desc->bCSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002380 if (err < 0 && err != -EINVAL)
Daniel Mack09414202010-05-31 13:35:44 +02002381 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +01002382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 }
Daniel Mack23caaf12010-03-11 21:13:25 +01002384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 return 0;
2386}
Clemens Ladisch84957a82005-04-29 16:23:13 +02002387
Daniel Mack7b1eda22010-03-11 21:13:22 +01002388void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002389{
Takashi Iwai3360b842014-11-18 11:47:04 +01002390 struct usb_mixer_elem_list *list;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002391
Takashi Iwai3360b842014-11-18 11:47:04 +01002392 for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002393 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
Takashi Iwai3360b842014-11-18 11:47:04 +01002394 &list->kctl->id);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002395}
2396
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002397static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
Takashi Iwai3360b842014-11-18 11:47:04 +01002398 struct usb_mixer_elem_list *list)
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002399{
Takashi Iwai3360b842014-11-18 11:47:04 +01002400 struct usb_mixer_elem_info *cval = (struct usb_mixer_elem_info *)list;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002401 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
2402 "S8", "U8", "S16", "U16"};
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002403 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
Takashi Iwai3360b842014-11-18 11:47:04 +01002404 "channels=%i, type=\"%s\"\n", cval->head.id,
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002405 cval->control, cval->cmask, cval->channels,
2406 val_types[cval->val_type]);
2407 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
2408 cval->min, cval->max, cval->dBmin, cval->dBmax);
2409}
2410
2411static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
2412 struct snd_info_buffer *buffer)
2413{
2414 struct snd_usb_audio *chip = entry->private_data;
2415 struct usb_mixer_interface *mixer;
Takashi Iwai3360b842014-11-18 11:47:04 +01002416 struct usb_mixer_elem_list *list;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002417 int unitid;
2418
2419 list_for_each_entry(mixer, &chip->mixer_list, list) {
2420 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002421 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
Daniel Mack3d8d4dc2010-06-16 17:57:31 +02002422 chip->usb_id, snd_usb_ctrl_intf(chip),
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002423 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002424 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
2425 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
Takashi Iwai3360b842014-11-18 11:47:04 +01002426 for (list = mixer->id_elems[unitid]; list;
2427 list = list->next_id_elem) {
2428 snd_iprintf(buffer, " Unit: %i\n", list->id);
2429 if (list->kctl)
2430 snd_iprintf(buffer,
2431 " Control: name=\"%s\", index=%i\n",
2432 list->kctl->id.name,
2433 list->kctl->id.index);
2434 if (list->dump)
2435 list->dump(buffer, list);
2436 }
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002437 }
2438 }
2439}
2440
Daniel Macke213e9c2010-05-11 18:13:50 +02002441static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
2442 int attribute, int value, int index)
2443{
Takashi Iwai3360b842014-11-18 11:47:04 +01002444 struct usb_mixer_elem_list *list;
Daniel Macke213e9c2010-05-11 18:13:50 +02002445 __u8 unitid = (index >> 8) & 0xff;
2446 __u8 control = (value >> 8) & 0xff;
2447 __u8 channel = value & 0xff;
Daniel Mack191227d2016-04-08 19:52:02 +02002448 unsigned int count = 0;
Daniel Macke213e9c2010-05-11 18:13:50 +02002449
2450 if (channel >= MAX_CHANNELS) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002451 usb_audio_dbg(mixer->chip,
2452 "%s(): bogus channel number %d\n",
2453 __func__, channel);
Daniel Macke213e9c2010-05-11 18:13:50 +02002454 return;
2455 }
2456
Daniel Mack191227d2016-04-08 19:52:02 +02002457 for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem)
2458 count++;
2459
2460 if (count == 0)
2461 return;
2462
Takashi Iwai3360b842014-11-18 11:47:04 +01002463 for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem) {
2464 struct usb_mixer_elem_info *info;
2465
2466 if (!list->kctl)
2467 continue;
2468
2469 info = (struct usb_mixer_elem_info *)list;
Daniel Mack191227d2016-04-08 19:52:02 +02002470 if (count > 1 && info->control != control)
Daniel Macke213e9c2010-05-11 18:13:50 +02002471 continue;
2472
2473 switch (attribute) {
2474 case UAC2_CS_CUR:
2475 /* invalidate cache, so the value is read from the device */
2476 if (channel)
2477 info->cached &= ~(1 << channel);
2478 else /* master channel */
2479 info->cached = 0;
2480
2481 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
Takashi Iwai3360b842014-11-18 11:47:04 +01002482 &info->head.kctl->id);
Daniel Macke213e9c2010-05-11 18:13:50 +02002483 break;
2484
2485 case UAC2_CS_RANGE:
2486 /* TODO */
2487 break;
2488
2489 case UAC2_CS_MEM:
2490 /* TODO */
2491 break;
2492
2493 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002494 usb_audio_dbg(mixer->chip,
2495 "unknown attribute %d in interrupt\n",
2496 attribute);
Daniel Macke213e9c2010-05-11 18:13:50 +02002497 break;
2498 } /* switch */
2499 }
2500}
2501
2502static void snd_usb_mixer_interrupt(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002503{
2504 struct usb_mixer_interface *mixer = urb->context;
Daniel Macke213e9c2010-05-11 18:13:50 +02002505 int len = urb->actual_length;
Oliver Neukumedf7de32011-03-11 13:19:43 +01002506 int ustatus = urb->status;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002507
Oliver Neukumedf7de32011-03-11 13:19:43 +01002508 if (ustatus != 0)
Daniel Macke213e9c2010-05-11 18:13:50 +02002509 goto requeue;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002510
Daniel Macke213e9c2010-05-11 18:13:50 +02002511 if (mixer->protocol == UAC_VERSION_1) {
2512 struct uac1_status_word *status;
2513
2514 for (status = urb->transfer_buffer;
2515 len >= sizeof(*status);
2516 len -= sizeof(*status), status++) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002517 dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n",
Daniel Macke213e9c2010-05-11 18:13:50 +02002518 status->bStatusType,
2519 status->bOriginator);
2520
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002521 /* ignore any notifications not from the control interface */
Daniel Macke213e9c2010-05-11 18:13:50 +02002522 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2523 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002524 continue;
Daniel Macke213e9c2010-05-11 18:13:50 +02002525
2526 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2527 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
Clemens Ladischb259b102005-04-29 16:29:28 +02002528 else
Daniel Macke213e9c2010-05-11 18:13:50 +02002529 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2530 }
2531 } else { /* UAC_VERSION_2 */
2532 struct uac2_interrupt_data_msg *msg;
2533
2534 for (msg = urb->transfer_buffer;
2535 len >= sizeof(*msg);
2536 len -= sizeof(*msg), msg++) {
2537 /* drop vendor specific and endpoint requests */
2538 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2539 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2540 continue;
2541
2542 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2543 le16_to_cpu(msg->wValue),
2544 le16_to_cpu(msg->wIndex));
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002545 }
2546 }
Daniel Macke213e9c2010-05-11 18:13:50 +02002547
2548requeue:
Daniel Mack6bc170e2014-05-24 10:58:16 +02002549 if (ustatus != -ENOENT &&
2550 ustatus != -ECONNRESET &&
2551 ustatus != -ESHUTDOWN) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002552 urb->dev = mixer->chip->dev;
2553 usb_submit_urb(urb, GFP_ATOMIC);
2554 }
2555}
2556
2557/* create the handler for the optional status interrupt endpoint */
2558static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2559{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002560 struct usb_endpoint_descriptor *ep;
2561 void *transfer_buffer;
2562 int buffer_length;
2563 unsigned int epnum;
2564
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002565 /* we need one interrupt input endpoint */
Daniel Mack1faa5d02011-08-04 15:56:28 +02002566 if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002567 return 0;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002568 ep = get_endpoint(mixer->hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01002569 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002570 return 0;
2571
Julia Lawall42a6e662008-12-29 11:23:02 +01002572 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002573 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2574 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2575 if (!transfer_buffer)
2576 return -ENOMEM;
2577 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2578 if (!mixer->urb) {
2579 kfree(transfer_buffer);
2580 return -ENOMEM;
2581 }
2582 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2583 usb_rcvintpipe(mixer->chip->dev, epnum),
2584 transfer_buffer, buffer_length,
Daniel Macke213e9c2010-05-11 18:13:50 +02002585 snd_usb_mixer_interrupt, mixer, ep->bInterval);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002586 usb_submit_urb(mixer->urb, GFP_KERNEL);
2587 return 0;
2588}
2589
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002590int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2591 int ignore_error)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002592{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002593 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002594 .dev_free = snd_usb_mixer_dev_free
2595 };
2596 struct usb_mixer_interface *mixer;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002597 struct snd_info_entry *entry;
Daniel Mack23caaf12010-03-11 21:13:25 +01002598 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002599
2600 strcpy(chip->card->mixername, "USB Mixer");
2601
Takashi Iwai561b2202005-09-09 14:22:34 +02002602 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002603 if (!mixer)
2604 return -ENOMEM;
2605 mixer->chip = chip;
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002606 mixer->ignore_ctl_error = ignore_error;
Jaroslav Kysela291186e2010-02-16 11:55:18 +01002607 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2608 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002609 if (!mixer->id_elems) {
2610 kfree(mixer);
2611 return -ENOMEM;
2612 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002613
Daniel Mack1faa5d02011-08-04 15:56:28 +02002614 mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
2615 switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +02002616 case UAC_VERSION_1:
2617 default:
2618 mixer->protocol = UAC_VERSION_1;
2619 break;
2620 case UAC_VERSION_2:
2621 mixer->protocol = UAC_VERSION_2;
2622 break;
2623 }
Daniel Mack7b8a0432010-02-22 23:49:12 +01002624
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002625 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002626 (err = snd_usb_mixer_status_create(mixer)) < 0)
2627 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002628
Daniel Mack7b1eda22010-03-11 21:13:22 +01002629 snd_usb_mixer_apply_create_quirk(mixer);
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02002630
Takashi Iwai9cbb2802014-02-04 11:15:31 +01002631 err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002632 if (err < 0)
2633 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002634
2635 if (list_empty(&chip->mixer_list) &&
2636 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2637 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2638
Clemens Ladisch84957a82005-04-29 16:23:13 +02002639 list_add(&mixer->list, &chip->mixer_list);
2640 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002641
2642_error:
2643 snd_usb_mixer_free(mixer);
2644 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002645}
2646
Takashi Iwaia6cece92014-10-31 11:24:32 +01002647void snd_usb_mixer_disconnect(struct usb_mixer_interface *mixer)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002648{
Takashi Iwaie0c70282017-10-10 14:10:32 +02002649 if (mixer->disconnected)
2650 return;
2651 if (mixer->urb)
2652 usb_kill_urb(mixer->urb);
2653 if (mixer->rc_urb)
2654 usb_kill_urb(mixer->rc_urb);
2655 mixer->disconnected = true;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002656}
Takashi Iwai400362f2014-01-20 16:51:16 +01002657
2658#ifdef CONFIG_PM
2659/* stop any bus activity of a mixer */
2660static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
2661{
2662 usb_kill_urb(mixer->urb);
2663 usb_kill_urb(mixer->rc_urb);
2664}
2665
2666static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
2667{
2668 int err;
2669
2670 if (mixer->urb) {
2671 err = usb_submit_urb(mixer->urb, GFP_NOIO);
2672 if (err < 0)
2673 return err;
2674 }
2675
2676 return 0;
2677}
2678
2679int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer)
2680{
2681 snd_usb_mixer_inactivate(mixer);
2682 return 0;
2683}
2684
Takashi Iwai3360b842014-11-18 11:47:04 +01002685static int restore_mixer_value(struct usb_mixer_elem_list *list)
Takashi Iwai400362f2014-01-20 16:51:16 +01002686{
Takashi Iwai3360b842014-11-18 11:47:04 +01002687 struct usb_mixer_elem_info *cval = (struct usb_mixer_elem_info *)list;
Takashi Iwai400362f2014-01-20 16:51:16 +01002688 int c, err, idx;
2689
2690 if (cval->cmask) {
2691 idx = 0;
2692 for (c = 0; c < MAX_CHANNELS; c++) {
2693 if (!(cval->cmask & (1 << c)))
2694 continue;
Yao-Wen Mao6aa69252015-08-28 16:33:25 +08002695 if (cval->cached & (1 << (c + 1))) {
Chris J Argeseef90452014-11-12 12:07:01 -06002696 err = snd_usb_set_cur_mix_value(cval, c + 1, idx,
Takashi Iwai400362f2014-01-20 16:51:16 +01002697 cval->cache_val[idx]);
2698 if (err < 0)
2699 return err;
2700 }
2701 idx++;
2702 }
2703 } else {
2704 /* master */
2705 if (cval->cached) {
Chris J Argeseef90452014-11-12 12:07:01 -06002706 err = snd_usb_set_cur_mix_value(cval, 0, 0, *cval->cache_val);
Takashi Iwai400362f2014-01-20 16:51:16 +01002707 if (err < 0)
2708 return err;
2709 }
2710 }
2711
2712 return 0;
2713}
2714
2715int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume)
2716{
Takashi Iwai3360b842014-11-18 11:47:04 +01002717 struct usb_mixer_elem_list *list;
Takashi Iwai400362f2014-01-20 16:51:16 +01002718 int id, err;
2719
Takashi Iwai400362f2014-01-20 16:51:16 +01002720 if (reset_resume) {
2721 /* restore cached mixer values */
2722 for (id = 0; id < MAX_ID_ELEMS; id++) {
Takashi Iwai3360b842014-11-18 11:47:04 +01002723 for (list = mixer->id_elems[id]; list;
2724 list = list->next_id_elem) {
2725 if (list->resume) {
2726 err = list->resume(list);
2727 if (err < 0)
2728 return err;
2729 }
Takashi Iwai400362f2014-01-20 16:51:16 +01002730 }
2731 }
2732 }
2733
2734 return snd_usb_mixer_activate(mixer);
2735}
2736#endif
Takashi Iwai3360b842014-11-18 11:47:04 +01002737
2738void snd_usb_mixer_elem_init_std(struct usb_mixer_elem_list *list,
2739 struct usb_mixer_interface *mixer,
2740 int unitid)
2741{
2742 list->mixer = mixer;
2743 list->id = unitid;
2744 list->dump = snd_usb_mixer_dump_cval;
2745#ifdef CONFIG_PM
2746 list->resume = restore_mixer_value;
2747#endif
2748}