blob: 1deef623c0810e36af237893e264d8813046848a [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/bitops.h>
30#include <linux/init.h>
31#include <linux/list.h>
32#include <linux/slab.h>
33#include <linux/string.h>
34#include <linux/usb.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010035#include <linux/usb/audio.h>
Daniel Mack23caaf12010-03-11 21:13:25 +010036#include <linux/usb/audio-v2.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <sound/core.h>
39#include <sound/control.h>
Clemens Ladischb259b102005-04-29 16:29:28 +020040#include <sound/hwdep.h>
Clemens Ladischaafad562005-05-10 14:47:38 +020041#include <sound/info.h>
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +020042#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include "usbaudio.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010045#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010046#include "helper.h"
Daniel Mack7b1eda22010-03-11 21:13:22 +010047#include "mixer_quirks.h"
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +020048
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +010049#define MAX_ID_ELEMS 256
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051struct usb_audio_term {
52 int id;
53 int type;
54 int channels;
55 unsigned int chconfig;
56 int name;
57};
58
59struct usbmix_name_map;
60
Takashi Iwai86e07d32005-11-17 15:08:02 +010061struct mixer_build {
62 struct snd_usb_audio *chip;
Clemens Ladisch84957a82005-04-29 16:23:13 +020063 struct usb_mixer_interface *mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 unsigned char *buffer;
65 unsigned int buflen;
Jaroslav Kysela291186e2010-02-16 11:55:18 +010066 DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
Takashi Iwai86e07d32005-11-17 15:08:02 +010067 struct usb_audio_term oterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 const struct usbmix_name_map *map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +020069 const struct usbmix_selector_map *selector_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072enum {
73 USB_MIXER_BOOLEAN,
74 USB_MIXER_INV_BOOLEAN,
75 USB_MIXER_S8,
76 USB_MIXER_U8,
77 USB_MIXER_S16,
78 USB_MIXER_U16,
79};
80
81enum {
82 USB_PROC_UPDOWN = 1,
83 USB_PROC_UPDOWN_SWITCH = 1,
84 USB_PROC_UPDOWN_MODE_SEL = 2,
85
86 USB_PROC_PROLOGIC = 2,
87 USB_PROC_PROLOGIC_SWITCH = 1,
88 USB_PROC_PROLOGIC_MODE_SEL = 2,
89
90 USB_PROC_3DENH = 3,
91 USB_PROC_3DENH_SWITCH = 1,
92 USB_PROC_3DENH_SPACE = 2,
93
94 USB_PROC_REVERB = 4,
95 USB_PROC_REVERB_SWITCH = 1,
96 USB_PROC_REVERB_LEVEL = 2,
97 USB_PROC_REVERB_TIME = 3,
98 USB_PROC_REVERB_DELAY = 4,
99
100 USB_PROC_CHORUS = 5,
101 USB_PROC_CHORUS_SWITCH = 1,
102 USB_PROC_CHORUS_LEVEL = 2,
103 USB_PROC_CHORUS_RATE = 3,
104 USB_PROC_CHORUS_DEPTH = 4,
105
106 USB_PROC_DCR = 6,
107 USB_PROC_DCR_SWITCH = 1,
108 USB_PROC_DCR_RATIO = 2,
109 USB_PROC_DCR_MAX_AMP = 3,
110 USB_PROC_DCR_THRESHOLD = 4,
111 USB_PROC_DCR_ATTACK = 5,
112 USB_PROC_DCR_RELEASE = 6,
113};
114
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -0800115/*E-mu 0202(0404) eXtension Unit(XU) control*/
116enum {
117 USB_XU_CLOCK_RATE = 0xe301,
118 USB_XU_CLOCK_SOURCE = 0xe302,
119 USB_XU_DIGITAL_IO_STATUS = 0xe303,
120 USB_XU_DEVICE_OPTIONS = 0xe304,
121 USB_XU_DIRECT_MONITORING = 0xe305,
122 USB_XU_METERING = 0xe306
123};
124enum {
125 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
126 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
127 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
128 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
129};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/*
132 * manual mapping of mixer names
133 * if the mixer topology is too complicated and the parsed names are
134 * ambiguous, add the entries in usbmixer_maps.c.
135 */
Daniel Mackf0b5e632010-03-11 21:13:23 +0100136#include "mixer_maps.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100138static const struct usbmix_name_map *
139find_map(struct mixer_build *state, int unitid, int control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100141 const struct usbmix_name_map *p = state->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100143 if (!p)
144 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 for (p = state->map; p->id; p++) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100147 if (p->id == unitid &&
148 (!control || !p->control || control == p->control))
149 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100151 return NULL;
152}
153
154/* get the mapped name if the unit matches */
155static int
156check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
157{
158 if (!p || !p->name)
159 return 0;
160
161 buflen--;
162 return strlcpy(buf, p->name, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
165/* check whether the control should be ignored */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100166static inline int
167check_ignored_ctl(const struct usbmix_name_map *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100169 if (!p || p->name || p->dB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return 0;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100171 return 1;
172}
173
174/* dB mapping */
175static inline void check_mapped_dB(const struct usbmix_name_map *p,
176 struct usb_mixer_elem_info *cval)
177{
178 if (p && p->dB) {
179 cval->dBmin = p->dB->min;
180 cval->dBmax = p->dB->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200184/* get the mapped selector source name */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100185static int check_mapped_selector_name(struct mixer_build *state, int unitid,
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200186 int index, char *buf, int buflen)
187{
188 const struct usbmix_selector_map *p;
189
190 if (! state->selector_map)
191 return 0;
192 for (p = state->selector_map; p->id; p++) {
193 if (p->id == unitid && index < p->count)
194 return strlcpy(buf, p->names[index], buflen);
195 }
196 return 0;
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/*
200 * find an audio control unit with the given unit id
Daniel Mack23caaf12010-03-11 21:13:25 +0100201 * this doesn't return any clock related units, so they need to be handled elsewhere
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100203static void *find_audio_control_unit(struct mixer_build *state, unsigned char unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 unsigned char *p;
206
207 p = NULL;
208 while ((p = snd_usb_find_desc(state->buffer, state->buflen, p,
209 USB_DT_CS_INTERFACE)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100210 if (p[0] >= 4 && p[2] >= UAC_INPUT_TERMINAL && p[2] <= UAC2_EXTENSION_UNIT_V2 && p[3] == unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return p;
212 }
213 return NULL;
214}
215
216
217/*
218 * copy a string with the given id
219 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100220static int snd_usb_copy_string_desc(struct mixer_build *state, int index, char *buf, int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
223 buf[len] = 0;
224 return len;
225}
226
227/*
228 * convert from the byte/word on usb descriptor to the zero-based integer
229 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100230static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 switch (cval->val_type) {
233 case USB_MIXER_BOOLEAN:
234 return !!val;
235 case USB_MIXER_INV_BOOLEAN:
236 return !val;
237 case USB_MIXER_U8:
238 val &= 0xff;
239 break;
240 case USB_MIXER_S8:
241 val &= 0xff;
242 if (val >= 0x80)
243 val -= 0x100;
244 break;
245 case USB_MIXER_U16:
246 val &= 0xffff;
247 break;
248 case USB_MIXER_S16:
249 val &= 0xffff;
250 if (val >= 0x8000)
251 val -= 0x10000;
252 break;
253 }
254 return val;
255}
256
257/*
258 * convert from the zero-based int to the byte/word for usb descriptor
259 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100260static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 switch (cval->val_type) {
263 case USB_MIXER_BOOLEAN:
264 return !!val;
265 case USB_MIXER_INV_BOOLEAN:
266 return !val;
267 case USB_MIXER_S8:
268 case USB_MIXER_U8:
269 return val & 0xff;
270 case USB_MIXER_S16:
271 case USB_MIXER_U16:
272 return val & 0xffff;
273 }
274 return 0; /* not reached */
275}
276
Takashi Iwai86e07d32005-11-17 15:08:02 +0100277static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 if (! cval->res)
280 cval->res = 1;
281 if (val < cval->min)
282 return 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200283 else if (val >= cval->max)
284 return (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 else
286 return (val - cval->min) / cval->res;
287}
288
Takashi Iwai86e07d32005-11-17 15:08:02 +0100289static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 if (val < 0)
292 return cval->min;
293 if (! cval->res)
294 cval->res = 1;
295 val *= cval->res;
296 val += cval->min;
297 if (val > cval->max)
298 return cval->max;
299 return val;
300}
301
302
303/*
304 * retrieve a mixer value
305 */
306
Daniel Mack23caaf12010-03-11 21:13:25 +0100307static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 unsigned char buf[2];
310 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
311 int timeout = 10;
312
313 while (timeout-- > 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200314 if (snd_usb_ctl_msg(cval->mixer->chip->dev,
315 usb_rcvctrlpipe(cval->mixer->chip->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 request,
317 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Clemens Ladisch84957a82005-04-29 16:23:13 +0200318 validx, cval->mixer->ctrlif | (cval->id << 8),
Thomas Reitmayra04395e2007-05-15 11:47:48 +0200319 buf, val_len, 100) >= val_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
321 return 0;
322 }
323 }
Clemens Ladisch84957a82005-04-29 16:23:13 +0200324 snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
325 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return -EINVAL;
327}
328
Daniel Mack23caaf12010-03-11 21:13:25 +0100329static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
330{
331 unsigned char buf[14]; /* enough space for one range of 4 bytes */
332 unsigned char *val;
333 int ret;
334 __u8 bRequest;
335
336 bRequest = (request == UAC_GET_CUR) ?
337 UAC2_CS_CUR : UAC2_CS_RANGE;
338
339 ret = snd_usb_ctl_msg(cval->mixer->chip->dev,
340 usb_rcvctrlpipe(cval->mixer->chip->dev, 0),
341 bRequest,
342 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
343 validx, cval->mixer->ctrlif | (cval->id << 8),
344 buf, sizeof(buf), 1000);
345
346 if (ret < 0) {
347 snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
348 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type);
349 return ret;
350 }
351
352 switch (request) {
353 case UAC_GET_CUR:
354 val = buf;
355 break;
356 case UAC_GET_MIN:
357 val = buf + sizeof(__u16);
358 break;
359 case UAC_GET_MAX:
360 val = buf + sizeof(__u16) * 2;
361 break;
362 case UAC_GET_RES:
363 val = buf + sizeof(__u16) * 3;
364 break;
365 default:
366 return -EINVAL;
367 }
368
369 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(val, sizeof(__u16)));
370
371 return 0;
372}
373
374static int get_ctl_value(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
375{
376 return (cval->mixer->protocol == UAC_VERSION_1) ?
377 get_ctl_value_v1(cval, request, validx, value_ret) :
378 get_ctl_value_v2(cval, request, validx, value_ret);
379}
380
Takashi Iwai86e07d32005-11-17 15:08:02 +0100381static int get_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100383 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
386/* channel = 0: master, 1 = first channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100387static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
388 int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100390 return get_ctl_value(cval, UAC_GET_CUR, (cval->control << 8) | channel, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Takashi Iwai641b4872009-01-15 17:05:24 +0100393static int get_cur_mix_value(struct usb_mixer_elem_info *cval,
394 int channel, int index, int *value)
395{
396 int err;
397
398 if (cval->cached & (1 << channel)) {
399 *value = cval->cache_val[index];
400 return 0;
401 }
402 err = get_cur_mix_raw(cval, channel, value);
403 if (err < 0) {
404 if (!cval->mixer->ignore_ctl_error)
Daniel Mack23caaf12010-03-11 21:13:25 +0100405 snd_printd(KERN_ERR "cannot get current value for control %d ch %d: err = %d\n",
Takashi Iwai641b4872009-01-15 17:05:24 +0100406 cval->control, channel, err);
407 return err;
408 }
409 cval->cached |= 1 << channel;
410 cval->cache_val[index] = *value;
411 return 0;
412}
413
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/*
416 * set a mixer value
417 */
418
Daniel Mack7b1eda22010-03-11 21:13:22 +0100419int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
420 int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 unsigned char buf[2];
Daniel Mack23caaf12010-03-11 21:13:25 +0100423 int val_len, timeout = 10;
424
425 if (cval->mixer->protocol == UAC_VERSION_1) {
426 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
427 } else { /* UAC_VERSION_2 */
428 /* audio class v2 controls are always 2 bytes in size */
429 val_len = sizeof(__u16);
430
431 /* FIXME */
432 if (request != UAC_SET_CUR) {
433 snd_printdd(KERN_WARNING "RANGE setting not yet supported\n");
434 return -EINVAL;
435 }
436
437 request = UAC2_CS_CUR;
438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 value_set = convert_bytes_value(cval, value_set);
441 buf[0] = value_set & 0xff;
442 buf[1] = (value_set >> 8) & 0xff;
Viral Mehtacf3f9132009-04-03 13:08:14 +0530443 while (timeout-- > 0)
Clemens Ladisch84957a82005-04-29 16:23:13 +0200444 if (snd_usb_ctl_msg(cval->mixer->chip->dev,
445 usb_sndctrlpipe(cval->mixer->chip->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 request,
447 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
Clemens Ladisch84957a82005-04-29 16:23:13 +0200448 validx, cval->mixer->ctrlif | (cval->id << 8),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 buf, val_len, 100) >= 0)
450 return 0;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200451 snd_printdd(KERN_ERR "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
452 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type, buf[0], buf[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return -EINVAL;
454}
455
Takashi Iwai86e07d32005-11-17 15:08:02 +0100456static int set_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Daniel Mack7b1eda22010-03-11 21:13:22 +0100458 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Takashi Iwai641b4872009-01-15 17:05:24 +0100461static int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
462 int index, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Takashi Iwai641b4872009-01-15 17:05:24 +0100464 int err;
Daniel Mack7b1eda22010-03-11 21:13:22 +0100465 err = snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, (cval->control << 8) | channel,
Takashi Iwai641b4872009-01-15 17:05:24 +0100466 value);
467 if (err < 0)
468 return err;
469 cval->cached |= 1 << channel;
470 cval->cache_val[index] = value;
471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200474/*
475 * TLV callback for mixer volume controls
476 */
477static int mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
478 unsigned int size, unsigned int __user *_tlv)
479{
480 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Takashi Iwaib8e1c732009-06-16 14:04:37 +0200481 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200482
483 if (size < sizeof(scale))
484 return -ENOMEM;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100485 scale[2] = cval->dBmin;
486 scale[3] = cval->dBmax;
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200487 if (copy_to_user(_tlv, scale, sizeof(scale)))
488 return -EFAULT;
489 return 0;
490}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492/*
493 * parser routines begin here...
494 */
495
Takashi Iwai86e07d32005-11-17 15:08:02 +0100496static int parse_audio_unit(struct mixer_build *state, int unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498
499/*
500 * check if the input/output channel routing is enabled on the given bitmap.
501 * used for mixer unit parser
502 */
503static int check_matrix_bitmap(unsigned char *bmap, int ich, int och, int num_outs)
504{
505 int idx = ich * num_outs + och;
506 return bmap[idx >> 3] & (0x80 >> (idx & 7));
507}
508
509
510/*
511 * add an alsa control element
512 * search and increment the index until an empty slot is found.
513 *
514 * if failed, give up and free the control instance.
515 */
516
Takashi Iwai86e07d32005-11-17 15:08:02 +0100517static int add_control_to_empty(struct mixer_build *state, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100519 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200521
522 while (snd_ctl_find_id(state->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 kctl->id.index++;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200524 if ((err = snd_ctl_add(state->chip->card, kctl)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 snd_printd(KERN_ERR "cannot add control (err = %d)\n", err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200526 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200528 cval->elem_id = &kctl->id;
529 cval->next_id_elem = state->mixer->id_elems[cval->id];
530 state->mixer->id_elems[cval->id] = cval;
531 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
534
535/*
536 * get a terminal name string
537 */
538
539static struct iterm_name_combo {
540 int type;
541 char *name;
542} iterm_names[] = {
543 { 0x0300, "Output" },
544 { 0x0301, "Speaker" },
545 { 0x0302, "Headphone" },
546 { 0x0303, "HMD Audio" },
547 { 0x0304, "Desktop Speaker" },
548 { 0x0305, "Room Speaker" },
549 { 0x0306, "Com Speaker" },
550 { 0x0307, "LFE" },
551 { 0x0600, "External In" },
552 { 0x0601, "Analog In" },
553 { 0x0602, "Digital In" },
554 { 0x0603, "Line" },
555 { 0x0604, "Legacy In" },
556 { 0x0605, "IEC958 In" },
557 { 0x0606, "1394 DA Stream" },
558 { 0x0607, "1394 DV Stream" },
559 { 0x0700, "Embedded" },
560 { 0x0701, "Noise Source" },
561 { 0x0702, "Equalization Noise" },
562 { 0x0703, "CD" },
563 { 0x0704, "DAT" },
564 { 0x0705, "DCC" },
565 { 0x0706, "MiniDisk" },
566 { 0x0707, "Analog Tape" },
567 { 0x0708, "Phonograph" },
568 { 0x0709, "VCR Audio" },
569 { 0x070a, "Video Disk Audio" },
570 { 0x070b, "DVD Audio" },
571 { 0x070c, "TV Tuner Audio" },
572 { 0x070d, "Satellite Rec Audio" },
573 { 0x070e, "Cable Tuner Audio" },
574 { 0x070f, "DSS Audio" },
575 { 0x0710, "Radio Receiver" },
576 { 0x0711, "Radio Transmitter" },
577 { 0x0712, "Multi-Track Recorder" },
578 { 0x0713, "Synthesizer" },
579 { 0 },
580};
581
Takashi Iwai86e07d32005-11-17 15:08:02 +0100582static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 unsigned char *name, int maxlen, int term_only)
584{
585 struct iterm_name_combo *names;
586
587 if (iterm->name)
588 return snd_usb_copy_string_desc(state, iterm->name, name, maxlen);
589
590 /* virtual type - not a real terminal */
591 if (iterm->type >> 16) {
592 if (term_only)
593 return 0;
594 switch (iterm->type >> 16) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100595 case UAC_SELECTOR_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 strcpy(name, "Selector"); return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100597 case UAC_PROCESSING_UNIT_V1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 strcpy(name, "Process Unit"); return 12;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100599 case UAC_EXTENSION_UNIT_V1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 strcpy(name, "Ext Unit"); return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100601 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 strcpy(name, "Mixer"); return 5;
603 default:
604 return sprintf(name, "Unit %d", iterm->id);
605 }
606 }
607
608 switch (iterm->type & 0xff00) {
609 case 0x0100:
610 strcpy(name, "PCM"); return 3;
611 case 0x0200:
612 strcpy(name, "Mic"); return 3;
613 case 0x0400:
614 strcpy(name, "Headset"); return 7;
615 case 0x0500:
616 strcpy(name, "Phone"); return 5;
617 }
618
619 for (names = iterm_names; names->type; names++)
620 if (names->type == iterm->type) {
621 strcpy(name, names->name);
622 return strlen(names->name);
623 }
624 return 0;
625}
626
627
628/*
629 * parse the source unit recursively until it reaches to a terminal
630 * or a branched unit.
631 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100632static int check_input_term(struct mixer_build *state, int id, struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Daniel Mack23caaf12010-03-11 21:13:25 +0100634 void *p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 memset(term, 0, sizeof(*term));
637 while ((p1 = find_audio_control_unit(state, id)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100638 unsigned char *hdr = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100640 switch (hdr[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100641 case UAC_INPUT_TERMINAL:
Daniel Mack23caaf12010-03-11 21:13:25 +0100642 if (state->mixer->protocol == UAC_VERSION_1) {
643 struct uac_input_terminal_descriptor *d = p1;
644 term->type = le16_to_cpu(d->wTerminalType);
645 term->channels = d->bNrChannels;
646 term->chconfig = le16_to_cpu(d->wChannelConfig);
647 term->name = d->iTerminal;
648 } else { /* UAC_VERSION_2 */
649 struct uac2_input_terminal_descriptor *d = p1;
650 term->type = le16_to_cpu(d->wTerminalType);
651 term->channels = d->bNrChannels;
652 term->chconfig = le32_to_cpu(d->bmChannelConfig);
653 term->name = d->iTerminal;
654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100656 case UAC_FEATURE_UNIT: {
657 /* the header is the same for v1 and v2 */
658 struct uac_feature_unit_descriptor *d = p1;
659 id = d->bUnitID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 break; /* continue to parse */
Daniel Mack23caaf12010-03-11 21:13:25 +0100661 }
662 case UAC_MIXER_UNIT: {
663 struct uac_mixer_unit_descriptor *d = p1;
664 term->type = d->bDescriptorSubtype << 16; /* virtual type */
665 term->channels = uac_mixer_unit_bNrChannels(d);
666 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
667 term->name = uac_mixer_unit_iMixer(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100669 }
670 case UAC_SELECTOR_UNIT: {
671 struct uac_selector_unit_descriptor *d = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /* call recursively to retrieve the channel info */
Daniel Mack23caaf12010-03-11 21:13:25 +0100673 if (check_input_term(state, d->baSourceID[0], term) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return -ENODEV;
Daniel Mack23caaf12010-03-11 21:13:25 +0100675 term->type = d->bDescriptorSubtype << 16; /* virtual type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100677 term->name = uac_selector_unit_iSelector(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100679 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100680 case UAC_PROCESSING_UNIT_V1:
Daniel Mack23caaf12010-03-11 21:13:25 +0100681 case UAC_EXTENSION_UNIT_V1: {
682 struct uac_processing_unit_descriptor *d = p1;
683 if (d->bNrInPins) {
684 id = d->baSourceID[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 break; /* continue to parse */
686 }
Daniel Mack23caaf12010-03-11 21:13:25 +0100687 term->type = d->bDescriptorSubtype << 16; /* virtual type */
688 term->channels = uac_processing_unit_bNrChannels(d);
689 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
690 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 default:
694 return -ENODEV;
695 }
696 }
697 return -ENODEV;
698}
699
700
701/*
702 * Feature Unit
703 */
704
705/* feature unit control information */
706struct usb_feature_control_info {
707 const char *name;
708 unsigned int type; /* control type (mute, volume, etc.) */
709};
710
711static struct usb_feature_control_info audio_feature_info[] = {
712 { "Mute", USB_MIXER_INV_BOOLEAN },
713 { "Volume", USB_MIXER_S16 },
714 { "Tone Control - Bass", USB_MIXER_S8 },
715 { "Tone Control - Mid", USB_MIXER_S8 },
716 { "Tone Control - Treble", USB_MIXER_S8 },
717 { "Graphic Equalizer", USB_MIXER_S8 }, /* FIXME: not implemeted yet */
718 { "Auto Gain Control", USB_MIXER_BOOLEAN },
719 { "Delay Control", USB_MIXER_U16 },
720 { "Bass Boost", USB_MIXER_BOOLEAN },
721 { "Loudness", USB_MIXER_BOOLEAN },
722};
723
724
725/* private_free callback */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100726static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Jesper Juhl4d572772005-05-30 17:30:32 +0200728 kfree(kctl->private_data);
729 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
732
733/*
734 * interface to ALSA control for feature/mixer units
735 */
736
737/*
738 * retrieve the minimum and maximum values for the specified control
739 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100740static int get_min_max(struct usb_mixer_elem_info *cval, int default_min)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 /* for failsafe */
743 cval->min = default_min;
744 cval->max = cval->min + 1;
745 cval->res = 1;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100746 cval->dBmin = cval->dBmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 if (cval->val_type == USB_MIXER_BOOLEAN ||
749 cval->val_type == USB_MIXER_INV_BOOLEAN) {
750 cval->initialized = 1;
751 } else {
752 int minchn = 0;
753 if (cval->cmask) {
754 int i;
755 for (i = 0; i < MAX_CHANNELS; i++)
756 if (cval->cmask & (1 << i)) {
757 minchn = i + 1;
758 break;
759 }
760 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100761 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
762 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200763 snd_printd(KERN_ERR "%d:%d: cannot get min/max values for control %d (id %d)\n",
764 cval->id, cval->mixer->ctrlif, cval->control, cval->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return -EINVAL;
766 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100767 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 cval->res = 1;
769 } else {
770 int last_valid_res = cval->res;
771
772 while (cval->res > 1) {
Daniel Mack7b1eda22010-03-11 21:13:22 +0100773 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
774 (cval->control << 8) | minchn, cval->res / 2) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 break;
776 cval->res /= 2;
777 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100778 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 cval->res = last_valid_res;
780 }
781 if (cval->res == 0)
782 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +0200783
784 /* Additional checks for the proper resolution
785 *
786 * Some devices report smaller resolutions than actually
787 * reacting. They don't return errors but simply clip
788 * to the lower aligned value.
789 */
790 if (cval->min + cval->res < cval->max) {
791 int last_valid_res = cval->res;
792 int saved, test, check;
Takashi Iwai641b4872009-01-15 17:05:24 +0100793 get_cur_mix_raw(cval, minchn, &saved);
Takashi Iwai14790f12006-03-28 17:58:28 +0200794 for (;;) {
795 test = saved;
796 if (test < cval->max)
797 test += cval->res;
798 else
799 test -= cval->res;
800 if (test < cval->min || test > cval->max ||
Takashi Iwai641b4872009-01-15 17:05:24 +0100801 set_cur_mix_value(cval, minchn, 0, test) ||
802 get_cur_mix_raw(cval, minchn, &check)) {
Takashi Iwai14790f12006-03-28 17:58:28 +0200803 cval->res = last_valid_res;
804 break;
805 }
806 if (test == check)
807 break;
808 cval->res *= 2;
809 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100810 set_cur_mix_value(cval, minchn, 0, saved);
Takashi Iwai14790f12006-03-28 17:58:28 +0200811 }
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 cval->initialized = 1;
814 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100815
816 /* USB descriptions contain the dB scale in 1/256 dB unit
817 * while ALSA TLV contains in 1/100 dB unit
818 */
819 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
820 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
821 if (cval->dBmin > cval->dBmax) {
822 /* something is wrong; assume it's either from/to 0dB */
823 if (cval->dBmin < 0)
824 cval->dBmax = 0;
825 else if (cval->dBmin > 0)
826 cval->dBmin = 0;
827 if (cval->dBmin > cval->dBmax) {
828 /* totally crap, return an error */
829 return -EINVAL;
830 }
831 }
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return 0;
834}
835
836
837/* get a feature/mixer unit info */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100838static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100840 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 if (cval->val_type == USB_MIXER_BOOLEAN ||
843 cval->val_type == USB_MIXER_INV_BOOLEAN)
844 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
845 else
846 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
847 uinfo->count = cval->channels;
848 if (cval->val_type == USB_MIXER_BOOLEAN ||
849 cval->val_type == USB_MIXER_INV_BOOLEAN) {
850 uinfo->value.integer.min = 0;
851 uinfo->value.integer.max = 1;
852 } else {
853 if (! cval->initialized)
854 get_min_max(cval, 0);
855 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200856 uinfo->value.integer.max =
857 (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859 return 0;
860}
861
862/* get the current value from feature/mixer unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100863static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100865 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 int c, cnt, val, err;
867
Takashi Iwai641b4872009-01-15 17:05:24 +0100868 ucontrol->value.integer.value[0] = cval->min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (cval->cmask) {
870 cnt = 0;
871 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100872 if (!(cval->cmask & (1 << c)))
873 continue;
874 err = get_cur_mix_value(cval, c + 1, cnt, &val);
875 if (err < 0)
876 return cval->mixer->ignore_ctl_error ? 0 : err;
877 val = get_relative_value(cval, val);
878 ucontrol->value.integer.value[cnt] = val;
879 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100881 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 } else {
883 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100884 err = get_cur_mix_value(cval, 0, 0, &val);
885 if (err < 0)
886 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 val = get_relative_value(cval, val);
888 ucontrol->value.integer.value[0] = val;
889 }
890 return 0;
891}
892
893/* put the current value to feature/mixer unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100894static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100896 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 int c, cnt, val, oval, err;
898 int changed = 0;
899
900 if (cval->cmask) {
901 cnt = 0;
902 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100903 if (!(cval->cmask & (1 << c)))
904 continue;
905 err = get_cur_mix_value(cval, c + 1, cnt, &oval);
906 if (err < 0)
907 return cval->mixer->ignore_ctl_error ? 0 : err;
908 val = ucontrol->value.integer.value[cnt];
909 val = get_abs_value(cval, val);
910 if (oval != val) {
911 set_cur_mix_value(cval, c + 1, cnt, val);
912 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100914 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916 } else {
917 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100918 err = get_cur_mix_value(cval, 0, 0, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (err < 0)
Takashi Iwai641b4872009-01-15 17:05:24 +0100920 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 val = ucontrol->value.integer.value[0];
922 val = get_abs_value(cval, val);
923 if (val != oval) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100924 set_cur_mix_value(cval, 0, 0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 changed = 1;
926 }
927 }
928 return changed;
929}
930
Takashi Iwai86e07d32005-11-17 15:08:02 +0100931static struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
933 .name = "", /* will be filled later manually */
934 .info = mixer_ctl_feature_info,
935 .get = mixer_ctl_feature_get,
936 .put = mixer_ctl_feature_put,
937};
938
Daniel Mack23caaf12010-03-11 21:13:25 +0100939/* the read-only variant */
940static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
941 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
942 .name = "", /* will be filled later manually */
943 .info = mixer_ctl_feature_info,
944 .get = mixer_ctl_feature_get,
945 .put = NULL,
946};
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949/*
950 * build a feature control
951 */
952
Takashi Iwai08d1e632009-10-02 14:06:08 +0200953static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
954{
955 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
956}
957
Daniel Mack99fc8642010-03-11 21:13:24 +0100958static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 unsigned int ctl_mask, int control,
Daniel Mack23caaf12010-03-11 21:13:25 +0100960 struct usb_audio_term *iterm, int unitid,
961 int read_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Daniel Mack99fc8642010-03-11 21:13:24 +0100963 struct uac_feature_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 unsigned int len = 0;
965 int mapped_name = 0;
Daniel Mack99fc8642010-03-11 21:13:24 +0100966 int nameid = uac_feature_unit_iFeature(desc);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100967 struct snd_kcontrol *kctl;
968 struct usb_mixer_elem_info *cval;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100969 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 control++; /* change from zero-based to 1-based value */
972
Daniel Mack45d76052010-03-11 21:13:21 +0100973 if (control == UAC_GRAPHIC_EQUALIZER_CONTROL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /* FIXME: not supported yet */
975 return;
976 }
977
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100978 map = find_map(state, unitid, control);
979 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return;
981
Takashi Iwai561b2202005-09-09 14:22:34 +0200982 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (! cval) {
984 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
985 return;
986 }
Clemens Ladisch84957a82005-04-29 16:23:13 +0200987 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 cval->id = unitid;
989 cval->control = control;
990 cval->cmask = ctl_mask;
991 cval->val_type = audio_feature_info[control-1].type;
992 if (ctl_mask == 0)
993 cval->channels = 1; /* master channel */
994 else {
995 int i, c = 0;
996 for (i = 0; i < 16; i++)
997 if (ctl_mask & (1 << i))
998 c++;
999 cval->channels = c;
1000 }
1001
1002 /* get min/max values */
1003 get_min_max(cval, 0);
1004
Daniel Mack23caaf12010-03-11 21:13:25 +01001005 if (read_only)
1006 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1007 else
1008 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (! kctl) {
1011 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1012 kfree(cval);
1013 return;
1014 }
1015 kctl->private_free = usb_mixer_elem_free;
1016
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001017 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 mapped_name = len != 0;
1019 if (! len && nameid)
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001020 len = snd_usb_copy_string_desc(state, nameid,
1021 kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 switch (control) {
Daniel Mack45d76052010-03-11 21:13:21 +01001024 case UAC_MUTE_CONTROL:
1025 case UAC_VOLUME_CONTROL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 /* determine the control name. the rule is:
1027 * - if a name id is given in descriptor, use it.
1028 * - if the connected input can be determined, then use the name
1029 * of terminal type.
1030 * - if the connected output can be determined, use it.
1031 * - otherwise, anonymous name.
1032 */
1033 if (! len) {
1034 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 1);
1035 if (! len)
1036 len = get_term_name(state, &state->oterm, kctl->id.name, sizeof(kctl->id.name), 1);
1037 if (! len)
1038 len = snprintf(kctl->id.name, sizeof(kctl->id.name),
1039 "Feature %d", unitid);
1040 }
1041 /* determine the stream direction:
1042 * if the connected output is USB stream, then it's likely a
1043 * capture stream. otherwise it should be playback (hopefully :)
1044 */
1045 if (! mapped_name && ! (state->oterm.type >> 16)) {
1046 if ((state->oterm.type & 0xff00) == 0x0100) {
Takashi Iwai08d1e632009-10-02 14:06:08 +02001047 len = append_ctl_name(kctl, " Capture");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 } else {
Takashi Iwai08d1e632009-10-02 14:06:08 +02001049 len = append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051 }
Daniel Mack45d76052010-03-11 21:13:21 +01001052 append_ctl_name(kctl, control == UAC_MUTE_CONTROL ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001053 " Switch" : " Volume");
Daniel Mack45d76052010-03-11 21:13:21 +01001054 if (control == UAC_VOLUME_CONTROL) {
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +02001055 kctl->tlv.c = mixer_vol_tlv;
1056 kctl->vd[0].access |=
1057 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1058 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001059 check_mapped_dB(map, cval);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +02001060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 break;
1062
1063 default:
1064 if (! len)
1065 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1066 sizeof(kctl->id.name));
1067 break;
1068 }
1069
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001070 /* volume control quirks */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001071 switch (state->chip->usb_id) {
1072 case USB_ID(0x0471, 0x0101):
1073 case USB_ID(0x0471, 0x0104):
1074 case USB_ID(0x0471, 0x0105):
1075 case USB_ID(0x0672, 0x1041):
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001076 /* quirk for UDA1321/N101.
1077 * note that detection between firmware 2.1.1.7 (N101)
1078 * and later 2.1.1.21 is not very clear from datasheets.
1079 * I hope that the min value is -15360 for newer firmware --jk
1080 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001081 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
1082 cval->min == -15616) {
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001083 snd_printk(KERN_INFO
1084 "set volume quirk for UDA1321/N101 chip\n");
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001085 cval->max = -256;
1086 }
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001087 break;
1088
1089 case USB_ID(0x046d, 0x09a4):
1090 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1091 snd_printk(KERN_INFO
1092 "set volume quirk for QuickCam E3500\n");
1093 cval->min = 6080;
1094 cval->max = 8768;
1095 cval->res = 192;
1096 }
1097 break;
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100
1101 snd_printdd(KERN_INFO "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1102 cval->id, kctl->id.name, cval->channels, cval->min, cval->max, cval->res);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001103 add_control_to_empty(state, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
1106
1107
1108/*
1109 * parse a feature unit
1110 *
1111 * most of controlls are defined here.
1112 */
Daniel Mack28e1b772010-02-22 23:49:09 +01001113static int parse_audio_feature_unit(struct mixer_build *state, int unitid, void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
1115 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001116 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 unsigned int master_bits, first_ch_bits;
1118 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001119 struct uac_feature_unit_descriptor *hdr = _ftr;
1120 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Daniel Mack23caaf12010-03-11 21:13:25 +01001122 if (state->mixer->protocol == UAC_VERSION_1) {
1123 csize = hdr->bControlSize;
1124 channels = (hdr->bLength - 7) / csize - 1;
1125 bmaControls = hdr->bmaControls;
1126 } else {
1127 struct uac2_feature_unit_descriptor *ftr = _ftr;
1128 csize = 4;
1129 channels = (hdr->bLength - 6) / 4;
1130 bmaControls = ftr->bmaControls;
1131 }
1132
1133 if (hdr->bLength < 7 || !csize || hdr->bLength < 7 + csize) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01001134 snd_printk(KERN_ERR "usbaudio: unit %u: invalid UAC_FEATURE_UNIT descriptor\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return -EINVAL;
1136 }
1137
1138 /* parse the source unit */
Daniel Mack23caaf12010-03-11 21:13:25 +01001139 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 return err;
1141
1142 /* determine the input source type and name */
Daniel Mack23caaf12010-03-11 21:13:25 +01001143 if (check_input_term(state, hdr->bSourceID, &iterm) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return -EINVAL;
1145
Daniel Mack23caaf12010-03-11 21:13:25 +01001146 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001147 /* master configuration quirks */
1148 switch (state->chip->usb_id) {
1149 case USB_ID(0x08bb, 0x2702):
1150 snd_printk(KERN_INFO
1151 "usbmixer: master volume quirk for PCM2702 chip\n");
1152 /* disable non-functional volume control */
Daniel Mack45d76052010-03-11 21:13:21 +01001153 master_bits &= ~UAC_FU_VOLUME;
Javier Kohen0c3cee52009-11-17 15:36:13 +01001154 break;
1155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (channels > 0)
Daniel Mack23caaf12010-03-11 21:13:25 +01001157 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 else
1159 first_ch_bits = 0;
Daniel Mack23caaf12010-03-11 21:13:25 +01001160
1161 if (state->mixer->protocol == UAC_VERSION_1) {
1162 /* check all control types */
1163 for (i = 0; i < 10; i++) {
1164 unsigned int ch_bits = 0;
1165 for (j = 0; j < channels; j++) {
1166 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
1167 if (mask & (1 << i))
1168 ch_bits |= (1 << j);
1169 }
1170 /* audio class v1 controls are never read-only */
1171 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
1172 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, 0);
1173 if (master_bits & (1 << i))
1174 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001176 } else { /* UAC_VERSION_2 */
1177 for (i = 0; i < 30/2; i++) {
1178 /* From the USB Audio spec v2.0:
1179 bmaControls() is a (ch+1)-element array of 4-byte bitmaps,
1180 each containing a set of bit pairs. If a Control is present,
1181 it must be Host readable. If a certain Control is not
1182 present then the bit pair must be set to 0b00.
1183 If a Control is present but read-only, the bit pair must be
1184 set to 0b01. If a Control is also Host programmable, the bit
1185 pair must be set to 0b11. The value 0b10 is not allowed. */
1186 unsigned int ch_bits = 0;
1187 unsigned int ch_read_only = 0;
1188
1189 for (j = 0; j < channels; j++) {
1190 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
1191 if (mask & (1 << (i * 2))) {
1192 ch_bits |= (1 << j);
1193 if (~mask & (1 << ((i * 2) + 1)))
1194 ch_read_only |= (1 << j);
1195 }
1196 }
1197
1198 /* FIXME: the whole unit is read-only if any of the channels is marked read-only */
1199 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
1200 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, !!ch_read_only);
1201 if (master_bits & (1 << i * 2))
1202 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
1203 ~master_bits & (1 << ((i * 2) + 1)));
1204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206
1207 return 0;
1208}
1209
1210
1211/*
1212 * Mixer Unit
1213 */
1214
1215/*
1216 * build a mixer unit control
1217 *
1218 * the callbacks are identical with feature unit.
1219 * input channel number (zero based) is given in control field instead.
1220 */
1221
Daniel Mack99fc8642010-03-11 21:13:24 +01001222static void build_mixer_unit_ctl(struct mixer_build *state,
1223 struct uac_mixer_unit_descriptor *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001225 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001227 struct usb_mixer_elem_info *cval;
Daniel Mack99fc8642010-03-11 21:13:24 +01001228 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001230 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001231 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001233 map = find_map(state, unitid, 0);
1234 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return;
1236
Takashi Iwai561b2202005-09-09 14:22:34 +02001237 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (! cval)
1239 return;
1240
Clemens Ladisch84957a82005-04-29 16:23:13 +02001241 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 cval->id = unitid;
1243 cval->control = in_ch + 1; /* based on 1 */
1244 cval->val_type = USB_MIXER_S16;
1245 for (i = 0; i < num_outs; i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001246 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol), in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 cval->cmask |= (1 << i);
1248 cval->channels++;
1249 }
1250 }
1251
1252 /* get min/max values */
1253 get_min_max(cval, 0);
1254
1255 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1256 if (! kctl) {
1257 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1258 kfree(cval);
1259 return;
1260 }
1261 kctl->private_free = usb_mixer_elem_free;
1262
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001263 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (! len)
1265 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0);
1266 if (! len)
1267 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02001268 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n",
1271 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001272 add_control_to_empty(state, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275
1276/*
1277 * parse a mixer unit
1278 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001279static int parse_audio_mixer_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Daniel Mack99fc8642010-03-11 21:13:24 +01001281 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001282 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 int input_pins, num_ins, num_outs;
1284 int pin, ich, err;
1285
Daniel Mack99fc8642010-03-11 21:13:24 +01001286 if (desc->bLength < 11 || ! (input_pins = desc->bNrInPins) || ! (num_outs = uac_mixer_unit_bNrChannels(desc))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 snd_printk(KERN_ERR "invalid MIXER UNIT descriptor %d\n", unitid);
1288 return -EINVAL;
1289 }
1290 /* no bmControls field (e.g. Maya44) -> ignore */
Daniel Mack99fc8642010-03-11 21:13:24 +01001291 if (desc->bLength <= 10 + input_pins) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 snd_printdd(KERN_INFO "MU %d has no bmControls field\n", unitid);
1293 return 0;
1294 }
1295
1296 num_ins = 0;
1297 ich = 0;
1298 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001299 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (err < 0)
1301 return err;
Daniel Mack99fc8642010-03-11 21:13:24 +01001302 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if (err < 0)
1304 return err;
1305 num_ins += iterm.channels;
1306 for (; ich < num_ins; ++ich) {
1307 int och, ich_has_controls = 0;
1308
1309 for (och = 0; och < num_outs; ++och) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001310 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 ich, och, num_outs)) {
1312 ich_has_controls = 1;
1313 break;
1314 }
1315 }
1316 if (ich_has_controls)
1317 build_mixer_unit_ctl(state, desc, pin, ich,
1318 unitid, &iterm);
1319 }
1320 }
1321 return 0;
1322}
1323
1324
1325/*
1326 * Processing Unit / Extension Unit
1327 */
1328
1329/* get callback for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001330static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001332 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 int err, val;
1334
1335 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001336 if (err < 0 && cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 ucontrol->value.integer.value[0] = cval->min;
1338 return 0;
1339 }
1340 if (err < 0)
1341 return err;
1342 val = get_relative_value(cval, val);
1343 ucontrol->value.integer.value[0] = val;
1344 return 0;
1345}
1346
1347/* put callback for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001348static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001350 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 int val, oval, err;
1352
1353 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1354 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001355 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 return 0;
1357 return err;
1358 }
1359 val = ucontrol->value.integer.value[0];
1360 val = get_abs_value(cval, val);
1361 if (val != oval) {
1362 set_cur_ctl_value(cval, cval->control << 8, val);
1363 return 1;
1364 }
1365 return 0;
1366}
1367
1368/* alsa control interface for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001369static struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1371 .name = "", /* will be filled later */
1372 .info = mixer_ctl_feature_info,
1373 .get = mixer_ctl_procunit_get,
1374 .put = mixer_ctl_procunit_put,
1375};
1376
1377
1378/*
1379 * predefined data for processing units
1380 */
1381struct procunit_value_info {
1382 int control;
1383 char *suffix;
1384 int val_type;
1385 int min_value;
1386};
1387
1388struct procunit_info {
1389 int type;
1390 char *name;
1391 struct procunit_value_info *values;
1392};
1393
1394static struct procunit_value_info updown_proc_info[] = {
1395 { USB_PROC_UPDOWN_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1396 { USB_PROC_UPDOWN_MODE_SEL, "Mode Select", USB_MIXER_U8, 1 },
1397 { 0 }
1398};
1399static struct procunit_value_info prologic_proc_info[] = {
1400 { USB_PROC_PROLOGIC_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1401 { USB_PROC_PROLOGIC_MODE_SEL, "Mode Select", USB_MIXER_U8, 1 },
1402 { 0 }
1403};
1404static struct procunit_value_info threed_enh_proc_info[] = {
1405 { USB_PROC_3DENH_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1406 { USB_PROC_3DENH_SPACE, "Spaciousness", USB_MIXER_U8 },
1407 { 0 }
1408};
1409static struct procunit_value_info reverb_proc_info[] = {
1410 { USB_PROC_REVERB_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1411 { USB_PROC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1412 { USB_PROC_REVERB_TIME, "Time", USB_MIXER_U16 },
1413 { USB_PROC_REVERB_DELAY, "Delay", USB_MIXER_U8 },
1414 { 0 }
1415};
1416static struct procunit_value_info chorus_proc_info[] = {
1417 { USB_PROC_CHORUS_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1418 { USB_PROC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1419 { USB_PROC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1420 { USB_PROC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
1421 { 0 }
1422};
1423static struct procunit_value_info dcr_proc_info[] = {
1424 { USB_PROC_DCR_SWITCH, "Switch", USB_MIXER_BOOLEAN },
1425 { USB_PROC_DCR_RATIO, "Ratio", USB_MIXER_U16 },
1426 { USB_PROC_DCR_MAX_AMP, "Max Amp", USB_MIXER_S16 },
1427 { USB_PROC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1428 { USB_PROC_DCR_ATTACK, "Attack Time", USB_MIXER_U16 },
1429 { USB_PROC_DCR_RELEASE, "Release Time", USB_MIXER_U16 },
1430 { 0 }
1431};
1432
1433static struct procunit_info procunits[] = {
1434 { USB_PROC_UPDOWN, "Up Down", updown_proc_info },
1435 { USB_PROC_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1436 { USB_PROC_3DENH, "3D Stereo Extender", threed_enh_proc_info },
1437 { USB_PROC_REVERB, "Reverb", reverb_proc_info },
1438 { USB_PROC_CHORUS, "Chorus", chorus_proc_info },
1439 { USB_PROC_DCR, "DCR", dcr_proc_info },
1440 { 0 },
1441};
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001442/*
1443 * predefined data for extension units
1444 */
1445static struct procunit_value_info clock_rate_xu_info[] = {
1446 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1447 { 0 }
1448};
1449static struct procunit_value_info clock_source_xu_info[] = {
1450 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1451 { 0 }
1452};
1453static struct procunit_value_info spdif_format_xu_info[] = {
1454 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1455 { 0 }
1456};
1457static struct procunit_value_info soft_limit_xu_info[] = {
1458 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1459 { 0 }
1460};
1461static struct procunit_info extunits[] = {
1462 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1463 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1464 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1465 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1466 { 0 }
1467};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468/*
1469 * build a processing/extension unit
1470 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001471static int build_audio_procunit(struct mixer_build *state, int unitid, void *raw_desc, struct procunit_info *list, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Daniel Mack99fc8642010-03-11 21:13:24 +01001473 struct uac_processing_unit_descriptor *desc = raw_desc;
1474 int num_ins = desc->bNrInPins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001475 struct usb_mixer_elem_info *cval;
1476 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 int i, err, nameid, type, len;
1478 struct procunit_info *info;
1479 struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001480 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 static struct procunit_value_info default_value_info[] = {
1482 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1483 { 0 }
1484 };
1485 static struct procunit_info default_info = {
1486 0, NULL, default_value_info
1487 };
1488
Daniel Mack23caaf12010-03-11 21:13:25 +01001489 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1490 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 snd_printk(KERN_ERR "invalid %s descriptor (id %d)\n", name, unitid);
1492 return -EINVAL;
1493 }
1494
1495 for (i = 0; i < num_ins; i++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001496 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 return err;
1498 }
1499
Daniel Mack99fc8642010-03-11 21:13:24 +01001500 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 for (info = list; info && info->type; info++)
1502 if (info->type == type)
1503 break;
1504 if (! info || ! info->type)
1505 info = &default_info;
1506
1507 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001508 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01001509
1510 if (! (controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 continue;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001512 map = find_map(state, unitid, valinfo->control);
1513 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02001515 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (! cval) {
1517 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1518 return -ENOMEM;
1519 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001520 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 cval->id = unitid;
1522 cval->control = valinfo->control;
1523 cval->val_type = valinfo->val_type;
1524 cval->channels = 1;
1525
1526 /* get min/max values */
1527 if (type == USB_PROC_UPDOWN && cval->control == USB_PROC_UPDOWN_MODE_SEL) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001528 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 /* FIXME: hard-coded */
1530 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001531 cval->max = control_spec[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 cval->res = 1;
1533 cval->initialized = 1;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001534 } else {
1535 if (type == USB_XU_CLOCK_RATE) {
1536 /* E-Mu USB 0404/0202/TrackerPre
1537 * samplerate control quirk
1538 */
1539 cval->min = 0;
1540 cval->max = 5;
1541 cval->res = 1;
1542 cval->initialized = 1;
1543 } else
1544 get_min_max(cval, valinfo->min_value);
1545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
1548 if (! kctl) {
1549 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1550 kfree(cval);
1551 return -ENOMEM;
1552 }
1553 kctl->private_free = usb_mixer_elem_free;
1554
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001555 if (check_mapped_name(map, kctl->id.name,
1556 sizeof(kctl->id.name)))
1557 /* nothing */ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 else if (info->name)
1559 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1560 else {
Daniel Mack23caaf12010-03-11 21:13:25 +01001561 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 len = 0;
1563 if (nameid)
1564 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1565 if (! len)
1566 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1567 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02001568 append_ctl_name(kctl, " ");
1569 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n",
1572 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001573 if ((err = add_control_to_empty(state, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return err;
1575 }
1576 return 0;
1577}
1578
1579
Daniel Mack99fc8642010-03-11 21:13:24 +01001580static int parse_audio_processing_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
Daniel Mack99fc8642010-03-11 21:13:24 +01001582 return build_audio_procunit(state, unitid, raw_desc, procunits, "Processing Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
1584
Daniel Mack99fc8642010-03-11 21:13:24 +01001585static int parse_audio_extension_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
Daniel Mack99fc8642010-03-11 21:13:24 +01001587 /* Note that we parse extension units with processing unit descriptors.
1588 * That's ok as the layout is the same */
1589 return build_audio_procunit(state, unitid, raw_desc, extunits, "Extension Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
1592
1593/*
1594 * Selector Unit
1595 */
1596
1597/* info callback for selector unit
1598 * use an enumerator type for routing
1599 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001600static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001602 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 char **itemlist = (char **)kcontrol->private_value;
1604
Takashi Iwai5e246b82008-08-08 17:12:47 +02001605 if (snd_BUG_ON(!itemlist))
1606 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1608 uinfo->count = 1;
1609 uinfo->value.enumerated.items = cval->max;
1610 if ((int)uinfo->value.enumerated.item >= cval->max)
1611 uinfo->value.enumerated.item = cval->max - 1;
1612 strcpy(uinfo->value.enumerated.name, itemlist[uinfo->value.enumerated.item]);
1613 return 0;
1614}
1615
1616/* get callback for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001617static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001619 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 int val, err;
1621
1622 err = get_cur_ctl_value(cval, 0, &val);
1623 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001624 if (cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 ucontrol->value.enumerated.item[0] = 0;
1626 return 0;
1627 }
1628 return err;
1629 }
1630 val = get_relative_value(cval, val);
1631 ucontrol->value.enumerated.item[0] = val;
1632 return 0;
1633}
1634
1635/* put callback for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001636static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001638 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 int val, oval, err;
1640
1641 err = get_cur_ctl_value(cval, 0, &oval);
1642 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001643 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return 0;
1645 return err;
1646 }
1647 val = ucontrol->value.enumerated.item[0];
1648 val = get_abs_value(cval, val);
1649 if (val != oval) {
1650 set_cur_ctl_value(cval, 0, val);
1651 return 1;
1652 }
1653 return 0;
1654}
1655
1656/* alsa control interface for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001657static struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1659 .name = "", /* will be filled later */
1660 .info = mixer_ctl_selector_info,
1661 .get = mixer_ctl_selector_get,
1662 .put = mixer_ctl_selector_put,
1663};
1664
1665
1666/* private free callback.
1667 * free both private_data and private_value
1668 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001669static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
1671 int i, num_ins = 0;
1672
1673 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001674 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 num_ins = cval->max;
1676 kfree(cval);
1677 kctl->private_data = NULL;
1678 }
1679 if (kctl->private_value) {
1680 char **itemlist = (char **)kctl->private_value;
1681 for (i = 0; i < num_ins; i++)
1682 kfree(itemlist[i]);
1683 kfree(itemlist);
1684 kctl->private_value = 0;
1685 }
1686}
1687
1688/*
1689 * parse a selector unit
1690 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001691static int parse_audio_selector_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
Daniel Mack99fc8642010-03-11 21:13:24 +01001693 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 unsigned int i, nameid, len;
1695 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001696 struct usb_mixer_elem_info *cval;
1697 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001698 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 char **namelist;
1700
Daniel Mack99fc8642010-03-11 21:13:24 +01001701 if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
1703 return -EINVAL;
1704 }
1705
Daniel Mack99fc8642010-03-11 21:13:24 +01001706 for (i = 0; i < desc->bNrInPins; i++) {
1707 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 return err;
1709 }
1710
Daniel Mack99fc8642010-03-11 21:13:24 +01001711 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 return 0;
1713
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001714 map = find_map(state, unitid, 0);
1715 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return 0;
1717
Takashi Iwai561b2202005-09-09 14:22:34 +02001718 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (! cval) {
1720 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1721 return -ENOMEM;
1722 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001723 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 cval->id = unitid;
1725 cval->val_type = USB_MIXER_U8;
1726 cval->channels = 1;
1727 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001728 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 cval->res = 1;
1730 cval->initialized = 1;
1731
Daniel Mack99fc8642010-03-11 21:13:24 +01001732 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 if (! namelist) {
1734 snd_printk(KERN_ERR "cannot malloc\n");
1735 kfree(cval);
1736 return -ENOMEM;
1737 }
1738#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01001739 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001740 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 len = 0;
1742 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
1743 if (! namelist[i]) {
1744 snd_printk(KERN_ERR "cannot malloc\n");
Mariusz Kozlowski7fbe3ca2007-01-08 11:25:30 +01001745 while (i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 kfree(namelist[i]);
1747 kfree(namelist);
1748 kfree(cval);
1749 return -ENOMEM;
1750 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02001751 len = check_mapped_selector_name(state, unitid, i, namelist[i],
1752 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01001753 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
1755 if (! len)
1756 sprintf(namelist[i], "Input %d", i);
1757 }
1758
1759 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
1760 if (! kctl) {
1761 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
Jesper Juhl878b4782006-03-20 11:27:13 +01001762 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 kfree(cval);
1764 return -ENOMEM;
1765 }
1766 kctl->private_value = (unsigned long)namelist;
1767 kctl->private_free = usb_mixer_selector_elem_free;
1768
Daniel Mack99fc8642010-03-11 21:13:24 +01001769 nameid = uac_selector_unit_iSelector(desc);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001770 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 if (len)
1772 ;
1773 else if (nameid)
1774 snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1775 else {
1776 len = get_term_name(state, &state->oterm,
1777 kctl->id.name, sizeof(kctl->id.name), 0);
1778 if (! len)
1779 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
1780
1781 if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02001782 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02001784 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786
1787 snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
Daniel Mack99fc8642010-03-11 21:13:24 +01001788 cval->id, kctl->id.name, desc->bNrInPins);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001789 if ((err = add_control_to_empty(state, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return err;
1791
1792 return 0;
1793}
1794
1795
1796/*
1797 * parse an audio unit recursively
1798 */
1799
Takashi Iwai86e07d32005-11-17 15:08:02 +01001800static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
1802 unsigned char *p1;
1803
1804 if (test_and_set_bit(unitid, state->unitbitmap))
1805 return 0; /* the unit already visited */
1806
1807 p1 = find_audio_control_unit(state, unitid);
1808 if (!p1) {
1809 snd_printk(KERN_ERR "usbaudio: unit %d not found!\n", unitid);
1810 return -EINVAL;
1811 }
1812
1813 switch (p1[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01001814 case UAC_INPUT_TERMINAL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 return 0; /* NOP */
Daniel Mackde48c7b2010-02-22 23:49:13 +01001816 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return parse_audio_mixer_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001818 case UAC_SELECTOR_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return parse_audio_selector_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001820 case UAC_FEATURE_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return parse_audio_feature_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001822 case UAC_PROCESSING_UNIT_V1:
Daniel Mack23caaf12010-03-11 21:13:25 +01001823 /* UAC2_EFFECT_UNIT has the same value */
1824 if (state->mixer->protocol == UAC_VERSION_1)
1825 return parse_audio_processing_unit(state, unitid, p1);
1826 else
1827 return 0; /* FIXME - effect units not implemented yet */
Daniel Mackde48c7b2010-02-22 23:49:13 +01001828 case UAC_EXTENSION_UNIT_V1:
Daniel Mack23caaf12010-03-11 21:13:25 +01001829 /* UAC2_PROCESSING_UNIT_V2 has the same value */
1830 if (state->mixer->protocol == UAC_VERSION_1)
1831 return parse_audio_extension_unit(state, unitid, p1);
1832 else /* UAC_VERSION_2 */
1833 return parse_audio_processing_unit(state, unitid, p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 default:
1835 snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
1836 return -EINVAL;
1837 }
1838}
1839
Clemens Ladisch84957a82005-04-29 16:23:13 +02001840static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
1841{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001842 kfree(mixer->id_elems);
1843 if (mixer->urb) {
1844 kfree(mixer->urb->transfer_buffer);
1845 usb_free_urb(mixer->urb);
1846 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01001847 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02001848 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001849 kfree(mixer);
1850}
1851
Takashi Iwai86e07d32005-11-17 15:08:02 +01001852static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02001853{
1854 struct usb_mixer_interface *mixer = device->device_data;
1855 snd_usb_mixer_free(mixer);
1856 return 0;
1857}
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859/*
1860 * create mixer controls
1861 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01001862 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02001864static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001866 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 int err;
1868 const struct usbmix_ctl_map *map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001869 struct usb_host_interface *hostif;
Daniel Mack23caaf12010-03-11 21:13:25 +01001870 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Clemens Ladisch84957a82005-04-29 16:23:13 +02001872 hostif = &usb_ifnum_to_if(mixer->chip->dev, mixer->ctrlif)->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02001874 state.chip = mixer->chip;
1875 state.mixer = mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 state.buffer = hostif->extra;
1877 state.buflen = hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001880 for (map = usbmix_ctl_maps; map->id; map++) {
1881 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02001883 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001884 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 break;
1886 }
1887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Daniel Mack23caaf12010-03-11 21:13:25 +01001889 p = NULL;
1890 while ((p = snd_usb_find_csint_desc(hostif->extra, hostif->extralen, p, UAC_OUTPUT_TERMINAL)) != NULL) {
1891 if (mixer->protocol == UAC_VERSION_1) {
1892 struct uac_output_terminal_descriptor_v1 *desc = p;
1893
1894 if (desc->bLength < sizeof(*desc))
1895 continue; /* invalid descriptor? */
1896 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1897 state.oterm.id = desc->bTerminalID;
1898 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1899 state.oterm.name = desc->iTerminal;
1900 err = parse_audio_unit(&state, desc->bSourceID);
1901 if (err < 0)
1902 return err;
1903 } else { /* UAC_VERSION_2 */
1904 struct uac2_output_terminal_descriptor *desc = p;
1905
1906 if (desc->bLength < sizeof(*desc))
1907 continue; /* invalid descriptor? */
1908 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1909 state.oterm.id = desc->bTerminalID;
1910 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1911 state.oterm.name = desc->iTerminal;
1912 err = parse_audio_unit(&state, desc->bSourceID);
1913 if (err < 0)
1914 return err;
1915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 return 0;
1919}
Clemens Ladisch84957a82005-04-29 16:23:13 +02001920
Daniel Mack7b1eda22010-03-11 21:13:22 +01001921void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001922{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001923 struct usb_mixer_elem_info *info;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001924
1925 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
1926 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1927 info->elem_id);
1928}
1929
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01001930static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
1931 int unitid,
1932 struct usb_mixer_elem_info *cval)
1933{
1934 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
1935 "S8", "U8", "S16", "U16"};
1936 snd_iprintf(buffer, " Unit: %i\n", unitid);
1937 if (cval->elem_id)
1938 snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
1939 cval->elem_id->name, cval->elem_id->index);
1940 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
1941 "channels=%i, type=\"%s\"\n", cval->id,
1942 cval->control, cval->cmask, cval->channels,
1943 val_types[cval->val_type]);
1944 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
1945 cval->min, cval->max, cval->dBmin, cval->dBmax);
1946}
1947
1948static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
1949 struct snd_info_buffer *buffer)
1950{
1951 struct snd_usb_audio *chip = entry->private_data;
1952 struct usb_mixer_interface *mixer;
1953 struct usb_mixer_elem_info *cval;
1954 int unitid;
1955
1956 list_for_each_entry(mixer, &chip->mixer_list, list) {
1957 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01001958 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
1959 chip->usb_id, mixer->ctrlif,
1960 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01001961 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
1962 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
1963 for (cval = mixer->id_elems[unitid]; cval;
1964 cval = cval->next_id_elem)
1965 snd_usb_mixer_dump_cval(buffer, unitid, cval);
1966 }
1967 }
1968}
1969
David Howells7d12e782006-10-05 14:55:46 +01001970static void snd_usb_mixer_status_complete(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001971{
1972 struct usb_mixer_interface *mixer = urb->context;
1973
1974 if (urb->status == 0) {
1975 u8 *buf = urb->transfer_buffer;
1976 int i;
1977
1978 for (i = urb->actual_length; i >= 2; buf += 2, i -= 2) {
1979 snd_printd(KERN_DEBUG "status interrupt: %02x %02x\n",
1980 buf[0], buf[1]);
1981 /* ignore any notifications not from the control interface */
1982 if ((buf[0] & 0x0f) != 0)
1983 continue;
1984 if (!(buf[0] & 0x40))
1985 snd_usb_mixer_notify_id(mixer, buf[1]);
Clemens Ladischb259b102005-04-29 16:29:28 +02001986 else
Daniel Mack7b1eda22010-03-11 21:13:22 +01001987 snd_usb_mixer_rc_memory_change(mixer, buf[1]);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001988 }
1989 }
1990 if (urb->status != -ENOENT && urb->status != -ECONNRESET) {
1991 urb->dev = mixer->chip->dev;
1992 usb_submit_urb(urb, GFP_ATOMIC);
1993 }
1994}
1995
1996/* create the handler for the optional status interrupt endpoint */
1997static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
1998{
1999 struct usb_host_interface *hostif;
2000 struct usb_endpoint_descriptor *ep;
2001 void *transfer_buffer;
2002 int buffer_length;
2003 unsigned int epnum;
2004
2005 hostif = &usb_ifnum_to_if(mixer->chip->dev, mixer->ctrlif)->altsetting[0];
2006 /* we need one interrupt input endpoint */
2007 if (get_iface_desc(hostif)->bNumEndpoints < 1)
2008 return 0;
2009 ep = get_endpoint(hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01002010 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002011 return 0;
2012
Julia Lawall42a6e662008-12-29 11:23:02 +01002013 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002014 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2015 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2016 if (!transfer_buffer)
2017 return -ENOMEM;
2018 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2019 if (!mixer->urb) {
2020 kfree(transfer_buffer);
2021 return -ENOMEM;
2022 }
2023 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2024 usb_rcvintpipe(mixer->chip->dev, epnum),
2025 transfer_buffer, buffer_length,
2026 snd_usb_mixer_status_complete, mixer, ep->bInterval);
2027 usb_submit_urb(mixer->urb, GFP_KERNEL);
2028 return 0;
2029}
2030
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002031int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2032 int ignore_error)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002033{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002034 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002035 .dev_free = snd_usb_mixer_dev_free
2036 };
2037 struct usb_mixer_interface *mixer;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002038 struct snd_info_entry *entry;
Daniel Mack7b8a0432010-02-22 23:49:12 +01002039 struct usb_host_interface *host_iface;
Daniel Mack23caaf12010-03-11 21:13:25 +01002040 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002041
2042 strcpy(chip->card->mixername, "USB Mixer");
2043
Takashi Iwai561b2202005-09-09 14:22:34 +02002044 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002045 if (!mixer)
2046 return -ENOMEM;
2047 mixer->chip = chip;
2048 mixer->ctrlif = ctrlif;
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002049 mixer->ignore_ctl_error = ignore_error;
Jaroslav Kysela291186e2010-02-16 11:55:18 +01002050 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2051 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002052 if (!mixer->id_elems) {
2053 kfree(mixer);
2054 return -ENOMEM;
2055 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002056
Daniel Mack7b8a0432010-02-22 23:49:12 +01002057 host_iface = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
Daniel Mack23caaf12010-03-11 21:13:25 +01002058 mixer->protocol = host_iface->desc.bInterfaceProtocol;
Daniel Mack7b8a0432010-02-22 23:49:12 +01002059
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002060 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002061 (err = snd_usb_mixer_status_create(mixer)) < 0)
2062 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002063
Daniel Mack7b1eda22010-03-11 21:13:22 +01002064 snd_usb_mixer_apply_create_quirk(mixer);
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02002065
Clemens Ladisch84957a82005-04-29 16:23:13 +02002066 err = snd_device_new(chip->card, SNDRV_DEV_LOWLEVEL, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002067 if (err < 0)
2068 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002069
2070 if (list_empty(&chip->mixer_list) &&
2071 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2072 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2073
Clemens Ladisch84957a82005-04-29 16:23:13 +02002074 list_add(&mixer->list, &chip->mixer_list);
2075 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002076
2077_error:
2078 snd_usb_mixer_free(mixer);
2079 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002080}
2081
2082void snd_usb_mixer_disconnect(struct list_head *p)
2083{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002084 struct usb_mixer_interface *mixer;
Daniel Mack7b1eda22010-03-11 21:13:22 +01002085
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002086 mixer = list_entry(p, struct usb_mixer_interface, list);
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002087 usb_kill_urb(mixer->urb);
2088 usb_kill_urb(mixer->rc_urb);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002089}