blob: a02443717625fdee827065bbdef9c155e3848463 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Mixer control part
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
11 *
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 */
28
Daniel Mack157a57b2010-06-16 17:57:30 +020029/*
30 * TODOs, for both the mixer and the streaming interfaces:
31 *
32 * - support for UAC2 effect units
33 * - support for graphical equalizers
34 * - RANGE and MEM set commands (UAC2)
35 * - RANGE and MEM interrupt dispatchers (UAC2)
36 * - audio channel clustering (UAC2)
37 * - audio sample rate converter units (UAC2)
38 * - proper handling of clock multipliers (UAC2)
39 * - dispatch clock change notifications (UAC2)
40 * - stop PCM streams which use a clock that became invalid
41 * - stop PCM streams which use a clock selector that has changed
42 * - parse available sample rates again when clock sources changed
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/bitops.h>
46#include <linux/init.h>
47#include <linux/list.h>
Daniel Mackcddaafb2016-04-09 11:21:46 +020048#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/slab.h>
50#include <linux/string.h>
51#include <linux/usb.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010052#include <linux/usb/audio.h>
Daniel Mack23caaf12010-03-11 21:13:25 +010053#include <linux/usb/audio-v2.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <sound/core.h>
56#include <sound/control.h>
Clemens Ladischb259b102005-04-29 16:29:28 +020057#include <sound/hwdep.h>
Clemens Ladischaafad562005-05-10 14:47:38 +020058#include <sound/info.h>
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +020059#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#include "usbaudio.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010062#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010063#include "helper.h"
Daniel Mack7b1eda22010-03-11 21:13:22 +010064#include "mixer_quirks.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010065#include "power.h"
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +020066
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +010067#define MAX_ID_ELEMS 256
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069struct usb_audio_term {
70 int id;
71 int type;
72 int channels;
73 unsigned int chconfig;
74 int name;
75};
76
77struct usbmix_name_map;
78
Takashi Iwai86e07d32005-11-17 15:08:02 +010079struct mixer_build {
80 struct snd_usb_audio *chip;
Clemens Ladisch84957a82005-04-29 16:23:13 +020081 struct usb_mixer_interface *mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 unsigned char *buffer;
83 unsigned int buflen;
Jaroslav Kysela291186e2010-02-16 11:55:18 +010084 DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
Hui Peng2bac3a32019-08-15 00:31:34 -040085 DECLARE_BITMAP(termbitmap, MAX_ID_ELEMS);
Takashi Iwai86e07d32005-11-17 15:08:02 +010086 struct usb_audio_term oterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 const struct usbmix_name_map *map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +020088 const struct usbmix_selector_map *selector_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
Joseph Teichman1cdfa9f2011-02-08 01:22:36 -050091/*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -080092enum {
93 USB_XU_CLOCK_RATE = 0xe301,
94 USB_XU_CLOCK_SOURCE = 0xe302,
95 USB_XU_DIGITAL_IO_STATUS = 0xe303,
96 USB_XU_DEVICE_OPTIONS = 0xe304,
97 USB_XU_DIRECT_MONITORING = 0xe305,
98 USB_XU_METERING = 0xe306
99};
100enum {
101 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
102 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
103 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
104 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
105};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107/*
108 * manual mapping of mixer names
109 * if the mixer topology is too complicated and the parsed names are
110 * ambiguous, add the entries in usbmixer_maps.c.
111 */
Daniel Mackf0b5e632010-03-11 21:13:23 +0100112#include "mixer_maps.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100114static const struct usbmix_name_map *
115find_map(struct mixer_build *state, int unitid, int control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100117 const struct usbmix_name_map *p = state->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100119 if (!p)
120 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 for (p = state->map; p->id; p++) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100123 if (p->id == unitid &&
124 (!control || !p->control || control == p->control))
125 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100127 return NULL;
128}
129
130/* get the mapped name if the unit matches */
131static int
132check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
133{
134 if (!p || !p->name)
135 return 0;
136
137 buflen--;
138 return strlcpy(buf, p->name, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Takashi Iwai5aeee342014-11-18 11:02:14 +0100141/* ignore the error value if ignore_ctl_error flag is set */
142#define filter_error(cval, err) \
Takashi Iwai3360b842014-11-18 11:47:04 +0100143 ((cval)->head.mixer->ignore_ctl_error ? 0 : (err))
Takashi Iwai5aeee342014-11-18 11:02:14 +0100144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* check whether the control should be ignored */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100146static inline int
147check_ignored_ctl(const struct usbmix_name_map *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100149 if (!p || p->name || p->dB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return 0;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100151 return 1;
152}
153
154/* dB mapping */
155static inline void check_mapped_dB(const struct usbmix_name_map *p,
156 struct usb_mixer_elem_info *cval)
157{
158 if (p && p->dB) {
159 cval->dBmin = p->dB->min;
160 cval->dBmax = p->dB->max;
Takashi Iwai38b65192011-08-19 07:55:10 +0200161 cval->initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200165/* get the mapped selector source name */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100166static int check_mapped_selector_name(struct mixer_build *state, int unitid,
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200167 int index, char *buf, int buflen)
168{
169 const struct usbmix_selector_map *p;
170
Daniel Mack6bc170e2014-05-24 10:58:16 +0200171 if (!state->selector_map)
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200172 return 0;
173 for (p = state->selector_map; p->id; p++) {
174 if (p->id == unitid && index < p->count)
175 return strlcpy(buf, p->names[index], buflen);
176 }
177 return 0;
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*
181 * find an audio control unit with the given unit id
182 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200183static void *find_audio_control_unit(struct mixer_build *state,
184 unsigned char unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Daniel Mack67e1daa2010-05-31 13:35:43 +0200186 /* we just parse the header */
187 struct uac_feature_unit_descriptor *hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Daniel Mack67e1daa2010-05-31 13:35:43 +0200189 while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
190 USB_DT_CS_INTERFACE)) != NULL) {
191 if (hdr->bLength >= 4 &&
192 hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
193 hdr->bDescriptorSubtype <= UAC2_SAMPLE_RATE_CONVERTER &&
194 hdr->bUnitID == unit)
195 return hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Daniel Mack67e1daa2010-05-31 13:35:43 +0200197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return NULL;
199}
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/*
202 * copy a string with the given id
203 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200204static int snd_usb_copy_string_desc(struct mixer_build *state,
205 int index, char *buf, int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
Jaejoong Kimc40457c2017-12-04 15:31:48 +0900208
209 if (len < 0)
210 return 0;
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 buf[len] = 0;
213 return len;
214}
215
216/*
217 * convert from the byte/word on usb descriptor to the zero-based integer
218 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100219static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 switch (cval->val_type) {
222 case USB_MIXER_BOOLEAN:
223 return !!val;
224 case USB_MIXER_INV_BOOLEAN:
225 return !val;
226 case USB_MIXER_U8:
227 val &= 0xff;
228 break;
229 case USB_MIXER_S8:
230 val &= 0xff;
231 if (val >= 0x80)
232 val -= 0x100;
233 break;
234 case USB_MIXER_U16:
235 val &= 0xffff;
236 break;
237 case USB_MIXER_S16:
238 val &= 0xffff;
239 if (val >= 0x8000)
240 val -= 0x10000;
241 break;
242 }
243 return val;
244}
245
246/*
247 * convert from the zero-based int to the byte/word for usb descriptor
248 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100249static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 switch (cval->val_type) {
252 case USB_MIXER_BOOLEAN:
253 return !!val;
254 case USB_MIXER_INV_BOOLEAN:
255 return !val;
256 case USB_MIXER_S8:
257 case USB_MIXER_U8:
258 return val & 0xff;
259 case USB_MIXER_S16:
260 case USB_MIXER_U16:
261 return val & 0xffff;
262 }
263 return 0; /* not reached */
264}
265
Takashi Iwai86e07d32005-11-17 15:08:02 +0100266static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Daniel Mack6bc170e2014-05-24 10:58:16 +0200268 if (!cval->res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 cval->res = 1;
270 if (val < cval->min)
271 return 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200272 else if (val >= cval->max)
273 return (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 else
275 return (val - cval->min) / cval->res;
276}
277
Takashi Iwai86e07d32005-11-17 15:08:02 +0100278static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 if (val < 0)
281 return cval->min;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200282 if (!cval->res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 cval->res = 1;
284 val *= cval->res;
285 val += cval->min;
286 if (val > cval->max)
287 return cval->max;
288 return val;
289}
290
Julian Scheelbc18e312015-08-14 16:14:45 +0200291static int uac2_ctl_value_size(int val_type)
292{
293 switch (val_type) {
294 case USB_MIXER_S32:
295 case USB_MIXER_U32:
296 return 4;
297 case USB_MIXER_S16:
298 case USB_MIXER_U16:
299 return 2;
300 default:
301 return 1;
302 }
303 return 0; /* unreachable */
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307/*
308 * retrieve a mixer value
309 */
310
Daniel Mack6bc170e2014-05-24 10:58:16 +0200311static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request,
312 int validx, int *value_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Takashi Iwai3360b842014-11-18 11:47:04 +0100314 struct snd_usb_audio *chip = cval->head.mixer->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 unsigned char buf[2];
316 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
317 int timeout = 10;
Takashi Iwai978520b2012-10-12 15:12:55 +0200318 int idx = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Takashi Iwai47ab1542015-08-25 16:09:00 +0200320 err = snd_usb_lock_shutdown(chip);
Oliver Neukum88a85162011-03-11 14:51:12 +0100321 if (err < 0)
322 return -EIO;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 while (timeout-- > 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100325 idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8);
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200326 if (snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Takashi Iwai978520b2012-10-12 15:12:55 +0200328 validx, idx, buf, val_len) >= val_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
Takashi Iwai978520b2012-10-12 15:12:55 +0200330 err = 0;
331 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100334 usb_audio_dbg(chip,
335 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
336 request, validx, idx, cval->val_type);
Takashi Iwai978520b2012-10-12 15:12:55 +0200337 err = -EINVAL;
338
339 out:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200340 snd_usb_unlock_shutdown(chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200341 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Daniel Mack6bc170e2014-05-24 10:58:16 +0200344static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request,
345 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100346{
Takashi Iwai3360b842014-11-18 11:47:04 +0100347 struct snd_usb_audio *chip = cval->head.mixer->chip;
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100348 /* enough space for one range */
349 unsigned char buf[sizeof(__u16) + 3 * sizeof(__u32)];
Daniel Mack23caaf12010-03-11 21:13:25 +0100350 unsigned char *val;
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100351 int idx = 0, ret, val_size, size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100352 __u8 bRequest;
353
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100354 val_size = uac2_ctl_value_size(cval->val_type);
355
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200356 if (request == UAC_GET_CUR) {
357 bRequest = UAC2_CS_CUR;
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100358 size = val_size;
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200359 } else {
360 bRequest = UAC2_CS_RANGE;
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100361 size = sizeof(__u16) + 3 * val_size;
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200362 }
363
364 memset(buf, 0, sizeof(buf));
Daniel Mack23caaf12010-03-11 21:13:25 +0100365
Takashi Iwai47ab1542015-08-25 16:09:00 +0200366 ret = snd_usb_lock_shutdown(chip) ? -EIO : 0;
Oliver Neukum88a85162011-03-11 14:51:12 +0100367 if (ret)
368 goto error;
369
Takashi Iwai47ab1542015-08-25 16:09:00 +0200370 idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8);
371 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
Daniel Mack23caaf12010-03-11 21:13:25 +0100372 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Takashi Iwai978520b2012-10-12 15:12:55 +0200373 validx, idx, buf, size);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200374 snd_usb_unlock_shutdown(chip);
Daniel Mack23caaf12010-03-11 21:13:25 +0100375
376 if (ret < 0) {
Oliver Neukum88a85162011-03-11 14:51:12 +0100377error:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100378 usb_audio_err(chip,
379 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
380 request, validx, idx, cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100381 return ret;
382 }
383
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200384 /* FIXME: how should we handle multiple triplets here? */
385
Daniel Mack23caaf12010-03-11 21:13:25 +0100386 switch (request) {
387 case UAC_GET_CUR:
388 val = buf;
389 break;
390 case UAC_GET_MIN:
391 val = buf + sizeof(__u16);
392 break;
393 case UAC_GET_MAX:
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100394 val = buf + sizeof(__u16) + val_size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100395 break;
396 case UAC_GET_RES:
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100397 val = buf + sizeof(__u16) + val_size * 2;
Daniel Mack23caaf12010-03-11 21:13:25 +0100398 break;
399 default:
400 return -EINVAL;
401 }
402
Kirill Marinushkin31cb8df2018-01-29 06:37:55 +0100403 *value_ret = convert_signed_value(cval,
404 snd_usb_combine_bytes(val, val_size));
Daniel Mack23caaf12010-03-11 21:13:25 +0100405
406 return 0;
407}
408
Daniel Mack6bc170e2014-05-24 10:58:16 +0200409static int get_ctl_value(struct usb_mixer_elem_info *cval, int request,
410 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100411{
Eldad Zack9f814102012-11-28 23:55:35 +0100412 validx += cval->idx_off;
413
Takashi Iwai3360b842014-11-18 11:47:04 +0100414 return (cval->head.mixer->protocol == UAC_VERSION_1) ?
Daniel Mack23caaf12010-03-11 21:13:25 +0100415 get_ctl_value_v1(cval, request, validx, value_ret) :
416 get_ctl_value_v2(cval, request, validx, value_ret);
417}
418
Daniel Mack6bc170e2014-05-24 10:58:16 +0200419static int get_cur_ctl_value(struct usb_mixer_elem_info *cval,
420 int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100422 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
425/* channel = 0: master, 1 = first channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100426static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
427 int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Daniel Mack6bc170e2014-05-24 10:58:16 +0200429 return get_ctl_value(cval, UAC_GET_CUR,
430 (cval->control << 8) | channel,
431 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Chris J Argeseef90452014-11-12 12:07:01 -0600434int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info *cval,
Takashi Iwai641b4872009-01-15 17:05:24 +0100435 int channel, int index, int *value)
436{
437 int err;
438
439 if (cval->cached & (1 << channel)) {
440 *value = cval->cache_val[index];
441 return 0;
442 }
443 err = get_cur_mix_raw(cval, channel, value);
444 if (err < 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100445 if (!cval->head.mixer->ignore_ctl_error)
446 usb_audio_dbg(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100447 "cannot get current value for control %d ch %d: err = %d\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200448 cval->control, channel, err);
Takashi Iwai641b4872009-01-15 17:05:24 +0100449 return err;
450 }
451 cval->cached |= 1 << channel;
452 cval->cache_val[index] = *value;
453 return 0;
454}
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/*
457 * set a mixer value
458 */
459
Daniel Mack7b1eda22010-03-11 21:13:22 +0100460int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
461 int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Takashi Iwai3360b842014-11-18 11:47:04 +0100463 struct snd_usb_audio *chip = cval->head.mixer->chip;
Julian Scheelbc18e312015-08-14 16:14:45 +0200464 unsigned char buf[4];
Takashi Iwai978520b2012-10-12 15:12:55 +0200465 int idx = 0, val_len, err, timeout = 10;
Daniel Mack23caaf12010-03-11 21:13:25 +0100466
Eldad Zack9f814102012-11-28 23:55:35 +0100467 validx += cval->idx_off;
468
Takashi Iwai3360b842014-11-18 11:47:04 +0100469 if (cval->head.mixer->protocol == UAC_VERSION_1) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100470 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
471 } else { /* UAC_VERSION_2 */
Julian Scheelbc18e312015-08-14 16:14:45 +0200472 val_len = uac2_ctl_value_size(cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100473
474 /* FIXME */
475 if (request != UAC_SET_CUR) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100476 usb_audio_dbg(chip, "RANGE setting not yet supported\n");
Daniel Mack23caaf12010-03-11 21:13:25 +0100477 return -EINVAL;
478 }
479
480 request = UAC2_CS_CUR;
481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 value_set = convert_bytes_value(cval, value_set);
484 buf[0] = value_set & 0xff;
485 buf[1] = (value_set >> 8) & 0xff;
Julian Scheelbc18e312015-08-14 16:14:45 +0200486 buf[2] = (value_set >> 16) & 0xff;
487 buf[3] = (value_set >> 24) & 0xff;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200488
489 err = snd_usb_lock_shutdown(chip);
Oliver Neukum88a85162011-03-11 14:51:12 +0100490 if (err < 0)
491 return -EIO;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200492
Takashi Iwai978520b2012-10-12 15:12:55 +0200493 while (timeout-- > 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100494 idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8);
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200495 if (snd_usb_ctl_msg(chip->dev,
496 usb_sndctrlpipe(chip->dev, 0), request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
Takashi Iwai978520b2012-10-12 15:12:55 +0200498 validx, idx, buf, val_len) >= 0) {
499 err = 0;
500 goto out;
Oliver Neukum88a85162011-03-11 14:51:12 +0100501 }
Takashi Iwai978520b2012-10-12 15:12:55 +0200502 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100503 usb_audio_dbg(chip, "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200504 request, validx, idx, cval->val_type, buf[0], buf[1]);
Takashi Iwai978520b2012-10-12 15:12:55 +0200505 err = -EINVAL;
506
507 out:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200508 snd_usb_unlock_shutdown(chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200509 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Daniel Mack6bc170e2014-05-24 10:58:16 +0200512static int set_cur_ctl_value(struct usb_mixer_elem_info *cval,
513 int validx, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Daniel Mack7b1eda22010-03-11 21:13:22 +0100515 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Chris J Argeseef90452014-11-12 12:07:01 -0600518int snd_usb_set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
Takashi Iwai641b4872009-01-15 17:05:24 +0100519 int index, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Takashi Iwai641b4872009-01-15 17:05:24 +0100521 int err;
Daniel Macka6a33252010-05-31 13:35:37 +0200522 unsigned int read_only = (channel == 0) ?
523 cval->master_readonly :
524 cval->ch_readonly & (1 << (channel - 1));
525
526 if (read_only) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100527 usb_audio_dbg(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100528 "%s(): channel %d of control %d is read_only\n",
Daniel Macka6a33252010-05-31 13:35:37 +0200529 __func__, channel, cval->control);
530 return 0;
531 }
532
Daniel Mack6bc170e2014-05-24 10:58:16 +0200533 err = snd_usb_mixer_set_ctl_value(cval,
534 UAC_SET_CUR, (cval->control << 8) | channel,
535 value);
Takashi Iwai641b4872009-01-15 17:05:24 +0100536 if (err < 0)
537 return err;
538 cval->cached |= 1 << channel;
539 cval->cache_val[index] = value;
540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200543/*
544 * TLV callback for mixer volume controls
545 */
Felix Homann285de9c2012-04-23 20:24:24 +0200546int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200547 unsigned int size, unsigned int __user *_tlv)
548{
549 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Takashi Iwaib8e1c732009-06-16 14:04:37 +0200550 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200551
552 if (size < sizeof(scale))
553 return -ENOMEM;
Takashi Iwaid3e6e592017-08-16 14:18:37 +0200554 if (cval->min_mute)
555 scale[0] = SNDRV_CTL_TLVT_DB_MINMAX_MUTE;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100556 scale[2] = cval->dBmin;
557 scale[3] = cval->dBmax;
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200558 if (copy_to_user(_tlv, scale, sizeof(scale)))
559 return -EFAULT;
560 return 0;
561}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563/*
564 * parser routines begin here...
565 */
566
Takashi Iwai86e07d32005-11-17 15:08:02 +0100567static int parse_audio_unit(struct mixer_build *state, int unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569
570/*
571 * check if the input/output channel routing is enabled on the given bitmap.
572 * used for mixer unit parser
573 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200574static int check_matrix_bitmap(unsigned char *bmap,
575 int ich, int och, int num_outs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 int idx = ich * num_outs + och;
578 return bmap[idx >> 3] & (0x80 >> (idx & 7));
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/*
582 * add an alsa control element
583 * search and increment the index until an empty slot is found.
584 *
585 * if failed, give up and free the control instance.
586 */
587
Takashi Iwai3360b842014-11-18 11:47:04 +0100588int snd_usb_mixer_add_control(struct usb_mixer_elem_list *list,
Daniel Mackef9d5972011-05-25 09:09:00 +0200589 struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Takashi Iwai3360b842014-11-18 11:47:04 +0100591 struct usb_mixer_interface *mixer = list->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200593
Daniel Mackef9d5972011-05-25 09:09:00 +0200594 while (snd_ctl_find_id(mixer->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 kctl->id.index++;
Daniel Mackef9d5972011-05-25 09:09:00 +0200596 if ((err = snd_ctl_add(mixer->chip->card, kctl)) < 0) {
Daniel Mack6bc170e2014-05-24 10:58:16 +0200597 usb_audio_dbg(mixer->chip, "cannot add control (err = %d)\n",
598 err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200599 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Takashi Iwai3360b842014-11-18 11:47:04 +0100601 list->kctl = kctl;
602 list->next_id_elem = mixer->id_elems[list->id];
603 mixer->id_elems[list->id] = list;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200604 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607/*
608 * get a terminal name string
609 */
610
611static struct iterm_name_combo {
612 int type;
613 char *name;
614} iterm_names[] = {
615 { 0x0300, "Output" },
616 { 0x0301, "Speaker" },
617 { 0x0302, "Headphone" },
618 { 0x0303, "HMD Audio" },
619 { 0x0304, "Desktop Speaker" },
620 { 0x0305, "Room Speaker" },
621 { 0x0306, "Com Speaker" },
622 { 0x0307, "LFE" },
623 { 0x0600, "External In" },
624 { 0x0601, "Analog In" },
625 { 0x0602, "Digital In" },
626 { 0x0603, "Line" },
627 { 0x0604, "Legacy In" },
628 { 0x0605, "IEC958 In" },
629 { 0x0606, "1394 DA Stream" },
630 { 0x0607, "1394 DV Stream" },
631 { 0x0700, "Embedded" },
632 { 0x0701, "Noise Source" },
633 { 0x0702, "Equalization Noise" },
634 { 0x0703, "CD" },
635 { 0x0704, "DAT" },
636 { 0x0705, "DCC" },
637 { 0x0706, "MiniDisk" },
638 { 0x0707, "Analog Tape" },
639 { 0x0708, "Phonograph" },
640 { 0x0709, "VCR Audio" },
641 { 0x070a, "Video Disk Audio" },
642 { 0x070b, "DVD Audio" },
643 { 0x070c, "TV Tuner Audio" },
644 { 0x070d, "Satellite Rec Audio" },
645 { 0x070e, "Cable Tuner Audio" },
646 { 0x070f, "DSS Audio" },
647 { 0x0710, "Radio Receiver" },
648 { 0x0711, "Radio Transmitter" },
649 { 0x0712, "Multi-Track Recorder" },
650 { 0x0713, "Synthesizer" },
651 { 0 },
652};
653
Takashi Iwai86e07d32005-11-17 15:08:02 +0100654static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 unsigned char *name, int maxlen, int term_only)
656{
657 struct iterm_name_combo *names;
658
659 if (iterm->name)
Daniel Mack6bc170e2014-05-24 10:58:16 +0200660 return snd_usb_copy_string_desc(state, iterm->name,
661 name, maxlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 /* virtual type - not a real terminal */
664 if (iterm->type >> 16) {
665 if (term_only)
666 return 0;
667 switch (iterm->type >> 16) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100668 case UAC_SELECTOR_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200669 strcpy(name, "Selector");
670 return 8;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200671 case UAC1_PROCESSING_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200672 strcpy(name, "Process Unit");
673 return 12;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200674 case UAC1_EXTENSION_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200675 strcpy(name, "Ext Unit");
676 return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100677 case UAC_MIXER_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200678 strcpy(name, "Mixer");
679 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 default:
681 return sprintf(name, "Unit %d", iterm->id);
682 }
683 }
684
685 switch (iterm->type & 0xff00) {
686 case 0x0100:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200687 strcpy(name, "PCM");
688 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 case 0x0200:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200690 strcpy(name, "Mic");
691 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 case 0x0400:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200693 strcpy(name, "Headset");
694 return 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 case 0x0500:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200696 strcpy(name, "Phone");
697 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699
Daniel Mack6bc170e2014-05-24 10:58:16 +0200700 for (names = iterm_names; names->type; names++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (names->type == iterm->type) {
702 strcpy(name, names->name);
703 return strlen(names->name);
704 }
Daniel Mack6bc170e2014-05-24 10:58:16 +0200705 }
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 0;
708}
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710/*
711 * parse the source unit recursively until it reaches to a terminal
712 * or a branched unit.
713 */
Hui Peng2bac3a32019-08-15 00:31:34 -0400714static int __check_input_term(struct mixer_build *state, int id,
Daniel Mack6bc170e2014-05-24 10:58:16 +0200715 struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Daniel Mack09414202010-05-31 13:35:44 +0200717 int err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100718 void *p1;
Hui Peng2bac3a32019-08-15 00:31:34 -0400719 unsigned char *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 memset(term, 0, sizeof(*term));
Hui Peng2bac3a32019-08-15 00:31:34 -0400722 for (;;) {
723 /* a loop in the terminal chain? */
724 if (test_and_set_bit(id, state->termbitmap))
725 return -EINVAL;
726
727 p1 = find_audio_control_unit(state, id);
728 if (!p1)
729 break;
730
731 hdr = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100733 switch (hdr[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100734 case UAC_INPUT_TERMINAL:
Daniel Mack23caaf12010-03-11 21:13:25 +0100735 if (state->mixer->protocol == UAC_VERSION_1) {
736 struct uac_input_terminal_descriptor *d = p1;
737 term->type = le16_to_cpu(d->wTerminalType);
738 term->channels = d->bNrChannels;
739 term->chconfig = le16_to_cpu(d->wChannelConfig);
740 term->name = d->iTerminal;
741 } else { /* UAC_VERSION_2 */
742 struct uac2_input_terminal_descriptor *d = p1;
Julian Scheel9430e542015-08-19 09:28:09 +0200743
744 /* call recursively to verify that the
745 * referenced clock entity is valid */
Hui Peng2bac3a32019-08-15 00:31:34 -0400746 err = __check_input_term(state, d->bCSourceID, term);
Julian Scheel9430e542015-08-19 09:28:09 +0200747 if (err < 0)
748 return err;
749
750 /* save input term properties after recursion,
751 * to ensure they are not overriden by the
752 * recursion calls */
753 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100754 term->type = le16_to_cpu(d->wTerminalType);
755 term->channels = d->bNrChannels;
756 term->chconfig = le32_to_cpu(d->bmChannelConfig);
757 term->name = d->iTerminal;
758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100760 case UAC_FEATURE_UNIT: {
761 /* the header is the same for v1 and v2 */
762 struct uac_feature_unit_descriptor *d = p1;
Daniel Mack5e688882010-05-08 11:24:56 +0200763 id = d->bSourceID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 break; /* continue to parse */
Daniel Mack23caaf12010-03-11 21:13:25 +0100765 }
766 case UAC_MIXER_UNIT: {
767 struct uac_mixer_unit_descriptor *d = p1;
768 term->type = d->bDescriptorSubtype << 16; /* virtual type */
769 term->channels = uac_mixer_unit_bNrChannels(d);
770 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
771 term->name = uac_mixer_unit_iMixer(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100773 }
Daniel Mack09414202010-05-31 13:35:44 +0200774 case UAC_SELECTOR_UNIT:
775 case UAC2_CLOCK_SELECTOR: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100776 struct uac_selector_unit_descriptor *d = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /* call recursively to retrieve the channel info */
Hui Peng2bac3a32019-08-15 00:31:34 -0400778 err = __check_input_term(state, d->baSourceID[0], term);
Daniel Mack4d7b86c2013-03-19 21:09:24 +0100779 if (err < 0)
780 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100781 term->type = d->bDescriptorSubtype << 16; /* virtual type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100783 term->name = uac_selector_unit_iSelector(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100785 }
Daniel Mack69da9bc2010-06-16 17:57:28 +0200786 case UAC1_PROCESSING_UNIT:
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100787 case UAC1_EXTENSION_UNIT:
788 /* UAC2_PROCESSING_UNIT_V2 */
Torstein Hegge61ac5132013-03-19 17:12:14 +0100789 /* UAC2_EFFECT_UNIT */
790 case UAC2_EXTENSION_UNIT_V2: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100791 struct uac_processing_unit_descriptor *d = p1;
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100792
793 if (state->mixer->protocol == UAC_VERSION_2 &&
794 hdr[2] == UAC2_EFFECT_UNIT) {
795 /* UAC2/UAC1 unit IDs overlap here in an
796 * uncompatible way. Ignore this unit for now.
797 */
798 return 0;
799 }
800
Daniel Mack23caaf12010-03-11 21:13:25 +0100801 if (d->bNrInPins) {
802 id = d->baSourceID[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 break; /* continue to parse */
804 }
Daniel Mack23caaf12010-03-11 21:13:25 +0100805 term->type = d->bDescriptorSubtype << 16; /* virtual type */
806 term->channels = uac_processing_unit_bNrChannels(d);
807 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
808 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100810 }
Daniel Mack09414202010-05-31 13:35:44 +0200811 case UAC2_CLOCK_SOURCE: {
812 struct uac_clock_source_descriptor *d = p1;
813 term->type = d->bDescriptorSubtype << 16; /* virtual type */
814 term->id = id;
815 term->name = d->iClockSource;
816 return 0;
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 default:
819 return -ENODEV;
820 }
821 }
822 return -ENODEV;
823}
824
Hui Peng2bac3a32019-08-15 00:31:34 -0400825
826static int check_input_term(struct mixer_build *state, int id,
827 struct usb_audio_term *term)
828{
829 memset(term, 0, sizeof(*term));
830 memset(state->termbitmap, 0, sizeof(state->termbitmap));
831 return __check_input_term(state, id, term);
832}
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834/*
835 * Feature Unit
836 */
837
838/* feature unit control information */
839struct usb_feature_control_info {
840 const char *name;
Julian Scheelbc18e312015-08-14 16:14:45 +0200841 int type; /* data type for uac1 */
842 int type_uac2; /* data type for uac2 if different from uac1, else -1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843};
844
845static struct usb_feature_control_info audio_feature_info[] = {
Julian Scheelbc18e312015-08-14 16:14:45 +0200846 { "Mute", USB_MIXER_INV_BOOLEAN, -1 },
847 { "Volume", USB_MIXER_S16, -1 },
848 { "Tone Control - Bass", USB_MIXER_S8, -1 },
849 { "Tone Control - Mid", USB_MIXER_S8, -1 },
850 { "Tone Control - Treble", USB_MIXER_S8, -1 },
851 { "Graphic Equalizer", USB_MIXER_S8, -1 }, /* FIXME: not implemeted yet */
852 { "Auto Gain Control", USB_MIXER_BOOLEAN, -1 },
853 { "Delay Control", USB_MIXER_U16, USB_MIXER_U32 },
854 { "Bass Boost", USB_MIXER_BOOLEAN, -1 },
855 { "Loudness", USB_MIXER_BOOLEAN, -1 },
Daniel Mack2e0281d2010-05-31 13:35:42 +0200856 /* UAC2 specific */
Julian Scheelbc18e312015-08-14 16:14:45 +0200857 { "Input Gain Control", USB_MIXER_S16, -1 },
858 { "Input Gain Pad Control", USB_MIXER_S16, -1 },
859 { "Phase Inverter Control", USB_MIXER_BOOLEAN, -1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860};
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862/* private_free callback */
Chris J Argeseef90452014-11-12 12:07:01 -0600863void snd_usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Jesper Juhl4d572772005-05-30 17:30:32 +0200865 kfree(kctl->private_data);
866 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869/*
870 * interface to ALSA control for feature/mixer units
871 */
872
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100873/* volume control quirks */
874static void volume_control_quirks(struct usb_mixer_elem_info *cval,
875 struct snd_kcontrol *kctl)
876{
Takashi Iwai3360b842014-11-18 11:47:04 +0100877 struct snd_usb_audio *chip = cval->head.mixer->chip;
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100878 switch (chip->usb_id) {
Eldad Zackd50ed622012-11-28 23:55:39 +0100879 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
Matt Gruskine9a25e02013-02-09 12:56:35 -0500880 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
Eldad Zackd50ed622012-11-28 23:55:39 +0100881 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
882 cval->min = 0x0000;
883 cval->max = 0xffff;
884 cval->res = 0x00e6;
885 break;
886 }
887 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
888 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
889 cval->min = 0x00;
890 cval->max = 0xff;
891 break;
892 }
893 if (strstr(kctl->id.name, "Effect Return") != NULL) {
894 cval->min = 0xb706;
895 cval->max = 0xff7b;
896 cval->res = 0x0073;
897 break;
898 }
899 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
900 (strstr(kctl->id.name, "Effect Send") != NULL)) {
901 cval->min = 0xb5fb; /* -73 dB = 0xb6ff */
902 cval->max = 0xfcfe;
903 cval->res = 0x0073;
904 }
905 break;
906
Felix Homannd34bf142012-04-23 20:24:27 +0200907 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
908 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
909 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100910 usb_audio_info(chip,
911 "set quirk for FTU Effect Duration\n");
Felix Homannd34bf142012-04-23 20:24:27 +0200912 cval->min = 0x0000;
913 cval->max = 0x7f00;
914 cval->res = 0x0100;
915 break;
916 }
917 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
918 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100919 usb_audio_info(chip,
920 "set quirks for FTU Effect Feedback/Volume\n");
Felix Homannd34bf142012-04-23 20:24:27 +0200921 cval->min = 0x00;
922 cval->max = 0x7f;
923 break;
924 }
925 break;
926
Federico Cuello639a74b2018-05-09 00:13:38 +0200927 case USB_ID(0x0d8c, 0x0103):
928 if (!strcmp(kctl->id.name, "PCM Playback Volume")) {
929 usb_audio_info(chip,
930 "set volume quirk for CM102-A+/102S+\n");
931 cval->min = -256;
932 }
933 break;
934
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100935 case USB_ID(0x0471, 0x0101):
936 case USB_ID(0x0471, 0x0104):
937 case USB_ID(0x0471, 0x0105):
938 case USB_ID(0x0672, 0x1041):
939 /* quirk for UDA1321/N101.
940 * note that detection between firmware 2.1.1.7 (N101)
941 * and later 2.1.1.21 is not very clear from datasheets.
942 * I hope that the min value is -15360 for newer firmware --jk
943 */
944 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
945 cval->min == -15616) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100946 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100947 "set volume quirk for UDA1321/N101 chip\n");
948 cval->max = -256;
949 }
950 break;
951
952 case USB_ID(0x046d, 0x09a4):
953 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100954 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100955 "set volume quirk for QuickCam E3500\n");
956 cval->min = 6080;
957 cval->max = 8768;
958 cval->res = 192;
959 }
960 break;
961
Takashi Iwaie805ca82014-03-05 12:34:39 +0100962 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100963 case USB_ID(0x046d, 0x0808):
964 case USB_ID(0x046d, 0x0809):
Jason Lee Cragg64559312015-01-17 12:28:29 -0500965 case USB_ID(0x046d, 0x0819): /* Logitech Webcam C210 */
Takashi Iwai36691e12013-06-17 10:25:02 +0200966 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
Alexey Fisher55c00082011-11-09 11:39:24 +0100967 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
Takashi Iwai11e70642013-06-05 08:35:26 +0200968 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
Maksim A. Boyko140d37d2013-08-10 12:20:02 +0400969 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
Wolfram Sang1ef9f052015-05-29 19:50:56 +0900970 case USB_ID(0x046d, 0x08ca): /* Logitech Quickcam Fusion */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100971 case USB_ID(0x046d, 0x0991):
Con Kolivas205d3de2016-12-09 15:15:57 +1100972 case USB_ID(0x046d, 0x09a2): /* QuickCam Communicate Deluxe/S7500 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100973 /* Most audio usb devices lie about volume resolution.
974 * Most Logitech webcams have res = 384.
Con Kolivas205d3de2016-12-09 15:15:57 +1100975 * Probably there is some logitech magic behind this number --fishor
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100976 */
977 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100978 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100979 "set resolution quirk: cval->res = 384\n");
980 cval->res = 384;
981 }
982 break;
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100983 }
984}
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986/*
987 * retrieve the minimum and maximum values for the specified control
988 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100989static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
990 int default_min, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 /* for failsafe */
993 cval->min = default_min;
994 cval->max = cval->min + 1;
995 cval->res = 1;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100996 cval->dBmin = cval->dBmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 if (cval->val_type == USB_MIXER_BOOLEAN ||
999 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1000 cval->initialized = 1;
1001 } else {
1002 int minchn = 0;
1003 if (cval->cmask) {
1004 int i;
1005 for (i = 0; i < MAX_CHANNELS; i++)
1006 if (cval->cmask & (1 << i)) {
1007 minchn = i + 1;
1008 break;
1009 }
1010 }
Daniel Mackde48c7b2010-02-22 23:49:13 +01001011 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
1012 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +01001013 usb_audio_err(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001014 "%d:%d: cannot get min/max values for control %d (id %d)\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01001015 cval->head.id, snd_usb_ctrl_intf(cval->head.mixer->chip),
1016 cval->control, cval->head.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return -EINVAL;
1018 }
Daniel Mack6bc170e2014-05-24 10:58:16 +02001019 if (get_ctl_value(cval, UAC_GET_RES,
1020 (cval->control << 8) | minchn,
1021 &cval->res) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 cval->res = 1;
1023 } else {
1024 int last_valid_res = cval->res;
1025
1026 while (cval->res > 1) {
Daniel Mack7b1eda22010-03-11 21:13:22 +01001027 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001028 (cval->control << 8) | minchn,
1029 cval->res / 2) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 break;
1031 cval->res /= 2;
1032 }
Daniel Mack6bc170e2014-05-24 10:58:16 +02001033 if (get_ctl_value(cval, UAC_GET_RES,
1034 (cval->control << 8) | minchn, &cval->res) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 cval->res = last_valid_res;
1036 }
1037 if (cval->res == 0)
1038 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +02001039
1040 /* Additional checks for the proper resolution
1041 *
1042 * Some devices report smaller resolutions than actually
1043 * reacting. They don't return errors but simply clip
1044 * to the lower aligned value.
1045 */
1046 if (cval->min + cval->res < cval->max) {
1047 int last_valid_res = cval->res;
1048 int saved, test, check;
Takashi Iwai641b4872009-01-15 17:05:24 +01001049 get_cur_mix_raw(cval, minchn, &saved);
Takashi Iwai14790f12006-03-28 17:58:28 +02001050 for (;;) {
1051 test = saved;
1052 if (test < cval->max)
1053 test += cval->res;
1054 else
1055 test -= cval->res;
1056 if (test < cval->min || test > cval->max ||
Chris J Argeseef90452014-11-12 12:07:01 -06001057 snd_usb_set_cur_mix_value(cval, minchn, 0, test) ||
Takashi Iwai641b4872009-01-15 17:05:24 +01001058 get_cur_mix_raw(cval, minchn, &check)) {
Takashi Iwai14790f12006-03-28 17:58:28 +02001059 cval->res = last_valid_res;
1060 break;
1061 }
1062 if (test == check)
1063 break;
1064 cval->res *= 2;
1065 }
Chris J Argeseef90452014-11-12 12:07:01 -06001066 snd_usb_set_cur_mix_value(cval, minchn, 0, saved);
Takashi Iwai14790f12006-03-28 17:58:28 +02001067 }
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 cval->initialized = 1;
1070 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001071
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001072 if (kctl)
1073 volume_control_quirks(cval, kctl);
1074
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001075 /* USB descriptions contain the dB scale in 1/256 dB unit
1076 * while ALSA TLV contains in 1/100 dB unit
1077 */
1078 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
1079 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
1080 if (cval->dBmin > cval->dBmax) {
1081 /* something is wrong; assume it's either from/to 0dB */
1082 if (cval->dBmin < 0)
1083 cval->dBmax = 0;
1084 else if (cval->dBmin > 0)
1085 cval->dBmin = 0;
1086 if (cval->dBmin > cval->dBmax) {
1087 /* totally crap, return an error */
1088 return -EINVAL;
1089 }
1090 }
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return 0;
1093}
1094
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001095#define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097/* get a feature/mixer unit info */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001098static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
1099 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001101 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 if (cval->val_type == USB_MIXER_BOOLEAN ||
1104 cval->val_type == USB_MIXER_INV_BOOLEAN)
1105 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1106 else
1107 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1108 uinfo->count = cval->channels;
1109 if (cval->val_type == USB_MIXER_BOOLEAN ||
1110 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1111 uinfo->value.integer.min = 0;
1112 uinfo->value.integer.max = 1;
1113 } else {
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001114 if (!cval->initialized) {
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001115 get_min_max_with_quirks(cval, 0, kcontrol);
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001116 if (cval->initialized && cval->dBmin >= cval->dBmax) {
1117 kcontrol->vd[0].access &=
1118 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1119 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK);
Takashi Iwai3360b842014-11-18 11:47:04 +01001120 snd_ctl_notify(cval->head.mixer->chip->card,
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001121 SNDRV_CTL_EVENT_MASK_INFO,
1122 &kcontrol->id);
1123 }
1124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +02001126 uinfo->value.integer.max =
1127 (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129 return 0;
1130}
1131
1132/* get the current value from feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001133static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol,
1134 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001136 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 int c, cnt, val, err;
1138
Takashi Iwai641b4872009-01-15 17:05:24 +01001139 ucontrol->value.integer.value[0] = cval->min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (cval->cmask) {
1141 cnt = 0;
1142 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001143 if (!(cval->cmask & (1 << c)))
1144 continue;
Chris J Argeseef90452014-11-12 12:07:01 -06001145 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001146 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001147 return filter_error(cval, err);
Takashi Iwai641b4872009-01-15 17:05:24 +01001148 val = get_relative_value(cval, val);
1149 ucontrol->value.integer.value[cnt] = val;
1150 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001152 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 } else {
1154 /* master channel */
Chris J Argeseef90452014-11-12 12:07:01 -06001155 err = snd_usb_get_cur_mix_value(cval, 0, 0, &val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001156 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001157 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 val = get_relative_value(cval, val);
1159 ucontrol->value.integer.value[0] = val;
1160 }
1161 return 0;
1162}
1163
1164/* put the current value to feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001165static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
1166 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001168 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 int c, cnt, val, oval, err;
1170 int changed = 0;
1171
1172 if (cval->cmask) {
1173 cnt = 0;
1174 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001175 if (!(cval->cmask & (1 << c)))
1176 continue;
Chris J Argeseef90452014-11-12 12:07:01 -06001177 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &oval);
Takashi Iwai641b4872009-01-15 17:05:24 +01001178 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001179 return filter_error(cval, err);
Takashi Iwai641b4872009-01-15 17:05:24 +01001180 val = ucontrol->value.integer.value[cnt];
1181 val = get_abs_value(cval, val);
1182 if (oval != val) {
Chris J Argeseef90452014-11-12 12:07:01 -06001183 snd_usb_set_cur_mix_value(cval, c + 1, cnt, val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001184 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001186 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188 } else {
1189 /* master channel */
Chris J Argeseef90452014-11-12 12:07:01 -06001190 err = snd_usb_get_cur_mix_value(cval, 0, 0, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001192 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 val = ucontrol->value.integer.value[0];
1194 val = get_abs_value(cval, val);
1195 if (val != oval) {
Chris J Argeseef90452014-11-12 12:07:01 -06001196 snd_usb_set_cur_mix_value(cval, 0, 0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 changed = 1;
1198 }
1199 }
1200 return changed;
1201}
1202
Takashi Iwai86e07d32005-11-17 15:08:02 +01001203static struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1205 .name = "", /* will be filled later manually */
1206 .info = mixer_ctl_feature_info,
1207 .get = mixer_ctl_feature_get,
1208 .put = mixer_ctl_feature_put,
1209};
1210
Daniel Mack23caaf12010-03-11 21:13:25 +01001211/* the read-only variant */
1212static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
1213 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1214 .name = "", /* will be filled later manually */
1215 .info = mixer_ctl_feature_info,
1216 .get = mixer_ctl_feature_get,
1217 .put = NULL,
1218};
1219
Daniel Mack6bc170e2014-05-24 10:58:16 +02001220/*
1221 * This symbol is exported in order to allow the mixer quirks to
1222 * hook up to the standard feature unit control mechanism
1223 */
Daniel Mack9e386582011-05-25 09:09:01 +02001224struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226/*
1227 * build a feature control
1228 */
Takashi Iwai08d1e632009-10-02 14:06:08 +02001229static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
1230{
1231 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
1232}
1233
Daniel Mack6bc170e2014-05-24 10:58:16 +02001234/*
1235 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1236 * rename it to "Headphone". We determine if something is a headphone
1237 * similar to how udev determines form factor.
1238 */
David Henningsson9b4ef972012-11-23 13:48:55 +01001239static void check_no_speaker_on_headset(struct snd_kcontrol *kctl,
1240 struct snd_card *card)
1241{
1242 const char *names_to_check[] = {
1243 "Headset", "headset", "Headphone", "headphone", NULL};
1244 const char **s;
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001245 bool found = false;
David Henningsson9b4ef972012-11-23 13:48:55 +01001246
1247 if (strcmp("Speaker", kctl->id.name))
1248 return;
1249
1250 for (s = names_to_check; *s; s++)
1251 if (strstr(card->shortname, *s)) {
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001252 found = true;
David Henningsson9b4ef972012-11-23 13:48:55 +01001253 break;
1254 }
1255
1256 if (!found)
1257 return;
1258
1259 strlcpy(kctl->id.name, "Headphone", sizeof(kctl->id.name));
1260}
1261
Daniel Mack99fc8642010-03-11 21:13:24 +01001262static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 unsigned int ctl_mask, int control,
Daniel Mack23caaf12010-03-11 21:13:25 +01001264 struct usb_audio_term *iterm, int unitid,
Daniel Macka6a33252010-05-31 13:35:37 +02001265 int readonly_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
Daniel Mack99fc8642010-03-11 21:13:24 +01001267 struct uac_feature_unit_descriptor *desc = raw_desc;
Julian Scheelbc18e312015-08-14 16:14:45 +02001268 struct usb_feature_control_info *ctl_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 unsigned int len = 0;
1270 int mapped_name = 0;
Daniel Mack99fc8642010-03-11 21:13:24 +01001271 int nameid = uac_feature_unit_iFeature(desc);
Takashi Iwai86e07d32005-11-17 15:08:02 +01001272 struct snd_kcontrol *kctl;
1273 struct usb_mixer_elem_info *cval;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001274 const struct usbmix_name_map *map;
Alexey Fisher80aceff2011-03-10 14:53:38 +01001275 unsigned int range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 control++; /* change from zero-based to 1-based value */
1278
Daniel Mack65f25da2010-05-31 13:35:41 +02001279 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 /* FIXME: not supported yet */
1281 return;
1282 }
1283
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001284 map = find_map(state, unitid, control);
1285 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return;
1287
Takashi Iwai561b2202005-09-09 14:22:34 +02001288 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001289 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 return;
Takashi Iwai3360b842014-11-18 11:47:04 +01001291 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 cval->control = control;
1293 cval->cmask = ctl_mask;
Julian Scheelbc18e312015-08-14 16:14:45 +02001294 ctl_info = &audio_feature_info[control-1];
1295 if (state->mixer->protocol == UAC_VERSION_1)
1296 cval->val_type = ctl_info->type;
1297 else /* UAC_VERSION_2 */
1298 cval->val_type = ctl_info->type_uac2 >= 0 ?
1299 ctl_info->type_uac2 : ctl_info->type;
1300
Daniel Macka6a33252010-05-31 13:35:37 +02001301 if (ctl_mask == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 cval->channels = 1; /* master channel */
Daniel Macka6a33252010-05-31 13:35:37 +02001303 cval->master_readonly = readonly_mask;
1304 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 int i, c = 0;
1306 for (i = 0; i < 16; i++)
1307 if (ctl_mask & (1 << i))
1308 c++;
1309 cval->channels = c;
Daniel Macka6a33252010-05-31 13:35:37 +02001310 cval->ch_readonly = readonly_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312
Daniel Mack6bc170e2014-05-24 10:58:16 +02001313 /*
1314 * If all channels in the mask are marked read-only, make the control
Chris J Argeseef90452014-11-12 12:07:01 -06001315 * read-only. snd_usb_set_cur_mix_value() will check the mask again and won't
Daniel Mack6bc170e2014-05-24 10:58:16 +02001316 * issue write commands to read-only channels.
1317 */
Daniel Macka6a33252010-05-31 13:35:37 +02001318 if (cval->channels == readonly_mask)
Daniel Mack23caaf12010-03-11 21:13:25 +01001319 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1320 else
1321 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1322
Daniel Mack6bc170e2014-05-24 10:58:16 +02001323 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001324 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 kfree(cval);
1326 return;
1327 }
Chris J Argeseef90452014-11-12 12:07:01 -06001328 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001330 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 mapped_name = len != 0;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001332 if (!len && nameid)
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001333 len = snd_usb_copy_string_desc(state, nameid,
1334 kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 switch (control) {
Daniel Mack65f25da2010-05-31 13:35:41 +02001337 case UAC_FU_MUTE:
1338 case UAC_FU_VOLUME:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001339 /*
1340 * determine the control name. the rule is:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 * - if a name id is given in descriptor, use it.
1342 * - if the connected input can be determined, then use the name
1343 * of terminal type.
1344 * - if the connected output can be determined, use it.
1345 * - otherwise, anonymous name.
1346 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001347 if (!len) {
1348 len = get_term_name(state, iterm, kctl->id.name,
1349 sizeof(kctl->id.name), 1);
1350 if (!len)
1351 len = get_term_name(state, &state->oterm,
1352 kctl->id.name,
1353 sizeof(kctl->id.name), 1);
1354 if (!len)
Daniel Mack49fd46d2014-10-19 09:11:25 +02001355 snprintf(kctl->id.name, sizeof(kctl->id.name),
1356 "Feature %d", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
David Henningsson9b4ef972012-11-23 13:48:55 +01001358
1359 if (!mapped_name)
1360 check_no_speaker_on_headset(kctl, state->mixer->chip->card);
1361
Daniel Mack6bc170e2014-05-24 10:58:16 +02001362 /*
1363 * determine the stream direction:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 * if the connected output is USB stream, then it's likely a
1365 * capture stream. otherwise it should be playback (hopefully :)
1366 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001367 if (!mapped_name && !(state->oterm.type >> 16)) {
1368 if ((state->oterm.type & 0xff00) == 0x0100)
Daniel Mack49fd46d2014-10-19 09:11:25 +02001369 append_ctl_name(kctl, " Capture");
Daniel Mack6bc170e2014-05-24 10:58:16 +02001370 else
Daniel Mack49fd46d2014-10-19 09:11:25 +02001371 append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 }
Daniel Mack65f25da2010-05-31 13:35:41 +02001373 append_ctl_name(kctl, control == UAC_FU_MUTE ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001374 " Switch" : " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 default:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001377 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1379 sizeof(kctl->id.name));
1380 break;
1381 }
1382
Takashi Iwaie1825342012-05-14 17:11:06 +02001383 /* get min/max values */
1384 get_min_max_with_quirks(cval, 0, kctl);
1385
1386 if (control == UAC_FU_VOLUME) {
1387 check_mapped_dB(map, cval);
1388 if (cval->dBmin < cval->dBmax || !cval->initialized) {
1389 kctl->tlv.c = snd_usb_mixer_vol_tlv;
1390 kctl->vd[0].access |=
1391 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1392 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1393 }
1394 }
1395
Anssi Hannula42e31212015-12-13 20:49:58 +02001396 snd_usb_mixer_fu_apply_quirk(state->mixer, cval, unitid, kctl);
1397
Alexey Fisher80aceff2011-03-10 14:53:38 +01001398 range = (cval->max - cval->min) / cval->res;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001399 /*
1400 * Are there devices with volume range more than 255? I use a bit more
Alexey Fisher80aceff2011-03-10 14:53:38 +01001401 * to be sure. 384 is a resolution magic number found on Logitech
1402 * devices. It will definitively catch all buggy Logitech devices.
1403 */
1404 if (range > 384) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001405 usb_audio_warn(state->chip,
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001406 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
Daniel Mack6bc170e2014-05-24 10:58:16 +02001407 range);
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001408 usb_audio_warn(state->chip,
1409 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
Takashi Iwai3360b842014-11-18 11:47:04 +01001410 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001411 cval->min, cval->max, cval->res);
Alexey Fisher80aceff2011-03-10 14:53:38 +01001412 }
1413
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001414 usb_audio_dbg(state->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01001415 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001416 cval->min, cval->max, cval->res);
Takashi Iwai3360b842014-11-18 11:47:04 +01001417 snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
Daniel Mackcddaafb2016-04-09 11:21:46 +02001420static int parse_clock_source_unit(struct mixer_build *state, int unitid,
1421 void *_ftr)
1422{
1423 struct uac_clock_source_descriptor *hdr = _ftr;
1424 struct usb_mixer_elem_info *cval;
1425 struct snd_kcontrol *kctl;
1426 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
1427 int ret;
1428
1429 if (state->mixer->protocol != UAC_VERSION_2)
1430 return -EINVAL;
1431
1432 if (hdr->bLength != sizeof(*hdr)) {
1433 usb_audio_dbg(state->chip,
1434 "Bogus clock source descriptor length of %d, ignoring.\n",
1435 hdr->bLength);
1436 return 0;
1437 }
1438
1439 /*
1440 * The only property of this unit we are interested in is the
1441 * clock source validity. If that isn't readable, just bail out.
1442 */
1443 if (!uac2_control_is_readable(hdr->bmControls,
1444 ilog2(UAC2_CS_CONTROL_CLOCK_VALID)))
1445 return 0;
1446
1447 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1448 if (!cval)
1449 return -ENOMEM;
1450
1451 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, hdr->bClockID);
1452
1453 cval->min = 0;
1454 cval->max = 1;
1455 cval->channels = 1;
1456 cval->val_type = USB_MIXER_BOOLEAN;
1457 cval->control = UAC2_CS_CONTROL_CLOCK_VALID;
1458
1459 if (uac2_control_is_writeable(hdr->bmControls,
1460 ilog2(UAC2_CS_CONTROL_CLOCK_VALID)))
1461 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1462 else {
1463 cval->master_readonly = 1;
1464 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1465 }
1466
1467 if (!kctl) {
1468 kfree(cval);
1469 return -ENOMEM;
1470 }
1471
1472 kctl->private_free = snd_usb_mixer_elem_free;
1473 ret = snd_usb_copy_string_desc(state, hdr->iClockSource,
1474 name, sizeof(name));
1475 if (ret > 0)
1476 snprintf(kctl->id.name, sizeof(kctl->id.name),
1477 "%s Validity", name);
1478 else
1479 snprintf(kctl->id.name, sizeof(kctl->id.name),
1480 "Clock Source %d Validity", hdr->bClockID);
1481
1482 return snd_usb_mixer_add_control(&cval->head, kctl);
1483}
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485/*
1486 * parse a feature unit
1487 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001488 * most of controls are defined here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001490static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
1491 void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
1493 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001494 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 unsigned int master_bits, first_ch_bits;
1496 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001497 struct uac_feature_unit_descriptor *hdr = _ftr;
1498 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Daniel Mack23caaf12010-03-11 21:13:25 +01001500 if (state->mixer->protocol == UAC_VERSION_1) {
Takashi Iwai85cc0202017-11-21 16:55:51 +01001501 if (hdr->bLength < 7) {
1502 usb_audio_err(state->chip,
1503 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1504 unitid);
1505 return -EINVAL;
1506 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001507 csize = hdr->bControlSize;
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001508 if (!csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001509 usb_audio_dbg(state->chip,
1510 "unit %u: invalid bControlSize == 0\n",
1511 unitid);
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001512 return -EINVAL;
1513 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001514 channels = (hdr->bLength - 7) / csize - 1;
1515 bmaControls = hdr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001516 if (hdr->bLength < 7 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001517 usb_audio_err(state->chip,
1518 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1519 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001520 return -EINVAL;
1521 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001522 } else {
1523 struct uac2_feature_unit_descriptor *ftr = _ftr;
Takashi Iwai85cc0202017-11-21 16:55:51 +01001524 if (hdr->bLength < 6) {
1525 usb_audio_err(state->chip,
1526 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1527 unitid);
1528 return -EINVAL;
1529 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001530 csize = 4;
Daniel Macke8d0fee2010-05-27 20:15:14 +02001531 channels = (hdr->bLength - 6) / 4 - 1;
Daniel Mack23caaf12010-03-11 21:13:25 +01001532 bmaControls = ftr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001533 if (hdr->bLength < 6 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001534 usb_audio_err(state->chip,
1535 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1536 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001537 return -EINVAL;
1538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 }
1540
1541 /* parse the source unit */
Daniel Mack23caaf12010-03-11 21:13:25 +01001542 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 return err;
1544
1545 /* determine the input source type and name */
Daniel Mack4d7b86c2013-03-19 21:09:24 +01001546 err = check_input_term(state, hdr->bSourceID, &iterm);
1547 if (err < 0)
1548 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Daniel Mack23caaf12010-03-11 21:13:25 +01001550 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001551 /* master configuration quirks */
1552 switch (state->chip->usb_id) {
1553 case USB_ID(0x08bb, 0x2702):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001554 usb_audio_info(state->chip,
1555 "usbmixer: master volume quirk for PCM2702 chip\n");
Javier Kohen0c3cee52009-11-17 15:36:13 +01001556 /* disable non-functional volume control */
Daniel Mack65f25da2010-05-31 13:35:41 +02001557 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001558 break;
David Henningssonc1051432012-09-20 10:20:41 +02001559 case USB_ID(0x1130, 0xf211):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001560 usb_audio_info(state->chip,
1561 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
David Henningssonc1051432012-09-20 10:20:41 +02001562 /* disable non-functional volume control */
1563 channels = 0;
1564 break;
1565
Javier Kohen0c3cee52009-11-17 15:36:13 +01001566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (channels > 0)
Daniel Mack23caaf12010-03-11 21:13:25 +01001568 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 else
1570 first_ch_bits = 0;
Daniel Mack23caaf12010-03-11 21:13:25 +01001571
1572 if (state->mixer->protocol == UAC_VERSION_1) {
1573 /* check all control types */
1574 for (i = 0; i < 10; i++) {
1575 unsigned int ch_bits = 0;
1576 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001577 unsigned int mask;
1578
1579 mask = snd_usb_combine_bytes(bmaControls +
1580 csize * (j+1), csize);
Daniel Mack23caaf12010-03-11 21:13:25 +01001581 if (mask & (1 << i))
1582 ch_bits |= (1 << j);
1583 }
1584 /* audio class v1 controls are never read-only */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001585
1586 /*
1587 * The first channel must be set
1588 * (for ease of programming).
1589 */
1590 if (ch_bits & 1)
1591 build_feature_ctl(state, _ftr, ch_bits, i,
1592 &iterm, unitid, 0);
Daniel Mack23caaf12010-03-11 21:13:25 +01001593 if (master_bits & (1 << i))
Daniel Mack6bc170e2014-05-24 10:58:16 +02001594 build_feature_ctl(state, _ftr, 0, i, &iterm,
1595 unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001597 } else { /* UAC_VERSION_2 */
Takashi Iwaid09c06c2011-10-13 08:19:09 +02001598 for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001599 unsigned int ch_bits = 0;
1600 unsigned int ch_read_only = 0;
1601
1602 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001603 unsigned int mask;
1604
1605 mask = snd_usb_combine_bytes(bmaControls +
1606 csize * (j+1), csize);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001607 if (uac2_control_is_readable(mask, i)) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001608 ch_bits |= (1 << j);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001609 if (!uac2_control_is_writeable(mask, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001610 ch_read_only |= (1 << j);
1611 }
1612 }
1613
Daniel Mack6bc170e2014-05-24 10:58:16 +02001614 /*
1615 * NOTE: build_feature_ctl() will mark the control
1616 * read-only if all channels are marked read-only in
1617 * the descriptors. Otherwise, the control will be
1618 * reported as writeable, but the driver will not
1619 * actually issue a write command for read-only
1620 * channels.
1621 */
1622
1623 /*
1624 * The first channel must be set
1625 * (for ease of programming).
1626 */
1627 if (ch_bits & 1)
1628 build_feature_ctl(state, _ftr, ch_bits, i,
1629 &iterm, unitid, ch_read_only);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001630 if (uac2_control_is_readable(master_bits, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001631 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001632 !uac2_control_is_writeable(master_bits, i));
Daniel Mack23caaf12010-03-11 21:13:25 +01001633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
1635
1636 return 0;
1637}
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639/*
1640 * Mixer Unit
1641 */
1642
1643/*
1644 * build a mixer unit control
1645 *
1646 * the callbacks are identical with feature unit.
1647 * input channel number (zero based) is given in control field instead.
1648 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001649static void build_mixer_unit_ctl(struct mixer_build *state,
1650 struct uac_mixer_unit_descriptor *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001652 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001654 struct usb_mixer_elem_info *cval;
Daniel Mack99fc8642010-03-11 21:13:24 +01001655 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001657 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001658 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001660 map = find_map(state, unitid, 0);
1661 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return;
1663
Takashi Iwai561b2202005-09-09 14:22:34 +02001664 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001665 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 return;
1667
Takashi Iwai3360b842014-11-18 11:47:04 +01001668 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 cval->control = in_ch + 1; /* based on 1 */
1670 cval->val_type = USB_MIXER_S16;
1671 for (i = 0; i < num_outs; i++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001672 __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol);
1673
1674 if (check_matrix_bitmap(c, in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 cval->cmask |= (1 << i);
1676 cval->channels++;
1677 }
1678 }
1679
1680 /* get min/max values */
1681 get_min_max(cval, 0);
1682
1683 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001684 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001685 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 kfree(cval);
1687 return;
1688 }
Chris J Argeseef90452014-11-12 12:07:01 -06001689 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001691 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001692 if (!len)
1693 len = get_term_name(state, iterm, kctl->id.name,
1694 sizeof(kctl->id.name), 0);
1695 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02001697 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001699 usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01001700 cval->head.id, kctl->id.name, cval->channels, cval->min, cval->max);
1701 snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702}
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704/*
1705 * parse a mixer unit
1706 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001707static int parse_audio_mixer_unit(struct mixer_build *state, int unitid,
1708 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
Daniel Mack99fc8642010-03-11 21:13:24 +01001710 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001711 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 int input_pins, num_ins, num_outs;
1713 int pin, ich, err;
1714
Daniel Mack6bc170e2014-05-24 10:58:16 +02001715 if (desc->bLength < 11 || !(input_pins = desc->bNrInPins) ||
Hui Peng53856af72019-08-13 22:34:04 -04001716 desc->bLength < sizeof(*desc) + desc->bNrInPins ||
Daniel Mack6bc170e2014-05-24 10:58:16 +02001717 !(num_outs = uac_mixer_unit_bNrChannels(desc))) {
1718 usb_audio_err(state->chip,
1719 "invalid MIXER UNIT descriptor %d\n",
1720 unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return -EINVAL;
1722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 num_ins = 0;
1725 ich = 0;
1726 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001727 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (err < 0)
Mark Hills284a8dd2012-04-14 17:19:23 +01001729 continue;
Clemens Ladischea114fc2015-06-03 11:36:51 +02001730 /* no bmControls field (e.g. Maya44) -> ignore */
1731 if (desc->bLength <= 10 + input_pins)
1732 continue;
Daniel Mack99fc8642010-03-11 21:13:24 +01001733 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (err < 0)
1735 return err;
1736 num_ins += iterm.channels;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001737 for (; ich < num_ins; ich++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 int och, ich_has_controls = 0;
1739
Daniel Mack6bc170e2014-05-24 10:58:16 +02001740 for (och = 0; och < num_outs; och++) {
1741 __u8 *c = uac_mixer_unit_bmControls(desc,
1742 state->mixer->protocol);
1743
1744 if (check_matrix_bitmap(c, ich, och, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 ich_has_controls = 1;
1746 break;
1747 }
1748 }
1749 if (ich_has_controls)
1750 build_mixer_unit_ctl(state, desc, pin, ich,
1751 unitid, &iterm);
1752 }
1753 }
1754 return 0;
1755}
1756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757/*
1758 * Processing Unit / Extension Unit
1759 */
1760
1761/* get callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001762static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol,
1763 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001765 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 int err, val;
1767
1768 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Takashi Iwai5aeee342014-11-18 11:02:14 +01001769 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 ucontrol->value.integer.value[0] = cval->min;
Takashi Iwai5aeee342014-11-18 11:02:14 +01001771 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 val = get_relative_value(cval, val);
1774 ucontrol->value.integer.value[0] = val;
1775 return 0;
1776}
1777
1778/* put callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001779static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
1780 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001782 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 int val, oval, err;
1784
1785 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Takashi Iwai5aeee342014-11-18 11:02:14 +01001786 if (err < 0)
1787 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 val = ucontrol->value.integer.value[0];
1789 val = get_abs_value(cval, val);
1790 if (val != oval) {
1791 set_cur_ctl_value(cval, cval->control << 8, val);
1792 return 1;
1793 }
1794 return 0;
1795}
1796
1797/* alsa control interface for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001798static struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1800 .name = "", /* will be filled later */
1801 .info = mixer_ctl_feature_info,
1802 .get = mixer_ctl_procunit_get,
1803 .put = mixer_ctl_procunit_put,
1804};
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806/*
1807 * predefined data for processing units
1808 */
1809struct procunit_value_info {
1810 int control;
1811 char *suffix;
1812 int val_type;
1813 int min_value;
1814};
1815
1816struct procunit_info {
1817 int type;
1818 char *name;
1819 struct procunit_value_info *values;
1820};
1821
1822static struct procunit_value_info updown_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001823 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1824 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 { 0 }
1826};
1827static struct procunit_value_info prologic_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001828 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1829 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 { 0 }
1831};
1832static struct procunit_value_info threed_enh_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001833 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1834 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 { 0 }
1836};
1837static struct procunit_value_info reverb_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001838 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1839 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1840 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1841 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 { 0 }
1843};
1844static struct procunit_value_info chorus_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001845 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1846 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1847 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1848 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 { 0 }
1850};
1851static struct procunit_value_info dcr_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001852 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1853 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1854 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1855 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1856 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1857 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 { 0 }
1859};
1860
1861static struct procunit_info procunits[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001862 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1863 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1864 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1865 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1866 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1867 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 { 0 },
1869};
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001870/*
1871 * predefined data for extension units
1872 */
1873static struct procunit_value_info clock_rate_xu_info[] = {
Daniel Macke213e9c2010-05-11 18:13:50 +02001874 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1875 { 0 }
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001876};
1877static struct procunit_value_info clock_source_xu_info[] = {
1878 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1879 { 0 }
1880};
1881static struct procunit_value_info spdif_format_xu_info[] = {
1882 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1883 { 0 }
1884};
1885static struct procunit_value_info soft_limit_xu_info[] = {
1886 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1887 { 0 }
1888};
1889static struct procunit_info extunits[] = {
1890 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1891 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1892 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1893 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1894 { 0 }
1895};
Daniel Mack6bc170e2014-05-24 10:58:16 +02001896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897/*
1898 * build a processing/extension unit
1899 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001900static int build_audio_procunit(struct mixer_build *state, int unitid,
1901 void *raw_desc, struct procunit_info *list,
1902 char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
Daniel Mack99fc8642010-03-11 21:13:24 +01001904 struct uac_processing_unit_descriptor *desc = raw_desc;
Takashi Iwaibeab6f32018-12-19 12:36:27 +01001905 int num_ins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001906 struct usb_mixer_elem_info *cval;
1907 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 int i, err, nameid, type, len;
1909 struct procunit_info *info;
1910 struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001911 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 static struct procunit_value_info default_value_info[] = {
1913 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1914 { 0 }
1915 };
1916 static struct procunit_info default_info = {
1917 0, NULL, default_value_info
1918 };
1919
Takashi Iwaibeab6f32018-12-19 12:36:27 +01001920 if (desc->bLength < 13) {
1921 usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid);
1922 return -EINVAL;
1923 }
1924
1925 num_ins = desc->bNrInPins;
1926 if (desc->bLength < 13 + num_ins ||
Daniel Mack23caaf12010-03-11 21:13:25 +01001927 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001928 usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 return -EINVAL;
1930 }
1931
1932 for (i = 0; i < num_ins; i++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001933 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 return err;
1935 }
1936
Daniel Mack99fc8642010-03-11 21:13:24 +01001937 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 for (info = list; info && info->type; info++)
1939 if (info->type == type)
1940 break;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001941 if (!info || !info->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 info = &default_info;
1943
1944 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001945 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01001946
Daniel Mack6bc170e2014-05-24 10:58:16 +02001947 if (!(controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 continue;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001949 map = find_map(state, unitid, valinfo->control);
1950 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02001952 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001953 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 return -ENOMEM;
Takashi Iwai3360b842014-11-18 11:47:04 +01001955 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 cval->control = valinfo->control;
1957 cval->val_type = valinfo->val_type;
1958 cval->channels = 1;
1959
1960 /* get min/max values */
Daniel Mack65f25da2010-05-31 13:35:41 +02001961 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001962 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 /* FIXME: hard-coded */
1964 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001965 cval->max = control_spec[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 cval->res = 1;
1967 cval->initialized = 1;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001968 } else {
1969 if (type == USB_XU_CLOCK_RATE) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001970 /*
1971 * E-Mu USB 0404/0202/TrackerPre/0204
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001972 * samplerate control quirk
1973 */
1974 cval->min = 0;
1975 cval->max = 5;
1976 cval->res = 1;
1977 cval->initialized = 1;
1978 } else
1979 get_min_max(cval, valinfo->min_value);
1980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001983 if (!kctl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 kfree(cval);
1985 return -ENOMEM;
1986 }
Chris J Argeseef90452014-11-12 12:07:01 -06001987 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Daniel Mack6bc170e2014-05-24 10:58:16 +02001989 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001990 /* nothing */ ;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001991 } else if (info->name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001993 } else {
Daniel Mack23caaf12010-03-11 21:13:25 +01001994 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 len = 0;
1996 if (nameid)
Daniel Mack6bc170e2014-05-24 10:58:16 +02001997 len = snd_usb_copy_string_desc(state, nameid,
1998 kctl->id.name,
1999 sizeof(kctl->id.name));
2000 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
2002 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02002003 append_ctl_name(kctl, " ");
2004 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002006 usb_audio_dbg(state->chip,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002007 "[%d] PU [%s] ch = %d, val = %d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01002008 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002009 cval->min, cval->max);
2010
Takashi Iwai3360b842014-11-18 11:47:04 +01002011 err = snd_usb_mixer_add_control(&cval->head, kctl);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002012 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 return err;
2014 }
2015 return 0;
2016}
2017
Daniel Mack6bc170e2014-05-24 10:58:16 +02002018static int parse_audio_processing_unit(struct mixer_build *state, int unitid,
2019 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
Daniel Mack6bc170e2014-05-24 10:58:16 +02002021 return build_audio_procunit(state, unitid, raw_desc,
2022 procunits, "Processing Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023}
2024
Daniel Mack6bc170e2014-05-24 10:58:16 +02002025static int parse_audio_extension_unit(struct mixer_build *state, int unitid,
2026 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
Daniel Mack6bc170e2014-05-24 10:58:16 +02002028 /*
2029 * Note that we parse extension units with processing unit descriptors.
2030 * That's ok as the layout is the same.
2031 */
2032 return build_audio_procunit(state, unitid, raw_desc,
2033 extunits, "Extension Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036/*
2037 * Selector Unit
2038 */
2039
Daniel Mack6bc170e2014-05-24 10:58:16 +02002040/*
2041 * info callback for selector unit
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 * use an enumerator type for routing
2043 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002044static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol,
2045 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002047 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01002048 const char **itemlist = (const char **)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Takashi Iwai5e246b82008-08-08 17:12:47 +02002050 if (snd_BUG_ON(!itemlist))
2051 return -EINVAL;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01002052 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
2055/* get callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002056static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol,
2057 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002059 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 int val, err;
2061
Daniel Mack09414202010-05-31 13:35:44 +02002062 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if (err < 0) {
Takashi Iwai5aeee342014-11-18 11:02:14 +01002064 ucontrol->value.enumerated.item[0] = 0;
2065 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 }
2067 val = get_relative_value(cval, val);
2068 ucontrol->value.enumerated.item[0] = val;
2069 return 0;
2070}
2071
2072/* put callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002073static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
2074 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002076 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 int val, oval, err;
2078
Daniel Mack09414202010-05-31 13:35:44 +02002079 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Takashi Iwai5aeee342014-11-18 11:02:14 +01002080 if (err < 0)
2081 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 val = ucontrol->value.enumerated.item[0];
2083 val = get_abs_value(cval, val);
2084 if (val != oval) {
Daniel Mack09414202010-05-31 13:35:44 +02002085 set_cur_ctl_value(cval, cval->control << 8, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 return 1;
2087 }
2088 return 0;
2089}
2090
2091/* alsa control interface for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002092static struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2094 .name = "", /* will be filled later */
2095 .info = mixer_ctl_selector_info,
2096 .get = mixer_ctl_selector_get,
2097 .put = mixer_ctl_selector_put,
2098};
2099
Daniel Mack6bc170e2014-05-24 10:58:16 +02002100/*
2101 * private free callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 * free both private_data and private_value
2103 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002104static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
2106 int i, num_ins = 0;
2107
2108 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002109 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 num_ins = cval->max;
2111 kfree(cval);
2112 kctl->private_data = NULL;
2113 }
2114 if (kctl->private_value) {
2115 char **itemlist = (char **)kctl->private_value;
2116 for (i = 0; i < num_ins; i++)
2117 kfree(itemlist[i]);
2118 kfree(itemlist);
2119 kctl->private_value = 0;
2120 }
2121}
2122
2123/*
2124 * parse a selector unit
2125 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002126static int parse_audio_selector_unit(struct mixer_build *state, int unitid,
2127 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Daniel Mack99fc8642010-03-11 21:13:24 +01002129 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 unsigned int i, nameid, len;
2131 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002132 struct usb_mixer_elem_info *cval;
2133 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002134 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 char **namelist;
2136
Takashi Iwai23353222017-11-21 17:00:32 +01002137 if (desc->bLength < 5 || !desc->bNrInPins ||
2138 desc->bLength < 5 + desc->bNrInPins) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002139 usb_audio_err(state->chip,
2140 "invalid SELECTOR UNIT descriptor %d\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 return -EINVAL;
2142 }
2143
Daniel Mack99fc8642010-03-11 21:13:24 +01002144 for (i = 0; i < desc->bNrInPins; i++) {
2145 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return err;
2147 }
2148
Daniel Mack99fc8642010-03-11 21:13:24 +01002149 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 return 0;
2151
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002152 map = find_map(state, unitid, 0);
2153 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 return 0;
2155
Takashi Iwai561b2202005-09-09 14:22:34 +02002156 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02002157 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 return -ENOMEM;
Takashi Iwai3360b842014-11-18 11:47:04 +01002159 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 cval->val_type = USB_MIXER_U8;
2161 cval->channels = 1;
2162 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01002163 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 cval->res = 1;
2165 cval->initialized = 1;
2166
Johan Rasténa358a0e2014-11-17 08:39:33 +01002167 if (state->mixer->protocol == UAC_VERSION_1)
Daniel Mack09414202010-05-31 13:35:44 +02002168 cval->control = 0;
Johan Rasténa358a0e2014-11-17 08:39:33 +01002169 else /* UAC_VERSION_2 */
2170 cval->control = (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR) ?
2171 UAC2_CX_CLOCK_SELECTOR : UAC2_SU_SELECTOR;
Daniel Mack09414202010-05-31 13:35:44 +02002172
Daniel Mack99fc8642010-03-11 21:13:24 +01002173 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002174 if (!namelist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 kfree(cval);
2176 return -ENOMEM;
2177 }
2178#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01002179 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002180 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 len = 0;
2182 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002183 if (!namelist[i]) {
Mariusz Kozlowski7fbe3ca2007-01-08 11:25:30 +01002184 while (i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 kfree(namelist[i]);
2186 kfree(namelist);
2187 kfree(cval);
2188 return -ENOMEM;
2189 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002190 len = check_mapped_selector_name(state, unitid, i, namelist[i],
2191 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01002192 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
2194 if (! len)
Masanari Iidaaf831ee2014-04-28 13:08:55 +09002195 sprintf(namelist[i], "Input %u", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 }
2197
2198 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
2199 if (! kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002200 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Wenwen Wangf934bf32019-04-27 01:06:46 -05002201 for (i = 0; i < desc->bNrInPins; i++)
2202 kfree(namelist[i]);
Jesper Juhl878b4782006-03-20 11:27:13 +01002203 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 kfree(cval);
2205 return -ENOMEM;
2206 }
2207 kctl->private_value = (unsigned long)namelist;
2208 kctl->private_free = usb_mixer_selector_elem_free;
2209
Takashi Iwai31760652017-12-18 23:36:57 +01002210 /* check the static mapping table at first */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002211 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Jaejoong Kim173c8c32017-12-04 15:31:49 +09002212 if (!len) {
Takashi Iwai31760652017-12-18 23:36:57 +01002213 /* no mapping ? */
2214 /* if iSelector is given, use it */
2215 nameid = uac_selector_unit_iSelector(desc);
2216 if (nameid)
2217 len = snd_usb_copy_string_desc(state, nameid,
2218 kctl->id.name,
2219 sizeof(kctl->id.name));
2220 /* ... or pick up the terminal name at next */
2221 if (!len)
2222 len = get_term_name(state, &state->oterm,
2223 kctl->id.name, sizeof(kctl->id.name), 0);
2224 /* ... or use the fixed string "USB" as the last resort */
2225 if (!len)
2226 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Takashi Iwai31760652017-12-18 23:36:57 +01002228 /* and add the proper suffix */
Daniel Mack09414202010-05-31 13:35:44 +02002229 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2230 append_ctl_name(kctl, " Clock Source");
2231 else if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02002232 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02002234 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 }
2236
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002237 usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01002238 cval->head.id, kctl->id.name, desc->bNrInPins);
2239 return snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240}
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242/*
2243 * parse an audio unit recursively
2244 */
2245
Takashi Iwai86e07d32005-11-17 15:08:02 +01002246static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
2248 unsigned char *p1;
2249
2250 if (test_and_set_bit(unitid, state->unitbitmap))
2251 return 0; /* the unit already visited */
2252
2253 p1 = find_audio_control_unit(state, unitid);
2254 if (!p1) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002255 usb_audio_err(state->chip, "unit %d not found!\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 return -EINVAL;
2257 }
2258
2259 switch (p1[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01002260 case UAC_INPUT_TERMINAL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 return 0; /* NOP */
Daniel Mackde48c7b2010-02-22 23:49:13 +01002262 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 return parse_audio_mixer_unit(state, unitid, p1);
Daniel Mackcddaafb2016-04-09 11:21:46 +02002264 case UAC2_CLOCK_SOURCE:
2265 return parse_clock_source_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01002266 case UAC_SELECTOR_UNIT:
Daniel Mack09414202010-05-31 13:35:44 +02002267 case UAC2_CLOCK_SELECTOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 return parse_audio_selector_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01002269 case UAC_FEATURE_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 return parse_audio_feature_unit(state, unitid, p1);
Daniel Mack69da9bc2010-06-16 17:57:28 +02002271 case UAC1_PROCESSING_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002272 /* UAC2_EFFECT_UNIT has the same value */
2273 if (state->mixer->protocol == UAC_VERSION_1)
2274 return parse_audio_processing_unit(state, unitid, p1);
2275 else
2276 return 0; /* FIXME - effect units not implemented yet */
Daniel Mack69da9bc2010-06-16 17:57:28 +02002277 case UAC1_EXTENSION_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002278 /* UAC2_PROCESSING_UNIT_V2 has the same value */
2279 if (state->mixer->protocol == UAC_VERSION_1)
2280 return parse_audio_extension_unit(state, unitid, p1);
2281 else /* UAC_VERSION_2 */
2282 return parse_audio_processing_unit(state, unitid, p1);
Torstein Hegge61ac5132013-03-19 17:12:14 +01002283 case UAC2_EXTENSION_UNIT_V2:
2284 return parse_audio_extension_unit(state, unitid, p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002286 usb_audio_err(state->chip,
2287 "unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 return -EINVAL;
2289 }
2290}
2291
Clemens Ladisch84957a82005-04-29 16:23:13 +02002292static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
2293{
Takashi Iwaie0c70282017-10-10 14:10:32 +02002294 /* kill pending URBs */
2295 snd_usb_mixer_disconnect(mixer);
2296
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002297 kfree(mixer->id_elems);
2298 if (mixer->urb) {
2299 kfree(mixer->urb->transfer_buffer);
2300 usb_free_urb(mixer->urb);
2301 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002302 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02002303 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002304 kfree(mixer);
2305}
2306
Takashi Iwai86e07d32005-11-17 15:08:02 +01002307static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002308{
2309 struct usb_mixer_interface *mixer = device->device_data;
2310 snd_usb_mixer_free(mixer);
2311 return 0;
2312}
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314/*
2315 * create mixer controls
2316 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01002317 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02002319static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002321 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 int err;
2323 const struct usbmix_ctl_map *map;
Daniel Mack23caaf12010-03-11 21:13:25 +01002324 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02002327 state.chip = mixer->chip;
2328 state.mixer = mixer;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002329 state.buffer = mixer->hostif->extra;
2330 state.buflen = mixer->hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
2332 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002333 for (map = usbmix_ctl_maps; map->id; map++) {
2334 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002336 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002337 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 break;
2339 }
2340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
Daniel Mack23caaf12010-03-11 21:13:25 +01002342 p = NULL;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002343 while ((p = snd_usb_find_csint_desc(mixer->hostif->extra,
2344 mixer->hostif->extralen,
Daniel Mack1faa5d02011-08-04 15:56:28 +02002345 p, UAC_OUTPUT_TERMINAL)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002346 if (mixer->protocol == UAC_VERSION_1) {
Daniel Mack69da9bc2010-06-16 17:57:28 +02002347 struct uac1_output_terminal_descriptor *desc = p;
Daniel Mack23caaf12010-03-11 21:13:25 +01002348
2349 if (desc->bLength < sizeof(*desc))
2350 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002351 /* mark terminal ID as visited */
2352 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002353 state.oterm.id = desc->bTerminalID;
2354 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2355 state.oterm.name = desc->iTerminal;
2356 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002357 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002358 return err;
2359 } else { /* UAC_VERSION_2 */
2360 struct uac2_output_terminal_descriptor *desc = p;
2361
2362 if (desc->bLength < sizeof(*desc))
2363 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002364 /* mark terminal ID as visited */
2365 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002366 state.oterm.id = desc->bTerminalID;
2367 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2368 state.oterm.name = desc->iTerminal;
2369 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002370 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002371 return err;
Daniel Mack09414202010-05-31 13:35:44 +02002372
Daniel Mack6bc170e2014-05-24 10:58:16 +02002373 /*
2374 * For UAC2, use the same approach to also add the
2375 * clock selectors
2376 */
Daniel Mack09414202010-05-31 13:35:44 +02002377 err = parse_audio_unit(&state, desc->bCSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002378 if (err < 0 && err != -EINVAL)
Daniel Mack09414202010-05-31 13:35:44 +02002379 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +01002380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 }
Daniel Mack23caaf12010-03-11 21:13:25 +01002382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 return 0;
2384}
Clemens Ladisch84957a82005-04-29 16:23:13 +02002385
Daniel Mack7b1eda22010-03-11 21:13:22 +01002386void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002387{
Takashi Iwai3360b842014-11-18 11:47:04 +01002388 struct usb_mixer_elem_list *list;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002389
Takashi Iwai3360b842014-11-18 11:47:04 +01002390 for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002391 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
Takashi Iwai3360b842014-11-18 11:47:04 +01002392 &list->kctl->id);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002393}
2394
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002395static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
Takashi Iwai3360b842014-11-18 11:47:04 +01002396 struct usb_mixer_elem_list *list)
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002397{
Takashi Iwai3360b842014-11-18 11:47:04 +01002398 struct usb_mixer_elem_info *cval = (struct usb_mixer_elem_info *)list;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002399 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
2400 "S8", "U8", "S16", "U16"};
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002401 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
Takashi Iwai3360b842014-11-18 11:47:04 +01002402 "channels=%i, type=\"%s\"\n", cval->head.id,
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002403 cval->control, cval->cmask, cval->channels,
2404 val_types[cval->val_type]);
2405 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
2406 cval->min, cval->max, cval->dBmin, cval->dBmax);
2407}
2408
2409static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
2410 struct snd_info_buffer *buffer)
2411{
2412 struct snd_usb_audio *chip = entry->private_data;
2413 struct usb_mixer_interface *mixer;
Takashi Iwai3360b842014-11-18 11:47:04 +01002414 struct usb_mixer_elem_list *list;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002415 int unitid;
2416
2417 list_for_each_entry(mixer, &chip->mixer_list, list) {
2418 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002419 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
Daniel Mack3d8d4dc2010-06-16 17:57:31 +02002420 chip->usb_id, snd_usb_ctrl_intf(chip),
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002421 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002422 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
2423 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
Takashi Iwai3360b842014-11-18 11:47:04 +01002424 for (list = mixer->id_elems[unitid]; list;
2425 list = list->next_id_elem) {
2426 snd_iprintf(buffer, " Unit: %i\n", list->id);
2427 if (list->kctl)
2428 snd_iprintf(buffer,
2429 " Control: name=\"%s\", index=%i\n",
2430 list->kctl->id.name,
2431 list->kctl->id.index);
2432 if (list->dump)
2433 list->dump(buffer, list);
2434 }
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002435 }
2436 }
2437}
2438
Daniel Macke213e9c2010-05-11 18:13:50 +02002439static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
2440 int attribute, int value, int index)
2441{
Takashi Iwai3360b842014-11-18 11:47:04 +01002442 struct usb_mixer_elem_list *list;
Daniel Macke213e9c2010-05-11 18:13:50 +02002443 __u8 unitid = (index >> 8) & 0xff;
2444 __u8 control = (value >> 8) & 0xff;
2445 __u8 channel = value & 0xff;
Daniel Mack191227d2016-04-08 19:52:02 +02002446 unsigned int count = 0;
Daniel Macke213e9c2010-05-11 18:13:50 +02002447
2448 if (channel >= MAX_CHANNELS) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002449 usb_audio_dbg(mixer->chip,
2450 "%s(): bogus channel number %d\n",
2451 __func__, channel);
Daniel Macke213e9c2010-05-11 18:13:50 +02002452 return;
2453 }
2454
Daniel Mack191227d2016-04-08 19:52:02 +02002455 for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem)
2456 count++;
2457
2458 if (count == 0)
2459 return;
2460
Takashi Iwai3360b842014-11-18 11:47:04 +01002461 for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem) {
2462 struct usb_mixer_elem_info *info;
2463
2464 if (!list->kctl)
2465 continue;
2466
2467 info = (struct usb_mixer_elem_info *)list;
Daniel Mack191227d2016-04-08 19:52:02 +02002468 if (count > 1 && info->control != control)
Daniel Macke213e9c2010-05-11 18:13:50 +02002469 continue;
2470
2471 switch (attribute) {
2472 case UAC2_CS_CUR:
2473 /* invalidate cache, so the value is read from the device */
2474 if (channel)
2475 info->cached &= ~(1 << channel);
2476 else /* master channel */
2477 info->cached = 0;
2478
2479 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
Takashi Iwai3360b842014-11-18 11:47:04 +01002480 &info->head.kctl->id);
Daniel Macke213e9c2010-05-11 18:13:50 +02002481 break;
2482
2483 case UAC2_CS_RANGE:
2484 /* TODO */
2485 break;
2486
2487 case UAC2_CS_MEM:
2488 /* TODO */
2489 break;
2490
2491 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002492 usb_audio_dbg(mixer->chip,
2493 "unknown attribute %d in interrupt\n",
2494 attribute);
Daniel Macke213e9c2010-05-11 18:13:50 +02002495 break;
2496 } /* switch */
2497 }
2498}
2499
2500static void snd_usb_mixer_interrupt(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002501{
2502 struct usb_mixer_interface *mixer = urb->context;
Daniel Macke213e9c2010-05-11 18:13:50 +02002503 int len = urb->actual_length;
Oliver Neukumedf7de32011-03-11 13:19:43 +01002504 int ustatus = urb->status;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002505
Oliver Neukumedf7de32011-03-11 13:19:43 +01002506 if (ustatus != 0)
Daniel Macke213e9c2010-05-11 18:13:50 +02002507 goto requeue;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002508
Daniel Macke213e9c2010-05-11 18:13:50 +02002509 if (mixer->protocol == UAC_VERSION_1) {
2510 struct uac1_status_word *status;
2511
2512 for (status = urb->transfer_buffer;
2513 len >= sizeof(*status);
2514 len -= sizeof(*status), status++) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002515 dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n",
Daniel Macke213e9c2010-05-11 18:13:50 +02002516 status->bStatusType,
2517 status->bOriginator);
2518
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002519 /* ignore any notifications not from the control interface */
Daniel Macke213e9c2010-05-11 18:13:50 +02002520 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2521 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002522 continue;
Daniel Macke213e9c2010-05-11 18:13:50 +02002523
2524 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2525 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
Clemens Ladischb259b102005-04-29 16:29:28 +02002526 else
Daniel Macke213e9c2010-05-11 18:13:50 +02002527 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2528 }
2529 } else { /* UAC_VERSION_2 */
2530 struct uac2_interrupt_data_msg *msg;
2531
2532 for (msg = urb->transfer_buffer;
2533 len >= sizeof(*msg);
2534 len -= sizeof(*msg), msg++) {
2535 /* drop vendor specific and endpoint requests */
2536 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2537 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2538 continue;
2539
2540 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2541 le16_to_cpu(msg->wValue),
2542 le16_to_cpu(msg->wIndex));
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002543 }
2544 }
Daniel Macke213e9c2010-05-11 18:13:50 +02002545
2546requeue:
Daniel Mack6bc170e2014-05-24 10:58:16 +02002547 if (ustatus != -ENOENT &&
2548 ustatus != -ECONNRESET &&
2549 ustatus != -ESHUTDOWN) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002550 urb->dev = mixer->chip->dev;
2551 usb_submit_urb(urb, GFP_ATOMIC);
2552 }
2553}
2554
2555/* create the handler for the optional status interrupt endpoint */
2556static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2557{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002558 struct usb_endpoint_descriptor *ep;
2559 void *transfer_buffer;
2560 int buffer_length;
2561 unsigned int epnum;
2562
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002563 /* we need one interrupt input endpoint */
Daniel Mack1faa5d02011-08-04 15:56:28 +02002564 if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002565 return 0;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002566 ep = get_endpoint(mixer->hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01002567 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002568 return 0;
2569
Julia Lawall42a6e662008-12-29 11:23:02 +01002570 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002571 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2572 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2573 if (!transfer_buffer)
2574 return -ENOMEM;
2575 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2576 if (!mixer->urb) {
2577 kfree(transfer_buffer);
2578 return -ENOMEM;
2579 }
2580 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2581 usb_rcvintpipe(mixer->chip->dev, epnum),
2582 transfer_buffer, buffer_length,
Daniel Macke213e9c2010-05-11 18:13:50 +02002583 snd_usb_mixer_interrupt, mixer, ep->bInterval);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002584 usb_submit_urb(mixer->urb, GFP_KERNEL);
2585 return 0;
2586}
2587
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002588int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2589 int ignore_error)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002590{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002591 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002592 .dev_free = snd_usb_mixer_dev_free
2593 };
2594 struct usb_mixer_interface *mixer;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002595 struct snd_info_entry *entry;
Daniel Mack23caaf12010-03-11 21:13:25 +01002596 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002597
2598 strcpy(chip->card->mixername, "USB Mixer");
2599
Takashi Iwai561b2202005-09-09 14:22:34 +02002600 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002601 if (!mixer)
2602 return -ENOMEM;
2603 mixer->chip = chip;
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002604 mixer->ignore_ctl_error = ignore_error;
Jaroslav Kysela291186e2010-02-16 11:55:18 +01002605 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2606 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002607 if (!mixer->id_elems) {
2608 kfree(mixer);
2609 return -ENOMEM;
2610 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002611
Daniel Mack1faa5d02011-08-04 15:56:28 +02002612 mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
2613 switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +02002614 case UAC_VERSION_1:
2615 default:
2616 mixer->protocol = UAC_VERSION_1;
2617 break;
2618 case UAC_VERSION_2:
2619 mixer->protocol = UAC_VERSION_2;
2620 break;
2621 }
Daniel Mack7b8a0432010-02-22 23:49:12 +01002622
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002623 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002624 (err = snd_usb_mixer_status_create(mixer)) < 0)
2625 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002626
Daniel Mack7b1eda22010-03-11 21:13:22 +01002627 snd_usb_mixer_apply_create_quirk(mixer);
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02002628
Takashi Iwai9cbb2802014-02-04 11:15:31 +01002629 err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002630 if (err < 0)
2631 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002632
2633 if (list_empty(&chip->mixer_list) &&
2634 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2635 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2636
Clemens Ladisch84957a82005-04-29 16:23:13 +02002637 list_add(&mixer->list, &chip->mixer_list);
2638 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002639
2640_error:
2641 snd_usb_mixer_free(mixer);
2642 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002643}
2644
Takashi Iwaia6cece92014-10-31 11:24:32 +01002645void snd_usb_mixer_disconnect(struct usb_mixer_interface *mixer)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002646{
Takashi Iwaie0c70282017-10-10 14:10:32 +02002647 if (mixer->disconnected)
2648 return;
2649 if (mixer->urb)
2650 usb_kill_urb(mixer->urb);
2651 if (mixer->rc_urb)
2652 usb_kill_urb(mixer->rc_urb);
2653 mixer->disconnected = true;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002654}
Takashi Iwai400362f2014-01-20 16:51:16 +01002655
2656#ifdef CONFIG_PM
2657/* stop any bus activity of a mixer */
2658static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
2659{
2660 usb_kill_urb(mixer->urb);
2661 usb_kill_urb(mixer->rc_urb);
2662}
2663
2664static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
2665{
2666 int err;
2667
2668 if (mixer->urb) {
2669 err = usb_submit_urb(mixer->urb, GFP_NOIO);
2670 if (err < 0)
2671 return err;
2672 }
2673
2674 return 0;
2675}
2676
2677int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer)
2678{
2679 snd_usb_mixer_inactivate(mixer);
2680 return 0;
2681}
2682
Takashi Iwai3360b842014-11-18 11:47:04 +01002683static int restore_mixer_value(struct usb_mixer_elem_list *list)
Takashi Iwai400362f2014-01-20 16:51:16 +01002684{
Takashi Iwai3360b842014-11-18 11:47:04 +01002685 struct usb_mixer_elem_info *cval = (struct usb_mixer_elem_info *)list;
Takashi Iwai400362f2014-01-20 16:51:16 +01002686 int c, err, idx;
2687
2688 if (cval->cmask) {
2689 idx = 0;
2690 for (c = 0; c < MAX_CHANNELS; c++) {
2691 if (!(cval->cmask & (1 << c)))
2692 continue;
Yao-Wen Mao6aa69252015-08-28 16:33:25 +08002693 if (cval->cached & (1 << (c + 1))) {
Chris J Argeseef90452014-11-12 12:07:01 -06002694 err = snd_usb_set_cur_mix_value(cval, c + 1, idx,
Takashi Iwai400362f2014-01-20 16:51:16 +01002695 cval->cache_val[idx]);
2696 if (err < 0)
2697 return err;
2698 }
2699 idx++;
2700 }
2701 } else {
2702 /* master */
2703 if (cval->cached) {
Chris J Argeseef90452014-11-12 12:07:01 -06002704 err = snd_usb_set_cur_mix_value(cval, 0, 0, *cval->cache_val);
Takashi Iwai400362f2014-01-20 16:51:16 +01002705 if (err < 0)
2706 return err;
2707 }
2708 }
2709
2710 return 0;
2711}
2712
2713int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume)
2714{
Takashi Iwai3360b842014-11-18 11:47:04 +01002715 struct usb_mixer_elem_list *list;
Takashi Iwai400362f2014-01-20 16:51:16 +01002716 int id, err;
2717
Takashi Iwai400362f2014-01-20 16:51:16 +01002718 if (reset_resume) {
2719 /* restore cached mixer values */
2720 for (id = 0; id < MAX_ID_ELEMS; id++) {
Takashi Iwai3360b842014-11-18 11:47:04 +01002721 for (list = mixer->id_elems[id]; list;
2722 list = list->next_id_elem) {
2723 if (list->resume) {
2724 err = list->resume(list);
2725 if (err < 0)
2726 return err;
2727 }
Takashi Iwai400362f2014-01-20 16:51:16 +01002728 }
2729 }
2730 }
2731
2732 return snd_usb_mixer_activate(mixer);
2733}
2734#endif
Takashi Iwai3360b842014-11-18 11:47:04 +01002735
2736void snd_usb_mixer_elem_init_std(struct usb_mixer_elem_list *list,
2737 struct usb_mixer_interface *mixer,
2738 int unitid)
2739{
2740 list->mixer = mixer;
2741 list->id = unitid;
2742 list->dump = snd_usb_mixer_dump_cval;
2743#ifdef CONFIG_PM
2744 list->resume = restore_mixer_value;
2745#endif
2746}