blob: bb5ab7a7dfa58b0d21cb08acfeff2cca29ba7865 [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>
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +020054#include <linux/usb/audio-v3.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <sound/core.h>
57#include <sound/control.h>
Clemens Ladischb259b102005-04-29 16:29:28 +020058#include <sound/hwdep.h>
Clemens Ladischaafad562005-05-10 14:47:38 +020059#include <sound/info.h>
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +020060#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#include "usbaudio.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010063#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010064#include "helper.h"
Daniel Mack7b1eda22010-03-11 21:13:22 +010065#include "mixer_quirks.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010066#include "power.h"
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +020067
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +010068#define MAX_ID_ELEMS 256
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070struct usb_audio_term {
71 int id;
72 int type;
73 int channels;
74 unsigned int chconfig;
75 int name;
76};
77
78struct usbmix_name_map;
79
Takashi Iwai86e07d32005-11-17 15:08:02 +010080struct mixer_build {
81 struct snd_usb_audio *chip;
Clemens Ladisch84957a82005-04-29 16:23:13 +020082 struct usb_mixer_interface *mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 unsigned char *buffer;
84 unsigned int buflen;
Jaroslav Kysela291186e2010-02-16 11:55:18 +010085 DECLARE_BITMAP(unitbitmap, 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 &&
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200193 hdr->bDescriptorSubtype <= UAC3_SAMPLE_RATE_CONVERTER &&
Daniel Mack67e1daa2010-05-31 13:35:43 +0200194 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 Kim251552a2017-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);
Stephen Barber5a9a8ec2017-08-17 15:17:46 -0700326 err = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
327 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
328 validx, idx, buf, val_len);
329 if (err >= val_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
Takashi Iwai978520b2012-10-12 15:12:55 +0200331 err = 0;
332 goto out;
Stephen Barber5a9a8ec2017-08-17 15:17:46 -0700333 } else if (err == -ETIMEDOUT) {
334 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100337 usb_audio_dbg(chip,
338 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
339 request, validx, idx, cval->val_type);
Takashi Iwai978520b2012-10-12 15:12:55 +0200340 err = -EINVAL;
341
342 out:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200343 snd_usb_unlock_shutdown(chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200344 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Daniel Mack6bc170e2014-05-24 10:58:16 +0200347static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request,
348 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100349{
Takashi Iwai3360b842014-11-18 11:47:04 +0100350 struct snd_usb_audio *chip = cval->head.mixer->chip;
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100351 /* enough space for one range */
352 unsigned char buf[sizeof(__u16) + 3 * sizeof(__u32)];
Daniel Mack23caaf12010-03-11 21:13:25 +0100353 unsigned char *val;
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100354 int idx = 0, ret, val_size, size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100355 __u8 bRequest;
356
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100357 val_size = uac2_ctl_value_size(cval->val_type);
358
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200359 if (request == UAC_GET_CUR) {
360 bRequest = UAC2_CS_CUR;
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100361 size = val_size;
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200362 } else {
363 bRequest = UAC2_CS_RANGE;
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100364 size = sizeof(__u16) + 3 * val_size;
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200365 }
366
367 memset(buf, 0, sizeof(buf));
Daniel Mack23caaf12010-03-11 21:13:25 +0100368
Takashi Iwai47ab1542015-08-25 16:09:00 +0200369 ret = snd_usb_lock_shutdown(chip) ? -EIO : 0;
Oliver Neukum88a85162011-03-11 14:51:12 +0100370 if (ret)
371 goto error;
372
Takashi Iwai47ab1542015-08-25 16:09:00 +0200373 idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8);
374 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
Daniel Mack23caaf12010-03-11 21:13:25 +0100375 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Takashi Iwai978520b2012-10-12 15:12:55 +0200376 validx, idx, buf, size);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200377 snd_usb_unlock_shutdown(chip);
Daniel Mack23caaf12010-03-11 21:13:25 +0100378
379 if (ret < 0) {
Oliver Neukum88a85162011-03-11 14:51:12 +0100380error:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100381 usb_audio_err(chip,
382 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
383 request, validx, idx, cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100384 return ret;
385 }
386
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200387 /* FIXME: how should we handle multiple triplets here? */
388
Daniel Mack23caaf12010-03-11 21:13:25 +0100389 switch (request) {
390 case UAC_GET_CUR:
391 val = buf;
392 break;
393 case UAC_GET_MIN:
394 val = buf + sizeof(__u16);
395 break;
396 case UAC_GET_MAX:
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100397 val = buf + sizeof(__u16) + val_size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100398 break;
399 case UAC_GET_RES:
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100400 val = buf + sizeof(__u16) + val_size * 2;
Daniel Mack23caaf12010-03-11 21:13:25 +0100401 break;
402 default:
403 return -EINVAL;
404 }
405
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100406 *value_ret = convert_signed_value(cval,
407 snd_usb_combine_bytes(val, val_size));
Daniel Mack23caaf12010-03-11 21:13:25 +0100408
409 return 0;
410}
411
Daniel Mack6bc170e2014-05-24 10:58:16 +0200412static int get_ctl_value(struct usb_mixer_elem_info *cval, int request,
413 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100414{
Eldad Zack9f814102012-11-28 23:55:35 +0100415 validx += cval->idx_off;
416
Takashi Iwai3360b842014-11-18 11:47:04 +0100417 return (cval->head.mixer->protocol == UAC_VERSION_1) ?
Daniel Mack23caaf12010-03-11 21:13:25 +0100418 get_ctl_value_v1(cval, request, validx, value_ret) :
419 get_ctl_value_v2(cval, request, validx, value_ret);
420}
421
Daniel Mack6bc170e2014-05-24 10:58:16 +0200422static int get_cur_ctl_value(struct usb_mixer_elem_info *cval,
423 int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100425 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428/* channel = 0: master, 1 = first channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100429static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
430 int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Daniel Mack6bc170e2014-05-24 10:58:16 +0200432 return get_ctl_value(cval, UAC_GET_CUR,
433 (cval->control << 8) | channel,
434 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Chris J Argeseef90452014-11-12 12:07:01 -0600437int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info *cval,
Takashi Iwai641b4872009-01-15 17:05:24 +0100438 int channel, int index, int *value)
439{
440 int err;
441
442 if (cval->cached & (1 << channel)) {
443 *value = cval->cache_val[index];
444 return 0;
445 }
446 err = get_cur_mix_raw(cval, channel, value);
447 if (err < 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100448 if (!cval->head.mixer->ignore_ctl_error)
449 usb_audio_dbg(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100450 "cannot get current value for control %d ch %d: err = %d\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200451 cval->control, channel, err);
Takashi Iwai641b4872009-01-15 17:05:24 +0100452 return err;
453 }
454 cval->cached |= 1 << channel;
455 cval->cache_val[index] = *value;
456 return 0;
457}
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/*
460 * set a mixer value
461 */
462
Daniel Mack7b1eda22010-03-11 21:13:22 +0100463int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
464 int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Takashi Iwai3360b842014-11-18 11:47:04 +0100466 struct snd_usb_audio *chip = cval->head.mixer->chip;
Julian Scheelbc18e312015-08-14 16:14:45 +0200467 unsigned char buf[4];
Takashi Iwai978520b2012-10-12 15:12:55 +0200468 int idx = 0, val_len, err, timeout = 10;
Daniel Mack23caaf12010-03-11 21:13:25 +0100469
Eldad Zack9f814102012-11-28 23:55:35 +0100470 validx += cval->idx_off;
471
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200472
Takashi Iwai3360b842014-11-18 11:47:04 +0100473 if (cval->head.mixer->protocol == UAC_VERSION_1) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100474 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200475 } else { /* UAC_VERSION_2/3 */
Julian Scheelbc18e312015-08-14 16:14:45 +0200476 val_len = uac2_ctl_value_size(cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100477
478 /* FIXME */
479 if (request != UAC_SET_CUR) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100480 usb_audio_dbg(chip, "RANGE setting not yet supported\n");
Daniel Mack23caaf12010-03-11 21:13:25 +0100481 return -EINVAL;
482 }
483
484 request = UAC2_CS_CUR;
485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 value_set = convert_bytes_value(cval, value_set);
488 buf[0] = value_set & 0xff;
489 buf[1] = (value_set >> 8) & 0xff;
Julian Scheelbc18e312015-08-14 16:14:45 +0200490 buf[2] = (value_set >> 16) & 0xff;
491 buf[3] = (value_set >> 24) & 0xff;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200492
493 err = snd_usb_lock_shutdown(chip);
Oliver Neukum88a85162011-03-11 14:51:12 +0100494 if (err < 0)
495 return -EIO;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200496
Takashi Iwai978520b2012-10-12 15:12:55 +0200497 while (timeout-- > 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100498 idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8);
Stephen Barber5a9a8ec2017-08-17 15:17:46 -0700499 err = snd_usb_ctl_msg(chip->dev,
500 usb_sndctrlpipe(chip->dev, 0), request,
501 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
502 validx, idx, buf, val_len);
503 if (err >= 0) {
Takashi Iwai978520b2012-10-12 15:12:55 +0200504 err = 0;
505 goto out;
Stephen Barber5a9a8ec2017-08-17 15:17:46 -0700506 } else if (err == -ETIMEDOUT) {
507 goto out;
Oliver Neukum88a85162011-03-11 14:51:12 +0100508 }
Takashi Iwai978520b2012-10-12 15:12:55 +0200509 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100510 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 +0200511 request, validx, idx, cval->val_type, buf[0], buf[1]);
Takashi Iwai978520b2012-10-12 15:12:55 +0200512 err = -EINVAL;
513
514 out:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200515 snd_usb_unlock_shutdown(chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200516 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Daniel Mack6bc170e2014-05-24 10:58:16 +0200519static int set_cur_ctl_value(struct usb_mixer_elem_info *cval,
520 int validx, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Daniel Mack7b1eda22010-03-11 21:13:22 +0100522 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Chris J Argeseef90452014-11-12 12:07:01 -0600525int snd_usb_set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
Takashi Iwai641b4872009-01-15 17:05:24 +0100526 int index, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Takashi Iwai641b4872009-01-15 17:05:24 +0100528 int err;
Daniel Macka6a33252010-05-31 13:35:37 +0200529 unsigned int read_only = (channel == 0) ?
530 cval->master_readonly :
531 cval->ch_readonly & (1 << (channel - 1));
532
533 if (read_only) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100534 usb_audio_dbg(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100535 "%s(): channel %d of control %d is read_only\n",
Daniel Macka6a33252010-05-31 13:35:37 +0200536 __func__, channel, cval->control);
537 return 0;
538 }
539
Daniel Mack6bc170e2014-05-24 10:58:16 +0200540 err = snd_usb_mixer_set_ctl_value(cval,
541 UAC_SET_CUR, (cval->control << 8) | channel,
542 value);
Takashi Iwai641b4872009-01-15 17:05:24 +0100543 if (err < 0)
544 return err;
545 cval->cached |= 1 << channel;
546 cval->cache_val[index] = value;
547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200550/*
551 * TLV callback for mixer volume controls
552 */
Felix Homann285de9c2012-04-23 20:24:24 +0200553int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200554 unsigned int size, unsigned int __user *_tlv)
555{
556 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Takashi Iwaib8e1c732009-06-16 14:04:37 +0200557 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200558
559 if (size < sizeof(scale))
560 return -ENOMEM;
Takashi Iwai0f174b32017-08-16 14:18:37 +0200561 if (cval->min_mute)
562 scale[0] = SNDRV_CTL_TLVT_DB_MINMAX_MUTE;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100563 scale[2] = cval->dBmin;
564 scale[3] = cval->dBmax;
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200565 if (copy_to_user(_tlv, scale, sizeof(scale)))
566 return -EFAULT;
567 return 0;
568}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570/*
571 * parser routines begin here...
572 */
573
Takashi Iwai86e07d32005-11-17 15:08:02 +0100574static int parse_audio_unit(struct mixer_build *state, int unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576
577/*
578 * check if the input/output channel routing is enabled on the given bitmap.
579 * used for mixer unit parser
580 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200581static int check_matrix_bitmap(unsigned char *bmap,
582 int ich, int och, int num_outs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 int idx = ich * num_outs + och;
585 return bmap[idx >> 3] & (0x80 >> (idx & 7));
586}
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588/*
589 * add an alsa control element
590 * search and increment the index until an empty slot is found.
591 *
592 * if failed, give up and free the control instance.
593 */
594
Takashi Iwai3360b842014-11-18 11:47:04 +0100595int snd_usb_mixer_add_control(struct usb_mixer_elem_list *list,
Daniel Mackef9d5972011-05-25 09:09:00 +0200596 struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Takashi Iwai3360b842014-11-18 11:47:04 +0100598 struct usb_mixer_interface *mixer = list->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200600
Daniel Mackef9d5972011-05-25 09:09:00 +0200601 while (snd_ctl_find_id(mixer->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 kctl->id.index++;
Daniel Mackef9d5972011-05-25 09:09:00 +0200603 if ((err = snd_ctl_add(mixer->chip->card, kctl)) < 0) {
Daniel Mack6bc170e2014-05-24 10:58:16 +0200604 usb_audio_dbg(mixer->chip, "cannot add control (err = %d)\n",
605 err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200606 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Takashi Iwai3360b842014-11-18 11:47:04 +0100608 list->kctl = kctl;
609 list->next_id_elem = mixer->id_elems[list->id];
610 mixer->id_elems[list->id] = list;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200611 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/*
615 * get a terminal name string
616 */
617
618static struct iterm_name_combo {
619 int type;
620 char *name;
621} iterm_names[] = {
622 { 0x0300, "Output" },
623 { 0x0301, "Speaker" },
624 { 0x0302, "Headphone" },
625 { 0x0303, "HMD Audio" },
626 { 0x0304, "Desktop Speaker" },
627 { 0x0305, "Room Speaker" },
628 { 0x0306, "Com Speaker" },
629 { 0x0307, "LFE" },
630 { 0x0600, "External In" },
631 { 0x0601, "Analog In" },
632 { 0x0602, "Digital In" },
633 { 0x0603, "Line" },
634 { 0x0604, "Legacy In" },
635 { 0x0605, "IEC958 In" },
636 { 0x0606, "1394 DA Stream" },
637 { 0x0607, "1394 DV Stream" },
638 { 0x0700, "Embedded" },
639 { 0x0701, "Noise Source" },
640 { 0x0702, "Equalization Noise" },
641 { 0x0703, "CD" },
642 { 0x0704, "DAT" },
643 { 0x0705, "DCC" },
644 { 0x0706, "MiniDisk" },
645 { 0x0707, "Analog Tape" },
646 { 0x0708, "Phonograph" },
647 { 0x0709, "VCR Audio" },
648 { 0x070a, "Video Disk Audio" },
649 { 0x070b, "DVD Audio" },
650 { 0x070c, "TV Tuner Audio" },
651 { 0x070d, "Satellite Rec Audio" },
652 { 0x070e, "Cable Tuner Audio" },
653 { 0x070f, "DSS Audio" },
654 { 0x0710, "Radio Receiver" },
655 { 0x0711, "Radio Transmitter" },
656 { 0x0712, "Multi-Track Recorder" },
657 { 0x0713, "Synthesizer" },
658 { 0 },
659};
660
Takashi Iwai86e07d32005-11-17 15:08:02 +0100661static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 unsigned char *name, int maxlen, int term_only)
663{
664 struct iterm_name_combo *names;
Takashi Iwai56a23ee2017-12-19 13:38:23 +0100665 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Takashi Iwai56a23ee2017-12-19 13:38:23 +0100667 if (iterm->name) {
668 len = snd_usb_copy_string_desc(state, iterm->name,
Daniel Mack6bc170e2014-05-24 10:58:16 +0200669 name, maxlen);
Takashi Iwai56a23ee2017-12-19 13:38:23 +0100670 if (len)
671 return len;
672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 /* virtual type - not a real terminal */
675 if (iterm->type >> 16) {
676 if (term_only)
677 return 0;
678 switch (iterm->type >> 16) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100679 case UAC_SELECTOR_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200680 strcpy(name, "Selector");
681 return 8;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200682 case UAC1_PROCESSING_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200683 strcpy(name, "Process Unit");
684 return 12;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200685 case UAC1_EXTENSION_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200686 strcpy(name, "Ext Unit");
687 return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100688 case UAC_MIXER_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200689 strcpy(name, "Mixer");
690 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 default:
692 return sprintf(name, "Unit %d", iterm->id);
693 }
694 }
695
696 switch (iterm->type & 0xff00) {
697 case 0x0100:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200698 strcpy(name, "PCM");
699 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 case 0x0200:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200701 strcpy(name, "Mic");
702 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 case 0x0400:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200704 strcpy(name, "Headset");
705 return 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 case 0x0500:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200707 strcpy(name, "Phone");
708 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710
Daniel Mack6bc170e2014-05-24 10:58:16 +0200711 for (names = iterm_names; names->type; names++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (names->type == iterm->type) {
713 strcpy(name, names->name);
714 return strlen(names->name);
715 }
Daniel Mack6bc170e2014-05-24 10:58:16 +0200716 }
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return 0;
719}
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721/*
722 * parse the source unit recursively until it reaches to a terminal
723 * or a branched unit.
724 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200725static int check_input_term(struct mixer_build *state, int id,
726 struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200728 int protocol = state->mixer->protocol;
Daniel Mack09414202010-05-31 13:35:44 +0200729 int err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100730 void *p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 memset(term, 0, sizeof(*term));
733 while ((p1 = find_audio_control_unit(state, id)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100734 unsigned char *hdr = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 term->id = id;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200736
737 if (protocol == UAC_VERSION_1 || protocol == UAC_VERSION_2) {
738 switch (hdr[2]) {
739 case UAC_INPUT_TERMINAL:
740 if (protocol == UAC_VERSION_1) {
741 struct uac_input_terminal_descriptor *d = p1;
742
743 term->type = le16_to_cpu(d->wTerminalType);
744 term->channels = d->bNrChannels;
745 term->chconfig = le16_to_cpu(d->wChannelConfig);
746 term->name = d->iTerminal;
747 } else { /* UAC_VERSION_2 */
748 struct uac2_input_terminal_descriptor *d = p1;
749
750 /* call recursively to verify that the
751 * referenced clock entity is valid */
752 err = check_input_term(state, d->bCSourceID, term);
753 if (err < 0)
754 return err;
755
756 /* save input term properties after recursion,
757 * to ensure they are not overriden by the
758 * recursion calls */
759 term->id = id;
760 term->type = le16_to_cpu(d->wTerminalType);
761 term->channels = d->bNrChannels;
762 term->chconfig = le32_to_cpu(d->bmChannelConfig);
763 term->name = d->iTerminal;
764 }
765 return 0;
766 case UAC_FEATURE_UNIT: {
767 /* the header is the same for v1 and v2 */
768 struct uac_feature_unit_descriptor *d = p1;
769
770 id = d->bSourceID;
771 break; /* continue to parse */
772 }
773 case UAC_MIXER_UNIT: {
774 struct uac_mixer_unit_descriptor *d = p1;
775
776 term->type = d->bDescriptorSubtype << 16; /* virtual type */
777 term->channels = uac_mixer_unit_bNrChannels(d);
778 term->chconfig = uac_mixer_unit_wChannelConfig(d, protocol);
779 term->name = uac_mixer_unit_iMixer(d);
780 return 0;
781 }
782 case UAC_SELECTOR_UNIT:
783 case UAC2_CLOCK_SELECTOR: {
784 struct uac_selector_unit_descriptor *d = p1;
785 /* call recursively to retrieve the channel info */
786 err = check_input_term(state, d->baSourceID[0], term);
787 if (err < 0)
788 return err;
789 term->type = d->bDescriptorSubtype << 16; /* virtual type */
790 term->id = id;
791 term->name = uac_selector_unit_iSelector(d);
792 return 0;
793 }
794 case UAC1_PROCESSING_UNIT:
795 case UAC1_EXTENSION_UNIT:
796 /* UAC2_PROCESSING_UNIT_V2 */
797 /* UAC2_EFFECT_UNIT */
798 case UAC2_EXTENSION_UNIT_V2: {
799 struct uac_processing_unit_descriptor *d = p1;
800
801 if (protocol == UAC_VERSION_2 &&
802 hdr[2] == UAC2_EFFECT_UNIT) {
803 /* UAC2/UAC1 unit IDs overlap here in an
804 * uncompatible way. Ignore this unit for now.
805 */
806 return 0;
807 }
808
809 if (d->bNrInPins) {
810 id = d->baSourceID[0];
811 break; /* continue to parse */
812 }
813 term->type = d->bDescriptorSubtype << 16; /* virtual type */
814 term->channels = uac_processing_unit_bNrChannels(d);
815 term->chconfig = uac_processing_unit_wChannelConfig(d, protocol);
816 term->name = uac_processing_unit_iProcessing(d, protocol);
817 return 0;
818 }
819 case UAC2_CLOCK_SOURCE: {
820 struct uac_clock_source_descriptor *d = p1;
821
822 term->type = d->bDescriptorSubtype << 16; /* virtual type */
823 term->id = id;
824 term->name = d->iClockSource;
825 return 0;
826 }
827 default:
828 return -ENODEV;
829 }
830 } else { /* UAC_VERSION_3 */
831 switch (hdr[2]) {
832 case UAC_INPUT_TERMINAL: {
833 struct uac3_input_terminal_descriptor *d = p1;
Julian Scheel9430e542015-08-19 09:28:09 +0200834
835 /* call recursively to verify that the
836 * referenced clock entity is valid */
837 err = check_input_term(state, d->bCSourceID, term);
838 if (err < 0)
839 return err;
840
841 /* save input term properties after recursion,
842 * to ensure they are not overriden by the
843 * recursion calls */
844 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100845 term->type = le16_to_cpu(d->wTerminalType);
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100846
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200847 /* REVISIT: UAC3 IT doesn't have channels/cfg */
848 term->channels = 0;
849 term->chconfig = 0;
850
851 term->name = le16_to_cpu(d->wTerminalDescrStr);
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100852 return 0;
853 }
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200854 case UAC3_FEATURE_UNIT: {
855 struct uac3_feature_unit_descriptor *d = p1;
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100856
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200857 id = d->bSourceID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 break; /* continue to parse */
859 }
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200860 case UAC3_CLOCK_SOURCE: {
861 struct uac3_clock_source_descriptor *d = p1;
862
863 term->type = d->bDescriptorSubtype << 16; /* virtual type */
864 term->id = id;
865 term->name = le16_to_cpu(d->wClockSourceStr);
866 return 0;
867 }
868 default:
869 return -ENODEV;
870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872 }
873 return -ENODEV;
874}
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876/*
877 * Feature Unit
878 */
879
880/* feature unit control information */
881struct usb_feature_control_info {
Andrew Chant21e9b3e2018-03-22 14:39:55 -0700882 int control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 const char *name;
Julian Scheelbc18e312015-08-14 16:14:45 +0200884 int type; /* data type for uac1 */
885 int type_uac2; /* data type for uac2 if different from uac1, else -1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886};
887
888static struct usb_feature_control_info audio_feature_info[] = {
Andrew Chant21e9b3e2018-03-22 14:39:55 -0700889 { UAC_FU_MUTE, "Mute", USB_MIXER_INV_BOOLEAN, -1 },
890 { UAC_FU_VOLUME, "Volume", USB_MIXER_S16, -1 },
891 { UAC_FU_BASS, "Tone Control - Bass", USB_MIXER_S8, -1 },
892 { UAC_FU_MID, "Tone Control - Mid", USB_MIXER_S8, -1 },
893 { UAC_FU_TREBLE, "Tone Control - Treble", USB_MIXER_S8, -1 },
894 { UAC_FU_GRAPHIC_EQUALIZER, "Graphic Equalizer", USB_MIXER_S8, -1 }, /* FIXME: not implemented yet */
895 { UAC_FU_AUTOMATIC_GAIN, "Auto Gain Control", USB_MIXER_BOOLEAN, -1 },
896 { UAC_FU_DELAY, "Delay Control", USB_MIXER_U16, USB_MIXER_U32 },
897 { UAC_FU_BASS_BOOST, "Bass Boost", USB_MIXER_BOOLEAN, -1 },
898 { UAC_FU_LOUDNESS, "Loudness", USB_MIXER_BOOLEAN, -1 },
Daniel Mack2e0281d2010-05-31 13:35:42 +0200899 /* UAC2 specific */
Andrew Chant21e9b3e2018-03-22 14:39:55 -0700900 { UAC2_FU_INPUT_GAIN, "Input Gain Control", USB_MIXER_S16, -1 },
901 { UAC2_FU_INPUT_GAIN_PAD, "Input Gain Pad Control", USB_MIXER_S16, -1 },
902 { UAC2_FU_PHASE_INVERTER, "Phase Inverter Control", USB_MIXER_BOOLEAN, -1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903};
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905/* private_free callback */
Chris J Argeseef90452014-11-12 12:07:01 -0600906void snd_usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Jesper Juhl4d572772005-05-30 17:30:32 +0200908 kfree(kctl->private_data);
909 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912/*
913 * interface to ALSA control for feature/mixer units
914 */
915
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100916/* volume control quirks */
917static void volume_control_quirks(struct usb_mixer_elem_info *cval,
918 struct snd_kcontrol *kctl)
919{
Takashi Iwai3360b842014-11-18 11:47:04 +0100920 struct snd_usb_audio *chip = cval->head.mixer->chip;
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100921 switch (chip->usb_id) {
Eldad Zackd50ed622012-11-28 23:55:39 +0100922 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
Matt Gruskine9a25e02013-02-09 12:56:35 -0500923 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
Eldad Zackd50ed622012-11-28 23:55:39 +0100924 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
925 cval->min = 0x0000;
926 cval->max = 0xffff;
927 cval->res = 0x00e6;
928 break;
929 }
930 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
931 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
932 cval->min = 0x00;
933 cval->max = 0xff;
934 break;
935 }
936 if (strstr(kctl->id.name, "Effect Return") != NULL) {
937 cval->min = 0xb706;
938 cval->max = 0xff7b;
939 cval->res = 0x0073;
940 break;
941 }
942 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
943 (strstr(kctl->id.name, "Effect Send") != NULL)) {
944 cval->min = 0xb5fb; /* -73 dB = 0xb6ff */
945 cval->max = 0xfcfe;
946 cval->res = 0x0073;
947 }
948 break;
949
Felix Homannd34bf142012-04-23 20:24:27 +0200950 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
951 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
952 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100953 usb_audio_info(chip,
954 "set quirk for FTU Effect Duration\n");
Felix Homannd34bf142012-04-23 20:24:27 +0200955 cval->min = 0x0000;
956 cval->max = 0x7f00;
957 cval->res = 0x0100;
958 break;
959 }
960 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
961 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100962 usb_audio_info(chip,
963 "set quirks for FTU Effect Feedback/Volume\n");
Felix Homannd34bf142012-04-23 20:24:27 +0200964 cval->min = 0x00;
965 cval->max = 0x7f;
966 break;
967 }
968 break;
969
Federico Cuello21493312018-05-09 00:13:38 +0200970 case USB_ID(0x0d8c, 0x0103):
971 if (!strcmp(kctl->id.name, "PCM Playback Volume")) {
972 usb_audio_info(chip,
973 "set volume quirk for CM102-A+/102S+\n");
974 cval->min = -256;
975 }
976 break;
977
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100978 case USB_ID(0x0471, 0x0101):
979 case USB_ID(0x0471, 0x0104):
980 case USB_ID(0x0471, 0x0105):
981 case USB_ID(0x0672, 0x1041):
982 /* quirk for UDA1321/N101.
983 * note that detection between firmware 2.1.1.7 (N101)
984 * and later 2.1.1.21 is not very clear from datasheets.
985 * I hope that the min value is -15360 for newer firmware --jk
986 */
987 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
988 cval->min == -15616) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100989 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100990 "set volume quirk for UDA1321/N101 chip\n");
991 cval->max = -256;
992 }
993 break;
994
995 case USB_ID(0x046d, 0x09a4):
996 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100997 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100998 "set volume quirk for QuickCam E3500\n");
999 cval->min = 6080;
1000 cval->max = 8768;
1001 cval->res = 192;
1002 }
1003 break;
1004
Takashi Iwaie805ca82014-03-05 12:34:39 +01001005 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001006 case USB_ID(0x046d, 0x0808):
1007 case USB_ID(0x046d, 0x0809):
Jason Lee Cragg64559312015-01-17 12:28:29 -05001008 case USB_ID(0x046d, 0x0819): /* Logitech Webcam C210 */
Takashi Iwai36691e12013-06-17 10:25:02 +02001009 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
Alexey Fisher55c00082011-11-09 11:39:24 +01001010 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
Takashi Iwai11e70642013-06-05 08:35:26 +02001011 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
Maksim A. Boyko140d37d2013-08-10 12:20:02 +04001012 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
Wolfram Sang1ef9f052015-05-29 19:50:56 +09001013 case USB_ID(0x046d, 0x08ca): /* Logitech Quickcam Fusion */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001014 case USB_ID(0x046d, 0x0991):
Con Kolivas82ffb6f2016-12-09 15:15:57 +11001015 case USB_ID(0x046d, 0x09a2): /* QuickCam Communicate Deluxe/S7500 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001016 /* Most audio usb devices lie about volume resolution.
1017 * Most Logitech webcams have res = 384.
Con Kolivas82ffb6f2016-12-09 15:15:57 +11001018 * Probably there is some logitech magic behind this number --fishor
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001019 */
1020 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001021 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001022 "set resolution quirk: cval->res = 384\n");
1023 cval->res = 384;
1024 }
1025 break;
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001026 }
1027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029/*
1030 * retrieve the minimum and maximum values for the specified control
1031 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001032static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
1033 int default_min, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
1035 /* for failsafe */
1036 cval->min = default_min;
1037 cval->max = cval->min + 1;
1038 cval->res = 1;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001039 cval->dBmin = cval->dBmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 if (cval->val_type == USB_MIXER_BOOLEAN ||
1042 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1043 cval->initialized = 1;
1044 } else {
1045 int minchn = 0;
1046 if (cval->cmask) {
1047 int i;
1048 for (i = 0; i < MAX_CHANNELS; i++)
1049 if (cval->cmask & (1 << i)) {
1050 minchn = i + 1;
1051 break;
1052 }
1053 }
Daniel Mackde48c7b2010-02-22 23:49:13 +01001054 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
1055 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +01001056 usb_audio_err(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001057 "%d:%d: cannot get min/max values for control %d (id %d)\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01001058 cval->head.id, snd_usb_ctrl_intf(cval->head.mixer->chip),
1059 cval->control, cval->head.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return -EINVAL;
1061 }
Daniel Mack6bc170e2014-05-24 10:58:16 +02001062 if (get_ctl_value(cval, UAC_GET_RES,
1063 (cval->control << 8) | minchn,
1064 &cval->res) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 cval->res = 1;
1066 } else {
1067 int last_valid_res = cval->res;
1068
1069 while (cval->res > 1) {
Daniel Mack7b1eda22010-03-11 21:13:22 +01001070 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001071 (cval->control << 8) | minchn,
1072 cval->res / 2) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 break;
1074 cval->res /= 2;
1075 }
Daniel Mack6bc170e2014-05-24 10:58:16 +02001076 if (get_ctl_value(cval, UAC_GET_RES,
1077 (cval->control << 8) | minchn, &cval->res) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 cval->res = last_valid_res;
1079 }
1080 if (cval->res == 0)
1081 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +02001082
1083 /* Additional checks for the proper resolution
1084 *
1085 * Some devices report smaller resolutions than actually
1086 * reacting. They don't return errors but simply clip
1087 * to the lower aligned value.
1088 */
1089 if (cval->min + cval->res < cval->max) {
1090 int last_valid_res = cval->res;
1091 int saved, test, check;
Takashi Iwai641b4872009-01-15 17:05:24 +01001092 get_cur_mix_raw(cval, minchn, &saved);
Takashi Iwai14790f12006-03-28 17:58:28 +02001093 for (;;) {
1094 test = saved;
1095 if (test < cval->max)
1096 test += cval->res;
1097 else
1098 test -= cval->res;
1099 if (test < cval->min || test > cval->max ||
Chris J Argeseef90452014-11-12 12:07:01 -06001100 snd_usb_set_cur_mix_value(cval, minchn, 0, test) ||
Takashi Iwai641b4872009-01-15 17:05:24 +01001101 get_cur_mix_raw(cval, minchn, &check)) {
Takashi Iwai14790f12006-03-28 17:58:28 +02001102 cval->res = last_valid_res;
1103 break;
1104 }
1105 if (test == check)
1106 break;
1107 cval->res *= 2;
1108 }
Chris J Argeseef90452014-11-12 12:07:01 -06001109 snd_usb_set_cur_mix_value(cval, minchn, 0, saved);
Takashi Iwai14790f12006-03-28 17:58:28 +02001110 }
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 cval->initialized = 1;
1113 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001114
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001115 if (kctl)
1116 volume_control_quirks(cval, kctl);
1117
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001118 /* USB descriptions contain the dB scale in 1/256 dB unit
1119 * while ALSA TLV contains in 1/100 dB unit
1120 */
1121 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
1122 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
1123 if (cval->dBmin > cval->dBmax) {
1124 /* something is wrong; assume it's either from/to 0dB */
1125 if (cval->dBmin < 0)
1126 cval->dBmax = 0;
1127 else if (cval->dBmin > 0)
1128 cval->dBmin = 0;
1129 if (cval->dBmin > cval->dBmax) {
1130 /* totally crap, return an error */
1131 return -EINVAL;
1132 }
1133 }
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return 0;
1136}
1137
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001138#define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140/* get a feature/mixer unit info */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001141static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
1142 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001144 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 if (cval->val_type == USB_MIXER_BOOLEAN ||
1147 cval->val_type == USB_MIXER_INV_BOOLEAN)
1148 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1149 else
1150 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1151 uinfo->count = cval->channels;
1152 if (cval->val_type == USB_MIXER_BOOLEAN ||
1153 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1154 uinfo->value.integer.min = 0;
1155 uinfo->value.integer.max = 1;
1156 } else {
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001157 if (!cval->initialized) {
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001158 get_min_max_with_quirks(cval, 0, kcontrol);
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001159 if (cval->initialized && cval->dBmin >= cval->dBmax) {
1160 kcontrol->vd[0].access &=
1161 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1162 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK);
Takashi Iwai3360b842014-11-18 11:47:04 +01001163 snd_ctl_notify(cval->head.mixer->chip->card,
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001164 SNDRV_CTL_EVENT_MASK_INFO,
1165 &kcontrol->id);
1166 }
1167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +02001169 uinfo->value.integer.max =
1170 (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172 return 0;
1173}
1174
1175/* get the current value from feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001176static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol,
1177 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001179 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 int c, cnt, val, err;
1181
Takashi Iwai641b4872009-01-15 17:05:24 +01001182 ucontrol->value.integer.value[0] = cval->min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (cval->cmask) {
1184 cnt = 0;
1185 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001186 if (!(cval->cmask & (1 << c)))
1187 continue;
Chris J Argeseef90452014-11-12 12:07:01 -06001188 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001189 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001190 return filter_error(cval, err);
Takashi Iwai641b4872009-01-15 17:05:24 +01001191 val = get_relative_value(cval, val);
1192 ucontrol->value.integer.value[cnt] = val;
1193 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 } else {
1197 /* master channel */
Chris J Argeseef90452014-11-12 12:07:01 -06001198 err = snd_usb_get_cur_mix_value(cval, 0, 0, &val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001199 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001200 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 val = get_relative_value(cval, val);
1202 ucontrol->value.integer.value[0] = val;
1203 }
1204 return 0;
1205}
1206
1207/* put the current value to feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001208static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
1209 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001211 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 int c, cnt, val, oval, err;
1213 int changed = 0;
1214
1215 if (cval->cmask) {
1216 cnt = 0;
1217 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001218 if (!(cval->cmask & (1 << c)))
1219 continue;
Chris J Argeseef90452014-11-12 12:07:01 -06001220 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &oval);
Takashi Iwai641b4872009-01-15 17:05:24 +01001221 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001222 return filter_error(cval, err);
Takashi Iwai641b4872009-01-15 17:05:24 +01001223 val = ucontrol->value.integer.value[cnt];
1224 val = get_abs_value(cval, val);
1225 if (oval != val) {
Chris J Argeseef90452014-11-12 12:07:01 -06001226 snd_usb_set_cur_mix_value(cval, c + 1, cnt, val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001227 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001229 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231 } else {
1232 /* master channel */
Chris J Argeseef90452014-11-12 12:07:01 -06001233 err = snd_usb_get_cur_mix_value(cval, 0, 0, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001235 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 val = ucontrol->value.integer.value[0];
1237 val = get_abs_value(cval, val);
1238 if (val != oval) {
Chris J Argeseef90452014-11-12 12:07:01 -06001239 snd_usb_set_cur_mix_value(cval, 0, 0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 changed = 1;
1241 }
1242 }
1243 return changed;
1244}
1245
Andrew Chant568fa7e2018-03-23 19:25:24 -07001246/* get the boolean value from the master channel of a UAC control */
1247static int mixer_ctl_master_bool_get(struct snd_kcontrol *kcontrol,
1248 struct snd_ctl_elem_value *ucontrol)
Andrew Chant5a222e82018-03-23 19:25:23 -07001249{
1250 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1251 int val, err;
1252
1253 err = snd_usb_get_cur_mix_value(cval, 0, 0, &val);
1254 if (err < 0)
1255 return filter_error(cval, err);
1256 val = (val != 0);
1257 ucontrol->value.integer.value[0] = val;
1258 return 0;
1259}
1260
Takashi Iwai86e07d32005-11-17 15:08:02 +01001261static struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1263 .name = "", /* will be filled later manually */
1264 .info = mixer_ctl_feature_info,
1265 .get = mixer_ctl_feature_get,
1266 .put = mixer_ctl_feature_put,
1267};
1268
Daniel Mack23caaf12010-03-11 21:13:25 +01001269/* the read-only variant */
Bhumika Goyal8fdaebb2017-04-12 18:38:06 +05301270static const struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
Daniel Mack23caaf12010-03-11 21:13:25 +01001271 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1272 .name = "", /* will be filled later manually */
1273 .info = mixer_ctl_feature_info,
1274 .get = mixer_ctl_feature_get,
1275 .put = NULL,
1276};
1277
Andrew Chant568fa7e2018-03-23 19:25:24 -07001278/*
1279 * A control which shows the boolean value from reading a UAC control on
1280 * the master channel.
1281 */
1282static struct snd_kcontrol_new usb_bool_master_control_ctl_ro = {
Andrew Chant5a222e82018-03-23 19:25:23 -07001283 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1284 .name = "", /* will be filled later manually */
1285 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1286 .info = snd_ctl_boolean_mono_info,
Andrew Chant568fa7e2018-03-23 19:25:24 -07001287 .get = mixer_ctl_master_bool_get,
Andrew Chant5a222e82018-03-23 19:25:23 -07001288 .put = NULL,
1289};
1290
Daniel Mack6bc170e2014-05-24 10:58:16 +02001291/*
1292 * This symbol is exported in order to allow the mixer quirks to
1293 * hook up to the standard feature unit control mechanism
1294 */
Daniel Mack9e386582011-05-25 09:09:01 +02001295struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297/*
1298 * build a feature control
1299 */
Takashi Iwai08d1e632009-10-02 14:06:08 +02001300static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
1301{
1302 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
1303}
1304
Daniel Mack6bc170e2014-05-24 10:58:16 +02001305/*
1306 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1307 * rename it to "Headphone". We determine if something is a headphone
1308 * similar to how udev determines form factor.
1309 */
David Henningsson9b4ef972012-11-23 13:48:55 +01001310static void check_no_speaker_on_headset(struct snd_kcontrol *kctl,
1311 struct snd_card *card)
1312{
1313 const char *names_to_check[] = {
1314 "Headset", "headset", "Headphone", "headphone", NULL};
1315 const char **s;
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001316 bool found = false;
David Henningsson9b4ef972012-11-23 13:48:55 +01001317
1318 if (strcmp("Speaker", kctl->id.name))
1319 return;
1320
1321 for (s = names_to_check; *s; s++)
1322 if (strstr(card->shortname, *s)) {
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001323 found = true;
David Henningsson9b4ef972012-11-23 13:48:55 +01001324 break;
1325 }
1326
1327 if (!found)
1328 return;
1329
1330 strlcpy(kctl->id.name, "Headphone", sizeof(kctl->id.name));
1331}
1332
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001333static struct usb_feature_control_info *get_feature_control_info(int control)
1334{
1335 int i;
1336
1337 for (i = 0; i < ARRAY_SIZE(audio_feature_info); ++i) {
1338 if (audio_feature_info[i].control == control)
1339 return &audio_feature_info[i];
1340 }
1341 return NULL;
1342}
1343
Daniel Mack99fc8642010-03-11 21:13:24 +01001344static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 unsigned int ctl_mask, int control,
Daniel Mack23caaf12010-03-11 21:13:25 +01001346 struct usb_audio_term *iterm, int unitid,
Daniel Macka6a33252010-05-31 13:35:37 +02001347 int readonly_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
Daniel Mack99fc8642010-03-11 21:13:24 +01001349 struct uac_feature_unit_descriptor *desc = raw_desc;
Julian Scheelbc18e312015-08-14 16:14:45 +02001350 struct usb_feature_control_info *ctl_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 unsigned int len = 0;
1352 int mapped_name = 0;
Daniel Mack99fc8642010-03-11 21:13:24 +01001353 int nameid = uac_feature_unit_iFeature(desc);
Takashi Iwai86e07d32005-11-17 15:08:02 +01001354 struct snd_kcontrol *kctl;
1355 struct usb_mixer_elem_info *cval;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001356 const struct usbmix_name_map *map;
Alexey Fisher80aceff2011-03-10 14:53:38 +01001357 unsigned int range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Daniel Mack65f25da2010-05-31 13:35:41 +02001359 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 /* FIXME: not supported yet */
1361 return;
1362 }
1363
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001364 map = find_map(state, unitid, control);
1365 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return;
1367
Takashi Iwai561b2202005-09-09 14:22:34 +02001368 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001369 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return;
Takashi Iwai3360b842014-11-18 11:47:04 +01001371 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 cval->control = control;
1373 cval->cmask = ctl_mask;
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001374
1375 ctl_info = get_feature_control_info(control);
Colin Ian King62376022018-03-27 15:30:01 +01001376 if (!ctl_info) {
1377 kfree(cval);
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001378 return;
Colin Ian King62376022018-03-27 15:30:01 +01001379 }
Julian Scheelbc18e312015-08-14 16:14:45 +02001380 if (state->mixer->protocol == UAC_VERSION_1)
1381 cval->val_type = ctl_info->type;
1382 else /* UAC_VERSION_2 */
1383 cval->val_type = ctl_info->type_uac2 >= 0 ?
1384 ctl_info->type_uac2 : ctl_info->type;
1385
Daniel Macka6a33252010-05-31 13:35:37 +02001386 if (ctl_mask == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 cval->channels = 1; /* master channel */
Daniel Macka6a33252010-05-31 13:35:37 +02001388 cval->master_readonly = readonly_mask;
1389 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 int i, c = 0;
1391 for (i = 0; i < 16; i++)
1392 if (ctl_mask & (1 << i))
1393 c++;
1394 cval->channels = c;
Daniel Macka6a33252010-05-31 13:35:37 +02001395 cval->ch_readonly = readonly_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397
Daniel Mack6bc170e2014-05-24 10:58:16 +02001398 /*
1399 * If all channels in the mask are marked read-only, make the control
Chris J Argeseef90452014-11-12 12:07:01 -06001400 * read-only. snd_usb_set_cur_mix_value() will check the mask again and won't
Daniel Mack6bc170e2014-05-24 10:58:16 +02001401 * issue write commands to read-only channels.
1402 */
Daniel Macka6a33252010-05-31 13:35:37 +02001403 if (cval->channels == readonly_mask)
Daniel Mack23caaf12010-03-11 21:13:25 +01001404 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1405 else
1406 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1407
Daniel Mack6bc170e2014-05-24 10:58:16 +02001408 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001409 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 kfree(cval);
1411 return;
1412 }
Chris J Argeseef90452014-11-12 12:07:01 -06001413 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001415 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 mapped_name = len != 0;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001417 if (!len && nameid)
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001418 len = snd_usb_copy_string_desc(state, nameid,
1419 kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 switch (control) {
Daniel Mack65f25da2010-05-31 13:35:41 +02001422 case UAC_FU_MUTE:
1423 case UAC_FU_VOLUME:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001424 /*
1425 * determine the control name. the rule is:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 * - if a name id is given in descriptor, use it.
1427 * - if the connected input can be determined, then use the name
1428 * of terminal type.
1429 * - if the connected output can be determined, use it.
1430 * - otherwise, anonymous name.
1431 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001432 if (!len) {
1433 len = get_term_name(state, iterm, kctl->id.name,
1434 sizeof(kctl->id.name), 1);
1435 if (!len)
1436 len = get_term_name(state, &state->oterm,
1437 kctl->id.name,
1438 sizeof(kctl->id.name), 1);
1439 if (!len)
Daniel Mack49fd46d2014-10-19 09:11:25 +02001440 snprintf(kctl->id.name, sizeof(kctl->id.name),
1441 "Feature %d", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
David Henningsson9b4ef972012-11-23 13:48:55 +01001443
1444 if (!mapped_name)
1445 check_no_speaker_on_headset(kctl, state->mixer->chip->card);
1446
Daniel Mack6bc170e2014-05-24 10:58:16 +02001447 /*
1448 * determine the stream direction:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 * if the connected output is USB stream, then it's likely a
1450 * capture stream. otherwise it should be playback (hopefully :)
1451 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001452 if (!mapped_name && !(state->oterm.type >> 16)) {
1453 if ((state->oterm.type & 0xff00) == 0x0100)
Daniel Mack49fd46d2014-10-19 09:11:25 +02001454 append_ctl_name(kctl, " Capture");
Daniel Mack6bc170e2014-05-24 10:58:16 +02001455 else
Daniel Mack49fd46d2014-10-19 09:11:25 +02001456 append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
Daniel Mack65f25da2010-05-31 13:35:41 +02001458 append_ctl_name(kctl, control == UAC_FU_MUTE ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001459 " Switch" : " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 default:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001462 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1464 sizeof(kctl->id.name));
1465 break;
1466 }
1467
Takashi Iwaie1825342012-05-14 17:11:06 +02001468 /* get min/max values */
1469 get_min_max_with_quirks(cval, 0, kctl);
1470
1471 if (control == UAC_FU_VOLUME) {
1472 check_mapped_dB(map, cval);
1473 if (cval->dBmin < cval->dBmax || !cval->initialized) {
1474 kctl->tlv.c = snd_usb_mixer_vol_tlv;
1475 kctl->vd[0].access |=
1476 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1477 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1478 }
1479 }
1480
Anssi Hannula42e31212015-12-13 20:49:58 +02001481 snd_usb_mixer_fu_apply_quirk(state->mixer, cval, unitid, kctl);
1482
Alexey Fisher80aceff2011-03-10 14:53:38 +01001483 range = (cval->max - cval->min) / cval->res;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001484 /*
1485 * Are there devices with volume range more than 255? I use a bit more
Alexey Fisher80aceff2011-03-10 14:53:38 +01001486 * to be sure. 384 is a resolution magic number found on Logitech
1487 * devices. It will definitively catch all buggy Logitech devices.
1488 */
1489 if (range > 384) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001490 usb_audio_warn(state->chip,
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001491 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
Daniel Mack6bc170e2014-05-24 10:58:16 +02001492 range);
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001493 usb_audio_warn(state->chip,
1494 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
Takashi Iwai3360b842014-11-18 11:47:04 +01001495 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001496 cval->min, cval->max, cval->res);
Alexey Fisher80aceff2011-03-10 14:53:38 +01001497 }
1498
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001499 usb_audio_dbg(state->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01001500 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001501 cval->min, cval->max, cval->res);
Takashi Iwai3360b842014-11-18 11:47:04 +01001502 snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
Andrew Chant5a222e82018-03-23 19:25:23 -07001505static void get_connector_control_name(struct mixer_build *state,
1506 struct usb_audio_term *term,
1507 bool is_input, char *name, int name_size)
1508{
1509 int name_len = get_term_name(state, term, name, name_size, 0);
1510
1511 if (name_len == 0)
1512 strlcpy(name, "Unknown", name_size);
1513
1514 /*
1515 * sound/core/ctljack.c has a convention of naming jack controls
1516 * by ending in " Jack". Make it slightly more useful by
1517 * indicating Input or Output after the terminal name.
1518 */
1519 if (is_input)
1520 strlcat(name, " - Input Jack", name_size);
1521 else
1522 strlcat(name, " - Output Jack", name_size);
1523}
1524
1525/* Build a mixer control for a UAC connector control (jack-detect) */
1526static void build_connector_control(struct mixer_build *state,
1527 struct usb_audio_term *term, bool is_input)
1528{
1529 struct snd_kcontrol *kctl;
1530 struct usb_mixer_elem_info *cval;
1531
1532 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1533 if (!cval)
1534 return;
1535 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, term->id);
Andrew Chant568fa7e2018-03-23 19:25:24 -07001536 /*
1537 * The first byte from reading the UAC2_TE_CONNECTOR control returns the
1538 * number of channels connected. This boolean ctl will simply report
1539 * if any channels are connected or not.
1540 * (Audio20_final.pdf Table 5-10: Connector Control CUR Parameter Block)
1541 */
Andrew Chant5a222e82018-03-23 19:25:23 -07001542 cval->control = UAC2_TE_CONNECTOR;
1543 cval->val_type = USB_MIXER_BOOLEAN;
1544 cval->channels = 1; /* report true if any channel is connected */
1545 cval->min = 0;
1546 cval->max = 1;
Andrew Chant568fa7e2018-03-23 19:25:24 -07001547 kctl = snd_ctl_new1(&usb_bool_master_control_ctl_ro, cval);
Andrew Chant5a222e82018-03-23 19:25:23 -07001548 if (!kctl) {
1549 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
1550 kfree(cval);
1551 return;
1552 }
1553 get_connector_control_name(state, term, is_input, kctl->id.name,
1554 sizeof(kctl->id.name));
1555 kctl->private_free = snd_usb_mixer_elem_free;
1556 snd_usb_mixer_add_control(&cval->head, kctl);
1557}
1558
Daniel Mackcddaafb2016-04-09 11:21:46 +02001559static int parse_clock_source_unit(struct mixer_build *state, int unitid,
1560 void *_ftr)
1561{
1562 struct uac_clock_source_descriptor *hdr = _ftr;
1563 struct usb_mixer_elem_info *cval;
1564 struct snd_kcontrol *kctl;
1565 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
1566 int ret;
1567
1568 if (state->mixer->protocol != UAC_VERSION_2)
1569 return -EINVAL;
1570
1571 if (hdr->bLength != sizeof(*hdr)) {
1572 usb_audio_dbg(state->chip,
1573 "Bogus clock source descriptor length of %d, ignoring.\n",
1574 hdr->bLength);
1575 return 0;
1576 }
1577
1578 /*
1579 * The only property of this unit we are interested in is the
1580 * clock source validity. If that isn't readable, just bail out.
1581 */
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02001582 if (!uac_v2v3_control_is_readable(hdr->bmControls,
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001583 UAC2_CS_CONTROL_CLOCK_VALID))
Daniel Mackcddaafb2016-04-09 11:21:46 +02001584 return 0;
1585
1586 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1587 if (!cval)
1588 return -ENOMEM;
1589
1590 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, hdr->bClockID);
1591
1592 cval->min = 0;
1593 cval->max = 1;
1594 cval->channels = 1;
1595 cval->val_type = USB_MIXER_BOOLEAN;
1596 cval->control = UAC2_CS_CONTROL_CLOCK_VALID;
1597
Andrew Chant568fa7e2018-03-23 19:25:24 -07001598 cval->master_readonly = 1;
1599 /* From UAC2 5.2.5.1.2 "Only the get request is supported." */
1600 kctl = snd_ctl_new1(&usb_bool_master_control_ctl_ro, cval);
Daniel Mackcddaafb2016-04-09 11:21:46 +02001601
1602 if (!kctl) {
1603 kfree(cval);
1604 return -ENOMEM;
1605 }
1606
1607 kctl->private_free = snd_usb_mixer_elem_free;
1608 ret = snd_usb_copy_string_desc(state, hdr->iClockSource,
1609 name, sizeof(name));
1610 if (ret > 0)
1611 snprintf(kctl->id.name, sizeof(kctl->id.name),
1612 "%s Validity", name);
1613 else
1614 snprintf(kctl->id.name, sizeof(kctl->id.name),
1615 "Clock Source %d Validity", hdr->bClockID);
1616
1617 return snd_usb_mixer_add_control(&cval->head, kctl);
1618}
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620/*
1621 * parse a feature unit
1622 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001623 * most of controls are defined here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001625static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
1626 void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
1628 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001629 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 unsigned int master_bits, first_ch_bits;
1631 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001632 struct uac_feature_unit_descriptor *hdr = _ftr;
1633 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Daniel Mack23caaf12010-03-11 21:13:25 +01001635 if (state->mixer->protocol == UAC_VERSION_1) {
Takashi Iwaid937cd62017-11-21 16:55:51 +01001636 if (hdr->bLength < 7) {
1637 usb_audio_err(state->chip,
1638 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1639 unitid);
1640 return -EINVAL;
1641 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001642 csize = hdr->bControlSize;
Takashi Iwai3c02a6d2017-11-27 10:59:40 +01001643 if (!csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001644 usb_audio_dbg(state->chip,
Takashi Iwai3c02a6d2017-11-27 10:59:40 +01001645 "unit %u: invalid bControlSize == 0\n",
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001646 unitid);
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001647 return -EINVAL;
1648 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001649 channels = (hdr->bLength - 7) / csize - 1;
1650 bmaControls = hdr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001651 if (hdr->bLength < 7 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001652 usb_audio_err(state->chip,
1653 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1654 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001655 return -EINVAL;
1656 }
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02001657 } else if (state->mixer->protocol == UAC_VERSION_2) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001658 struct uac2_feature_unit_descriptor *ftr = _ftr;
Takashi Iwaid937cd62017-11-21 16:55:51 +01001659 if (hdr->bLength < 6) {
1660 usb_audio_err(state->chip,
1661 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1662 unitid);
1663 return -EINVAL;
1664 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001665 csize = 4;
Daniel Macke8d0fee2010-05-27 20:15:14 +02001666 channels = (hdr->bLength - 6) / 4 - 1;
Daniel Mack23caaf12010-03-11 21:13:25 +01001667 bmaControls = ftr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001668 if (hdr->bLength < 6 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001669 usb_audio_err(state->chip,
1670 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1671 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001672 return -EINVAL;
1673 }
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02001674 } else { /* UAC_VERSION_3 */
1675 struct uac3_feature_unit_descriptor *ftr = _ftr;
1676
1677 if (hdr->bLength < 7) {
1678 usb_audio_err(state->chip,
1679 "unit %u: invalid UAC3_FEATURE_UNIT descriptor\n",
1680 unitid);
1681 return -EINVAL;
1682 }
1683 csize = 4;
1684 channels = (ftr->bLength - 7) / 4 - 1;
1685 bmaControls = ftr->bmaControls;
1686 if (hdr->bLength < 7 + csize) {
1687 usb_audio_err(state->chip,
1688 "unit %u: invalid UAC3_FEATURE_UNIT descriptor\n",
1689 unitid);
1690 return -EINVAL;
1691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
1693
1694 /* parse the source unit */
Daniel Mack23caaf12010-03-11 21:13:25 +01001695 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return err;
1697
1698 /* determine the input source type and name */
Daniel Mack4d7b86c2013-03-19 21:09:24 +01001699 err = check_input_term(state, hdr->bSourceID, &iterm);
1700 if (err < 0)
1701 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Daniel Mack23caaf12010-03-11 21:13:25 +01001703 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001704 /* master configuration quirks */
1705 switch (state->chip->usb_id) {
1706 case USB_ID(0x08bb, 0x2702):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001707 usb_audio_info(state->chip,
1708 "usbmixer: master volume quirk for PCM2702 chip\n");
Javier Kohen0c3cee52009-11-17 15:36:13 +01001709 /* disable non-functional volume control */
Daniel Mack65f25da2010-05-31 13:35:41 +02001710 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001711 break;
David Henningssonc1051432012-09-20 10:20:41 +02001712 case USB_ID(0x1130, 0xf211):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001713 usb_audio_info(state->chip,
1714 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
David Henningssonc1051432012-09-20 10:20:41 +02001715 /* disable non-functional volume control */
1716 channels = 0;
1717 break;
1718
Javier Kohen0c3cee52009-11-17 15:36:13 +01001719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 if (channels > 0)
Daniel Mack23caaf12010-03-11 21:13:25 +01001721 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 else
1723 first_ch_bits = 0;
Daniel Mack23caaf12010-03-11 21:13:25 +01001724
1725 if (state->mixer->protocol == UAC_VERSION_1) {
1726 /* check all control types */
1727 for (i = 0; i < 10; i++) {
1728 unsigned int ch_bits = 0;
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001729 int control = audio_feature_info[i].control;
1730
Daniel Mack23caaf12010-03-11 21:13:25 +01001731 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001732 unsigned int mask;
1733
1734 mask = snd_usb_combine_bytes(bmaControls +
1735 csize * (j+1), csize);
Daniel Mack23caaf12010-03-11 21:13:25 +01001736 if (mask & (1 << i))
1737 ch_bits |= (1 << j);
1738 }
1739 /* audio class v1 controls are never read-only */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001740
1741 /*
1742 * The first channel must be set
1743 * (for ease of programming).
1744 */
1745 if (ch_bits & 1)
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001746 build_feature_ctl(state, _ftr, ch_bits, control,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001747 &iterm, unitid, 0);
Daniel Mack23caaf12010-03-11 21:13:25 +01001748 if (master_bits & (1 << i))
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001749 build_feature_ctl(state, _ftr, 0, control,
1750 &iterm, unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02001752 } else { /* UAC_VERSION_2/3 */
Takashi Iwaid09c06c2011-10-13 08:19:09 +02001753 for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001754 unsigned int ch_bits = 0;
1755 unsigned int ch_read_only = 0;
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001756 int control = audio_feature_info[i].control;
Daniel Mack23caaf12010-03-11 21:13:25 +01001757
1758 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001759 unsigned int mask;
1760
1761 mask = snd_usb_combine_bytes(bmaControls +
1762 csize * (j+1), csize);
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001763 if (uac_v2v3_control_is_readable(mask, control)) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001764 ch_bits |= (1 << j);
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001765 if (!uac_v2v3_control_is_writeable(mask, control))
Daniel Mack23caaf12010-03-11 21:13:25 +01001766 ch_read_only |= (1 << j);
1767 }
1768 }
1769
Daniel Mack6bc170e2014-05-24 10:58:16 +02001770 /*
1771 * NOTE: build_feature_ctl() will mark the control
1772 * read-only if all channels are marked read-only in
1773 * the descriptors. Otherwise, the control will be
1774 * reported as writeable, but the driver will not
1775 * actually issue a write command for read-only
1776 * channels.
1777 */
1778
1779 /*
1780 * The first channel must be set
1781 * (for ease of programming).
1782 */
1783 if (ch_bits & 1)
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001784 build_feature_ctl(state, _ftr, ch_bits, control,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001785 &iterm, unitid, ch_read_only);
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001786 if (uac_v2v3_control_is_readable(master_bits, control))
Takashi Iwai2de841e2018-04-23 08:59:36 +02001787 build_feature_ctl(state, _ftr, 0, control,
1788 &iterm, unitid,
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001789 !uac_v2v3_control_is_writeable(master_bits,
1790 control));
Daniel Mack23caaf12010-03-11 21:13:25 +01001791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
1793
1794 return 0;
1795}
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797/*
1798 * Mixer Unit
1799 */
1800
1801/*
1802 * build a mixer unit control
1803 *
1804 * the callbacks are identical with feature unit.
1805 * input channel number (zero based) is given in control field instead.
1806 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001807static void build_mixer_unit_ctl(struct mixer_build *state,
1808 struct uac_mixer_unit_descriptor *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001810 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001812 struct usb_mixer_elem_info *cval;
Daniel Mack99fc8642010-03-11 21:13:24 +01001813 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001815 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001816 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001818 map = find_map(state, unitid, 0);
1819 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 return;
1821
Takashi Iwai561b2202005-09-09 14:22:34 +02001822 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001823 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 return;
1825
Takashi Iwai3360b842014-11-18 11:47:04 +01001826 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 cval->control = in_ch + 1; /* based on 1 */
1828 cval->val_type = USB_MIXER_S16;
1829 for (i = 0; i < num_outs; i++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001830 __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol);
1831
1832 if (check_matrix_bitmap(c, in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 cval->cmask |= (1 << i);
1834 cval->channels++;
1835 }
1836 }
1837
1838 /* get min/max values */
1839 get_min_max(cval, 0);
1840
1841 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001842 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001843 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 kfree(cval);
1845 return;
1846 }
Chris J Argeseef90452014-11-12 12:07:01 -06001847 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001849 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001850 if (!len)
1851 len = get_term_name(state, iterm, kctl->id.name,
1852 sizeof(kctl->id.name), 0);
1853 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02001855 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001857 usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01001858 cval->head.id, kctl->id.name, cval->channels, cval->min, cval->max);
1859 snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
Andrew Chant5a222e82018-03-23 19:25:23 -07001862static int parse_audio_input_terminal(struct mixer_build *state, int unitid,
1863 void *raw_desc)
1864{
1865 struct usb_audio_term iterm;
1866 struct uac2_input_terminal_descriptor *d = raw_desc;
1867
1868 check_input_term(state, d->bTerminalID, &iterm);
1869 if (state->mixer->protocol == UAC_VERSION_2) {
1870 /* Check for jack detection. */
Takashi Iwai2b54f7852018-04-23 15:19:25 +02001871 if (uac_v2v3_control_is_readable(le16_to_cpu(d->bmControls),
Andrew Chant5a222e82018-03-23 19:25:23 -07001872 UAC2_TE_CONNECTOR)) {
1873 build_connector_control(state, &iterm, true);
1874 }
1875 }
1876 return 0;
1877}
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879/*
1880 * parse a mixer unit
1881 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001882static int parse_audio_mixer_unit(struct mixer_build *state, int unitid,
1883 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
Daniel Mack99fc8642010-03-11 21:13:24 +01001885 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001886 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 int input_pins, num_ins, num_outs;
1888 int pin, ich, err;
1889
Daniel Mack6bc170e2014-05-24 10:58:16 +02001890 if (desc->bLength < 11 || !(input_pins = desc->bNrInPins) ||
1891 !(num_outs = uac_mixer_unit_bNrChannels(desc))) {
1892 usb_audio_err(state->chip,
1893 "invalid MIXER UNIT descriptor %d\n",
1894 unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return -EINVAL;
1896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 num_ins = 0;
1899 ich = 0;
1900 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001901 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (err < 0)
Mark Hills284a8dd2012-04-14 17:19:23 +01001903 continue;
Clemens Ladischea114fc2015-06-03 11:36:51 +02001904 /* no bmControls field (e.g. Maya44) -> ignore */
1905 if (desc->bLength <= 10 + input_pins)
1906 continue;
Daniel Mack99fc8642010-03-11 21:13:24 +01001907 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (err < 0)
1909 return err;
1910 num_ins += iterm.channels;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001911 for (; ich < num_ins; ich++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 int och, ich_has_controls = 0;
1913
Daniel Mack6bc170e2014-05-24 10:58:16 +02001914 for (och = 0; och < num_outs; och++) {
1915 __u8 *c = uac_mixer_unit_bmControls(desc,
1916 state->mixer->protocol);
1917
1918 if (check_matrix_bitmap(c, ich, och, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 ich_has_controls = 1;
1920 break;
1921 }
1922 }
1923 if (ich_has_controls)
1924 build_mixer_unit_ctl(state, desc, pin, ich,
1925 unitid, &iterm);
1926 }
1927 }
1928 return 0;
1929}
1930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931/*
1932 * Processing Unit / Extension Unit
1933 */
1934
1935/* get callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001936static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol,
1937 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001939 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 int err, val;
1941
1942 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Takashi Iwai5aeee342014-11-18 11:02:14 +01001943 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 ucontrol->value.integer.value[0] = cval->min;
Takashi Iwai5aeee342014-11-18 11:02:14 +01001945 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 val = get_relative_value(cval, val);
1948 ucontrol->value.integer.value[0] = val;
1949 return 0;
1950}
1951
1952/* put callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001953static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
1954 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001956 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 int val, oval, err;
1958
1959 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Takashi Iwai5aeee342014-11-18 11:02:14 +01001960 if (err < 0)
1961 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 val = ucontrol->value.integer.value[0];
1963 val = get_abs_value(cval, val);
1964 if (val != oval) {
1965 set_cur_ctl_value(cval, cval->control << 8, val);
1966 return 1;
1967 }
1968 return 0;
1969}
1970
1971/* alsa control interface for processing/extension unit */
Bhumika Goyal8fdaebb2017-04-12 18:38:06 +05301972static const struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1974 .name = "", /* will be filled later */
1975 .info = mixer_ctl_feature_info,
1976 .get = mixer_ctl_procunit_get,
1977 .put = mixer_ctl_procunit_put,
1978};
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980/*
1981 * predefined data for processing units
1982 */
1983struct procunit_value_info {
1984 int control;
1985 char *suffix;
1986 int val_type;
1987 int min_value;
1988};
1989
1990struct procunit_info {
1991 int type;
1992 char *name;
1993 struct procunit_value_info *values;
1994};
1995
1996static struct procunit_value_info updown_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001997 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1998 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 { 0 }
2000};
2001static struct procunit_value_info prologic_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002002 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2003 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 { 0 }
2005};
2006static struct procunit_value_info threed_enh_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002007 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2008 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 { 0 }
2010};
2011static struct procunit_value_info reverb_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002012 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2013 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
2014 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
2015 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 { 0 }
2017};
2018static struct procunit_value_info chorus_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002019 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2020 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
2021 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
2022 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 { 0 }
2024};
2025static struct procunit_value_info dcr_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002026 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2027 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
2028 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
2029 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
2030 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
2031 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 { 0 }
2033};
2034
2035static struct procunit_info procunits[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002036 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
2037 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
2038 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
2039 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
2040 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
2041 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 { 0 },
2043};
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002044/*
2045 * predefined data for extension units
2046 */
2047static struct procunit_value_info clock_rate_xu_info[] = {
Daniel Macke213e9c2010-05-11 18:13:50 +02002048 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
2049 { 0 }
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002050};
2051static struct procunit_value_info clock_source_xu_info[] = {
2052 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
2053 { 0 }
2054};
2055static struct procunit_value_info spdif_format_xu_info[] = {
2056 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
2057 { 0 }
2058};
2059static struct procunit_value_info soft_limit_xu_info[] = {
2060 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
2061 { 0 }
2062};
2063static struct procunit_info extunits[] = {
2064 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
2065 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
2066 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
2067 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
2068 { 0 }
2069};
Daniel Mack6bc170e2014-05-24 10:58:16 +02002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071/*
2072 * build a processing/extension unit
2073 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002074static int build_audio_procunit(struct mixer_build *state, int unitid,
2075 void *raw_desc, struct procunit_info *list,
2076 char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
Daniel Mack99fc8642010-03-11 21:13:24 +01002078 struct uac_processing_unit_descriptor *desc = raw_desc;
2079 int num_ins = desc->bNrInPins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002080 struct usb_mixer_elem_info *cval;
2081 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 int i, err, nameid, type, len;
2083 struct procunit_info *info;
2084 struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002085 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 static struct procunit_value_info default_value_info[] = {
2087 { 0x01, "Switch", USB_MIXER_BOOLEAN },
2088 { 0 }
2089 };
2090 static struct procunit_info default_info = {
2091 0, NULL, default_value_info
2092 };
2093
Daniel Mack23caaf12010-03-11 21:13:25 +01002094 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
2095 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002096 usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 return -EINVAL;
2098 }
2099
2100 for (i = 0; i < num_ins; i++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01002101 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 return err;
2103 }
2104
Daniel Mack99fc8642010-03-11 21:13:24 +01002105 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 for (info = list; info && info->type; info++)
2107 if (info->type == type)
2108 break;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002109 if (!info || !info->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 info = &default_info;
2111
2112 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002113 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01002114
Daniel Mack6bc170e2014-05-24 10:58:16 +02002115 if (!(controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 continue;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002117 map = find_map(state, unitid, valinfo->control);
2118 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02002120 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02002121 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 return -ENOMEM;
Takashi Iwai3360b842014-11-18 11:47:04 +01002123 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 cval->control = valinfo->control;
2125 cval->val_type = valinfo->val_type;
2126 cval->channels = 1;
2127
2128 /* get min/max values */
Daniel Mack65f25da2010-05-31 13:35:41 +02002129 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002130 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 /* FIXME: hard-coded */
2132 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01002133 cval->max = control_spec[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 cval->res = 1;
2135 cval->initialized = 1;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002136 } else {
2137 if (type == USB_XU_CLOCK_RATE) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02002138 /*
2139 * E-Mu USB 0404/0202/TrackerPre/0204
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002140 * samplerate control quirk
2141 */
2142 cval->min = 0;
2143 cval->max = 5;
2144 cval->res = 1;
2145 cval->initialized = 1;
2146 } else
2147 get_min_max(cval, valinfo->min_value);
2148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002151 if (!kctl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 kfree(cval);
2153 return -ENOMEM;
2154 }
Chris J Argeseef90452014-11-12 12:07:01 -06002155 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Daniel Mack6bc170e2014-05-24 10:58:16 +02002157 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002158 /* nothing */ ;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002159 } else if (info->name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02002161 } else {
Daniel Mack23caaf12010-03-11 21:13:25 +01002162 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 len = 0;
2164 if (nameid)
Daniel Mack6bc170e2014-05-24 10:58:16 +02002165 len = snd_usb_copy_string_desc(state, nameid,
2166 kctl->id.name,
2167 sizeof(kctl->id.name));
2168 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
2170 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02002171 append_ctl_name(kctl, " ");
2172 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002174 usb_audio_dbg(state->chip,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002175 "[%d] PU [%s] ch = %d, val = %d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01002176 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002177 cval->min, cval->max);
2178
Takashi Iwai3360b842014-11-18 11:47:04 +01002179 err = snd_usb_mixer_add_control(&cval->head, kctl);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002180 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 return err;
2182 }
2183 return 0;
2184}
2185
Daniel Mack6bc170e2014-05-24 10:58:16 +02002186static int parse_audio_processing_unit(struct mixer_build *state, int unitid,
2187 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
Daniel Mack6bc170e2014-05-24 10:58:16 +02002189 return build_audio_procunit(state, unitid, raw_desc,
2190 procunits, "Processing Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192
Daniel Mack6bc170e2014-05-24 10:58:16 +02002193static int parse_audio_extension_unit(struct mixer_build *state, int unitid,
2194 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{
Daniel Mack6bc170e2014-05-24 10:58:16 +02002196 /*
2197 * Note that we parse extension units with processing unit descriptors.
2198 * That's ok as the layout is the same.
2199 */
2200 return build_audio_procunit(state, unitid, raw_desc,
2201 extunits, "Extension Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202}
2203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204/*
2205 * Selector Unit
2206 */
2207
Daniel Mack6bc170e2014-05-24 10:58:16 +02002208/*
2209 * info callback for selector unit
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 * use an enumerator type for routing
2211 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002212static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol,
2213 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002215 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01002216 const char **itemlist = (const char **)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Takashi Iwai5e246b82008-08-08 17:12:47 +02002218 if (snd_BUG_ON(!itemlist))
2219 return -EINVAL;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01002220 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221}
2222
2223/* get callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002224static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol,
2225 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002227 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 int val, err;
2229
Daniel Mack09414202010-05-31 13:35:44 +02002230 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 if (err < 0) {
Takashi Iwai5aeee342014-11-18 11:02:14 +01002232 ucontrol->value.enumerated.item[0] = 0;
2233 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 }
2235 val = get_relative_value(cval, val);
2236 ucontrol->value.enumerated.item[0] = val;
2237 return 0;
2238}
2239
2240/* put callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002241static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
2242 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002244 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 int val, oval, err;
2246
Daniel Mack09414202010-05-31 13:35:44 +02002247 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Takashi Iwai5aeee342014-11-18 11:02:14 +01002248 if (err < 0)
2249 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 val = ucontrol->value.enumerated.item[0];
2251 val = get_abs_value(cval, val);
2252 if (val != oval) {
Daniel Mack09414202010-05-31 13:35:44 +02002253 set_cur_ctl_value(cval, cval->control << 8, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return 1;
2255 }
2256 return 0;
2257}
2258
2259/* alsa control interface for selector unit */
Bhumika Goyal8fdaebb2017-04-12 18:38:06 +05302260static const struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2262 .name = "", /* will be filled later */
2263 .info = mixer_ctl_selector_info,
2264 .get = mixer_ctl_selector_get,
2265 .put = mixer_ctl_selector_put,
2266};
2267
Daniel Mack6bc170e2014-05-24 10:58:16 +02002268/*
2269 * private free callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 * free both private_data and private_value
2271 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002272static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
2274 int i, num_ins = 0;
2275
2276 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002277 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 num_ins = cval->max;
2279 kfree(cval);
2280 kctl->private_data = NULL;
2281 }
2282 if (kctl->private_value) {
2283 char **itemlist = (char **)kctl->private_value;
2284 for (i = 0; i < num_ins; i++)
2285 kfree(itemlist[i]);
2286 kfree(itemlist);
2287 kctl->private_value = 0;
2288 }
2289}
2290
2291/*
2292 * parse a selector unit
2293 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002294static int parse_audio_selector_unit(struct mixer_build *state, int unitid,
2295 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
Daniel Mack99fc8642010-03-11 21:13:24 +01002297 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 unsigned int i, nameid, len;
2299 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002300 struct usb_mixer_elem_info *cval;
2301 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002302 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 char **namelist;
2304
Takashi Iwaif658f172017-11-21 17:00:32 +01002305 if (desc->bLength < 5 || !desc->bNrInPins ||
2306 desc->bLength < 5 + desc->bNrInPins) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002307 usb_audio_err(state->chip,
2308 "invalid SELECTOR UNIT descriptor %d\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 return -EINVAL;
2310 }
2311
Daniel Mack99fc8642010-03-11 21:13:24 +01002312 for (i = 0; i < desc->bNrInPins; i++) {
2313 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 return err;
2315 }
2316
Daniel Mack99fc8642010-03-11 21:13:24 +01002317 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 return 0;
2319
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002320 map = find_map(state, unitid, 0);
2321 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 return 0;
2323
Takashi Iwai561b2202005-09-09 14:22:34 +02002324 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02002325 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 return -ENOMEM;
Takashi Iwai3360b842014-11-18 11:47:04 +01002327 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 cval->val_type = USB_MIXER_U8;
2329 cval->channels = 1;
2330 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01002331 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 cval->res = 1;
2333 cval->initialized = 1;
2334
Johan Rasténa358a0e2014-11-17 08:39:33 +01002335 if (state->mixer->protocol == UAC_VERSION_1)
Daniel Mack09414202010-05-31 13:35:44 +02002336 cval->control = 0;
Johan Rasténa358a0e2014-11-17 08:39:33 +01002337 else /* UAC_VERSION_2 */
2338 cval->control = (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR) ?
2339 UAC2_CX_CLOCK_SELECTOR : UAC2_SU_SELECTOR;
Daniel Mack09414202010-05-31 13:35:44 +02002340
Daniel Mack99fc8642010-03-11 21:13:24 +01002341 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002342 if (!namelist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 kfree(cval);
2344 return -ENOMEM;
2345 }
2346#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01002347 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002348 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 len = 0;
2350 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002351 if (!namelist[i]) {
Mariusz Kozlowski7fbe3ca2007-01-08 11:25:30 +01002352 while (i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 kfree(namelist[i]);
2354 kfree(namelist);
2355 kfree(cval);
2356 return -ENOMEM;
2357 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002358 len = check_mapped_selector_name(state, unitid, i, namelist[i],
2359 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01002360 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
2362 if (! len)
Masanari Iidaaf831ee2014-04-28 13:08:55 +09002363 sprintf(namelist[i], "Input %u", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 }
2365
2366 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
2367 if (! kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002368 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Jesper Juhl878b4782006-03-20 11:27:13 +01002369 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 kfree(cval);
2371 return -ENOMEM;
2372 }
2373 kctl->private_value = (unsigned long)namelist;
2374 kctl->private_free = usb_mixer_selector_elem_free;
2375
Takashi Iwai5a15f282017-12-18 23:36:57 +01002376 /* check the static mapping table at first */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002377 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Jaejoong Kim89b89d12017-12-04 15:31:49 +09002378 if (!len) {
Takashi Iwai5a15f282017-12-18 23:36:57 +01002379 /* no mapping ? */
2380 /* if iSelector is given, use it */
2381 nameid = uac_selector_unit_iSelector(desc);
2382 if (nameid)
2383 len = snd_usb_copy_string_desc(state, nameid,
2384 kctl->id.name,
2385 sizeof(kctl->id.name));
2386 /* ... or pick up the terminal name at next */
2387 if (!len)
2388 len = get_term_name(state, &state->oterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 kctl->id.name, sizeof(kctl->id.name), 0);
Takashi Iwai5a15f282017-12-18 23:36:57 +01002390 /* ... or use the fixed string "USB" as the last resort */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002391 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
2393
Takashi Iwai5a15f282017-12-18 23:36:57 +01002394 /* and add the proper suffix */
Daniel Mack09414202010-05-31 13:35:44 +02002395 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2396 append_ctl_name(kctl, " Clock Source");
2397 else if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02002398 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02002400 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 }
2402
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002403 usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01002404 cval->head.id, kctl->id.name, desc->bNrInPins);
2405 return snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406}
2407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408/*
2409 * parse an audio unit recursively
2410 */
2411
Takashi Iwai86e07d32005-11-17 15:08:02 +01002412static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{
2414 unsigned char *p1;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002415 int protocol = state->mixer->protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 if (test_and_set_bit(unitid, state->unitbitmap))
2418 return 0; /* the unit already visited */
2419
2420 p1 = find_audio_control_unit(state, unitid);
2421 if (!p1) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002422 usb_audio_err(state->chip, "unit %d not found!\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return -EINVAL;
2424 }
2425
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002426 if (protocol == UAC_VERSION_1 || protocol == UAC_VERSION_2) {
2427 switch (p1[2]) {
2428 case UAC_INPUT_TERMINAL:
Andrew Chant5a222e82018-03-23 19:25:23 -07002429 return parse_audio_input_terminal(state, unitid, p1);
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002430 case UAC_MIXER_UNIT:
2431 return parse_audio_mixer_unit(state, unitid, p1);
2432 case UAC2_CLOCK_SOURCE:
2433 return parse_clock_source_unit(state, unitid, p1);
2434 case UAC_SELECTOR_UNIT:
2435 case UAC2_CLOCK_SELECTOR:
2436 return parse_audio_selector_unit(state, unitid, p1);
2437 case UAC_FEATURE_UNIT:
2438 return parse_audio_feature_unit(state, unitid, p1);
2439 case UAC1_PROCESSING_UNIT:
2440 /* UAC2_EFFECT_UNIT has the same value */
2441 if (protocol == UAC_VERSION_1)
2442 return parse_audio_processing_unit(state, unitid, p1);
2443 else
2444 return 0; /* FIXME - effect units not implemented yet */
2445 case UAC1_EXTENSION_UNIT:
2446 /* UAC2_PROCESSING_UNIT_V2 has the same value */
2447 if (protocol == UAC_VERSION_1)
2448 return parse_audio_extension_unit(state, unitid, p1);
2449 else /* UAC_VERSION_2 */
2450 return parse_audio_processing_unit(state, unitid, p1);
2451 case UAC2_EXTENSION_UNIT_V2:
Daniel Mack23caaf12010-03-11 21:13:25 +01002452 return parse_audio_extension_unit(state, unitid, p1);
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002453 default:
2454 usb_audio_err(state->chip,
2455 "unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
2456 return -EINVAL;
2457 }
2458 } else { /* UAC_VERSION_3 */
2459 switch (p1[2]) {
2460 case UAC_INPUT_TERMINAL:
2461 return 0; /* NOP */
2462 case UAC3_MIXER_UNIT:
2463 return parse_audio_mixer_unit(state, unitid, p1);
2464 case UAC3_CLOCK_SOURCE:
2465 return parse_clock_source_unit(state, unitid, p1);
2466 case UAC3_CLOCK_SELECTOR:
2467 return parse_audio_selector_unit(state, unitid, p1);
2468 case UAC3_FEATURE_UNIT:
2469 return parse_audio_feature_unit(state, unitid, p1);
2470 case UAC3_EFFECT_UNIT:
2471 return 0; /* FIXME - effect units not implemented yet */
2472 case UAC3_PROCESSING_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002473 return parse_audio_processing_unit(state, unitid, p1);
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002474 case UAC3_EXTENSION_UNIT:
2475 return parse_audio_extension_unit(state, unitid, p1);
2476 default:
2477 usb_audio_err(state->chip,
2478 "unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
2479 return -EINVAL;
2480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 }
2482}
2483
Clemens Ladisch84957a82005-04-29 16:23:13 +02002484static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
2485{
Takashi Iwai124751d2017-10-10 14:10:32 +02002486 /* kill pending URBs */
2487 snd_usb_mixer_disconnect(mixer);
2488
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002489 kfree(mixer->id_elems);
2490 if (mixer->urb) {
2491 kfree(mixer->urb->transfer_buffer);
2492 usb_free_urb(mixer->urb);
2493 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002494 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02002495 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002496 kfree(mixer);
2497}
2498
Takashi Iwai86e07d32005-11-17 15:08:02 +01002499static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002500{
2501 struct usb_mixer_interface *mixer = device->device_data;
2502 snd_usb_mixer_free(mixer);
2503 return 0;
2504}
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506/*
2507 * create mixer controls
2508 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01002509 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02002511static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002513 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 int err;
2515 const struct usbmix_ctl_map *map;
Daniel Mack23caaf12010-03-11 21:13:25 +01002516 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02002519 state.chip = mixer->chip;
2520 state.mixer = mixer;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002521 state.buffer = mixer->hostif->extra;
2522 state.buflen = mixer->hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002525 for (map = usbmix_ctl_maps; map->id; map++) {
2526 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002528 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002529 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 break;
2531 }
2532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Daniel Mack23caaf12010-03-11 21:13:25 +01002534 p = NULL;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002535 while ((p = snd_usb_find_csint_desc(mixer->hostif->extra,
2536 mixer->hostif->extralen,
Daniel Mack1faa5d02011-08-04 15:56:28 +02002537 p, UAC_OUTPUT_TERMINAL)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002538 if (mixer->protocol == UAC_VERSION_1) {
Daniel Mack69da9bc2010-06-16 17:57:28 +02002539 struct uac1_output_terminal_descriptor *desc = p;
Daniel Mack23caaf12010-03-11 21:13:25 +01002540
2541 if (desc->bLength < sizeof(*desc))
2542 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002543 /* mark terminal ID as visited */
2544 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002545 state.oterm.id = desc->bTerminalID;
2546 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2547 state.oterm.name = desc->iTerminal;
2548 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002549 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002550 return err;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002551 } else if (mixer->protocol == UAC_VERSION_2) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002552 struct uac2_output_terminal_descriptor *desc = p;
2553
2554 if (desc->bLength < sizeof(*desc))
2555 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002556 /* mark terminal ID as visited */
2557 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002558 state.oterm.id = desc->bTerminalID;
2559 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2560 state.oterm.name = desc->iTerminal;
2561 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002562 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002563 return err;
Daniel Mack09414202010-05-31 13:35:44 +02002564
Daniel Mack6bc170e2014-05-24 10:58:16 +02002565 /*
2566 * For UAC2, use the same approach to also add the
2567 * clock selectors
2568 */
Daniel Mack09414202010-05-31 13:35:44 +02002569 err = parse_audio_unit(&state, desc->bCSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002570 if (err < 0 && err != -EINVAL)
Daniel Mack09414202010-05-31 13:35:44 +02002571 return err;
Andrew Chant5a222e82018-03-23 19:25:23 -07002572
Takashi Iwai2b54f7852018-04-23 15:19:25 +02002573 if (uac_v2v3_control_is_readable(le16_to_cpu(desc->bmControls),
Andrew Chant5a222e82018-03-23 19:25:23 -07002574 UAC2_TE_CONNECTOR)) {
2575 build_connector_control(&state, &state.oterm,
2576 false);
2577 }
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002578 } else { /* UAC_VERSION_3 */
2579 struct uac3_output_terminal_descriptor *desc = p;
2580
2581 if (desc->bLength < sizeof(*desc))
2582 continue; /* invalid descriptor? */
2583 /* mark terminal ID as visited */
2584 set_bit(desc->bTerminalID, state.unitbitmap);
2585 state.oterm.id = desc->bTerminalID;
2586 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2587 state.oterm.name = le16_to_cpu(desc->wTerminalDescrStr);
2588 err = parse_audio_unit(&state, desc->bSourceID);
2589 if (err < 0 && err != -EINVAL)
2590 return err;
2591
2592 /*
2593 * For UAC3, use the same approach to also add the
2594 * clock selectors
2595 */
2596 err = parse_audio_unit(&state, desc->bCSourceID);
2597 if (err < 0 && err != -EINVAL)
2598 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +01002599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 }
Daniel Mack23caaf12010-03-11 21:13:25 +01002601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 return 0;
2603}
Clemens Ladisch84957a82005-04-29 16:23:13 +02002604
Daniel Mack7b1eda22010-03-11 21:13:22 +01002605void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002606{
Takashi Iwai3360b842014-11-18 11:47:04 +01002607 struct usb_mixer_elem_list *list;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002608
Julian Scheelb2500b52017-11-16 17:35:17 +01002609 for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem) {
2610 struct usb_mixer_elem_info *info =
2611 (struct usb_mixer_elem_info *)list;
2612 /* invalidate cache, so the value is read from the device */
2613 info->cached = 0;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002614 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
Takashi Iwai3360b842014-11-18 11:47:04 +01002615 &list->kctl->id);
Julian Scheelb2500b52017-11-16 17:35:17 +01002616 }
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002617}
2618
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002619static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
Takashi Iwai3360b842014-11-18 11:47:04 +01002620 struct usb_mixer_elem_list *list)
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002621{
Takashi Iwai3360b842014-11-18 11:47:04 +01002622 struct usb_mixer_elem_info *cval = (struct usb_mixer_elem_info *)list;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002623 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
2624 "S8", "U8", "S16", "U16"};
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002625 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
Takashi Iwai3360b842014-11-18 11:47:04 +01002626 "channels=%i, type=\"%s\"\n", cval->head.id,
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002627 cval->control, cval->cmask, cval->channels,
2628 val_types[cval->val_type]);
2629 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
2630 cval->min, cval->max, cval->dBmin, cval->dBmax);
2631}
2632
2633static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
2634 struct snd_info_buffer *buffer)
2635{
2636 struct snd_usb_audio *chip = entry->private_data;
2637 struct usb_mixer_interface *mixer;
Takashi Iwai3360b842014-11-18 11:47:04 +01002638 struct usb_mixer_elem_list *list;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002639 int unitid;
2640
2641 list_for_each_entry(mixer, &chip->mixer_list, list) {
2642 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002643 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
Daniel Mack3d8d4dc2010-06-16 17:57:31 +02002644 chip->usb_id, snd_usb_ctrl_intf(chip),
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002645 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002646 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
2647 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
Takashi Iwai3360b842014-11-18 11:47:04 +01002648 for (list = mixer->id_elems[unitid]; list;
2649 list = list->next_id_elem) {
2650 snd_iprintf(buffer, " Unit: %i\n", list->id);
2651 if (list->kctl)
2652 snd_iprintf(buffer,
2653 " Control: name=\"%s\", index=%i\n",
2654 list->kctl->id.name,
2655 list->kctl->id.index);
2656 if (list->dump)
2657 list->dump(buffer, list);
2658 }
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002659 }
2660 }
2661}
2662
Daniel Macke213e9c2010-05-11 18:13:50 +02002663static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
2664 int attribute, int value, int index)
2665{
Takashi Iwai3360b842014-11-18 11:47:04 +01002666 struct usb_mixer_elem_list *list;
Daniel Macke213e9c2010-05-11 18:13:50 +02002667 __u8 unitid = (index >> 8) & 0xff;
2668 __u8 control = (value >> 8) & 0xff;
2669 __u8 channel = value & 0xff;
Daniel Mack191227d2016-04-08 19:52:02 +02002670 unsigned int count = 0;
Daniel Macke213e9c2010-05-11 18:13:50 +02002671
2672 if (channel >= MAX_CHANNELS) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002673 usb_audio_dbg(mixer->chip,
2674 "%s(): bogus channel number %d\n",
2675 __func__, channel);
Daniel Macke213e9c2010-05-11 18:13:50 +02002676 return;
2677 }
2678
Daniel Mack191227d2016-04-08 19:52:02 +02002679 for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem)
2680 count++;
2681
2682 if (count == 0)
2683 return;
2684
Takashi Iwai3360b842014-11-18 11:47:04 +01002685 for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem) {
2686 struct usb_mixer_elem_info *info;
2687
2688 if (!list->kctl)
2689 continue;
2690
2691 info = (struct usb_mixer_elem_info *)list;
Daniel Mack191227d2016-04-08 19:52:02 +02002692 if (count > 1 && info->control != control)
Daniel Macke213e9c2010-05-11 18:13:50 +02002693 continue;
2694
2695 switch (attribute) {
2696 case UAC2_CS_CUR:
2697 /* invalidate cache, so the value is read from the device */
2698 if (channel)
2699 info->cached &= ~(1 << channel);
2700 else /* master channel */
2701 info->cached = 0;
2702
2703 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
Takashi Iwai3360b842014-11-18 11:47:04 +01002704 &info->head.kctl->id);
Daniel Macke213e9c2010-05-11 18:13:50 +02002705 break;
2706
2707 case UAC2_CS_RANGE:
2708 /* TODO */
2709 break;
2710
2711 case UAC2_CS_MEM:
2712 /* TODO */
2713 break;
2714
2715 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002716 usb_audio_dbg(mixer->chip,
2717 "unknown attribute %d in interrupt\n",
2718 attribute);
Daniel Macke213e9c2010-05-11 18:13:50 +02002719 break;
2720 } /* switch */
2721 }
2722}
2723
2724static void snd_usb_mixer_interrupt(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002725{
2726 struct usb_mixer_interface *mixer = urb->context;
Daniel Macke213e9c2010-05-11 18:13:50 +02002727 int len = urb->actual_length;
Oliver Neukumedf7de32011-03-11 13:19:43 +01002728 int ustatus = urb->status;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002729
Oliver Neukumedf7de32011-03-11 13:19:43 +01002730 if (ustatus != 0)
Daniel Macke213e9c2010-05-11 18:13:50 +02002731 goto requeue;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002732
Daniel Macke213e9c2010-05-11 18:13:50 +02002733 if (mixer->protocol == UAC_VERSION_1) {
2734 struct uac1_status_word *status;
2735
2736 for (status = urb->transfer_buffer;
2737 len >= sizeof(*status);
2738 len -= sizeof(*status), status++) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002739 dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n",
Daniel Macke213e9c2010-05-11 18:13:50 +02002740 status->bStatusType,
2741 status->bOriginator);
2742
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002743 /* ignore any notifications not from the control interface */
Daniel Macke213e9c2010-05-11 18:13:50 +02002744 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2745 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002746 continue;
Daniel Macke213e9c2010-05-11 18:13:50 +02002747
2748 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2749 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
Clemens Ladischb259b102005-04-29 16:29:28 +02002750 else
Daniel Macke213e9c2010-05-11 18:13:50 +02002751 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2752 }
2753 } else { /* UAC_VERSION_2 */
2754 struct uac2_interrupt_data_msg *msg;
2755
2756 for (msg = urb->transfer_buffer;
2757 len >= sizeof(*msg);
2758 len -= sizeof(*msg), msg++) {
2759 /* drop vendor specific and endpoint requests */
2760 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2761 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2762 continue;
2763
2764 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2765 le16_to_cpu(msg->wValue),
2766 le16_to_cpu(msg->wIndex));
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002767 }
2768 }
Daniel Macke213e9c2010-05-11 18:13:50 +02002769
2770requeue:
Daniel Mack6bc170e2014-05-24 10:58:16 +02002771 if (ustatus != -ENOENT &&
2772 ustatus != -ECONNRESET &&
2773 ustatus != -ESHUTDOWN) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002774 urb->dev = mixer->chip->dev;
2775 usb_submit_urb(urb, GFP_ATOMIC);
2776 }
2777}
2778
2779/* create the handler for the optional status interrupt endpoint */
2780static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2781{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002782 struct usb_endpoint_descriptor *ep;
2783 void *transfer_buffer;
2784 int buffer_length;
2785 unsigned int epnum;
2786
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002787 /* we need one interrupt input endpoint */
Daniel Mack1faa5d02011-08-04 15:56:28 +02002788 if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002789 return 0;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002790 ep = get_endpoint(mixer->hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01002791 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002792 return 0;
2793
Julia Lawall42a6e662008-12-29 11:23:02 +01002794 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002795 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2796 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2797 if (!transfer_buffer)
2798 return -ENOMEM;
2799 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2800 if (!mixer->urb) {
2801 kfree(transfer_buffer);
2802 return -ENOMEM;
2803 }
2804 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2805 usb_rcvintpipe(mixer->chip->dev, epnum),
2806 transfer_buffer, buffer_length,
Daniel Macke213e9c2010-05-11 18:13:50 +02002807 snd_usb_mixer_interrupt, mixer, ep->bInterval);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002808 usb_submit_urb(mixer->urb, GFP_KERNEL);
2809 return 0;
2810}
2811
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002812int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2813 int ignore_error)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002814{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002815 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002816 .dev_free = snd_usb_mixer_dev_free
2817 };
2818 struct usb_mixer_interface *mixer;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002819 struct snd_info_entry *entry;
Daniel Mack23caaf12010-03-11 21:13:25 +01002820 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002821
2822 strcpy(chip->card->mixername, "USB Mixer");
2823
Takashi Iwai561b2202005-09-09 14:22:34 +02002824 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002825 if (!mixer)
2826 return -ENOMEM;
2827 mixer->chip = chip;
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002828 mixer->ignore_ctl_error = ignore_error;
Jaroslav Kysela291186e2010-02-16 11:55:18 +01002829 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2830 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002831 if (!mixer->id_elems) {
2832 kfree(mixer);
2833 return -ENOMEM;
2834 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002835
Daniel Mack1faa5d02011-08-04 15:56:28 +02002836 mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
2837 switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +02002838 case UAC_VERSION_1:
2839 default:
2840 mixer->protocol = UAC_VERSION_1;
2841 break;
2842 case UAC_VERSION_2:
2843 mixer->protocol = UAC_VERSION_2;
2844 break;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002845 case UAC_VERSION_3:
2846 mixer->protocol = UAC_VERSION_3;
2847 break;
Clemens Ladischa2acad82010-09-03 10:53:11 +02002848 }
Daniel Mack7b8a0432010-02-22 23:49:12 +01002849
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002850 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002851 (err = snd_usb_mixer_status_create(mixer)) < 0)
2852 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002853
Daniel Mack7b1eda22010-03-11 21:13:22 +01002854 snd_usb_mixer_apply_create_quirk(mixer);
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02002855
Takashi Iwai9cbb2802014-02-04 11:15:31 +01002856 err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002857 if (err < 0)
2858 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002859
2860 if (list_empty(&chip->mixer_list) &&
2861 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2862 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2863
Clemens Ladisch84957a82005-04-29 16:23:13 +02002864 list_add(&mixer->list, &chip->mixer_list);
2865 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002866
2867_error:
2868 snd_usb_mixer_free(mixer);
2869 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002870}
2871
Takashi Iwaia6cece92014-10-31 11:24:32 +01002872void snd_usb_mixer_disconnect(struct usb_mixer_interface *mixer)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002873{
Takashi Iwai124751d2017-10-10 14:10:32 +02002874 if (mixer->disconnected)
2875 return;
2876 if (mixer->urb)
2877 usb_kill_urb(mixer->urb);
2878 if (mixer->rc_urb)
2879 usb_kill_urb(mixer->rc_urb);
2880 mixer->disconnected = true;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002881}
Takashi Iwai400362f2014-01-20 16:51:16 +01002882
2883#ifdef CONFIG_PM
2884/* stop any bus activity of a mixer */
2885static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
2886{
2887 usb_kill_urb(mixer->urb);
2888 usb_kill_urb(mixer->rc_urb);
2889}
2890
2891static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
2892{
2893 int err;
2894
2895 if (mixer->urb) {
2896 err = usb_submit_urb(mixer->urb, GFP_NOIO);
2897 if (err < 0)
2898 return err;
2899 }
2900
2901 return 0;
2902}
2903
2904int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer)
2905{
2906 snd_usb_mixer_inactivate(mixer);
2907 return 0;
2908}
2909
Takashi Iwai3360b842014-11-18 11:47:04 +01002910static int restore_mixer_value(struct usb_mixer_elem_list *list)
Takashi Iwai400362f2014-01-20 16:51:16 +01002911{
Takashi Iwai3360b842014-11-18 11:47:04 +01002912 struct usb_mixer_elem_info *cval = (struct usb_mixer_elem_info *)list;
Takashi Iwai400362f2014-01-20 16:51:16 +01002913 int c, err, idx;
2914
2915 if (cval->cmask) {
2916 idx = 0;
2917 for (c = 0; c < MAX_CHANNELS; c++) {
2918 if (!(cval->cmask & (1 << c)))
2919 continue;
Yao-Wen Mao6aa69252015-08-28 16:33:25 +08002920 if (cval->cached & (1 << (c + 1))) {
Chris J Argeseef90452014-11-12 12:07:01 -06002921 err = snd_usb_set_cur_mix_value(cval, c + 1, idx,
Takashi Iwai400362f2014-01-20 16:51:16 +01002922 cval->cache_val[idx]);
2923 if (err < 0)
2924 return err;
2925 }
2926 idx++;
2927 }
2928 } else {
2929 /* master */
2930 if (cval->cached) {
Chris J Argeseef90452014-11-12 12:07:01 -06002931 err = snd_usb_set_cur_mix_value(cval, 0, 0, *cval->cache_val);
Takashi Iwai400362f2014-01-20 16:51:16 +01002932 if (err < 0)
2933 return err;
2934 }
2935 }
2936
2937 return 0;
2938}
2939
2940int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume)
2941{
Takashi Iwai3360b842014-11-18 11:47:04 +01002942 struct usb_mixer_elem_list *list;
Takashi Iwai400362f2014-01-20 16:51:16 +01002943 int id, err;
2944
Takashi Iwai400362f2014-01-20 16:51:16 +01002945 if (reset_resume) {
2946 /* restore cached mixer values */
2947 for (id = 0; id < MAX_ID_ELEMS; id++) {
Takashi Iwai3360b842014-11-18 11:47:04 +01002948 for (list = mixer->id_elems[id]; list;
2949 list = list->next_id_elem) {
2950 if (list->resume) {
2951 err = list->resume(list);
2952 if (err < 0)
2953 return err;
2954 }
Takashi Iwai400362f2014-01-20 16:51:16 +01002955 }
2956 }
2957 }
2958
2959 return snd_usb_mixer_activate(mixer);
2960}
2961#endif
Takashi Iwai3360b842014-11-18 11:47:04 +01002962
2963void snd_usb_mixer_elem_init_std(struct usb_mixer_elem_list *list,
2964 struct usb_mixer_interface *mixer,
2965 int unitid)
2966{
2967 list->mixer = mixer;
2968 list->id = unitid;
2969 list->dump = snd_usb_mixer_dump_cval;
2970#ifdef CONFIG_PM
2971 list->resume = restore_mixer_value;
2972#endif
2973}