blob: a060d005e20921089309569a9e8ebb9c9115b455 [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
168 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100169static void *find_audio_control_unit(struct mixer_build *state, unsigned char unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Daniel Mack67e1daa2010-05-31 13:35:43 +0200171 /* we just parse the header */
172 struct uac_feature_unit_descriptor *hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Daniel Mack67e1daa2010-05-31 13:35:43 +0200174 while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
175 USB_DT_CS_INTERFACE)) != NULL) {
176 if (hdr->bLength >= 4 &&
177 hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
178 hdr->bDescriptorSubtype <= UAC2_SAMPLE_RATE_CONVERTER &&
179 hdr->bUnitID == unit)
180 return hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Daniel Mack67e1daa2010-05-31 13:35:43 +0200182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return NULL;
184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/*
187 * copy a string with the given id
188 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100189static int snd_usb_copy_string_desc(struct mixer_build *state, int index, char *buf, int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
192 buf[len] = 0;
193 return len;
194}
195
196/*
197 * convert from the byte/word on usb descriptor to the zero-based integer
198 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100199static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 switch (cval->val_type) {
202 case USB_MIXER_BOOLEAN:
203 return !!val;
204 case USB_MIXER_INV_BOOLEAN:
205 return !val;
206 case USB_MIXER_U8:
207 val &= 0xff;
208 break;
209 case USB_MIXER_S8:
210 val &= 0xff;
211 if (val >= 0x80)
212 val -= 0x100;
213 break;
214 case USB_MIXER_U16:
215 val &= 0xffff;
216 break;
217 case USB_MIXER_S16:
218 val &= 0xffff;
219 if (val >= 0x8000)
220 val -= 0x10000;
221 break;
222 }
223 return val;
224}
225
226/*
227 * convert from the zero-based int to the byte/word for usb descriptor
228 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100229static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 switch (cval->val_type) {
232 case USB_MIXER_BOOLEAN:
233 return !!val;
234 case USB_MIXER_INV_BOOLEAN:
235 return !val;
236 case USB_MIXER_S8:
237 case USB_MIXER_U8:
238 return val & 0xff;
239 case USB_MIXER_S16:
240 case USB_MIXER_U16:
241 return val & 0xffff;
242 }
243 return 0; /* not reached */
244}
245
Takashi Iwai86e07d32005-11-17 15:08:02 +0100246static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 if (! cval->res)
249 cval->res = 1;
250 if (val < cval->min)
251 return 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200252 else if (val >= cval->max)
253 return (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 else
255 return (val - cval->min) / cval->res;
256}
257
Takashi Iwai86e07d32005-11-17 15:08:02 +0100258static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 if (val < 0)
261 return cval->min;
262 if (! cval->res)
263 cval->res = 1;
264 val *= cval->res;
265 val += cval->min;
266 if (val > cval->max)
267 return cval->max;
268 return val;
269}
270
271
272/*
273 * retrieve a mixer value
274 */
275
Daniel Mack23caaf12010-03-11 21:13:25 +0100276static 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 -0700277{
278 unsigned char buf[2];
279 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
280 int timeout = 10;
281
282 while (timeout-- > 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200283 if (snd_usb_ctl_msg(cval->mixer->chip->dev,
284 usb_rcvctrlpipe(cval->mixer->chip->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 request,
286 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Clemens Ladisch84957a82005-04-29 16:23:13 +0200287 validx, cval->mixer->ctrlif | (cval->id << 8),
Thomas Reitmayra04395e2007-05-15 11:47:48 +0200288 buf, val_len, 100) >= val_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
290 return 0;
291 }
292 }
Clemens Ladisch84957a82005-04-29 16:23:13 +0200293 snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
294 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return -EINVAL;
296}
297
Daniel Mack23caaf12010-03-11 21:13:25 +0100298static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
299{
300 unsigned char buf[14]; /* enough space for one range of 4 bytes */
301 unsigned char *val;
302 int ret;
303 __u8 bRequest;
304
305 bRequest = (request == UAC_GET_CUR) ?
306 UAC2_CS_CUR : UAC2_CS_RANGE;
307
308 ret = snd_usb_ctl_msg(cval->mixer->chip->dev,
309 usb_rcvctrlpipe(cval->mixer->chip->dev, 0),
310 bRequest,
311 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
312 validx, cval->mixer->ctrlif | (cval->id << 8),
313 buf, sizeof(buf), 1000);
314
315 if (ret < 0) {
Daniel Mack09414202010-05-31 13:35:44 +0200316 snd_printk(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
317 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100318 return ret;
319 }
320
321 switch (request) {
322 case UAC_GET_CUR:
323 val = buf;
324 break;
325 case UAC_GET_MIN:
326 val = buf + sizeof(__u16);
327 break;
328 case UAC_GET_MAX:
329 val = buf + sizeof(__u16) * 2;
330 break;
331 case UAC_GET_RES:
332 val = buf + sizeof(__u16) * 3;
333 break;
334 default:
335 return -EINVAL;
336 }
337
338 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(val, sizeof(__u16)));
339
340 return 0;
341}
342
343static int get_ctl_value(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
344{
345 return (cval->mixer->protocol == UAC_VERSION_1) ?
346 get_ctl_value_v1(cval, request, validx, value_ret) :
347 get_ctl_value_v2(cval, request, validx, value_ret);
348}
349
Takashi Iwai86e07d32005-11-17 15:08:02 +0100350static int get_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100352 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355/* channel = 0: master, 1 = first channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100356static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
357 int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100359 return get_ctl_value(cval, UAC_GET_CUR, (cval->control << 8) | channel, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
Takashi Iwai641b4872009-01-15 17:05:24 +0100362static int get_cur_mix_value(struct usb_mixer_elem_info *cval,
363 int channel, int index, int *value)
364{
365 int err;
366
367 if (cval->cached & (1 << channel)) {
368 *value = cval->cache_val[index];
369 return 0;
370 }
371 err = get_cur_mix_raw(cval, channel, value);
372 if (err < 0) {
373 if (!cval->mixer->ignore_ctl_error)
Daniel Mack23caaf12010-03-11 21:13:25 +0100374 snd_printd(KERN_ERR "cannot get current value for control %d ch %d: err = %d\n",
Takashi Iwai641b4872009-01-15 17:05:24 +0100375 cval->control, channel, err);
376 return err;
377 }
378 cval->cached |= 1 << channel;
379 cval->cache_val[index] = *value;
380 return 0;
381}
382
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/*
385 * set a mixer value
386 */
387
Daniel Mack7b1eda22010-03-11 21:13:22 +0100388int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
389 int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
391 unsigned char buf[2];
Daniel Mack23caaf12010-03-11 21:13:25 +0100392 int val_len, timeout = 10;
393
394 if (cval->mixer->protocol == UAC_VERSION_1) {
395 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
396 } else { /* UAC_VERSION_2 */
397 /* audio class v2 controls are always 2 bytes in size */
398 val_len = sizeof(__u16);
399
400 /* FIXME */
401 if (request != UAC_SET_CUR) {
402 snd_printdd(KERN_WARNING "RANGE setting not yet supported\n");
403 return -EINVAL;
404 }
405
406 request = UAC2_CS_CUR;
407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 value_set = convert_bytes_value(cval, value_set);
410 buf[0] = value_set & 0xff;
411 buf[1] = (value_set >> 8) & 0xff;
Viral Mehtacf3f9132009-04-03 13:08:14 +0530412 while (timeout-- > 0)
Clemens Ladisch84957a82005-04-29 16:23:13 +0200413 if (snd_usb_ctl_msg(cval->mixer->chip->dev,
414 usb_sndctrlpipe(cval->mixer->chip->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 request,
416 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
Clemens Ladisch84957a82005-04-29 16:23:13 +0200417 validx, cval->mixer->ctrlif | (cval->id << 8),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 buf, val_len, 100) >= 0)
419 return 0;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200420 snd_printdd(KERN_ERR "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
421 request, validx, cval->mixer->ctrlif | (cval->id << 8), cval->val_type, buf[0], buf[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return -EINVAL;
423}
424
Takashi Iwai86e07d32005-11-17 15:08:02 +0100425static int set_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Daniel Mack7b1eda22010-03-11 21:13:22 +0100427 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Takashi Iwai641b4872009-01-15 17:05:24 +0100430static int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
431 int index, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Takashi Iwai641b4872009-01-15 17:05:24 +0100433 int err;
Daniel Macka6a33252010-05-31 13:35:37 +0200434 unsigned int read_only = (channel == 0) ?
435 cval->master_readonly :
436 cval->ch_readonly & (1 << (channel - 1));
437
438 if (read_only) {
439 snd_printdd(KERN_INFO "%s(): channel %d of control %d is read_only\n",
440 __func__, channel, cval->control);
441 return 0;
442 }
443
Daniel Mack7b1eda22010-03-11 21:13:22 +0100444 err = snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, (cval->control << 8) | channel,
Takashi Iwai641b4872009-01-15 17:05:24 +0100445 value);
446 if (err < 0)
447 return err;
448 cval->cached |= 1 << channel;
449 cval->cache_val[index] = value;
450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200453/*
454 * TLV callback for mixer volume controls
455 */
456static int mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
457 unsigned int size, unsigned int __user *_tlv)
458{
459 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Takashi Iwaib8e1c732009-06-16 14:04:37 +0200460 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200461
462 if (size < sizeof(scale))
463 return -ENOMEM;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100464 scale[2] = cval->dBmin;
465 scale[3] = cval->dBmax;
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200466 if (copy_to_user(_tlv, scale, sizeof(scale)))
467 return -EFAULT;
468 return 0;
469}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471/*
472 * parser routines begin here...
473 */
474
Takashi Iwai86e07d32005-11-17 15:08:02 +0100475static int parse_audio_unit(struct mixer_build *state, int unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477
478/*
479 * check if the input/output channel routing is enabled on the given bitmap.
480 * used for mixer unit parser
481 */
482static int check_matrix_bitmap(unsigned char *bmap, int ich, int och, int num_outs)
483{
484 int idx = ich * num_outs + och;
485 return bmap[idx >> 3] & (0x80 >> (idx & 7));
486}
487
488
489/*
490 * add an alsa control element
491 * search and increment the index until an empty slot is found.
492 *
493 * if failed, give up and free the control instance.
494 */
495
Takashi Iwai86e07d32005-11-17 15:08:02 +0100496static int add_control_to_empty(struct mixer_build *state, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100498 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200500
501 while (snd_ctl_find_id(state->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 kctl->id.index++;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200503 if ((err = snd_ctl_add(state->chip->card, kctl)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 snd_printd(KERN_ERR "cannot add control (err = %d)\n", err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200505 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200507 cval->elem_id = &kctl->id;
508 cval->next_id_elem = state->mixer->id_elems[cval->id];
509 state->mixer->id_elems[cval->id] = cval;
510 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
513
514/*
515 * get a terminal name string
516 */
517
518static struct iterm_name_combo {
519 int type;
520 char *name;
521} iterm_names[] = {
522 { 0x0300, "Output" },
523 { 0x0301, "Speaker" },
524 { 0x0302, "Headphone" },
525 { 0x0303, "HMD Audio" },
526 { 0x0304, "Desktop Speaker" },
527 { 0x0305, "Room Speaker" },
528 { 0x0306, "Com Speaker" },
529 { 0x0307, "LFE" },
530 { 0x0600, "External In" },
531 { 0x0601, "Analog In" },
532 { 0x0602, "Digital In" },
533 { 0x0603, "Line" },
534 { 0x0604, "Legacy In" },
535 { 0x0605, "IEC958 In" },
536 { 0x0606, "1394 DA Stream" },
537 { 0x0607, "1394 DV Stream" },
538 { 0x0700, "Embedded" },
539 { 0x0701, "Noise Source" },
540 { 0x0702, "Equalization Noise" },
541 { 0x0703, "CD" },
542 { 0x0704, "DAT" },
543 { 0x0705, "DCC" },
544 { 0x0706, "MiniDisk" },
545 { 0x0707, "Analog Tape" },
546 { 0x0708, "Phonograph" },
547 { 0x0709, "VCR Audio" },
548 { 0x070a, "Video Disk Audio" },
549 { 0x070b, "DVD Audio" },
550 { 0x070c, "TV Tuner Audio" },
551 { 0x070d, "Satellite Rec Audio" },
552 { 0x070e, "Cable Tuner Audio" },
553 { 0x070f, "DSS Audio" },
554 { 0x0710, "Radio Receiver" },
555 { 0x0711, "Radio Transmitter" },
556 { 0x0712, "Multi-Track Recorder" },
557 { 0x0713, "Synthesizer" },
558 { 0 },
559};
560
Takashi Iwai86e07d32005-11-17 15:08:02 +0100561static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 unsigned char *name, int maxlen, int term_only)
563{
564 struct iterm_name_combo *names;
565
566 if (iterm->name)
567 return snd_usb_copy_string_desc(state, iterm->name, name, maxlen);
568
569 /* virtual type - not a real terminal */
570 if (iterm->type >> 16) {
571 if (term_only)
572 return 0;
573 switch (iterm->type >> 16) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100574 case UAC_SELECTOR_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 strcpy(name, "Selector"); return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100576 case UAC_PROCESSING_UNIT_V1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 strcpy(name, "Process Unit"); return 12;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100578 case UAC_EXTENSION_UNIT_V1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 strcpy(name, "Ext Unit"); return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100580 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 strcpy(name, "Mixer"); return 5;
582 default:
583 return sprintf(name, "Unit %d", iterm->id);
584 }
585 }
586
587 switch (iterm->type & 0xff00) {
588 case 0x0100:
589 strcpy(name, "PCM"); return 3;
590 case 0x0200:
591 strcpy(name, "Mic"); return 3;
592 case 0x0400:
593 strcpy(name, "Headset"); return 7;
594 case 0x0500:
595 strcpy(name, "Phone"); return 5;
596 }
597
598 for (names = iterm_names; names->type; names++)
599 if (names->type == iterm->type) {
600 strcpy(name, names->name);
601 return strlen(names->name);
602 }
603 return 0;
604}
605
606
607/*
608 * parse the source unit recursively until it reaches to a terminal
609 * or a branched unit.
610 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100611static int check_input_term(struct mixer_build *state, int id, struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Daniel Mack09414202010-05-31 13:35:44 +0200613 int err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100614 void *p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 memset(term, 0, sizeof(*term));
617 while ((p1 = find_audio_control_unit(state, id)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100618 unsigned char *hdr = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100620 switch (hdr[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100621 case UAC_INPUT_TERMINAL:
Daniel Mack23caaf12010-03-11 21:13:25 +0100622 if (state->mixer->protocol == UAC_VERSION_1) {
623 struct uac_input_terminal_descriptor *d = p1;
624 term->type = le16_to_cpu(d->wTerminalType);
625 term->channels = d->bNrChannels;
626 term->chconfig = le16_to_cpu(d->wChannelConfig);
627 term->name = d->iTerminal;
628 } else { /* UAC_VERSION_2 */
629 struct uac2_input_terminal_descriptor *d = p1;
630 term->type = le16_to_cpu(d->wTerminalType);
631 term->channels = d->bNrChannels;
632 term->chconfig = le32_to_cpu(d->bmChannelConfig);
633 term->name = d->iTerminal;
Daniel Mack09414202010-05-31 13:35:44 +0200634
635 /* call recursively to get the clock selectors */
636 err = check_input_term(state, d->bCSourceID, term);
637 if (err < 0)
638 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100641 case UAC_FEATURE_UNIT: {
642 /* the header is the same for v1 and v2 */
643 struct uac_feature_unit_descriptor *d = p1;
Daniel Mack5e688882010-05-08 11:24:56 +0200644 id = d->bSourceID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 break; /* continue to parse */
Daniel Mack23caaf12010-03-11 21:13:25 +0100646 }
647 case UAC_MIXER_UNIT: {
648 struct uac_mixer_unit_descriptor *d = p1;
649 term->type = d->bDescriptorSubtype << 16; /* virtual type */
650 term->channels = uac_mixer_unit_bNrChannels(d);
651 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
652 term->name = uac_mixer_unit_iMixer(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100654 }
Daniel Mack09414202010-05-31 13:35:44 +0200655 case UAC_SELECTOR_UNIT:
656 case UAC2_CLOCK_SELECTOR: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100657 struct uac_selector_unit_descriptor *d = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /* call recursively to retrieve the channel info */
Daniel Mack23caaf12010-03-11 21:13:25 +0100659 if (check_input_term(state, d->baSourceID[0], term) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return -ENODEV;
Daniel Mack23caaf12010-03-11 21:13:25 +0100661 term->type = d->bDescriptorSubtype << 16; /* virtual type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100663 term->name = uac_selector_unit_iSelector(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100665 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100666 case UAC_PROCESSING_UNIT_V1:
Daniel Mack23caaf12010-03-11 21:13:25 +0100667 case UAC_EXTENSION_UNIT_V1: {
668 struct uac_processing_unit_descriptor *d = p1;
669 if (d->bNrInPins) {
670 id = d->baSourceID[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 break; /* continue to parse */
672 }
Daniel Mack23caaf12010-03-11 21:13:25 +0100673 term->type = d->bDescriptorSubtype << 16; /* virtual type */
674 term->channels = uac_processing_unit_bNrChannels(d);
675 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
676 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100678 }
Daniel Mack09414202010-05-31 13:35:44 +0200679 case UAC2_CLOCK_SOURCE: {
680 struct uac_clock_source_descriptor *d = p1;
681 term->type = d->bDescriptorSubtype << 16; /* virtual type */
682 term->id = id;
683 term->name = d->iClockSource;
684 return 0;
685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 default:
687 return -ENODEV;
688 }
689 }
690 return -ENODEV;
691}
692
693
694/*
695 * Feature Unit
696 */
697
698/* feature unit control information */
699struct usb_feature_control_info {
700 const char *name;
701 unsigned int type; /* control type (mute, volume, etc.) */
702};
703
704static struct usb_feature_control_info audio_feature_info[] = {
Daniel Mack2e0281d2010-05-31 13:35:42 +0200705 { "Mute", USB_MIXER_INV_BOOLEAN },
706 { "Volume", USB_MIXER_S16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 { "Tone Control - Bass", USB_MIXER_S8 },
708 { "Tone Control - Mid", USB_MIXER_S8 },
709 { "Tone Control - Treble", USB_MIXER_S8 },
710 { "Graphic Equalizer", USB_MIXER_S8 }, /* FIXME: not implemeted yet */
Daniel Mack2e0281d2010-05-31 13:35:42 +0200711 { "Auto Gain Control", USB_MIXER_BOOLEAN },
712 { "Delay Control", USB_MIXER_U16 },
713 { "Bass Boost", USB_MIXER_BOOLEAN },
714 { "Loudness", USB_MIXER_BOOLEAN },
715 /* UAC2 specific */
716 { "Input Gain Control", USB_MIXER_U16 },
717 { "Input Gain Pad Control", USB_MIXER_BOOLEAN },
718 { "Phase Inverter Control", USB_MIXER_BOOLEAN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719};
720
721
722/* private_free callback */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100723static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Jesper Juhl4d572772005-05-30 17:30:32 +0200725 kfree(kctl->private_data);
726 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
729
730/*
731 * interface to ALSA control for feature/mixer units
732 */
733
734/*
735 * retrieve the minimum and maximum values for the specified control
736 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100737static int get_min_max(struct usb_mixer_elem_info *cval, int default_min)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 /* for failsafe */
740 cval->min = default_min;
741 cval->max = cval->min + 1;
742 cval->res = 1;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100743 cval->dBmin = cval->dBmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 if (cval->val_type == USB_MIXER_BOOLEAN ||
746 cval->val_type == USB_MIXER_INV_BOOLEAN) {
747 cval->initialized = 1;
748 } else {
749 int minchn = 0;
750 if (cval->cmask) {
751 int i;
752 for (i = 0; i < MAX_CHANNELS; i++)
753 if (cval->cmask & (1 << i)) {
754 minchn = i + 1;
755 break;
756 }
757 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100758 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
759 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200760 snd_printd(KERN_ERR "%d:%d: cannot get min/max values for control %d (id %d)\n",
761 cval->id, cval->mixer->ctrlif, cval->control, cval->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return -EINVAL;
763 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100764 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 cval->res = 1;
766 } else {
767 int last_valid_res = cval->res;
768
769 while (cval->res > 1) {
Daniel Mack7b1eda22010-03-11 21:13:22 +0100770 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
771 (cval->control << 8) | minchn, cval->res / 2) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 break;
773 cval->res /= 2;
774 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100775 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 cval->res = last_valid_res;
777 }
778 if (cval->res == 0)
779 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +0200780
781 /* Additional checks for the proper resolution
782 *
783 * Some devices report smaller resolutions than actually
784 * reacting. They don't return errors but simply clip
785 * to the lower aligned value.
786 */
787 if (cval->min + cval->res < cval->max) {
788 int last_valid_res = cval->res;
789 int saved, test, check;
Takashi Iwai641b4872009-01-15 17:05:24 +0100790 get_cur_mix_raw(cval, minchn, &saved);
Takashi Iwai14790f12006-03-28 17:58:28 +0200791 for (;;) {
792 test = saved;
793 if (test < cval->max)
794 test += cval->res;
795 else
796 test -= cval->res;
797 if (test < cval->min || test > cval->max ||
Takashi Iwai641b4872009-01-15 17:05:24 +0100798 set_cur_mix_value(cval, minchn, 0, test) ||
799 get_cur_mix_raw(cval, minchn, &check)) {
Takashi Iwai14790f12006-03-28 17:58:28 +0200800 cval->res = last_valid_res;
801 break;
802 }
803 if (test == check)
804 break;
805 cval->res *= 2;
806 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100807 set_cur_mix_value(cval, minchn, 0, saved);
Takashi Iwai14790f12006-03-28 17:58:28 +0200808 }
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 cval->initialized = 1;
811 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100812
813 /* USB descriptions contain the dB scale in 1/256 dB unit
814 * while ALSA TLV contains in 1/100 dB unit
815 */
816 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
817 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
818 if (cval->dBmin > cval->dBmax) {
819 /* something is wrong; assume it's either from/to 0dB */
820 if (cval->dBmin < 0)
821 cval->dBmax = 0;
822 else if (cval->dBmin > 0)
823 cval->dBmin = 0;
824 if (cval->dBmin > cval->dBmax) {
825 /* totally crap, return an error */
826 return -EINVAL;
827 }
828 }
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return 0;
831}
832
833
834/* get a feature/mixer unit info */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100835static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100837 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 if (cval->val_type == USB_MIXER_BOOLEAN ||
840 cval->val_type == USB_MIXER_INV_BOOLEAN)
841 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
842 else
843 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
844 uinfo->count = cval->channels;
845 if (cval->val_type == USB_MIXER_BOOLEAN ||
846 cval->val_type == USB_MIXER_INV_BOOLEAN) {
847 uinfo->value.integer.min = 0;
848 uinfo->value.integer.max = 1;
849 } else {
850 if (! cval->initialized)
851 get_min_max(cval, 0);
852 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200853 uinfo->value.integer.max =
854 (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856 return 0;
857}
858
859/* get the current value from feature/mixer unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100860static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100862 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 int c, cnt, val, err;
864
Takashi Iwai641b4872009-01-15 17:05:24 +0100865 ucontrol->value.integer.value[0] = cval->min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (cval->cmask) {
867 cnt = 0;
868 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100869 if (!(cval->cmask & (1 << c)))
870 continue;
871 err = get_cur_mix_value(cval, c + 1, cnt, &val);
872 if (err < 0)
873 return cval->mixer->ignore_ctl_error ? 0 : err;
874 val = get_relative_value(cval, val);
875 ucontrol->value.integer.value[cnt] = val;
876 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100878 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 } else {
880 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100881 err = get_cur_mix_value(cval, 0, 0, &val);
882 if (err < 0)
883 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 val = get_relative_value(cval, val);
885 ucontrol->value.integer.value[0] = val;
886 }
887 return 0;
888}
889
890/* put the current value to feature/mixer unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100891static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100893 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 int c, cnt, val, oval, err;
895 int changed = 0;
896
897 if (cval->cmask) {
898 cnt = 0;
899 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100900 if (!(cval->cmask & (1 << c)))
901 continue;
902 err = get_cur_mix_value(cval, c + 1, cnt, &oval);
903 if (err < 0)
904 return cval->mixer->ignore_ctl_error ? 0 : err;
905 val = ucontrol->value.integer.value[cnt];
906 val = get_abs_value(cval, val);
907 if (oval != val) {
908 set_cur_mix_value(cval, c + 1, cnt, val);
909 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100911 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913 } else {
914 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100915 err = get_cur_mix_value(cval, 0, 0, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (err < 0)
Takashi Iwai641b4872009-01-15 17:05:24 +0100917 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 val = ucontrol->value.integer.value[0];
919 val = get_abs_value(cval, val);
920 if (val != oval) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100921 set_cur_mix_value(cval, 0, 0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 changed = 1;
923 }
924 }
925 return changed;
926}
927
Takashi Iwai86e07d32005-11-17 15:08:02 +0100928static struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
930 .name = "", /* will be filled later manually */
931 .info = mixer_ctl_feature_info,
932 .get = mixer_ctl_feature_get,
933 .put = mixer_ctl_feature_put,
934};
935
Daniel Mack23caaf12010-03-11 21:13:25 +0100936/* the read-only variant */
937static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
938 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
939 .name = "", /* will be filled later manually */
940 .info = mixer_ctl_feature_info,
941 .get = mixer_ctl_feature_get,
942 .put = NULL,
943};
944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946/*
947 * build a feature control
948 */
949
Takashi Iwai08d1e632009-10-02 14:06:08 +0200950static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
951{
952 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
953}
954
Daniel Mack99fc8642010-03-11 21:13:24 +0100955static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 unsigned int ctl_mask, int control,
Daniel Mack23caaf12010-03-11 21:13:25 +0100957 struct usb_audio_term *iterm, int unitid,
Daniel Macka6a33252010-05-31 13:35:37 +0200958 int readonly_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Daniel Mack99fc8642010-03-11 21:13:24 +0100960 struct uac_feature_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 unsigned int len = 0;
962 int mapped_name = 0;
Daniel Mack99fc8642010-03-11 21:13:24 +0100963 int nameid = uac_feature_unit_iFeature(desc);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100964 struct snd_kcontrol *kctl;
965 struct usb_mixer_elem_info *cval;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100966 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 control++; /* change from zero-based to 1-based value */
969
Daniel Mack65f25da2010-05-31 13:35:41 +0200970 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 /* FIXME: not supported yet */
972 return;
973 }
974
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100975 map = find_map(state, unitid, control);
976 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 return;
978
Takashi Iwai561b2202005-09-09 14:22:34 +0200979 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (! cval) {
981 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
982 return;
983 }
Clemens Ladisch84957a82005-04-29 16:23:13 +0200984 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 cval->id = unitid;
986 cval->control = control;
987 cval->cmask = ctl_mask;
988 cval->val_type = audio_feature_info[control-1].type;
Daniel Macka6a33252010-05-31 13:35:37 +0200989 if (ctl_mask == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 cval->channels = 1; /* master channel */
Daniel Macka6a33252010-05-31 13:35:37 +0200991 cval->master_readonly = readonly_mask;
992 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 int i, c = 0;
994 for (i = 0; i < 16; i++)
995 if (ctl_mask & (1 << i))
996 c++;
997 cval->channels = c;
Daniel Macka6a33252010-05-31 13:35:37 +0200998 cval->ch_readonly = readonly_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000
1001 /* get min/max values */
1002 get_min_max(cval, 0);
1003
Daniel Macka6a33252010-05-31 13:35:37 +02001004 /* if all channels in the mask are marked read-only, make the control
1005 * read-only. set_cur_mix_value() will check the mask again and won't
1006 * issue write commands to read-only channels. */
1007 if (cval->channels == readonly_mask)
Daniel Mack23caaf12010-03-11 21:13:25 +01001008 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1009 else
1010 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (! kctl) {
1013 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1014 kfree(cval);
1015 return;
1016 }
1017 kctl->private_free = usb_mixer_elem_free;
1018
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001019 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 mapped_name = len != 0;
1021 if (! len && nameid)
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001022 len = snd_usb_copy_string_desc(state, nameid,
1023 kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 switch (control) {
Daniel Mack65f25da2010-05-31 13:35:41 +02001026 case UAC_FU_MUTE:
1027 case UAC_FU_VOLUME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /* determine the control name. the rule is:
1029 * - if a name id is given in descriptor, use it.
1030 * - if the connected input can be determined, then use the name
1031 * of terminal type.
1032 * - if the connected output can be determined, use it.
1033 * - otherwise, anonymous name.
1034 */
1035 if (! len) {
1036 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 1);
1037 if (! len)
1038 len = get_term_name(state, &state->oterm, kctl->id.name, sizeof(kctl->id.name), 1);
1039 if (! len)
1040 len = snprintf(kctl->id.name, sizeof(kctl->id.name),
1041 "Feature %d", unitid);
1042 }
1043 /* determine the stream direction:
1044 * if the connected output is USB stream, then it's likely a
1045 * capture stream. otherwise it should be playback (hopefully :)
1046 */
1047 if (! mapped_name && ! (state->oterm.type >> 16)) {
1048 if ((state->oterm.type & 0xff00) == 0x0100) {
Takashi Iwai08d1e632009-10-02 14:06:08 +02001049 len = append_ctl_name(kctl, " Capture");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 } else {
Takashi Iwai08d1e632009-10-02 14:06:08 +02001051 len = append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053 }
Daniel Mack65f25da2010-05-31 13:35:41 +02001054 append_ctl_name(kctl, control == UAC_FU_MUTE ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001055 " Switch" : " Volume");
Daniel Mack65f25da2010-05-31 13:35:41 +02001056 if (control == UAC_FU_VOLUME) {
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +02001057 kctl->tlv.c = mixer_vol_tlv;
1058 kctl->vd[0].access |=
1059 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1060 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001061 check_mapped_dB(map, cval);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +02001062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 break;
1064
1065 default:
1066 if (! len)
1067 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1068 sizeof(kctl->id.name));
1069 break;
1070 }
1071
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001072 /* volume control quirks */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001073 switch (state->chip->usb_id) {
1074 case USB_ID(0x0471, 0x0101):
1075 case USB_ID(0x0471, 0x0104):
1076 case USB_ID(0x0471, 0x0105):
1077 case USB_ID(0x0672, 0x1041):
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001078 /* quirk for UDA1321/N101.
1079 * note that detection between firmware 2.1.1.7 (N101)
1080 * and later 2.1.1.21 is not very clear from datasheets.
1081 * I hope that the min value is -15360 for newer firmware --jk
1082 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001083 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
1084 cval->min == -15616) {
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001085 snd_printk(KERN_INFO
1086 "set volume quirk for UDA1321/N101 chip\n");
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001087 cval->max = -256;
1088 }
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001089 break;
1090
1091 case USB_ID(0x046d, 0x09a4):
1092 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1093 snd_printk(KERN_INFO
1094 "set volume quirk for QuickCam E3500\n");
1095 cval->min = 6080;
1096 cval->max = 8768;
1097 cval->res = 192;
1098 }
1099 break;
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102
1103 snd_printdd(KERN_INFO "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1104 cval->id, kctl->id.name, cval->channels, cval->min, cval->max, cval->res);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001105 add_control_to_empty(state, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
1108
1109
1110/*
1111 * parse a feature unit
1112 *
1113 * most of controlls are defined here.
1114 */
Daniel Mack28e1b772010-02-22 23:49:09 +01001115static int parse_audio_feature_unit(struct mixer_build *state, int unitid, void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
1117 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001118 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 unsigned int master_bits, first_ch_bits;
1120 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001121 struct uac_feature_unit_descriptor *hdr = _ftr;
1122 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Daniel Mack23caaf12010-03-11 21:13:25 +01001124 if (state->mixer->protocol == UAC_VERSION_1) {
1125 csize = hdr->bControlSize;
1126 channels = (hdr->bLength - 7) / csize - 1;
1127 bmaControls = hdr->bmaControls;
1128 } else {
1129 struct uac2_feature_unit_descriptor *ftr = _ftr;
1130 csize = 4;
Daniel Macke8d0fee2010-05-27 20:15:14 +02001131 channels = (hdr->bLength - 6) / 4 - 1;
Daniel Mack23caaf12010-03-11 21:13:25 +01001132 bmaControls = ftr->bmaControls;
1133 }
1134
1135 if (hdr->bLength < 7 || !csize || hdr->bLength < 7 + csize) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01001136 snd_printk(KERN_ERR "usbaudio: unit %u: invalid UAC_FEATURE_UNIT descriptor\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return -EINVAL;
1138 }
1139
1140 /* parse the source unit */
Daniel Mack23caaf12010-03-11 21:13:25 +01001141 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 return err;
1143
1144 /* determine the input source type and name */
Daniel Mack23caaf12010-03-11 21:13:25 +01001145 if (check_input_term(state, hdr->bSourceID, &iterm) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return -EINVAL;
1147
Daniel Mack23caaf12010-03-11 21:13:25 +01001148 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001149 /* master configuration quirks */
1150 switch (state->chip->usb_id) {
1151 case USB_ID(0x08bb, 0x2702):
1152 snd_printk(KERN_INFO
1153 "usbmixer: master volume quirk for PCM2702 chip\n");
1154 /* disable non-functional volume control */
Daniel Mack65f25da2010-05-31 13:35:41 +02001155 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001156 break;
1157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (channels > 0)
Daniel Mack23caaf12010-03-11 21:13:25 +01001159 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 else
1161 first_ch_bits = 0;
Daniel Mack23caaf12010-03-11 21:13:25 +01001162
1163 if (state->mixer->protocol == UAC_VERSION_1) {
1164 /* check all control types */
1165 for (i = 0; i < 10; i++) {
1166 unsigned int ch_bits = 0;
1167 for (j = 0; j < channels; j++) {
1168 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
1169 if (mask & (1 << i))
1170 ch_bits |= (1 << j);
1171 }
1172 /* audio class v1 controls are never read-only */
1173 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
1174 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, 0);
1175 if (master_bits & (1 << i))
1176 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001178 } else { /* UAC_VERSION_2 */
1179 for (i = 0; i < 30/2; i++) {
1180 /* From the USB Audio spec v2.0:
1181 bmaControls() is a (ch+1)-element array of 4-byte bitmaps,
1182 each containing a set of bit pairs. If a Control is present,
1183 it must be Host readable. If a certain Control is not
1184 present then the bit pair must be set to 0b00.
1185 If a Control is present but read-only, the bit pair must be
1186 set to 0b01. If a Control is also Host programmable, the bit
1187 pair must be set to 0b11. The value 0b10 is not allowed. */
1188 unsigned int ch_bits = 0;
1189 unsigned int ch_read_only = 0;
1190
1191 for (j = 0; j < channels; j++) {
1192 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001193 if (uac2_control_is_readable(mask, i)) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001194 ch_bits |= (1 << j);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001195 if (!uac2_control_is_writeable(mask, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001196 ch_read_only |= (1 << j);
1197 }
1198 }
1199
Daniel Macka6a33252010-05-31 13:35:37 +02001200 /* NOTE: build_feature_ctl() will mark the control read-only if all channels
1201 * are marked read-only in the descriptors. Otherwise, the control will be
1202 * reported as writeable, but the driver will not actually issue a write
1203 * command for read-only channels */
Daniel Mack23caaf12010-03-11 21:13:25 +01001204 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
Daniel Macka6a33252010-05-31 13:35:37 +02001205 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, ch_read_only);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001206 if (uac2_control_is_readable(master_bits, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001207 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001208 !uac2_control_is_writeable(master_bits, i));
Daniel Mack23caaf12010-03-11 21:13:25 +01001209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211
1212 return 0;
1213}
1214
1215
1216/*
1217 * Mixer Unit
1218 */
1219
1220/*
1221 * build a mixer unit control
1222 *
1223 * the callbacks are identical with feature unit.
1224 * input channel number (zero based) is given in control field instead.
1225 */
1226
Daniel Mack99fc8642010-03-11 21:13:24 +01001227static void build_mixer_unit_ctl(struct mixer_build *state,
1228 struct uac_mixer_unit_descriptor *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001230 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001232 struct usb_mixer_elem_info *cval;
Daniel Mack99fc8642010-03-11 21:13:24 +01001233 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001235 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001236 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001238 map = find_map(state, unitid, 0);
1239 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return;
1241
Takashi Iwai561b2202005-09-09 14:22:34 +02001242 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (! cval)
1244 return;
1245
Clemens Ladisch84957a82005-04-29 16:23:13 +02001246 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 cval->id = unitid;
1248 cval->control = in_ch + 1; /* based on 1 */
1249 cval->val_type = USB_MIXER_S16;
1250 for (i = 0; i < num_outs; i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001251 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol), in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 cval->cmask |= (1 << i);
1253 cval->channels++;
1254 }
1255 }
1256
1257 /* get min/max values */
1258 get_min_max(cval, 0);
1259
1260 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1261 if (! kctl) {
1262 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1263 kfree(cval);
1264 return;
1265 }
1266 kctl->private_free = usb_mixer_elem_free;
1267
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001268 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (! len)
1270 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0);
1271 if (! len)
1272 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02001273 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n",
1276 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001277 add_control_to_empty(state, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
1280
1281/*
1282 * parse a mixer unit
1283 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001284static int parse_audio_mixer_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
Daniel Mack99fc8642010-03-11 21:13:24 +01001286 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001287 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 int input_pins, num_ins, num_outs;
1289 int pin, ich, err;
1290
Daniel Mack99fc8642010-03-11 21:13:24 +01001291 if (desc->bLength < 11 || ! (input_pins = desc->bNrInPins) || ! (num_outs = uac_mixer_unit_bNrChannels(desc))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 snd_printk(KERN_ERR "invalid MIXER UNIT descriptor %d\n", unitid);
1293 return -EINVAL;
1294 }
1295 /* no bmControls field (e.g. Maya44) -> ignore */
Daniel Mack99fc8642010-03-11 21:13:24 +01001296 if (desc->bLength <= 10 + input_pins) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 snd_printdd(KERN_INFO "MU %d has no bmControls field\n", unitid);
1298 return 0;
1299 }
1300
1301 num_ins = 0;
1302 ich = 0;
1303 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001304 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (err < 0)
1306 return err;
Daniel Mack99fc8642010-03-11 21:13:24 +01001307 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 if (err < 0)
1309 return err;
1310 num_ins += iterm.channels;
1311 for (; ich < num_ins; ++ich) {
1312 int och, ich_has_controls = 0;
1313
1314 for (och = 0; och < num_outs; ++och) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001315 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 ich, och, num_outs)) {
1317 ich_has_controls = 1;
1318 break;
1319 }
1320 }
1321 if (ich_has_controls)
1322 build_mixer_unit_ctl(state, desc, pin, ich,
1323 unitid, &iterm);
1324 }
1325 }
1326 return 0;
1327}
1328
1329
1330/*
1331 * Processing Unit / Extension Unit
1332 */
1333
1334/* get callback for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001335static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001337 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 int err, val;
1339
1340 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001341 if (err < 0 && cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 ucontrol->value.integer.value[0] = cval->min;
1343 return 0;
1344 }
1345 if (err < 0)
1346 return err;
1347 val = get_relative_value(cval, val);
1348 ucontrol->value.integer.value[0] = val;
1349 return 0;
1350}
1351
1352/* put callback for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001353static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001355 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 int val, oval, err;
1357
1358 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1359 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001360 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return 0;
1362 return err;
1363 }
1364 val = ucontrol->value.integer.value[0];
1365 val = get_abs_value(cval, val);
1366 if (val != oval) {
1367 set_cur_ctl_value(cval, cval->control << 8, val);
1368 return 1;
1369 }
1370 return 0;
1371}
1372
1373/* alsa control interface for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001374static struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1376 .name = "", /* will be filled later */
1377 .info = mixer_ctl_feature_info,
1378 .get = mixer_ctl_procunit_get,
1379 .put = mixer_ctl_procunit_put,
1380};
1381
1382
1383/*
1384 * predefined data for processing units
1385 */
1386struct procunit_value_info {
1387 int control;
1388 char *suffix;
1389 int val_type;
1390 int min_value;
1391};
1392
1393struct procunit_info {
1394 int type;
1395 char *name;
1396 struct procunit_value_info *values;
1397};
1398
1399static struct procunit_value_info updown_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001400 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1401 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 { 0 }
1403};
1404static struct procunit_value_info prologic_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001405 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1406 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 { 0 }
1408};
1409static struct procunit_value_info threed_enh_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001410 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1411 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 { 0 }
1413};
1414static struct procunit_value_info reverb_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001415 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1416 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1417 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1418 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 { 0 }
1420};
1421static struct procunit_value_info chorus_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001422 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1423 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1424 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1425 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 { 0 }
1427};
1428static struct procunit_value_info dcr_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001429 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1430 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1431 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1432 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1433 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1434 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 { 0 }
1436};
1437
1438static struct procunit_info procunits[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001439 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1440 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1441 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1442 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1443 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1444 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 { 0 },
1446};
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001447/*
1448 * predefined data for extension units
1449 */
1450static struct procunit_value_info clock_rate_xu_info[] = {
Daniel Macke213e9c2010-05-11 18:13:50 +02001451 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1452 { 0 }
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001453};
1454static struct procunit_value_info clock_source_xu_info[] = {
1455 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1456 { 0 }
1457};
1458static struct procunit_value_info spdif_format_xu_info[] = {
1459 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1460 { 0 }
1461};
1462static struct procunit_value_info soft_limit_xu_info[] = {
1463 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1464 { 0 }
1465};
1466static struct procunit_info extunits[] = {
1467 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1468 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1469 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1470 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1471 { 0 }
1472};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473/*
1474 * build a processing/extension unit
1475 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001476static 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 -07001477{
Daniel Mack99fc8642010-03-11 21:13:24 +01001478 struct uac_processing_unit_descriptor *desc = raw_desc;
1479 int num_ins = desc->bNrInPins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001480 struct usb_mixer_elem_info *cval;
1481 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 int i, err, nameid, type, len;
1483 struct procunit_info *info;
1484 struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001485 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 static struct procunit_value_info default_value_info[] = {
1487 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1488 { 0 }
1489 };
1490 static struct procunit_info default_info = {
1491 0, NULL, default_value_info
1492 };
1493
Daniel Mack23caaf12010-03-11 21:13:25 +01001494 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1495 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 snd_printk(KERN_ERR "invalid %s descriptor (id %d)\n", name, unitid);
1497 return -EINVAL;
1498 }
1499
1500 for (i = 0; i < num_ins; i++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001501 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 return err;
1503 }
1504
Daniel Mack99fc8642010-03-11 21:13:24 +01001505 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 for (info = list; info && info->type; info++)
1507 if (info->type == type)
1508 break;
1509 if (! info || ! info->type)
1510 info = &default_info;
1511
1512 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001513 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01001514
1515 if (! (controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 continue;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001517 map = find_map(state, unitid, valinfo->control);
1518 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02001520 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (! cval) {
1522 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1523 return -ENOMEM;
1524 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001525 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 cval->id = unitid;
1527 cval->control = valinfo->control;
1528 cval->val_type = valinfo->val_type;
1529 cval->channels = 1;
1530
1531 /* get min/max values */
Daniel Mack65f25da2010-05-31 13:35:41 +02001532 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001533 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /* FIXME: hard-coded */
1535 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001536 cval->max = control_spec[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 cval->res = 1;
1538 cval->initialized = 1;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001539 } else {
1540 if (type == USB_XU_CLOCK_RATE) {
1541 /* E-Mu USB 0404/0202/TrackerPre
1542 * samplerate control quirk
1543 */
1544 cval->min = 0;
1545 cval->max = 5;
1546 cval->res = 1;
1547 cval->initialized = 1;
1548 } else
1549 get_min_max(cval, valinfo->min_value);
1550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
1553 if (! kctl) {
1554 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1555 kfree(cval);
1556 return -ENOMEM;
1557 }
1558 kctl->private_free = usb_mixer_elem_free;
1559
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001560 if (check_mapped_name(map, kctl->id.name,
1561 sizeof(kctl->id.name)))
1562 /* nothing */ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 else if (info->name)
1564 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1565 else {
Daniel Mack23caaf12010-03-11 21:13:25 +01001566 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 len = 0;
1568 if (nameid)
1569 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1570 if (! len)
1571 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1572 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02001573 append_ctl_name(kctl, " ");
1574 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n",
1577 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001578 if ((err = add_control_to_empty(state, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 return err;
1580 }
1581 return 0;
1582}
1583
1584
Daniel Mack99fc8642010-03-11 21:13:24 +01001585static int parse_audio_processing_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
Daniel Mack99fc8642010-03-11 21:13:24 +01001587 return build_audio_procunit(state, unitid, raw_desc, procunits, "Processing Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
Daniel Mack99fc8642010-03-11 21:13:24 +01001590static int parse_audio_extension_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
Daniel Mack99fc8642010-03-11 21:13:24 +01001592 /* Note that we parse extension units with processing unit descriptors.
1593 * That's ok as the layout is the same */
1594 return build_audio_procunit(state, unitid, raw_desc, extunits, "Extension Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
1597
1598/*
1599 * Selector Unit
1600 */
1601
1602/* info callback for selector unit
1603 * use an enumerator type for routing
1604 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001605static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001607 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 char **itemlist = (char **)kcontrol->private_value;
1609
Takashi Iwai5e246b82008-08-08 17:12:47 +02001610 if (snd_BUG_ON(!itemlist))
1611 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1613 uinfo->count = 1;
1614 uinfo->value.enumerated.items = cval->max;
1615 if ((int)uinfo->value.enumerated.item >= cval->max)
1616 uinfo->value.enumerated.item = cval->max - 1;
1617 strcpy(uinfo->value.enumerated.name, itemlist[uinfo->value.enumerated.item]);
1618 return 0;
1619}
1620
1621/* get callback for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001622static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001624 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 int val, err;
1626
Daniel Mack09414202010-05-31 13:35:44 +02001627 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001629 if (cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 ucontrol->value.enumerated.item[0] = 0;
1631 return 0;
1632 }
1633 return err;
1634 }
1635 val = get_relative_value(cval, val);
1636 ucontrol->value.enumerated.item[0] = val;
1637 return 0;
1638}
1639
1640/* put callback for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001641static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001643 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 int val, oval, err;
1645
Daniel Mack09414202010-05-31 13:35:44 +02001646 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001648 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return 0;
1650 return err;
1651 }
1652 val = ucontrol->value.enumerated.item[0];
1653 val = get_abs_value(cval, val);
1654 if (val != oval) {
Daniel Mack09414202010-05-31 13:35:44 +02001655 set_cur_ctl_value(cval, cval->control << 8, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 return 1;
1657 }
1658 return 0;
1659}
1660
1661/* alsa control interface for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001662static struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1664 .name = "", /* will be filled later */
1665 .info = mixer_ctl_selector_info,
1666 .get = mixer_ctl_selector_get,
1667 .put = mixer_ctl_selector_put,
1668};
1669
1670
1671/* private free callback.
1672 * free both private_data and private_value
1673 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001674static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
1676 int i, num_ins = 0;
1677
1678 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001679 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 num_ins = cval->max;
1681 kfree(cval);
1682 kctl->private_data = NULL;
1683 }
1684 if (kctl->private_value) {
1685 char **itemlist = (char **)kctl->private_value;
1686 for (i = 0; i < num_ins; i++)
1687 kfree(itemlist[i]);
1688 kfree(itemlist);
1689 kctl->private_value = 0;
1690 }
1691}
1692
1693/*
1694 * parse a selector unit
1695 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001696static int parse_audio_selector_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
Daniel Mack99fc8642010-03-11 21:13:24 +01001698 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 unsigned int i, nameid, len;
1700 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001701 struct usb_mixer_elem_info *cval;
1702 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001703 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 char **namelist;
1705
Daniel Mack99fc8642010-03-11 21:13:24 +01001706 if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
1708 return -EINVAL;
1709 }
1710
Daniel Mack99fc8642010-03-11 21:13:24 +01001711 for (i = 0; i < desc->bNrInPins; i++) {
1712 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return err;
1714 }
1715
Daniel Mack99fc8642010-03-11 21:13:24 +01001716 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return 0;
1718
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001719 map = find_map(state, unitid, 0);
1720 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return 0;
1722
Takashi Iwai561b2202005-09-09 14:22:34 +02001723 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (! cval) {
1725 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1726 return -ENOMEM;
1727 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001728 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 cval->id = unitid;
1730 cval->val_type = USB_MIXER_U8;
1731 cval->channels = 1;
1732 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001733 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 cval->res = 1;
1735 cval->initialized = 1;
1736
Daniel Mack09414202010-05-31 13:35:44 +02001737 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
1738 cval->control = UAC2_CX_CLOCK_SELECTOR;
1739 else
1740 cval->control = 0;
1741
Daniel Mack99fc8642010-03-11 21:13:24 +01001742 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (! namelist) {
1744 snd_printk(KERN_ERR "cannot malloc\n");
1745 kfree(cval);
1746 return -ENOMEM;
1747 }
1748#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01001749 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001750 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 len = 0;
1752 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
1753 if (! namelist[i]) {
1754 snd_printk(KERN_ERR "cannot malloc\n");
Mariusz Kozlowski7fbe3ca2007-01-08 11:25:30 +01001755 while (i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 kfree(namelist[i]);
1757 kfree(namelist);
1758 kfree(cval);
1759 return -ENOMEM;
1760 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02001761 len = check_mapped_selector_name(state, unitid, i, namelist[i],
1762 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01001763 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
1765 if (! len)
1766 sprintf(namelist[i], "Input %d", i);
1767 }
1768
1769 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
1770 if (! kctl) {
1771 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
Jesper Juhl878b4782006-03-20 11:27:13 +01001772 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 kfree(cval);
1774 return -ENOMEM;
1775 }
1776 kctl->private_value = (unsigned long)namelist;
1777 kctl->private_free = usb_mixer_selector_elem_free;
1778
Daniel Mack99fc8642010-03-11 21:13:24 +01001779 nameid = uac_selector_unit_iSelector(desc);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001780 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 if (len)
1782 ;
1783 else if (nameid)
1784 snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1785 else {
1786 len = get_term_name(state, &state->oterm,
1787 kctl->id.name, sizeof(kctl->id.name), 0);
1788 if (! len)
1789 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
1790
Daniel Mack09414202010-05-31 13:35:44 +02001791 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
1792 append_ctl_name(kctl, " Clock Source");
1793 else if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02001794 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02001796 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
1798
1799 snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
Daniel Mack99fc8642010-03-11 21:13:24 +01001800 cval->id, kctl->id.name, desc->bNrInPins);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001801 if ((err = add_control_to_empty(state, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return err;
1803
1804 return 0;
1805}
1806
1807
1808/*
1809 * parse an audio unit recursively
1810 */
1811
Takashi Iwai86e07d32005-11-17 15:08:02 +01001812static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813{
1814 unsigned char *p1;
1815
1816 if (test_and_set_bit(unitid, state->unitbitmap))
1817 return 0; /* the unit already visited */
1818
1819 p1 = find_audio_control_unit(state, unitid);
1820 if (!p1) {
1821 snd_printk(KERN_ERR "usbaudio: unit %d not found!\n", unitid);
1822 return -EINVAL;
1823 }
1824
1825 switch (p1[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01001826 case UAC_INPUT_TERMINAL:
Daniel Mack09414202010-05-31 13:35:44 +02001827 case UAC2_CLOCK_SOURCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return 0; /* NOP */
Daniel Mackde48c7b2010-02-22 23:49:13 +01001829 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 return parse_audio_mixer_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001831 case UAC_SELECTOR_UNIT:
Daniel Mack09414202010-05-31 13:35:44 +02001832 case UAC2_CLOCK_SELECTOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return parse_audio_selector_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001834 case UAC_FEATURE_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return parse_audio_feature_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001836 case UAC_PROCESSING_UNIT_V1:
Daniel Mack23caaf12010-03-11 21:13:25 +01001837 /* UAC2_EFFECT_UNIT has the same value */
1838 if (state->mixer->protocol == UAC_VERSION_1)
1839 return parse_audio_processing_unit(state, unitid, p1);
1840 else
1841 return 0; /* FIXME - effect units not implemented yet */
Daniel Mackde48c7b2010-02-22 23:49:13 +01001842 case UAC_EXTENSION_UNIT_V1:
Daniel Mack23caaf12010-03-11 21:13:25 +01001843 /* UAC2_PROCESSING_UNIT_V2 has the same value */
1844 if (state->mixer->protocol == UAC_VERSION_1)
1845 return parse_audio_extension_unit(state, unitid, p1);
1846 else /* UAC_VERSION_2 */
1847 return parse_audio_processing_unit(state, unitid, p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 default:
1849 snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
1850 return -EINVAL;
1851 }
1852}
1853
Clemens Ladisch84957a82005-04-29 16:23:13 +02001854static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
1855{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001856 kfree(mixer->id_elems);
1857 if (mixer->urb) {
1858 kfree(mixer->urb->transfer_buffer);
1859 usb_free_urb(mixer->urb);
1860 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01001861 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02001862 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001863 kfree(mixer);
1864}
1865
Takashi Iwai86e07d32005-11-17 15:08:02 +01001866static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02001867{
1868 struct usb_mixer_interface *mixer = device->device_data;
1869 snd_usb_mixer_free(mixer);
1870 return 0;
1871}
1872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873/*
1874 * create mixer controls
1875 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01001876 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02001878static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001880 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 int err;
1882 const struct usbmix_ctl_map *map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001883 struct usb_host_interface *hostif;
Daniel Mack23caaf12010-03-11 21:13:25 +01001884 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Clemens Ladisch84957a82005-04-29 16:23:13 +02001886 hostif = &usb_ifnum_to_if(mixer->chip->dev, mixer->ctrlif)->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02001888 state.chip = mixer->chip;
1889 state.mixer = mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 state.buffer = hostif->extra;
1891 state.buflen = hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001894 for (map = usbmix_ctl_maps; map->id; map++) {
1895 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02001897 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001898 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 break;
1900 }
1901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Daniel Mack23caaf12010-03-11 21:13:25 +01001903 p = NULL;
1904 while ((p = snd_usb_find_csint_desc(hostif->extra, hostif->extralen, p, UAC_OUTPUT_TERMINAL)) != NULL) {
1905 if (mixer->protocol == UAC_VERSION_1) {
1906 struct uac_output_terminal_descriptor_v1 *desc = p;
1907
1908 if (desc->bLength < sizeof(*desc))
1909 continue; /* invalid descriptor? */
1910 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1911 state.oterm.id = desc->bTerminalID;
1912 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1913 state.oterm.name = desc->iTerminal;
1914 err = parse_audio_unit(&state, desc->bSourceID);
1915 if (err < 0)
1916 return err;
1917 } else { /* UAC_VERSION_2 */
1918 struct uac2_output_terminal_descriptor *desc = p;
1919
1920 if (desc->bLength < sizeof(*desc))
1921 continue; /* invalid descriptor? */
1922 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1923 state.oterm.id = desc->bTerminalID;
1924 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1925 state.oterm.name = desc->iTerminal;
1926 err = parse_audio_unit(&state, desc->bSourceID);
1927 if (err < 0)
1928 return err;
Daniel Mack09414202010-05-31 13:35:44 +02001929
1930 /* for UAC2, use the same approach to also add the clock selectors */
1931 err = parse_audio_unit(&state, desc->bCSourceID);
1932 if (err < 0)
1933 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +01001934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 return 0;
1938}
Clemens Ladisch84957a82005-04-29 16:23:13 +02001939
Daniel Mack7b1eda22010-03-11 21:13:22 +01001940void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001941{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001942 struct usb_mixer_elem_info *info;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001943
1944 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
1945 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1946 info->elem_id);
1947}
1948
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01001949static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
1950 int unitid,
1951 struct usb_mixer_elem_info *cval)
1952{
1953 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
1954 "S8", "U8", "S16", "U16"};
1955 snd_iprintf(buffer, " Unit: %i\n", unitid);
1956 if (cval->elem_id)
1957 snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
1958 cval->elem_id->name, cval->elem_id->index);
1959 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
1960 "channels=%i, type=\"%s\"\n", cval->id,
1961 cval->control, cval->cmask, cval->channels,
1962 val_types[cval->val_type]);
1963 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
1964 cval->min, cval->max, cval->dBmin, cval->dBmax);
1965}
1966
1967static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
1968 struct snd_info_buffer *buffer)
1969{
1970 struct snd_usb_audio *chip = entry->private_data;
1971 struct usb_mixer_interface *mixer;
1972 struct usb_mixer_elem_info *cval;
1973 int unitid;
1974
1975 list_for_each_entry(mixer, &chip->mixer_list, list) {
1976 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01001977 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
1978 chip->usb_id, mixer->ctrlif,
1979 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01001980 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
1981 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
1982 for (cval = mixer->id_elems[unitid]; cval;
1983 cval = cval->next_id_elem)
1984 snd_usb_mixer_dump_cval(buffer, unitid, cval);
1985 }
1986 }
1987}
1988
Daniel Macke213e9c2010-05-11 18:13:50 +02001989static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
1990 int attribute, int value, int index)
1991{
1992 struct usb_mixer_elem_info *info;
1993 __u8 unitid = (index >> 8) & 0xff;
1994 __u8 control = (value >> 8) & 0xff;
1995 __u8 channel = value & 0xff;
1996
1997 if (channel >= MAX_CHANNELS) {
1998 snd_printk(KERN_DEBUG "%s(): bogus channel number %d\n",
1999 __func__, channel);
2000 return;
2001 }
2002
2003 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem) {
2004 if (info->control != control)
2005 continue;
2006
2007 switch (attribute) {
2008 case UAC2_CS_CUR:
2009 /* invalidate cache, so the value is read from the device */
2010 if (channel)
2011 info->cached &= ~(1 << channel);
2012 else /* master channel */
2013 info->cached = 0;
2014
2015 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2016 info->elem_id);
2017 break;
2018
2019 case UAC2_CS_RANGE:
2020 /* TODO */
2021 break;
2022
2023 case UAC2_CS_MEM:
2024 /* TODO */
2025 break;
2026
2027 default:
2028 snd_printk(KERN_DEBUG "unknown attribute %d in interrupt\n",
2029 attribute);
2030 break;
2031 } /* switch */
2032 }
2033}
2034
2035static void snd_usb_mixer_interrupt(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002036{
2037 struct usb_mixer_interface *mixer = urb->context;
Daniel Macke213e9c2010-05-11 18:13:50 +02002038 int len = urb->actual_length;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002039
Daniel Macke213e9c2010-05-11 18:13:50 +02002040 if (urb->status != 0)
2041 goto requeue;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002042
Daniel Macke213e9c2010-05-11 18:13:50 +02002043 if (mixer->protocol == UAC_VERSION_1) {
2044 struct uac1_status_word *status;
2045
2046 for (status = urb->transfer_buffer;
2047 len >= sizeof(*status);
2048 len -= sizeof(*status), status++) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002049 snd_printd(KERN_DEBUG "status interrupt: %02x %02x\n",
Daniel Macke213e9c2010-05-11 18:13:50 +02002050 status->bStatusType,
2051 status->bOriginator);
2052
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002053 /* ignore any notifications not from the control interface */
Daniel Macke213e9c2010-05-11 18:13:50 +02002054 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2055 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002056 continue;
Daniel Macke213e9c2010-05-11 18:13:50 +02002057
2058 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2059 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
Clemens Ladischb259b102005-04-29 16:29:28 +02002060 else
Daniel Macke213e9c2010-05-11 18:13:50 +02002061 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2062 }
2063 } else { /* UAC_VERSION_2 */
2064 struct uac2_interrupt_data_msg *msg;
2065
2066 for (msg = urb->transfer_buffer;
2067 len >= sizeof(*msg);
2068 len -= sizeof(*msg), msg++) {
2069 /* drop vendor specific and endpoint requests */
2070 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2071 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2072 continue;
2073
2074 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2075 le16_to_cpu(msg->wValue),
2076 le16_to_cpu(msg->wIndex));
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002077 }
2078 }
Daniel Macke213e9c2010-05-11 18:13:50 +02002079
2080requeue:
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002081 if (urb->status != -ENOENT && urb->status != -ECONNRESET) {
2082 urb->dev = mixer->chip->dev;
2083 usb_submit_urb(urb, GFP_ATOMIC);
2084 }
2085}
2086
2087/* create the handler for the optional status interrupt endpoint */
2088static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2089{
2090 struct usb_host_interface *hostif;
2091 struct usb_endpoint_descriptor *ep;
2092 void *transfer_buffer;
2093 int buffer_length;
2094 unsigned int epnum;
2095
2096 hostif = &usb_ifnum_to_if(mixer->chip->dev, mixer->ctrlif)->altsetting[0];
2097 /* we need one interrupt input endpoint */
2098 if (get_iface_desc(hostif)->bNumEndpoints < 1)
2099 return 0;
2100 ep = get_endpoint(hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01002101 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002102 return 0;
2103
Julia Lawall42a6e662008-12-29 11:23:02 +01002104 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002105 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2106 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2107 if (!transfer_buffer)
2108 return -ENOMEM;
2109 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2110 if (!mixer->urb) {
2111 kfree(transfer_buffer);
2112 return -ENOMEM;
2113 }
2114 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2115 usb_rcvintpipe(mixer->chip->dev, epnum),
2116 transfer_buffer, buffer_length,
Daniel Macke213e9c2010-05-11 18:13:50 +02002117 snd_usb_mixer_interrupt, mixer, ep->bInterval);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002118 usb_submit_urb(mixer->urb, GFP_KERNEL);
2119 return 0;
2120}
2121
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002122int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2123 int ignore_error)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002124{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002125 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002126 .dev_free = snd_usb_mixer_dev_free
2127 };
2128 struct usb_mixer_interface *mixer;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002129 struct snd_info_entry *entry;
Daniel Mack7b8a0432010-02-22 23:49:12 +01002130 struct usb_host_interface *host_iface;
Daniel Mack23caaf12010-03-11 21:13:25 +01002131 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002132
2133 strcpy(chip->card->mixername, "USB Mixer");
2134
Takashi Iwai561b2202005-09-09 14:22:34 +02002135 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002136 if (!mixer)
2137 return -ENOMEM;
2138 mixer->chip = chip;
2139 mixer->ctrlif = ctrlif;
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002140 mixer->ignore_ctl_error = ignore_error;
Jaroslav Kysela291186e2010-02-16 11:55:18 +01002141 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2142 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002143 if (!mixer->id_elems) {
2144 kfree(mixer);
2145 return -ENOMEM;
2146 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002147
Daniel Mack7b8a0432010-02-22 23:49:12 +01002148 host_iface = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
Jaroslav Kyselaca4c2ad2010-04-16 10:32:54 +02002149 mixer->protocol = get_iface_desc(host_iface)->bInterfaceProtocol;
Daniel Mack7b8a0432010-02-22 23:49:12 +01002150
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002151 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002152 (err = snd_usb_mixer_status_create(mixer)) < 0)
2153 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002154
Daniel Mack7b1eda22010-03-11 21:13:22 +01002155 snd_usb_mixer_apply_create_quirk(mixer);
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02002156
Clemens Ladisch84957a82005-04-29 16:23:13 +02002157 err = snd_device_new(chip->card, SNDRV_DEV_LOWLEVEL, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002158 if (err < 0)
2159 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002160
2161 if (list_empty(&chip->mixer_list) &&
2162 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2163 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2164
Clemens Ladisch84957a82005-04-29 16:23:13 +02002165 list_add(&mixer->list, &chip->mixer_list);
2166 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002167
2168_error:
2169 snd_usb_mixer_free(mixer);
2170 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002171}
2172
2173void snd_usb_mixer_disconnect(struct list_head *p)
2174{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002175 struct usb_mixer_interface *mixer;
Daniel Mack7b1eda22010-03-11 21:13:22 +01002176
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002177 mixer = list_entry(p, struct usb_mixer_interface, list);
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002178 usb_kill_urb(mixer->urb);
2179 usb_kill_urb(mixer->rc_urb);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002180}