blob: 8be6bf2552b09bc87638919e840aed0231e02b89 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -080082/*E-mu 0202(0404) eXtension Unit(XU) control*/
83enum {
84 USB_XU_CLOCK_RATE = 0xe301,
85 USB_XU_CLOCK_SOURCE = 0xe302,
86 USB_XU_DIGITAL_IO_STATUS = 0xe303,
87 USB_XU_DEVICE_OPTIONS = 0xe304,
88 USB_XU_DIRECT_MONITORING = 0xe305,
89 USB_XU_METERING = 0xe306
90};
91enum {
92 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
93 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
94 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
95 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
96};
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/*
99 * manual mapping of mixer names
100 * if the mixer topology is too complicated and the parsed names are
101 * ambiguous, add the entries in usbmixer_maps.c.
102 */
Daniel Mackf0b5e632010-03-11 21:13:23 +0100103#include "mixer_maps.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100105static const struct usbmix_name_map *
106find_map(struct mixer_build *state, int unitid, int control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100108 const struct usbmix_name_map *p = state->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100110 if (!p)
111 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 for (p = state->map; p->id; p++) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100114 if (p->id == unitid &&
115 (!control || !p->control || control == p->control))
116 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100118 return NULL;
119}
120
121/* get the mapped name if the unit matches */
122static int
123check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
124{
125 if (!p || !p->name)
126 return 0;
127
128 buflen--;
129 return strlcpy(buf, p->name, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132/* check whether the control should be ignored */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100133static inline int
134check_ignored_ctl(const struct usbmix_name_map *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100136 if (!p || p->name || p->dB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return 0;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100138 return 1;
139}
140
141/* dB mapping */
142static inline void check_mapped_dB(const struct usbmix_name_map *p,
143 struct usb_mixer_elem_info *cval)
144{
145 if (p && p->dB) {
146 cval->dBmin = p->dB->min;
147 cval->dBmax = p->dB->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200151/* get the mapped selector source name */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100152static int check_mapped_selector_name(struct mixer_build *state, int unitid,
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200153 int index, char *buf, int buflen)
154{
155 const struct usbmix_selector_map *p;
156
157 if (! state->selector_map)
158 return 0;
159 for (p = state->selector_map; p->id; p++) {
160 if (p->id == unitid && index < p->count)
161 return strlcpy(buf, p->names[index], buflen);
162 }
163 return 0;
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
167 * find an audio control unit with the given unit id
Daniel Mack23caaf12010-03-11 21:13:25 +0100168 * this doesn't return any clock related units, so they need to be handled elsewhere
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100170static void *find_audio_control_unit(struct mixer_build *state, unsigned char unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 unsigned char *p;
173
174 p = NULL;
175 while ((p = snd_usb_find_desc(state->buffer, state->buflen, p,
176 USB_DT_CS_INTERFACE)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100177 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 -0700178 return p;
179 }
180 return NULL;
181}
182
183
184/*
185 * copy a string with the given id
186 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100187static int snd_usb_copy_string_desc(struct mixer_build *state, int index, char *buf, int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
190 buf[len] = 0;
191 return len;
192}
193
194/*
195 * convert from the byte/word on usb descriptor to the zero-based integer
196 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100197static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 switch (cval->val_type) {
200 case USB_MIXER_BOOLEAN:
201 return !!val;
202 case USB_MIXER_INV_BOOLEAN:
203 return !val;
204 case USB_MIXER_U8:
205 val &= 0xff;
206 break;
207 case USB_MIXER_S8:
208 val &= 0xff;
209 if (val >= 0x80)
210 val -= 0x100;
211 break;
212 case USB_MIXER_U16:
213 val &= 0xffff;
214 break;
215 case USB_MIXER_S16:
216 val &= 0xffff;
217 if (val >= 0x8000)
218 val -= 0x10000;
219 break;
220 }
221 return val;
222}
223
224/*
225 * convert from the zero-based int to the byte/word for usb descriptor
226 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100227static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 switch (cval->val_type) {
230 case USB_MIXER_BOOLEAN:
231 return !!val;
232 case USB_MIXER_INV_BOOLEAN:
233 return !val;
234 case USB_MIXER_S8:
235 case USB_MIXER_U8:
236 return val & 0xff;
237 case USB_MIXER_S16:
238 case USB_MIXER_U16:
239 return val & 0xffff;
240 }
241 return 0; /* not reached */
242}
243
Takashi Iwai86e07d32005-11-17 15:08:02 +0100244static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 if (! cval->res)
247 cval->res = 1;
248 if (val < cval->min)
249 return 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200250 else if (val >= cval->max)
251 return (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 else
253 return (val - cval->min) / cval->res;
254}
255
Takashi Iwai86e07d32005-11-17 15:08:02 +0100256static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 if (val < 0)
259 return cval->min;
260 if (! cval->res)
261 cval->res = 1;
262 val *= cval->res;
263 val += cval->min;
264 if (val > cval->max)
265 return cval->max;
266 return val;
267}
268
269
270/*
271 * retrieve a mixer value
272 */
273
Daniel Mack23caaf12010-03-11 21:13:25 +0100274static 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 -0700275{
276 unsigned char buf[2];
277 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
278 int timeout = 10;
279
280 while (timeout-- > 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200281 if (snd_usb_ctl_msg(cval->mixer->chip->dev,
282 usb_rcvctrlpipe(cval->mixer->chip->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 request,
284 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Clemens Ladisch84957a82005-04-29 16:23:13 +0200285 validx, cval->mixer->ctrlif | (cval->id << 8),
Thomas Reitmayra04395e2007-05-15 11:47:48 +0200286 buf, val_len, 100) >= val_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
288 return 0;
289 }
290 }
Clemens Ladisch84957a82005-04-29 16:23:13 +0200291 snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
292 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return -EINVAL;
294}
295
Daniel Mack23caaf12010-03-11 21:13:25 +0100296static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
297{
298 unsigned char buf[14]; /* enough space for one range of 4 bytes */
299 unsigned char *val;
300 int ret;
301 __u8 bRequest;
302
303 bRequest = (request == UAC_GET_CUR) ?
304 UAC2_CS_CUR : UAC2_CS_RANGE;
305
306 ret = snd_usb_ctl_msg(cval->mixer->chip->dev,
307 usb_rcvctrlpipe(cval->mixer->chip->dev, 0),
308 bRequest,
309 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
310 validx, cval->mixer->ctrlif | (cval->id << 8),
311 buf, sizeof(buf), 1000);
312
313 if (ret < 0) {
314 snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
315 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type);
316 return ret;
317 }
318
319 switch (request) {
320 case UAC_GET_CUR:
321 val = buf;
322 break;
323 case UAC_GET_MIN:
324 val = buf + sizeof(__u16);
325 break;
326 case UAC_GET_MAX:
327 val = buf + sizeof(__u16) * 2;
328 break;
329 case UAC_GET_RES:
330 val = buf + sizeof(__u16) * 3;
331 break;
332 default:
333 return -EINVAL;
334 }
335
336 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(val, sizeof(__u16)));
337
338 return 0;
339}
340
341static int get_ctl_value(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
342{
343 return (cval->mixer->protocol == UAC_VERSION_1) ?
344 get_ctl_value_v1(cval, request, validx, value_ret) :
345 get_ctl_value_v2(cval, request, validx, value_ret);
346}
347
Takashi Iwai86e07d32005-11-17 15:08:02 +0100348static int get_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100350 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353/* channel = 0: master, 1 = first channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100354static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
355 int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100357 return get_ctl_value(cval, UAC_GET_CUR, (cval->control << 8) | channel, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Takashi Iwai641b4872009-01-15 17:05:24 +0100360static int get_cur_mix_value(struct usb_mixer_elem_info *cval,
361 int channel, int index, int *value)
362{
363 int err;
364
365 if (cval->cached & (1 << channel)) {
366 *value = cval->cache_val[index];
367 return 0;
368 }
369 err = get_cur_mix_raw(cval, channel, value);
370 if (err < 0) {
371 if (!cval->mixer->ignore_ctl_error)
Daniel Mack23caaf12010-03-11 21:13:25 +0100372 snd_printd(KERN_ERR "cannot get current value for control %d ch %d: err = %d\n",
Takashi Iwai641b4872009-01-15 17:05:24 +0100373 cval->control, channel, err);
374 return err;
375 }
376 cval->cached |= 1 << channel;
377 cval->cache_val[index] = *value;
378 return 0;
379}
380
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382/*
383 * set a mixer value
384 */
385
Daniel Mack7b1eda22010-03-11 21:13:22 +0100386int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
387 int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 unsigned char buf[2];
Daniel Mack23caaf12010-03-11 21:13:25 +0100390 int val_len, timeout = 10;
391
392 if (cval->mixer->protocol == UAC_VERSION_1) {
393 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
394 } else { /* UAC_VERSION_2 */
395 /* audio class v2 controls are always 2 bytes in size */
396 val_len = sizeof(__u16);
397
398 /* FIXME */
399 if (request != UAC_SET_CUR) {
400 snd_printdd(KERN_WARNING "RANGE setting not yet supported\n");
401 return -EINVAL;
402 }
403
404 request = UAC2_CS_CUR;
405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 value_set = convert_bytes_value(cval, value_set);
408 buf[0] = value_set & 0xff;
409 buf[1] = (value_set >> 8) & 0xff;
Viral Mehtacf3f9132009-04-03 13:08:14 +0530410 while (timeout-- > 0)
Clemens Ladisch84957a82005-04-29 16:23:13 +0200411 if (snd_usb_ctl_msg(cval->mixer->chip->dev,
412 usb_sndctrlpipe(cval->mixer->chip->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 request,
414 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
Clemens Ladisch84957a82005-04-29 16:23:13 +0200415 validx, cval->mixer->ctrlif | (cval->id << 8),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 buf, val_len, 100) >= 0)
417 return 0;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200418 snd_printdd(KERN_ERR "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
419 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type, buf[0], buf[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return -EINVAL;
421}
422
Takashi Iwai86e07d32005-11-17 15:08:02 +0100423static int set_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Daniel Mack7b1eda22010-03-11 21:13:22 +0100425 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Takashi Iwai641b4872009-01-15 17:05:24 +0100428static int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
429 int index, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Takashi Iwai641b4872009-01-15 17:05:24 +0100431 int err;
Daniel Macka6a33252010-05-31 13:35:37 +0200432 unsigned int read_only = (channel == 0) ?
433 cval->master_readonly :
434 cval->ch_readonly & (1 << (channel - 1));
435
436 if (read_only) {
437 snd_printdd(KERN_INFO "%s(): channel %d of control %d is read_only\n",
438 __func__, channel, cval->control);
439 return 0;
440 }
441
Daniel Mack7b1eda22010-03-11 21:13:22 +0100442 err = snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, (cval->control << 8) | channel,
Takashi Iwai641b4872009-01-15 17:05:24 +0100443 value);
444 if (err < 0)
445 return err;
446 cval->cached |= 1 << channel;
447 cval->cache_val[index] = value;
448 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200451/*
452 * TLV callback for mixer volume controls
453 */
454static int mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
455 unsigned int size, unsigned int __user *_tlv)
456{
457 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Takashi Iwaib8e1c732009-06-16 14:04:37 +0200458 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200459
460 if (size < sizeof(scale))
461 return -ENOMEM;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100462 scale[2] = cval->dBmin;
463 scale[3] = cval->dBmax;
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200464 if (copy_to_user(_tlv, scale, sizeof(scale)))
465 return -EFAULT;
466 return 0;
467}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469/*
470 * parser routines begin here...
471 */
472
Takashi Iwai86e07d32005-11-17 15:08:02 +0100473static int parse_audio_unit(struct mixer_build *state, int unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475
476/*
477 * check if the input/output channel routing is enabled on the given bitmap.
478 * used for mixer unit parser
479 */
480static int check_matrix_bitmap(unsigned char *bmap, int ich, int och, int num_outs)
481{
482 int idx = ich * num_outs + och;
483 return bmap[idx >> 3] & (0x80 >> (idx & 7));
484}
485
486
487/*
488 * add an alsa control element
489 * search and increment the index until an empty slot is found.
490 *
491 * if failed, give up and free the control instance.
492 */
493
Takashi Iwai86e07d32005-11-17 15:08:02 +0100494static int add_control_to_empty(struct mixer_build *state, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100496 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200498
499 while (snd_ctl_find_id(state->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 kctl->id.index++;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200501 if ((err = snd_ctl_add(state->chip->card, kctl)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 snd_printd(KERN_ERR "cannot add control (err = %d)\n", err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200503 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200505 cval->elem_id = &kctl->id;
506 cval->next_id_elem = state->mixer->id_elems[cval->id];
507 state->mixer->id_elems[cval->id] = cval;
508 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511
512/*
513 * get a terminal name string
514 */
515
516static struct iterm_name_combo {
517 int type;
518 char *name;
519} iterm_names[] = {
520 { 0x0300, "Output" },
521 { 0x0301, "Speaker" },
522 { 0x0302, "Headphone" },
523 { 0x0303, "HMD Audio" },
524 { 0x0304, "Desktop Speaker" },
525 { 0x0305, "Room Speaker" },
526 { 0x0306, "Com Speaker" },
527 { 0x0307, "LFE" },
528 { 0x0600, "External In" },
529 { 0x0601, "Analog In" },
530 { 0x0602, "Digital In" },
531 { 0x0603, "Line" },
532 { 0x0604, "Legacy In" },
533 { 0x0605, "IEC958 In" },
534 { 0x0606, "1394 DA Stream" },
535 { 0x0607, "1394 DV Stream" },
536 { 0x0700, "Embedded" },
537 { 0x0701, "Noise Source" },
538 { 0x0702, "Equalization Noise" },
539 { 0x0703, "CD" },
540 { 0x0704, "DAT" },
541 { 0x0705, "DCC" },
542 { 0x0706, "MiniDisk" },
543 { 0x0707, "Analog Tape" },
544 { 0x0708, "Phonograph" },
545 { 0x0709, "VCR Audio" },
546 { 0x070a, "Video Disk Audio" },
547 { 0x070b, "DVD Audio" },
548 { 0x070c, "TV Tuner Audio" },
549 { 0x070d, "Satellite Rec Audio" },
550 { 0x070e, "Cable Tuner Audio" },
551 { 0x070f, "DSS Audio" },
552 { 0x0710, "Radio Receiver" },
553 { 0x0711, "Radio Transmitter" },
554 { 0x0712, "Multi-Track Recorder" },
555 { 0x0713, "Synthesizer" },
556 { 0 },
557};
558
Takashi Iwai86e07d32005-11-17 15:08:02 +0100559static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 unsigned char *name, int maxlen, int term_only)
561{
562 struct iterm_name_combo *names;
563
564 if (iterm->name)
565 return snd_usb_copy_string_desc(state, iterm->name, name, maxlen);
566
567 /* virtual type - not a real terminal */
568 if (iterm->type >> 16) {
569 if (term_only)
570 return 0;
571 switch (iterm->type >> 16) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100572 case UAC_SELECTOR_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 strcpy(name, "Selector"); return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100574 case UAC_PROCESSING_UNIT_V1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 strcpy(name, "Process Unit"); return 12;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100576 case UAC_EXTENSION_UNIT_V1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 strcpy(name, "Ext Unit"); return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100578 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 strcpy(name, "Mixer"); return 5;
580 default:
581 return sprintf(name, "Unit %d", iterm->id);
582 }
583 }
584
585 switch (iterm->type & 0xff00) {
586 case 0x0100:
587 strcpy(name, "PCM"); return 3;
588 case 0x0200:
589 strcpy(name, "Mic"); return 3;
590 case 0x0400:
591 strcpy(name, "Headset"); return 7;
592 case 0x0500:
593 strcpy(name, "Phone"); return 5;
594 }
595
596 for (names = iterm_names; names->type; names++)
597 if (names->type == iterm->type) {
598 strcpy(name, names->name);
599 return strlen(names->name);
600 }
601 return 0;
602}
603
604
605/*
606 * parse the source unit recursively until it reaches to a terminal
607 * or a branched unit.
608 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100609static int check_input_term(struct mixer_build *state, int id, struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Daniel Mack23caaf12010-03-11 21:13:25 +0100611 void *p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 memset(term, 0, sizeof(*term));
614 while ((p1 = find_audio_control_unit(state, id)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100615 unsigned char *hdr = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100617 switch (hdr[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100618 case UAC_INPUT_TERMINAL:
Daniel Mack23caaf12010-03-11 21:13:25 +0100619 if (state->mixer->protocol == UAC_VERSION_1) {
620 struct uac_input_terminal_descriptor *d = p1;
621 term->type = le16_to_cpu(d->wTerminalType);
622 term->channels = d->bNrChannels;
623 term->chconfig = le16_to_cpu(d->wChannelConfig);
624 term->name = d->iTerminal;
625 } else { /* UAC_VERSION_2 */
626 struct uac2_input_terminal_descriptor *d = p1;
627 term->type = le16_to_cpu(d->wTerminalType);
628 term->channels = d->bNrChannels;
629 term->chconfig = le32_to_cpu(d->bmChannelConfig);
630 term->name = d->iTerminal;
631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100633 case UAC_FEATURE_UNIT: {
634 /* the header is the same for v1 and v2 */
635 struct uac_feature_unit_descriptor *d = p1;
Daniel Mack5e688882010-05-08 11:24:56 +0200636 id = d->bSourceID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 break; /* continue to parse */
Daniel Mack23caaf12010-03-11 21:13:25 +0100638 }
639 case UAC_MIXER_UNIT: {
640 struct uac_mixer_unit_descriptor *d = p1;
641 term->type = d->bDescriptorSubtype << 16; /* virtual type */
642 term->channels = uac_mixer_unit_bNrChannels(d);
643 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
644 term->name = uac_mixer_unit_iMixer(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100646 }
647 case UAC_SELECTOR_UNIT: {
648 struct uac_selector_unit_descriptor *d = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /* call recursively to retrieve the channel info */
Daniel Mack23caaf12010-03-11 21:13:25 +0100650 if (check_input_term(state, d->baSourceID[0], term) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return -ENODEV;
Daniel Mack23caaf12010-03-11 21:13:25 +0100652 term->type = d->bDescriptorSubtype << 16; /* virtual type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100654 term->name = uac_selector_unit_iSelector(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100656 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100657 case UAC_PROCESSING_UNIT_V1:
Daniel Mack23caaf12010-03-11 21:13:25 +0100658 case UAC_EXTENSION_UNIT_V1: {
659 struct uac_processing_unit_descriptor *d = p1;
660 if (d->bNrInPins) {
661 id = d->baSourceID[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 break; /* continue to parse */
663 }
Daniel Mack23caaf12010-03-11 21:13:25 +0100664 term->type = d->bDescriptorSubtype << 16; /* virtual type */
665 term->channels = uac_processing_unit_bNrChannels(d);
666 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
667 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 default:
671 return -ENODEV;
672 }
673 }
674 return -ENODEV;
675}
676
677
678/*
679 * Feature Unit
680 */
681
682/* feature unit control information */
683struct usb_feature_control_info {
684 const char *name;
685 unsigned int type; /* control type (mute, volume, etc.) */
686};
687
688static struct usb_feature_control_info audio_feature_info[] = {
Daniel Mack2e0281d2010-05-31 13:35:42 +0200689 { "Mute", USB_MIXER_INV_BOOLEAN },
690 { "Volume", USB_MIXER_S16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 { "Tone Control - Bass", USB_MIXER_S8 },
692 { "Tone Control - Mid", USB_MIXER_S8 },
693 { "Tone Control - Treble", USB_MIXER_S8 },
694 { "Graphic Equalizer", USB_MIXER_S8 }, /* FIXME: not implemeted yet */
Daniel Mack2e0281d2010-05-31 13:35:42 +0200695 { "Auto Gain Control", USB_MIXER_BOOLEAN },
696 { "Delay Control", USB_MIXER_U16 },
697 { "Bass Boost", USB_MIXER_BOOLEAN },
698 { "Loudness", USB_MIXER_BOOLEAN },
699 /* UAC2 specific */
700 { "Input Gain Control", USB_MIXER_U16 },
701 { "Input Gain Pad Control", USB_MIXER_BOOLEAN },
702 { "Phase Inverter Control", USB_MIXER_BOOLEAN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703};
704
705
706/* private_free callback */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100707static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Jesper Juhl4d572772005-05-30 17:30:32 +0200709 kfree(kctl->private_data);
710 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
713
714/*
715 * interface to ALSA control for feature/mixer units
716 */
717
718/*
719 * retrieve the minimum and maximum values for the specified control
720 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100721static int get_min_max(struct usb_mixer_elem_info *cval, int default_min)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
723 /* for failsafe */
724 cval->min = default_min;
725 cval->max = cval->min + 1;
726 cval->res = 1;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100727 cval->dBmin = cval->dBmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 if (cval->val_type == USB_MIXER_BOOLEAN ||
730 cval->val_type == USB_MIXER_INV_BOOLEAN) {
731 cval->initialized = 1;
732 } else {
733 int minchn = 0;
734 if (cval->cmask) {
735 int i;
736 for (i = 0; i < MAX_CHANNELS; i++)
737 if (cval->cmask & (1 << i)) {
738 minchn = i + 1;
739 break;
740 }
741 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100742 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
743 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200744 snd_printd(KERN_ERR "%d:%d: cannot get min/max values for control %d (id %d)\n",
745 cval->id, cval->mixer->ctrlif, cval->control, cval->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return -EINVAL;
747 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100748 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 cval->res = 1;
750 } else {
751 int last_valid_res = cval->res;
752
753 while (cval->res > 1) {
Daniel Mack7b1eda22010-03-11 21:13:22 +0100754 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
755 (cval->control << 8) | minchn, cval->res / 2) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 break;
757 cval->res /= 2;
758 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100759 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 cval->res = last_valid_res;
761 }
762 if (cval->res == 0)
763 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +0200764
765 /* Additional checks for the proper resolution
766 *
767 * Some devices report smaller resolutions than actually
768 * reacting. They don't return errors but simply clip
769 * to the lower aligned value.
770 */
771 if (cval->min + cval->res < cval->max) {
772 int last_valid_res = cval->res;
773 int saved, test, check;
Takashi Iwai641b4872009-01-15 17:05:24 +0100774 get_cur_mix_raw(cval, minchn, &saved);
Takashi Iwai14790f12006-03-28 17:58:28 +0200775 for (;;) {
776 test = saved;
777 if (test < cval->max)
778 test += cval->res;
779 else
780 test -= cval->res;
781 if (test < cval->min || test > cval->max ||
Takashi Iwai641b4872009-01-15 17:05:24 +0100782 set_cur_mix_value(cval, minchn, 0, test) ||
783 get_cur_mix_raw(cval, minchn, &check)) {
Takashi Iwai14790f12006-03-28 17:58:28 +0200784 cval->res = last_valid_res;
785 break;
786 }
787 if (test == check)
788 break;
789 cval->res *= 2;
790 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100791 set_cur_mix_value(cval, minchn, 0, saved);
Takashi Iwai14790f12006-03-28 17:58:28 +0200792 }
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 cval->initialized = 1;
795 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100796
797 /* USB descriptions contain the dB scale in 1/256 dB unit
798 * while ALSA TLV contains in 1/100 dB unit
799 */
800 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
801 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
802 if (cval->dBmin > cval->dBmax) {
803 /* something is wrong; assume it's either from/to 0dB */
804 if (cval->dBmin < 0)
805 cval->dBmax = 0;
806 else if (cval->dBmin > 0)
807 cval->dBmin = 0;
808 if (cval->dBmin > cval->dBmax) {
809 /* totally crap, return an error */
810 return -EINVAL;
811 }
812 }
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return 0;
815}
816
817
818/* get a feature/mixer unit info */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100819static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100821 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 if (cval->val_type == USB_MIXER_BOOLEAN ||
824 cval->val_type == USB_MIXER_INV_BOOLEAN)
825 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
826 else
827 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
828 uinfo->count = cval->channels;
829 if (cval->val_type == USB_MIXER_BOOLEAN ||
830 cval->val_type == USB_MIXER_INV_BOOLEAN) {
831 uinfo->value.integer.min = 0;
832 uinfo->value.integer.max = 1;
833 } else {
834 if (! cval->initialized)
835 get_min_max(cval, 0);
836 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200837 uinfo->value.integer.max =
838 (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840 return 0;
841}
842
843/* get the current value from feature/mixer unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100844static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100846 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 int c, cnt, val, err;
848
Takashi Iwai641b4872009-01-15 17:05:24 +0100849 ucontrol->value.integer.value[0] = cval->min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (cval->cmask) {
851 cnt = 0;
852 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100853 if (!(cval->cmask & (1 << c)))
854 continue;
855 err = get_cur_mix_value(cval, c + 1, cnt, &val);
856 if (err < 0)
857 return cval->mixer->ignore_ctl_error ? 0 : err;
858 val = get_relative_value(cval, val);
859 ucontrol->value.integer.value[cnt] = val;
860 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100862 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 } else {
864 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100865 err = get_cur_mix_value(cval, 0, 0, &val);
866 if (err < 0)
867 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 val = get_relative_value(cval, val);
869 ucontrol->value.integer.value[0] = val;
870 }
871 return 0;
872}
873
874/* put the current value to feature/mixer unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100875static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100877 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 int c, cnt, val, oval, err;
879 int changed = 0;
880
881 if (cval->cmask) {
882 cnt = 0;
883 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100884 if (!(cval->cmask & (1 << c)))
885 continue;
886 err = get_cur_mix_value(cval, c + 1, cnt, &oval);
887 if (err < 0)
888 return cval->mixer->ignore_ctl_error ? 0 : err;
889 val = ucontrol->value.integer.value[cnt];
890 val = get_abs_value(cval, val);
891 if (oval != val) {
892 set_cur_mix_value(cval, c + 1, cnt, val);
893 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100895 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897 } else {
898 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100899 err = get_cur_mix_value(cval, 0, 0, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (err < 0)
Takashi Iwai641b4872009-01-15 17:05:24 +0100901 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 val = ucontrol->value.integer.value[0];
903 val = get_abs_value(cval, val);
904 if (val != oval) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100905 set_cur_mix_value(cval, 0, 0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 changed = 1;
907 }
908 }
909 return changed;
910}
911
Takashi Iwai86e07d32005-11-17 15:08:02 +0100912static struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
914 .name = "", /* will be filled later manually */
915 .info = mixer_ctl_feature_info,
916 .get = mixer_ctl_feature_get,
917 .put = mixer_ctl_feature_put,
918};
919
Daniel Mack23caaf12010-03-11 21:13:25 +0100920/* the read-only variant */
921static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
922 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
923 .name = "", /* will be filled later manually */
924 .info = mixer_ctl_feature_info,
925 .get = mixer_ctl_feature_get,
926 .put = NULL,
927};
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930/*
931 * build a feature control
932 */
933
Takashi Iwai08d1e632009-10-02 14:06:08 +0200934static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
935{
936 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
937}
938
Daniel Mack99fc8642010-03-11 21:13:24 +0100939static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 unsigned int ctl_mask, int control,
Daniel Mack23caaf12010-03-11 21:13:25 +0100941 struct usb_audio_term *iterm, int unitid,
Daniel Macka6a33252010-05-31 13:35:37 +0200942 int readonly_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
Daniel Mack99fc8642010-03-11 21:13:24 +0100944 struct uac_feature_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 unsigned int len = 0;
946 int mapped_name = 0;
Daniel Mack99fc8642010-03-11 21:13:24 +0100947 int nameid = uac_feature_unit_iFeature(desc);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100948 struct snd_kcontrol *kctl;
949 struct usb_mixer_elem_info *cval;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100950 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 control++; /* change from zero-based to 1-based value */
953
Daniel Mack65f25da2010-05-31 13:35:41 +0200954 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 /* FIXME: not supported yet */
956 return;
957 }
958
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100959 map = find_map(state, unitid, control);
960 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return;
962
Takashi Iwai561b2202005-09-09 14:22:34 +0200963 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (! cval) {
965 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
966 return;
967 }
Clemens Ladisch84957a82005-04-29 16:23:13 +0200968 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 cval->id = unitid;
970 cval->control = control;
971 cval->cmask = ctl_mask;
972 cval->val_type = audio_feature_info[control-1].type;
Daniel Macka6a33252010-05-31 13:35:37 +0200973 if (ctl_mask == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 cval->channels = 1; /* master channel */
Daniel Macka6a33252010-05-31 13:35:37 +0200975 cval->master_readonly = readonly_mask;
976 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 int i, c = 0;
978 for (i = 0; i < 16; i++)
979 if (ctl_mask & (1 << i))
980 c++;
981 cval->channels = c;
Daniel Macka6a33252010-05-31 13:35:37 +0200982 cval->ch_readonly = readonly_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984
985 /* get min/max values */
986 get_min_max(cval, 0);
987
Daniel Macka6a33252010-05-31 13:35:37 +0200988 /* if all channels in the mask are marked read-only, make the control
989 * read-only. set_cur_mix_value() will check the mask again and won't
990 * issue write commands to read-only channels. */
991 if (cval->channels == readonly_mask)
Daniel Mack23caaf12010-03-11 21:13:25 +0100992 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
993 else
994 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (! kctl) {
997 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
998 kfree(cval);
999 return;
1000 }
1001 kctl->private_free = usb_mixer_elem_free;
1002
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001003 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 mapped_name = len != 0;
1005 if (! len && nameid)
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001006 len = snd_usb_copy_string_desc(state, nameid,
1007 kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 switch (control) {
Daniel Mack65f25da2010-05-31 13:35:41 +02001010 case UAC_FU_MUTE:
1011 case UAC_FU_VOLUME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 /* determine the control name. the rule is:
1013 * - if a name id is given in descriptor, use it.
1014 * - if the connected input can be determined, then use the name
1015 * of terminal type.
1016 * - if the connected output can be determined, use it.
1017 * - otherwise, anonymous name.
1018 */
1019 if (! len) {
1020 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 1);
1021 if (! len)
1022 len = get_term_name(state, &state->oterm, kctl->id.name, sizeof(kctl->id.name), 1);
1023 if (! len)
1024 len = snprintf(kctl->id.name, sizeof(kctl->id.name),
1025 "Feature %d", unitid);
1026 }
1027 /* determine the stream direction:
1028 * if the connected output is USB stream, then it's likely a
1029 * capture stream. otherwise it should be playback (hopefully :)
1030 */
1031 if (! mapped_name && ! (state->oterm.type >> 16)) {
1032 if ((state->oterm.type & 0xff00) == 0x0100) {
Takashi Iwai08d1e632009-10-02 14:06:08 +02001033 len = append_ctl_name(kctl, " Capture");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 } else {
Takashi Iwai08d1e632009-10-02 14:06:08 +02001035 len = append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037 }
Daniel Mack65f25da2010-05-31 13:35:41 +02001038 append_ctl_name(kctl, control == UAC_FU_MUTE ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001039 " Switch" : " Volume");
Daniel Mack65f25da2010-05-31 13:35:41 +02001040 if (control == UAC_FU_VOLUME) {
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +02001041 kctl->tlv.c = mixer_vol_tlv;
1042 kctl->vd[0].access |=
1043 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1044 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001045 check_mapped_dB(map, cval);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +02001046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 break;
1048
1049 default:
1050 if (! len)
1051 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1052 sizeof(kctl->id.name));
1053 break;
1054 }
1055
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001056 /* volume control quirks */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001057 switch (state->chip->usb_id) {
1058 case USB_ID(0x0471, 0x0101):
1059 case USB_ID(0x0471, 0x0104):
1060 case USB_ID(0x0471, 0x0105):
1061 case USB_ID(0x0672, 0x1041):
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001062 /* quirk for UDA1321/N101.
1063 * note that detection between firmware 2.1.1.7 (N101)
1064 * and later 2.1.1.21 is not very clear from datasheets.
1065 * I hope that the min value is -15360 for newer firmware --jk
1066 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001067 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
1068 cval->min == -15616) {
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001069 snd_printk(KERN_INFO
1070 "set volume quirk for UDA1321/N101 chip\n");
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001071 cval->max = -256;
1072 }
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001073 break;
1074
1075 case USB_ID(0x046d, 0x09a4):
1076 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1077 snd_printk(KERN_INFO
1078 "set volume quirk for QuickCam E3500\n");
1079 cval->min = 6080;
1080 cval->max = 8768;
1081 cval->res = 192;
1082 }
1083 break;
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086
1087 snd_printdd(KERN_INFO "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1088 cval->id, kctl->id.name, cval->channels, cval->min, cval->max, cval->res);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001089 add_control_to_empty(state, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
1092
1093
1094/*
1095 * parse a feature unit
1096 *
1097 * most of controlls are defined here.
1098 */
Daniel Mack28e1b772010-02-22 23:49:09 +01001099static int parse_audio_feature_unit(struct mixer_build *state, int unitid, void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
1101 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001102 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 unsigned int master_bits, first_ch_bits;
1104 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001105 struct uac_feature_unit_descriptor *hdr = _ftr;
1106 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Daniel Mack23caaf12010-03-11 21:13:25 +01001108 if (state->mixer->protocol == UAC_VERSION_1) {
1109 csize = hdr->bControlSize;
1110 channels = (hdr->bLength - 7) / csize - 1;
1111 bmaControls = hdr->bmaControls;
1112 } else {
1113 struct uac2_feature_unit_descriptor *ftr = _ftr;
1114 csize = 4;
Daniel Macke8d0fee2010-05-27 20:15:14 +02001115 channels = (hdr->bLength - 6) / 4 - 1;
Daniel Mack23caaf12010-03-11 21:13:25 +01001116 bmaControls = ftr->bmaControls;
1117 }
1118
1119 if (hdr->bLength < 7 || !csize || hdr->bLength < 7 + csize) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01001120 snd_printk(KERN_ERR "usbaudio: unit %u: invalid UAC_FEATURE_UNIT descriptor\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return -EINVAL;
1122 }
1123
1124 /* parse the source unit */
Daniel Mack23caaf12010-03-11 21:13:25 +01001125 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return err;
1127
1128 /* determine the input source type and name */
Daniel Mack23caaf12010-03-11 21:13:25 +01001129 if (check_input_term(state, hdr->bSourceID, &iterm) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return -EINVAL;
1131
Daniel Mack23caaf12010-03-11 21:13:25 +01001132 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001133 /* master configuration quirks */
1134 switch (state->chip->usb_id) {
1135 case USB_ID(0x08bb, 0x2702):
1136 snd_printk(KERN_INFO
1137 "usbmixer: master volume quirk for PCM2702 chip\n");
1138 /* disable non-functional volume control */
Daniel Mack65f25da2010-05-31 13:35:41 +02001139 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001140 break;
1141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (channels > 0)
Daniel Mack23caaf12010-03-11 21:13:25 +01001143 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 else
1145 first_ch_bits = 0;
Daniel Mack23caaf12010-03-11 21:13:25 +01001146
1147 if (state->mixer->protocol == UAC_VERSION_1) {
1148 /* check all control types */
1149 for (i = 0; i < 10; i++) {
1150 unsigned int ch_bits = 0;
1151 for (j = 0; j < channels; j++) {
1152 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
1153 if (mask & (1 << i))
1154 ch_bits |= (1 << j);
1155 }
1156 /* audio class v1 controls are never read-only */
1157 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
1158 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, 0);
1159 if (master_bits & (1 << i))
1160 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001162 } else { /* UAC_VERSION_2 */
1163 for (i = 0; i < 30/2; i++) {
1164 /* From the USB Audio spec v2.0:
1165 bmaControls() is a (ch+1)-element array of 4-byte bitmaps,
1166 each containing a set of bit pairs. If a Control is present,
1167 it must be Host readable. If a certain Control is not
1168 present then the bit pair must be set to 0b00.
1169 If a Control is present but read-only, the bit pair must be
1170 set to 0b01. If a Control is also Host programmable, the bit
1171 pair must be set to 0b11. The value 0b10 is not allowed. */
1172 unsigned int ch_bits = 0;
1173 unsigned int ch_read_only = 0;
1174
1175 for (j = 0; j < channels; j++) {
1176 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001177 if (uac2_control_is_readable(mask, i)) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001178 ch_bits |= (1 << j);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001179 if (!uac2_control_is_writeable(mask, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001180 ch_read_only |= (1 << j);
1181 }
1182 }
1183
Daniel Macka6a33252010-05-31 13:35:37 +02001184 /* NOTE: build_feature_ctl() will mark the control read-only if all channels
1185 * are marked read-only in the descriptors. Otherwise, the control will be
1186 * reported as writeable, but the driver will not actually issue a write
1187 * command for read-only channels */
Daniel Mack23caaf12010-03-11 21:13:25 +01001188 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
Daniel Macka6a33252010-05-31 13:35:37 +02001189 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, ch_read_only);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001190 if (uac2_control_is_readable(master_bits, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001191 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001192 !uac2_control_is_writeable(master_bits, i));
Daniel Mack23caaf12010-03-11 21:13:25 +01001193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
1195
1196 return 0;
1197}
1198
1199
1200/*
1201 * Mixer Unit
1202 */
1203
1204/*
1205 * build a mixer unit control
1206 *
1207 * the callbacks are identical with feature unit.
1208 * input channel number (zero based) is given in control field instead.
1209 */
1210
Daniel Mack99fc8642010-03-11 21:13:24 +01001211static void build_mixer_unit_ctl(struct mixer_build *state,
1212 struct uac_mixer_unit_descriptor *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001214 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001216 struct usb_mixer_elem_info *cval;
Daniel Mack99fc8642010-03-11 21:13:24 +01001217 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001219 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001220 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001222 map = find_map(state, unitid, 0);
1223 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return;
1225
Takashi Iwai561b2202005-09-09 14:22:34 +02001226 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (! cval)
1228 return;
1229
Clemens Ladisch84957a82005-04-29 16:23:13 +02001230 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 cval->id = unitid;
1232 cval->control = in_ch + 1; /* based on 1 */
1233 cval->val_type = USB_MIXER_S16;
1234 for (i = 0; i < num_outs; i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001235 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol), in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 cval->cmask |= (1 << i);
1237 cval->channels++;
1238 }
1239 }
1240
1241 /* get min/max values */
1242 get_min_max(cval, 0);
1243
1244 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1245 if (! kctl) {
1246 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1247 kfree(cval);
1248 return;
1249 }
1250 kctl->private_free = usb_mixer_elem_free;
1251
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001252 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (! len)
1254 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0);
1255 if (! len)
1256 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02001257 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n",
1260 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001261 add_control_to_empty(state, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
1264
1265/*
1266 * parse a mixer unit
1267 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001268static int parse_audio_mixer_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Daniel Mack99fc8642010-03-11 21:13:24 +01001270 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001271 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 int input_pins, num_ins, num_outs;
1273 int pin, ich, err;
1274
Daniel Mack99fc8642010-03-11 21:13:24 +01001275 if (desc->bLength < 11 || ! (input_pins = desc->bNrInPins) || ! (num_outs = uac_mixer_unit_bNrChannels(desc))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 snd_printk(KERN_ERR "invalid MIXER UNIT descriptor %d\n", unitid);
1277 return -EINVAL;
1278 }
1279 /* no bmControls field (e.g. Maya44) -> ignore */
Daniel Mack99fc8642010-03-11 21:13:24 +01001280 if (desc->bLength <= 10 + input_pins) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 snd_printdd(KERN_INFO "MU %d has no bmControls field\n", unitid);
1282 return 0;
1283 }
1284
1285 num_ins = 0;
1286 ich = 0;
1287 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001288 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (err < 0)
1290 return err;
Daniel Mack99fc8642010-03-11 21:13:24 +01001291 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (err < 0)
1293 return err;
1294 num_ins += iterm.channels;
1295 for (; ich < num_ins; ++ich) {
1296 int och, ich_has_controls = 0;
1297
1298 for (och = 0; och < num_outs; ++och) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001299 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 ich, och, num_outs)) {
1301 ich_has_controls = 1;
1302 break;
1303 }
1304 }
1305 if (ich_has_controls)
1306 build_mixer_unit_ctl(state, desc, pin, ich,
1307 unitid, &iterm);
1308 }
1309 }
1310 return 0;
1311}
1312
1313
1314/*
1315 * Processing Unit / Extension Unit
1316 */
1317
1318/* get callback for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001319static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001321 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 int err, val;
1323
1324 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001325 if (err < 0 && cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 ucontrol->value.integer.value[0] = cval->min;
1327 return 0;
1328 }
1329 if (err < 0)
1330 return err;
1331 val = get_relative_value(cval, val);
1332 ucontrol->value.integer.value[0] = val;
1333 return 0;
1334}
1335
1336/* put callback for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001337static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001339 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 int val, oval, err;
1341
1342 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1343 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001344 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return 0;
1346 return err;
1347 }
1348 val = ucontrol->value.integer.value[0];
1349 val = get_abs_value(cval, val);
1350 if (val != oval) {
1351 set_cur_ctl_value(cval, cval->control << 8, val);
1352 return 1;
1353 }
1354 return 0;
1355}
1356
1357/* alsa control interface for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001358static struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1360 .name = "", /* will be filled later */
1361 .info = mixer_ctl_feature_info,
1362 .get = mixer_ctl_procunit_get,
1363 .put = mixer_ctl_procunit_put,
1364};
1365
1366
1367/*
1368 * predefined data for processing units
1369 */
1370struct procunit_value_info {
1371 int control;
1372 char *suffix;
1373 int val_type;
1374 int min_value;
1375};
1376
1377struct procunit_info {
1378 int type;
1379 char *name;
1380 struct procunit_value_info *values;
1381};
1382
1383static struct procunit_value_info updown_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001384 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1385 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 { 0 }
1387};
1388static struct procunit_value_info prologic_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001389 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1390 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 { 0 }
1392};
1393static struct procunit_value_info threed_enh_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001394 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1395 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 { 0 }
1397};
1398static struct procunit_value_info reverb_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001399 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1400 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1401 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1402 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 { 0 }
1404};
1405static struct procunit_value_info chorus_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001406 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1407 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1408 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1409 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 { 0 }
1411};
1412static struct procunit_value_info dcr_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001413 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1414 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1415 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1416 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1417 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1418 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 { 0 }
1420};
1421
1422static struct procunit_info procunits[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001423 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1424 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1425 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1426 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1427 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1428 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 { 0 },
1430};
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001431/*
1432 * predefined data for extension units
1433 */
1434static struct procunit_value_info clock_rate_xu_info[] = {
Daniel Macke213e9c2010-05-11 18:13:50 +02001435 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1436 { 0 }
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001437};
1438static struct procunit_value_info clock_source_xu_info[] = {
1439 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1440 { 0 }
1441};
1442static struct procunit_value_info spdif_format_xu_info[] = {
1443 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1444 { 0 }
1445};
1446static struct procunit_value_info soft_limit_xu_info[] = {
1447 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1448 { 0 }
1449};
1450static struct procunit_info extunits[] = {
1451 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1452 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1453 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1454 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1455 { 0 }
1456};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457/*
1458 * build a processing/extension unit
1459 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001460static 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 -07001461{
Daniel Mack99fc8642010-03-11 21:13:24 +01001462 struct uac_processing_unit_descriptor *desc = raw_desc;
1463 int num_ins = desc->bNrInPins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001464 struct usb_mixer_elem_info *cval;
1465 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 int i, err, nameid, type, len;
1467 struct procunit_info *info;
1468 struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001469 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 static struct procunit_value_info default_value_info[] = {
1471 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1472 { 0 }
1473 };
1474 static struct procunit_info default_info = {
1475 0, NULL, default_value_info
1476 };
1477
Daniel Mack23caaf12010-03-11 21:13:25 +01001478 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1479 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 snd_printk(KERN_ERR "invalid %s descriptor (id %d)\n", name, unitid);
1481 return -EINVAL;
1482 }
1483
1484 for (i = 0; i < num_ins; i++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001485 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return err;
1487 }
1488
Daniel Mack99fc8642010-03-11 21:13:24 +01001489 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 for (info = list; info && info->type; info++)
1491 if (info->type == type)
1492 break;
1493 if (! info || ! info->type)
1494 info = &default_info;
1495
1496 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001497 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01001498
1499 if (! (controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 continue;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001501 map = find_map(state, unitid, valinfo->control);
1502 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02001504 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 if (! cval) {
1506 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1507 return -ENOMEM;
1508 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001509 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 cval->id = unitid;
1511 cval->control = valinfo->control;
1512 cval->val_type = valinfo->val_type;
1513 cval->channels = 1;
1514
1515 /* get min/max values */
Daniel Mack65f25da2010-05-31 13:35:41 +02001516 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001517 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 /* FIXME: hard-coded */
1519 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001520 cval->max = control_spec[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 cval->res = 1;
1522 cval->initialized = 1;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001523 } else {
1524 if (type == USB_XU_CLOCK_RATE) {
1525 /* E-Mu USB 0404/0202/TrackerPre
1526 * samplerate control quirk
1527 */
1528 cval->min = 0;
1529 cval->max = 5;
1530 cval->res = 1;
1531 cval->initialized = 1;
1532 } else
1533 get_min_max(cval, valinfo->min_value);
1534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
1537 if (! kctl) {
1538 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1539 kfree(cval);
1540 return -ENOMEM;
1541 }
1542 kctl->private_free = usb_mixer_elem_free;
1543
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001544 if (check_mapped_name(map, kctl->id.name,
1545 sizeof(kctl->id.name)))
1546 /* nothing */ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 else if (info->name)
1548 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1549 else {
Daniel Mack23caaf12010-03-11 21:13:25 +01001550 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 len = 0;
1552 if (nameid)
1553 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1554 if (! len)
1555 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1556 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02001557 append_ctl_name(kctl, " ");
1558 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n",
1561 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001562 if ((err = add_control_to_empty(state, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 return err;
1564 }
1565 return 0;
1566}
1567
1568
Daniel Mack99fc8642010-03-11 21:13:24 +01001569static int parse_audio_processing_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Daniel Mack99fc8642010-03-11 21:13:24 +01001571 return build_audio_procunit(state, unitid, raw_desc, procunits, "Processing Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Daniel Mack99fc8642010-03-11 21:13:24 +01001574static int parse_audio_extension_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Daniel Mack99fc8642010-03-11 21:13:24 +01001576 /* Note that we parse extension units with processing unit descriptors.
1577 * That's ok as the layout is the same */
1578 return build_audio_procunit(state, unitid, raw_desc, extunits, "Extension Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
1581
1582/*
1583 * Selector Unit
1584 */
1585
1586/* info callback for selector unit
1587 * use an enumerator type for routing
1588 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001589static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001591 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 char **itemlist = (char **)kcontrol->private_value;
1593
Takashi Iwai5e246b82008-08-08 17:12:47 +02001594 if (snd_BUG_ON(!itemlist))
1595 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1597 uinfo->count = 1;
1598 uinfo->value.enumerated.items = cval->max;
1599 if ((int)uinfo->value.enumerated.item >= cval->max)
1600 uinfo->value.enumerated.item = cval->max - 1;
1601 strcpy(uinfo->value.enumerated.name, itemlist[uinfo->value.enumerated.item]);
1602 return 0;
1603}
1604
1605/* get callback for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001606static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001608 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 int val, err;
1610
1611 err = get_cur_ctl_value(cval, 0, &val);
1612 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001613 if (cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 ucontrol->value.enumerated.item[0] = 0;
1615 return 0;
1616 }
1617 return err;
1618 }
1619 val = get_relative_value(cval, val);
1620 ucontrol->value.enumerated.item[0] = val;
1621 return 0;
1622}
1623
1624/* put callback for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001625static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol, 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 val, oval, err;
1629
1630 err = get_cur_ctl_value(cval, 0, &oval);
1631 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001632 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 return 0;
1634 return err;
1635 }
1636 val = ucontrol->value.enumerated.item[0];
1637 val = get_abs_value(cval, val);
1638 if (val != oval) {
1639 set_cur_ctl_value(cval, 0, val);
1640 return 1;
1641 }
1642 return 0;
1643}
1644
1645/* alsa control interface for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001646static struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1648 .name = "", /* will be filled later */
1649 .info = mixer_ctl_selector_info,
1650 .get = mixer_ctl_selector_get,
1651 .put = mixer_ctl_selector_put,
1652};
1653
1654
1655/* private free callback.
1656 * free both private_data and private_value
1657 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001658static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
1660 int i, num_ins = 0;
1661
1662 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001663 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 num_ins = cval->max;
1665 kfree(cval);
1666 kctl->private_data = NULL;
1667 }
1668 if (kctl->private_value) {
1669 char **itemlist = (char **)kctl->private_value;
1670 for (i = 0; i < num_ins; i++)
1671 kfree(itemlist[i]);
1672 kfree(itemlist);
1673 kctl->private_value = 0;
1674 }
1675}
1676
1677/*
1678 * parse a selector unit
1679 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001680static int parse_audio_selector_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
Daniel Mack99fc8642010-03-11 21:13:24 +01001682 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 unsigned int i, nameid, len;
1684 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001685 struct usb_mixer_elem_info *cval;
1686 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001687 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 char **namelist;
1689
Daniel Mack99fc8642010-03-11 21:13:24 +01001690 if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
1692 return -EINVAL;
1693 }
1694
Daniel Mack99fc8642010-03-11 21:13:24 +01001695 for (i = 0; i < desc->bNrInPins; i++) {
1696 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return err;
1698 }
1699
Daniel Mack99fc8642010-03-11 21:13:24 +01001700 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 return 0;
1702
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001703 map = find_map(state, unitid, 0);
1704 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 return 0;
1706
Takashi Iwai561b2202005-09-09 14:22:34 +02001707 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (! cval) {
1709 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1710 return -ENOMEM;
1711 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001712 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 cval->id = unitid;
1714 cval->val_type = USB_MIXER_U8;
1715 cval->channels = 1;
1716 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001717 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 cval->res = 1;
1719 cval->initialized = 1;
1720
Daniel Mack99fc8642010-03-11 21:13:24 +01001721 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (! namelist) {
1723 snd_printk(KERN_ERR "cannot malloc\n");
1724 kfree(cval);
1725 return -ENOMEM;
1726 }
1727#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01001728 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001729 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 len = 0;
1731 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
1732 if (! namelist[i]) {
1733 snd_printk(KERN_ERR "cannot malloc\n");
Mariusz Kozlowski7fbe3ca2007-01-08 11:25:30 +01001734 while (i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 kfree(namelist[i]);
1736 kfree(namelist);
1737 kfree(cval);
1738 return -ENOMEM;
1739 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02001740 len = check_mapped_selector_name(state, unitid, i, namelist[i],
1741 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01001742 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
1744 if (! len)
1745 sprintf(namelist[i], "Input %d", i);
1746 }
1747
1748 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
1749 if (! kctl) {
1750 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
Jesper Juhl878b4782006-03-20 11:27:13 +01001751 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 kfree(cval);
1753 return -ENOMEM;
1754 }
1755 kctl->private_value = (unsigned long)namelist;
1756 kctl->private_free = usb_mixer_selector_elem_free;
1757
Daniel Mack99fc8642010-03-11 21:13:24 +01001758 nameid = uac_selector_unit_iSelector(desc);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001759 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (len)
1761 ;
1762 else if (nameid)
1763 snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1764 else {
1765 len = get_term_name(state, &state->oterm,
1766 kctl->id.name, sizeof(kctl->id.name), 0);
1767 if (! len)
1768 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
1769
1770 if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02001771 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02001773 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
1775
1776 snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
Daniel Mack99fc8642010-03-11 21:13:24 +01001777 cval->id, kctl->id.name, desc->bNrInPins);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001778 if ((err = add_control_to_empty(state, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return err;
1780
1781 return 0;
1782}
1783
1784
1785/*
1786 * parse an audio unit recursively
1787 */
1788
Takashi Iwai86e07d32005-11-17 15:08:02 +01001789static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790{
1791 unsigned char *p1;
1792
1793 if (test_and_set_bit(unitid, state->unitbitmap))
1794 return 0; /* the unit already visited */
1795
1796 p1 = find_audio_control_unit(state, unitid);
1797 if (!p1) {
1798 snd_printk(KERN_ERR "usbaudio: unit %d not found!\n", unitid);
1799 return -EINVAL;
1800 }
1801
1802 switch (p1[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01001803 case UAC_INPUT_TERMINAL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return 0; /* NOP */
Daniel Mackde48c7b2010-02-22 23:49:13 +01001805 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 return parse_audio_mixer_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001807 case UAC_SELECTOR_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return parse_audio_selector_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001809 case UAC_FEATURE_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return parse_audio_feature_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001811 case UAC_PROCESSING_UNIT_V1:
Daniel Mack23caaf12010-03-11 21:13:25 +01001812 /* UAC2_EFFECT_UNIT has the same value */
1813 if (state->mixer->protocol == UAC_VERSION_1)
1814 return parse_audio_processing_unit(state, unitid, p1);
1815 else
1816 return 0; /* FIXME - effect units not implemented yet */
Daniel Mackde48c7b2010-02-22 23:49:13 +01001817 case UAC_EXTENSION_UNIT_V1:
Daniel Mack23caaf12010-03-11 21:13:25 +01001818 /* UAC2_PROCESSING_UNIT_V2 has the same value */
1819 if (state->mixer->protocol == UAC_VERSION_1)
1820 return parse_audio_extension_unit(state, unitid, p1);
1821 else /* UAC_VERSION_2 */
1822 return parse_audio_processing_unit(state, unitid, p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 default:
1824 snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
1825 return -EINVAL;
1826 }
1827}
1828
Clemens Ladisch84957a82005-04-29 16:23:13 +02001829static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
1830{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001831 kfree(mixer->id_elems);
1832 if (mixer->urb) {
1833 kfree(mixer->urb->transfer_buffer);
1834 usb_free_urb(mixer->urb);
1835 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01001836 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02001837 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001838 kfree(mixer);
1839}
1840
Takashi Iwai86e07d32005-11-17 15:08:02 +01001841static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02001842{
1843 struct usb_mixer_interface *mixer = device->device_data;
1844 snd_usb_mixer_free(mixer);
1845 return 0;
1846}
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848/*
1849 * create mixer controls
1850 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01001851 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02001853static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001855 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 int err;
1857 const struct usbmix_ctl_map *map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001858 struct usb_host_interface *hostif;
Daniel Mack23caaf12010-03-11 21:13:25 +01001859 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Clemens Ladisch84957a82005-04-29 16:23:13 +02001861 hostif = &usb_ifnum_to_if(mixer->chip->dev, mixer->ctrlif)->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02001863 state.chip = mixer->chip;
1864 state.mixer = mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 state.buffer = hostif->extra;
1866 state.buflen = hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001869 for (map = usbmix_ctl_maps; map->id; map++) {
1870 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02001872 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001873 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 break;
1875 }
1876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Daniel Mack23caaf12010-03-11 21:13:25 +01001878 p = NULL;
1879 while ((p = snd_usb_find_csint_desc(hostif->extra, hostif->extralen, p, UAC_OUTPUT_TERMINAL)) != NULL) {
1880 if (mixer->protocol == UAC_VERSION_1) {
1881 struct uac_output_terminal_descriptor_v1 *desc = p;
1882
1883 if (desc->bLength < sizeof(*desc))
1884 continue; /* invalid descriptor? */
1885 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1886 state.oterm.id = desc->bTerminalID;
1887 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1888 state.oterm.name = desc->iTerminal;
1889 err = parse_audio_unit(&state, desc->bSourceID);
1890 if (err < 0)
1891 return err;
1892 } else { /* UAC_VERSION_2 */
1893 struct uac2_output_terminal_descriptor *desc = p;
1894
1895 if (desc->bLength < sizeof(*desc))
1896 continue; /* invalid descriptor? */
1897 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1898 state.oterm.id = desc->bTerminalID;
1899 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1900 state.oterm.name = desc->iTerminal;
1901 err = parse_audio_unit(&state, desc->bSourceID);
1902 if (err < 0)
1903 return err;
1904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return 0;
1908}
Clemens Ladisch84957a82005-04-29 16:23:13 +02001909
Daniel Mack7b1eda22010-03-11 21:13:22 +01001910void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001911{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001912 struct usb_mixer_elem_info *info;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001913
1914 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
1915 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1916 info->elem_id);
1917}
1918
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01001919static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
1920 int unitid,
1921 struct usb_mixer_elem_info *cval)
1922{
1923 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
1924 "S8", "U8", "S16", "U16"};
1925 snd_iprintf(buffer, " Unit: %i\n", unitid);
1926 if (cval->elem_id)
1927 snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
1928 cval->elem_id->name, cval->elem_id->index);
1929 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
1930 "channels=%i, type=\"%s\"\n", cval->id,
1931 cval->control, cval->cmask, cval->channels,
1932 val_types[cval->val_type]);
1933 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
1934 cval->min, cval->max, cval->dBmin, cval->dBmax);
1935}
1936
1937static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
1938 struct snd_info_buffer *buffer)
1939{
1940 struct snd_usb_audio *chip = entry->private_data;
1941 struct usb_mixer_interface *mixer;
1942 struct usb_mixer_elem_info *cval;
1943 int unitid;
1944
1945 list_for_each_entry(mixer, &chip->mixer_list, list) {
1946 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01001947 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
1948 chip->usb_id, mixer->ctrlif,
1949 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01001950 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
1951 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
1952 for (cval = mixer->id_elems[unitid]; cval;
1953 cval = cval->next_id_elem)
1954 snd_usb_mixer_dump_cval(buffer, unitid, cval);
1955 }
1956 }
1957}
1958
Daniel Macke213e9c2010-05-11 18:13:50 +02001959static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
1960 int attribute, int value, int index)
1961{
1962 struct usb_mixer_elem_info *info;
1963 __u8 unitid = (index >> 8) & 0xff;
1964 __u8 control = (value >> 8) & 0xff;
1965 __u8 channel = value & 0xff;
1966
1967 if (channel >= MAX_CHANNELS) {
1968 snd_printk(KERN_DEBUG "%s(): bogus channel number %d\n",
1969 __func__, channel);
1970 return;
1971 }
1972
1973 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem) {
1974 if (info->control != control)
1975 continue;
1976
1977 switch (attribute) {
1978 case UAC2_CS_CUR:
1979 /* invalidate cache, so the value is read from the device */
1980 if (channel)
1981 info->cached &= ~(1 << channel);
1982 else /* master channel */
1983 info->cached = 0;
1984
1985 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1986 info->elem_id);
1987 break;
1988
1989 case UAC2_CS_RANGE:
1990 /* TODO */
1991 break;
1992
1993 case UAC2_CS_MEM:
1994 /* TODO */
1995 break;
1996
1997 default:
1998 snd_printk(KERN_DEBUG "unknown attribute %d in interrupt\n",
1999 attribute);
2000 break;
2001 } /* switch */
2002 }
2003}
2004
2005static void snd_usb_mixer_interrupt(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002006{
2007 struct usb_mixer_interface *mixer = urb->context;
Daniel Macke213e9c2010-05-11 18:13:50 +02002008 int len = urb->actual_length;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002009
Daniel Macke213e9c2010-05-11 18:13:50 +02002010 if (urb->status != 0)
2011 goto requeue;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002012
Daniel Macke213e9c2010-05-11 18:13:50 +02002013 if (mixer->protocol == UAC_VERSION_1) {
2014 struct uac1_status_word *status;
2015
2016 for (status = urb->transfer_buffer;
2017 len >= sizeof(*status);
2018 len -= sizeof(*status), status++) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002019 snd_printd(KERN_DEBUG "status interrupt: %02x %02x\n",
Daniel Macke213e9c2010-05-11 18:13:50 +02002020 status->bStatusType,
2021 status->bOriginator);
2022
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002023 /* ignore any notifications not from the control interface */
Daniel Macke213e9c2010-05-11 18:13:50 +02002024 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2025 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002026 continue;
Daniel Macke213e9c2010-05-11 18:13:50 +02002027
2028 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2029 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
Clemens Ladischb259b102005-04-29 16:29:28 +02002030 else
Daniel Macke213e9c2010-05-11 18:13:50 +02002031 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2032 }
2033 } else { /* UAC_VERSION_2 */
2034 struct uac2_interrupt_data_msg *msg;
2035
2036 for (msg = urb->transfer_buffer;
2037 len >= sizeof(*msg);
2038 len -= sizeof(*msg), msg++) {
2039 /* drop vendor specific and endpoint requests */
2040 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2041 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2042 continue;
2043
2044 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2045 le16_to_cpu(msg->wValue),
2046 le16_to_cpu(msg->wIndex));
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002047 }
2048 }
Daniel Macke213e9c2010-05-11 18:13:50 +02002049
2050requeue:
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002051 if (urb->status != -ENOENT && urb->status != -ECONNRESET) {
2052 urb->dev = mixer->chip->dev;
2053 usb_submit_urb(urb, GFP_ATOMIC);
2054 }
2055}
2056
2057/* create the handler for the optional status interrupt endpoint */
2058static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2059{
2060 struct usb_host_interface *hostif;
2061 struct usb_endpoint_descriptor *ep;
2062 void *transfer_buffer;
2063 int buffer_length;
2064 unsigned int epnum;
2065
2066 hostif = &usb_ifnum_to_if(mixer->chip->dev, mixer->ctrlif)->altsetting[0];
2067 /* we need one interrupt input endpoint */
2068 if (get_iface_desc(hostif)->bNumEndpoints < 1)
2069 return 0;
2070 ep = get_endpoint(hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01002071 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002072 return 0;
2073
Julia Lawall42a6e662008-12-29 11:23:02 +01002074 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002075 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2076 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2077 if (!transfer_buffer)
2078 return -ENOMEM;
2079 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2080 if (!mixer->urb) {
2081 kfree(transfer_buffer);
2082 return -ENOMEM;
2083 }
2084 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2085 usb_rcvintpipe(mixer->chip->dev, epnum),
2086 transfer_buffer, buffer_length,
Daniel Macke213e9c2010-05-11 18:13:50 +02002087 snd_usb_mixer_interrupt, mixer, ep->bInterval);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002088 usb_submit_urb(mixer->urb, GFP_KERNEL);
2089 return 0;
2090}
2091
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002092int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2093 int ignore_error)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002094{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002095 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002096 .dev_free = snd_usb_mixer_dev_free
2097 };
2098 struct usb_mixer_interface *mixer;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002099 struct snd_info_entry *entry;
Daniel Mack7b8a0432010-02-22 23:49:12 +01002100 struct usb_host_interface *host_iface;
Daniel Mack23caaf12010-03-11 21:13:25 +01002101 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002102
2103 strcpy(chip->card->mixername, "USB Mixer");
2104
Takashi Iwai561b2202005-09-09 14:22:34 +02002105 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002106 if (!mixer)
2107 return -ENOMEM;
2108 mixer->chip = chip;
2109 mixer->ctrlif = ctrlif;
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002110 mixer->ignore_ctl_error = ignore_error;
Jaroslav Kysela291186e2010-02-16 11:55:18 +01002111 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2112 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002113 if (!mixer->id_elems) {
2114 kfree(mixer);
2115 return -ENOMEM;
2116 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002117
Daniel Mack7b8a0432010-02-22 23:49:12 +01002118 host_iface = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
Jaroslav Kyselaca4c2ad2010-04-16 10:32:54 +02002119 mixer->protocol = get_iface_desc(host_iface)->bInterfaceProtocol;
Daniel Mack7b8a0432010-02-22 23:49:12 +01002120
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002121 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002122 (err = snd_usb_mixer_status_create(mixer)) < 0)
2123 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002124
Daniel Mack7b1eda22010-03-11 21:13:22 +01002125 snd_usb_mixer_apply_create_quirk(mixer);
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02002126
Clemens Ladisch84957a82005-04-29 16:23:13 +02002127 err = snd_device_new(chip->card, SNDRV_DEV_LOWLEVEL, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002128 if (err < 0)
2129 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002130
2131 if (list_empty(&chip->mixer_list) &&
2132 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2133 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2134
Clemens Ladisch84957a82005-04-29 16:23:13 +02002135 list_add(&mixer->list, &chip->mixer_list);
2136 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002137
2138_error:
2139 snd_usb_mixer_free(mixer);
2140 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002141}
2142
2143void snd_usb_mixer_disconnect(struct list_head *p)
2144{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002145 struct usb_mixer_interface *mixer;
Daniel Mack7b1eda22010-03-11 21:13:22 +01002146
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002147 mixer = list_entry(p, struct usb_mixer_interface, list);
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002148 usb_kill_urb(mixer->urb);
2149 usb_kill_urb(mixer->rc_urb);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002150}