blob: 6e7bac8203baab3ade9fab9c0aad05f67293334d [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * (Tentative) USB Audio Driver for ALSA
4 *
5 * Mixer control part
6 *
7 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
8 *
9 * Many codes borrowed from audio.c by
10 * Alan Cox (alan@lxorguk.ukuu.org.uk)
11 * Thomas Sailer (sailer@ife.ee.ethz.ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Daniel Mack157a57b2010-06-16 17:57:30 +020014/*
15 * TODOs, for both the mixer and the streaming interfaces:
16 *
17 * - support for UAC2 effect units
18 * - support for graphical equalizers
19 * - RANGE and MEM set commands (UAC2)
20 * - RANGE and MEM interrupt dispatchers (UAC2)
21 * - audio channel clustering (UAC2)
22 * - audio sample rate converter units (UAC2)
23 * - proper handling of clock multipliers (UAC2)
24 * - dispatch clock change notifications (UAC2)
25 * - stop PCM streams which use a clock that became invalid
26 * - stop PCM streams which use a clock selector that has changed
27 * - parse available sample rates again when clock sources changed
28 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/bitops.h>
31#include <linux/init.h>
32#include <linux/list.h>
Daniel Mackcddaafb2016-04-09 11:21:46 +020033#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/slab.h>
35#include <linux/string.h>
36#include <linux/usb.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010037#include <linux/usb/audio.h>
Daniel Mack23caaf12010-03-11 21:13:25 +010038#include <linux/usb/audio-v2.h>
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +020039#include <linux/usb/audio-v3.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <sound/core.h>
42#include <sound/control.h>
Clemens Ladischb259b102005-04-29 16:29:28 +020043#include <sound/hwdep.h>
Clemens Ladischaafad562005-05-10 14:47:38 +020044#include <sound/info.h>
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +020045#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include "usbaudio.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010048#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010049#include "helper.h"
Daniel Mack7b1eda22010-03-11 21:13:22 +010050#include "mixer_quirks.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010051#include "power.h"
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +020052
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +010053#define MAX_ID_ELEMS 256
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055struct usb_audio_term {
56 int id;
57 int type;
58 int channels;
59 unsigned int chconfig;
60 int name;
61};
62
63struct usbmix_name_map;
64
Takashi Iwai86e07d32005-11-17 15:08:02 +010065struct mixer_build {
66 struct snd_usb_audio *chip;
Clemens Ladisch84957a82005-04-29 16:23:13 +020067 struct usb_mixer_interface *mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 unsigned char *buffer;
69 unsigned int buflen;
Jaroslav Kysela291186e2010-02-16 11:55:18 +010070 DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
Hui Peng19bce472019-08-15 00:31:34 -040071 DECLARE_BITMAP(termbitmap, MAX_ID_ELEMS);
Takashi Iwai86e07d32005-11-17 15:08:02 +010072 struct usb_audio_term oterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 const struct usbmix_name_map *map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +020074 const struct usbmix_selector_map *selector_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
Joseph Teichman1cdfa9f2011-02-08 01:22:36 -050077/*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -080078enum {
79 USB_XU_CLOCK_RATE = 0xe301,
80 USB_XU_CLOCK_SOURCE = 0xe302,
81 USB_XU_DIGITAL_IO_STATUS = 0xe303,
82 USB_XU_DEVICE_OPTIONS = 0xe304,
83 USB_XU_DIRECT_MONITORING = 0xe305,
84 USB_XU_METERING = 0xe306
85};
86enum {
87 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
88 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
89 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
90 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
91};
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/*
94 * manual mapping of mixer names
95 * if the mixer topology is too complicated and the parsed names are
96 * ambiguous, add the entries in usbmixer_maps.c.
97 */
Daniel Mackf0b5e632010-03-11 21:13:23 +010098#include "mixer_maps.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100100static const struct usbmix_name_map *
Ruslan Bilovol17156f22018-05-04 04:24:04 +0300101find_map(const struct usbmix_name_map *p, int unitid, int control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100103 if (!p)
104 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Ruslan Bilovol17156f22018-05-04 04:24:04 +0300106 for (; p->id; p++) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100107 if (p->id == unitid &&
108 (!control || !p->control || control == p->control))
109 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100111 return NULL;
112}
113
114/* get the mapped name if the unit matches */
115static int
116check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
117{
Takashi Iwaie8afdfd2021-01-15 10:57:58 +0100118 int len;
119
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100120 if (!p || !p->name)
121 return 0;
122
123 buflen--;
Takashi Iwaie8afdfd2021-01-15 10:57:58 +0100124 len = strscpy(buf, p->name, buflen);
125 return len < 0 ? buflen : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Takashi Iwai5aeee342014-11-18 11:02:14 +0100128/* ignore the error value if ignore_ctl_error flag is set */
129#define filter_error(cval, err) \
Takashi Iwai3360b842014-11-18 11:47:04 +0100130 ((cval)->head.mixer->ignore_ctl_error ? 0 : (err))
Takashi Iwai5aeee342014-11-18 11:02:14 +0100131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/* check whether the control should be ignored */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100133static inline int
134check_ignored_ctl(const struct usbmix_name_map *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100136 if (!p || p->name || p->dB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return 0;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100138 return 1;
139}
140
141/* dB mapping */
142static inline void check_mapped_dB(const struct usbmix_name_map *p,
143 struct usb_mixer_elem_info *cval)
144{
145 if (p && p->dB) {
146 cval->dBmin = p->dB->min;
147 cval->dBmax = p->dB->max;
Takashi Iwai38b65192011-08-19 07:55:10 +0200148 cval->initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200152/* get the mapped selector source name */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100153static int check_mapped_selector_name(struct mixer_build *state, int unitid,
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200154 int index, char *buf, int buflen)
155{
156 const struct usbmix_selector_map *p;
Takashi Iwaie8afdfd2021-01-15 10:57:58 +0100157 int len;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200158
Daniel Mack6bc170e2014-05-24 10:58:16 +0200159 if (!state->selector_map)
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200160 return 0;
161 for (p = state->selector_map; p->id; p++) {
Takashi Iwaie8afdfd2021-01-15 10:57:58 +0100162 if (p->id == unitid && index < p->count) {
163 len = strscpy(buf, p->names[index], buflen);
164 return len < 0 ? buflen : len;
165 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200166 }
167 return 0;
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
171 * find an audio control unit with the given unit id
172 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200173static void *find_audio_control_unit(struct mixer_build *state,
174 unsigned char unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Daniel Mack67e1daa2010-05-31 13:35:43 +0200176 /* we just parse the header */
177 struct uac_feature_unit_descriptor *hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Daniel Mack67e1daa2010-05-31 13:35:43 +0200179 while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
180 USB_DT_CS_INTERFACE)) != NULL) {
181 if (hdr->bLength >= 4 &&
182 hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200183 hdr->bDescriptorSubtype <= UAC3_SAMPLE_RATE_CONVERTER &&
Daniel Mack67e1daa2010-05-31 13:35:43 +0200184 hdr->bUnitID == unit)
185 return hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
Daniel Mack67e1daa2010-05-31 13:35:43 +0200187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return NULL;
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/*
192 * copy a string with the given id
193 */
Ruslan Bilovoleccfc1b2018-05-04 04:24:02 +0300194static int snd_usb_copy_string_desc(struct snd_usb_audio *chip,
Daniel Mack6bc170e2014-05-24 10:58:16 +0200195 int index, char *buf, int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Ruslan Bilovoleccfc1b2018-05-04 04:24:02 +0300197 int len = usb_string(chip->dev, index, buf, maxlen - 1);
Jaejoong Kim251552a2017-12-04 15:31:48 +0900198
199 if (len < 0)
200 return 0;
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 buf[len] = 0;
203 return len;
204}
205
206/*
207 * convert from the byte/word on usb descriptor to the zero-based integer
208 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100209static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 switch (cval->val_type) {
212 case USB_MIXER_BOOLEAN:
213 return !!val;
214 case USB_MIXER_INV_BOOLEAN:
215 return !val;
216 case USB_MIXER_U8:
217 val &= 0xff;
218 break;
219 case USB_MIXER_S8:
220 val &= 0xff;
221 if (val >= 0x80)
222 val -= 0x100;
223 break;
224 case USB_MIXER_U16:
225 val &= 0xffff;
226 break;
227 case USB_MIXER_S16:
228 val &= 0xffff;
229 if (val >= 0x8000)
230 val -= 0x10000;
231 break;
232 }
233 return val;
234}
235
236/*
237 * convert from the zero-based int to the byte/word for usb descriptor
238 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100239static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 switch (cval->val_type) {
242 case USB_MIXER_BOOLEAN:
243 return !!val;
244 case USB_MIXER_INV_BOOLEAN:
245 return !val;
246 case USB_MIXER_S8:
247 case USB_MIXER_U8:
248 return val & 0xff;
249 case USB_MIXER_S16:
250 case USB_MIXER_U16:
251 return val & 0xffff;
252 }
253 return 0; /* not reached */
254}
255
Takashi Iwai86e07d32005-11-17 15:08:02 +0100256static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Daniel Mack6bc170e2014-05-24 10:58:16 +0200258 if (!cval->res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 cval->res = 1;
260 if (val < cval->min)
261 return 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200262 else if (val >= cval->max)
Lars-Peter Clausene4d8aef2020-12-23 18:22:22 +0100263 return DIV_ROUND_UP(cval->max - cval->min, cval->res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 else
265 return (val - cval->min) / cval->res;
266}
267
Takashi Iwai86e07d32005-11-17 15:08:02 +0100268static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 if (val < 0)
271 return cval->min;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200272 if (!cval->res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 cval->res = 1;
274 val *= cval->res;
275 val += cval->min;
276 if (val > cval->max)
277 return cval->max;
278 return val;
279}
280
Julian Scheelbc18e312015-08-14 16:14:45 +0200281static int uac2_ctl_value_size(int val_type)
282{
283 switch (val_type) {
284 case USB_MIXER_S32:
285 case USB_MIXER_U32:
286 return 4;
287 case USB_MIXER_S16:
288 case USB_MIXER_U16:
289 return 2;
290 default:
291 return 1;
292 }
293 return 0; /* unreachable */
294}
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297/*
298 * retrieve a mixer value
299 */
300
Chris Wulff0aef31b2020-03-14 12:54:48 -0400301static inline int mixer_ctrl_intf(struct usb_mixer_interface *mixer)
302{
303 return get_iface_desc(mixer->hostif)->bInterfaceNumber;
304}
305
Daniel Mack6bc170e2014-05-24 10:58:16 +0200306static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request,
307 int validx, int *value_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Takashi Iwai3360b842014-11-18 11:47:04 +0100309 struct snd_usb_audio *chip = cval->head.mixer->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 unsigned char buf[2];
311 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
312 int timeout = 10;
Takashi Iwai978520b2012-10-12 15:12:55 +0200313 int idx = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Takashi Iwai47ab1542015-08-25 16:09:00 +0200315 err = snd_usb_lock_shutdown(chip);
Oliver Neukum88a85162011-03-11 14:51:12 +0100316 if (err < 0)
317 return -EIO;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 while (timeout-- > 0) {
Chris Wulff0aef31b2020-03-14 12:54:48 -0400320 idx = mixer_ctrl_intf(cval->head.mixer) | (cval->head.id << 8);
Stephen Barber5a9a8ec2017-08-17 15:17:46 -0700321 err = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
322 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
323 validx, idx, buf, val_len);
324 if (err >= val_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
Takashi Iwai978520b2012-10-12 15:12:55 +0200326 err = 0;
327 goto out;
Stephen Barber5a9a8ec2017-08-17 15:17:46 -0700328 } else if (err == -ETIMEDOUT) {
329 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100332 usb_audio_dbg(chip,
333 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
334 request, validx, idx, cval->val_type);
Takashi Iwai978520b2012-10-12 15:12:55 +0200335 err = -EINVAL;
336
337 out:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200338 snd_usb_unlock_shutdown(chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200339 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Daniel Mack6bc170e2014-05-24 10:58:16 +0200342static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request,
343 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100344{
Takashi Iwai3360b842014-11-18 11:47:04 +0100345 struct snd_usb_audio *chip = cval->head.mixer->chip;
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100346 /* enough space for one range */
347 unsigned char buf[sizeof(__u16) + 3 * sizeof(__u32)];
Daniel Mack23caaf12010-03-11 21:13:25 +0100348 unsigned char *val;
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100349 int idx = 0, ret, val_size, size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100350 __u8 bRequest;
351
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100352 val_size = uac2_ctl_value_size(cval->val_type);
353
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200354 if (request == UAC_GET_CUR) {
355 bRequest = UAC2_CS_CUR;
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100356 size = val_size;
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200357 } else {
358 bRequest = UAC2_CS_RANGE;
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100359 size = sizeof(__u16) + 3 * val_size;
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200360 }
361
362 memset(buf, 0, sizeof(buf));
Daniel Mack23caaf12010-03-11 21:13:25 +0100363
Takashi Iwai509975c2021-10-14 15:06:35 +0200364 if (snd_usb_lock_shutdown(chip))
365 return -EIO;
Oliver Neukum88a85162011-03-11 14:51:12 +0100366
Chris Wulff0aef31b2020-03-14 12:54:48 -0400367 idx = mixer_ctrl_intf(cval->head.mixer) | (cval->head.id << 8);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200368 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
Daniel Mack23caaf12010-03-11 21:13:25 +0100369 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Takashi Iwai978520b2012-10-12 15:12:55 +0200370 validx, idx, buf, size);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200371 snd_usb_unlock_shutdown(chip);
Daniel Mack23caaf12010-03-11 21:13:25 +0100372
373 if (ret < 0) {
Takashi Iwaiac9b0192021-10-14 15:06:34 +0200374 usb_audio_dbg(chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100375 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
376 request, validx, idx, cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100377 return ret;
378 }
379
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200380 /* FIXME: how should we handle multiple triplets here? */
381
Daniel Mack23caaf12010-03-11 21:13:25 +0100382 switch (request) {
383 case UAC_GET_CUR:
384 val = buf;
385 break;
386 case UAC_GET_MIN:
387 val = buf + sizeof(__u16);
388 break;
389 case UAC_GET_MAX:
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100390 val = buf + sizeof(__u16) + val_size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100391 break;
392 case UAC_GET_RES:
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100393 val = buf + sizeof(__u16) + val_size * 2;
Daniel Mack23caaf12010-03-11 21:13:25 +0100394 break;
395 default:
396 return -EINVAL;
397 }
398
Kirill Marinushkin447cae52018-01-29 06:37:55 +0100399 *value_ret = convert_signed_value(cval,
400 snd_usb_combine_bytes(val, val_size));
Daniel Mack23caaf12010-03-11 21:13:25 +0100401
402 return 0;
403}
404
Daniel Mack6bc170e2014-05-24 10:58:16 +0200405static int get_ctl_value(struct usb_mixer_elem_info *cval, int request,
406 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100407{
Eldad Zack9f814102012-11-28 23:55:35 +0100408 validx += cval->idx_off;
409
Takashi Iwai3360b842014-11-18 11:47:04 +0100410 return (cval->head.mixer->protocol == UAC_VERSION_1) ?
Daniel Mack23caaf12010-03-11 21:13:25 +0100411 get_ctl_value_v1(cval, request, validx, value_ret) :
412 get_ctl_value_v2(cval, request, validx, value_ret);
413}
414
Daniel Mack6bc170e2014-05-24 10:58:16 +0200415static int get_cur_ctl_value(struct usb_mixer_elem_info *cval,
416 int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100418 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
421/* channel = 0: master, 1 = first channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100422static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
423 int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Daniel Mack6bc170e2014-05-24 10:58:16 +0200425 return get_ctl_value(cval, UAC_GET_CUR,
426 (cval->control << 8) | channel,
427 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Chris J Argeseef90452014-11-12 12:07:01 -0600430int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info *cval,
Takashi Iwai641b4872009-01-15 17:05:24 +0100431 int channel, int index, int *value)
432{
433 int err;
434
435 if (cval->cached & (1 << channel)) {
436 *value = cval->cache_val[index];
437 return 0;
438 }
439 err = get_cur_mix_raw(cval, channel, value);
440 if (err < 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +0100441 if (!cval->head.mixer->ignore_ctl_error)
442 usb_audio_dbg(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100443 "cannot get current value for control %d ch %d: err = %d\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200444 cval->control, channel, err);
Takashi Iwai641b4872009-01-15 17:05:24 +0100445 return err;
446 }
447 cval->cached |= 1 << channel;
448 cval->cache_val[index] = *value;
449 return 0;
450}
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452/*
453 * set a mixer value
454 */
455
Daniel Mack7b1eda22010-03-11 21:13:22 +0100456int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
457 int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Takashi Iwai3360b842014-11-18 11:47:04 +0100459 struct snd_usb_audio *chip = cval->head.mixer->chip;
Julian Scheelbc18e312015-08-14 16:14:45 +0200460 unsigned char buf[4];
Takashi Iwai978520b2012-10-12 15:12:55 +0200461 int idx = 0, val_len, err, timeout = 10;
Daniel Mack23caaf12010-03-11 21:13:25 +0100462
Eldad Zack9f814102012-11-28 23:55:35 +0100463 validx += cval->idx_off;
464
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200465
Takashi Iwai3360b842014-11-18 11:47:04 +0100466 if (cval->head.mixer->protocol == UAC_VERSION_1) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100467 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200468 } else { /* UAC_VERSION_2/3 */
Julian Scheelbc18e312015-08-14 16:14:45 +0200469 val_len = uac2_ctl_value_size(cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100470
471 /* FIXME */
472 if (request != UAC_SET_CUR) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100473 usb_audio_dbg(chip, "RANGE setting not yet supported\n");
Daniel Mack23caaf12010-03-11 21:13:25 +0100474 return -EINVAL;
475 }
476
477 request = UAC2_CS_CUR;
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 value_set = convert_bytes_value(cval, value_set);
481 buf[0] = value_set & 0xff;
482 buf[1] = (value_set >> 8) & 0xff;
Julian Scheelbc18e312015-08-14 16:14:45 +0200483 buf[2] = (value_set >> 16) & 0xff;
484 buf[3] = (value_set >> 24) & 0xff;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200485
486 err = snd_usb_lock_shutdown(chip);
Oliver Neukum88a85162011-03-11 14:51:12 +0100487 if (err < 0)
488 return -EIO;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200489
Takashi Iwai978520b2012-10-12 15:12:55 +0200490 while (timeout-- > 0) {
Chris Wulff0aef31b2020-03-14 12:54:48 -0400491 idx = mixer_ctrl_intf(cval->head.mixer) | (cval->head.id << 8);
Stephen Barber5a9a8ec2017-08-17 15:17:46 -0700492 err = snd_usb_ctl_msg(chip->dev,
493 usb_sndctrlpipe(chip->dev, 0), request,
494 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
495 validx, idx, buf, val_len);
496 if (err >= 0) {
Takashi Iwai978520b2012-10-12 15:12:55 +0200497 err = 0;
498 goto out;
Stephen Barber5a9a8ec2017-08-17 15:17:46 -0700499 } else if (err == -ETIMEDOUT) {
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 Iwai0f174b32017-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 Iwai220345e2020-06-24 14:23:40 +0200588int snd_usb_mixer_add_list(struct usb_mixer_elem_list *list,
589 struct snd_kcontrol *kctl,
590 bool is_std_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Takashi Iwai3360b842014-11-18 11:47:04 +0100592 struct usb_mixer_interface *mixer = list->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200594
Daniel Mackef9d5972011-05-25 09:09:00 +0200595 while (snd_ctl_find_id(mixer->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 kctl->id.index++;
Takashi Iwaif25ecf82018-05-27 15:18:22 +0200597 err = snd_ctl_add(mixer->chip->card, kctl);
598 if (err < 0) {
Daniel Mack6bc170e2014-05-24 10:58:16 +0200599 usb_audio_dbg(mixer->chip, "cannot add control (err = %d)\n",
600 err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200601 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Takashi Iwai3360b842014-11-18 11:47:04 +0100603 list->kctl = kctl;
Takashi Iwai220345e2020-06-24 14:23:40 +0200604 list->is_std_info = is_std_info;
Takashi Iwai3360b842014-11-18 11:47:04 +0100605 list->next_id_elem = mixer->id_elems[list->id];
606 mixer->id_elems[list->id] = list;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200607 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610/*
611 * get a terminal name string
612 */
613
614static struct iterm_name_combo {
615 int type;
616 char *name;
617} iterm_names[] = {
618 { 0x0300, "Output" },
619 { 0x0301, "Speaker" },
620 { 0x0302, "Headphone" },
621 { 0x0303, "HMD Audio" },
622 { 0x0304, "Desktop Speaker" },
623 { 0x0305, "Room Speaker" },
624 { 0x0306, "Com Speaker" },
625 { 0x0307, "LFE" },
626 { 0x0600, "External In" },
627 { 0x0601, "Analog In" },
628 { 0x0602, "Digital In" },
629 { 0x0603, "Line" },
630 { 0x0604, "Legacy In" },
631 { 0x0605, "IEC958 In" },
632 { 0x0606, "1394 DA Stream" },
633 { 0x0607, "1394 DV Stream" },
634 { 0x0700, "Embedded" },
635 { 0x0701, "Noise Source" },
636 { 0x0702, "Equalization Noise" },
637 { 0x0703, "CD" },
638 { 0x0704, "DAT" },
639 { 0x0705, "DCC" },
640 { 0x0706, "MiniDisk" },
641 { 0x0707, "Analog Tape" },
642 { 0x0708, "Phonograph" },
643 { 0x0709, "VCR Audio" },
644 { 0x070a, "Video Disk Audio" },
645 { 0x070b, "DVD Audio" },
646 { 0x070c, "TV Tuner Audio" },
647 { 0x070d, "Satellite Rec Audio" },
648 { 0x070e, "Cable Tuner Audio" },
649 { 0x070f, "DSS Audio" },
650 { 0x0710, "Radio Receiver" },
651 { 0x0711, "Radio Transmitter" },
652 { 0x0712, "Multi-Track Recorder" },
653 { 0x0713, "Synthesizer" },
654 { 0 },
655};
656
Ruslan Bilovoleccfc1b2018-05-04 04:24:02 +0300657static int get_term_name(struct snd_usb_audio *chip, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 unsigned char *name, int maxlen, int term_only)
659{
660 struct iterm_name_combo *names;
Takashi Iwai56a23ee2017-12-19 13:38:23 +0100661 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Takashi Iwai56a23ee2017-12-19 13:38:23 +0100663 if (iterm->name) {
Ruslan Bilovoleccfc1b2018-05-04 04:24:02 +0300664 len = snd_usb_copy_string_desc(chip, iterm->name,
Daniel Mack6bc170e2014-05-24 10:58:16 +0200665 name, maxlen);
Takashi Iwai56a23ee2017-12-19 13:38:23 +0100666 if (len)
667 return len;
668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 /* virtual type - not a real terminal */
671 if (iterm->type >> 16) {
672 if (term_only)
673 return 0;
674 switch (iterm->type >> 16) {
Jorge Sanjuan8b3a0872018-07-11 13:37:54 +0100675 case UAC3_SELECTOR_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200676 strcpy(name, "Selector");
677 return 8;
Jorge Sanjuan8b3a0872018-07-11 13:37:54 +0100678 case UAC3_PROCESSING_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200679 strcpy(name, "Process Unit");
680 return 12;
Jorge Sanjuan8b3a0872018-07-11 13:37:54 +0100681 case UAC3_EXTENSION_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200682 strcpy(name, "Ext Unit");
683 return 8;
Jorge Sanjuan8b3a0872018-07-11 13:37:54 +0100684 case UAC3_MIXER_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200685 strcpy(name, "Mixer");
686 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 default:
688 return sprintf(name, "Unit %d", iterm->id);
689 }
690 }
691
692 switch (iterm->type & 0xff00) {
693 case 0x0100:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200694 strcpy(name, "PCM");
695 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 case 0x0200:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200697 strcpy(name, "Mic");
698 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 case 0x0400:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200700 strcpy(name, "Headset");
701 return 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 case 0x0500:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200703 strcpy(name, "Phone");
704 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706
Daniel Mack6bc170e2014-05-24 10:58:16 +0200707 for (names = iterm_names; names->type; names++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (names->type == iterm->type) {
709 strcpy(name, names->name);
710 return strlen(names->name);
711 }
Daniel Mack6bc170e2014-05-24 10:58:16 +0200712 }
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return 0;
715}
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717/*
Jorge Sanjuan6cfd8392018-05-11 16:25:34 +0100718 * Get logical cluster information for UAC3 devices.
719 */
720static int get_cluster_channels_v3(struct mixer_build *state, unsigned int cluster_id)
721{
722 struct uac3_cluster_header_descriptor c_header;
723 int err;
724
725 err = snd_usb_ctl_msg(state->chip->dev,
726 usb_rcvctrlpipe(state->chip->dev, 0),
727 UAC3_CS_REQ_HIGH_CAPABILITY_DESCRIPTOR,
728 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
729 cluster_id,
730 snd_usb_ctrl_intf(state->chip),
731 &c_header, sizeof(c_header));
732 if (err < 0)
733 goto error;
734 if (err != sizeof(c_header)) {
735 err = -EIO;
736 goto error;
737 }
738
739 return c_header.bNrChannels;
740
741error:
742 usb_audio_err(state->chip, "cannot request logical cluster ID: %d (err: %d)\n", cluster_id, err);
743 return err;
744}
745
746/*
747 * Get number of channels for a Mixer Unit.
748 */
749static int uac_mixer_unit_get_channels(struct mixer_build *state,
750 struct uac_mixer_unit_descriptor *desc)
751{
752 int mu_channels;
Jorge Sanjuan6cfd8392018-05-11 16:25:34 +0100753
754 switch (state->mixer->protocol) {
755 case UAC_VERSION_1:
756 case UAC_VERSION_2:
757 default:
Takashi Iwai0bfe5e42018-12-19 14:04:47 +0100758 if (desc->bLength < sizeof(*desc) + desc->bNrInPins + 1)
759 return 0; /* no bmControls -> skip */
Jorge Sanjuan6cfd8392018-05-11 16:25:34 +0100760 mu_channels = uac_mixer_unit_bNrChannels(desc);
761 break;
762 case UAC_VERSION_3:
763 mu_channels = get_cluster_channels_v3(state,
764 uac3_mixer_unit_wClusterDescrID(desc));
765 break;
766 }
767
Jorge Sanjuan6cfd8392018-05-11 16:25:34 +0100768 return mu_channels;
769}
770
771/*
Takashi Iwaie0ccdef2019-08-23 12:38:07 +0200772 * Parse Input Terminal Unit
773 */
774static int __check_input_term(struct mixer_build *state, int id,
775 struct usb_audio_term *term);
776
777static int parse_term_uac1_iterm_unit(struct mixer_build *state,
778 struct usb_audio_term *term,
779 void *p1, int id)
780{
781 struct uac_input_terminal_descriptor *d = p1;
782
783 term->type = le16_to_cpu(d->wTerminalType);
784 term->channels = d->bNrChannels;
785 term->chconfig = le16_to_cpu(d->wChannelConfig);
786 term->name = d->iTerminal;
787 return 0;
788}
789
790static int parse_term_uac2_iterm_unit(struct mixer_build *state,
791 struct usb_audio_term *term,
792 void *p1, int id)
793{
794 struct uac2_input_terminal_descriptor *d = p1;
795 int err;
796
797 /* call recursively to verify the referenced clock entity */
798 err = __check_input_term(state, d->bCSourceID, term);
799 if (err < 0)
800 return err;
801
802 /* save input term properties after recursion,
803 * to ensure they are not overriden by the recursion calls
804 */
805 term->id = id;
806 term->type = le16_to_cpu(d->wTerminalType);
807 term->channels = d->bNrChannels;
808 term->chconfig = le32_to_cpu(d->bmChannelConfig);
809 term->name = d->iTerminal;
810 return 0;
811}
812
813static int parse_term_uac3_iterm_unit(struct mixer_build *state,
814 struct usb_audio_term *term,
815 void *p1, int id)
816{
817 struct uac3_input_terminal_descriptor *d = p1;
818 int err;
819
820 /* call recursively to verify the referenced clock entity */
821 err = __check_input_term(state, d->bCSourceID, term);
822 if (err < 0)
823 return err;
824
825 /* save input term properties after recursion,
826 * to ensure they are not overriden by the recursion calls
827 */
828 term->id = id;
829 term->type = le16_to_cpu(d->wTerminalType);
830
831 err = get_cluster_channels_v3(state, le16_to_cpu(d->wClusterDescrID));
832 if (err < 0)
833 return err;
834 term->channels = err;
835
836 /* REVISIT: UAC3 IT doesn't have channels cfg */
837 term->chconfig = 0;
838
839 term->name = le16_to_cpu(d->wTerminalDescrStr);
840 return 0;
841}
842
843static int parse_term_mixer_unit(struct mixer_build *state,
844 struct usb_audio_term *term,
845 void *p1, int id)
846{
847 struct uac_mixer_unit_descriptor *d = p1;
848 int protocol = state->mixer->protocol;
849 int err;
850
851 err = uac_mixer_unit_get_channels(state, d);
852 if (err <= 0)
853 return err;
854
855 term->type = UAC3_MIXER_UNIT << 16; /* virtual type */
856 term->channels = err;
857 if (protocol != UAC_VERSION_3) {
858 term->chconfig = uac_mixer_unit_wChannelConfig(d, protocol);
859 term->name = uac_mixer_unit_iMixer(d);
860 }
861 return 0;
862}
863
864static int parse_term_selector_unit(struct mixer_build *state,
865 struct usb_audio_term *term,
866 void *p1, int id)
867{
868 struct uac_selector_unit_descriptor *d = p1;
869 int err;
870
871 /* call recursively to retrieve the channel info */
872 err = __check_input_term(state, d->baSourceID[0], term);
873 if (err < 0)
874 return err;
875 term->type = UAC3_SELECTOR_UNIT << 16; /* virtual type */
876 term->id = id;
877 if (state->mixer->protocol != UAC_VERSION_3)
878 term->name = uac_selector_unit_iSelector(d);
879 return 0;
880}
881
882static int parse_term_proc_unit(struct mixer_build *state,
883 struct usb_audio_term *term,
884 void *p1, int id, int vtype)
885{
886 struct uac_processing_unit_descriptor *d = p1;
887 int protocol = state->mixer->protocol;
888 int err;
889
890 if (d->bNrInPins) {
891 /* call recursively to retrieve the channel info */
892 err = __check_input_term(state, d->baSourceID[0], term);
893 if (err < 0)
894 return err;
895 }
896
897 term->type = vtype << 16; /* virtual type */
898 term->id = id;
899
900 if (protocol == UAC_VERSION_3)
901 return 0;
902
903 if (!term->channels) {
904 term->channels = uac_processing_unit_bNrChannels(d);
905 term->chconfig = uac_processing_unit_wChannelConfig(d, protocol);
906 }
907 term->name = uac_processing_unit_iProcessing(d, protocol);
908 return 0;
909}
910
Takashi Iwaid75a1702020-02-11 17:05:21 +0100911static int parse_term_effect_unit(struct mixer_build *state,
912 struct usb_audio_term *term,
913 void *p1, int id)
914{
Takashi Iwai60081b32020-02-13 12:20:59 +0100915 struct uac2_effect_unit_descriptor *d = p1;
916 int err;
917
918 err = __check_input_term(state, d->bSourceID, term);
919 if (err < 0)
920 return err;
Takashi Iwaid75a1702020-02-11 17:05:21 +0100921 term->type = UAC3_EFFECT_UNIT << 16; /* virtual type */
922 term->id = id;
923 return 0;
924}
925
Takashi Iwaie0ccdef2019-08-23 12:38:07 +0200926static int parse_term_uac2_clock_source(struct mixer_build *state,
927 struct usb_audio_term *term,
928 void *p1, int id)
929{
930 struct uac_clock_source_descriptor *d = p1;
931
932 term->type = UAC3_CLOCK_SOURCE << 16; /* virtual type */
933 term->id = id;
934 term->name = d->iClockSource;
935 return 0;
936}
937
938static int parse_term_uac3_clock_source(struct mixer_build *state,
939 struct usb_audio_term *term,
940 void *p1, int id)
941{
942 struct uac3_clock_source_descriptor *d = p1;
943
944 term->type = UAC3_CLOCK_SOURCE << 16; /* virtual type */
945 term->id = id;
946 term->name = le16_to_cpu(d->wClockSourceStr);
947 return 0;
948}
949
950#define PTYPE(a, b) ((a) << 8 | (b))
951
952/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 * parse the source unit recursively until it reaches to a terminal
954 * or a branched unit.
955 */
Hui Peng19bce472019-08-15 00:31:34 -0400956static int __check_input_term(struct mixer_build *state, int id,
Takashi Iwaie0ccdef2019-08-23 12:38:07 +0200957 struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200959 int protocol = state->mixer->protocol;
Daniel Mack23caaf12010-03-11 21:13:25 +0100960 void *p1;
Hui Peng19bce472019-08-15 00:31:34 -0400961 unsigned char *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Hui Peng19bce472019-08-15 00:31:34 -0400963 for (;;) {
964 /* a loop in the terminal chain? */
965 if (test_and_set_bit(id, state->termbitmap))
966 return -EINVAL;
967
968 p1 = find_audio_control_unit(state, id);
969 if (!p1)
970 break;
Takashi Iwai57f87702019-08-20 17:17:09 +0200971 if (!snd_usb_validate_audio_desc(p1, protocol))
972 break; /* bad descriptor */
Hui Peng19bce472019-08-15 00:31:34 -0400973
974 hdr = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 term->id = id;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200976
Takashi Iwaie0ccdef2019-08-23 12:38:07 +0200977 switch (PTYPE(protocol, hdr[2])) {
978 case PTYPE(UAC_VERSION_1, UAC_FEATURE_UNIT):
979 case PTYPE(UAC_VERSION_2, UAC_FEATURE_UNIT):
980 case PTYPE(UAC_VERSION_3, UAC3_FEATURE_UNIT): {
981 /* the header is the same for all versions */
982 struct uac_feature_unit_descriptor *d = p1;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200983
Takashi Iwaie0ccdef2019-08-23 12:38:07 +0200984 id = d->bSourceID;
985 break; /* continue to parse */
986 }
987 case PTYPE(UAC_VERSION_1, UAC_INPUT_TERMINAL):
988 return parse_term_uac1_iterm_unit(state, term, p1, id);
989 case PTYPE(UAC_VERSION_2, UAC_INPUT_TERMINAL):
990 return parse_term_uac2_iterm_unit(state, term, p1, id);
991 case PTYPE(UAC_VERSION_3, UAC_INPUT_TERMINAL):
992 return parse_term_uac3_iterm_unit(state, term, p1, id);
993 case PTYPE(UAC_VERSION_1, UAC_MIXER_UNIT):
994 case PTYPE(UAC_VERSION_2, UAC_MIXER_UNIT):
995 case PTYPE(UAC_VERSION_3, UAC3_MIXER_UNIT):
996 return parse_term_mixer_unit(state, term, p1, id);
997 case PTYPE(UAC_VERSION_1, UAC_SELECTOR_UNIT):
998 case PTYPE(UAC_VERSION_2, UAC_SELECTOR_UNIT):
999 case PTYPE(UAC_VERSION_2, UAC2_CLOCK_SELECTOR):
1000 case PTYPE(UAC_VERSION_3, UAC3_SELECTOR_UNIT):
1001 case PTYPE(UAC_VERSION_3, UAC3_CLOCK_SELECTOR):
1002 return parse_term_selector_unit(state, term, p1, id);
1003 case PTYPE(UAC_VERSION_1, UAC1_PROCESSING_UNIT):
1004 case PTYPE(UAC_VERSION_2, UAC2_PROCESSING_UNIT_V2):
1005 case PTYPE(UAC_VERSION_3, UAC3_PROCESSING_UNIT):
1006 return parse_term_proc_unit(state, term, p1, id,
1007 UAC3_PROCESSING_UNIT);
1008 case PTYPE(UAC_VERSION_2, UAC2_EFFECT_UNIT):
1009 case PTYPE(UAC_VERSION_3, UAC3_EFFECT_UNIT):
Takashi Iwaid75a1702020-02-11 17:05:21 +01001010 return parse_term_effect_unit(state, term, p1, id);
Takashi Iwaie0ccdef2019-08-23 12:38:07 +02001011 case PTYPE(UAC_VERSION_1, UAC1_EXTENSION_UNIT):
1012 case PTYPE(UAC_VERSION_2, UAC2_EXTENSION_UNIT_V2):
1013 case PTYPE(UAC_VERSION_3, UAC3_EXTENSION_UNIT):
1014 return parse_term_proc_unit(state, term, p1, id,
1015 UAC3_EXTENSION_UNIT);
1016 case PTYPE(UAC_VERSION_2, UAC2_CLOCK_SOURCE):
1017 return parse_term_uac2_clock_source(state, term, p1, id);
1018 case PTYPE(UAC_VERSION_3, UAC3_CLOCK_SOURCE):
1019 return parse_term_uac3_clock_source(state, term, p1, id);
1020 default:
1021 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023 }
1024 return -ENODEV;
1025}
1026
Hui Peng19bce472019-08-15 00:31:34 -04001027
1028static int check_input_term(struct mixer_build *state, int id,
1029 struct usb_audio_term *term)
1030{
1031 memset(term, 0, sizeof(*term));
1032 memset(state->termbitmap, 0, sizeof(state->termbitmap));
1033 return __check_input_term(state, id, term);
1034}
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036/*
1037 * Feature Unit
1038 */
1039
1040/* feature unit control information */
1041struct usb_feature_control_info {
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001042 int control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 const char *name;
Julian Scheelbc18e312015-08-14 16:14:45 +02001044 int type; /* data type for uac1 */
1045 int type_uac2; /* data type for uac2 if different from uac1, else -1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046};
1047
Takashi Iwaia01df922020-01-05 15:47:26 +01001048static const struct usb_feature_control_info audio_feature_info[] = {
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001049 { UAC_FU_MUTE, "Mute", USB_MIXER_INV_BOOLEAN, -1 },
1050 { UAC_FU_VOLUME, "Volume", USB_MIXER_S16, -1 },
1051 { UAC_FU_BASS, "Tone Control - Bass", USB_MIXER_S8, -1 },
1052 { UAC_FU_MID, "Tone Control - Mid", USB_MIXER_S8, -1 },
1053 { UAC_FU_TREBLE, "Tone Control - Treble", USB_MIXER_S8, -1 },
1054 { UAC_FU_GRAPHIC_EQUALIZER, "Graphic Equalizer", USB_MIXER_S8, -1 }, /* FIXME: not implemented yet */
1055 { UAC_FU_AUTOMATIC_GAIN, "Auto Gain Control", USB_MIXER_BOOLEAN, -1 },
1056 { UAC_FU_DELAY, "Delay Control", USB_MIXER_U16, USB_MIXER_U32 },
1057 { UAC_FU_BASS_BOOST, "Bass Boost", USB_MIXER_BOOLEAN, -1 },
1058 { UAC_FU_LOUDNESS, "Loudness", USB_MIXER_BOOLEAN, -1 },
Daniel Mack2e0281d2010-05-31 13:35:42 +02001059 /* UAC2 specific */
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001060 { UAC2_FU_INPUT_GAIN, "Input Gain Control", USB_MIXER_S16, -1 },
1061 { UAC2_FU_INPUT_GAIN_PAD, "Input Gain Pad Control", USB_MIXER_S16, -1 },
1062 { UAC2_FU_PHASE_INVERTER, "Phase Inverter Control", USB_MIXER_BOOLEAN, -1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063};
1064
Takashi Iwai52c3e312019-08-22 08:23:10 +02001065static void usb_mixer_elem_info_free(struct usb_mixer_elem_info *cval)
1066{
1067 kfree(cval);
1068}
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070/* private_free callback */
Chris J Argeseef90452014-11-12 12:07:01 -06001071void snd_usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Takashi Iwai52c3e312019-08-22 08:23:10 +02001073 usb_mixer_elem_info_free(kctl->private_data);
Jesper Juhl4d572772005-05-30 17:30:32 +02001074 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077/*
1078 * interface to ALSA control for feature/mixer units
1079 */
1080
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001081/* volume control quirks */
1082static void volume_control_quirks(struct usb_mixer_elem_info *cval,
1083 struct snd_kcontrol *kctl)
1084{
Takashi Iwai3360b842014-11-18 11:47:04 +01001085 struct snd_usb_audio *chip = cval->head.mixer->chip;
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001086 switch (chip->usb_id) {
Eldad Zackd50ed622012-11-28 23:55:39 +01001087 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
Matt Gruskine9a25e02013-02-09 12:56:35 -05001088 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
Eldad Zackd50ed622012-11-28 23:55:39 +01001089 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
1090 cval->min = 0x0000;
1091 cval->max = 0xffff;
1092 cval->res = 0x00e6;
1093 break;
1094 }
1095 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
1096 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
1097 cval->min = 0x00;
1098 cval->max = 0xff;
1099 break;
1100 }
1101 if (strstr(kctl->id.name, "Effect Return") != NULL) {
1102 cval->min = 0xb706;
1103 cval->max = 0xff7b;
1104 cval->res = 0x0073;
1105 break;
1106 }
1107 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
1108 (strstr(kctl->id.name, "Effect Send") != NULL)) {
1109 cval->min = 0xb5fb; /* -73 dB = 0xb6ff */
1110 cval->max = 0xfcfe;
1111 cval->res = 0x0073;
1112 }
1113 break;
1114
Felix Homannd34bf142012-04-23 20:24:27 +02001115 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
1116 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
1117 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001118 usb_audio_info(chip,
1119 "set quirk for FTU Effect Duration\n");
Felix Homannd34bf142012-04-23 20:24:27 +02001120 cval->min = 0x0000;
1121 cval->max = 0x7f00;
1122 cval->res = 0x0100;
1123 break;
1124 }
1125 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
1126 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001127 usb_audio_info(chip,
1128 "set quirks for FTU Effect Feedback/Volume\n");
Felix Homannd34bf142012-04-23 20:24:27 +02001129 cval->min = 0x00;
1130 cval->max = 0x7f;
1131 break;
1132 }
1133 break;
1134
Federico Cuello21493312018-05-09 00:13:38 +02001135 case USB_ID(0x0d8c, 0x0103):
1136 if (!strcmp(kctl->id.name, "PCM Playback Volume")) {
1137 usb_audio_info(chip,
1138 "set volume quirk for CM102-A+/102S+\n");
1139 cval->min = -256;
1140 }
1141 break;
1142
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001143 case USB_ID(0x0471, 0x0101):
1144 case USB_ID(0x0471, 0x0104):
1145 case USB_ID(0x0471, 0x0105):
1146 case USB_ID(0x0672, 0x1041):
1147 /* quirk for UDA1321/N101.
1148 * note that detection between firmware 2.1.1.7 (N101)
1149 * and later 2.1.1.21 is not very clear from datasheets.
1150 * I hope that the min value is -15360 for newer firmware --jk
1151 */
1152 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
1153 cval->min == -15616) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001154 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001155 "set volume quirk for UDA1321/N101 chip\n");
1156 cval->max = -256;
1157 }
1158 break;
1159
1160 case USB_ID(0x046d, 0x09a4):
1161 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001162 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001163 "set volume quirk for QuickCam E3500\n");
1164 cval->min = 6080;
1165 cval->max = 8768;
1166 cval->res = 192;
1167 }
1168 break;
1169
Takashi Iwaie805ca82014-03-05 12:34:39 +01001170 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001171 case USB_ID(0x046d, 0x0808):
1172 case USB_ID(0x046d, 0x0809):
Jason Lee Cragg64559312015-01-17 12:28:29 -05001173 case USB_ID(0x046d, 0x0819): /* Logitech Webcam C210 */
Takashi Iwai36691e12013-06-17 10:25:02 +02001174 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
Alexey Fisher55c00082011-11-09 11:39:24 +01001175 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
Takashi Iwai11e70642013-06-05 08:35:26 +02001176 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
Maksim A. Boyko140d37d2013-08-10 12:20:02 +04001177 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
Wolfram Sang1ef9f052015-05-29 19:50:56 +09001178 case USB_ID(0x046d, 0x08ca): /* Logitech Quickcam Fusion */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001179 case USB_ID(0x046d, 0x0991):
Con Kolivas82ffb6f2016-12-09 15:15:57 +11001180 case USB_ID(0x046d, 0x09a2): /* QuickCam Communicate Deluxe/S7500 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001181 /* Most audio usb devices lie about volume resolution.
1182 * Most Logitech webcams have res = 384.
Con Kolivas82ffb6f2016-12-09 15:15:57 +11001183 * Probably there is some logitech magic behind this number --fishor
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001184 */
1185 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001186 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001187 "set resolution quirk: cval->res = 384\n");
1188 cval->res = 384;
1189 }
1190 break;
Chris Chiu4020d1c2020-05-26 14:26:13 +08001191 case USB_ID(0x0495, 0x3042): /* ESS Technology Asus USB DAC */
1192 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
1193 strstr(kctl->id.name, "Capture Volume") != NULL) {
1194 cval->min >>= 8;
1195 cval->max = 0;
1196 cval->res = 1;
1197 }
1198 break;
Marco Giunta29664922021-10-18 18:25:52 +02001199 case USB_ID(0x1224, 0x2a25): /* Jieli Technology USB PHY 2.0 */
1200 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1201 usb_audio_info(chip,
1202 "set resolution quirk: cval->res = 16\n");
1203 cval->res = 16;
1204 }
1205 break;
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001206 }
1207}
1208
Takashi Iwaib96681b2021-10-14 15:06:36 +02001209/* forcibly initialize the current mixer value; if GET_CUR fails, set to
1210 * the minimum as default
1211 */
1212static void init_cur_mix_raw(struct usb_mixer_elem_info *cval, int ch, int idx)
1213{
1214 int val, err;
1215
1216 err = snd_usb_get_cur_mix_value(cval, ch, idx, &val);
1217 if (!err)
1218 return;
1219 if (!cval->head.mixer->ignore_ctl_error)
1220 usb_audio_warn(cval->head.mixer->chip,
1221 "%d:%d: failed to get current value for ch %d (%d)\n",
1222 cval->head.id, mixer_ctrl_intf(cval->head.mixer),
1223 ch, err);
1224 snd_usb_set_cur_mix_value(cval, ch, idx, cval->min);
1225}
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227/*
1228 * retrieve the minimum and maximum values for the specified control
1229 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001230static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
1231 int default_min, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
Takashi Iwaib96681b2021-10-14 15:06:36 +02001233 int i, idx;
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 /* for failsafe */
1236 cval->min = default_min;
1237 cval->max = cval->min + 1;
1238 cval->res = 1;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001239 cval->dBmin = cval->dBmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 if (cval->val_type == USB_MIXER_BOOLEAN ||
1242 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1243 cval->initialized = 1;
1244 } else {
1245 int minchn = 0;
1246 if (cval->cmask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 for (i = 0; i < MAX_CHANNELS; i++)
1248 if (cval->cmask & (1 << i)) {
1249 minchn = i + 1;
1250 break;
1251 }
1252 }
Daniel Mackde48c7b2010-02-22 23:49:13 +01001253 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
1254 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Takashi Iwai3360b842014-11-18 11:47:04 +01001255 usb_audio_err(cval->head.mixer->chip,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001256 "%d:%d: cannot get min/max values for control %d (id %d)\n",
Chris Wulff0aef31b2020-03-14 12:54:48 -04001257 cval->head.id, mixer_ctrl_intf(cval->head.mixer),
Takashi Iwai3360b842014-11-18 11:47:04 +01001258 cval->control, cval->head.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return -EINVAL;
1260 }
Daniel Mack6bc170e2014-05-24 10:58:16 +02001261 if (get_ctl_value(cval, UAC_GET_RES,
1262 (cval->control << 8) | minchn,
1263 &cval->res) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 cval->res = 1;
Takashi Iwai85db1cf2021-01-20 22:39:32 +01001265 } else if (cval->head.mixer->protocol == UAC_VERSION_1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 int last_valid_res = cval->res;
1267
1268 while (cval->res > 1) {
Daniel Mack7b1eda22010-03-11 21:13:22 +01001269 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001270 (cval->control << 8) | minchn,
1271 cval->res / 2) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 break;
1273 cval->res /= 2;
1274 }
Daniel Mack6bc170e2014-05-24 10:58:16 +02001275 if (get_ctl_value(cval, UAC_GET_RES,
1276 (cval->control << 8) | minchn, &cval->res) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 cval->res = last_valid_res;
1278 }
1279 if (cval->res == 0)
1280 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +02001281
1282 /* Additional checks for the proper resolution
1283 *
1284 * Some devices report smaller resolutions than actually
1285 * reacting. They don't return errors but simply clip
1286 * to the lower aligned value.
1287 */
1288 if (cval->min + cval->res < cval->max) {
1289 int last_valid_res = cval->res;
1290 int saved, test, check;
Takashi Iwai167beb12019-11-09 19:16:58 +01001291 if (get_cur_mix_raw(cval, minchn, &saved) < 0)
1292 goto no_res_check;
Takashi Iwai14790f12006-03-28 17:58:28 +02001293 for (;;) {
1294 test = saved;
1295 if (test < cval->max)
1296 test += cval->res;
1297 else
1298 test -= cval->res;
1299 if (test < cval->min || test > cval->max ||
Chris J Argeseef90452014-11-12 12:07:01 -06001300 snd_usb_set_cur_mix_value(cval, minchn, 0, test) ||
Takashi Iwai641b4872009-01-15 17:05:24 +01001301 get_cur_mix_raw(cval, minchn, &check)) {
Takashi Iwai14790f12006-03-28 17:58:28 +02001302 cval->res = last_valid_res;
1303 break;
1304 }
1305 if (test == check)
1306 break;
1307 cval->res *= 2;
1308 }
Chris J Argeseef90452014-11-12 12:07:01 -06001309 snd_usb_set_cur_mix_value(cval, minchn, 0, saved);
Takashi Iwai14790f12006-03-28 17:58:28 +02001310 }
1311
Takashi Iwai167beb12019-11-09 19:16:58 +01001312no_res_check:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 cval->initialized = 1;
1314 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001315
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001316 if (kctl)
1317 volume_control_quirks(cval, kctl);
1318
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001319 /* USB descriptions contain the dB scale in 1/256 dB unit
1320 * while ALSA TLV contains in 1/100 dB unit
1321 */
1322 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
1323 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
1324 if (cval->dBmin > cval->dBmax) {
1325 /* something is wrong; assume it's either from/to 0dB */
1326 if (cval->dBmin < 0)
1327 cval->dBmax = 0;
1328 else if (cval->dBmin > 0)
1329 cval->dBmin = 0;
1330 if (cval->dBmin > cval->dBmax) {
1331 /* totally crap, return an error */
1332 return -EINVAL;
1333 }
Takashi Iwai21cba9c2021-02-27 11:57:37 +01001334 } else {
1335 /* if the max volume is too low, it's likely a bogus range;
1336 * here we use -96dB as the threshold
1337 */
1338 if (cval->dBmax <= -9600) {
1339 usb_audio_info(cval->head.mixer->chip,
1340 "%d:%d: bogus dB values (%d/%d), disabling dB reporting\n",
1341 cval->head.id, mixer_ctrl_intf(cval->head.mixer),
1342 cval->dBmin, cval->dBmax);
1343 cval->dBmin = cval->dBmax = 0;
1344 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001345 }
1346
Takashi Iwaib96681b2021-10-14 15:06:36 +02001347 /* initialize all elements */
1348 if (!cval->cmask) {
1349 init_cur_mix_raw(cval, 0, 0);
1350 } else {
1351 idx = 0;
1352 for (i = 0; i < MAX_CHANNELS; i++) {
1353 if (cval->cmask & (1 << i)) {
1354 init_cur_mix_raw(cval, i + 1, idx);
1355 idx++;
1356 }
1357 }
1358 }
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 return 0;
1361}
1362
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001363#define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365/* get a feature/mixer unit info */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001366static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
1367 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001369 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371 if (cval->val_type == USB_MIXER_BOOLEAN ||
1372 cval->val_type == USB_MIXER_INV_BOOLEAN)
1373 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1374 else
1375 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1376 uinfo->count = cval->channels;
1377 if (cval->val_type == USB_MIXER_BOOLEAN ||
1378 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1379 uinfo->value.integer.min = 0;
1380 uinfo->value.integer.max = 1;
1381 } else {
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001382 if (!cval->initialized) {
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001383 get_min_max_with_quirks(cval, 0, kcontrol);
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001384 if (cval->initialized && cval->dBmin >= cval->dBmax) {
1385 kcontrol->vd[0].access &=
1386 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1387 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK);
Takashi Iwai3360b842014-11-18 11:47:04 +01001388 snd_ctl_notify(cval->head.mixer->chip->card,
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001389 SNDRV_CTL_EVENT_MASK_INFO,
1390 &kcontrol->id);
1391 }
1392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +02001394 uinfo->value.integer.max =
Lars-Peter Clausene4d8aef2020-12-23 18:22:22 +01001395 DIV_ROUND_UP(cval->max - cval->min, cval->res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397 return 0;
1398}
1399
1400/* get the current value from feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001401static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol,
1402 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001404 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 int c, cnt, val, err;
1406
Takashi Iwai641b4872009-01-15 17:05:24 +01001407 ucontrol->value.integer.value[0] = cval->min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 if (cval->cmask) {
1409 cnt = 0;
1410 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001411 if (!(cval->cmask & (1 << c)))
1412 continue;
Chris J Argeseef90452014-11-12 12:07:01 -06001413 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001414 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001415 return filter_error(cval, err);
Takashi Iwai641b4872009-01-15 17:05:24 +01001416 val = get_relative_value(cval, val);
1417 ucontrol->value.integer.value[cnt] = val;
1418 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001420 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 } else {
1422 /* master channel */
Chris J Argeseef90452014-11-12 12:07:01 -06001423 err = snd_usb_get_cur_mix_value(cval, 0, 0, &val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001424 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001425 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 val = get_relative_value(cval, val);
1427 ucontrol->value.integer.value[0] = val;
1428 }
1429 return 0;
1430}
1431
1432/* put the current value to feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001433static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
1434 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001436 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 int c, cnt, val, oval, err;
1438 int changed = 0;
1439
1440 if (cval->cmask) {
1441 cnt = 0;
1442 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001443 if (!(cval->cmask & (1 << c)))
1444 continue;
Chris J Argeseef90452014-11-12 12:07:01 -06001445 err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &oval);
Takashi Iwai641b4872009-01-15 17:05:24 +01001446 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001447 return filter_error(cval, err);
Takashi Iwai641b4872009-01-15 17:05:24 +01001448 val = ucontrol->value.integer.value[cnt];
1449 val = get_abs_value(cval, val);
1450 if (oval != val) {
Chris J Argeseef90452014-11-12 12:07:01 -06001451 snd_usb_set_cur_mix_value(cval, c + 1, cnt, val);
Takashi Iwai641b4872009-01-15 17:05:24 +01001452 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001454 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456 } else {
1457 /* master channel */
Chris J Argeseef90452014-11-12 12:07:01 -06001458 err = snd_usb_get_cur_mix_value(cval, 0, 0, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (err < 0)
Takashi Iwai5aeee342014-11-18 11:02:14 +01001460 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 val = ucontrol->value.integer.value[0];
1462 val = get_abs_value(cval, val);
1463 if (val != oval) {
Chris J Argeseef90452014-11-12 12:07:01 -06001464 snd_usb_set_cur_mix_value(cval, 0, 0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 changed = 1;
1466 }
1467 }
1468 return changed;
1469}
1470
Andrew Chant568fa7e2018-03-23 19:25:24 -07001471/* get the boolean value from the master channel of a UAC control */
1472static int mixer_ctl_master_bool_get(struct snd_kcontrol *kcontrol,
1473 struct snd_ctl_elem_value *ucontrol)
Andrew Chant5a222e82018-03-23 19:25:23 -07001474{
1475 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1476 int val, err;
1477
1478 err = snd_usb_get_cur_mix_value(cval, 0, 0, &val);
1479 if (err < 0)
1480 return filter_error(cval, err);
1481 val = (val != 0);
1482 ucontrol->value.integer.value[0] = val;
1483 return 0;
1484}
1485
Kai-Heng Feng69644fc2021-03-26 00:59:12 +08001486static int get_connector_value(struct usb_mixer_elem_info *cval,
1487 char *name, int *val)
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001488{
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001489 struct snd_usb_audio *chip = cval->head.mixer->chip;
Kai-Heng Feng69644fc2021-03-26 00:59:12 +08001490 int idx = 0, validx, ret;
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001491
1492 validx = cval->control << 8 | 0;
1493
1494 ret = snd_usb_lock_shutdown(chip) ? -EIO : 0;
1495 if (ret)
1496 goto error;
1497
Chris Wulff0aef31b2020-03-14 12:54:48 -04001498 idx = mixer_ctrl_intf(cval->head.mixer) | (cval->head.id << 8);
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001499 if (cval->head.mixer->protocol == UAC_VERSION_2) {
1500 struct uac2_connectors_ctl_blk uac2_conn;
1501
1502 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), UAC2_CS_CUR,
1503 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
1504 validx, idx, &uac2_conn, sizeof(uac2_conn));
Kai-Heng Feng69644fc2021-03-26 00:59:12 +08001505 if (val)
1506 *val = !!uac2_conn.bNrChannels;
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001507 } else { /* UAC_VERSION_3 */
1508 struct uac3_insertion_ctl_blk uac3_conn;
1509
1510 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), UAC2_CS_CUR,
1511 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
1512 validx, idx, &uac3_conn, sizeof(uac3_conn));
Kai-Heng Feng69644fc2021-03-26 00:59:12 +08001513 if (val)
1514 *val = !!uac3_conn.bmConInserted;
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001515 }
1516
1517 snd_usb_unlock_shutdown(chip);
1518
1519 if (ret < 0) {
Kai-Heng Feng69644fc2021-03-26 00:59:12 +08001520 if (name && strstr(name, "Speaker")) {
1521 if (val)
1522 *val = 1;
Kai-Heng Fengf8c11eb2020-08-03 22:26:08 +08001523 return 0;
1524 }
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001525error:
1526 usb_audio_err(chip,
1527 "cannot get connectors status: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
1528 UAC_GET_CUR, validx, idx, cval->val_type);
Takashi Iwai48cc4292020-04-12 10:13:28 +02001529 return filter_error(cval, ret);
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001530 }
1531
Kai-Heng Feng69644fc2021-03-26 00:59:12 +08001532 return ret;
1533}
1534
1535/* get the connectors status and report it as boolean type */
1536static int mixer_ctl_connector_get(struct snd_kcontrol *kcontrol,
1537 struct snd_ctl_elem_value *ucontrol)
1538{
1539 struct usb_mixer_elem_info *cval = kcontrol->private_data;
1540 int ret, val;
1541
1542 ret = get_connector_value(cval, kcontrol->id.name, &val);
1543
1544 if (ret < 0)
1545 return ret;
1546
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001547 ucontrol->value.integer.value[0] = val;
1548 return 0;
1549}
1550
Takashi Iwai195727e2020-01-03 09:16:57 +01001551static const struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1553 .name = "", /* will be filled later manually */
1554 .info = mixer_ctl_feature_info,
1555 .get = mixer_ctl_feature_get,
1556 .put = mixer_ctl_feature_put,
1557};
1558
Daniel Mack23caaf12010-03-11 21:13:25 +01001559/* the read-only variant */
Bhumika Goyal8fdaebb2017-04-12 18:38:06 +05301560static const struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
Daniel Mack23caaf12010-03-11 21:13:25 +01001561 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1562 .name = "", /* will be filled later manually */
1563 .info = mixer_ctl_feature_info,
1564 .get = mixer_ctl_feature_get,
1565 .put = NULL,
1566};
1567
Andrew Chant568fa7e2018-03-23 19:25:24 -07001568/*
1569 * A control which shows the boolean value from reading a UAC control on
1570 * the master channel.
1571 */
Takashi Iwai195727e2020-01-03 09:16:57 +01001572static const struct snd_kcontrol_new usb_bool_master_control_ctl_ro = {
Andrew Chant5a222e82018-03-23 19:25:23 -07001573 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1574 .name = "", /* will be filled later manually */
1575 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1576 .info = snd_ctl_boolean_mono_info,
Andrew Chant568fa7e2018-03-23 19:25:24 -07001577 .get = mixer_ctl_master_bool_get,
Andrew Chant5a222e82018-03-23 19:25:23 -07001578 .put = NULL,
1579};
1580
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001581static const struct snd_kcontrol_new usb_connector_ctl_ro = {
1582 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1583 .name = "", /* will be filled later manually */
1584 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1585 .info = snd_ctl_boolean_mono_info,
1586 .get = mixer_ctl_connector_get,
1587 .put = NULL,
1588};
1589
Daniel Mack6bc170e2014-05-24 10:58:16 +02001590/*
1591 * This symbol is exported in order to allow the mixer quirks to
1592 * hook up to the standard feature unit control mechanism
1593 */
Takashi Iwai195727e2020-01-03 09:16:57 +01001594const struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596/*
1597 * build a feature control
1598 */
Takashi Iwai08d1e632009-10-02 14:06:08 +02001599static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
1600{
1601 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
1602}
1603
Daniel Mack6bc170e2014-05-24 10:58:16 +02001604/*
1605 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1606 * rename it to "Headphone". We determine if something is a headphone
1607 * similar to how udev determines form factor.
1608 */
David Henningsson9b4ef972012-11-23 13:48:55 +01001609static void check_no_speaker_on_headset(struct snd_kcontrol *kctl,
1610 struct snd_card *card)
1611{
Colin Ian Kingd1254592021-08-03 13:28:39 +01001612 static const char * const names_to_check[] = {
David Henningsson9b4ef972012-11-23 13:48:55 +01001613 "Headset", "headset", "Headphone", "headphone", NULL};
Colin Ian Kingd1254592021-08-03 13:28:39 +01001614 const char * const *s;
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001615 bool found = false;
David Henningsson9b4ef972012-11-23 13:48:55 +01001616
1617 if (strcmp("Speaker", kctl->id.name))
1618 return;
1619
1620 for (s = names_to_check; *s; s++)
1621 if (strstr(card->shortname, *s)) {
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001622 found = true;
David Henningsson9b4ef972012-11-23 13:48:55 +01001623 break;
1624 }
1625
1626 if (!found)
1627 return;
1628
Joe Perches75b1a8f2021-01-04 09:17:34 -08001629 strscpy(kctl->id.name, "Headphone", sizeof(kctl->id.name));
David Henningsson9b4ef972012-11-23 13:48:55 +01001630}
1631
Takashi Iwaia01df922020-01-05 15:47:26 +01001632static const struct usb_feature_control_info *get_feature_control_info(int control)
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001633{
1634 int i;
1635
1636 for (i = 0; i < ARRAY_SIZE(audio_feature_info); ++i) {
1637 if (audio_feature_info[i].control == control)
1638 return &audio_feature_info[i];
1639 }
1640 return NULL;
1641}
1642
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001643static void __build_feature_ctl(struct usb_mixer_interface *mixer,
1644 const struct usbmix_name_map *imap,
1645 unsigned int ctl_mask, int control,
1646 struct usb_audio_term *iterm,
1647 struct usb_audio_term *oterm,
1648 int unitid, int nameid, int readonly_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
Takashi Iwaia01df922020-01-05 15:47:26 +01001650 const struct usb_feature_control_info *ctl_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 unsigned int len = 0;
1652 int mapped_name = 0;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001653 struct snd_kcontrol *kctl;
1654 struct usb_mixer_elem_info *cval;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001655 const struct usbmix_name_map *map;
Alexey Fisher80aceff2011-03-10 14:53:38 +01001656 unsigned int range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Daniel Mack65f25da2010-05-31 13:35:41 +02001658 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 /* FIXME: not supported yet */
1660 return;
1661 }
1662
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001663 map = find_map(imap, unitid, control);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001664 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return;
1666
Takashi Iwai561b2202005-09-09 14:22:34 +02001667 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001668 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 return;
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001670 snd_usb_mixer_elem_init_std(&cval->head, mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 cval->control = control;
1672 cval->cmask = ctl_mask;
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001673
1674 ctl_info = get_feature_control_info(control);
Colin Ian King62376022018-03-27 15:30:01 +01001675 if (!ctl_info) {
Takashi Iwai52c3e312019-08-22 08:23:10 +02001676 usb_mixer_elem_info_free(cval);
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001677 return;
Colin Ian King62376022018-03-27 15:30:01 +01001678 }
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001679 if (mixer->protocol == UAC_VERSION_1)
Julian Scheelbc18e312015-08-14 16:14:45 +02001680 cval->val_type = ctl_info->type;
1681 else /* UAC_VERSION_2 */
1682 cval->val_type = ctl_info->type_uac2 >= 0 ?
1683 ctl_info->type_uac2 : ctl_info->type;
1684
Daniel Macka6a33252010-05-31 13:35:37 +02001685 if (ctl_mask == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 cval->channels = 1; /* master channel */
Daniel Macka6a33252010-05-31 13:35:37 +02001687 cval->master_readonly = readonly_mask;
1688 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 int i, c = 0;
1690 for (i = 0; i < 16; i++)
1691 if (ctl_mask & (1 << i))
1692 c++;
1693 cval->channels = c;
Daniel Macka6a33252010-05-31 13:35:37 +02001694 cval->ch_readonly = readonly_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 }
1696
Daniel Mack6bc170e2014-05-24 10:58:16 +02001697 /*
1698 * If all channels in the mask are marked read-only, make the control
Chris J Argeseef90452014-11-12 12:07:01 -06001699 * read-only. snd_usb_set_cur_mix_value() will check the mask again and won't
Daniel Mack6bc170e2014-05-24 10:58:16 +02001700 * issue write commands to read-only channels.
1701 */
Daniel Macka6a33252010-05-31 13:35:37 +02001702 if (cval->channels == readonly_mask)
Daniel Mack23caaf12010-03-11 21:13:25 +01001703 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1704 else
1705 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1706
Daniel Mack6bc170e2014-05-24 10:58:16 +02001707 if (!kctl) {
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001708 usb_audio_err(mixer->chip, "cannot malloc kcontrol\n");
Takashi Iwai52c3e312019-08-22 08:23:10 +02001709 usb_mixer_elem_info_free(cval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 return;
1711 }
Chris J Argeseef90452014-11-12 12:07:01 -06001712 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001714 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 mapped_name = len != 0;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001716 if (!len && nameid)
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001717 len = snd_usb_copy_string_desc(mixer->chip, nameid,
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001718 kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720 switch (control) {
Daniel Mack65f25da2010-05-31 13:35:41 +02001721 case UAC_FU_MUTE:
1722 case UAC_FU_VOLUME:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001723 /*
1724 * determine the control name. the rule is:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 * - if a name id is given in descriptor, use it.
1726 * - if the connected input can be determined, then use the name
1727 * of terminal type.
1728 * - if the connected output can be determined, use it.
1729 * - otherwise, anonymous name.
1730 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001731 if (!len) {
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001732 if (iterm)
1733 len = get_term_name(mixer->chip, iterm,
1734 kctl->id.name,
1735 sizeof(kctl->id.name), 1);
1736 if (!len && oterm)
1737 len = get_term_name(mixer->chip, oterm,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001738 kctl->id.name,
1739 sizeof(kctl->id.name), 1);
1740 if (!len)
Daniel Mack49fd46d2014-10-19 09:11:25 +02001741 snprintf(kctl->id.name, sizeof(kctl->id.name),
1742 "Feature %d", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
David Henningsson9b4ef972012-11-23 13:48:55 +01001744
1745 if (!mapped_name)
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001746 check_no_speaker_on_headset(kctl, mixer->chip->card);
David Henningsson9b4ef972012-11-23 13:48:55 +01001747
Daniel Mack6bc170e2014-05-24 10:58:16 +02001748 /*
1749 * determine the stream direction:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 * if the connected output is USB stream, then it's likely a
1751 * capture stream. otherwise it should be playback (hopefully :)
1752 */
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001753 if (!mapped_name && oterm && !(oterm->type >> 16)) {
1754 if ((oterm->type & 0xff00) == 0x0100)
Daniel Mack49fd46d2014-10-19 09:11:25 +02001755 append_ctl_name(kctl, " Capture");
Daniel Mack6bc170e2014-05-24 10:58:16 +02001756 else
Daniel Mack49fd46d2014-10-19 09:11:25 +02001757 append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 }
Daniel Mack65f25da2010-05-31 13:35:41 +02001759 append_ctl_name(kctl, control == UAC_FU_MUTE ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001760 " Switch" : " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 default:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001763 if (!len)
Joe Perches75b1a8f2021-01-04 09:17:34 -08001764 strscpy(kctl->id.name, audio_feature_info[control-1].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 sizeof(kctl->id.name));
1766 break;
1767 }
1768
Takashi Iwaie1825342012-05-14 17:11:06 +02001769 /* get min/max values */
1770 get_min_max_with_quirks(cval, 0, kctl);
1771
Takashi Iwaie9a0ef02020-02-14 15:49:28 +01001772 /* skip a bogus volume range */
1773 if (cval->max <= cval->min) {
1774 usb_audio_dbg(mixer->chip,
1775 "[%d] FU [%s] skipped due to invalid volume\n",
1776 cval->head.id, kctl->id.name);
1777 snd_ctl_free_one(kctl);
1778 return;
1779 }
1780
1781
Takashi Iwaie1825342012-05-14 17:11:06 +02001782 if (control == UAC_FU_VOLUME) {
1783 check_mapped_dB(map, cval);
1784 if (cval->dBmin < cval->dBmax || !cval->initialized) {
1785 kctl->tlv.c = snd_usb_mixer_vol_tlv;
1786 kctl->vd[0].access |=
1787 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1788 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1789 }
1790 }
1791
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001792 snd_usb_mixer_fu_apply_quirk(mixer, cval, unitid, kctl);
Anssi Hannula42e31212015-12-13 20:49:58 +02001793
Alexey Fisher80aceff2011-03-10 14:53:38 +01001794 range = (cval->max - cval->min) / cval->res;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001795 /*
1796 * Are there devices with volume range more than 255? I use a bit more
Alexey Fisher80aceff2011-03-10 14:53:38 +01001797 * to be sure. 384 is a resolution magic number found on Logitech
1798 * devices. It will definitively catch all buggy Logitech devices.
1799 */
1800 if (range > 384) {
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001801 usb_audio_warn(mixer->chip,
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001802 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
Daniel Mack6bc170e2014-05-24 10:58:16 +02001803 range);
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001804 usb_audio_warn(mixer->chip,
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001805 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
Takashi Iwai3360b842014-11-18 11:47:04 +01001806 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001807 cval->min, cval->max, cval->res);
Alexey Fisher80aceff2011-03-10 14:53:38 +01001808 }
1809
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001810 usb_audio_dbg(mixer->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01001811 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001812 cval->min, cval->max, cval->res);
Takashi Iwai3360b842014-11-18 11:47:04 +01001813 snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001816static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
1817 unsigned int ctl_mask, int control,
1818 struct usb_audio_term *iterm, int unitid,
1819 int readonly_mask)
1820{
1821 struct uac_feature_unit_descriptor *desc = raw_desc;
1822 int nameid = uac_feature_unit_iFeature(desc);
1823
1824 __build_feature_ctl(state->mixer, state->map, ctl_mask, control,
1825 iterm, &state->oterm, unitid, nameid, readonly_mask);
1826}
1827
1828static void build_feature_ctl_badd(struct usb_mixer_interface *mixer,
1829 unsigned int ctl_mask, int control, int unitid,
1830 const struct usbmix_name_map *badd_map)
1831{
1832 __build_feature_ctl(mixer, badd_map, ctl_mask, control,
1833 NULL, NULL, unitid, 0, 0);
1834}
1835
Jorge Sanjuan167e1fb2018-06-14 15:05:56 +01001836static void get_connector_control_name(struct usb_mixer_interface *mixer,
Andrew Chant5a222e82018-03-23 19:25:23 -07001837 struct usb_audio_term *term,
1838 bool is_input, char *name, int name_size)
1839{
Jorge Sanjuan167e1fb2018-06-14 15:05:56 +01001840 int name_len = get_term_name(mixer->chip, term, name, name_size, 0);
Andrew Chant5a222e82018-03-23 19:25:23 -07001841
1842 if (name_len == 0)
Joe Perches75b1a8f2021-01-04 09:17:34 -08001843 strscpy(name, "Unknown", name_size);
Andrew Chant5a222e82018-03-23 19:25:23 -07001844
1845 /*
1846 * sound/core/ctljack.c has a convention of naming jack controls
1847 * by ending in " Jack". Make it slightly more useful by
1848 * indicating Input or Output after the terminal name.
1849 */
1850 if (is_input)
1851 strlcat(name, " - Input Jack", name_size);
1852 else
1853 strlcat(name, " - Output Jack", name_size);
1854}
1855
Takashi Iwai8dde7232021-07-29 20:51:26 +02001856/* get connector value to "wake up" the USB audio */
1857static int connector_mixer_resume(struct usb_mixer_elem_list *list)
1858{
1859 struct usb_mixer_elem_info *cval = mixer_elem_list_to_info(list);
1860
1861 get_connector_value(cval, NULL, NULL);
1862 return 0;
1863}
1864
Andrew Chant5a222e82018-03-23 19:25:23 -07001865/* Build a mixer control for a UAC connector control (jack-detect) */
Jorge Sanjuan167e1fb2018-06-14 15:05:56 +01001866static void build_connector_control(struct usb_mixer_interface *mixer,
Takashi Iwai934b9652020-04-12 10:13:31 +02001867 const struct usbmix_name_map *imap,
Andrew Chant5a222e82018-03-23 19:25:23 -07001868 struct usb_audio_term *term, bool is_input)
1869{
1870 struct snd_kcontrol *kctl;
1871 struct usb_mixer_elem_info *cval;
Takashi Iwaia43c1c42020-04-20 08:20:36 +02001872 const struct usbmix_name_map *map;
Andrew Chant5a222e82018-03-23 19:25:23 -07001873
Takashi Iwaia43c1c42020-04-20 08:20:36 +02001874 map = find_map(imap, term->id, 0);
1875 if (check_ignored_ctl(map))
Takashi Iwai934b9652020-04-12 10:13:31 +02001876 return;
1877
Andrew Chant5a222e82018-03-23 19:25:23 -07001878 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1879 if (!cval)
1880 return;
Jorge Sanjuan167e1fb2018-06-14 15:05:56 +01001881 snd_usb_mixer_elem_init_std(&cval->head, mixer, term->id);
Takashi Iwai8dde7232021-07-29 20:51:26 +02001882
1883 /* set up a specific resume callback */
1884 cval->head.resume = connector_mixer_resume;
1885
Andrew Chant568fa7e2018-03-23 19:25:24 -07001886 /*
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001887 * UAC2: The first byte from reading the UAC2_TE_CONNECTOR control returns the
1888 * number of channels connected.
1889 *
1890 * UAC3: The first byte specifies size of bitmap for the inserted controls. The
1891 * following byte(s) specifies which connectors are inserted.
1892 *
1893 * This boolean ctl will simply report if any channels are connected
1894 * or not.
Andrew Chant568fa7e2018-03-23 19:25:24 -07001895 */
Jorge Sanjuan167e1fb2018-06-14 15:05:56 +01001896 if (mixer->protocol == UAC_VERSION_2)
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001897 cval->control = UAC2_TE_CONNECTOR;
1898 else /* UAC_VERSION_3 */
1899 cval->control = UAC3_TE_INSERTION;
1900
Andrew Chant5a222e82018-03-23 19:25:23 -07001901 cval->val_type = USB_MIXER_BOOLEAN;
1902 cval->channels = 1; /* report true if any channel is connected */
1903 cval->min = 0;
1904 cval->max = 1;
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01001905 kctl = snd_ctl_new1(&usb_connector_ctl_ro, cval);
Andrew Chant5a222e82018-03-23 19:25:23 -07001906 if (!kctl) {
Jorge Sanjuan167e1fb2018-06-14 15:05:56 +01001907 usb_audio_err(mixer->chip, "cannot malloc kcontrol\n");
Takashi Iwai52c3e312019-08-22 08:23:10 +02001908 usb_mixer_elem_info_free(cval);
Andrew Chant5a222e82018-03-23 19:25:23 -07001909 return;
1910 }
Takashi Iwaia43c1c42020-04-20 08:20:36 +02001911
1912 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name)))
1913 strlcat(kctl->id.name, " Jack", sizeof(kctl->id.name));
1914 else
1915 get_connector_control_name(mixer, term, is_input, kctl->id.name,
1916 sizeof(kctl->id.name));
Andrew Chant5a222e82018-03-23 19:25:23 -07001917 kctl->private_free = snd_usb_mixer_elem_free;
1918 snd_usb_mixer_add_control(&cval->head, kctl);
1919}
1920
Daniel Mackcddaafb2016-04-09 11:21:46 +02001921static int parse_clock_source_unit(struct mixer_build *state, int unitid,
1922 void *_ftr)
1923{
1924 struct uac_clock_source_descriptor *hdr = _ftr;
1925 struct usb_mixer_elem_info *cval;
1926 struct snd_kcontrol *kctl;
1927 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
1928 int ret;
1929
1930 if (state->mixer->protocol != UAC_VERSION_2)
1931 return -EINVAL;
1932
Daniel Mackcddaafb2016-04-09 11:21:46 +02001933 /*
1934 * The only property of this unit we are interested in is the
1935 * clock source validity. If that isn't readable, just bail out.
1936 */
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02001937 if (!uac_v2v3_control_is_readable(hdr->bmControls,
Andrew Chant21e9b3e2018-03-22 14:39:55 -07001938 UAC2_CS_CONTROL_CLOCK_VALID))
Daniel Mackcddaafb2016-04-09 11:21:46 +02001939 return 0;
1940
1941 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
1942 if (!cval)
1943 return -ENOMEM;
1944
1945 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, hdr->bClockID);
1946
1947 cval->min = 0;
1948 cval->max = 1;
1949 cval->channels = 1;
1950 cval->val_type = USB_MIXER_BOOLEAN;
1951 cval->control = UAC2_CS_CONTROL_CLOCK_VALID;
1952
Andrew Chant568fa7e2018-03-23 19:25:24 -07001953 cval->master_readonly = 1;
1954 /* From UAC2 5.2.5.1.2 "Only the get request is supported." */
1955 kctl = snd_ctl_new1(&usb_bool_master_control_ctl_ro, cval);
Daniel Mackcddaafb2016-04-09 11:21:46 +02001956
1957 if (!kctl) {
Takashi Iwai52c3e312019-08-22 08:23:10 +02001958 usb_mixer_elem_info_free(cval);
Daniel Mackcddaafb2016-04-09 11:21:46 +02001959 return -ENOMEM;
1960 }
1961
1962 kctl->private_free = snd_usb_mixer_elem_free;
Ruslan Bilovoleccfc1b2018-05-04 04:24:02 +03001963 ret = snd_usb_copy_string_desc(state->chip, hdr->iClockSource,
Daniel Mackcddaafb2016-04-09 11:21:46 +02001964 name, sizeof(name));
1965 if (ret > 0)
1966 snprintf(kctl->id.name, sizeof(kctl->id.name),
1967 "%s Validity", name);
1968 else
1969 snprintf(kctl->id.name, sizeof(kctl->id.name),
1970 "Clock Source %d Validity", hdr->bClockID);
1971
1972 return snd_usb_mixer_add_control(&cval->head, kctl);
1973}
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975/*
1976 * parse a feature unit
1977 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001978 * most of controls are defined here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001980static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
1981 void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
1983 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001984 struct usb_audio_term iterm;
YueHaibing36c346e2019-01-09 02:20:16 +00001985 unsigned int master_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001987 struct uac_feature_unit_descriptor *hdr = _ftr;
1988 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Daniel Mack23caaf12010-03-11 21:13:25 +01001990 if (state->mixer->protocol == UAC_VERSION_1) {
1991 csize = hdr->bControlSize;
1992 channels = (hdr->bLength - 7) / csize - 1;
1993 bmaControls = hdr->bmaControls;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02001994 } else if (state->mixer->protocol == UAC_VERSION_2) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001995 struct uac2_feature_unit_descriptor *ftr = _ftr;
1996 csize = 4;
Daniel Macke8d0fee2010-05-27 20:15:14 +02001997 channels = (hdr->bLength - 6) / 4 - 1;
Daniel Mack23caaf12010-03-11 21:13:25 +01001998 bmaControls = ftr->bmaControls;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02001999 } else { /* UAC_VERSION_3 */
2000 struct uac3_feature_unit_descriptor *ftr = _ftr;
2001
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002002 csize = 4;
2003 channels = (ftr->bLength - 7) / 4 - 1;
2004 bmaControls = ftr->bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006
2007 /* parse the source unit */
Takashi Iwaif25ecf82018-05-27 15:18:22 +02002008 err = parse_audio_unit(state, hdr->bSourceID);
2009 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return err;
2011
2012 /* determine the input source type and name */
Daniel Mack4d7b86c2013-03-19 21:09:24 +01002013 err = check_input_term(state, hdr->bSourceID, &iterm);
2014 if (err < 0)
2015 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Daniel Mack23caaf12010-03-11 21:13:25 +01002017 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01002018 /* master configuration quirks */
2019 switch (state->chip->usb_id) {
2020 case USB_ID(0x08bb, 0x2702):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002021 usb_audio_info(state->chip,
2022 "usbmixer: master volume quirk for PCM2702 chip\n");
Javier Kohen0c3cee52009-11-17 15:36:13 +01002023 /* disable non-functional volume control */
Daniel Mack65f25da2010-05-31 13:35:41 +02002024 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
Javier Kohen0c3cee52009-11-17 15:36:13 +01002025 break;
David Henningssonc1051432012-09-20 10:20:41 +02002026 case USB_ID(0x1130, 0xf211):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002027 usb_audio_info(state->chip,
2028 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
David Henningssonc1051432012-09-20 10:20:41 +02002029 /* disable non-functional volume control */
2030 channels = 0;
2031 break;
2032
Javier Kohen0c3cee52009-11-17 15:36:13 +01002033 }
Daniel Mack23caaf12010-03-11 21:13:25 +01002034
2035 if (state->mixer->protocol == UAC_VERSION_1) {
2036 /* check all control types */
2037 for (i = 0; i < 10; i++) {
2038 unsigned int ch_bits = 0;
Andrew Chant21e9b3e2018-03-22 14:39:55 -07002039 int control = audio_feature_info[i].control;
2040
Daniel Mack23caaf12010-03-11 21:13:25 +01002041 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02002042 unsigned int mask;
2043
2044 mask = snd_usb_combine_bytes(bmaControls +
2045 csize * (j+1), csize);
Daniel Mack23caaf12010-03-11 21:13:25 +01002046 if (mask & (1 << i))
2047 ch_bits |= (1 << j);
2048 }
2049 /* audio class v1 controls are never read-only */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002050
2051 /*
2052 * The first channel must be set
2053 * (for ease of programming).
2054 */
2055 if (ch_bits & 1)
Andrew Chant21e9b3e2018-03-22 14:39:55 -07002056 build_feature_ctl(state, _ftr, ch_bits, control,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002057 &iterm, unitid, 0);
Daniel Mack23caaf12010-03-11 21:13:25 +01002058 if (master_bits & (1 << i))
Andrew Chant21e9b3e2018-03-22 14:39:55 -07002059 build_feature_ctl(state, _ftr, 0, control,
2060 &iterm, unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002062 } else { /* UAC_VERSION_2/3 */
Takashi Iwaid09c06c2011-10-13 08:19:09 +02002063 for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002064 unsigned int ch_bits = 0;
2065 unsigned int ch_read_only = 0;
Andrew Chant21e9b3e2018-03-22 14:39:55 -07002066 int control = audio_feature_info[i].control;
Daniel Mack23caaf12010-03-11 21:13:25 +01002067
2068 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02002069 unsigned int mask;
2070
2071 mask = snd_usb_combine_bytes(bmaControls +
2072 csize * (j+1), csize);
Andrew Chant21e9b3e2018-03-22 14:39:55 -07002073 if (uac_v2v3_control_is_readable(mask, control)) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002074 ch_bits |= (1 << j);
Andrew Chant21e9b3e2018-03-22 14:39:55 -07002075 if (!uac_v2v3_control_is_writeable(mask, control))
Daniel Mack23caaf12010-03-11 21:13:25 +01002076 ch_read_only |= (1 << j);
2077 }
2078 }
2079
Daniel Mack6bc170e2014-05-24 10:58:16 +02002080 /*
2081 * NOTE: build_feature_ctl() will mark the control
2082 * read-only if all channels are marked read-only in
2083 * the descriptors. Otherwise, the control will be
2084 * reported as writeable, but the driver will not
2085 * actually issue a write command for read-only
2086 * channels.
2087 */
2088
2089 /*
2090 * The first channel must be set
2091 * (for ease of programming).
2092 */
2093 if (ch_bits & 1)
Andrew Chant21e9b3e2018-03-22 14:39:55 -07002094 build_feature_ctl(state, _ftr, ch_bits, control,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002095 &iterm, unitid, ch_read_only);
Andrew Chant21e9b3e2018-03-22 14:39:55 -07002096 if (uac_v2v3_control_is_readable(master_bits, control))
Takashi Iwai2de841e2018-04-23 08:59:36 +02002097 build_feature_ctl(state, _ftr, 0, control,
2098 &iterm, unitid,
Andrew Chant21e9b3e2018-03-22 14:39:55 -07002099 !uac_v2v3_control_is_writeable(master_bits,
2100 control));
Daniel Mack23caaf12010-03-11 21:13:25 +01002101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 }
2103
2104 return 0;
2105}
2106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107/*
2108 * Mixer Unit
2109 */
2110
Takashi Iwaif9f0e9e2019-08-20 21:43:42 +02002111/* check whether the given in/out overflows bmMixerControls matrix */
2112static bool mixer_bitmap_overflow(struct uac_mixer_unit_descriptor *desc,
2113 int protocol, int num_ins, int num_outs)
2114{
2115 u8 *hdr = (u8 *)desc;
2116 u8 *c = uac_mixer_unit_bmControls(desc, protocol);
2117 size_t rest; /* remaining bytes after bmMixerControls */
2118
2119 switch (protocol) {
2120 case UAC_VERSION_1:
2121 default:
2122 rest = 1; /* iMixer */
2123 break;
2124 case UAC_VERSION_2:
2125 rest = 2; /* bmControls + iMixer */
2126 break;
2127 case UAC_VERSION_3:
2128 rest = 6; /* bmControls + wMixerDescrStr */
2129 break;
2130 }
2131
2132 /* overflow? */
2133 return c + (num_ins * num_outs + 7) / 8 + rest > hdr + hdr[0];
2134}
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136/*
2137 * build a mixer unit control
2138 *
2139 * the callbacks are identical with feature unit.
2140 * input channel number (zero based) is given in control field instead.
2141 */
Daniel Mack99fc8642010-03-11 21:13:24 +01002142static void build_mixer_unit_ctl(struct mixer_build *state,
2143 struct uac_mixer_unit_descriptor *desc,
Jorge Sanjuan6cfd8392018-05-11 16:25:34 +01002144 int in_pin, int in_ch, int num_outs,
2145 int unitid, struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002147 struct usb_mixer_elem_info *cval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002149 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002150 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Ruslan Bilovol17156f22018-05-04 04:24:04 +03002152 map = find_map(state->map, unitid, 0);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002153 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 return;
2155
Takashi Iwai561b2202005-09-09 14:22:34 +02002156 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002157 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 return;
2159
Takashi Iwai3360b842014-11-18 11:47:04 +01002160 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 cval->control = in_ch + 1; /* based on 1 */
2162 cval->val_type = USB_MIXER_S16;
2163 for (i = 0; i < num_outs; i++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02002164 __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol);
2165
2166 if (check_matrix_bitmap(c, in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 cval->cmask |= (1 << i);
2168 cval->channels++;
2169 }
2170 }
2171
2172 /* get min/max values */
2173 get_min_max(cval, 0);
2174
2175 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002176 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002177 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Takashi Iwai52c3e312019-08-22 08:23:10 +02002178 usb_mixer_elem_info_free(cval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 return;
2180 }
Chris J Argeseef90452014-11-12 12:07:01 -06002181 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002183 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02002184 if (!len)
Ruslan Bilovoleccfc1b2018-05-04 04:24:02 +03002185 len = get_term_name(state->chip, iterm, kctl->id.name,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002186 sizeof(kctl->id.name), 0);
2187 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02002189 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002191 usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01002192 cval->head.id, kctl->id.name, cval->channels, cval->min, cval->max);
2193 snd_usb_mixer_add_control(&cval->head, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194}
2195
Andrew Chant5a222e82018-03-23 19:25:23 -07002196static int parse_audio_input_terminal(struct mixer_build *state, int unitid,
2197 void *raw_desc)
2198{
2199 struct usb_audio_term iterm;
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01002200 unsigned int control, bmctls, term_id;
Andrew Chant5a222e82018-03-23 19:25:23 -07002201
Andrew Chant5a222e82018-03-23 19:25:23 -07002202 if (state->mixer->protocol == UAC_VERSION_2) {
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01002203 struct uac2_input_terminal_descriptor *d_v2 = raw_desc;
2204 control = UAC2_TE_CONNECTOR;
2205 term_id = d_v2->bTerminalID;
2206 bmctls = le16_to_cpu(d_v2->bmControls);
2207 } else if (state->mixer->protocol == UAC_VERSION_3) {
2208 struct uac3_input_terminal_descriptor *d_v3 = raw_desc;
2209 control = UAC3_TE_INSERTION;
2210 term_id = d_v3->bTerminalID;
2211 bmctls = le32_to_cpu(d_v3->bmControls);
2212 } else {
2213 return 0; /* UAC1. No Insertion control */
Andrew Chant5a222e82018-03-23 19:25:23 -07002214 }
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01002215
2216 check_input_term(state, term_id, &iterm);
2217
2218 /* Check for jack detection. */
Takashi Iwai7dc3c5a2020-04-12 10:13:30 +02002219 if ((iterm.type & 0xff00) != 0x0100 &&
2220 uac_v2v3_control_is_readable(bmctls, control))
Takashi Iwai934b9652020-04-12 10:13:31 +02002221 build_connector_control(state->mixer, state->map, &iterm, true);
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01002222
Andrew Chant5a222e82018-03-23 19:25:23 -07002223 return 0;
2224}
2225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226/*
2227 * parse a mixer unit
2228 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002229static int parse_audio_mixer_unit(struct mixer_build *state, int unitid,
2230 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
Daniel Mack99fc8642010-03-11 21:13:24 +01002232 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002233 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 int input_pins, num_ins, num_outs;
2235 int pin, ich, err;
2236
Jorge Sanjuan6cfd8392018-05-11 16:25:34 +01002237 err = uac_mixer_unit_get_channels(state, desc);
2238 if (err < 0) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02002239 usb_audio_err(state->chip,
2240 "invalid MIXER UNIT descriptor %d\n",
2241 unitid);
Jorge Sanjuan6cfd8392018-05-11 16:25:34 +01002242 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Jorge Sanjuan6cfd8392018-05-11 16:25:34 +01002245 num_outs = err;
2246 input_pins = desc->bNrInPins;
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 num_ins = 0;
2249 ich = 0;
2250 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01002251 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 if (err < 0)
Mark Hills284a8dd2012-04-14 17:19:23 +01002253 continue;
Clemens Ladischea114fc2015-06-03 11:36:51 +02002254 /* no bmControls field (e.g. Maya44) -> ignore */
Takashi Iwai0bfe5e42018-12-19 14:04:47 +01002255 if (!num_outs)
Clemens Ladischea114fc2015-06-03 11:36:51 +02002256 continue;
Daniel Mack99fc8642010-03-11 21:13:24 +01002257 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 if (err < 0)
2259 return err;
2260 num_ins += iterm.channels;
Takashi Iwaif9f0e9e2019-08-20 21:43:42 +02002261 if (mixer_bitmap_overflow(desc, state->mixer->protocol,
2262 num_ins, num_outs))
2263 break;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002264 for (; ich < num_ins; ich++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 int och, ich_has_controls = 0;
2266
Daniel Mack6bc170e2014-05-24 10:58:16 +02002267 for (och = 0; och < num_outs; och++) {
2268 __u8 *c = uac_mixer_unit_bmControls(desc,
2269 state->mixer->protocol);
2270
2271 if (check_matrix_bitmap(c, ich, och, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 ich_has_controls = 1;
2273 break;
2274 }
2275 }
2276 if (ich_has_controls)
Jorge Sanjuan6cfd8392018-05-11 16:25:34 +01002277 build_mixer_unit_ctl(state, desc, pin, ich, num_outs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 unitid, &iterm);
2279 }
2280 }
2281 return 0;
2282}
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284/*
2285 * Processing Unit / Extension Unit
2286 */
2287
2288/* get callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002289static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol,
2290 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002292 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 int err, val;
2294
2295 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Takashi Iwai5aeee342014-11-18 11:02:14 +01002296 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 ucontrol->value.integer.value[0] = cval->min;
Takashi Iwai5aeee342014-11-18 11:02:14 +01002298 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 val = get_relative_value(cval, val);
2301 ucontrol->value.integer.value[0] = val;
2302 return 0;
2303}
2304
2305/* put callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002306static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
2307 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002309 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 int val, oval, err;
2311
2312 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Takashi Iwai5aeee342014-11-18 11:02:14 +01002313 if (err < 0)
2314 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 val = ucontrol->value.integer.value[0];
2316 val = get_abs_value(cval, val);
2317 if (val != oval) {
2318 set_cur_ctl_value(cval, cval->control << 8, val);
2319 return 1;
2320 }
2321 return 0;
2322}
2323
2324/* alsa control interface for processing/extension unit */
Bhumika Goyal8fdaebb2017-04-12 18:38:06 +05302325static const struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2327 .name = "", /* will be filled later */
2328 .info = mixer_ctl_feature_info,
2329 .get = mixer_ctl_procunit_get,
2330 .put = mixer_ctl_procunit_put,
2331};
2332
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333/*
2334 * predefined data for processing units
2335 */
2336struct procunit_value_info {
2337 int control;
Takashi Iwaia01df922020-01-05 15:47:26 +01002338 const char *suffix;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 int val_type;
2340 int min_value;
2341};
2342
2343struct procunit_info {
2344 int type;
2345 char *name;
Takashi Iwaia01df922020-01-05 15:47:26 +01002346 const struct procunit_value_info *values;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347};
2348
Takashi Iwaia01df922020-01-05 15:47:26 +01002349static const struct procunit_value_info undefined_proc_info[] = {
Jorge Sanjuan0f292f02018-07-11 13:37:53 +01002350 { 0x00, "Control Undefined", 0 },
2351 { 0 }
2352};
2353
Takashi Iwaia01df922020-01-05 15:47:26 +01002354static const struct procunit_value_info updown_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002355 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2356 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 { 0 }
2358};
Takashi Iwaia01df922020-01-05 15:47:26 +01002359static const struct procunit_value_info prologic_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002360 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2361 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 { 0 }
2363};
Takashi Iwaia01df922020-01-05 15:47:26 +01002364static const struct procunit_value_info threed_enh_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002365 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2366 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 { 0 }
2368};
Takashi Iwaia01df922020-01-05 15:47:26 +01002369static const struct procunit_value_info reverb_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002370 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2371 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
2372 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
2373 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 { 0 }
2375};
Takashi Iwaia01df922020-01-05 15:47:26 +01002376static const struct procunit_value_info chorus_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002377 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2378 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
2379 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
2380 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 { 0 }
2382};
Takashi Iwaia01df922020-01-05 15:47:26 +01002383static const struct procunit_value_info dcr_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002384 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
2385 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
2386 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
2387 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
2388 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
2389 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 { 0 }
2391};
2392
Takashi Iwaia01df922020-01-05 15:47:26 +01002393static const struct procunit_info procunits[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02002394 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
2395 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
2396 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
2397 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
2398 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
2399 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 { 0 },
2401};
Jorge Sanjuan0f292f02018-07-11 13:37:53 +01002402
Takashi Iwaia01df922020-01-05 15:47:26 +01002403static const struct procunit_value_info uac3_updown_proc_info[] = {
Jorge Sanjuan0f292f02018-07-11 13:37:53 +01002404 { UAC3_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
2405 { 0 }
2406};
Takashi Iwaia01df922020-01-05 15:47:26 +01002407static const struct procunit_value_info uac3_stereo_ext_proc_info[] = {
Jorge Sanjuan0f292f02018-07-11 13:37:53 +01002408 { UAC3_EXT_WIDTH_CONTROL, "Width Control", USB_MIXER_U8 },
2409 { 0 }
2410};
2411
Takashi Iwaia01df922020-01-05 15:47:26 +01002412static const struct procunit_info uac3_procunits[] = {
Jorge Sanjuan0f292f02018-07-11 13:37:53 +01002413 { UAC3_PROCESS_UP_DOWNMIX, "Up Down", uac3_updown_proc_info },
2414 { UAC3_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", uac3_stereo_ext_proc_info },
2415 { UAC3_PROCESS_MULTI_FUNCTION, "Multi-Function", undefined_proc_info },
2416 { 0 },
2417};
2418
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002419/*
2420 * predefined data for extension units
2421 */
Takashi Iwaia01df922020-01-05 15:47:26 +01002422static const struct procunit_value_info clock_rate_xu_info[] = {
Daniel Macke213e9c2010-05-11 18:13:50 +02002423 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
2424 { 0 }
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002425};
Takashi Iwaia01df922020-01-05 15:47:26 +01002426static const struct procunit_value_info clock_source_xu_info[] = {
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002427 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
2428 { 0 }
2429};
Takashi Iwaia01df922020-01-05 15:47:26 +01002430static const struct procunit_value_info spdif_format_xu_info[] = {
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002431 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
2432 { 0 }
2433};
Takashi Iwaia01df922020-01-05 15:47:26 +01002434static const struct procunit_value_info soft_limit_xu_info[] = {
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002435 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
2436 { 0 }
2437};
Takashi Iwaia01df922020-01-05 15:47:26 +01002438static const struct procunit_info extunits[] = {
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002439 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
2440 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
2441 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
2442 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
2443 { 0 }
2444};
Daniel Mack6bc170e2014-05-24 10:58:16 +02002445
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446/*
2447 * build a processing/extension unit
2448 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002449static int build_audio_procunit(struct mixer_build *state, int unitid,
Takashi Iwaia01df922020-01-05 15:47:26 +01002450 void *raw_desc, const struct procunit_info *list,
Takashi Iwaica95c7b2019-07-04 16:31:12 +02002451 bool extension_unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452{
Daniel Mack99fc8642010-03-11 21:13:24 +01002453 struct uac_processing_unit_descriptor *desc = raw_desc;
Takashi Iwaif4351a12018-12-19 12:36:27 +01002454 int num_ins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002455 struct usb_mixer_elem_info *cval;
2456 struct snd_kcontrol *kctl;
Tom Yand8d0db72020-08-18 01:20:11 +08002457 int i, err, nameid, type, len, val;
Takashi Iwaia01df922020-01-05 15:47:26 +01002458 const struct procunit_info *info;
2459 const struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002460 const struct usbmix_name_map *map;
Takashi Iwaia01df922020-01-05 15:47:26 +01002461 static const struct procunit_value_info default_value_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 { 0x01, "Switch", USB_MIXER_BOOLEAN },
2463 { 0 }
2464 };
Takashi Iwaia01df922020-01-05 15:47:26 +01002465 static const struct procunit_info default_info = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 0, NULL, default_value_info
2467 };
Takashi Iwaica95c7b2019-07-04 16:31:12 +02002468 const char *name = extension_unit ?
2469 "Extension Unit" : "Processing Unit";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Takashi Iwaif4351a12018-12-19 12:36:27 +01002471 num_ins = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 for (i = 0; i < num_ins; i++) {
Takashi Iwaif25ecf82018-05-27 15:18:22 +02002473 err = parse_audio_unit(state, desc->baSourceID[i]);
2474 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 return err;
2476 }
2477
Daniel Mack99fc8642010-03-11 21:13:24 +01002478 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 for (info = list; info && info->type; info++)
2480 if (info->type == type)
2481 break;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002482 if (!info || !info->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 info = &default_info;
2484
2485 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002486 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01002487
Jorge Sanjuan4e887af2018-07-11 13:37:52 +01002488 if (state->mixer->protocol == UAC_VERSION_1) {
2489 if (!(controls[valinfo->control / 8] &
2490 (1 << ((valinfo->control % 8) - 1))))
2491 continue;
2492 } else { /* UAC_VERSION_2/3 */
2493 if (!uac_v2v3_control_is_readable(controls[valinfo->control / 8],
2494 valinfo->control))
2495 continue;
2496 }
2497
Ruslan Bilovol17156f22018-05-04 04:24:04 +03002498 map = find_map(state->map, unitid, valinfo->control);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002499 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02002501 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02002502 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 return -ENOMEM;
Takashi Iwai3360b842014-11-18 11:47:04 +01002504 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 cval->control = valinfo->control;
2506 cval->val_type = valinfo->val_type;
2507 cval->channels = 1;
2508
Jorge Sanjuan4e887af2018-07-11 13:37:52 +01002509 if (state->mixer->protocol > UAC_VERSION_1 &&
2510 !uac_v2v3_control_is_writeable(controls[valinfo->control / 8],
2511 valinfo->control))
2512 cval->master_readonly = 1;
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 /* get min/max values */
Jorge Sanjuan55b8cb42018-07-11 13:37:55 +01002515 switch (type) {
2516 case UAC_PROCESS_UP_DOWNMIX: {
2517 bool mode_sel = false;
2518
2519 switch (state->mixer->protocol) {
2520 case UAC_VERSION_1:
2521 case UAC_VERSION_2:
2522 default:
2523 if (cval->control == UAC_UD_MODE_SELECT)
2524 mode_sel = true;
2525 break;
2526 case UAC_VERSION_3:
2527 if (cval->control == UAC3_UD_MODE_SELECT)
2528 mode_sel = true;
2529 break;
2530 }
2531
2532 if (mode_sel) {
2533 __u8 *control_spec = uac_processing_unit_specific(desc,
2534 state->mixer->protocol);
2535 cval->min = 1;
2536 cval->max = control_spec[0];
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002537 cval->res = 1;
2538 cval->initialized = 1;
Jorge Sanjuan55b8cb42018-07-11 13:37:55 +01002539 break;
2540 }
2541
2542 get_min_max(cval, valinfo->min_value);
2543 break;
2544 }
2545 case USB_XU_CLOCK_RATE:
2546 /*
2547 * E-Mu USB 0404/0202/TrackerPre/0204
2548 * samplerate control quirk
2549 */
2550 cval->min = 0;
2551 cval->max = 5;
2552 cval->res = 1;
2553 cval->initialized = 1;
2554 break;
2555 default:
2556 get_min_max(cval, valinfo->min_value);
2557 break;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08002558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Tom Yand8d0db72020-08-18 01:20:11 +08002560 err = get_cur_ctl_value(cval, cval->control << 8, &val);
2561 if (err < 0) {
2562 usb_mixer_elem_info_free(cval);
2563 return -EINVAL;
2564 }
2565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002567 if (!kctl) {
Takashi Iwai52c3e312019-08-22 08:23:10 +02002568 usb_mixer_elem_info_free(cval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 return -ENOMEM;
2570 }
Chris J Argeseef90452014-11-12 12:07:01 -06002571 kctl->private_free = snd_usb_mixer_elem_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
Daniel Mack6bc170e2014-05-24 10:58:16 +02002573 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002574 /* nothing */ ;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002575 } else if (info->name) {
Joe Perches75b1a8f2021-01-04 09:17:34 -08002576 strscpy(kctl->id.name, info->name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02002577 } else {
Takashi Iwaica95c7b2019-07-04 16:31:12 +02002578 if (extension_unit)
2579 nameid = uac_extension_unit_iExtension(desc, state->mixer->protocol);
2580 else
2581 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 len = 0;
2583 if (nameid)
Ruslan Bilovoleccfc1b2018-05-04 04:24:02 +03002584 len = snd_usb_copy_string_desc(state->chip,
2585 nameid,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002586 kctl->id.name,
2587 sizeof(kctl->id.name));
2588 if (!len)
Joe Perches75b1a8f2021-01-04 09:17:34 -08002589 strscpy(kctl->id.name, name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02002591 append_ctl_name(kctl, " ");
2592 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002594 usb_audio_dbg(state->chip,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002595 "[%d] PU [%s] ch = %d, val = %d/%d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01002596 cval->head.id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02002597 cval->min, cval->max);
2598
Takashi Iwai3360b842014-11-18 11:47:04 +01002599 err = snd_usb_mixer_add_control(&cval->head, kctl);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002600 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 return err;
2602 }
2603 return 0;
2604}
2605
Daniel Mack6bc170e2014-05-24 10:58:16 +02002606static int parse_audio_processing_unit(struct mixer_build *state, int unitid,
2607 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608{
Jorge Sanjuan0f292f02018-07-11 13:37:53 +01002609 switch (state->mixer->protocol) {
2610 case UAC_VERSION_1:
2611 case UAC_VERSION_2:
2612 default:
2613 return build_audio_procunit(state, unitid, raw_desc,
Takashi Iwaica95c7b2019-07-04 16:31:12 +02002614 procunits, false);
Jorge Sanjuan0f292f02018-07-11 13:37:53 +01002615 case UAC_VERSION_3:
2616 return build_audio_procunit(state, unitid, raw_desc,
Takashi Iwaica95c7b2019-07-04 16:31:12 +02002617 uac3_procunits, false);
Jorge Sanjuan0f292f02018-07-11 13:37:53 +01002618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
2620
Daniel Mack6bc170e2014-05-24 10:58:16 +02002621static int parse_audio_extension_unit(struct mixer_build *state, int unitid,
2622 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623{
Daniel Mack6bc170e2014-05-24 10:58:16 +02002624 /*
2625 * Note that we parse extension units with processing unit descriptors.
2626 * That's ok as the layout is the same.
2627 */
Takashi Iwaica95c7b2019-07-04 16:31:12 +02002628 return build_audio_procunit(state, unitid, raw_desc, extunits, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629}
2630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631/*
2632 * Selector Unit
2633 */
2634
Daniel Mack6bc170e2014-05-24 10:58:16 +02002635/*
2636 * info callback for selector unit
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 * use an enumerator type for routing
2638 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002639static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol,
2640 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002642 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01002643 const char **itemlist = (const char **)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Takashi Iwai5e246b82008-08-08 17:12:47 +02002645 if (snd_BUG_ON(!itemlist))
2646 return -EINVAL;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01002647 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648}
2649
2650/* get callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002651static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol,
2652 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002654 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 int val, err;
2656
Daniel Mack09414202010-05-31 13:35:44 +02002657 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 if (err < 0) {
Takashi Iwai5aeee342014-11-18 11:02:14 +01002659 ucontrol->value.enumerated.item[0] = 0;
2660 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 }
2662 val = get_relative_value(cval, val);
2663 ucontrol->value.enumerated.item[0] = val;
2664 return 0;
2665}
2666
2667/* put callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002668static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
2669 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002671 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 int val, oval, err;
2673
Daniel Mack09414202010-05-31 13:35:44 +02002674 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Takashi Iwai5aeee342014-11-18 11:02:14 +01002675 if (err < 0)
2676 return filter_error(cval, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 val = ucontrol->value.enumerated.item[0];
2678 val = get_abs_value(cval, val);
2679 if (val != oval) {
Daniel Mack09414202010-05-31 13:35:44 +02002680 set_cur_ctl_value(cval, cval->control << 8, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 return 1;
2682 }
2683 return 0;
2684}
2685
2686/* alsa control interface for selector unit */
Bhumika Goyal8fdaebb2017-04-12 18:38:06 +05302687static const struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2689 .name = "", /* will be filled later */
2690 .info = mixer_ctl_selector_info,
2691 .get = mixer_ctl_selector_get,
2692 .put = mixer_ctl_selector_put,
2693};
2694
Daniel Mack6bc170e2014-05-24 10:58:16 +02002695/*
2696 * private free callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 * free both private_data and private_value
2698 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002699static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700{
2701 int i, num_ins = 0;
2702
2703 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002704 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 num_ins = cval->max;
Takashi Iwai52c3e312019-08-22 08:23:10 +02002706 usb_mixer_elem_info_free(cval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 kctl->private_data = NULL;
2708 }
2709 if (kctl->private_value) {
2710 char **itemlist = (char **)kctl->private_value;
2711 for (i = 0; i < num_ins; i++)
2712 kfree(itemlist[i]);
2713 kfree(itemlist);
2714 kctl->private_value = 0;
2715 }
2716}
2717
2718/*
2719 * parse a selector unit
2720 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002721static int parse_audio_selector_unit(struct mixer_build *state, int unitid,
2722 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
Daniel Mack99fc8642010-03-11 21:13:24 +01002724 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 unsigned int i, nameid, len;
2726 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002727 struct usb_mixer_elem_info *cval;
2728 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002729 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 char **namelist;
2731
Daniel Mack99fc8642010-03-11 21:13:24 +01002732 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwaif25ecf82018-05-27 15:18:22 +02002733 err = parse_audio_unit(state, desc->baSourceID[i]);
2734 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 return err;
2736 }
2737
Daniel Mack99fc8642010-03-11 21:13:24 +01002738 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 return 0;
2740
Ruslan Bilovol17156f22018-05-04 04:24:04 +03002741 map = find_map(state->map, unitid, 0);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002742 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 return 0;
2744
Takashi Iwai561b2202005-09-09 14:22:34 +02002745 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02002746 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 return -ENOMEM;
Takashi Iwai3360b842014-11-18 11:47:04 +01002748 snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 cval->val_type = USB_MIXER_U8;
2750 cval->channels = 1;
2751 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01002752 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 cval->res = 1;
2754 cval->initialized = 1;
2755
Jorge Sanjuanc77e1ef2018-07-11 13:37:51 +01002756 switch (state->mixer->protocol) {
2757 case UAC_VERSION_1:
2758 default:
Daniel Mack09414202010-05-31 13:35:44 +02002759 cval->control = 0;
Jorge Sanjuanc77e1ef2018-07-11 13:37:51 +01002760 break;
2761 case UAC_VERSION_2:
2762 case UAC_VERSION_3:
2763 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR ||
2764 desc->bDescriptorSubtype == UAC3_CLOCK_SELECTOR)
2765 cval->control = UAC2_CX_CLOCK_SELECTOR;
2766 else /* UAC2/3_SELECTOR_UNIT */
2767 cval->control = UAC2_SU_SELECTOR;
2768 break;
2769 }
Daniel Mack09414202010-05-31 13:35:44 +02002770
Takashi Iwai52c3e312019-08-22 08:23:10 +02002771 namelist = kcalloc(desc->bNrInPins, sizeof(char *), GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002772 if (!namelist) {
Takashi Iwai52c3e312019-08-22 08:23:10 +02002773 err = -ENOMEM;
2774 goto error_cval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 }
2776#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01002777 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002778 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002780 if (!namelist[i]) {
Takashi Iwai52c3e312019-08-22 08:23:10 +02002781 err = -ENOMEM;
2782 goto error_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002784 len = check_mapped_selector_name(state, unitid, i, namelist[i],
2785 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01002786 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Ruslan Bilovoleccfc1b2018-05-04 04:24:02 +03002787 len = get_term_name(state->chip, &iterm, namelist[i],
2788 MAX_ITEM_NAME_LEN, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 if (! len)
Masanari Iidaaf831ee2014-04-28 13:08:55 +09002790 sprintf(namelist[i], "Input %u", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 }
2792
2793 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
2794 if (! kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002795 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Takashi Iwai52c3e312019-08-22 08:23:10 +02002796 err = -ENOMEM;
2797 goto error_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
2799 kctl->private_value = (unsigned long)namelist;
2800 kctl->private_free = usb_mixer_selector_elem_free;
2801
Takashi Iwai5a15f282017-12-18 23:36:57 +01002802 /* check the static mapping table at first */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002803 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Jaejoong Kim89b89d12017-12-04 15:31:49 +09002804 if (!len) {
Takashi Iwai5a15f282017-12-18 23:36:57 +01002805 /* no mapping ? */
Jorge Sanjuanc77e1ef2018-07-11 13:37:51 +01002806 switch (state->mixer->protocol) {
2807 case UAC_VERSION_1:
2808 case UAC_VERSION_2:
2809 default:
Takashi Iwai5a15f282017-12-18 23:36:57 +01002810 /* if iSelector is given, use it */
Jorge Sanjuanc77e1ef2018-07-11 13:37:51 +01002811 nameid = uac_selector_unit_iSelector(desc);
2812 if (nameid)
2813 len = snd_usb_copy_string_desc(state->chip,
2814 nameid, kctl->id.name,
2815 sizeof(kctl->id.name));
2816 break;
2817 case UAC_VERSION_3:
2818 /* TODO: Class-Specific strings not yet supported */
2819 break;
2820 }
2821
Takashi Iwai5a15f282017-12-18 23:36:57 +01002822 /* ... or pick up the terminal name at next */
2823 if (!len)
Ruslan Bilovoleccfc1b2018-05-04 04:24:02 +03002824 len = get_term_name(state->chip, &state->oterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 kctl->id.name, sizeof(kctl->id.name), 0);
Takashi Iwai5a15f282017-12-18 23:36:57 +01002826 /* ... or use the fixed string "USB" as the last resort */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002827 if (!len)
Joe Perches75b1a8f2021-01-04 09:17:34 -08002828 strscpy(kctl->id.name, "USB", sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
Takashi Iwai5a15f282017-12-18 23:36:57 +01002830 /* and add the proper suffix */
Jorge Sanjuanc77e1ef2018-07-11 13:37:51 +01002831 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR ||
2832 desc->bDescriptorSubtype == UAC3_CLOCK_SELECTOR)
Daniel Mack09414202010-05-31 13:35:44 +02002833 append_ctl_name(kctl, " Clock Source");
2834 else if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02002835 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02002837 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 }
2839
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002840 usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n",
Takashi Iwai3360b842014-11-18 11:47:04 +01002841 cval->head.id, kctl->id.name, desc->bNrInPins);
2842 return snd_usb_mixer_add_control(&cval->head, kctl);
Takashi Iwai52c3e312019-08-22 08:23:10 +02002843
2844 error_name:
2845 for (i = 0; i < desc->bNrInPins; i++)
2846 kfree(namelist[i]);
2847 kfree(namelist);
2848 error_cval:
2849 usb_mixer_elem_info_free(cval);
2850 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851}
2852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853/*
2854 * parse an audio unit recursively
2855 */
2856
Takashi Iwai86e07d32005-11-17 15:08:02 +01002857static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858{
2859 unsigned char *p1;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02002860 int protocol = state->mixer->protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
2862 if (test_and_set_bit(unitid, state->unitbitmap))
2863 return 0; /* the unit already visited */
2864
2865 p1 = find_audio_control_unit(state, unitid);
2866 if (!p1) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002867 usb_audio_err(state->chip, "unit %d not found!\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 return -EINVAL;
2869 }
2870
Takashi Iwai57f87702019-08-20 17:17:09 +02002871 if (!snd_usb_validate_audio_desc(p1, protocol)) {
2872 usb_audio_dbg(state->chip, "invalid unit %d\n", unitid);
2873 return 0; /* skip invalid unit */
2874 }
2875
Takashi Iwai68e9fde2019-08-15 16:30:39 +02002876 switch (PTYPE(protocol, p1[2])) {
2877 case PTYPE(UAC_VERSION_1, UAC_INPUT_TERMINAL):
2878 case PTYPE(UAC_VERSION_2, UAC_INPUT_TERMINAL):
2879 case PTYPE(UAC_VERSION_3, UAC_INPUT_TERMINAL):
2880 return parse_audio_input_terminal(state, unitid, p1);
2881 case PTYPE(UAC_VERSION_1, UAC_MIXER_UNIT):
2882 case PTYPE(UAC_VERSION_2, UAC_MIXER_UNIT):
2883 case PTYPE(UAC_VERSION_3, UAC3_MIXER_UNIT):
2884 return parse_audio_mixer_unit(state, unitid, p1);
2885 case PTYPE(UAC_VERSION_2, UAC2_CLOCK_SOURCE):
2886 case PTYPE(UAC_VERSION_3, UAC3_CLOCK_SOURCE):
2887 return parse_clock_source_unit(state, unitid, p1);
2888 case PTYPE(UAC_VERSION_1, UAC_SELECTOR_UNIT):
2889 case PTYPE(UAC_VERSION_2, UAC_SELECTOR_UNIT):
2890 case PTYPE(UAC_VERSION_3, UAC3_SELECTOR_UNIT):
2891 case PTYPE(UAC_VERSION_2, UAC2_CLOCK_SELECTOR):
2892 case PTYPE(UAC_VERSION_3, UAC3_CLOCK_SELECTOR):
2893 return parse_audio_selector_unit(state, unitid, p1);
2894 case PTYPE(UAC_VERSION_1, UAC_FEATURE_UNIT):
2895 case PTYPE(UAC_VERSION_2, UAC_FEATURE_UNIT):
2896 case PTYPE(UAC_VERSION_3, UAC3_FEATURE_UNIT):
2897 return parse_audio_feature_unit(state, unitid, p1);
2898 case PTYPE(UAC_VERSION_1, UAC1_PROCESSING_UNIT):
2899 case PTYPE(UAC_VERSION_2, UAC2_PROCESSING_UNIT_V2):
2900 case PTYPE(UAC_VERSION_3, UAC3_PROCESSING_UNIT):
2901 return parse_audio_processing_unit(state, unitid, p1);
2902 case PTYPE(UAC_VERSION_1, UAC1_EXTENSION_UNIT):
2903 case PTYPE(UAC_VERSION_2, UAC2_EXTENSION_UNIT_V2):
2904 case PTYPE(UAC_VERSION_3, UAC3_EXTENSION_UNIT):
2905 return parse_audio_extension_unit(state, unitid, p1);
2906 case PTYPE(UAC_VERSION_2, UAC2_EFFECT_UNIT):
2907 case PTYPE(UAC_VERSION_3, UAC3_EFFECT_UNIT):
2908 return 0; /* FIXME - effect units not implemented yet */
2909 default:
2910 usb_audio_err(state->chip,
2911 "unit %u: unexpected type 0x%02x\n",
2912 unitid, p1[2]);
2913 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 }
2915}
2916
Clemens Ladisch84957a82005-04-29 16:23:13 +02002917static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
2918{
Takashi Iwai124751d2017-10-10 14:10:32 +02002919 /* kill pending URBs */
2920 snd_usb_mixer_disconnect(mixer);
2921
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002922 kfree(mixer->id_elems);
2923 if (mixer->urb) {
2924 kfree(mixer->urb->transfer_buffer);
2925 usb_free_urb(mixer->urb);
2926 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002927 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02002928 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002929 kfree(mixer);
2930}
2931
Takashi Iwai86e07d32005-11-17 15:08:02 +01002932static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002933{
2934 struct usb_mixer_interface *mixer = device->device_data;
2935 snd_usb_mixer_free(mixer);
2936 return 0;
2937}
2938
Ruslan Bilovol17156f22018-05-04 04:24:04 +03002939/* UAC3 predefined channels configuration */
2940struct uac3_badd_profile {
2941 int subclass;
2942 const char *name;
2943 int c_chmask; /* capture channels mask */
2944 int p_chmask; /* playback channels mask */
2945 int st_chmask; /* side tone mixing channel mask */
2946};
2947
Takashi Iwaia01df922020-01-05 15:47:26 +01002948static const struct uac3_badd_profile uac3_badd_profiles[] = {
Ruslan Bilovol17156f22018-05-04 04:24:04 +03002949 {
2950 /*
2951 * BAIF, BAOF or combination of both
2952 * IN: Mono or Stereo cfg, Mono alt possible
2953 * OUT: Mono or Stereo cfg, Mono alt possible
2954 */
2955 .subclass = UAC3_FUNCTION_SUBCLASS_GENERIC_IO,
2956 .name = "GENERIC IO",
2957 .c_chmask = -1, /* dynamic channels */
2958 .p_chmask = -1, /* dynamic channels */
2959 },
2960 {
2961 /* BAOF; Stereo only cfg, Mono alt possible */
2962 .subclass = UAC3_FUNCTION_SUBCLASS_HEADPHONE,
2963 .name = "HEADPHONE",
2964 .p_chmask = 3,
2965 },
2966 {
2967 /* BAOF; Mono or Stereo cfg, Mono alt possible */
2968 .subclass = UAC3_FUNCTION_SUBCLASS_SPEAKER,
2969 .name = "SPEAKER",
2970 .p_chmask = -1, /* dynamic channels */
2971 },
2972 {
2973 /* BAIF; Mono or Stereo cfg, Mono alt possible */
2974 .subclass = UAC3_FUNCTION_SUBCLASS_MICROPHONE,
2975 .name = "MICROPHONE",
2976 .c_chmask = -1, /* dynamic channels */
2977 },
2978 {
2979 /*
2980 * BAIOF topology
2981 * IN: Mono only
2982 * OUT: Mono or Stereo cfg, Mono alt possible
2983 */
2984 .subclass = UAC3_FUNCTION_SUBCLASS_HEADSET,
2985 .name = "HEADSET",
2986 .c_chmask = 1,
2987 .p_chmask = -1, /* dynamic channels */
2988 .st_chmask = 1,
2989 },
2990 {
2991 /* BAIOF; IN: Mono only; OUT: Stereo only, Mono alt possible */
2992 .subclass = UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER,
2993 .name = "HEADSET ADAPTER",
2994 .c_chmask = 1,
2995 .p_chmask = 3,
2996 .st_chmask = 1,
2997 },
2998 {
2999 /* BAIF + BAOF; IN: Mono only; OUT: Mono only */
3000 .subclass = UAC3_FUNCTION_SUBCLASS_SPEAKERPHONE,
3001 .name = "SPEAKERPHONE",
3002 .c_chmask = 1,
3003 .p_chmask = 1,
3004 },
3005 { 0 } /* terminator */
3006};
3007
3008static bool uac3_badd_func_has_valid_channels(struct usb_mixer_interface *mixer,
Takashi Iwaia01df922020-01-05 15:47:26 +01003009 const struct uac3_badd_profile *f,
Ruslan Bilovol17156f22018-05-04 04:24:04 +03003010 int c_chmask, int p_chmask)
3011{
3012 /*
3013 * If both playback/capture channels are dynamic, make sure
3014 * at least one channel is present
3015 */
3016 if (f->c_chmask < 0 && f->p_chmask < 0) {
3017 if (!c_chmask && !p_chmask) {
3018 usb_audio_warn(mixer->chip, "BAAD %s: no channels?",
3019 f->name);
3020 return false;
3021 }
3022 return true;
3023 }
3024
3025 if ((f->c_chmask < 0 && !c_chmask) ||
3026 (f->c_chmask >= 0 && f->c_chmask != c_chmask)) {
3027 usb_audio_warn(mixer->chip, "BAAD %s c_chmask mismatch",
3028 f->name);
3029 return false;
3030 }
3031 if ((f->p_chmask < 0 && !p_chmask) ||
3032 (f->p_chmask >= 0 && f->p_chmask != p_chmask)) {
3033 usb_audio_warn(mixer->chip, "BAAD %s p_chmask mismatch",
3034 f->name);
3035 return false;
3036 }
3037 return true;
3038}
3039
3040/*
3041 * create mixer controls for UAC3 BADD profiles
3042 *
3043 * UAC3 BADD device doesn't contain CS descriptors thus we will guess everything
3044 *
3045 * BADD device may contain Mixer Unit, which doesn't have any controls, skip it
3046 */
3047static int snd_usb_mixer_controls_badd(struct usb_mixer_interface *mixer,
3048 int ctrlif)
3049{
3050 struct usb_device *dev = mixer->chip->dev;
3051 struct usb_interface_assoc_descriptor *assoc;
3052 int badd_profile = mixer->chip->badd_profile;
Takashi Iwaia01df922020-01-05 15:47:26 +01003053 const struct uac3_badd_profile *f;
Ruslan Bilovol17156f22018-05-04 04:24:04 +03003054 const struct usbmix_ctl_map *map;
3055 int p_chmask = 0, c_chmask = 0, st_chmask = 0;
3056 int i;
3057
3058 assoc = usb_ifnum_to_if(dev, ctrlif)->intf_assoc;
3059
3060 /* Detect BADD capture/playback channels from AS EP descriptors */
3061 for (i = 0; i < assoc->bInterfaceCount; i++) {
3062 int intf = assoc->bFirstInterface + i;
3063
3064 struct usb_interface *iface;
3065 struct usb_host_interface *alts;
3066 struct usb_interface_descriptor *altsd;
3067 unsigned int maxpacksize;
3068 char dir_in;
3069 int chmask, num;
3070
3071 if (intf == ctrlif)
3072 continue;
3073
3074 iface = usb_ifnum_to_if(dev, intf);
Takashi Iwai9435f2b2019-11-22 12:28:40 +01003075 if (!iface)
3076 continue;
3077
Ruslan Bilovol17156f22018-05-04 04:24:04 +03003078 num = iface->num_altsetting;
3079
3080 if (num < 2)
3081 return -EINVAL;
3082
3083 /*
3084 * The number of Channels in an AudioStreaming interface
3085 * and the audio sample bit resolution (16 bits or 24
3086 * bits) can be derived from the wMaxPacketSize field in
3087 * the Standard AS Audio Data Endpoint descriptor in
3088 * Alternate Setting 1
3089 */
3090 alts = &iface->altsetting[1];
3091 altsd = get_iface_desc(alts);
3092
3093 if (altsd->bNumEndpoints < 1)
3094 return -EINVAL;
3095
3096 /* check direction */
3097 dir_in = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN);
3098 maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3099
3100 switch (maxpacksize) {
3101 default:
3102 usb_audio_err(mixer->chip,
3103 "incorrect wMaxPacketSize 0x%x for BADD profile\n",
3104 maxpacksize);
3105 return -EINVAL;
3106 case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_16:
3107 case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_16:
3108 case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_24:
3109 case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_24:
3110 chmask = 1;
3111 break;
3112 case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_16:
3113 case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_16:
3114 case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_24:
3115 case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_24:
3116 chmask = 3;
3117 break;
3118 }
3119
3120 if (dir_in)
3121 c_chmask = chmask;
3122 else
3123 p_chmask = chmask;
3124 }
3125
3126 usb_audio_dbg(mixer->chip,
3127 "UAC3 BADD profile 0x%x: detected c_chmask=%d p_chmask=%d\n",
3128 badd_profile, c_chmask, p_chmask);
3129
3130 /* check the mapping table */
3131 for (map = uac3_badd_usbmix_ctl_maps; map->id; map++) {
3132 if (map->id == badd_profile)
3133 break;
3134 }
3135
3136 if (!map->id)
3137 return -EINVAL;
3138
3139 for (f = uac3_badd_profiles; f->name; f++) {
3140 if (badd_profile == f->subclass)
3141 break;
3142 }
3143 if (!f->name)
3144 return -EINVAL;
3145 if (!uac3_badd_func_has_valid_channels(mixer, f, c_chmask, p_chmask))
3146 return -EINVAL;
3147 st_chmask = f->st_chmask;
3148
3149 /* Playback */
3150 if (p_chmask) {
3151 /* Master channel, always writable */
3152 build_feature_ctl_badd(mixer, 0, UAC_FU_MUTE,
3153 UAC3_BADD_FU_ID2, map->map);
3154 /* Mono/Stereo volume channels, always writable */
3155 build_feature_ctl_badd(mixer, p_chmask, UAC_FU_VOLUME,
3156 UAC3_BADD_FU_ID2, map->map);
3157 }
3158
3159 /* Capture */
3160 if (c_chmask) {
3161 /* Master channel, always writable */
3162 build_feature_ctl_badd(mixer, 0, UAC_FU_MUTE,
3163 UAC3_BADD_FU_ID5, map->map);
3164 /* Mono/Stereo volume channels, always writable */
3165 build_feature_ctl_badd(mixer, c_chmask, UAC_FU_VOLUME,
3166 UAC3_BADD_FU_ID5, map->map);
3167 }
3168
3169 /* Side tone-mixing */
3170 if (st_chmask) {
3171 /* Master channel, always writable */
3172 build_feature_ctl_badd(mixer, 0, UAC_FU_MUTE,
3173 UAC3_BADD_FU_ID7, map->map);
3174 /* Mono volume channel, always writable */
3175 build_feature_ctl_badd(mixer, 1, UAC_FU_VOLUME,
3176 UAC3_BADD_FU_ID7, map->map);
3177 }
3178
Jorge Sanjuan3528cd82018-06-14 15:05:57 +01003179 /* Insertion Control */
3180 if (f->subclass == UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER) {
3181 struct usb_audio_term iterm, oterm;
3182
3183 /* Input Term - Insertion control */
3184 memset(&iterm, 0, sizeof(iterm));
3185 iterm.id = UAC3_BADD_IT_ID4;
3186 iterm.type = UAC_BIDIR_TERMINAL_HEADSET;
Takashi Iwai934b9652020-04-12 10:13:31 +02003187 build_connector_control(mixer, map->map, &iterm, true);
Jorge Sanjuan3528cd82018-06-14 15:05:57 +01003188
3189 /* Output Term - Insertion control */
3190 memset(&oterm, 0, sizeof(oterm));
3191 oterm.id = UAC3_BADD_OT_ID3;
3192 oterm.type = UAC_BIDIR_TERMINAL_HEADSET;
Takashi Iwai934b9652020-04-12 10:13:31 +02003193 build_connector_control(mixer, map->map, &oterm, false);
Jorge Sanjuan3528cd82018-06-14 15:05:57 +01003194 }
3195
Ruslan Bilovol17156f22018-05-04 04:24:04 +03003196 return 0;
3197}
3198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199/*
3200 * create mixer controls
3201 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01003202 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02003204static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003206 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 int err;
3208 const struct usbmix_ctl_map *map;
Daniel Mack23caaf12010-03-11 21:13:25 +01003209 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02003212 state.chip = mixer->chip;
3213 state.mixer = mixer;
Daniel Mack1faa5d02011-08-04 15:56:28 +02003214 state.buffer = mixer->hostif->extra;
3215 state.buflen = mixer->hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
3217 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003218 for (map = usbmix_ctl_maps; map->id; map++) {
3219 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02003221 state.selector_map = map->selector_map;
Takashi Iwaifef66ae2020-04-22 13:33:20 +02003222 mixer->connector_map = map->connector_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 break;
3224 }
3225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Daniel Mack23caaf12010-03-11 21:13:25 +01003227 p = NULL;
Daniel Mack6bc170e2014-05-24 10:58:16 +02003228 while ((p = snd_usb_find_csint_desc(mixer->hostif->extra,
3229 mixer->hostif->extralen,
Daniel Mack1faa5d02011-08-04 15:56:28 +02003230 p, UAC_OUTPUT_TERMINAL)) != NULL) {
Takashi Iwai57f87702019-08-20 17:17:09 +02003231 if (!snd_usb_validate_audio_desc(p, mixer->protocol))
3232 continue; /* skip invalid descriptor */
3233
Daniel Mack23caaf12010-03-11 21:13:25 +01003234 if (mixer->protocol == UAC_VERSION_1) {
Daniel Mack69da9bc2010-06-16 17:57:28 +02003235 struct uac1_output_terminal_descriptor *desc = p;
Daniel Mack23caaf12010-03-11 21:13:25 +01003236
Daniel Mack6bc170e2014-05-24 10:58:16 +02003237 /* mark terminal ID as visited */
3238 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01003239 state.oterm.id = desc->bTerminalID;
3240 state.oterm.type = le16_to_cpu(desc->wTerminalType);
3241 state.oterm.name = desc->iTerminal;
3242 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01003243 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01003244 return err;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02003245 } else if (mixer->protocol == UAC_VERSION_2) {
Daniel Mack23caaf12010-03-11 21:13:25 +01003246 struct uac2_output_terminal_descriptor *desc = p;
3247
Daniel Mack6bc170e2014-05-24 10:58:16 +02003248 /* mark terminal ID as visited */
3249 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01003250 state.oterm.id = desc->bTerminalID;
3251 state.oterm.type = le16_to_cpu(desc->wTerminalType);
3252 state.oterm.name = desc->iTerminal;
3253 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01003254 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01003255 return err;
Daniel Mack09414202010-05-31 13:35:44 +02003256
Daniel Mack6bc170e2014-05-24 10:58:16 +02003257 /*
3258 * For UAC2, use the same approach to also add the
3259 * clock selectors
3260 */
Daniel Mack09414202010-05-31 13:35:44 +02003261 err = parse_audio_unit(&state, desc->bCSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01003262 if (err < 0 && err != -EINVAL)
Daniel Mack09414202010-05-31 13:35:44 +02003263 return err;
Andrew Chant5a222e82018-03-23 19:25:23 -07003264
Takashi Iwai7dc3c5a2020-04-12 10:13:30 +02003265 if ((state.oterm.type & 0xff00) != 0x0100 &&
3266 uac_v2v3_control_is_readable(le16_to_cpu(desc->bmControls),
Andrew Chant5a222e82018-03-23 19:25:23 -07003267 UAC2_TE_CONNECTOR)) {
Takashi Iwai934b9652020-04-12 10:13:31 +02003268 build_connector_control(state.mixer, state.map,
3269 &state.oterm, false);
Andrew Chant5a222e82018-03-23 19:25:23 -07003270 }
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02003271 } else { /* UAC_VERSION_3 */
3272 struct uac3_output_terminal_descriptor *desc = p;
3273
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02003274 /* mark terminal ID as visited */
3275 set_bit(desc->bTerminalID, state.unitbitmap);
3276 state.oterm.id = desc->bTerminalID;
3277 state.oterm.type = le16_to_cpu(desc->wTerminalType);
3278 state.oterm.name = le16_to_cpu(desc->wTerminalDescrStr);
3279 err = parse_audio_unit(&state, desc->bSourceID);
3280 if (err < 0 && err != -EINVAL)
3281 return err;
3282
3283 /*
3284 * For UAC3, use the same approach to also add the
3285 * clock selectors
3286 */
3287 err = parse_audio_unit(&state, desc->bCSourceID);
3288 if (err < 0 && err != -EINVAL)
3289 return err;
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01003290
Takashi Iwai7dc3c5a2020-04-12 10:13:30 +02003291 if ((state.oterm.type & 0xff00) != 0x0100 &&
3292 uac_v2v3_control_is_readable(le32_to_cpu(desc->bmControls),
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01003293 UAC3_TE_INSERTION)) {
Takashi Iwai934b9652020-04-12 10:13:31 +02003294 build_connector_control(state.mixer, state.map,
3295 &state.oterm, false);
Jorge Sanjuan1d38f5d2018-05-11 16:25:36 +01003296 }
Daniel Mack23caaf12010-03-11 21:13:25 +01003297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 }
Daniel Mack23caaf12010-03-11 21:13:25 +01003299
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 return 0;
3301}
Clemens Ladisch84957a82005-04-29 16:23:13 +02003302
Takashi Iwaifef66ae2020-04-22 13:33:20 +02003303static int delegate_notify(struct usb_mixer_interface *mixer, int unitid,
3304 u8 *control, u8 *channel)
3305{
3306 const struct usbmix_connector_map *map = mixer->connector_map;
3307
3308 if (!map)
3309 return unitid;
3310
3311 for (; map->id; map++) {
3312 if (map->id == unitid) {
3313 if (control && map->control)
3314 *control = map->control;
3315 if (channel && map->channel)
3316 *channel = map->channel;
3317 return map->delegated_id;
3318 }
3319 }
3320 return unitid;
3321}
3322
Daniel Mack7b1eda22010-03-11 21:13:22 +01003323void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003324{
Takashi Iwai3360b842014-11-18 11:47:04 +01003325 struct usb_mixer_elem_list *list;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003326
Takashi Iwaifef66ae2020-04-22 13:33:20 +02003327 unitid = delegate_notify(mixer, unitid, NULL, NULL);
3328
Takashi Iwai8c558072018-05-03 12:33:32 +02003329 for_each_mixer_elem(list, mixer, unitid) {
Takashi Iwai220345e2020-06-24 14:23:40 +02003330 struct usb_mixer_elem_info *info;
3331
3332 if (!list->is_std_info)
3333 continue;
3334 info = mixer_elem_list_to_info(list);
Julian Scheelb2500b52017-11-16 17:35:17 +01003335 /* invalidate cache, so the value is read from the device */
3336 info->cached = 0;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003337 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
Takashi Iwai3360b842014-11-18 11:47:04 +01003338 &list->kctl->id);
Julian Scheelb2500b52017-11-16 17:35:17 +01003339 }
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003340}
3341
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01003342static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
Takashi Iwai3360b842014-11-18 11:47:04 +01003343 struct usb_mixer_elem_list *list)
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01003344{
Takashi Iwai8c558072018-05-03 12:33:32 +02003345 struct usb_mixer_elem_info *cval = mixer_elem_list_to_info(list);
Takashi Iwai362372c2021-06-22 11:06:47 +02003346 static const char * const val_types[] = {
Takashi Iwai64752a92021-07-14 10:48:36 +02003347 [USB_MIXER_BOOLEAN] = "BOOLEAN",
3348 [USB_MIXER_INV_BOOLEAN] = "INV_BOOLEAN",
3349 [USB_MIXER_S8] = "S8",
3350 [USB_MIXER_U8] = "U8",
3351 [USB_MIXER_S16] = "S16",
3352 [USB_MIXER_U16] = "U16",
3353 [USB_MIXER_S32] = "S32",
3354 [USB_MIXER_U32] = "U32",
3355 [USB_MIXER_BESPOKEN] = "BESPOKEN",
Takashi Iwai362372c2021-06-22 11:06:47 +02003356 };
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01003357 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
Takashi Iwai3360b842014-11-18 11:47:04 +01003358 "channels=%i, type=\"%s\"\n", cval->head.id,
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01003359 cval->control, cval->cmask, cval->channels,
3360 val_types[cval->val_type]);
3361 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
3362 cval->min, cval->max, cval->dBmin, cval->dBmax);
3363}
3364
3365static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
3366 struct snd_info_buffer *buffer)
3367{
3368 struct snd_usb_audio *chip = entry->private_data;
3369 struct usb_mixer_interface *mixer;
Takashi Iwai3360b842014-11-18 11:47:04 +01003370 struct usb_mixer_elem_list *list;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01003371 int unitid;
3372
3373 list_for_each_entry(mixer, &chip->mixer_list, list) {
3374 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01003375 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
Chris Wulff0aef31b2020-03-14 12:54:48 -04003376 chip->usb_id, mixer_ctrl_intf(mixer),
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01003377 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01003378 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
3379 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
Takashi Iwai8c558072018-05-03 12:33:32 +02003380 for_each_mixer_elem(list, mixer, unitid) {
Takashi Iwai3360b842014-11-18 11:47:04 +01003381 snd_iprintf(buffer, " Unit: %i\n", list->id);
3382 if (list->kctl)
3383 snd_iprintf(buffer,
3384 " Control: name=\"%s\", index=%i\n",
3385 list->kctl->id.name,
3386 list->kctl->id.index);
3387 if (list->dump)
3388 list->dump(buffer, list);
3389 }
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01003390 }
3391 }
3392}
3393
Daniel Macke213e9c2010-05-11 18:13:50 +02003394static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
3395 int attribute, int value, int index)
3396{
Takashi Iwai3360b842014-11-18 11:47:04 +01003397 struct usb_mixer_elem_list *list;
Daniel Macke213e9c2010-05-11 18:13:50 +02003398 __u8 unitid = (index >> 8) & 0xff;
3399 __u8 control = (value >> 8) & 0xff;
3400 __u8 channel = value & 0xff;
Daniel Mack191227d2016-04-08 19:52:02 +02003401 unsigned int count = 0;
Daniel Macke213e9c2010-05-11 18:13:50 +02003402
3403 if (channel >= MAX_CHANNELS) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01003404 usb_audio_dbg(mixer->chip,
3405 "%s(): bogus channel number %d\n",
3406 __func__, channel);
Daniel Macke213e9c2010-05-11 18:13:50 +02003407 return;
3408 }
3409
Takashi Iwaifef66ae2020-04-22 13:33:20 +02003410 unitid = delegate_notify(mixer, unitid, &control, &channel);
3411
Takashi Iwai8c558072018-05-03 12:33:32 +02003412 for_each_mixer_elem(list, mixer, unitid)
Daniel Mack191227d2016-04-08 19:52:02 +02003413 count++;
3414
3415 if (count == 0)
3416 return;
3417
Takashi Iwai8c558072018-05-03 12:33:32 +02003418 for_each_mixer_elem(list, mixer, unitid) {
Takashi Iwai3360b842014-11-18 11:47:04 +01003419 struct usb_mixer_elem_info *info;
3420
3421 if (!list->kctl)
3422 continue;
Takashi Iwai220345e2020-06-24 14:23:40 +02003423 if (!list->is_std_info)
3424 continue;
Takashi Iwai3360b842014-11-18 11:47:04 +01003425
Takashi Iwai8c558072018-05-03 12:33:32 +02003426 info = mixer_elem_list_to_info(list);
Daniel Mack191227d2016-04-08 19:52:02 +02003427 if (count > 1 && info->control != control)
Daniel Macke213e9c2010-05-11 18:13:50 +02003428 continue;
3429
3430 switch (attribute) {
3431 case UAC2_CS_CUR:
3432 /* invalidate cache, so the value is read from the device */
3433 if (channel)
3434 info->cached &= ~(1 << channel);
3435 else /* master channel */
3436 info->cached = 0;
3437
3438 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
Takashi Iwai3360b842014-11-18 11:47:04 +01003439 &info->head.kctl->id);
Daniel Macke213e9c2010-05-11 18:13:50 +02003440 break;
3441
3442 case UAC2_CS_RANGE:
3443 /* TODO */
3444 break;
3445
3446 case UAC2_CS_MEM:
3447 /* TODO */
3448 break;
3449
3450 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01003451 usb_audio_dbg(mixer->chip,
3452 "unknown attribute %d in interrupt\n",
3453 attribute);
Daniel Macke213e9c2010-05-11 18:13:50 +02003454 break;
3455 } /* switch */
3456 }
3457}
3458
3459static void snd_usb_mixer_interrupt(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003460{
3461 struct usb_mixer_interface *mixer = urb->context;
Daniel Macke213e9c2010-05-11 18:13:50 +02003462 int len = urb->actual_length;
Oliver Neukumedf7de32011-03-11 13:19:43 +01003463 int ustatus = urb->status;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003464
Oliver Neukumedf7de32011-03-11 13:19:43 +01003465 if (ustatus != 0)
Daniel Macke213e9c2010-05-11 18:13:50 +02003466 goto requeue;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003467
Daniel Macke213e9c2010-05-11 18:13:50 +02003468 if (mixer->protocol == UAC_VERSION_1) {
3469 struct uac1_status_word *status;
3470
3471 for (status = urb->transfer_buffer;
3472 len >= sizeof(*status);
3473 len -= sizeof(*status), status++) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01003474 dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n",
Daniel Macke213e9c2010-05-11 18:13:50 +02003475 status->bStatusType,
3476 status->bOriginator);
3477
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003478 /* ignore any notifications not from the control interface */
Daniel Macke213e9c2010-05-11 18:13:50 +02003479 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
3480 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003481 continue;
Daniel Macke213e9c2010-05-11 18:13:50 +02003482
3483 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
3484 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
Clemens Ladischb259b102005-04-29 16:29:28 +02003485 else
Daniel Macke213e9c2010-05-11 18:13:50 +02003486 snd_usb_mixer_notify_id(mixer, status->bOriginator);
3487 }
3488 } else { /* UAC_VERSION_2 */
3489 struct uac2_interrupt_data_msg *msg;
3490
3491 for (msg = urb->transfer_buffer;
3492 len >= sizeof(*msg);
3493 len -= sizeof(*msg), msg++) {
3494 /* drop vendor specific and endpoint requests */
3495 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
3496 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
3497 continue;
3498
3499 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
3500 le16_to_cpu(msg->wValue),
3501 le16_to_cpu(msg->wIndex));
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003502 }
3503 }
Daniel Macke213e9c2010-05-11 18:13:50 +02003504
3505requeue:
Daniel Mack6bc170e2014-05-24 10:58:16 +02003506 if (ustatus != -ENOENT &&
3507 ustatus != -ECONNRESET &&
3508 ustatus != -ESHUTDOWN) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003509 urb->dev = mixer->chip->dev;
3510 usb_submit_urb(urb, GFP_ATOMIC);
3511 }
3512}
3513
3514/* create the handler for the optional status interrupt endpoint */
3515static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
3516{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003517 struct usb_endpoint_descriptor *ep;
3518 void *transfer_buffer;
3519 int buffer_length;
3520 unsigned int epnum;
3521
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003522 /* we need one interrupt input endpoint */
Daniel Mack1faa5d02011-08-04 15:56:28 +02003523 if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003524 return 0;
Daniel Mack1faa5d02011-08-04 15:56:28 +02003525 ep = get_endpoint(mixer->hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01003526 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003527 return 0;
3528
Julia Lawall42a6e662008-12-29 11:23:02 +01003529 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003530 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
3531 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
3532 if (!transfer_buffer)
3533 return -ENOMEM;
3534 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
3535 if (!mixer->urb) {
3536 kfree(transfer_buffer);
3537 return -ENOMEM;
3538 }
3539 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
3540 usb_rcvintpipe(mixer->chip->dev, epnum),
3541 transfer_buffer, buffer_length,
Daniel Macke213e9c2010-05-11 18:13:50 +02003542 snd_usb_mixer_interrupt, mixer, ep->bInterval);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003543 usb_submit_urb(mixer->urb, GFP_KERNEL);
3544 return 0;
3545}
3546
Takashi Iwai3c69dc92021-07-29 09:44:01 +02003547int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif)
Clemens Ladisch84957a82005-04-29 16:23:13 +02003548{
Takashi Iwaic0a142e2020-01-03 09:16:26 +01003549 static const struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02003550 .dev_free = snd_usb_mixer_dev_free
3551 };
3552 struct usb_mixer_interface *mixer;
Daniel Mack23caaf12010-03-11 21:13:25 +01003553 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02003554
3555 strcpy(chip->card->mixername, "USB Mixer");
3556
Takashi Iwai561b2202005-09-09 14:22:34 +02003557 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02003558 if (!mixer)
3559 return -ENOMEM;
3560 mixer->chip = chip;
Takashi Iwai3c69dc92021-07-29 09:44:01 +02003561 mixer->ignore_ctl_error = !!(chip->quirk_flags & QUIRK_FLAG_IGNORE_CTL_ERROR);
Jaroslav Kysela291186e2010-02-16 11:55:18 +01003562 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
3563 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02003564 if (!mixer->id_elems) {
3565 kfree(mixer);
3566 return -ENOMEM;
3567 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02003568
Daniel Mack1faa5d02011-08-04 15:56:28 +02003569 mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
3570 switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +02003571 case UAC_VERSION_1:
3572 default:
3573 mixer->protocol = UAC_VERSION_1;
3574 break;
3575 case UAC_VERSION_2:
3576 mixer->protocol = UAC_VERSION_2;
3577 break;
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +02003578 case UAC_VERSION_3:
3579 mixer->protocol = UAC_VERSION_3;
3580 break;
Clemens Ladischa2acad82010-09-03 10:53:11 +02003581 }
Daniel Mack7b8a0432010-02-22 23:49:12 +01003582
Ruslan Bilovol17156f22018-05-04 04:24:04 +03003583 if (mixer->protocol == UAC_VERSION_3 &&
3584 chip->badd_profile >= UAC3_FUNCTION_SUBCLASS_GENERIC_IO) {
Takashi Iwaif25ecf82018-05-27 15:18:22 +02003585 err = snd_usb_mixer_controls_badd(mixer, ctrlif);
3586 if (err < 0)
Ruslan Bilovol17156f22018-05-04 04:24:04 +03003587 goto _error;
Takashi Iwaif25ecf82018-05-27 15:18:22 +02003588 } else {
3589 err = snd_usb_mixer_controls(mixer);
3590 if (err < 0)
3591 goto _error;
Ruslan Bilovol17156f22018-05-04 04:24:04 +03003592 }
Jorge Sanjuanad6baae2018-06-14 15:05:58 +01003593
3594 err = snd_usb_mixer_status_create(mixer);
3595 if (err < 0)
3596 goto _error;
3597
Takashi Iwai328e9f62019-04-24 13:00:03 +02003598 err = snd_usb_mixer_apply_create_quirk(mixer);
3599 if (err < 0)
3600 goto _error;
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02003601
Takashi Iwai9cbb2802014-02-04 11:15:31 +01003602 err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02003603 if (err < 0)
3604 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01003605
Takashi Iwai74490542019-02-04 16:07:35 +01003606 if (list_empty(&chip->mixer_list))
3607 snd_card_ro_proc_new(chip->card, "usbmixer", chip,
3608 snd_usb_mixer_proc_read);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01003609
Clemens Ladisch84957a82005-04-29 16:23:13 +02003610 list_add(&mixer->list, &chip->mixer_list);
3611 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02003612
3613_error:
3614 snd_usb_mixer_free(mixer);
3615 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02003616}
3617
Takashi Iwaia6cece92014-10-31 11:24:32 +01003618void snd_usb_mixer_disconnect(struct usb_mixer_interface *mixer)
Clemens Ladisch84957a82005-04-29 16:23:13 +02003619{
Takashi Iwai124751d2017-10-10 14:10:32 +02003620 if (mixer->disconnected)
3621 return;
3622 if (mixer->urb)
3623 usb_kill_urb(mixer->urb);
3624 if (mixer->rc_urb)
3625 usb_kill_urb(mixer->rc_urb);
Geoffrey D. Bennett9e4d5c12019-07-29 00:42:45 +09303626 if (mixer->private_free)
3627 mixer->private_free(mixer);
Takashi Iwai124751d2017-10-10 14:10:32 +02003628 mixer->disconnected = true;
Clemens Ladisch84957a82005-04-29 16:23:13 +02003629}
Takashi Iwai400362f2014-01-20 16:51:16 +01003630
3631#ifdef CONFIG_PM
3632/* stop any bus activity of a mixer */
3633static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
3634{
3635 usb_kill_urb(mixer->urb);
3636 usb_kill_urb(mixer->rc_urb);
3637}
3638
3639static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
3640{
3641 int err;
3642
3643 if (mixer->urb) {
3644 err = usb_submit_urb(mixer->urb, GFP_NOIO);
3645 if (err < 0)
3646 return err;
3647 }
3648
3649 return 0;
3650}
3651
3652int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer)
3653{
3654 snd_usb_mixer_inactivate(mixer);
Geoffrey D. Bennett9e4d5c12019-07-29 00:42:45 +09303655 if (mixer->private_suspend)
3656 mixer->private_suspend(mixer);
Takashi Iwai400362f2014-01-20 16:51:16 +01003657 return 0;
3658}
3659
Takashi Iwai3360b842014-11-18 11:47:04 +01003660static int restore_mixer_value(struct usb_mixer_elem_list *list)
Takashi Iwai400362f2014-01-20 16:51:16 +01003661{
Takashi Iwai8c558072018-05-03 12:33:32 +02003662 struct usb_mixer_elem_info *cval = mixer_elem_list_to_info(list);
Takashi Iwai400362f2014-01-20 16:51:16 +01003663 int c, err, idx;
3664
Takashi Iwai785b6f292021-06-23 02:30:49 +09303665 if (cval->val_type == USB_MIXER_BESPOKEN)
3666 return 0;
3667
Takashi Iwai400362f2014-01-20 16:51:16 +01003668 if (cval->cmask) {
3669 idx = 0;
3670 for (c = 0; c < MAX_CHANNELS; c++) {
3671 if (!(cval->cmask & (1 << c)))
3672 continue;
Yao-Wen Mao6aa69252015-08-28 16:33:25 +08003673 if (cval->cached & (1 << (c + 1))) {
Chris J Argeseef90452014-11-12 12:07:01 -06003674 err = snd_usb_set_cur_mix_value(cval, c + 1, idx,
Takashi Iwai400362f2014-01-20 16:51:16 +01003675 cval->cache_val[idx]);
3676 if (err < 0)
3677 return err;
3678 }
3679 idx++;
3680 }
3681 } else {
3682 /* master */
3683 if (cval->cached) {
Chris J Argeseef90452014-11-12 12:07:01 -06003684 err = snd_usb_set_cur_mix_value(cval, 0, 0, *cval->cache_val);
Takashi Iwai400362f2014-01-20 16:51:16 +01003685 if (err < 0)
3686 return err;
3687 }
3688 }
3689
3690 return 0;
3691}
3692
Takashi Iwai7b9cf902021-09-10 12:51:55 +02003693int snd_usb_mixer_resume(struct usb_mixer_interface *mixer)
Takashi Iwai400362f2014-01-20 16:51:16 +01003694{
Takashi Iwai3360b842014-11-18 11:47:04 +01003695 struct usb_mixer_elem_list *list;
Takashi Iwai400362f2014-01-20 16:51:16 +01003696 int id, err;
3697
Kai-Heng Feng44609fc2021-03-26 00:59:13 +08003698 /* restore cached mixer values */
3699 for (id = 0; id < MAX_ID_ELEMS; id++) {
3700 for_each_mixer_elem(list, mixer, id) {
Takashi Iwai7b9cf902021-09-10 12:51:55 +02003701 if (list->resume) {
3702 err = list->resume(list);
Kai-Heng Feng44609fc2021-03-26 00:59:13 +08003703 if (err < 0)
3704 return err;
Takashi Iwai400362f2014-01-20 16:51:16 +01003705 }
3706 }
3707 }
3708
Takashi Iwai964af632018-04-27 14:23:37 +02003709 snd_usb_mixer_resume_quirk(mixer);
3710
Takashi Iwai400362f2014-01-20 16:51:16 +01003711 return snd_usb_mixer_activate(mixer);
3712}
3713#endif
Takashi Iwai3360b842014-11-18 11:47:04 +01003714
3715void snd_usb_mixer_elem_init_std(struct usb_mixer_elem_list *list,
3716 struct usb_mixer_interface *mixer,
3717 int unitid)
3718{
3719 list->mixer = mixer;
3720 list->id = unitid;
3721 list->dump = snd_usb_mixer_dump_cval;
3722#ifdef CONFIG_PM
Takashi Iwai7b9cf902021-09-10 12:51:55 +02003723 list->resume = restore_mixer_value;
Takashi Iwai3360b842014-11-18 11:47:04 +01003724#endif
3725}