blob: 2e4a9dbc51faeca29529da8d231d779a10b92aed [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Mixer control part
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
11 *
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 */
28
Daniel Mack157a57b2010-06-16 17:57:30 +020029/*
30 * TODOs, for both the mixer and the streaming interfaces:
31 *
32 * - support for UAC2 effect units
33 * - support for graphical equalizers
34 * - RANGE and MEM set commands (UAC2)
35 * - RANGE and MEM interrupt dispatchers (UAC2)
36 * - audio channel clustering (UAC2)
37 * - audio sample rate converter units (UAC2)
38 * - proper handling of clock multipliers (UAC2)
39 * - dispatch clock change notifications (UAC2)
40 * - stop PCM streams which use a clock that became invalid
41 * - stop PCM streams which use a clock selector that has changed
42 * - parse available sample rates again when clock sources changed
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/bitops.h>
46#include <linux/init.h>
47#include <linux/list.h>
48#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/usb.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010051#include <linux/usb/audio.h>
Daniel Mack23caaf12010-03-11 21:13:25 +010052#include <linux/usb/audio-v2.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <sound/core.h>
55#include <sound/control.h>
Clemens Ladischb259b102005-04-29 16:29:28 +020056#include <sound/hwdep.h>
Clemens Ladischaafad562005-05-10 14:47:38 +020057#include <sound/info.h>
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +020058#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include "usbaudio.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010061#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010062#include "helper.h"
Daniel Mack7b1eda22010-03-11 21:13:22 +010063#include "mixer_quirks.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010064#include "power.h"
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +020065
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +010066#define MAX_ID_ELEMS 256
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068struct usb_audio_term {
69 int id;
70 int type;
71 int channels;
72 unsigned int chconfig;
73 int name;
74};
75
76struct usbmix_name_map;
77
Takashi Iwai86e07d32005-11-17 15:08:02 +010078struct mixer_build {
79 struct snd_usb_audio *chip;
Clemens Ladisch84957a82005-04-29 16:23:13 +020080 struct usb_mixer_interface *mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned char *buffer;
82 unsigned int buflen;
Jaroslav Kysela291186e2010-02-16 11:55:18 +010083 DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
Takashi Iwai86e07d32005-11-17 15:08:02 +010084 struct usb_audio_term oterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 const struct usbmix_name_map *map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +020086 const struct usbmix_selector_map *selector_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
Joseph Teichman1cdfa9f2011-02-08 01:22:36 -050089/*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -080090enum {
91 USB_XU_CLOCK_RATE = 0xe301,
92 USB_XU_CLOCK_SOURCE = 0xe302,
93 USB_XU_DIGITAL_IO_STATUS = 0xe303,
94 USB_XU_DEVICE_OPTIONS = 0xe304,
95 USB_XU_DIRECT_MONITORING = 0xe305,
96 USB_XU_METERING = 0xe306
97};
98enum {
99 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
100 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
101 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
102 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
103};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/*
106 * manual mapping of mixer names
107 * if the mixer topology is too complicated and the parsed names are
108 * ambiguous, add the entries in usbmixer_maps.c.
109 */
Daniel Mackf0b5e632010-03-11 21:13:23 +0100110#include "mixer_maps.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100112static const struct usbmix_name_map *
113find_map(struct mixer_build *state, int unitid, int control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100115 const struct usbmix_name_map *p = state->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100117 if (!p)
118 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 for (p = state->map; p->id; p++) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100121 if (p->id == unitid &&
122 (!control || !p->control || control == p->control))
123 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100125 return NULL;
126}
127
128/* get the mapped name if the unit matches */
129static int
130check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
131{
132 if (!p || !p->name)
133 return 0;
134
135 buflen--;
136 return strlcpy(buf, p->name, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139/* check whether the control should be ignored */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100140static inline int
141check_ignored_ctl(const struct usbmix_name_map *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100143 if (!p || p->name || p->dB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return 0;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100145 return 1;
146}
147
148/* dB mapping */
149static inline void check_mapped_dB(const struct usbmix_name_map *p,
150 struct usb_mixer_elem_info *cval)
151{
152 if (p && p->dB) {
153 cval->dBmin = p->dB->min;
154 cval->dBmax = p->dB->max;
Takashi Iwai38b65192011-08-19 07:55:10 +0200155 cval->initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200159/* get the mapped selector source name */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100160static int check_mapped_selector_name(struct mixer_build *state, int unitid,
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200161 int index, char *buf, int buflen)
162{
163 const struct usbmix_selector_map *p;
164
Daniel Mack6bc170e2014-05-24 10:58:16 +0200165 if (!state->selector_map)
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200166 return 0;
167 for (p = state->selector_map; p->id; p++) {
168 if (p->id == unitid && index < p->count)
169 return strlcpy(buf, p->names[index], buflen);
170 }
171 return 0;
172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
175 * find an audio control unit with the given unit id
176 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200177static void *find_audio_control_unit(struct mixer_build *state,
178 unsigned char unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Daniel Mack67e1daa2010-05-31 13:35:43 +0200180 /* we just parse the header */
181 struct uac_feature_unit_descriptor *hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Daniel Mack67e1daa2010-05-31 13:35:43 +0200183 while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
184 USB_DT_CS_INTERFACE)) != NULL) {
185 if (hdr->bLength >= 4 &&
186 hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
187 hdr->bDescriptorSubtype <= UAC2_SAMPLE_RATE_CONVERTER &&
188 hdr->bUnitID == unit)
189 return hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
Daniel Mack67e1daa2010-05-31 13:35:43 +0200191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return NULL;
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/*
196 * copy a string with the given id
197 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200198static int snd_usb_copy_string_desc(struct mixer_build *state,
199 int index, char *buf, int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
202 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)
263 return (cval->max - cval->min + cval->res - 1) / 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
281
282/*
283 * retrieve a mixer value
284 */
285
Daniel Mack6bc170e2014-05-24 10:58:16 +0200286static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request,
287 int validx, int *value_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200289 struct snd_usb_audio *chip = cval->mixer->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 unsigned char buf[2];
291 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
292 int timeout = 10;
Takashi Iwai978520b2012-10-12 15:12:55 +0200293 int idx = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Oliver Neukum88a85162011-03-11 14:51:12 +0100295 err = snd_usb_autoresume(cval->mixer->chip);
296 if (err < 0)
297 return -EIO;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200298
Takashi Iwai34f3c892012-10-15 12:16:02 +0200299 down_read(&chip->shutdown_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 while (timeout-- > 0) {
Takashi Iwai978520b2012-10-12 15:12:55 +0200301 if (chip->shutdown)
302 break;
303 idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200304 if (snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Takashi Iwai978520b2012-10-12 15:12:55 +0200306 validx, idx, buf, val_len) >= val_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
Takashi Iwai978520b2012-10-12 15:12:55 +0200308 err = 0;
309 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100312 usb_audio_dbg(chip,
313 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
314 request, validx, idx, cval->val_type);
Takashi Iwai978520b2012-10-12 15:12:55 +0200315 err = -EINVAL;
316
317 out:
Takashi Iwai34f3c892012-10-15 12:16:02 +0200318 up_read(&chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200319 snd_usb_autosuspend(cval->mixer->chip);
320 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Daniel Mack6bc170e2014-05-24 10:58:16 +0200323static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request,
324 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100325{
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200326 struct snd_usb_audio *chip = cval->mixer->chip;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200327 unsigned char buf[2 + 3 * sizeof(__u16)]; /* enough space for one range */
Daniel Mack23caaf12010-03-11 21:13:25 +0100328 unsigned char *val;
Takashi Iwai978520b2012-10-12 15:12:55 +0200329 int idx = 0, ret, size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100330 __u8 bRequest;
331
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200332 if (request == UAC_GET_CUR) {
333 bRequest = UAC2_CS_CUR;
334 size = sizeof(__u16);
335 } else {
336 bRequest = UAC2_CS_RANGE;
337 size = sizeof(buf);
338 }
339
340 memset(buf, 0, sizeof(buf));
Daniel Mack23caaf12010-03-11 21:13:25 +0100341
Oliver Neukum88a85162011-03-11 14:51:12 +0100342 ret = snd_usb_autoresume(chip) ? -EIO : 0;
343 if (ret)
344 goto error;
345
Takashi Iwai34f3c892012-10-15 12:16:02 +0200346 down_read(&chip->shutdown_rwsem);
Daniel Mack6bc170e2014-05-24 10:58:16 +0200347 if (chip->shutdown) {
Takashi Iwai978520b2012-10-12 15:12:55 +0200348 ret = -ENODEV;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200349 } else {
Takashi Iwai978520b2012-10-12 15:12:55 +0200350 idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
351 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
Daniel Mack23caaf12010-03-11 21:13:25 +0100352 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Takashi Iwai978520b2012-10-12 15:12:55 +0200353 validx, idx, buf, size);
354 }
Takashi Iwai34f3c892012-10-15 12:16:02 +0200355 up_read(&chip->shutdown_rwsem);
Oliver Neukum88a85162011-03-11 14:51:12 +0100356 snd_usb_autosuspend(chip);
Daniel Mack23caaf12010-03-11 21:13:25 +0100357
358 if (ret < 0) {
Oliver Neukum88a85162011-03-11 14:51:12 +0100359error:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100360 usb_audio_err(chip,
361 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
362 request, validx, idx, cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100363 return ret;
364 }
365
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200366 /* FIXME: how should we handle multiple triplets here? */
367
Daniel Mack23caaf12010-03-11 21:13:25 +0100368 switch (request) {
369 case UAC_GET_CUR:
370 val = buf;
371 break;
372 case UAC_GET_MIN:
373 val = buf + sizeof(__u16);
374 break;
375 case UAC_GET_MAX:
376 val = buf + sizeof(__u16) * 2;
377 break;
378 case UAC_GET_RES:
379 val = buf + sizeof(__u16) * 3;
380 break;
381 default:
382 return -EINVAL;
383 }
384
385 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(val, sizeof(__u16)));
386
387 return 0;
388}
389
Daniel Mack6bc170e2014-05-24 10:58:16 +0200390static int get_ctl_value(struct usb_mixer_elem_info *cval, int request,
391 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100392{
Eldad Zack9f814102012-11-28 23:55:35 +0100393 validx += cval->idx_off;
394
Daniel Mack23caaf12010-03-11 21:13:25 +0100395 return (cval->mixer->protocol == UAC_VERSION_1) ?
396 get_ctl_value_v1(cval, request, validx, value_ret) :
397 get_ctl_value_v2(cval, request, validx, value_ret);
398}
399
Daniel Mack6bc170e2014-05-24 10:58:16 +0200400static int get_cur_ctl_value(struct usb_mixer_elem_info *cval,
401 int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100403 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406/* channel = 0: master, 1 = first channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100407static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
408 int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Daniel Mack6bc170e2014-05-24 10:58:16 +0200410 return get_ctl_value(cval, UAC_GET_CUR,
411 (cval->control << 8) | channel,
412 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Takashi Iwai641b4872009-01-15 17:05:24 +0100415static int get_cur_mix_value(struct usb_mixer_elem_info *cval,
416 int channel, int index, int *value)
417{
418 int err;
419
420 if (cval->cached & (1 << channel)) {
421 *value = cval->cache_val[index];
422 return 0;
423 }
424 err = get_cur_mix_raw(cval, channel, value);
425 if (err < 0) {
426 if (!cval->mixer->ignore_ctl_error)
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100427 usb_audio_dbg(cval->mixer->chip,
428 "cannot get current value for control %d ch %d: err = %d\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200429 cval->control, channel, err);
Takashi Iwai641b4872009-01-15 17:05:24 +0100430 return err;
431 }
432 cval->cached |= 1 << channel;
433 cval->cache_val[index] = *value;
434 return 0;
435}
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/*
438 * set a mixer value
439 */
440
Daniel Mack7b1eda22010-03-11 21:13:22 +0100441int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
442 int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200444 struct snd_usb_audio *chip = cval->mixer->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned char buf[2];
Takashi Iwai978520b2012-10-12 15:12:55 +0200446 int idx = 0, val_len, err, timeout = 10;
Daniel Mack23caaf12010-03-11 21:13:25 +0100447
Eldad Zack9f814102012-11-28 23:55:35 +0100448 validx += cval->idx_off;
449
Daniel Mack23caaf12010-03-11 21:13:25 +0100450 if (cval->mixer->protocol == UAC_VERSION_1) {
451 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
452 } else { /* UAC_VERSION_2 */
453 /* audio class v2 controls are always 2 bytes in size */
454 val_len = sizeof(__u16);
455
456 /* FIXME */
457 if (request != UAC_SET_CUR) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100458 usb_audio_dbg(chip, "RANGE setting not yet supported\n");
Daniel Mack23caaf12010-03-11 21:13:25 +0100459 return -EINVAL;
460 }
461
462 request = UAC2_CS_CUR;
463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 value_set = convert_bytes_value(cval, value_set);
466 buf[0] = value_set & 0xff;
467 buf[1] = (value_set >> 8) & 0xff;
Oliver Neukum88a85162011-03-11 14:51:12 +0100468 err = snd_usb_autoresume(chip);
469 if (err < 0)
470 return -EIO;
Takashi Iwai34f3c892012-10-15 12:16:02 +0200471 down_read(&chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200472 while (timeout-- > 0) {
473 if (chip->shutdown)
474 break;
475 idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200476 if (snd_usb_ctl_msg(chip->dev,
477 usb_sndctrlpipe(chip->dev, 0), request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
Takashi Iwai978520b2012-10-12 15:12:55 +0200479 validx, idx, buf, val_len) >= 0) {
480 err = 0;
481 goto out;
Oliver Neukum88a85162011-03-11 14:51:12 +0100482 }
Takashi Iwai978520b2012-10-12 15:12:55 +0200483 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100484 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 +0200485 request, validx, idx, cval->val_type, buf[0], buf[1]);
Takashi Iwai978520b2012-10-12 15:12:55 +0200486 err = -EINVAL;
487
488 out:
Takashi Iwai34f3c892012-10-15 12:16:02 +0200489 up_read(&chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200490 snd_usb_autosuspend(chip);
491 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Daniel Mack6bc170e2014-05-24 10:58:16 +0200494static int set_cur_ctl_value(struct usb_mixer_elem_info *cval,
495 int validx, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Daniel Mack7b1eda22010-03-11 21:13:22 +0100497 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
Takashi Iwai641b4872009-01-15 17:05:24 +0100500static int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
501 int index, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Takashi Iwai641b4872009-01-15 17:05:24 +0100503 int err;
Daniel Macka6a33252010-05-31 13:35:37 +0200504 unsigned int read_only = (channel == 0) ?
505 cval->master_readonly :
506 cval->ch_readonly & (1 << (channel - 1));
507
508 if (read_only) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100509 usb_audio_dbg(cval->mixer->chip,
510 "%s(): channel %d of control %d is read_only\n",
Daniel Macka6a33252010-05-31 13:35:37 +0200511 __func__, channel, cval->control);
512 return 0;
513 }
514
Daniel Mack6bc170e2014-05-24 10:58:16 +0200515 err = snd_usb_mixer_set_ctl_value(cval,
516 UAC_SET_CUR, (cval->control << 8) | channel,
517 value);
Takashi Iwai641b4872009-01-15 17:05:24 +0100518 if (err < 0)
519 return err;
520 cval->cached |= 1 << channel;
521 cval->cache_val[index] = value;
522 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200525/*
526 * TLV callback for mixer volume controls
527 */
Felix Homann285de9c2012-04-23 20:24:24 +0200528int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200529 unsigned int size, unsigned int __user *_tlv)
530{
531 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Takashi Iwaib8e1c732009-06-16 14:04:37 +0200532 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200533
534 if (size < sizeof(scale))
535 return -ENOMEM;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100536 scale[2] = cval->dBmin;
537 scale[3] = cval->dBmax;
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200538 if (copy_to_user(_tlv, scale, sizeof(scale)))
539 return -EFAULT;
540 return 0;
541}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543/*
544 * parser routines begin here...
545 */
546
Takashi Iwai86e07d32005-11-17 15:08:02 +0100547static int parse_audio_unit(struct mixer_build *state, int unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549
550/*
551 * check if the input/output channel routing is enabled on the given bitmap.
552 * used for mixer unit parser
553 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200554static int check_matrix_bitmap(unsigned char *bmap,
555 int ich, int och, int num_outs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 int idx = ich * num_outs + och;
558 return bmap[idx >> 3] & (0x80 >> (idx & 7));
559}
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561/*
562 * add an alsa control element
563 * search and increment the index until an empty slot is found.
564 *
565 * if failed, give up and free the control instance.
566 */
567
Daniel Mackef9d5972011-05-25 09:09:00 +0200568int snd_usb_mixer_add_control(struct usb_mixer_interface *mixer,
569 struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100571 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200573
Daniel Mackef9d5972011-05-25 09:09:00 +0200574 while (snd_ctl_find_id(mixer->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 kctl->id.index++;
Daniel Mackef9d5972011-05-25 09:09:00 +0200576 if ((err = snd_ctl_add(mixer->chip->card, kctl)) < 0) {
Daniel Mack6bc170e2014-05-24 10:58:16 +0200577 usb_audio_dbg(mixer->chip, "cannot add control (err = %d)\n",
578 err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200579 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200581 cval->elem_id = &kctl->id;
Daniel Mackef9d5972011-05-25 09:09:00 +0200582 cval->next_id_elem = mixer->id_elems[cval->id];
583 mixer->id_elems[cval->id] = cval;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200584 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587/*
588 * get a terminal name string
589 */
590
591static struct iterm_name_combo {
592 int type;
593 char *name;
594} iterm_names[] = {
595 { 0x0300, "Output" },
596 { 0x0301, "Speaker" },
597 { 0x0302, "Headphone" },
598 { 0x0303, "HMD Audio" },
599 { 0x0304, "Desktop Speaker" },
600 { 0x0305, "Room Speaker" },
601 { 0x0306, "Com Speaker" },
602 { 0x0307, "LFE" },
603 { 0x0600, "External In" },
604 { 0x0601, "Analog In" },
605 { 0x0602, "Digital In" },
606 { 0x0603, "Line" },
607 { 0x0604, "Legacy In" },
608 { 0x0605, "IEC958 In" },
609 { 0x0606, "1394 DA Stream" },
610 { 0x0607, "1394 DV Stream" },
611 { 0x0700, "Embedded" },
612 { 0x0701, "Noise Source" },
613 { 0x0702, "Equalization Noise" },
614 { 0x0703, "CD" },
615 { 0x0704, "DAT" },
616 { 0x0705, "DCC" },
617 { 0x0706, "MiniDisk" },
618 { 0x0707, "Analog Tape" },
619 { 0x0708, "Phonograph" },
620 { 0x0709, "VCR Audio" },
621 { 0x070a, "Video Disk Audio" },
622 { 0x070b, "DVD Audio" },
623 { 0x070c, "TV Tuner Audio" },
624 { 0x070d, "Satellite Rec Audio" },
625 { 0x070e, "Cable Tuner Audio" },
626 { 0x070f, "DSS Audio" },
627 { 0x0710, "Radio Receiver" },
628 { 0x0711, "Radio Transmitter" },
629 { 0x0712, "Multi-Track Recorder" },
630 { 0x0713, "Synthesizer" },
631 { 0 },
632};
633
Takashi Iwai86e07d32005-11-17 15:08:02 +0100634static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 unsigned char *name, int maxlen, int term_only)
636{
637 struct iterm_name_combo *names;
638
639 if (iterm->name)
Daniel Mack6bc170e2014-05-24 10:58:16 +0200640 return snd_usb_copy_string_desc(state, iterm->name,
641 name, maxlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 /* virtual type - not a real terminal */
644 if (iterm->type >> 16) {
645 if (term_only)
646 return 0;
647 switch (iterm->type >> 16) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100648 case UAC_SELECTOR_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200649 strcpy(name, "Selector");
650 return 8;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200651 case UAC1_PROCESSING_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200652 strcpy(name, "Process Unit");
653 return 12;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200654 case UAC1_EXTENSION_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200655 strcpy(name, "Ext Unit");
656 return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100657 case UAC_MIXER_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200658 strcpy(name, "Mixer");
659 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 default:
661 return sprintf(name, "Unit %d", iterm->id);
662 }
663 }
664
665 switch (iterm->type & 0xff00) {
666 case 0x0100:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200667 strcpy(name, "PCM");
668 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 case 0x0200:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200670 strcpy(name, "Mic");
671 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 case 0x0400:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200673 strcpy(name, "Headset");
674 return 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 case 0x0500:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200676 strcpy(name, "Phone");
677 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679
Daniel Mack6bc170e2014-05-24 10:58:16 +0200680 for (names = iterm_names; names->type; names++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (names->type == iterm->type) {
682 strcpy(name, names->name);
683 return strlen(names->name);
684 }
Daniel Mack6bc170e2014-05-24 10:58:16 +0200685 }
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return 0;
688}
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690/*
691 * parse the source unit recursively until it reaches to a terminal
692 * or a branched unit.
693 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200694static int check_input_term(struct mixer_build *state, int id,
695 struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Daniel Mack09414202010-05-31 13:35:44 +0200697 int err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100698 void *p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 memset(term, 0, sizeof(*term));
701 while ((p1 = find_audio_control_unit(state, id)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100702 unsigned char *hdr = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100704 switch (hdr[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100705 case UAC_INPUT_TERMINAL:
Daniel Mack23caaf12010-03-11 21:13:25 +0100706 if (state->mixer->protocol == UAC_VERSION_1) {
707 struct uac_input_terminal_descriptor *d = p1;
708 term->type = le16_to_cpu(d->wTerminalType);
709 term->channels = d->bNrChannels;
710 term->chconfig = le16_to_cpu(d->wChannelConfig);
711 term->name = d->iTerminal;
712 } else { /* UAC_VERSION_2 */
713 struct uac2_input_terminal_descriptor *d = p1;
714 term->type = le16_to_cpu(d->wTerminalType);
715 term->channels = d->bNrChannels;
716 term->chconfig = le32_to_cpu(d->bmChannelConfig);
717 term->name = d->iTerminal;
Daniel Mack09414202010-05-31 13:35:44 +0200718
719 /* call recursively to get the clock selectors */
720 err = check_input_term(state, d->bCSourceID, term);
721 if (err < 0)
722 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100725 case UAC_FEATURE_UNIT: {
726 /* the header is the same for v1 and v2 */
727 struct uac_feature_unit_descriptor *d = p1;
Daniel Mack5e688882010-05-08 11:24:56 +0200728 id = d->bSourceID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 break; /* continue to parse */
Daniel Mack23caaf12010-03-11 21:13:25 +0100730 }
731 case UAC_MIXER_UNIT: {
732 struct uac_mixer_unit_descriptor *d = p1;
733 term->type = d->bDescriptorSubtype << 16; /* virtual type */
734 term->channels = uac_mixer_unit_bNrChannels(d);
735 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
736 term->name = uac_mixer_unit_iMixer(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100738 }
Daniel Mack09414202010-05-31 13:35:44 +0200739 case UAC_SELECTOR_UNIT:
740 case UAC2_CLOCK_SELECTOR: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100741 struct uac_selector_unit_descriptor *d = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 /* call recursively to retrieve the channel info */
Daniel Mack4d7b86c2013-03-19 21:09:24 +0100743 err = check_input_term(state, d->baSourceID[0], term);
744 if (err < 0)
745 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100746 term->type = d->bDescriptorSubtype << 16; /* virtual type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100748 term->name = uac_selector_unit_iSelector(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100750 }
Daniel Mack69da9bc2010-06-16 17:57:28 +0200751 case UAC1_PROCESSING_UNIT:
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100752 case UAC1_EXTENSION_UNIT:
753 /* UAC2_PROCESSING_UNIT_V2 */
Torstein Hegge61ac5132013-03-19 17:12:14 +0100754 /* UAC2_EFFECT_UNIT */
755 case UAC2_EXTENSION_UNIT_V2: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100756 struct uac_processing_unit_descriptor *d = p1;
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100757
758 if (state->mixer->protocol == UAC_VERSION_2 &&
759 hdr[2] == UAC2_EFFECT_UNIT) {
760 /* UAC2/UAC1 unit IDs overlap here in an
761 * uncompatible way. Ignore this unit for now.
762 */
763 return 0;
764 }
765
Daniel Mack23caaf12010-03-11 21:13:25 +0100766 if (d->bNrInPins) {
767 id = d->baSourceID[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 break; /* continue to parse */
769 }
Daniel Mack23caaf12010-03-11 21:13:25 +0100770 term->type = d->bDescriptorSubtype << 16; /* virtual type */
771 term->channels = uac_processing_unit_bNrChannels(d);
772 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
773 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100775 }
Daniel Mack09414202010-05-31 13:35:44 +0200776 case UAC2_CLOCK_SOURCE: {
777 struct uac_clock_source_descriptor *d = p1;
778 term->type = d->bDescriptorSubtype << 16; /* virtual type */
779 term->id = id;
780 term->name = d->iClockSource;
781 return 0;
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 default:
784 return -ENODEV;
785 }
786 }
787 return -ENODEV;
788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790/*
791 * Feature Unit
792 */
793
794/* feature unit control information */
795struct usb_feature_control_info {
796 const char *name;
797 unsigned int type; /* control type (mute, volume, etc.) */
798};
799
800static struct usb_feature_control_info audio_feature_info[] = {
Daniel Mack2e0281d2010-05-31 13:35:42 +0200801 { "Mute", USB_MIXER_INV_BOOLEAN },
802 { "Volume", USB_MIXER_S16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 { "Tone Control - Bass", USB_MIXER_S8 },
804 { "Tone Control - Mid", USB_MIXER_S8 },
805 { "Tone Control - Treble", USB_MIXER_S8 },
806 { "Graphic Equalizer", USB_MIXER_S8 }, /* FIXME: not implemeted yet */
Daniel Mack2e0281d2010-05-31 13:35:42 +0200807 { "Auto Gain Control", USB_MIXER_BOOLEAN },
808 { "Delay Control", USB_MIXER_U16 },
809 { "Bass Boost", USB_MIXER_BOOLEAN },
810 { "Loudness", USB_MIXER_BOOLEAN },
811 /* UAC2 specific */
812 { "Input Gain Control", USB_MIXER_U16 },
813 { "Input Gain Pad Control", USB_MIXER_BOOLEAN },
814 { "Phase Inverter Control", USB_MIXER_BOOLEAN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815};
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817/* private_free callback */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100818static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Jesper Juhl4d572772005-05-30 17:30:32 +0200820 kfree(kctl->private_data);
821 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824/*
825 * interface to ALSA control for feature/mixer units
826 */
827
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100828/* volume control quirks */
829static void volume_control_quirks(struct usb_mixer_elem_info *cval,
830 struct snd_kcontrol *kctl)
831{
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100832 struct snd_usb_audio *chip = cval->mixer->chip;
833 switch (chip->usb_id) {
Eldad Zackd50ed622012-11-28 23:55:39 +0100834 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
Matt Gruskine9a25e02013-02-09 12:56:35 -0500835 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
Eldad Zackd50ed622012-11-28 23:55:39 +0100836 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
837 cval->min = 0x0000;
838 cval->max = 0xffff;
839 cval->res = 0x00e6;
840 break;
841 }
842 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
843 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
844 cval->min = 0x00;
845 cval->max = 0xff;
846 break;
847 }
848 if (strstr(kctl->id.name, "Effect Return") != NULL) {
849 cval->min = 0xb706;
850 cval->max = 0xff7b;
851 cval->res = 0x0073;
852 break;
853 }
854 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
855 (strstr(kctl->id.name, "Effect Send") != NULL)) {
856 cval->min = 0xb5fb; /* -73 dB = 0xb6ff */
857 cval->max = 0xfcfe;
858 cval->res = 0x0073;
859 }
860 break;
861
Felix Homannd34bf142012-04-23 20:24:27 +0200862 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
863 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
864 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100865 usb_audio_info(chip,
866 "set quirk for FTU Effect Duration\n");
Felix Homannd34bf142012-04-23 20:24:27 +0200867 cval->min = 0x0000;
868 cval->max = 0x7f00;
869 cval->res = 0x0100;
870 break;
871 }
872 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
873 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100874 usb_audio_info(chip,
875 "set quirks for FTU Effect Feedback/Volume\n");
Felix Homannd34bf142012-04-23 20:24:27 +0200876 cval->min = 0x00;
877 cval->max = 0x7f;
878 break;
879 }
880 break;
881
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100882 case USB_ID(0x0471, 0x0101):
883 case USB_ID(0x0471, 0x0104):
884 case USB_ID(0x0471, 0x0105):
885 case USB_ID(0x0672, 0x1041):
886 /* quirk for UDA1321/N101.
887 * note that detection between firmware 2.1.1.7 (N101)
888 * and later 2.1.1.21 is not very clear from datasheets.
889 * I hope that the min value is -15360 for newer firmware --jk
890 */
891 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
892 cval->min == -15616) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100893 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100894 "set volume quirk for UDA1321/N101 chip\n");
895 cval->max = -256;
896 }
897 break;
898
899 case USB_ID(0x046d, 0x09a4):
900 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100901 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100902 "set volume quirk for QuickCam E3500\n");
903 cval->min = 6080;
904 cval->max = 8768;
905 cval->res = 192;
906 }
907 break;
908
Takashi Iwaie805ca82014-03-05 12:34:39 +0100909 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100910 case USB_ID(0x046d, 0x0808):
911 case USB_ID(0x046d, 0x0809):
Takashi Iwai36691e12013-06-17 10:25:02 +0200912 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
Alexey Fisher55c00082011-11-09 11:39:24 +0100913 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
Takashi Iwai11e70642013-06-05 08:35:26 +0200914 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
Maksim A. Boyko140d37d2013-08-10 12:20:02 +0400915 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100916 case USB_ID(0x046d, 0x0991):
917 /* Most audio usb devices lie about volume resolution.
918 * Most Logitech webcams have res = 384.
919 * Proboly there is some logitech magic behind this number --fishor
920 */
921 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100922 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100923 "set resolution quirk: cval->res = 384\n");
924 cval->res = 384;
925 }
926 break;
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100927 }
928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/*
931 * retrieve the minimum and maximum values for the specified control
932 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100933static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
934 int default_min, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
936 /* for failsafe */
937 cval->min = default_min;
938 cval->max = cval->min + 1;
939 cval->res = 1;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100940 cval->dBmin = cval->dBmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 if (cval->val_type == USB_MIXER_BOOLEAN ||
943 cval->val_type == USB_MIXER_INV_BOOLEAN) {
944 cval->initialized = 1;
945 } else {
946 int minchn = 0;
947 if (cval->cmask) {
948 int i;
949 for (i = 0; i < MAX_CHANNELS; i++)
950 if (cval->cmask & (1 << i)) {
951 minchn = i + 1;
952 break;
953 }
954 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100955 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
956 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100957 usb_audio_err(cval->mixer->chip,
958 "%d:%d: cannot get min/max values for control %d (id %d)\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200959 cval->id, snd_usb_ctrl_intf(cval->mixer->chip),
960 cval->control, cval->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return -EINVAL;
962 }
Daniel Mack6bc170e2014-05-24 10:58:16 +0200963 if (get_ctl_value(cval, UAC_GET_RES,
964 (cval->control << 8) | minchn,
965 &cval->res) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 cval->res = 1;
967 } else {
968 int last_valid_res = cval->res;
969
970 while (cval->res > 1) {
Daniel Mack7b1eda22010-03-11 21:13:22 +0100971 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
Daniel Mack6bc170e2014-05-24 10:58:16 +0200972 (cval->control << 8) | minchn,
973 cval->res / 2) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 break;
975 cval->res /= 2;
976 }
Daniel Mack6bc170e2014-05-24 10:58:16 +0200977 if (get_ctl_value(cval, UAC_GET_RES,
978 (cval->control << 8) | minchn, &cval->res) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 cval->res = last_valid_res;
980 }
981 if (cval->res == 0)
982 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +0200983
984 /* Additional checks for the proper resolution
985 *
986 * Some devices report smaller resolutions than actually
987 * reacting. They don't return errors but simply clip
988 * to the lower aligned value.
989 */
990 if (cval->min + cval->res < cval->max) {
991 int last_valid_res = cval->res;
992 int saved, test, check;
Takashi Iwai641b4872009-01-15 17:05:24 +0100993 get_cur_mix_raw(cval, minchn, &saved);
Takashi Iwai14790f12006-03-28 17:58:28 +0200994 for (;;) {
995 test = saved;
996 if (test < cval->max)
997 test += cval->res;
998 else
999 test -= cval->res;
1000 if (test < cval->min || test > cval->max ||
Takashi Iwai641b4872009-01-15 17:05:24 +01001001 set_cur_mix_value(cval, minchn, 0, test) ||
1002 get_cur_mix_raw(cval, minchn, &check)) {
Takashi Iwai14790f12006-03-28 17:58:28 +02001003 cval->res = last_valid_res;
1004 break;
1005 }
1006 if (test == check)
1007 break;
1008 cval->res *= 2;
1009 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001010 set_cur_mix_value(cval, minchn, 0, saved);
Takashi Iwai14790f12006-03-28 17:58:28 +02001011 }
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 cval->initialized = 1;
1014 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001015
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001016 if (kctl)
1017 volume_control_quirks(cval, kctl);
1018
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001019 /* USB descriptions contain the dB scale in 1/256 dB unit
1020 * while ALSA TLV contains in 1/100 dB unit
1021 */
1022 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
1023 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
1024 if (cval->dBmin > cval->dBmax) {
1025 /* something is wrong; assume it's either from/to 0dB */
1026 if (cval->dBmin < 0)
1027 cval->dBmax = 0;
1028 else if (cval->dBmin > 0)
1029 cval->dBmin = 0;
1030 if (cval->dBmin > cval->dBmax) {
1031 /* totally crap, return an error */
1032 return -EINVAL;
1033 }
1034 }
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 0;
1037}
1038
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001039#define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041/* get a feature/mixer unit info */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001042static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
1043 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001045 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 if (cval->val_type == USB_MIXER_BOOLEAN ||
1048 cval->val_type == USB_MIXER_INV_BOOLEAN)
1049 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1050 else
1051 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1052 uinfo->count = cval->channels;
1053 if (cval->val_type == USB_MIXER_BOOLEAN ||
1054 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1055 uinfo->value.integer.min = 0;
1056 uinfo->value.integer.max = 1;
1057 } else {
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001058 if (!cval->initialized) {
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001059 get_min_max_with_quirks(cval, 0, kcontrol);
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001060 if (cval->initialized && cval->dBmin >= cval->dBmax) {
1061 kcontrol->vd[0].access &=
1062 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1063 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK);
1064 snd_ctl_notify(cval->mixer->chip->card,
1065 SNDRV_CTL_EVENT_MASK_INFO,
1066 &kcontrol->id);
1067 }
1068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +02001070 uinfo->value.integer.max =
1071 (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073 return 0;
1074}
1075
1076/* get the current value from feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001077static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol,
1078 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001080 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 int c, cnt, val, err;
1082
Takashi Iwai641b4872009-01-15 17:05:24 +01001083 ucontrol->value.integer.value[0] = cval->min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (cval->cmask) {
1085 cnt = 0;
1086 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001087 if (!(cval->cmask & (1 << c)))
1088 continue;
1089 err = get_cur_mix_value(cval, c + 1, cnt, &val);
1090 if (err < 0)
1091 return cval->mixer->ignore_ctl_error ? 0 : err;
1092 val = get_relative_value(cval, val);
1093 ucontrol->value.integer.value[cnt] = val;
1094 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001096 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 } else {
1098 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +01001099 err = get_cur_mix_value(cval, 0, 0, &val);
1100 if (err < 0)
1101 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 val = get_relative_value(cval, val);
1103 ucontrol->value.integer.value[0] = val;
1104 }
1105 return 0;
1106}
1107
1108/* put the current value to feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001109static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
1110 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001112 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 int c, cnt, val, oval, err;
1114 int changed = 0;
1115
1116 if (cval->cmask) {
1117 cnt = 0;
1118 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001119 if (!(cval->cmask & (1 << c)))
1120 continue;
1121 err = get_cur_mix_value(cval, c + 1, cnt, &oval);
1122 if (err < 0)
1123 return cval->mixer->ignore_ctl_error ? 0 : err;
1124 val = ucontrol->value.integer.value[cnt];
1125 val = get_abs_value(cval, val);
1126 if (oval != val) {
1127 set_cur_mix_value(cval, c + 1, cnt, val);
1128 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001130 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132 } else {
1133 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +01001134 err = get_cur_mix_value(cval, 0, 0, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (err < 0)
Takashi Iwai641b4872009-01-15 17:05:24 +01001136 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 val = ucontrol->value.integer.value[0];
1138 val = get_abs_value(cval, val);
1139 if (val != oval) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001140 set_cur_mix_value(cval, 0, 0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 changed = 1;
1142 }
1143 }
1144 return changed;
1145}
1146
Takashi Iwai86e07d32005-11-17 15:08:02 +01001147static struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1149 .name = "", /* will be filled later manually */
1150 .info = mixer_ctl_feature_info,
1151 .get = mixer_ctl_feature_get,
1152 .put = mixer_ctl_feature_put,
1153};
1154
Daniel Mack23caaf12010-03-11 21:13:25 +01001155/* the read-only variant */
1156static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
1157 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1158 .name = "", /* will be filled later manually */
1159 .info = mixer_ctl_feature_info,
1160 .get = mixer_ctl_feature_get,
1161 .put = NULL,
1162};
1163
Daniel Mack6bc170e2014-05-24 10:58:16 +02001164/*
1165 * This symbol is exported in order to allow the mixer quirks to
1166 * hook up to the standard feature unit control mechanism
1167 */
Daniel Mack9e386582011-05-25 09:09:01 +02001168struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170/*
1171 * build a feature control
1172 */
Takashi Iwai08d1e632009-10-02 14:06:08 +02001173static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
1174{
1175 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
1176}
1177
Daniel Mack6bc170e2014-05-24 10:58:16 +02001178/*
1179 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1180 * rename it to "Headphone". We determine if something is a headphone
1181 * similar to how udev determines form factor.
1182 */
David Henningsson9b4ef972012-11-23 13:48:55 +01001183static void check_no_speaker_on_headset(struct snd_kcontrol *kctl,
1184 struct snd_card *card)
1185{
1186 const char *names_to_check[] = {
1187 "Headset", "headset", "Headphone", "headphone", NULL};
1188 const char **s;
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001189 bool found = false;
David Henningsson9b4ef972012-11-23 13:48:55 +01001190
1191 if (strcmp("Speaker", kctl->id.name))
1192 return;
1193
1194 for (s = names_to_check; *s; s++)
1195 if (strstr(card->shortname, *s)) {
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001196 found = true;
David Henningsson9b4ef972012-11-23 13:48:55 +01001197 break;
1198 }
1199
1200 if (!found)
1201 return;
1202
1203 strlcpy(kctl->id.name, "Headphone", sizeof(kctl->id.name));
1204}
1205
Daniel Mack99fc8642010-03-11 21:13:24 +01001206static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 unsigned int ctl_mask, int control,
Daniel Mack23caaf12010-03-11 21:13:25 +01001208 struct usb_audio_term *iterm, int unitid,
Daniel Macka6a33252010-05-31 13:35:37 +02001209 int readonly_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
Daniel Mack99fc8642010-03-11 21:13:24 +01001211 struct uac_feature_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 unsigned int len = 0;
1213 int mapped_name = 0;
Daniel Mack99fc8642010-03-11 21:13:24 +01001214 int nameid = uac_feature_unit_iFeature(desc);
Takashi Iwai86e07d32005-11-17 15:08:02 +01001215 struct snd_kcontrol *kctl;
1216 struct usb_mixer_elem_info *cval;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001217 const struct usbmix_name_map *map;
Alexey Fisher80aceff2011-03-10 14:53:38 +01001218 unsigned int range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 control++; /* change from zero-based to 1-based value */
1221
Daniel Mack65f25da2010-05-31 13:35:41 +02001222 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 /* FIXME: not supported yet */
1224 return;
1225 }
1226
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001227 map = find_map(state, unitid, control);
1228 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return;
1230
Takashi Iwai561b2202005-09-09 14:22:34 +02001231 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001232 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 return;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001234 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 cval->id = unitid;
1236 cval->control = control;
1237 cval->cmask = ctl_mask;
1238 cval->val_type = audio_feature_info[control-1].type;
Daniel Macka6a33252010-05-31 13:35:37 +02001239 if (ctl_mask == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 cval->channels = 1; /* master channel */
Daniel Macka6a33252010-05-31 13:35:37 +02001241 cval->master_readonly = readonly_mask;
1242 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 int i, c = 0;
1244 for (i = 0; i < 16; i++)
1245 if (ctl_mask & (1 << i))
1246 c++;
1247 cval->channels = c;
Daniel Macka6a33252010-05-31 13:35:37 +02001248 cval->ch_readonly = readonly_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250
Daniel Mack6bc170e2014-05-24 10:58:16 +02001251 /*
1252 * If all channels in the mask are marked read-only, make the control
Daniel Macka6a33252010-05-31 13:35:37 +02001253 * read-only. set_cur_mix_value() will check the mask again and won't
Daniel Mack6bc170e2014-05-24 10:58:16 +02001254 * issue write commands to read-only channels.
1255 */
Daniel Macka6a33252010-05-31 13:35:37 +02001256 if (cval->channels == readonly_mask)
Daniel Mack23caaf12010-03-11 21:13:25 +01001257 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1258 else
1259 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1260
Daniel Mack6bc170e2014-05-24 10:58:16 +02001261 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001262 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 kfree(cval);
1264 return;
1265 }
1266 kctl->private_free = usb_mixer_elem_free;
1267
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001268 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 mapped_name = len != 0;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001270 if (!len && nameid)
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001271 len = snd_usb_copy_string_desc(state, nameid,
1272 kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 switch (control) {
Daniel Mack65f25da2010-05-31 13:35:41 +02001275 case UAC_FU_MUTE:
1276 case UAC_FU_VOLUME:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001277 /*
1278 * determine the control name. the rule is:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 * - if a name id is given in descriptor, use it.
1280 * - if the connected input can be determined, then use the name
1281 * of terminal type.
1282 * - if the connected output can be determined, use it.
1283 * - otherwise, anonymous name.
1284 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001285 if (!len) {
1286 len = get_term_name(state, iterm, kctl->id.name,
1287 sizeof(kctl->id.name), 1);
1288 if (!len)
1289 len = get_term_name(state, &state->oterm,
1290 kctl->id.name,
1291 sizeof(kctl->id.name), 1);
1292 if (!len)
1293 len = snprintf(kctl->id.name,
1294 sizeof(kctl->id.name),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 "Feature %d", unitid);
1296 }
David Henningsson9b4ef972012-11-23 13:48:55 +01001297
1298 if (!mapped_name)
1299 check_no_speaker_on_headset(kctl, state->mixer->chip->card);
1300
Daniel Mack6bc170e2014-05-24 10:58:16 +02001301 /*
1302 * determine the stream direction:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 * if the connected output is USB stream, then it's likely a
1304 * capture stream. otherwise it should be playback (hopefully :)
1305 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001306 if (!mapped_name && !(state->oterm.type >> 16)) {
1307 if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02001308 len = append_ctl_name(kctl, " Capture");
Daniel Mack6bc170e2014-05-24 10:58:16 +02001309 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02001310 len = append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
Daniel Mack65f25da2010-05-31 13:35:41 +02001312 append_ctl_name(kctl, control == UAC_FU_MUTE ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001313 " Switch" : " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 default:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001316 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1318 sizeof(kctl->id.name));
1319 break;
1320 }
1321
Takashi Iwaie1825342012-05-14 17:11:06 +02001322 /* get min/max values */
1323 get_min_max_with_quirks(cval, 0, kctl);
1324
1325 if (control == UAC_FU_VOLUME) {
1326 check_mapped_dB(map, cval);
1327 if (cval->dBmin < cval->dBmax || !cval->initialized) {
1328 kctl->tlv.c = snd_usb_mixer_vol_tlv;
1329 kctl->vd[0].access |=
1330 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1331 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1332 }
1333 }
1334
Alexey Fisher80aceff2011-03-10 14:53:38 +01001335 range = (cval->max - cval->min) / cval->res;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001336 /*
1337 * Are there devices with volume range more than 255? I use a bit more
Alexey Fisher80aceff2011-03-10 14:53:38 +01001338 * to be sure. 384 is a resolution magic number found on Logitech
1339 * devices. It will definitively catch all buggy Logitech devices.
1340 */
1341 if (range > 384) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001342 usb_audio_warn(state->chip,
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001343 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
Daniel Mack6bc170e2014-05-24 10:58:16 +02001344 range);
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001345 usb_audio_warn(state->chip,
1346 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
1347 cval->id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001348 cval->min, cval->max, cval->res);
Alexey Fisher80aceff2011-03-10 14:53:38 +01001349 }
1350
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001351 usb_audio_dbg(state->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +02001352 cval->id, kctl->id.name, cval->channels,
1353 cval->min, cval->max, cval->res);
Daniel Mackef9d5972011-05-25 09:09:00 +02001354 snd_usb_mixer_add_control(state->mixer, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357/*
1358 * parse a feature unit
1359 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001360 * most of controls are defined here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001362static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
1363 void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
1365 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001366 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 unsigned int master_bits, first_ch_bits;
1368 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001369 struct uac_feature_unit_descriptor *hdr = _ftr;
1370 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Daniel Mack23caaf12010-03-11 21:13:25 +01001372 if (state->mixer->protocol == UAC_VERSION_1) {
1373 csize = hdr->bControlSize;
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001374 if (!csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001375 usb_audio_dbg(state->chip,
1376 "unit %u: invalid bControlSize == 0\n",
1377 unitid);
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001378 return -EINVAL;
1379 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001380 channels = (hdr->bLength - 7) / csize - 1;
1381 bmaControls = hdr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001382 if (hdr->bLength < 7 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001383 usb_audio_err(state->chip,
1384 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1385 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001386 return -EINVAL;
1387 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001388 } else {
1389 struct uac2_feature_unit_descriptor *ftr = _ftr;
1390 csize = 4;
Daniel Macke8d0fee2010-05-27 20:15:14 +02001391 channels = (hdr->bLength - 6) / 4 - 1;
Daniel Mack23caaf12010-03-11 21:13:25 +01001392 bmaControls = ftr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001393 if (hdr->bLength < 6 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001394 usb_audio_err(state->chip,
1395 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1396 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001397 return -EINVAL;
1398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
1400
1401 /* parse the source unit */
Daniel Mack23caaf12010-03-11 21:13:25 +01001402 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return err;
1404
1405 /* determine the input source type and name */
Daniel Mack4d7b86c2013-03-19 21:09:24 +01001406 err = check_input_term(state, hdr->bSourceID, &iterm);
1407 if (err < 0)
1408 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Daniel Mack23caaf12010-03-11 21:13:25 +01001410 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001411 /* master configuration quirks */
1412 switch (state->chip->usb_id) {
1413 case USB_ID(0x08bb, 0x2702):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001414 usb_audio_info(state->chip,
1415 "usbmixer: master volume quirk for PCM2702 chip\n");
Javier Kohen0c3cee52009-11-17 15:36:13 +01001416 /* disable non-functional volume control */
Daniel Mack65f25da2010-05-31 13:35:41 +02001417 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001418 break;
David Henningssonc1051432012-09-20 10:20:41 +02001419 case USB_ID(0x1130, 0xf211):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001420 usb_audio_info(state->chip,
1421 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
David Henningssonc1051432012-09-20 10:20:41 +02001422 /* disable non-functional volume control */
1423 channels = 0;
1424 break;
1425
Javier Kohen0c3cee52009-11-17 15:36:13 +01001426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (channels > 0)
Daniel Mack23caaf12010-03-11 21:13:25 +01001428 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 else
1430 first_ch_bits = 0;
Daniel Mack23caaf12010-03-11 21:13:25 +01001431
1432 if (state->mixer->protocol == UAC_VERSION_1) {
1433 /* check all control types */
1434 for (i = 0; i < 10; i++) {
1435 unsigned int ch_bits = 0;
1436 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001437 unsigned int mask;
1438
1439 mask = snd_usb_combine_bytes(bmaControls +
1440 csize * (j+1), csize);
Daniel Mack23caaf12010-03-11 21:13:25 +01001441 if (mask & (1 << i))
1442 ch_bits |= (1 << j);
1443 }
1444 /* audio class v1 controls are never read-only */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001445
1446 /*
1447 * The first channel must be set
1448 * (for ease of programming).
1449 */
1450 if (ch_bits & 1)
1451 build_feature_ctl(state, _ftr, ch_bits, i,
1452 &iterm, unitid, 0);
Daniel Mack23caaf12010-03-11 21:13:25 +01001453 if (master_bits & (1 << i))
Daniel Mack6bc170e2014-05-24 10:58:16 +02001454 build_feature_ctl(state, _ftr, 0, i, &iterm,
1455 unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001457 } else { /* UAC_VERSION_2 */
Takashi Iwaid09c06c2011-10-13 08:19:09 +02001458 for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001459 unsigned int ch_bits = 0;
1460 unsigned int ch_read_only = 0;
1461
1462 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001463 unsigned int mask;
1464
1465 mask = snd_usb_combine_bytes(bmaControls +
1466 csize * (j+1), csize);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001467 if (uac2_control_is_readable(mask, i)) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001468 ch_bits |= (1 << j);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001469 if (!uac2_control_is_writeable(mask, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001470 ch_read_only |= (1 << j);
1471 }
1472 }
1473
Daniel Mack6bc170e2014-05-24 10:58:16 +02001474 /*
1475 * NOTE: build_feature_ctl() will mark the control
1476 * read-only if all channels are marked read-only in
1477 * the descriptors. Otherwise, the control will be
1478 * reported as writeable, but the driver will not
1479 * actually issue a write command for read-only
1480 * channels.
1481 */
1482
1483 /*
1484 * The first channel must be set
1485 * (for ease of programming).
1486 */
1487 if (ch_bits & 1)
1488 build_feature_ctl(state, _ftr, ch_bits, i,
1489 &iterm, unitid, ch_read_only);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001490 if (uac2_control_is_readable(master_bits, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001491 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001492 !uac2_control_is_writeable(master_bits, i));
Daniel Mack23caaf12010-03-11 21:13:25 +01001493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
1495
1496 return 0;
1497}
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499/*
1500 * Mixer Unit
1501 */
1502
1503/*
1504 * build a mixer unit control
1505 *
1506 * the callbacks are identical with feature unit.
1507 * input channel number (zero based) is given in control field instead.
1508 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001509static void build_mixer_unit_ctl(struct mixer_build *state,
1510 struct uac_mixer_unit_descriptor *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001512 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001514 struct usb_mixer_elem_info *cval;
Daniel Mack99fc8642010-03-11 21:13:24 +01001515 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001517 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001518 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001520 map = find_map(state, unitid, 0);
1521 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return;
1523
Takashi Iwai561b2202005-09-09 14:22:34 +02001524 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001525 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 return;
1527
Clemens Ladisch84957a82005-04-29 16:23:13 +02001528 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 cval->id = unitid;
1530 cval->control = in_ch + 1; /* based on 1 */
1531 cval->val_type = USB_MIXER_S16;
1532 for (i = 0; i < num_outs; i++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001533 __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol);
1534
1535 if (check_matrix_bitmap(c, in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 cval->cmask |= (1 << i);
1537 cval->channels++;
1538 }
1539 }
1540
1541 /* get min/max values */
1542 get_min_max(cval, 0);
1543
1544 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001545 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001546 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 kfree(cval);
1548 return;
1549 }
1550 kctl->private_free = usb_mixer_elem_free;
1551
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001552 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001553 if (!len)
1554 len = get_term_name(state, iterm, kctl->id.name,
1555 sizeof(kctl->id.name), 0);
1556 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02001558 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001560 usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Daniel Mackef9d5972011-05-25 09:09:00 +02001562 snd_usb_mixer_add_control(state->mixer, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565/*
1566 * parse a mixer unit
1567 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001568static int parse_audio_mixer_unit(struct mixer_build *state, int unitid,
1569 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Daniel Mack99fc8642010-03-11 21:13:24 +01001571 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001572 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 int input_pins, num_ins, num_outs;
1574 int pin, ich, err;
1575
Daniel Mack6bc170e2014-05-24 10:58:16 +02001576 if (desc->bLength < 11 || !(input_pins = desc->bNrInPins) ||
1577 !(num_outs = uac_mixer_unit_bNrChannels(desc))) {
1578 usb_audio_err(state->chip,
1579 "invalid MIXER UNIT descriptor %d\n",
1580 unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return -EINVAL;
1582 }
1583 /* no bmControls field (e.g. Maya44) -> ignore */
Daniel Mack99fc8642010-03-11 21:13:24 +01001584 if (desc->bLength <= 10 + input_pins) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001585 usb_audio_dbg(state->chip, "MU %d has no bmControls field\n",
1586 unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return 0;
1588 }
1589
1590 num_ins = 0;
1591 ich = 0;
1592 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001593 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (err < 0)
Mark Hills284a8dd2012-04-14 17:19:23 +01001595 continue;
Daniel Mack99fc8642010-03-11 21:13:24 +01001596 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 if (err < 0)
1598 return err;
1599 num_ins += iterm.channels;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001600 for (; ich < num_ins; ich++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 int och, ich_has_controls = 0;
1602
Daniel Mack6bc170e2014-05-24 10:58:16 +02001603 for (och = 0; och < num_outs; och++) {
1604 __u8 *c = uac_mixer_unit_bmControls(desc,
1605 state->mixer->protocol);
1606
1607 if (check_matrix_bitmap(c, ich, och, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 ich_has_controls = 1;
1609 break;
1610 }
1611 }
1612 if (ich_has_controls)
1613 build_mixer_unit_ctl(state, desc, pin, ich,
1614 unitid, &iterm);
1615 }
1616 }
1617 return 0;
1618}
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620/*
1621 * Processing Unit / Extension Unit
1622 */
1623
1624/* get callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001625static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol,
1626 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001628 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 int err, val;
1630
1631 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001632 if (err < 0 && cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 ucontrol->value.integer.value[0] = cval->min;
1634 return 0;
1635 }
1636 if (err < 0)
1637 return err;
1638 val = get_relative_value(cval, val);
1639 ucontrol->value.integer.value[0] = val;
1640 return 0;
1641}
1642
1643/* put callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001644static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
1645 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001647 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 int val, oval, err;
1649
1650 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1651 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001652 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 return 0;
1654 return err;
1655 }
1656 val = ucontrol->value.integer.value[0];
1657 val = get_abs_value(cval, val);
1658 if (val != oval) {
1659 set_cur_ctl_value(cval, cval->control << 8, val);
1660 return 1;
1661 }
1662 return 0;
1663}
1664
1665/* alsa control interface for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001666static struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1668 .name = "", /* will be filled later */
1669 .info = mixer_ctl_feature_info,
1670 .get = mixer_ctl_procunit_get,
1671 .put = mixer_ctl_procunit_put,
1672};
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674/*
1675 * predefined data for processing units
1676 */
1677struct procunit_value_info {
1678 int control;
1679 char *suffix;
1680 int val_type;
1681 int min_value;
1682};
1683
1684struct procunit_info {
1685 int type;
1686 char *name;
1687 struct procunit_value_info *values;
1688};
1689
1690static struct procunit_value_info updown_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001691 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1692 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 { 0 }
1694};
1695static struct procunit_value_info prologic_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001696 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1697 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 { 0 }
1699};
1700static struct procunit_value_info threed_enh_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001701 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1702 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 { 0 }
1704};
1705static struct procunit_value_info reverb_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001706 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1707 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1708 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1709 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 { 0 }
1711};
1712static struct procunit_value_info chorus_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001713 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1714 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1715 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1716 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 { 0 }
1718};
1719static struct procunit_value_info dcr_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001720 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1721 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1722 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1723 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1724 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1725 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 { 0 }
1727};
1728
1729static struct procunit_info procunits[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001730 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1731 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1732 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1733 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1734 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1735 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 { 0 },
1737};
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001738/*
1739 * predefined data for extension units
1740 */
1741static struct procunit_value_info clock_rate_xu_info[] = {
Daniel Macke213e9c2010-05-11 18:13:50 +02001742 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1743 { 0 }
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001744};
1745static struct procunit_value_info clock_source_xu_info[] = {
1746 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1747 { 0 }
1748};
1749static struct procunit_value_info spdif_format_xu_info[] = {
1750 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1751 { 0 }
1752};
1753static struct procunit_value_info soft_limit_xu_info[] = {
1754 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1755 { 0 }
1756};
1757static struct procunit_info extunits[] = {
1758 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1759 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1760 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1761 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1762 { 0 }
1763};
Daniel Mack6bc170e2014-05-24 10:58:16 +02001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765/*
1766 * build a processing/extension unit
1767 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001768static int build_audio_procunit(struct mixer_build *state, int unitid,
1769 void *raw_desc, struct procunit_info *list,
1770 char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771{
Daniel Mack99fc8642010-03-11 21:13:24 +01001772 struct uac_processing_unit_descriptor *desc = raw_desc;
1773 int num_ins = desc->bNrInPins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001774 struct usb_mixer_elem_info *cval;
1775 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 int i, err, nameid, type, len;
1777 struct procunit_info *info;
1778 struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001779 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 static struct procunit_value_info default_value_info[] = {
1781 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1782 { 0 }
1783 };
1784 static struct procunit_info default_info = {
1785 0, NULL, default_value_info
1786 };
1787
Daniel Mack23caaf12010-03-11 21:13:25 +01001788 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1789 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001790 usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return -EINVAL;
1792 }
1793
1794 for (i = 0; i < num_ins; i++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001795 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return err;
1797 }
1798
Daniel Mack99fc8642010-03-11 21:13:24 +01001799 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 for (info = list; info && info->type; info++)
1801 if (info->type == type)
1802 break;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001803 if (!info || !info->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 info = &default_info;
1805
1806 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001807 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01001808
Daniel Mack6bc170e2014-05-24 10:58:16 +02001809 if (!(controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 continue;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001811 map = find_map(state, unitid, valinfo->control);
1812 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02001814 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001815 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return -ENOMEM;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001817 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 cval->id = unitid;
1819 cval->control = valinfo->control;
1820 cval->val_type = valinfo->val_type;
1821 cval->channels = 1;
1822
1823 /* get min/max values */
Daniel Mack65f25da2010-05-31 13:35:41 +02001824 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001825 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 /* FIXME: hard-coded */
1827 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001828 cval->max = control_spec[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 cval->res = 1;
1830 cval->initialized = 1;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001831 } else {
1832 if (type == USB_XU_CLOCK_RATE) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001833 /*
1834 * E-Mu USB 0404/0202/TrackerPre/0204
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001835 * samplerate control quirk
1836 */
1837 cval->min = 0;
1838 cval->max = 5;
1839 cval->res = 1;
1840 cval->initialized = 1;
1841 } else
1842 get_min_max(cval, valinfo->min_value);
1843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001846 if (!kctl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 kfree(cval);
1848 return -ENOMEM;
1849 }
1850 kctl->private_free = usb_mixer_elem_free;
1851
Daniel Mack6bc170e2014-05-24 10:58:16 +02001852 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001853 /* nothing */ ;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001854 } else if (info->name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001856 } else {
Daniel Mack23caaf12010-03-11 21:13:25 +01001857 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 len = 0;
1859 if (nameid)
Daniel Mack6bc170e2014-05-24 10:58:16 +02001860 len = snd_usb_copy_string_desc(state, nameid,
1861 kctl->id.name,
1862 sizeof(kctl->id.name));
1863 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1865 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02001866 append_ctl_name(kctl, " ");
1867 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001869 usb_audio_dbg(state->chip,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001870 "[%d] PU [%s] ch = %d, val = %d/%d\n",
1871 cval->id, kctl->id.name, cval->channels,
1872 cval->min, cval->max);
1873
1874 err = snd_usb_mixer_add_control(state->mixer, kctl);
1875 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 return err;
1877 }
1878 return 0;
1879}
1880
Daniel Mack6bc170e2014-05-24 10:58:16 +02001881static int parse_audio_processing_unit(struct mixer_build *state, int unitid,
1882 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
Daniel Mack6bc170e2014-05-24 10:58:16 +02001884 return build_audio_procunit(state, unitid, raw_desc,
1885 procunits, "Processing Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886}
1887
Daniel Mack6bc170e2014-05-24 10:58:16 +02001888static int parse_audio_extension_unit(struct mixer_build *state, int unitid,
1889 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
Daniel Mack6bc170e2014-05-24 10:58:16 +02001891 /*
1892 * Note that we parse extension units with processing unit descriptors.
1893 * That's ok as the layout is the same.
1894 */
1895 return build_audio_procunit(state, unitid, raw_desc,
1896 extunits, "Extension Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899/*
1900 * Selector Unit
1901 */
1902
Daniel Mack6bc170e2014-05-24 10:58:16 +02001903/*
1904 * info callback for selector unit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 * use an enumerator type for routing
1906 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001907static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol,
1908 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001910 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01001911 const char **itemlist = (const char **)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Takashi Iwai5e246b82008-08-08 17:12:47 +02001913 if (snd_BUG_ON(!itemlist))
1914 return -EINVAL;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01001915 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916}
1917
1918/* get callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001919static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol,
1920 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001922 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 int val, err;
1924
Daniel Mack09414202010-05-31 13:35:44 +02001925 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001927 if (cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 ucontrol->value.enumerated.item[0] = 0;
1929 return 0;
1930 }
1931 return err;
1932 }
1933 val = get_relative_value(cval, val);
1934 ucontrol->value.enumerated.item[0] = val;
1935 return 0;
1936}
1937
1938/* put callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001939static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
1940 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001942 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 int val, oval, err;
1944
Daniel Mack09414202010-05-31 13:35:44 +02001945 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001947 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 return 0;
1949 return err;
1950 }
1951 val = ucontrol->value.enumerated.item[0];
1952 val = get_abs_value(cval, val);
1953 if (val != oval) {
Daniel Mack09414202010-05-31 13:35:44 +02001954 set_cur_ctl_value(cval, cval->control << 8, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 return 1;
1956 }
1957 return 0;
1958}
1959
1960/* alsa control interface for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001961static struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1963 .name = "", /* will be filled later */
1964 .info = mixer_ctl_selector_info,
1965 .get = mixer_ctl_selector_get,
1966 .put = mixer_ctl_selector_put,
1967};
1968
Daniel Mack6bc170e2014-05-24 10:58:16 +02001969/*
1970 * private free callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 * free both private_data and private_value
1972 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001973static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974{
1975 int i, num_ins = 0;
1976
1977 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001978 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 num_ins = cval->max;
1980 kfree(cval);
1981 kctl->private_data = NULL;
1982 }
1983 if (kctl->private_value) {
1984 char **itemlist = (char **)kctl->private_value;
1985 for (i = 0; i < num_ins; i++)
1986 kfree(itemlist[i]);
1987 kfree(itemlist);
1988 kctl->private_value = 0;
1989 }
1990}
1991
1992/*
1993 * parse a selector unit
1994 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001995static int parse_audio_selector_unit(struct mixer_build *state, int unitid,
1996 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
Daniel Mack99fc8642010-03-11 21:13:24 +01001998 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 unsigned int i, nameid, len;
2000 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002001 struct usb_mixer_elem_info *cval;
2002 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002003 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 char **namelist;
2005
Daniel Mack99fc8642010-03-11 21:13:24 +01002006 if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002007 usb_audio_err(state->chip,
2008 "invalid SELECTOR UNIT descriptor %d\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return -EINVAL;
2010 }
2011
Daniel Mack99fc8642010-03-11 21:13:24 +01002012 for (i = 0; i < desc->bNrInPins; i++) {
2013 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 return err;
2015 }
2016
Daniel Mack99fc8642010-03-11 21:13:24 +01002017 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 return 0;
2019
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002020 map = find_map(state, unitid, 0);
2021 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 return 0;
2023
Takashi Iwai561b2202005-09-09 14:22:34 +02002024 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02002025 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 return -ENOMEM;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002027 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 cval->id = unitid;
2029 cval->val_type = USB_MIXER_U8;
2030 cval->channels = 1;
2031 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01002032 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 cval->res = 1;
2034 cval->initialized = 1;
2035
Daniel Mack09414202010-05-31 13:35:44 +02002036 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2037 cval->control = UAC2_CX_CLOCK_SELECTOR;
2038 else
2039 cval->control = 0;
2040
Daniel Mack99fc8642010-03-11 21:13:24 +01002041 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002042 if (!namelist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 kfree(cval);
2044 return -ENOMEM;
2045 }
2046#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01002047 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002048 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 len = 0;
2050 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002051 if (!namelist[i]) {
Mariusz Kozlowski7fbe3ca2007-01-08 11:25:30 +01002052 while (i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 kfree(namelist[i]);
2054 kfree(namelist);
2055 kfree(cval);
2056 return -ENOMEM;
2057 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002058 len = check_mapped_selector_name(state, unitid, i, namelist[i],
2059 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01002060 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
2062 if (! len)
Masanari Iidaaf831ee2014-04-28 13:08:55 +09002063 sprintf(namelist[i], "Input %u", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
2065
2066 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
2067 if (! kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002068 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Jesper Juhl878b4782006-03-20 11:27:13 +01002069 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 kfree(cval);
2071 return -ENOMEM;
2072 }
2073 kctl->private_value = (unsigned long)namelist;
2074 kctl->private_free = usb_mixer_selector_elem_free;
2075
Daniel Mack99fc8642010-03-11 21:13:24 +01002076 nameid = uac_selector_unit_iSelector(desc);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002077 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (len)
2079 ;
2080 else if (nameid)
Daniel Mack6bc170e2014-05-24 10:58:16 +02002081 snd_usb_copy_string_desc(state, nameid, kctl->id.name,
2082 sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 else {
2084 len = get_term_name(state, &state->oterm,
2085 kctl->id.name, sizeof(kctl->id.name), 0);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002086 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
2088
Daniel Mack09414202010-05-31 13:35:44 +02002089 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2090 append_ctl_name(kctl, " Clock Source");
2091 else if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02002092 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02002094 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 }
2096
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002097 usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n",
Daniel Mack99fc8642010-03-11 21:13:24 +01002098 cval->id, kctl->id.name, desc->bNrInPins);
Daniel Mackef9d5972011-05-25 09:09:00 +02002099 if ((err = snd_usb_mixer_add_control(state->mixer, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 return err;
2101
2102 return 0;
2103}
2104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105/*
2106 * parse an audio unit recursively
2107 */
2108
Takashi Iwai86e07d32005-11-17 15:08:02 +01002109static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
2111 unsigned char *p1;
2112
2113 if (test_and_set_bit(unitid, state->unitbitmap))
2114 return 0; /* the unit already visited */
2115
2116 p1 = find_audio_control_unit(state, unitid);
2117 if (!p1) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002118 usb_audio_err(state->chip, "unit %d not found!\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return -EINVAL;
2120 }
2121
2122 switch (p1[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01002123 case UAC_INPUT_TERMINAL:
Daniel Mack09414202010-05-31 13:35:44 +02002124 case UAC2_CLOCK_SOURCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return 0; /* NOP */
Daniel Mackde48c7b2010-02-22 23:49:13 +01002126 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return parse_audio_mixer_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01002128 case UAC_SELECTOR_UNIT:
Daniel Mack09414202010-05-31 13:35:44 +02002129 case UAC2_CLOCK_SELECTOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return parse_audio_selector_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01002131 case UAC_FEATURE_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 return parse_audio_feature_unit(state, unitid, p1);
Daniel Mack69da9bc2010-06-16 17:57:28 +02002133 case UAC1_PROCESSING_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002134 /* UAC2_EFFECT_UNIT has the same value */
2135 if (state->mixer->protocol == UAC_VERSION_1)
2136 return parse_audio_processing_unit(state, unitid, p1);
2137 else
2138 return 0; /* FIXME - effect units not implemented yet */
Daniel Mack69da9bc2010-06-16 17:57:28 +02002139 case UAC1_EXTENSION_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002140 /* UAC2_PROCESSING_UNIT_V2 has the same value */
2141 if (state->mixer->protocol == UAC_VERSION_1)
2142 return parse_audio_extension_unit(state, unitid, p1);
2143 else /* UAC_VERSION_2 */
2144 return parse_audio_processing_unit(state, unitid, p1);
Torstein Hegge61ac5132013-03-19 17:12:14 +01002145 case UAC2_EXTENSION_UNIT_V2:
2146 return parse_audio_extension_unit(state, unitid, p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002148 usb_audio_err(state->chip,
2149 "unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 return -EINVAL;
2151 }
2152}
2153
Clemens Ladisch84957a82005-04-29 16:23:13 +02002154static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
2155{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002156 kfree(mixer->id_elems);
2157 if (mixer->urb) {
2158 kfree(mixer->urb->transfer_buffer);
2159 usb_free_urb(mixer->urb);
2160 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002161 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02002162 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002163 kfree(mixer);
2164}
2165
Takashi Iwai86e07d32005-11-17 15:08:02 +01002166static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002167{
2168 struct usb_mixer_interface *mixer = device->device_data;
2169 snd_usb_mixer_free(mixer);
2170 return 0;
2171}
2172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173/*
2174 * create mixer controls
2175 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01002176 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02002178static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002180 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 int err;
2182 const struct usbmix_ctl_map *map;
Daniel Mack23caaf12010-03-11 21:13:25 +01002183 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02002186 state.chip = mixer->chip;
2187 state.mixer = mixer;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002188 state.buffer = mixer->hostif->extra;
2189 state.buflen = mixer->hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
2191 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002192 for (map = usbmix_ctl_maps; map->id; map++) {
2193 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002195 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002196 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 break;
2198 }
2199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Daniel Mack23caaf12010-03-11 21:13:25 +01002201 p = NULL;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002202 while ((p = snd_usb_find_csint_desc(mixer->hostif->extra,
2203 mixer->hostif->extralen,
Daniel Mack1faa5d02011-08-04 15:56:28 +02002204 p, UAC_OUTPUT_TERMINAL)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002205 if (mixer->protocol == UAC_VERSION_1) {
Daniel Mack69da9bc2010-06-16 17:57:28 +02002206 struct uac1_output_terminal_descriptor *desc = p;
Daniel Mack23caaf12010-03-11 21:13:25 +01002207
2208 if (desc->bLength < sizeof(*desc))
2209 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002210 /* mark terminal ID as visited */
2211 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002212 state.oterm.id = desc->bTerminalID;
2213 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2214 state.oterm.name = desc->iTerminal;
2215 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002216 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002217 return err;
2218 } else { /* UAC_VERSION_2 */
2219 struct uac2_output_terminal_descriptor *desc = p;
2220
2221 if (desc->bLength < sizeof(*desc))
2222 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002223 /* mark terminal ID as visited */
2224 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002225 state.oterm.id = desc->bTerminalID;
2226 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2227 state.oterm.name = desc->iTerminal;
2228 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002229 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002230 return err;
Daniel Mack09414202010-05-31 13:35:44 +02002231
Daniel Mack6bc170e2014-05-24 10:58:16 +02002232 /*
2233 * For UAC2, use the same approach to also add the
2234 * clock selectors
2235 */
Daniel Mack09414202010-05-31 13:35:44 +02002236 err = parse_audio_unit(&state, desc->bCSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002237 if (err < 0 && err != -EINVAL)
Daniel Mack09414202010-05-31 13:35:44 +02002238 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +01002239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
Daniel Mack23caaf12010-03-11 21:13:25 +01002241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 return 0;
2243}
Clemens Ladisch84957a82005-04-29 16:23:13 +02002244
Daniel Mack7b1eda22010-03-11 21:13:22 +01002245void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002246{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002247 struct usb_mixer_elem_info *info;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002248
2249 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
2250 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2251 info->elem_id);
2252}
2253
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002254static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
2255 int unitid,
2256 struct usb_mixer_elem_info *cval)
2257{
2258 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
2259 "S8", "U8", "S16", "U16"};
2260 snd_iprintf(buffer, " Unit: %i\n", unitid);
2261 if (cval->elem_id)
2262 snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
2263 cval->elem_id->name, cval->elem_id->index);
2264 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
2265 "channels=%i, type=\"%s\"\n", cval->id,
2266 cval->control, cval->cmask, cval->channels,
2267 val_types[cval->val_type]);
2268 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
2269 cval->min, cval->max, cval->dBmin, cval->dBmax);
2270}
2271
2272static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
2273 struct snd_info_buffer *buffer)
2274{
2275 struct snd_usb_audio *chip = entry->private_data;
2276 struct usb_mixer_interface *mixer;
2277 struct usb_mixer_elem_info *cval;
2278 int unitid;
2279
2280 list_for_each_entry(mixer, &chip->mixer_list, list) {
2281 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002282 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
Daniel Mack3d8d4dc2010-06-16 17:57:31 +02002283 chip->usb_id, snd_usb_ctrl_intf(chip),
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002284 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002285 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
2286 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
2287 for (cval = mixer->id_elems[unitid]; cval;
2288 cval = cval->next_id_elem)
2289 snd_usb_mixer_dump_cval(buffer, unitid, cval);
2290 }
2291 }
2292}
2293
Daniel Macke213e9c2010-05-11 18:13:50 +02002294static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
2295 int attribute, int value, int index)
2296{
2297 struct usb_mixer_elem_info *info;
2298 __u8 unitid = (index >> 8) & 0xff;
2299 __u8 control = (value >> 8) & 0xff;
2300 __u8 channel = value & 0xff;
2301
2302 if (channel >= MAX_CHANNELS) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002303 usb_audio_dbg(mixer->chip,
2304 "%s(): bogus channel number %d\n",
2305 __func__, channel);
Daniel Macke213e9c2010-05-11 18:13:50 +02002306 return;
2307 }
2308
2309 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem) {
2310 if (info->control != control)
2311 continue;
2312
2313 switch (attribute) {
2314 case UAC2_CS_CUR:
2315 /* invalidate cache, so the value is read from the device */
2316 if (channel)
2317 info->cached &= ~(1 << channel);
2318 else /* master channel */
2319 info->cached = 0;
2320
2321 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2322 info->elem_id);
2323 break;
2324
2325 case UAC2_CS_RANGE:
2326 /* TODO */
2327 break;
2328
2329 case UAC2_CS_MEM:
2330 /* TODO */
2331 break;
2332
2333 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002334 usb_audio_dbg(mixer->chip,
2335 "unknown attribute %d in interrupt\n",
2336 attribute);
Daniel Macke213e9c2010-05-11 18:13:50 +02002337 break;
2338 } /* switch */
2339 }
2340}
2341
2342static void snd_usb_mixer_interrupt(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002343{
2344 struct usb_mixer_interface *mixer = urb->context;
Daniel Macke213e9c2010-05-11 18:13:50 +02002345 int len = urb->actual_length;
Oliver Neukumedf7de32011-03-11 13:19:43 +01002346 int ustatus = urb->status;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002347
Oliver Neukumedf7de32011-03-11 13:19:43 +01002348 if (ustatus != 0)
Daniel Macke213e9c2010-05-11 18:13:50 +02002349 goto requeue;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002350
Daniel Macke213e9c2010-05-11 18:13:50 +02002351 if (mixer->protocol == UAC_VERSION_1) {
2352 struct uac1_status_word *status;
2353
2354 for (status = urb->transfer_buffer;
2355 len >= sizeof(*status);
2356 len -= sizeof(*status), status++) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002357 dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n",
Daniel Macke213e9c2010-05-11 18:13:50 +02002358 status->bStatusType,
2359 status->bOriginator);
2360
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002361 /* ignore any notifications not from the control interface */
Daniel Macke213e9c2010-05-11 18:13:50 +02002362 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2363 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002364 continue;
Daniel Macke213e9c2010-05-11 18:13:50 +02002365
2366 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2367 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
Clemens Ladischb259b102005-04-29 16:29:28 +02002368 else
Daniel Macke213e9c2010-05-11 18:13:50 +02002369 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2370 }
2371 } else { /* UAC_VERSION_2 */
2372 struct uac2_interrupt_data_msg *msg;
2373
2374 for (msg = urb->transfer_buffer;
2375 len >= sizeof(*msg);
2376 len -= sizeof(*msg), msg++) {
2377 /* drop vendor specific and endpoint requests */
2378 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2379 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2380 continue;
2381
2382 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2383 le16_to_cpu(msg->wValue),
2384 le16_to_cpu(msg->wIndex));
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002385 }
2386 }
Daniel Macke213e9c2010-05-11 18:13:50 +02002387
2388requeue:
Daniel Mack6bc170e2014-05-24 10:58:16 +02002389 if (ustatus != -ENOENT &&
2390 ustatus != -ECONNRESET &&
2391 ustatus != -ESHUTDOWN) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002392 urb->dev = mixer->chip->dev;
2393 usb_submit_urb(urb, GFP_ATOMIC);
2394 }
2395}
2396
2397/* create the handler for the optional status interrupt endpoint */
2398static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2399{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002400 struct usb_endpoint_descriptor *ep;
2401 void *transfer_buffer;
2402 int buffer_length;
2403 unsigned int epnum;
2404
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002405 /* we need one interrupt input endpoint */
Daniel Mack1faa5d02011-08-04 15:56:28 +02002406 if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002407 return 0;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002408 ep = get_endpoint(mixer->hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01002409 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002410 return 0;
2411
Julia Lawall42a6e662008-12-29 11:23:02 +01002412 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002413 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2414 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2415 if (!transfer_buffer)
2416 return -ENOMEM;
2417 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2418 if (!mixer->urb) {
2419 kfree(transfer_buffer);
2420 return -ENOMEM;
2421 }
2422 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2423 usb_rcvintpipe(mixer->chip->dev, epnum),
2424 transfer_buffer, buffer_length,
Daniel Macke213e9c2010-05-11 18:13:50 +02002425 snd_usb_mixer_interrupt, mixer, ep->bInterval);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002426 usb_submit_urb(mixer->urb, GFP_KERNEL);
2427 return 0;
2428}
2429
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002430int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2431 int ignore_error)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002432{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002433 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002434 .dev_free = snd_usb_mixer_dev_free
2435 };
2436 struct usb_mixer_interface *mixer;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002437 struct snd_info_entry *entry;
Daniel Mack23caaf12010-03-11 21:13:25 +01002438 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002439
2440 strcpy(chip->card->mixername, "USB Mixer");
2441
Takashi Iwai561b2202005-09-09 14:22:34 +02002442 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002443 if (!mixer)
2444 return -ENOMEM;
2445 mixer->chip = chip;
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002446 mixer->ignore_ctl_error = ignore_error;
Jaroslav Kysela291186e2010-02-16 11:55:18 +01002447 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2448 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002449 if (!mixer->id_elems) {
2450 kfree(mixer);
2451 return -ENOMEM;
2452 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002453
Daniel Mack1faa5d02011-08-04 15:56:28 +02002454 mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
2455 switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +02002456 case UAC_VERSION_1:
2457 default:
2458 mixer->protocol = UAC_VERSION_1;
2459 break;
2460 case UAC_VERSION_2:
2461 mixer->protocol = UAC_VERSION_2;
2462 break;
2463 }
Daniel Mack7b8a0432010-02-22 23:49:12 +01002464
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002465 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002466 (err = snd_usb_mixer_status_create(mixer)) < 0)
2467 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002468
Daniel Mack7b1eda22010-03-11 21:13:22 +01002469 snd_usb_mixer_apply_create_quirk(mixer);
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02002470
Takashi Iwai9cbb2802014-02-04 11:15:31 +01002471 err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002472 if (err < 0)
2473 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002474
2475 if (list_empty(&chip->mixer_list) &&
2476 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2477 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2478
Clemens Ladisch84957a82005-04-29 16:23:13 +02002479 list_add(&mixer->list, &chip->mixer_list);
2480 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002481
2482_error:
2483 snd_usb_mixer_free(mixer);
2484 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002485}
2486
2487void snd_usb_mixer_disconnect(struct list_head *p)
2488{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002489 struct usb_mixer_interface *mixer;
Daniel Mack7b1eda22010-03-11 21:13:22 +01002490
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002491 mixer = list_entry(p, struct usb_mixer_interface, list);
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002492 usb_kill_urb(mixer->urb);
2493 usb_kill_urb(mixer->rc_urb);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002494}
Takashi Iwai400362f2014-01-20 16:51:16 +01002495
2496#ifdef CONFIG_PM
2497/* stop any bus activity of a mixer */
2498static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
2499{
2500 usb_kill_urb(mixer->urb);
2501 usb_kill_urb(mixer->rc_urb);
2502}
2503
2504static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
2505{
2506 int err;
2507
2508 if (mixer->urb) {
2509 err = usb_submit_urb(mixer->urb, GFP_NOIO);
2510 if (err < 0)
2511 return err;
2512 }
2513
2514 return 0;
2515}
2516
2517int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer)
2518{
2519 snd_usb_mixer_inactivate(mixer);
2520 return 0;
2521}
2522
2523static int restore_mixer_value(struct usb_mixer_elem_info *cval)
2524{
2525 int c, err, idx;
2526
2527 if (cval->cmask) {
2528 idx = 0;
2529 for (c = 0; c < MAX_CHANNELS; c++) {
2530 if (!(cval->cmask & (1 << c)))
2531 continue;
2532 if (cval->cached & (1 << c)) {
2533 err = set_cur_mix_value(cval, c + 1, idx,
2534 cval->cache_val[idx]);
2535 if (err < 0)
2536 return err;
2537 }
2538 idx++;
2539 }
2540 } else {
2541 /* master */
2542 if (cval->cached) {
2543 err = set_cur_mix_value(cval, 0, 0, *cval->cache_val);
2544 if (err < 0)
2545 return err;
2546 }
2547 }
2548
2549 return 0;
2550}
2551
2552int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume)
2553{
2554 struct usb_mixer_elem_info *cval;
2555 int id, err;
2556
2557 /* FIXME: any mixer quirks? */
2558
2559 if (reset_resume) {
2560 /* restore cached mixer values */
2561 for (id = 0; id < MAX_ID_ELEMS; id++) {
2562 for (cval = mixer->id_elems[id]; cval;
2563 cval = cval->next_id_elem) {
2564 err = restore_mixer_value(cval);
2565 if (err < 0)
2566 return err;
2567 }
2568 }
2569 }
2570
2571 return snd_usb_mixer_activate(mixer);
2572}
2573#endif