blob: e4aaa21baed2c4f09d3b3aa9ba2d8999c9c5e5a3 [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)
Daniel Mack49fd46d2014-10-19 09:11:25 +02001293 snprintf(kctl->id.name, sizeof(kctl->id.name),
1294 "Feature %d", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 }
David Henningsson9b4ef972012-11-23 13:48:55 +01001296
1297 if (!mapped_name)
1298 check_no_speaker_on_headset(kctl, state->mixer->chip->card);
1299
Daniel Mack6bc170e2014-05-24 10:58:16 +02001300 /*
1301 * determine the stream direction:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 * if the connected output is USB stream, then it's likely a
1303 * capture stream. otherwise it should be playback (hopefully :)
1304 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001305 if (!mapped_name && !(state->oterm.type >> 16)) {
1306 if ((state->oterm.type & 0xff00) == 0x0100)
Daniel Mack49fd46d2014-10-19 09:11:25 +02001307 append_ctl_name(kctl, " Capture");
Daniel Mack6bc170e2014-05-24 10:58:16 +02001308 else
Daniel Mack49fd46d2014-10-19 09:11:25 +02001309 append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
Daniel Mack65f25da2010-05-31 13:35:41 +02001311 append_ctl_name(kctl, control == UAC_FU_MUTE ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001312 " Switch" : " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 default:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001315 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1317 sizeof(kctl->id.name));
1318 break;
1319 }
1320
Takashi Iwaie1825342012-05-14 17:11:06 +02001321 /* get min/max values */
1322 get_min_max_with_quirks(cval, 0, kctl);
1323
1324 if (control == UAC_FU_VOLUME) {
1325 check_mapped_dB(map, cval);
1326 if (cval->dBmin < cval->dBmax || !cval->initialized) {
1327 kctl->tlv.c = snd_usb_mixer_vol_tlv;
1328 kctl->vd[0].access |=
1329 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1330 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1331 }
1332 }
1333
Alexey Fisher80aceff2011-03-10 14:53:38 +01001334 range = (cval->max - cval->min) / cval->res;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001335 /*
1336 * Are there devices with volume range more than 255? I use a bit more
Alexey Fisher80aceff2011-03-10 14:53:38 +01001337 * to be sure. 384 is a resolution magic number found on Logitech
1338 * devices. It will definitively catch all buggy Logitech devices.
1339 */
1340 if (range > 384) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001341 usb_audio_warn(state->chip,
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001342 "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.",
Daniel Mack6bc170e2014-05-24 10:58:16 +02001343 range);
Michał Mirosław82c1cf02014-08-03 15:09:57 +02001344 usb_audio_warn(state->chip,
1345 "[%d] FU [%s] ch = %d, val = %d/%d/%d",
1346 cval->id, kctl->id.name, cval->channels,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001347 cval->min, cval->max, cval->res);
Alexey Fisher80aceff2011-03-10 14:53:38 +01001348 }
1349
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001350 usb_audio_dbg(state->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +02001351 cval->id, kctl->id.name, cval->channels,
1352 cval->min, cval->max, cval->res);
Daniel Mackef9d5972011-05-25 09:09:00 +02001353 snd_usb_mixer_add_control(state->mixer, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356/*
1357 * parse a feature unit
1358 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001359 * most of controls are defined here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001361static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
1362 void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
1364 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001365 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 unsigned int master_bits, first_ch_bits;
1367 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001368 struct uac_feature_unit_descriptor *hdr = _ftr;
1369 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Daniel Mack23caaf12010-03-11 21:13:25 +01001371 if (state->mixer->protocol == UAC_VERSION_1) {
1372 csize = hdr->bControlSize;
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001373 if (!csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001374 usb_audio_dbg(state->chip,
1375 "unit %u: invalid bControlSize == 0\n",
1376 unitid);
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001377 return -EINVAL;
1378 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001379 channels = (hdr->bLength - 7) / csize - 1;
1380 bmaControls = hdr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001381 if (hdr->bLength < 7 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001382 usb_audio_err(state->chip,
1383 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1384 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001385 return -EINVAL;
1386 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001387 } else {
1388 struct uac2_feature_unit_descriptor *ftr = _ftr;
1389 csize = 4;
Daniel Macke8d0fee2010-05-27 20:15:14 +02001390 channels = (hdr->bLength - 6) / 4 - 1;
Daniel Mack23caaf12010-03-11 21:13:25 +01001391 bmaControls = ftr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001392 if (hdr->bLength < 6 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001393 usb_audio_err(state->chip,
1394 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1395 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001396 return -EINVAL;
1397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399
1400 /* parse the source unit */
Daniel Mack23caaf12010-03-11 21:13:25 +01001401 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return err;
1403
1404 /* determine the input source type and name */
Daniel Mack4d7b86c2013-03-19 21:09:24 +01001405 err = check_input_term(state, hdr->bSourceID, &iterm);
1406 if (err < 0)
1407 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Daniel Mack23caaf12010-03-11 21:13:25 +01001409 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001410 /* master configuration quirks */
1411 switch (state->chip->usb_id) {
1412 case USB_ID(0x08bb, 0x2702):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001413 usb_audio_info(state->chip,
1414 "usbmixer: master volume quirk for PCM2702 chip\n");
Javier Kohen0c3cee52009-11-17 15:36:13 +01001415 /* disable non-functional volume control */
Daniel Mack65f25da2010-05-31 13:35:41 +02001416 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001417 break;
David Henningssonc1051432012-09-20 10:20:41 +02001418 case USB_ID(0x1130, 0xf211):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001419 usb_audio_info(state->chip,
1420 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
David Henningssonc1051432012-09-20 10:20:41 +02001421 /* disable non-functional volume control */
1422 channels = 0;
1423 break;
1424
Javier Kohen0c3cee52009-11-17 15:36:13 +01001425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 if (channels > 0)
Daniel Mack23caaf12010-03-11 21:13:25 +01001427 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 else
1429 first_ch_bits = 0;
Daniel Mack23caaf12010-03-11 21:13:25 +01001430
1431 if (state->mixer->protocol == UAC_VERSION_1) {
1432 /* check all control types */
1433 for (i = 0; i < 10; i++) {
1434 unsigned int ch_bits = 0;
1435 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001436 unsigned int mask;
1437
1438 mask = snd_usb_combine_bytes(bmaControls +
1439 csize * (j+1), csize);
Daniel Mack23caaf12010-03-11 21:13:25 +01001440 if (mask & (1 << i))
1441 ch_bits |= (1 << j);
1442 }
1443 /* audio class v1 controls are never read-only */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001444
1445 /*
1446 * The first channel must be set
1447 * (for ease of programming).
1448 */
1449 if (ch_bits & 1)
1450 build_feature_ctl(state, _ftr, ch_bits, i,
1451 &iterm, unitid, 0);
Daniel Mack23caaf12010-03-11 21:13:25 +01001452 if (master_bits & (1 << i))
Daniel Mack6bc170e2014-05-24 10:58:16 +02001453 build_feature_ctl(state, _ftr, 0, i, &iterm,
1454 unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001456 } else { /* UAC_VERSION_2 */
Takashi Iwaid09c06c2011-10-13 08:19:09 +02001457 for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001458 unsigned int ch_bits = 0;
1459 unsigned int ch_read_only = 0;
1460
1461 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001462 unsigned int mask;
1463
1464 mask = snd_usb_combine_bytes(bmaControls +
1465 csize * (j+1), csize);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001466 if (uac2_control_is_readable(mask, i)) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001467 ch_bits |= (1 << j);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001468 if (!uac2_control_is_writeable(mask, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001469 ch_read_only |= (1 << j);
1470 }
1471 }
1472
Daniel Mack6bc170e2014-05-24 10:58:16 +02001473 /*
1474 * NOTE: build_feature_ctl() will mark the control
1475 * read-only if all channels are marked read-only in
1476 * the descriptors. Otherwise, the control will be
1477 * reported as writeable, but the driver will not
1478 * actually issue a write command for read-only
1479 * channels.
1480 */
1481
1482 /*
1483 * The first channel must be set
1484 * (for ease of programming).
1485 */
1486 if (ch_bits & 1)
1487 build_feature_ctl(state, _ftr, ch_bits, i,
1488 &iterm, unitid, ch_read_only);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001489 if (uac2_control_is_readable(master_bits, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001490 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001491 !uac2_control_is_writeable(master_bits, i));
Daniel Mack23caaf12010-03-11 21:13:25 +01001492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
1494
1495 return 0;
1496}
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498/*
1499 * Mixer Unit
1500 */
1501
1502/*
1503 * build a mixer unit control
1504 *
1505 * the callbacks are identical with feature unit.
1506 * input channel number (zero based) is given in control field instead.
1507 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001508static void build_mixer_unit_ctl(struct mixer_build *state,
1509 struct uac_mixer_unit_descriptor *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001511 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001513 struct usb_mixer_elem_info *cval;
Daniel Mack99fc8642010-03-11 21:13:24 +01001514 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001516 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001517 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001519 map = find_map(state, unitid, 0);
1520 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 return;
1522
Takashi Iwai561b2202005-09-09 14:22:34 +02001523 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001524 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return;
1526
Clemens Ladisch84957a82005-04-29 16:23:13 +02001527 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 cval->id = unitid;
1529 cval->control = in_ch + 1; /* based on 1 */
1530 cval->val_type = USB_MIXER_S16;
1531 for (i = 0; i < num_outs; i++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001532 __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol);
1533
1534 if (check_matrix_bitmap(c, in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 cval->cmask |= (1 << i);
1536 cval->channels++;
1537 }
1538 }
1539
1540 /* get min/max values */
1541 get_min_max(cval, 0);
1542
1543 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001544 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001545 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 kfree(cval);
1547 return;
1548 }
1549 kctl->private_free = usb_mixer_elem_free;
1550
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001551 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001552 if (!len)
1553 len = get_term_name(state, iterm, kctl->id.name,
1554 sizeof(kctl->id.name), 0);
1555 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02001557 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001559 usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Daniel Mackef9d5972011-05-25 09:09:00 +02001561 snd_usb_mixer_add_control(state->mixer, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564/*
1565 * parse a mixer unit
1566 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001567static int parse_audio_mixer_unit(struct mixer_build *state, int unitid,
1568 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Daniel Mack99fc8642010-03-11 21:13:24 +01001570 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001571 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 int input_pins, num_ins, num_outs;
1573 int pin, ich, err;
1574
Daniel Mack6bc170e2014-05-24 10:58:16 +02001575 if (desc->bLength < 11 || !(input_pins = desc->bNrInPins) ||
1576 !(num_outs = uac_mixer_unit_bNrChannels(desc))) {
1577 usb_audio_err(state->chip,
1578 "invalid MIXER UNIT descriptor %d\n",
1579 unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return -EINVAL;
1581 }
1582 /* no bmControls field (e.g. Maya44) -> ignore */
Daniel Mack99fc8642010-03-11 21:13:24 +01001583 if (desc->bLength <= 10 + input_pins) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001584 usb_audio_dbg(state->chip, "MU %d has no bmControls field\n",
1585 unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 return 0;
1587 }
1588
1589 num_ins = 0;
1590 ich = 0;
1591 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001592 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (err < 0)
Mark Hills284a8dd2012-04-14 17:19:23 +01001594 continue;
Daniel Mack99fc8642010-03-11 21:13:24 +01001595 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if (err < 0)
1597 return err;
1598 num_ins += iterm.channels;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001599 for (; ich < num_ins; ich++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 int och, ich_has_controls = 0;
1601
Daniel Mack6bc170e2014-05-24 10:58:16 +02001602 for (och = 0; och < num_outs; och++) {
1603 __u8 *c = uac_mixer_unit_bmControls(desc,
1604 state->mixer->protocol);
1605
1606 if (check_matrix_bitmap(c, ich, och, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 ich_has_controls = 1;
1608 break;
1609 }
1610 }
1611 if (ich_has_controls)
1612 build_mixer_unit_ctl(state, desc, pin, ich,
1613 unitid, &iterm);
1614 }
1615 }
1616 return 0;
1617}
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619/*
1620 * Processing Unit / Extension Unit
1621 */
1622
1623/* get callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001624static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol,
1625 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001627 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 int err, val;
1629
1630 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001631 if (err < 0 && cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 ucontrol->value.integer.value[0] = cval->min;
1633 return 0;
1634 }
1635 if (err < 0)
1636 return err;
1637 val = get_relative_value(cval, val);
1638 ucontrol->value.integer.value[0] = val;
1639 return 0;
1640}
1641
1642/* put callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001643static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
1644 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001646 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 int val, oval, err;
1648
1649 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1650 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001651 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 return 0;
1653 return err;
1654 }
1655 val = ucontrol->value.integer.value[0];
1656 val = get_abs_value(cval, val);
1657 if (val != oval) {
1658 set_cur_ctl_value(cval, cval->control << 8, val);
1659 return 1;
1660 }
1661 return 0;
1662}
1663
1664/* alsa control interface for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001665static struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1667 .name = "", /* will be filled later */
1668 .info = mixer_ctl_feature_info,
1669 .get = mixer_ctl_procunit_get,
1670 .put = mixer_ctl_procunit_put,
1671};
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673/*
1674 * predefined data for processing units
1675 */
1676struct procunit_value_info {
1677 int control;
1678 char *suffix;
1679 int val_type;
1680 int min_value;
1681};
1682
1683struct procunit_info {
1684 int type;
1685 char *name;
1686 struct procunit_value_info *values;
1687};
1688
1689static struct procunit_value_info updown_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001690 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1691 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 { 0 }
1693};
1694static struct procunit_value_info prologic_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001695 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1696 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 { 0 }
1698};
1699static struct procunit_value_info threed_enh_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001700 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1701 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 { 0 }
1703};
1704static struct procunit_value_info reverb_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001705 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1706 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1707 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1708 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 { 0 }
1710};
1711static struct procunit_value_info chorus_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001712 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1713 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1714 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1715 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 { 0 }
1717};
1718static struct procunit_value_info dcr_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001719 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1720 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1721 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1722 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1723 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1724 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 { 0 }
1726};
1727
1728static struct procunit_info procunits[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001729 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1730 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1731 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1732 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1733 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1734 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 { 0 },
1736};
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001737/*
1738 * predefined data for extension units
1739 */
1740static struct procunit_value_info clock_rate_xu_info[] = {
Daniel Macke213e9c2010-05-11 18:13:50 +02001741 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1742 { 0 }
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001743};
1744static struct procunit_value_info clock_source_xu_info[] = {
1745 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1746 { 0 }
1747};
1748static struct procunit_value_info spdif_format_xu_info[] = {
1749 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1750 { 0 }
1751};
1752static struct procunit_value_info soft_limit_xu_info[] = {
1753 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1754 { 0 }
1755};
1756static struct procunit_info extunits[] = {
1757 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1758 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1759 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1760 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1761 { 0 }
1762};
Daniel Mack6bc170e2014-05-24 10:58:16 +02001763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764/*
1765 * build a processing/extension unit
1766 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001767static int build_audio_procunit(struct mixer_build *state, int unitid,
1768 void *raw_desc, struct procunit_info *list,
1769 char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
Daniel Mack99fc8642010-03-11 21:13:24 +01001771 struct uac_processing_unit_descriptor *desc = raw_desc;
1772 int num_ins = desc->bNrInPins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001773 struct usb_mixer_elem_info *cval;
1774 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 int i, err, nameid, type, len;
1776 struct procunit_info *info;
1777 struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001778 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 static struct procunit_value_info default_value_info[] = {
1780 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1781 { 0 }
1782 };
1783 static struct procunit_info default_info = {
1784 0, NULL, default_value_info
1785 };
1786
Daniel Mack23caaf12010-03-11 21:13:25 +01001787 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1788 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001789 usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return -EINVAL;
1791 }
1792
1793 for (i = 0; i < num_ins; i++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001794 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return err;
1796 }
1797
Daniel Mack99fc8642010-03-11 21:13:24 +01001798 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 for (info = list; info && info->type; info++)
1800 if (info->type == type)
1801 break;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001802 if (!info || !info->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 info = &default_info;
1804
1805 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001806 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01001807
Daniel Mack6bc170e2014-05-24 10:58:16 +02001808 if (!(controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 continue;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001810 map = find_map(state, unitid, valinfo->control);
1811 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02001813 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001814 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 return -ENOMEM;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001816 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 cval->id = unitid;
1818 cval->control = valinfo->control;
1819 cval->val_type = valinfo->val_type;
1820 cval->channels = 1;
1821
1822 /* get min/max values */
Daniel Mack65f25da2010-05-31 13:35:41 +02001823 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001824 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 /* FIXME: hard-coded */
1826 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001827 cval->max = control_spec[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 cval->res = 1;
1829 cval->initialized = 1;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001830 } else {
1831 if (type == USB_XU_CLOCK_RATE) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001832 /*
1833 * E-Mu USB 0404/0202/TrackerPre/0204
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001834 * samplerate control quirk
1835 */
1836 cval->min = 0;
1837 cval->max = 5;
1838 cval->res = 1;
1839 cval->initialized = 1;
1840 } else
1841 get_min_max(cval, valinfo->min_value);
1842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001845 if (!kctl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 kfree(cval);
1847 return -ENOMEM;
1848 }
1849 kctl->private_free = usb_mixer_elem_free;
1850
Daniel Mack6bc170e2014-05-24 10:58:16 +02001851 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001852 /* nothing */ ;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001853 } else if (info->name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001855 } else {
Daniel Mack23caaf12010-03-11 21:13:25 +01001856 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 len = 0;
1858 if (nameid)
Daniel Mack6bc170e2014-05-24 10:58:16 +02001859 len = snd_usb_copy_string_desc(state, nameid,
1860 kctl->id.name,
1861 sizeof(kctl->id.name));
1862 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1864 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02001865 append_ctl_name(kctl, " ");
1866 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001868 usb_audio_dbg(state->chip,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001869 "[%d] PU [%s] ch = %d, val = %d/%d\n",
1870 cval->id, kctl->id.name, cval->channels,
1871 cval->min, cval->max);
1872
1873 err = snd_usb_mixer_add_control(state->mixer, kctl);
1874 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return err;
1876 }
1877 return 0;
1878}
1879
Daniel Mack6bc170e2014-05-24 10:58:16 +02001880static int parse_audio_processing_unit(struct mixer_build *state, int unitid,
1881 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
Daniel Mack6bc170e2014-05-24 10:58:16 +02001883 return build_audio_procunit(state, unitid, raw_desc,
1884 procunits, "Processing Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886
Daniel Mack6bc170e2014-05-24 10:58:16 +02001887static int parse_audio_extension_unit(struct mixer_build *state, int unitid,
1888 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
Daniel Mack6bc170e2014-05-24 10:58:16 +02001890 /*
1891 * Note that we parse extension units with processing unit descriptors.
1892 * That's ok as the layout is the same.
1893 */
1894 return build_audio_procunit(state, unitid, raw_desc,
1895 extunits, "Extension Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896}
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898/*
1899 * Selector Unit
1900 */
1901
Daniel Mack6bc170e2014-05-24 10:58:16 +02001902/*
1903 * info callback for selector unit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 * use an enumerator type for routing
1905 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001906static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol,
1907 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001909 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01001910 const char **itemlist = (const char **)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Takashi Iwai5e246b82008-08-08 17:12:47 +02001912 if (snd_BUG_ON(!itemlist))
1913 return -EINVAL;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01001914 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915}
1916
1917/* get callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001918static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol,
1919 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001921 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 int val, err;
1923
Daniel Mack09414202010-05-31 13:35:44 +02001924 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001926 if (cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 ucontrol->value.enumerated.item[0] = 0;
1928 return 0;
1929 }
1930 return err;
1931 }
1932 val = get_relative_value(cval, val);
1933 ucontrol->value.enumerated.item[0] = val;
1934 return 0;
1935}
1936
1937/* put callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001938static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
1939 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001941 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 int val, oval, err;
1943
Daniel Mack09414202010-05-31 13:35:44 +02001944 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001946 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 return 0;
1948 return err;
1949 }
1950 val = ucontrol->value.enumerated.item[0];
1951 val = get_abs_value(cval, val);
1952 if (val != oval) {
Daniel Mack09414202010-05-31 13:35:44 +02001953 set_cur_ctl_value(cval, cval->control << 8, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 return 1;
1955 }
1956 return 0;
1957}
1958
1959/* alsa control interface for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001960static struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1962 .name = "", /* will be filled later */
1963 .info = mixer_ctl_selector_info,
1964 .get = mixer_ctl_selector_get,
1965 .put = mixer_ctl_selector_put,
1966};
1967
Daniel Mack6bc170e2014-05-24 10:58:16 +02001968/*
1969 * private free callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 * free both private_data and private_value
1971 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001972static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
1974 int i, num_ins = 0;
1975
1976 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001977 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 num_ins = cval->max;
1979 kfree(cval);
1980 kctl->private_data = NULL;
1981 }
1982 if (kctl->private_value) {
1983 char **itemlist = (char **)kctl->private_value;
1984 for (i = 0; i < num_ins; i++)
1985 kfree(itemlist[i]);
1986 kfree(itemlist);
1987 kctl->private_value = 0;
1988 }
1989}
1990
1991/*
1992 * parse a selector unit
1993 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001994static int parse_audio_selector_unit(struct mixer_build *state, int unitid,
1995 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
Daniel Mack99fc8642010-03-11 21:13:24 +01001997 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 unsigned int i, nameid, len;
1999 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002000 struct usb_mixer_elem_info *cval;
2001 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002002 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 char **namelist;
2004
Daniel Mack99fc8642010-03-11 21:13:24 +01002005 if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002006 usb_audio_err(state->chip,
2007 "invalid SELECTOR UNIT descriptor %d\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 return -EINVAL;
2009 }
2010
Daniel Mack99fc8642010-03-11 21:13:24 +01002011 for (i = 0; i < desc->bNrInPins; i++) {
2012 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 return err;
2014 }
2015
Daniel Mack99fc8642010-03-11 21:13:24 +01002016 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 return 0;
2018
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002019 map = find_map(state, unitid, 0);
2020 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return 0;
2022
Takashi Iwai561b2202005-09-09 14:22:34 +02002023 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02002024 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 return -ENOMEM;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002026 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 cval->id = unitid;
2028 cval->val_type = USB_MIXER_U8;
2029 cval->channels = 1;
2030 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01002031 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 cval->res = 1;
2033 cval->initialized = 1;
2034
Daniel Mack09414202010-05-31 13:35:44 +02002035 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2036 cval->control = UAC2_CX_CLOCK_SELECTOR;
2037 else
2038 cval->control = 0;
2039
Daniel Mack99fc8642010-03-11 21:13:24 +01002040 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002041 if (!namelist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 kfree(cval);
2043 return -ENOMEM;
2044 }
2045#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01002046 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002047 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 len = 0;
2049 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002050 if (!namelist[i]) {
Mariusz Kozlowski7fbe3ca2007-01-08 11:25:30 +01002051 while (i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 kfree(namelist[i]);
2053 kfree(namelist);
2054 kfree(cval);
2055 return -ENOMEM;
2056 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002057 len = check_mapped_selector_name(state, unitid, i, namelist[i],
2058 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01002059 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
2061 if (! len)
Masanari Iidaaf831ee2014-04-28 13:08:55 +09002062 sprintf(namelist[i], "Input %u", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
2064
2065 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
2066 if (! kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002067 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Jesper Juhl878b4782006-03-20 11:27:13 +01002068 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 kfree(cval);
2070 return -ENOMEM;
2071 }
2072 kctl->private_value = (unsigned long)namelist;
2073 kctl->private_free = usb_mixer_selector_elem_free;
2074
Daniel Mack99fc8642010-03-11 21:13:24 +01002075 nameid = uac_selector_unit_iSelector(desc);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002076 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (len)
2078 ;
2079 else if (nameid)
Daniel Mack6bc170e2014-05-24 10:58:16 +02002080 snd_usb_copy_string_desc(state, nameid, kctl->id.name,
2081 sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 else {
2083 len = get_term_name(state, &state->oterm,
2084 kctl->id.name, sizeof(kctl->id.name), 0);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002085 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
2087
Daniel Mack09414202010-05-31 13:35:44 +02002088 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2089 append_ctl_name(kctl, " Clock Source");
2090 else if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02002091 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02002093 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 }
2095
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002096 usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n",
Daniel Mack99fc8642010-03-11 21:13:24 +01002097 cval->id, kctl->id.name, desc->bNrInPins);
Daniel Mackef9d5972011-05-25 09:09:00 +02002098 if ((err = snd_usb_mixer_add_control(state->mixer, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 return err;
2100
2101 return 0;
2102}
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104/*
2105 * parse an audio unit recursively
2106 */
2107
Takashi Iwai86e07d32005-11-17 15:08:02 +01002108static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
2110 unsigned char *p1;
2111
2112 if (test_and_set_bit(unitid, state->unitbitmap))
2113 return 0; /* the unit already visited */
2114
2115 p1 = find_audio_control_unit(state, unitid);
2116 if (!p1) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002117 usb_audio_err(state->chip, "unit %d not found!\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 return -EINVAL;
2119 }
2120
2121 switch (p1[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01002122 case UAC_INPUT_TERMINAL:
Daniel Mack09414202010-05-31 13:35:44 +02002123 case UAC2_CLOCK_SOURCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 return 0; /* NOP */
Daniel Mackde48c7b2010-02-22 23:49:13 +01002125 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return parse_audio_mixer_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01002127 case UAC_SELECTOR_UNIT:
Daniel Mack09414202010-05-31 13:35:44 +02002128 case UAC2_CLOCK_SELECTOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 return parse_audio_selector_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01002130 case UAC_FEATURE_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return parse_audio_feature_unit(state, unitid, p1);
Daniel Mack69da9bc2010-06-16 17:57:28 +02002132 case UAC1_PROCESSING_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002133 /* UAC2_EFFECT_UNIT has the same value */
2134 if (state->mixer->protocol == UAC_VERSION_1)
2135 return parse_audio_processing_unit(state, unitid, p1);
2136 else
2137 return 0; /* FIXME - effect units not implemented yet */
Daniel Mack69da9bc2010-06-16 17:57:28 +02002138 case UAC1_EXTENSION_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002139 /* UAC2_PROCESSING_UNIT_V2 has the same value */
2140 if (state->mixer->protocol == UAC_VERSION_1)
2141 return parse_audio_extension_unit(state, unitid, p1);
2142 else /* UAC_VERSION_2 */
2143 return parse_audio_processing_unit(state, unitid, p1);
Torstein Hegge61ac5132013-03-19 17:12:14 +01002144 case UAC2_EXTENSION_UNIT_V2:
2145 return parse_audio_extension_unit(state, unitid, p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002147 usb_audio_err(state->chip,
2148 "unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 return -EINVAL;
2150 }
2151}
2152
Clemens Ladisch84957a82005-04-29 16:23:13 +02002153static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
2154{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002155 kfree(mixer->id_elems);
2156 if (mixer->urb) {
2157 kfree(mixer->urb->transfer_buffer);
2158 usb_free_urb(mixer->urb);
2159 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002160 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02002161 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002162 kfree(mixer);
2163}
2164
Takashi Iwai86e07d32005-11-17 15:08:02 +01002165static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002166{
2167 struct usb_mixer_interface *mixer = device->device_data;
2168 snd_usb_mixer_free(mixer);
2169 return 0;
2170}
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172/*
2173 * create mixer controls
2174 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01002175 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02002177static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002179 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 int err;
2181 const struct usbmix_ctl_map *map;
Daniel Mack23caaf12010-03-11 21:13:25 +01002182 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02002185 state.chip = mixer->chip;
2186 state.mixer = mixer;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002187 state.buffer = mixer->hostif->extra;
2188 state.buflen = mixer->hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002191 for (map = usbmix_ctl_maps; map->id; map++) {
2192 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002194 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002195 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 break;
2197 }
2198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Daniel Mack23caaf12010-03-11 21:13:25 +01002200 p = NULL;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002201 while ((p = snd_usb_find_csint_desc(mixer->hostif->extra,
2202 mixer->hostif->extralen,
Daniel Mack1faa5d02011-08-04 15:56:28 +02002203 p, UAC_OUTPUT_TERMINAL)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002204 if (mixer->protocol == UAC_VERSION_1) {
Daniel Mack69da9bc2010-06-16 17:57:28 +02002205 struct uac1_output_terminal_descriptor *desc = p;
Daniel Mack23caaf12010-03-11 21:13:25 +01002206
2207 if (desc->bLength < sizeof(*desc))
2208 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002209 /* mark terminal ID as visited */
2210 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002211 state.oterm.id = desc->bTerminalID;
2212 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2213 state.oterm.name = desc->iTerminal;
2214 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002215 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002216 return err;
2217 } else { /* UAC_VERSION_2 */
2218 struct uac2_output_terminal_descriptor *desc = p;
2219
2220 if (desc->bLength < sizeof(*desc))
2221 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002222 /* mark terminal ID as visited */
2223 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002224 state.oterm.id = desc->bTerminalID;
2225 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2226 state.oterm.name = desc->iTerminal;
2227 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002228 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002229 return err;
Daniel Mack09414202010-05-31 13:35:44 +02002230
Daniel Mack6bc170e2014-05-24 10:58:16 +02002231 /*
2232 * For UAC2, use the same approach to also add the
2233 * clock selectors
2234 */
Daniel Mack09414202010-05-31 13:35:44 +02002235 err = parse_audio_unit(&state, desc->bCSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002236 if (err < 0 && err != -EINVAL)
Daniel Mack09414202010-05-31 13:35:44 +02002237 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +01002238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 }
Daniel Mack23caaf12010-03-11 21:13:25 +01002240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 return 0;
2242}
Clemens Ladisch84957a82005-04-29 16:23:13 +02002243
Daniel Mack7b1eda22010-03-11 21:13:22 +01002244void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002245{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002246 struct usb_mixer_elem_info *info;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002247
2248 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
2249 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2250 info->elem_id);
2251}
2252
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002253static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
2254 int unitid,
2255 struct usb_mixer_elem_info *cval)
2256{
2257 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
2258 "S8", "U8", "S16", "U16"};
2259 snd_iprintf(buffer, " Unit: %i\n", unitid);
2260 if (cval->elem_id)
2261 snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
2262 cval->elem_id->name, cval->elem_id->index);
2263 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
2264 "channels=%i, type=\"%s\"\n", cval->id,
2265 cval->control, cval->cmask, cval->channels,
2266 val_types[cval->val_type]);
2267 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
2268 cval->min, cval->max, cval->dBmin, cval->dBmax);
2269}
2270
2271static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
2272 struct snd_info_buffer *buffer)
2273{
2274 struct snd_usb_audio *chip = entry->private_data;
2275 struct usb_mixer_interface *mixer;
2276 struct usb_mixer_elem_info *cval;
2277 int unitid;
2278
2279 list_for_each_entry(mixer, &chip->mixer_list, list) {
2280 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002281 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
Daniel Mack3d8d4dc2010-06-16 17:57:31 +02002282 chip->usb_id, snd_usb_ctrl_intf(chip),
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002283 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002284 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
2285 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
2286 for (cval = mixer->id_elems[unitid]; cval;
2287 cval = cval->next_id_elem)
2288 snd_usb_mixer_dump_cval(buffer, unitid, cval);
2289 }
2290 }
2291}
2292
Daniel Macke213e9c2010-05-11 18:13:50 +02002293static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
2294 int attribute, int value, int index)
2295{
2296 struct usb_mixer_elem_info *info;
2297 __u8 unitid = (index >> 8) & 0xff;
2298 __u8 control = (value >> 8) & 0xff;
2299 __u8 channel = value & 0xff;
2300
2301 if (channel >= MAX_CHANNELS) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002302 usb_audio_dbg(mixer->chip,
2303 "%s(): bogus channel number %d\n",
2304 __func__, channel);
Daniel Macke213e9c2010-05-11 18:13:50 +02002305 return;
2306 }
2307
2308 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem) {
2309 if (info->control != control)
2310 continue;
2311
2312 switch (attribute) {
2313 case UAC2_CS_CUR:
2314 /* invalidate cache, so the value is read from the device */
2315 if (channel)
2316 info->cached &= ~(1 << channel);
2317 else /* master channel */
2318 info->cached = 0;
2319
2320 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2321 info->elem_id);
2322 break;
2323
2324 case UAC2_CS_RANGE:
2325 /* TODO */
2326 break;
2327
2328 case UAC2_CS_MEM:
2329 /* TODO */
2330 break;
2331
2332 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002333 usb_audio_dbg(mixer->chip,
2334 "unknown attribute %d in interrupt\n",
2335 attribute);
Daniel Macke213e9c2010-05-11 18:13:50 +02002336 break;
2337 } /* switch */
2338 }
2339}
2340
2341static void snd_usb_mixer_interrupt(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002342{
2343 struct usb_mixer_interface *mixer = urb->context;
Daniel Macke213e9c2010-05-11 18:13:50 +02002344 int len = urb->actual_length;
Oliver Neukumedf7de32011-03-11 13:19:43 +01002345 int ustatus = urb->status;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002346
Oliver Neukumedf7de32011-03-11 13:19:43 +01002347 if (ustatus != 0)
Daniel Macke213e9c2010-05-11 18:13:50 +02002348 goto requeue;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002349
Daniel Macke213e9c2010-05-11 18:13:50 +02002350 if (mixer->protocol == UAC_VERSION_1) {
2351 struct uac1_status_word *status;
2352
2353 for (status = urb->transfer_buffer;
2354 len >= sizeof(*status);
2355 len -= sizeof(*status), status++) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002356 dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n",
Daniel Macke213e9c2010-05-11 18:13:50 +02002357 status->bStatusType,
2358 status->bOriginator);
2359
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002360 /* ignore any notifications not from the control interface */
Daniel Macke213e9c2010-05-11 18:13:50 +02002361 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2362 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002363 continue;
Daniel Macke213e9c2010-05-11 18:13:50 +02002364
2365 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2366 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
Clemens Ladischb259b102005-04-29 16:29:28 +02002367 else
Daniel Macke213e9c2010-05-11 18:13:50 +02002368 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2369 }
2370 } else { /* UAC_VERSION_2 */
2371 struct uac2_interrupt_data_msg *msg;
2372
2373 for (msg = urb->transfer_buffer;
2374 len >= sizeof(*msg);
2375 len -= sizeof(*msg), msg++) {
2376 /* drop vendor specific and endpoint requests */
2377 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2378 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2379 continue;
2380
2381 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2382 le16_to_cpu(msg->wValue),
2383 le16_to_cpu(msg->wIndex));
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002384 }
2385 }
Daniel Macke213e9c2010-05-11 18:13:50 +02002386
2387requeue:
Daniel Mack6bc170e2014-05-24 10:58:16 +02002388 if (ustatus != -ENOENT &&
2389 ustatus != -ECONNRESET &&
2390 ustatus != -ESHUTDOWN) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002391 urb->dev = mixer->chip->dev;
2392 usb_submit_urb(urb, GFP_ATOMIC);
2393 }
2394}
2395
2396/* create the handler for the optional status interrupt endpoint */
2397static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2398{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002399 struct usb_endpoint_descriptor *ep;
2400 void *transfer_buffer;
2401 int buffer_length;
2402 unsigned int epnum;
2403
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002404 /* we need one interrupt input endpoint */
Daniel Mack1faa5d02011-08-04 15:56:28 +02002405 if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002406 return 0;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002407 ep = get_endpoint(mixer->hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01002408 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002409 return 0;
2410
Julia Lawall42a6e662008-12-29 11:23:02 +01002411 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002412 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2413 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2414 if (!transfer_buffer)
2415 return -ENOMEM;
2416 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2417 if (!mixer->urb) {
2418 kfree(transfer_buffer);
2419 return -ENOMEM;
2420 }
2421 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2422 usb_rcvintpipe(mixer->chip->dev, epnum),
2423 transfer_buffer, buffer_length,
Daniel Macke213e9c2010-05-11 18:13:50 +02002424 snd_usb_mixer_interrupt, mixer, ep->bInterval);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002425 usb_submit_urb(mixer->urb, GFP_KERNEL);
2426 return 0;
2427}
2428
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002429int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2430 int ignore_error)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002431{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002432 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002433 .dev_free = snd_usb_mixer_dev_free
2434 };
2435 struct usb_mixer_interface *mixer;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002436 struct snd_info_entry *entry;
Daniel Mack23caaf12010-03-11 21:13:25 +01002437 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002438
2439 strcpy(chip->card->mixername, "USB Mixer");
2440
Takashi Iwai561b2202005-09-09 14:22:34 +02002441 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002442 if (!mixer)
2443 return -ENOMEM;
2444 mixer->chip = chip;
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002445 mixer->ignore_ctl_error = ignore_error;
Jaroslav Kysela291186e2010-02-16 11:55:18 +01002446 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2447 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002448 if (!mixer->id_elems) {
2449 kfree(mixer);
2450 return -ENOMEM;
2451 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002452
Daniel Mack1faa5d02011-08-04 15:56:28 +02002453 mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
2454 switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +02002455 case UAC_VERSION_1:
2456 default:
2457 mixer->protocol = UAC_VERSION_1;
2458 break;
2459 case UAC_VERSION_2:
2460 mixer->protocol = UAC_VERSION_2;
2461 break;
2462 }
Daniel Mack7b8a0432010-02-22 23:49:12 +01002463
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002464 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002465 (err = snd_usb_mixer_status_create(mixer)) < 0)
2466 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002467
Daniel Mack7b1eda22010-03-11 21:13:22 +01002468 snd_usb_mixer_apply_create_quirk(mixer);
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02002469
Takashi Iwai9cbb2802014-02-04 11:15:31 +01002470 err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002471 if (err < 0)
2472 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002473
2474 if (list_empty(&chip->mixer_list) &&
2475 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2476 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2477
Clemens Ladisch84957a82005-04-29 16:23:13 +02002478 list_add(&mixer->list, &chip->mixer_list);
2479 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002480
2481_error:
2482 snd_usb_mixer_free(mixer);
2483 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002484}
2485
Takashi Iwaia6cece92014-10-31 11:24:32 +01002486void snd_usb_mixer_disconnect(struct usb_mixer_interface *mixer)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002487{
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002488 usb_kill_urb(mixer->urb);
2489 usb_kill_urb(mixer->rc_urb);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002490}
Takashi Iwai400362f2014-01-20 16:51:16 +01002491
2492#ifdef CONFIG_PM
2493/* stop any bus activity of a mixer */
2494static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
2495{
2496 usb_kill_urb(mixer->urb);
2497 usb_kill_urb(mixer->rc_urb);
2498}
2499
2500static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
2501{
2502 int err;
2503
2504 if (mixer->urb) {
2505 err = usb_submit_urb(mixer->urb, GFP_NOIO);
2506 if (err < 0)
2507 return err;
2508 }
2509
2510 return 0;
2511}
2512
2513int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer)
2514{
2515 snd_usb_mixer_inactivate(mixer);
2516 return 0;
2517}
2518
2519static int restore_mixer_value(struct usb_mixer_elem_info *cval)
2520{
2521 int c, err, idx;
2522
2523 if (cval->cmask) {
2524 idx = 0;
2525 for (c = 0; c < MAX_CHANNELS; c++) {
2526 if (!(cval->cmask & (1 << c)))
2527 continue;
2528 if (cval->cached & (1 << c)) {
2529 err = set_cur_mix_value(cval, c + 1, idx,
2530 cval->cache_val[idx]);
2531 if (err < 0)
2532 return err;
2533 }
2534 idx++;
2535 }
2536 } else {
2537 /* master */
2538 if (cval->cached) {
2539 err = set_cur_mix_value(cval, 0, 0, *cval->cache_val);
2540 if (err < 0)
2541 return err;
2542 }
2543 }
2544
2545 return 0;
2546}
2547
2548int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume)
2549{
2550 struct usb_mixer_elem_info *cval;
2551 int id, err;
2552
2553 /* FIXME: any mixer quirks? */
2554
2555 if (reset_resume) {
2556 /* restore cached mixer values */
2557 for (id = 0; id < MAX_ID_ELEMS; id++) {
2558 for (cval = mixer->id_elems[id]; cval;
2559 cval = cval->next_id_elem) {
2560 err = restore_mixer_value(cval);
2561 if (err < 0)
2562 return err;
2563 }
2564 }
2565 }
2566
2567 return snd_usb_mixer_activate(mixer);
2568}
2569#endif