blob: c8c28cd755348c63746e54ee654639299fc45dc2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Mixer control part
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
11 *
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 */
28
Daniel Mack157a57b2010-06-16 17:57:30 +020029/*
30 * TODOs, for both the mixer and the streaming interfaces:
31 *
32 * - support for UAC2 effect units
33 * - support for graphical equalizers
34 * - RANGE and MEM set commands (UAC2)
35 * - RANGE and MEM interrupt dispatchers (UAC2)
36 * - audio channel clustering (UAC2)
37 * - audio sample rate converter units (UAC2)
38 * - proper handling of clock multipliers (UAC2)
39 * - dispatch clock change notifications (UAC2)
40 * - stop PCM streams which use a clock that became invalid
41 * - stop PCM streams which use a clock selector that has changed
42 * - parse available sample rates again when clock sources changed
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/bitops.h>
46#include <linux/init.h>
47#include <linux/list.h>
48#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/usb.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010051#include <linux/usb/audio.h>
Daniel Mack23caaf12010-03-11 21:13:25 +010052#include <linux/usb/audio-v2.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <sound/core.h>
55#include <sound/control.h>
Clemens Ladischb259b102005-04-29 16:29:28 +020056#include <sound/hwdep.h>
Clemens Ladischaafad562005-05-10 14:47:38 +020057#include <sound/info.h>
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +020058#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include "usbaudio.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010061#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010062#include "helper.h"
Daniel Mack7b1eda22010-03-11 21:13:22 +010063#include "mixer_quirks.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010064#include "power.h"
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +020065
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +010066#define MAX_ID_ELEMS 256
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068struct usb_audio_term {
69 int id;
70 int type;
71 int channels;
72 unsigned int chconfig;
73 int name;
74};
75
76struct usbmix_name_map;
77
Takashi Iwai86e07d32005-11-17 15:08:02 +010078struct mixer_build {
79 struct snd_usb_audio *chip;
Clemens Ladisch84957a82005-04-29 16:23:13 +020080 struct usb_mixer_interface *mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned char *buffer;
82 unsigned int buflen;
Jaroslav Kysela291186e2010-02-16 11:55:18 +010083 DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
Takashi Iwai86e07d32005-11-17 15:08:02 +010084 struct usb_audio_term oterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 const struct usbmix_name_map *map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +020086 const struct usbmix_selector_map *selector_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089enum {
90 USB_MIXER_BOOLEAN,
91 USB_MIXER_INV_BOOLEAN,
92 USB_MIXER_S8,
93 USB_MIXER_U8,
94 USB_MIXER_S16,
95 USB_MIXER_U16,
96};
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Joseph Teichman1cdfa9f2011-02-08 01:22:36 -050099/*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -0800100enum {
101 USB_XU_CLOCK_RATE = 0xe301,
102 USB_XU_CLOCK_SOURCE = 0xe302,
103 USB_XU_DIGITAL_IO_STATUS = 0xe303,
104 USB_XU_DEVICE_OPTIONS = 0xe304,
105 USB_XU_DIRECT_MONITORING = 0xe305,
106 USB_XU_METERING = 0xe306
107};
108enum {
109 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
110 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
111 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
112 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
113};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115/*
116 * manual mapping of mixer names
117 * if the mixer topology is too complicated and the parsed names are
118 * ambiguous, add the entries in usbmixer_maps.c.
119 */
Daniel Mackf0b5e632010-03-11 21:13:23 +0100120#include "mixer_maps.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100122static const struct usbmix_name_map *
123find_map(struct mixer_build *state, int unitid, int control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100125 const struct usbmix_name_map *p = state->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100127 if (!p)
128 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 for (p = state->map; p->id; p++) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100131 if (p->id == unitid &&
132 (!control || !p->control || control == p->control))
133 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100135 return NULL;
136}
137
138/* get the mapped name if the unit matches */
139static int
140check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
141{
142 if (!p || !p->name)
143 return 0;
144
145 buflen--;
146 return strlcpy(buf, p->name, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149/* check whether the control should be ignored */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100150static inline int
151check_ignored_ctl(const struct usbmix_name_map *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100153 if (!p || p->name || p->dB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return 0;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100155 return 1;
156}
157
158/* dB mapping */
159static inline void check_mapped_dB(const struct usbmix_name_map *p,
160 struct usb_mixer_elem_info *cval)
161{
162 if (p && p->dB) {
163 cval->dBmin = p->dB->min;
164 cval->dBmax = p->dB->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200168/* get the mapped selector source name */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100169static int check_mapped_selector_name(struct mixer_build *state, int unitid,
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200170 int index, char *buf, int buflen)
171{
172 const struct usbmix_selector_map *p;
173
174 if (! state->selector_map)
175 return 0;
176 for (p = state->selector_map; p->id; p++) {
177 if (p->id == unitid && index < p->count)
178 return strlcpy(buf, p->names[index], buflen);
179 }
180 return 0;
181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*
184 * find an audio control unit with the given unit id
185 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100186static void *find_audio_control_unit(struct mixer_build *state, unsigned char unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Daniel Mack67e1daa2010-05-31 13:35:43 +0200188 /* we just parse the header */
189 struct uac_feature_unit_descriptor *hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Daniel Mack67e1daa2010-05-31 13:35:43 +0200191 while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
192 USB_DT_CS_INTERFACE)) != NULL) {
193 if (hdr->bLength >= 4 &&
194 hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
195 hdr->bDescriptorSubtype <= UAC2_SAMPLE_RATE_CONVERTER &&
196 hdr->bUnitID == unit)
197 return hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Daniel Mack67e1daa2010-05-31 13:35:43 +0200199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return NULL;
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203/*
204 * copy a string with the given id
205 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100206static int snd_usb_copy_string_desc(struct mixer_build *state, int index, char *buf, int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
209 buf[len] = 0;
210 return len;
211}
212
213/*
214 * convert from the byte/word on usb descriptor to the zero-based integer
215 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100216static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 switch (cval->val_type) {
219 case USB_MIXER_BOOLEAN:
220 return !!val;
221 case USB_MIXER_INV_BOOLEAN:
222 return !val;
223 case USB_MIXER_U8:
224 val &= 0xff;
225 break;
226 case USB_MIXER_S8:
227 val &= 0xff;
228 if (val >= 0x80)
229 val -= 0x100;
230 break;
231 case USB_MIXER_U16:
232 val &= 0xffff;
233 break;
234 case USB_MIXER_S16:
235 val &= 0xffff;
236 if (val >= 0x8000)
237 val -= 0x10000;
238 break;
239 }
240 return val;
241}
242
243/*
244 * convert from the zero-based int to the byte/word for usb descriptor
245 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100246static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 switch (cval->val_type) {
249 case USB_MIXER_BOOLEAN:
250 return !!val;
251 case USB_MIXER_INV_BOOLEAN:
252 return !val;
253 case USB_MIXER_S8:
254 case USB_MIXER_U8:
255 return val & 0xff;
256 case USB_MIXER_S16:
257 case USB_MIXER_U16:
258 return val & 0xffff;
259 }
260 return 0; /* not reached */
261}
262
Takashi Iwai86e07d32005-11-17 15:08:02 +0100263static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 if (! cval->res)
266 cval->res = 1;
267 if (val < cval->min)
268 return 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200269 else if (val >= cval->max)
270 return (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 else
272 return (val - cval->min) / cval->res;
273}
274
Takashi Iwai86e07d32005-11-17 15:08:02 +0100275static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 if (val < 0)
278 return cval->min;
279 if (! cval->res)
280 cval->res = 1;
281 val *= cval->res;
282 val += cval->min;
283 if (val > cval->max)
284 return cval->max;
285 return val;
286}
287
288
289/*
290 * retrieve a mixer value
291 */
292
Daniel Mack23caaf12010-03-11 21:13:25 +0100293static 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 -0700294{
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200295 struct snd_usb_audio *chip = cval->mixer->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 unsigned char buf[2];
297 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
298 int timeout = 10;
Oliver Neukum88a85162011-03-11 14:51:12 +0100299 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Oliver Neukum88a85162011-03-11 14:51:12 +0100301 err = snd_usb_autoresume(cval->mixer->chip);
302 if (err < 0)
303 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 while (timeout-- > 0) {
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200305 if (snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200307 validx, snd_usb_ctrl_intf(chip) | (cval->id << 8),
Thomas Reitmayra04395e2007-05-15 11:47:48 +0200308 buf, val_len, 100) >= val_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
Oliver Neukum88a85162011-03-11 14:51:12 +0100310 snd_usb_autosuspend(cval->mixer->chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return 0;
312 }
313 }
Oliver Neukum88a85162011-03-11 14:51:12 +0100314 snd_usb_autosuspend(cval->mixer->chip);
Clemens Ladisch84957a82005-04-29 16:23:13 +0200315 snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
Takashi Iwaib415ec72010-06-24 08:07:28 +0200316 request, validx, snd_usb_ctrl_intf(chip) | (cval->id << 8), cval->val_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return -EINVAL;
318}
319
Daniel Mack23caaf12010-03-11 21:13:25 +0100320static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
321{
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200322 struct snd_usb_audio *chip = cval->mixer->chip;
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200323 unsigned char buf[2 + 3*sizeof(__u16)]; /* enough space for one range */
Daniel Mack23caaf12010-03-11 21:13:25 +0100324 unsigned char *val;
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200325 int ret, size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100326 __u8 bRequest;
327
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200328 if (request == UAC_GET_CUR) {
329 bRequest = UAC2_CS_CUR;
330 size = sizeof(__u16);
331 } else {
332 bRequest = UAC2_CS_RANGE;
333 size = sizeof(buf);
334 }
335
336 memset(buf, 0, sizeof(buf));
Daniel Mack23caaf12010-03-11 21:13:25 +0100337
Oliver Neukum88a85162011-03-11 14:51:12 +0100338 ret = snd_usb_autoresume(chip) ? -EIO : 0;
339 if (ret)
340 goto error;
341
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200342 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
Daniel Mack23caaf12010-03-11 21:13:25 +0100343 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200344 validx, snd_usb_ctrl_intf(chip) | (cval->id << 8),
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200345 buf, size, 1000);
Oliver Neukum88a85162011-03-11 14:51:12 +0100346 snd_usb_autosuspend(chip);
Daniel Mack23caaf12010-03-11 21:13:25 +0100347
348 if (ret < 0) {
Oliver Neukum88a85162011-03-11 14:51:12 +0100349error:
Daniel Mack09414202010-05-31 13:35:44 +0200350 snd_printk(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200351 request, validx, snd_usb_ctrl_intf(chip) | (cval->id << 8), cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100352 return ret;
353 }
354
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200355 /* FIXME: how should we handle multiple triplets here? */
356
Daniel Mack23caaf12010-03-11 21:13:25 +0100357 switch (request) {
358 case UAC_GET_CUR:
359 val = buf;
360 break;
361 case UAC_GET_MIN:
362 val = buf + sizeof(__u16);
363 break;
364 case UAC_GET_MAX:
365 val = buf + sizeof(__u16) * 2;
366 break;
367 case UAC_GET_RES:
368 val = buf + sizeof(__u16) * 3;
369 break;
370 default:
371 return -EINVAL;
372 }
373
374 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(val, sizeof(__u16)));
375
376 return 0;
377}
378
379static int get_ctl_value(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
380{
381 return (cval->mixer->protocol == UAC_VERSION_1) ?
382 get_ctl_value_v1(cval, request, validx, value_ret) :
383 get_ctl_value_v2(cval, request, validx, value_ret);
384}
385
Takashi Iwai86e07d32005-11-17 15:08:02 +0100386static int get_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100388 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
391/* channel = 0: master, 1 = first channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100392static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
393 int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100395 return get_ctl_value(cval, UAC_GET_CUR, (cval->control << 8) | channel, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Takashi Iwai641b4872009-01-15 17:05:24 +0100398static int get_cur_mix_value(struct usb_mixer_elem_info *cval,
399 int channel, int index, int *value)
400{
401 int err;
402
403 if (cval->cached & (1 << channel)) {
404 *value = cval->cache_val[index];
405 return 0;
406 }
407 err = get_cur_mix_raw(cval, channel, value);
408 if (err < 0) {
409 if (!cval->mixer->ignore_ctl_error)
Daniel Mack23caaf12010-03-11 21:13:25 +0100410 snd_printd(KERN_ERR "cannot get current value for control %d ch %d: err = %d\n",
Takashi Iwai641b4872009-01-15 17:05:24 +0100411 cval->control, channel, err);
412 return err;
413 }
414 cval->cached |= 1 << channel;
415 cval->cache_val[index] = *value;
416 return 0;
417}
418
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/*
421 * set a mixer value
422 */
423
Daniel Mack7b1eda22010-03-11 21:13:22 +0100424int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
425 int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200427 struct snd_usb_audio *chip = cval->mixer->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 unsigned char buf[2];
Oliver Neukum88a85162011-03-11 14:51:12 +0100429 int val_len, err, timeout = 10;
Daniel Mack23caaf12010-03-11 21:13:25 +0100430
431 if (cval->mixer->protocol == UAC_VERSION_1) {
432 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
433 } else { /* UAC_VERSION_2 */
434 /* audio class v2 controls are always 2 bytes in size */
435 val_len = sizeof(__u16);
436
437 /* FIXME */
438 if (request != UAC_SET_CUR) {
439 snd_printdd(KERN_WARNING "RANGE setting not yet supported\n");
440 return -EINVAL;
441 }
442
443 request = UAC2_CS_CUR;
444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 value_set = convert_bytes_value(cval, value_set);
447 buf[0] = value_set & 0xff;
448 buf[1] = (value_set >> 8) & 0xff;
Oliver Neukum88a85162011-03-11 14:51:12 +0100449 err = snd_usb_autoresume(chip);
450 if (err < 0)
451 return -EIO;
Viral Mehtacf3f9132009-04-03 13:08:14 +0530452 while (timeout-- > 0)
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200453 if (snd_usb_ctl_msg(chip->dev,
454 usb_sndctrlpipe(chip->dev, 0), request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200456 validx, snd_usb_ctrl_intf(chip) | (cval->id << 8),
Oliver Neukum88a85162011-03-11 14:51:12 +0100457 buf, val_len, 100) >= 0) {
458 snd_usb_autosuspend(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return 0;
Oliver Neukum88a85162011-03-11 14:51:12 +0100460 }
461 snd_usb_autosuspend(chip);
Clemens Ladisch84957a82005-04-29 16:23:13 +0200462 snd_printdd(KERN_ERR "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200463 request, validx, snd_usb_ctrl_intf(chip) | (cval->id << 8), cval->val_type, buf[0], buf[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return -EINVAL;
465}
466
Takashi Iwai86e07d32005-11-17 15:08:02 +0100467static int set_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Daniel Mack7b1eda22010-03-11 21:13:22 +0100469 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Takashi Iwai641b4872009-01-15 17:05:24 +0100472static int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
473 int index, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Takashi Iwai641b4872009-01-15 17:05:24 +0100475 int err;
Daniel Macka6a33252010-05-31 13:35:37 +0200476 unsigned int read_only = (channel == 0) ?
477 cval->master_readonly :
478 cval->ch_readonly & (1 << (channel - 1));
479
480 if (read_only) {
481 snd_printdd(KERN_INFO "%s(): channel %d of control %d is read_only\n",
482 __func__, channel, cval->control);
483 return 0;
484 }
485
Daniel Mack7b1eda22010-03-11 21:13:22 +0100486 err = snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, (cval->control << 8) | channel,
Takashi Iwai641b4872009-01-15 17:05:24 +0100487 value);
488 if (err < 0)
489 return err;
490 cval->cached |= 1 << channel;
491 cval->cache_val[index] = value;
492 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200495/*
496 * TLV callback for mixer volume controls
497 */
498static int mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
499 unsigned int size, unsigned int __user *_tlv)
500{
501 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Takashi Iwaib8e1c732009-06-16 14:04:37 +0200502 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200503
504 if (size < sizeof(scale))
505 return -ENOMEM;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100506 scale[2] = cval->dBmin;
507 scale[3] = cval->dBmax;
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200508 if (copy_to_user(_tlv, scale, sizeof(scale)))
509 return -EFAULT;
510 return 0;
511}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513/*
514 * parser routines begin here...
515 */
516
Takashi Iwai86e07d32005-11-17 15:08:02 +0100517static int parse_audio_unit(struct mixer_build *state, int unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519
520/*
521 * check if the input/output channel routing is enabled on the given bitmap.
522 * used for mixer unit parser
523 */
524static int check_matrix_bitmap(unsigned char *bmap, int ich, int och, int num_outs)
525{
526 int idx = ich * num_outs + och;
527 return bmap[idx >> 3] & (0x80 >> (idx & 7));
528}
529
530
531/*
532 * add an alsa control element
533 * search and increment the index until an empty slot is found.
534 *
535 * if failed, give up and free the control instance.
536 */
537
Takashi Iwai86e07d32005-11-17 15:08:02 +0100538static int add_control_to_empty(struct mixer_build *state, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100540 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200542
543 while (snd_ctl_find_id(state->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 kctl->id.index++;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200545 if ((err = snd_ctl_add(state->chip->card, kctl)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 snd_printd(KERN_ERR "cannot add control (err = %d)\n", err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200547 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200549 cval->elem_id = &kctl->id;
550 cval->next_id_elem = state->mixer->id_elems[cval->id];
551 state->mixer->id_elems[cval->id] = cval;
552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
555
556/*
557 * get a terminal name string
558 */
559
560static struct iterm_name_combo {
561 int type;
562 char *name;
563} iterm_names[] = {
564 { 0x0300, "Output" },
565 { 0x0301, "Speaker" },
566 { 0x0302, "Headphone" },
567 { 0x0303, "HMD Audio" },
568 { 0x0304, "Desktop Speaker" },
569 { 0x0305, "Room Speaker" },
570 { 0x0306, "Com Speaker" },
571 { 0x0307, "LFE" },
572 { 0x0600, "External In" },
573 { 0x0601, "Analog In" },
574 { 0x0602, "Digital In" },
575 { 0x0603, "Line" },
576 { 0x0604, "Legacy In" },
577 { 0x0605, "IEC958 In" },
578 { 0x0606, "1394 DA Stream" },
579 { 0x0607, "1394 DV Stream" },
580 { 0x0700, "Embedded" },
581 { 0x0701, "Noise Source" },
582 { 0x0702, "Equalization Noise" },
583 { 0x0703, "CD" },
584 { 0x0704, "DAT" },
585 { 0x0705, "DCC" },
586 { 0x0706, "MiniDisk" },
587 { 0x0707, "Analog Tape" },
588 { 0x0708, "Phonograph" },
589 { 0x0709, "VCR Audio" },
590 { 0x070a, "Video Disk Audio" },
591 { 0x070b, "DVD Audio" },
592 { 0x070c, "TV Tuner Audio" },
593 { 0x070d, "Satellite Rec Audio" },
594 { 0x070e, "Cable Tuner Audio" },
595 { 0x070f, "DSS Audio" },
596 { 0x0710, "Radio Receiver" },
597 { 0x0711, "Radio Transmitter" },
598 { 0x0712, "Multi-Track Recorder" },
599 { 0x0713, "Synthesizer" },
600 { 0 },
601};
602
Takashi Iwai86e07d32005-11-17 15:08:02 +0100603static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 unsigned char *name, int maxlen, int term_only)
605{
606 struct iterm_name_combo *names;
607
608 if (iterm->name)
609 return snd_usb_copy_string_desc(state, iterm->name, name, maxlen);
610
611 /* virtual type - not a real terminal */
612 if (iterm->type >> 16) {
613 if (term_only)
614 return 0;
615 switch (iterm->type >> 16) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100616 case UAC_SELECTOR_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 strcpy(name, "Selector"); return 8;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200618 case UAC1_PROCESSING_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 strcpy(name, "Process Unit"); return 12;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200620 case UAC1_EXTENSION_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 strcpy(name, "Ext Unit"); return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100622 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 strcpy(name, "Mixer"); return 5;
624 default:
625 return sprintf(name, "Unit %d", iterm->id);
626 }
627 }
628
629 switch (iterm->type & 0xff00) {
630 case 0x0100:
631 strcpy(name, "PCM"); return 3;
632 case 0x0200:
633 strcpy(name, "Mic"); return 3;
634 case 0x0400:
635 strcpy(name, "Headset"); return 7;
636 case 0x0500:
637 strcpy(name, "Phone"); return 5;
638 }
639
640 for (names = iterm_names; names->type; names++)
641 if (names->type == iterm->type) {
642 strcpy(name, names->name);
643 return strlen(names->name);
644 }
645 return 0;
646}
647
648
649/*
650 * parse the source unit recursively until it reaches to a terminal
651 * or a branched unit.
652 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100653static int check_input_term(struct mixer_build *state, int id, struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Daniel Mack09414202010-05-31 13:35:44 +0200655 int err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100656 void *p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 memset(term, 0, sizeof(*term));
659 while ((p1 = find_audio_control_unit(state, id)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100660 unsigned char *hdr = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100662 switch (hdr[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100663 case UAC_INPUT_TERMINAL:
Daniel Mack23caaf12010-03-11 21:13:25 +0100664 if (state->mixer->protocol == UAC_VERSION_1) {
665 struct uac_input_terminal_descriptor *d = p1;
666 term->type = le16_to_cpu(d->wTerminalType);
667 term->channels = d->bNrChannels;
668 term->chconfig = le16_to_cpu(d->wChannelConfig);
669 term->name = d->iTerminal;
670 } else { /* UAC_VERSION_2 */
671 struct uac2_input_terminal_descriptor *d = p1;
672 term->type = le16_to_cpu(d->wTerminalType);
673 term->channels = d->bNrChannels;
674 term->chconfig = le32_to_cpu(d->bmChannelConfig);
675 term->name = d->iTerminal;
Daniel Mack09414202010-05-31 13:35:44 +0200676
677 /* call recursively to get the clock selectors */
678 err = check_input_term(state, d->bCSourceID, term);
679 if (err < 0)
680 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100683 case UAC_FEATURE_UNIT: {
684 /* the header is the same for v1 and v2 */
685 struct uac_feature_unit_descriptor *d = p1;
Daniel Mack5e688882010-05-08 11:24:56 +0200686 id = d->bSourceID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 break; /* continue to parse */
Daniel Mack23caaf12010-03-11 21:13:25 +0100688 }
689 case UAC_MIXER_UNIT: {
690 struct uac_mixer_unit_descriptor *d = p1;
691 term->type = d->bDescriptorSubtype << 16; /* virtual type */
692 term->channels = uac_mixer_unit_bNrChannels(d);
693 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
694 term->name = uac_mixer_unit_iMixer(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100696 }
Daniel Mack09414202010-05-31 13:35:44 +0200697 case UAC_SELECTOR_UNIT:
698 case UAC2_CLOCK_SELECTOR: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100699 struct uac_selector_unit_descriptor *d = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /* call recursively to retrieve the channel info */
Daniel Mack23caaf12010-03-11 21:13:25 +0100701 if (check_input_term(state, d->baSourceID[0], term) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return -ENODEV;
Daniel Mack23caaf12010-03-11 21:13:25 +0100703 term->type = d->bDescriptorSubtype << 16; /* virtual type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100705 term->name = uac_selector_unit_iSelector(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100707 }
Daniel Mack69da9bc2010-06-16 17:57:28 +0200708 case UAC1_PROCESSING_UNIT:
709 case UAC1_EXTENSION_UNIT: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100710 struct uac_processing_unit_descriptor *d = p1;
711 if (d->bNrInPins) {
712 id = d->baSourceID[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 break; /* continue to parse */
714 }
Daniel Mack23caaf12010-03-11 21:13:25 +0100715 term->type = d->bDescriptorSubtype << 16; /* virtual type */
716 term->channels = uac_processing_unit_bNrChannels(d);
717 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
718 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100720 }
Daniel Mack09414202010-05-31 13:35:44 +0200721 case UAC2_CLOCK_SOURCE: {
722 struct uac_clock_source_descriptor *d = p1;
723 term->type = d->bDescriptorSubtype << 16; /* virtual type */
724 term->id = id;
725 term->name = d->iClockSource;
726 return 0;
727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 default:
729 return -ENODEV;
730 }
731 }
732 return -ENODEV;
733}
734
735
736/*
737 * Feature Unit
738 */
739
740/* feature unit control information */
741struct usb_feature_control_info {
742 const char *name;
743 unsigned int type; /* control type (mute, volume, etc.) */
744};
745
746static struct usb_feature_control_info audio_feature_info[] = {
Daniel Mack2e0281d2010-05-31 13:35:42 +0200747 { "Mute", USB_MIXER_INV_BOOLEAN },
748 { "Volume", USB_MIXER_S16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 { "Tone Control - Bass", USB_MIXER_S8 },
750 { "Tone Control - Mid", USB_MIXER_S8 },
751 { "Tone Control - Treble", USB_MIXER_S8 },
752 { "Graphic Equalizer", USB_MIXER_S8 }, /* FIXME: not implemeted yet */
Daniel Mack2e0281d2010-05-31 13:35:42 +0200753 { "Auto Gain Control", USB_MIXER_BOOLEAN },
754 { "Delay Control", USB_MIXER_U16 },
755 { "Bass Boost", USB_MIXER_BOOLEAN },
756 { "Loudness", USB_MIXER_BOOLEAN },
757 /* UAC2 specific */
758 { "Input Gain Control", USB_MIXER_U16 },
759 { "Input Gain Pad Control", USB_MIXER_BOOLEAN },
760 { "Phase Inverter Control", USB_MIXER_BOOLEAN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761};
762
763
764/* private_free callback */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100765static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Jesper Juhl4d572772005-05-30 17:30:32 +0200767 kfree(kctl->private_data);
768 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
771
772/*
773 * interface to ALSA control for feature/mixer units
774 */
775
776/*
777 * retrieve the minimum and maximum values for the specified control
778 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100779static int get_min_max(struct usb_mixer_elem_info *cval, int default_min)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 /* for failsafe */
782 cval->min = default_min;
783 cval->max = cval->min + 1;
784 cval->res = 1;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100785 cval->dBmin = cval->dBmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (cval->val_type == USB_MIXER_BOOLEAN ||
788 cval->val_type == USB_MIXER_INV_BOOLEAN) {
789 cval->initialized = 1;
790 } else {
791 int minchn = 0;
792 if (cval->cmask) {
793 int i;
794 for (i = 0; i < MAX_CHANNELS; i++)
795 if (cval->cmask & (1 << i)) {
796 minchn = i + 1;
797 break;
798 }
799 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100800 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
801 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +0200802 snd_printd(KERN_ERR "%d:%d: cannot get min/max values for control %d (id %d)\n",
Takashi Iwai1a4e34e2010-09-16 07:42:34 +0200803 cval->id, snd_usb_ctrl_intf(cval->mixer->chip), cval->control, cval->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return -EINVAL;
805 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100806 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 cval->res = 1;
808 } else {
809 int last_valid_res = cval->res;
810
811 while (cval->res > 1) {
Daniel Mack7b1eda22010-03-11 21:13:22 +0100812 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
813 (cval->control << 8) | minchn, cval->res / 2) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 break;
815 cval->res /= 2;
816 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100817 if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 cval->res = last_valid_res;
819 }
820 if (cval->res == 0)
821 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +0200822
823 /* Additional checks for the proper resolution
824 *
825 * Some devices report smaller resolutions than actually
826 * reacting. They don't return errors but simply clip
827 * to the lower aligned value.
828 */
829 if (cval->min + cval->res < cval->max) {
830 int last_valid_res = cval->res;
831 int saved, test, check;
Takashi Iwai641b4872009-01-15 17:05:24 +0100832 get_cur_mix_raw(cval, minchn, &saved);
Takashi Iwai14790f12006-03-28 17:58:28 +0200833 for (;;) {
834 test = saved;
835 if (test < cval->max)
836 test += cval->res;
837 else
838 test -= cval->res;
839 if (test < cval->min || test > cval->max ||
Takashi Iwai641b4872009-01-15 17:05:24 +0100840 set_cur_mix_value(cval, minchn, 0, test) ||
841 get_cur_mix_raw(cval, minchn, &check)) {
Takashi Iwai14790f12006-03-28 17:58:28 +0200842 cval->res = last_valid_res;
843 break;
844 }
845 if (test == check)
846 break;
847 cval->res *= 2;
848 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100849 set_cur_mix_value(cval, minchn, 0, saved);
Takashi Iwai14790f12006-03-28 17:58:28 +0200850 }
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 cval->initialized = 1;
853 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100854
855 /* USB descriptions contain the dB scale in 1/256 dB unit
856 * while ALSA TLV contains in 1/100 dB unit
857 */
858 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
859 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
860 if (cval->dBmin > cval->dBmax) {
861 /* something is wrong; assume it's either from/to 0dB */
862 if (cval->dBmin < 0)
863 cval->dBmax = 0;
864 else if (cval->dBmin > 0)
865 cval->dBmin = 0;
866 if (cval->dBmin > cval->dBmax) {
867 /* totally crap, return an error */
868 return -EINVAL;
869 }
870 }
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return 0;
873}
874
875
876/* get a feature/mixer unit info */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100877static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100879 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 if (cval->val_type == USB_MIXER_BOOLEAN ||
882 cval->val_type == USB_MIXER_INV_BOOLEAN)
883 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
884 else
885 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
886 uinfo->count = cval->channels;
887 if (cval->val_type == USB_MIXER_BOOLEAN ||
888 cval->val_type == USB_MIXER_INV_BOOLEAN) {
889 uinfo->value.integer.min = 0;
890 uinfo->value.integer.max = 1;
891 } else {
892 if (! cval->initialized)
893 get_min_max(cval, 0);
894 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200895 uinfo->value.integer.max =
896 (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898 return 0;
899}
900
901/* get the current value from feature/mixer unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100902static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100904 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 int c, cnt, val, err;
906
Takashi Iwai641b4872009-01-15 17:05:24 +0100907 ucontrol->value.integer.value[0] = cval->min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (cval->cmask) {
909 cnt = 0;
910 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100911 if (!(cval->cmask & (1 << c)))
912 continue;
913 err = get_cur_mix_value(cval, c + 1, cnt, &val);
914 if (err < 0)
915 return cval->mixer->ignore_ctl_error ? 0 : err;
916 val = get_relative_value(cval, val);
917 ucontrol->value.integer.value[cnt] = val;
918 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 } else {
922 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100923 err = get_cur_mix_value(cval, 0, 0, &val);
924 if (err < 0)
925 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 val = get_relative_value(cval, val);
927 ucontrol->value.integer.value[0] = val;
928 }
929 return 0;
930}
931
932/* put the current value to feature/mixer unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100933static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100935 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 int c, cnt, val, oval, err;
937 int changed = 0;
938
939 if (cval->cmask) {
940 cnt = 0;
941 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100942 if (!(cval->cmask & (1 << c)))
943 continue;
944 err = get_cur_mix_value(cval, c + 1, cnt, &oval);
945 if (err < 0)
946 return cval->mixer->ignore_ctl_error ? 0 : err;
947 val = ucontrol->value.integer.value[cnt];
948 val = get_abs_value(cval, val);
949 if (oval != val) {
950 set_cur_mix_value(cval, c + 1, cnt, val);
951 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
Takashi Iwai641b4872009-01-15 17:05:24 +0100953 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955 } else {
956 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100957 err = get_cur_mix_value(cval, 0, 0, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (err < 0)
Takashi Iwai641b4872009-01-15 17:05:24 +0100959 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 val = ucontrol->value.integer.value[0];
961 val = get_abs_value(cval, val);
962 if (val != oval) {
Takashi Iwai641b4872009-01-15 17:05:24 +0100963 set_cur_mix_value(cval, 0, 0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 changed = 1;
965 }
966 }
967 return changed;
968}
969
Takashi Iwai86e07d32005-11-17 15:08:02 +0100970static struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
972 .name = "", /* will be filled later manually */
973 .info = mixer_ctl_feature_info,
974 .get = mixer_ctl_feature_get,
975 .put = mixer_ctl_feature_put,
976};
977
Daniel Mack23caaf12010-03-11 21:13:25 +0100978/* the read-only variant */
979static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
980 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
981 .name = "", /* will be filled later manually */
982 .info = mixer_ctl_feature_info,
983 .get = mixer_ctl_feature_get,
984 .put = NULL,
985};
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988/*
989 * build a feature control
990 */
991
Takashi Iwai08d1e632009-10-02 14:06:08 +0200992static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
993{
994 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
995}
996
Daniel Mack99fc8642010-03-11 21:13:24 +0100997static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 unsigned int ctl_mask, int control,
Daniel Mack23caaf12010-03-11 21:13:25 +0100999 struct usb_audio_term *iterm, int unitid,
Daniel Macka6a33252010-05-31 13:35:37 +02001000 int readonly_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
Daniel Mack99fc8642010-03-11 21:13:24 +01001002 struct uac_feature_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 unsigned int len = 0;
1004 int mapped_name = 0;
Daniel Mack99fc8642010-03-11 21:13:24 +01001005 int nameid = uac_feature_unit_iFeature(desc);
Takashi Iwai86e07d32005-11-17 15:08:02 +01001006 struct snd_kcontrol *kctl;
1007 struct usb_mixer_elem_info *cval;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001008 const struct usbmix_name_map *map;
Alexey Fisher80aceff2011-03-10 14:53:38 +01001009 unsigned int range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 control++; /* change from zero-based to 1-based value */
1012
Daniel Mack65f25da2010-05-31 13:35:41 +02001013 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /* FIXME: not supported yet */
1015 return;
1016 }
1017
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001018 map = find_map(state, unitid, control);
1019 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return;
1021
Takashi Iwai561b2202005-09-09 14:22:34 +02001022 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 if (! cval) {
1024 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1025 return;
1026 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001027 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 cval->id = unitid;
1029 cval->control = control;
1030 cval->cmask = ctl_mask;
1031 cval->val_type = audio_feature_info[control-1].type;
Daniel Macka6a33252010-05-31 13:35:37 +02001032 if (ctl_mask == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 cval->channels = 1; /* master channel */
Daniel Macka6a33252010-05-31 13:35:37 +02001034 cval->master_readonly = readonly_mask;
1035 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 int i, c = 0;
1037 for (i = 0; i < 16; i++)
1038 if (ctl_mask & (1 << i))
1039 c++;
1040 cval->channels = c;
Daniel Macka6a33252010-05-31 13:35:37 +02001041 cval->ch_readonly = readonly_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043
1044 /* get min/max values */
1045 get_min_max(cval, 0);
1046
Daniel Macka6a33252010-05-31 13:35:37 +02001047 /* if all channels in the mask are marked read-only, make the control
1048 * read-only. set_cur_mix_value() will check the mask again and won't
1049 * issue write commands to read-only channels. */
1050 if (cval->channels == readonly_mask)
Daniel Mack23caaf12010-03-11 21:13:25 +01001051 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1052 else
1053 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (! kctl) {
1056 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1057 kfree(cval);
1058 return;
1059 }
1060 kctl->private_free = usb_mixer_elem_free;
1061
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001062 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 mapped_name = len != 0;
1064 if (! len && nameid)
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001065 len = snd_usb_copy_string_desc(state, nameid,
1066 kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 switch (control) {
Daniel Mack65f25da2010-05-31 13:35:41 +02001069 case UAC_FU_MUTE:
1070 case UAC_FU_VOLUME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 /* determine the control name. the rule is:
1072 * - if a name id is given in descriptor, use it.
1073 * - if the connected input can be determined, then use the name
1074 * of terminal type.
1075 * - if the connected output can be determined, use it.
1076 * - otherwise, anonymous name.
1077 */
1078 if (! len) {
1079 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 1);
1080 if (! len)
1081 len = get_term_name(state, &state->oterm, kctl->id.name, sizeof(kctl->id.name), 1);
1082 if (! len)
1083 len = snprintf(kctl->id.name, sizeof(kctl->id.name),
1084 "Feature %d", unitid);
1085 }
1086 /* determine the stream direction:
1087 * if the connected output is USB stream, then it's likely a
1088 * capture stream. otherwise it should be playback (hopefully :)
1089 */
1090 if (! mapped_name && ! (state->oterm.type >> 16)) {
1091 if ((state->oterm.type & 0xff00) == 0x0100) {
Takashi Iwai08d1e632009-10-02 14:06:08 +02001092 len = append_ctl_name(kctl, " Capture");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 } else {
Takashi Iwai08d1e632009-10-02 14:06:08 +02001094 len = append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
1096 }
Daniel Mack65f25da2010-05-31 13:35:41 +02001097 append_ctl_name(kctl, control == UAC_FU_MUTE ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001098 " Switch" : " Volume");
Daniel Mack65f25da2010-05-31 13:35:41 +02001099 if (control == UAC_FU_VOLUME) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001100 check_mapped_dB(map, cval);
Takashi Iwai59bb7f02011-04-28 09:58:43 +02001101 if (cval->dBmin < cval->dBmax) {
1102 kctl->tlv.c = mixer_vol_tlv;
1103 kctl->vd[0].access |=
1104 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1105 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1106 }
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +02001107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 break;
1109
1110 default:
1111 if (! len)
1112 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1113 sizeof(kctl->id.name));
1114 break;
1115 }
1116
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001117 /* volume control quirks */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001118 switch (state->chip->usb_id) {
1119 case USB_ID(0x0471, 0x0101):
1120 case USB_ID(0x0471, 0x0104):
1121 case USB_ID(0x0471, 0x0105):
1122 case USB_ID(0x0672, 0x1041):
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001123 /* quirk for UDA1321/N101.
1124 * note that detection between firmware 2.1.1.7 (N101)
1125 * and later 2.1.1.21 is not very clear from datasheets.
1126 * I hope that the min value is -15360 for newer firmware --jk
1127 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001128 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
1129 cval->min == -15616) {
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001130 snd_printk(KERN_INFO
1131 "set volume quirk for UDA1321/N101 chip\n");
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001132 cval->max = -256;
1133 }
Alexey Fisher2cf313e2009-07-22 14:57:54 +02001134 break;
1135
1136 case USB_ID(0x046d, 0x09a4):
1137 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1138 snd_printk(KERN_INFO
1139 "set volume quirk for QuickCam E3500\n");
1140 cval->min = 6080;
1141 cval->max = 8768;
1142 cval->res = 192;
1143 }
1144 break;
1145
Alexey Fisherbc3a8a02011-03-10 14:53:39 +01001146 case USB_ID(0x046d, 0x0808):
Alexey Fishera5c7d792010-06-23 14:17:09 +02001147 case USB_ID(0x046d, 0x0809):
1148 case USB_ID(0x046d, 0x0991):
1149 /* Most audio usb devices lie about volume resolution.
1150 * Most Logitech webcams have res = 384.
1151 * Proboly there is some logitech magic behind this number --fishor
1152 */
1153 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
1154 snd_printk(KERN_INFO
1155 "set resolution quirk: cval->res = 384\n");
1156 cval->res = 384;
1157 }
1158 break;
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161
Alexey Fisher80aceff2011-03-10 14:53:38 +01001162 range = (cval->max - cval->min) / cval->res;
1163 /* Are there devices with volume range more than 255? I use a bit more
1164 * to be sure. 384 is a resolution magic number found on Logitech
1165 * devices. It will definitively catch all buggy Logitech devices.
1166 */
1167 if (range > 384) {
1168 snd_printk(KERN_WARNING "usb_audio: Warning! Unlikely big "
1169 "volume range (=%u), cval->res is probably wrong.",
1170 range);
1171 snd_printk(KERN_WARNING "usb_audio: [%d] FU [%s] ch = %d, "
1172 "val = %d/%d/%d", cval->id,
1173 kctl->id.name, cval->channels,
1174 cval->min, cval->max, cval->res);
1175 }
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 snd_printdd(KERN_INFO "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
1178 cval->id, kctl->id.name, cval->channels, cval->min, cval->max, cval->res);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001179 add_control_to_empty(state, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
1182
1183
1184/*
1185 * parse a feature unit
1186 *
1187 * most of controlls are defined here.
1188 */
Daniel Mack28e1b772010-02-22 23:49:09 +01001189static int parse_audio_feature_unit(struct mixer_build *state, int unitid, void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
1191 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001192 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 unsigned int master_bits, first_ch_bits;
1194 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001195 struct uac_feature_unit_descriptor *hdr = _ftr;
1196 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Daniel Mack23caaf12010-03-11 21:13:25 +01001198 if (state->mixer->protocol == UAC_VERSION_1) {
1199 csize = hdr->bControlSize;
1200 channels = (hdr->bLength - 7) / csize - 1;
1201 bmaControls = hdr->bmaControls;
1202 } else {
1203 struct uac2_feature_unit_descriptor *ftr = _ftr;
1204 csize = 4;
Daniel Macke8d0fee2010-05-27 20:15:14 +02001205 channels = (hdr->bLength - 6) / 4 - 1;
Daniel Mack23caaf12010-03-11 21:13:25 +01001206 bmaControls = ftr->bmaControls;
1207 }
1208
1209 if (hdr->bLength < 7 || !csize || hdr->bLength < 7 + csize) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01001210 snd_printk(KERN_ERR "usbaudio: unit %u: invalid UAC_FEATURE_UNIT descriptor\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 return -EINVAL;
1212 }
1213
1214 /* parse the source unit */
Daniel Mack23caaf12010-03-11 21:13:25 +01001215 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return err;
1217
1218 /* determine the input source type and name */
Daniel Mack23caaf12010-03-11 21:13:25 +01001219 if (check_input_term(state, hdr->bSourceID, &iterm) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 return -EINVAL;
1221
Daniel Mack23caaf12010-03-11 21:13:25 +01001222 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001223 /* master configuration quirks */
1224 switch (state->chip->usb_id) {
1225 case USB_ID(0x08bb, 0x2702):
1226 snd_printk(KERN_INFO
1227 "usbmixer: master volume quirk for PCM2702 chip\n");
1228 /* disable non-functional volume control */
Daniel Mack65f25da2010-05-31 13:35:41 +02001229 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001230 break;
1231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (channels > 0)
Daniel Mack23caaf12010-03-11 21:13:25 +01001233 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 else
1235 first_ch_bits = 0;
Daniel Mack23caaf12010-03-11 21:13:25 +01001236
1237 if (state->mixer->protocol == UAC_VERSION_1) {
1238 /* check all control types */
1239 for (i = 0; i < 10; i++) {
1240 unsigned int ch_bits = 0;
1241 for (j = 0; j < channels; j++) {
1242 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
1243 if (mask & (1 << i))
1244 ch_bits |= (1 << j);
1245 }
1246 /* audio class v1 controls are never read-only */
1247 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
1248 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, 0);
1249 if (master_bits & (1 << i))
1250 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001252 } else { /* UAC_VERSION_2 */
1253 for (i = 0; i < 30/2; i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001254 unsigned int ch_bits = 0;
1255 unsigned int ch_read_only = 0;
1256
1257 for (j = 0; j < channels; j++) {
1258 unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001259 if (uac2_control_is_readable(mask, i)) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001260 ch_bits |= (1 << j);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001261 if (!uac2_control_is_writeable(mask, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001262 ch_read_only |= (1 << j);
1263 }
1264 }
1265
Daniel Macka6a33252010-05-31 13:35:37 +02001266 /* NOTE: build_feature_ctl() will mark the control read-only if all channels
1267 * are marked read-only in the descriptors. Otherwise, the control will be
1268 * reported as writeable, but the driver will not actually issue a write
1269 * command for read-only channels */
Daniel Mack23caaf12010-03-11 21:13:25 +01001270 if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
Daniel Macka6a33252010-05-31 13:35:37 +02001271 build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, ch_read_only);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001272 if (uac2_control_is_readable(master_bits, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001273 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001274 !uac2_control_is_writeable(master_bits, i));
Daniel Mack23caaf12010-03-11 21:13:25 +01001275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
1278 return 0;
1279}
1280
1281
1282/*
1283 * Mixer Unit
1284 */
1285
1286/*
1287 * build a mixer unit control
1288 *
1289 * the callbacks are identical with feature unit.
1290 * input channel number (zero based) is given in control field instead.
1291 */
1292
Daniel Mack99fc8642010-03-11 21:13:24 +01001293static void build_mixer_unit_ctl(struct mixer_build *state,
1294 struct uac_mixer_unit_descriptor *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001296 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001298 struct usb_mixer_elem_info *cval;
Daniel Mack99fc8642010-03-11 21:13:24 +01001299 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001301 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001302 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001304 map = find_map(state, unitid, 0);
1305 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 return;
1307
Takashi Iwai561b2202005-09-09 14:22:34 +02001308 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 if (! cval)
1310 return;
1311
Clemens Ladisch84957a82005-04-29 16:23:13 +02001312 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 cval->id = unitid;
1314 cval->control = in_ch + 1; /* based on 1 */
1315 cval->val_type = USB_MIXER_S16;
1316 for (i = 0; i < num_outs; i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001317 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol), in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 cval->cmask |= (1 << i);
1319 cval->channels++;
1320 }
1321 }
1322
1323 /* get min/max values */
1324 get_min_max(cval, 0);
1325
1326 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1327 if (! kctl) {
1328 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1329 kfree(cval);
1330 return;
1331 }
1332 kctl->private_free = usb_mixer_elem_free;
1333
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001334 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 if (! len)
1336 len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0);
1337 if (! len)
1338 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02001339 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n",
1342 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001343 add_control_to_empty(state, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
1346
1347/*
1348 * parse a mixer unit
1349 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001350static int parse_audio_mixer_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Daniel Mack99fc8642010-03-11 21:13:24 +01001352 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001353 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 int input_pins, num_ins, num_outs;
1355 int pin, ich, err;
1356
Daniel Mack99fc8642010-03-11 21:13:24 +01001357 if (desc->bLength < 11 || ! (input_pins = desc->bNrInPins) || ! (num_outs = uac_mixer_unit_bNrChannels(desc))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 snd_printk(KERN_ERR "invalid MIXER UNIT descriptor %d\n", unitid);
1359 return -EINVAL;
1360 }
1361 /* no bmControls field (e.g. Maya44) -> ignore */
Daniel Mack99fc8642010-03-11 21:13:24 +01001362 if (desc->bLength <= 10 + input_pins) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 snd_printdd(KERN_INFO "MU %d has no bmControls field\n", unitid);
1364 return 0;
1365 }
1366
1367 num_ins = 0;
1368 ich = 0;
1369 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001370 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (err < 0)
1372 return err;
Daniel Mack99fc8642010-03-11 21:13:24 +01001373 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 if (err < 0)
1375 return err;
1376 num_ins += iterm.channels;
1377 for (; ich < num_ins; ++ich) {
1378 int och, ich_has_controls = 0;
1379
1380 for (och = 0; och < num_outs; ++och) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001381 if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 ich, och, num_outs)) {
1383 ich_has_controls = 1;
1384 break;
1385 }
1386 }
1387 if (ich_has_controls)
1388 build_mixer_unit_ctl(state, desc, pin, ich,
1389 unitid, &iterm);
1390 }
1391 }
1392 return 0;
1393}
1394
1395
1396/*
1397 * Processing Unit / Extension Unit
1398 */
1399
1400/* get callback for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001401static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001403 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 int err, val;
1405
1406 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001407 if (err < 0 && cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 ucontrol->value.integer.value[0] = cval->min;
1409 return 0;
1410 }
1411 if (err < 0)
1412 return err;
1413 val = get_relative_value(cval, val);
1414 ucontrol->value.integer.value[0] = val;
1415 return 0;
1416}
1417
1418/* put callback for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001419static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001421 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 int val, oval, err;
1423
1424 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1425 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001426 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return 0;
1428 return err;
1429 }
1430 val = ucontrol->value.integer.value[0];
1431 val = get_abs_value(cval, val);
1432 if (val != oval) {
1433 set_cur_ctl_value(cval, cval->control << 8, val);
1434 return 1;
1435 }
1436 return 0;
1437}
1438
1439/* alsa control interface for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001440static struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1442 .name = "", /* will be filled later */
1443 .info = mixer_ctl_feature_info,
1444 .get = mixer_ctl_procunit_get,
1445 .put = mixer_ctl_procunit_put,
1446};
1447
1448
1449/*
1450 * predefined data for processing units
1451 */
1452struct procunit_value_info {
1453 int control;
1454 char *suffix;
1455 int val_type;
1456 int min_value;
1457};
1458
1459struct procunit_info {
1460 int type;
1461 char *name;
1462 struct procunit_value_info *values;
1463};
1464
1465static struct procunit_value_info updown_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001466 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1467 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 { 0 }
1469};
1470static struct procunit_value_info prologic_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001471 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1472 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 { 0 }
1474};
1475static struct procunit_value_info threed_enh_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001476 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1477 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 { 0 }
1479};
1480static struct procunit_value_info reverb_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001481 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1482 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1483 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1484 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 { 0 }
1486};
1487static struct procunit_value_info chorus_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001488 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1489 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1490 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1491 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 { 0 }
1493};
1494static struct procunit_value_info dcr_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001495 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1496 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1497 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1498 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1499 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1500 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 { 0 }
1502};
1503
1504static struct procunit_info procunits[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001505 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1506 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1507 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1508 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1509 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1510 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 { 0 },
1512};
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001513/*
1514 * predefined data for extension units
1515 */
1516static struct procunit_value_info clock_rate_xu_info[] = {
Daniel Macke213e9c2010-05-11 18:13:50 +02001517 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1518 { 0 }
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001519};
1520static struct procunit_value_info clock_source_xu_info[] = {
1521 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1522 { 0 }
1523};
1524static struct procunit_value_info spdif_format_xu_info[] = {
1525 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1526 { 0 }
1527};
1528static struct procunit_value_info soft_limit_xu_info[] = {
1529 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1530 { 0 }
1531};
1532static struct procunit_info extunits[] = {
1533 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1534 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1535 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1536 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1537 { 0 }
1538};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539/*
1540 * build a processing/extension unit
1541 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001542static 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 -07001543{
Daniel Mack99fc8642010-03-11 21:13:24 +01001544 struct uac_processing_unit_descriptor *desc = raw_desc;
1545 int num_ins = desc->bNrInPins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001546 struct usb_mixer_elem_info *cval;
1547 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 int i, err, nameid, type, len;
1549 struct procunit_info *info;
1550 struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001551 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 static struct procunit_value_info default_value_info[] = {
1553 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1554 { 0 }
1555 };
1556 static struct procunit_info default_info = {
1557 0, NULL, default_value_info
1558 };
1559
Daniel Mack23caaf12010-03-11 21:13:25 +01001560 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1561 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 snd_printk(KERN_ERR "invalid %s descriptor (id %d)\n", name, unitid);
1563 return -EINVAL;
1564 }
1565
1566 for (i = 0; i < num_ins; i++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001567 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 return err;
1569 }
1570
Daniel Mack99fc8642010-03-11 21:13:24 +01001571 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 for (info = list; info && info->type; info++)
1573 if (info->type == type)
1574 break;
1575 if (! info || ! info->type)
1576 info = &default_info;
1577
1578 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001579 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01001580
1581 if (! (controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 continue;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001583 map = find_map(state, unitid, valinfo->control);
1584 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02001586 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (! cval) {
1588 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1589 return -ENOMEM;
1590 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001591 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 cval->id = unitid;
1593 cval->control = valinfo->control;
1594 cval->val_type = valinfo->val_type;
1595 cval->channels = 1;
1596
1597 /* get min/max values */
Daniel Mack65f25da2010-05-31 13:35:41 +02001598 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001599 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 /* FIXME: hard-coded */
1601 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001602 cval->max = control_spec[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 cval->res = 1;
1604 cval->initialized = 1;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001605 } else {
1606 if (type == USB_XU_CLOCK_RATE) {
Joseph Teichman1cdfa9f2011-02-08 01:22:36 -05001607 /* E-Mu USB 0404/0202/TrackerPre/0204
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001608 * samplerate control quirk
1609 */
1610 cval->min = 0;
1611 cval->max = 5;
1612 cval->res = 1;
1613 cval->initialized = 1;
1614 } else
1615 get_min_max(cval, valinfo->min_value);
1616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
1619 if (! kctl) {
1620 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1621 kfree(cval);
1622 return -ENOMEM;
1623 }
1624 kctl->private_free = usb_mixer_elem_free;
1625
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001626 if (check_mapped_name(map, kctl->id.name,
1627 sizeof(kctl->id.name)))
1628 /* nothing */ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 else if (info->name)
1630 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
1631 else {
Daniel Mack23caaf12010-03-11 21:13:25 +01001632 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 len = 0;
1634 if (nameid)
1635 len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1636 if (! len)
1637 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1638 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02001639 append_ctl_name(kctl, " ");
1640 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642 snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n",
1643 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001644 if ((err = add_control_to_empty(state, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 return err;
1646 }
1647 return 0;
1648}
1649
1650
Daniel Mack99fc8642010-03-11 21:13:24 +01001651static int parse_audio_processing_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
Daniel Mack99fc8642010-03-11 21:13:24 +01001653 return build_audio_procunit(state, unitid, raw_desc, procunits, "Processing Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654}
1655
Daniel Mack99fc8642010-03-11 21:13:24 +01001656static int parse_audio_extension_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
Daniel Mack99fc8642010-03-11 21:13:24 +01001658 /* Note that we parse extension units with processing unit descriptors.
1659 * That's ok as the layout is the same */
1660 return build_audio_procunit(state, unitid, raw_desc, extunits, "Extension Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
1663
1664/*
1665 * Selector Unit
1666 */
1667
1668/* info callback for selector unit
1669 * use an enumerator type for routing
1670 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001671static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001673 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01001674 const char **itemlist = (const char **)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Takashi Iwai5e246b82008-08-08 17:12:47 +02001676 if (snd_BUG_ON(!itemlist))
1677 return -EINVAL;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01001678 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
1681/* get callback for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001682static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001684 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 int val, err;
1686
Daniel Mack09414202010-05-31 13:35:44 +02001687 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001689 if (cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 ucontrol->value.enumerated.item[0] = 0;
1691 return 0;
1692 }
1693 return err;
1694 }
1695 val = get_relative_value(cval, val);
1696 ucontrol->value.enumerated.item[0] = val;
1697 return 0;
1698}
1699
1700/* put callback for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001701static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001703 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 int val, oval, err;
1705
Daniel Mack09414202010-05-31 13:35:44 +02001706 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001708 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 return 0;
1710 return err;
1711 }
1712 val = ucontrol->value.enumerated.item[0];
1713 val = get_abs_value(cval, val);
1714 if (val != oval) {
Daniel Mack09414202010-05-31 13:35:44 +02001715 set_cur_ctl_value(cval, cval->control << 8, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return 1;
1717 }
1718 return 0;
1719}
1720
1721/* alsa control interface for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001722static struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1724 .name = "", /* will be filled later */
1725 .info = mixer_ctl_selector_info,
1726 .get = mixer_ctl_selector_get,
1727 .put = mixer_ctl_selector_put,
1728};
1729
1730
1731/* private free callback.
1732 * free both private_data and private_value
1733 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001734static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
1736 int i, num_ins = 0;
1737
1738 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001739 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 num_ins = cval->max;
1741 kfree(cval);
1742 kctl->private_data = NULL;
1743 }
1744 if (kctl->private_value) {
1745 char **itemlist = (char **)kctl->private_value;
1746 for (i = 0; i < num_ins; i++)
1747 kfree(itemlist[i]);
1748 kfree(itemlist);
1749 kctl->private_value = 0;
1750 }
1751}
1752
1753/*
1754 * parse a selector unit
1755 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001756static int parse_audio_selector_unit(struct mixer_build *state, int unitid, void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
Daniel Mack99fc8642010-03-11 21:13:24 +01001758 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 unsigned int i, nameid, len;
1760 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001761 struct usb_mixer_elem_info *cval;
1762 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001763 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 char **namelist;
1765
Daniel Mack99fc8642010-03-11 21:13:24 +01001766 if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
1768 return -EINVAL;
1769 }
1770
Daniel Mack99fc8642010-03-11 21:13:24 +01001771 for (i = 0; i < desc->bNrInPins; i++) {
1772 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 return err;
1774 }
1775
Daniel Mack99fc8642010-03-11 21:13:24 +01001776 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 return 0;
1778
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001779 map = find_map(state, unitid, 0);
1780 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 return 0;
1782
Takashi Iwai561b2202005-09-09 14:22:34 +02001783 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (! cval) {
1785 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1786 return -ENOMEM;
1787 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02001788 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 cval->id = unitid;
1790 cval->val_type = USB_MIXER_U8;
1791 cval->channels = 1;
1792 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001793 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 cval->res = 1;
1795 cval->initialized = 1;
1796
Daniel Mack09414202010-05-31 13:35:44 +02001797 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
1798 cval->control = UAC2_CX_CLOCK_SELECTOR;
1799 else
1800 cval->control = 0;
1801
Daniel Mack99fc8642010-03-11 21:13:24 +01001802 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (! namelist) {
1804 snd_printk(KERN_ERR "cannot malloc\n");
1805 kfree(cval);
1806 return -ENOMEM;
1807 }
1808#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01001809 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001810 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 len = 0;
1812 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
1813 if (! namelist[i]) {
1814 snd_printk(KERN_ERR "cannot malloc\n");
Mariusz Kozlowski7fbe3ca2007-01-08 11:25:30 +01001815 while (i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 kfree(namelist[i]);
1817 kfree(namelist);
1818 kfree(cval);
1819 return -ENOMEM;
1820 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02001821 len = check_mapped_selector_name(state, unitid, i, namelist[i],
1822 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01001823 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
1825 if (! len)
1826 sprintf(namelist[i], "Input %d", i);
1827 }
1828
1829 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
1830 if (! kctl) {
1831 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
Jesper Juhl878b4782006-03-20 11:27:13 +01001832 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 kfree(cval);
1834 return -ENOMEM;
1835 }
1836 kctl->private_value = (unsigned long)namelist;
1837 kctl->private_free = usb_mixer_selector_elem_free;
1838
Daniel Mack99fc8642010-03-11 21:13:24 +01001839 nameid = uac_selector_unit_iSelector(desc);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001840 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (len)
1842 ;
1843 else if (nameid)
1844 snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
1845 else {
1846 len = get_term_name(state, &state->oterm,
1847 kctl->id.name, sizeof(kctl->id.name), 0);
1848 if (! len)
1849 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
1850
Daniel Mack09414202010-05-31 13:35:44 +02001851 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
1852 append_ctl_name(kctl, " Clock Source");
1853 else if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02001854 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02001856 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
1858
1859 snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
Daniel Mack99fc8642010-03-11 21:13:24 +01001860 cval->id, kctl->id.name, desc->bNrInPins);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001861 if ((err = add_control_to_empty(state, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return err;
1863
1864 return 0;
1865}
1866
1867
1868/*
1869 * parse an audio unit recursively
1870 */
1871
Takashi Iwai86e07d32005-11-17 15:08:02 +01001872static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
1874 unsigned char *p1;
1875
1876 if (test_and_set_bit(unitid, state->unitbitmap))
1877 return 0; /* the unit already visited */
1878
1879 p1 = find_audio_control_unit(state, unitid);
1880 if (!p1) {
1881 snd_printk(KERN_ERR "usbaudio: unit %d not found!\n", unitid);
1882 return -EINVAL;
1883 }
1884
1885 switch (p1[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01001886 case UAC_INPUT_TERMINAL:
Daniel Mack09414202010-05-31 13:35:44 +02001887 case UAC2_CLOCK_SOURCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return 0; /* NOP */
Daniel Mackde48c7b2010-02-22 23:49:13 +01001889 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 return parse_audio_mixer_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001891 case UAC_SELECTOR_UNIT:
Daniel Mack09414202010-05-31 13:35:44 +02001892 case UAC2_CLOCK_SELECTOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return parse_audio_selector_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01001894 case UAC_FEATURE_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return parse_audio_feature_unit(state, unitid, p1);
Daniel Mack69da9bc2010-06-16 17:57:28 +02001896 case UAC1_PROCESSING_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01001897 /* UAC2_EFFECT_UNIT has the same value */
1898 if (state->mixer->protocol == UAC_VERSION_1)
1899 return parse_audio_processing_unit(state, unitid, p1);
1900 else
1901 return 0; /* FIXME - effect units not implemented yet */
Daniel Mack69da9bc2010-06-16 17:57:28 +02001902 case UAC1_EXTENSION_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01001903 /* UAC2_PROCESSING_UNIT_V2 has the same value */
1904 if (state->mixer->protocol == UAC_VERSION_1)
1905 return parse_audio_extension_unit(state, unitid, p1);
1906 else /* UAC_VERSION_2 */
1907 return parse_audio_processing_unit(state, unitid, p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 default:
1909 snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
1910 return -EINVAL;
1911 }
1912}
1913
Clemens Ladisch84957a82005-04-29 16:23:13 +02001914static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
1915{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02001916 kfree(mixer->id_elems);
1917 if (mixer->urb) {
1918 kfree(mixer->urb->transfer_buffer);
1919 usb_free_urb(mixer->urb);
1920 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01001921 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02001922 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001923 kfree(mixer);
1924}
1925
Takashi Iwai86e07d32005-11-17 15:08:02 +01001926static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02001927{
1928 struct usb_mixer_interface *mixer = device->device_data;
1929 snd_usb_mixer_free(mixer);
1930 return 0;
1931}
1932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933/*
1934 * create mixer controls
1935 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01001936 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02001938static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001940 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 int err;
1942 const struct usbmix_ctl_map *map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001943 struct usb_host_interface *hostif;
Daniel Mack23caaf12010-03-11 21:13:25 +01001944 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Daniel Mack3d8d4dc2010-06-16 17:57:31 +02001946 hostif = mixer->chip->ctrl_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02001948 state.chip = mixer->chip;
1949 state.mixer = mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 state.buffer = hostif->extra;
1951 state.buflen = hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02001954 for (map = usbmix_ctl_maps; map->id; map++) {
1955 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02001957 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001958 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 break;
1960 }
1961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Daniel Mack23caaf12010-03-11 21:13:25 +01001963 p = NULL;
1964 while ((p = snd_usb_find_csint_desc(hostif->extra, hostif->extralen, p, UAC_OUTPUT_TERMINAL)) != NULL) {
1965 if (mixer->protocol == UAC_VERSION_1) {
Daniel Mack69da9bc2010-06-16 17:57:28 +02001966 struct uac1_output_terminal_descriptor *desc = p;
Daniel Mack23caaf12010-03-11 21:13:25 +01001967
1968 if (desc->bLength < sizeof(*desc))
1969 continue; /* invalid descriptor? */
1970 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1971 state.oterm.id = desc->bTerminalID;
1972 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1973 state.oterm.name = desc->iTerminal;
1974 err = parse_audio_unit(&state, desc->bSourceID);
1975 if (err < 0)
1976 return err;
1977 } else { /* UAC_VERSION_2 */
1978 struct uac2_output_terminal_descriptor *desc = p;
1979
1980 if (desc->bLength < sizeof(*desc))
1981 continue; /* invalid descriptor? */
1982 set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
1983 state.oterm.id = desc->bTerminalID;
1984 state.oterm.type = le16_to_cpu(desc->wTerminalType);
1985 state.oterm.name = desc->iTerminal;
1986 err = parse_audio_unit(&state, desc->bSourceID);
1987 if (err < 0)
1988 return err;
Daniel Mack09414202010-05-31 13:35:44 +02001989
1990 /* for UAC2, use the same approach to also add the clock selectors */
1991 err = parse_audio_unit(&state, desc->bCSourceID);
1992 if (err < 0)
1993 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +01001994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return 0;
1998}
Clemens Ladisch84957a82005-04-29 16:23:13 +02001999
Daniel Mack7b1eda22010-03-11 21:13:22 +01002000void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002001{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002002 struct usb_mixer_elem_info *info;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002003
2004 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
2005 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2006 info->elem_id);
2007}
2008
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002009static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
2010 int unitid,
2011 struct usb_mixer_elem_info *cval)
2012{
2013 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
2014 "S8", "U8", "S16", "U16"};
2015 snd_iprintf(buffer, " Unit: %i\n", unitid);
2016 if (cval->elem_id)
2017 snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
2018 cval->elem_id->name, cval->elem_id->index);
2019 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
2020 "channels=%i, type=\"%s\"\n", cval->id,
2021 cval->control, cval->cmask, cval->channels,
2022 val_types[cval->val_type]);
2023 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
2024 cval->min, cval->max, cval->dBmin, cval->dBmax);
2025}
2026
2027static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
2028 struct snd_info_buffer *buffer)
2029{
2030 struct snd_usb_audio *chip = entry->private_data;
2031 struct usb_mixer_interface *mixer;
2032 struct usb_mixer_elem_info *cval;
2033 int unitid;
2034
2035 list_for_each_entry(mixer, &chip->mixer_list, list) {
2036 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002037 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
Daniel Mack3d8d4dc2010-06-16 17:57:31 +02002038 chip->usb_id, snd_usb_ctrl_intf(chip),
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002039 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002040 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
2041 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
2042 for (cval = mixer->id_elems[unitid]; cval;
2043 cval = cval->next_id_elem)
2044 snd_usb_mixer_dump_cval(buffer, unitid, cval);
2045 }
2046 }
2047}
2048
Daniel Macke213e9c2010-05-11 18:13:50 +02002049static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
2050 int attribute, int value, int index)
2051{
2052 struct usb_mixer_elem_info *info;
2053 __u8 unitid = (index >> 8) & 0xff;
2054 __u8 control = (value >> 8) & 0xff;
2055 __u8 channel = value & 0xff;
2056
2057 if (channel >= MAX_CHANNELS) {
2058 snd_printk(KERN_DEBUG "%s(): bogus channel number %d\n",
2059 __func__, channel);
2060 return;
2061 }
2062
2063 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem) {
2064 if (info->control != control)
2065 continue;
2066
2067 switch (attribute) {
2068 case UAC2_CS_CUR:
2069 /* invalidate cache, so the value is read from the device */
2070 if (channel)
2071 info->cached &= ~(1 << channel);
2072 else /* master channel */
2073 info->cached = 0;
2074
2075 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2076 info->elem_id);
2077 break;
2078
2079 case UAC2_CS_RANGE:
2080 /* TODO */
2081 break;
2082
2083 case UAC2_CS_MEM:
2084 /* TODO */
2085 break;
2086
2087 default:
2088 snd_printk(KERN_DEBUG "unknown attribute %d in interrupt\n",
2089 attribute);
2090 break;
2091 } /* switch */
2092 }
2093}
2094
2095static void snd_usb_mixer_interrupt(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002096{
2097 struct usb_mixer_interface *mixer = urb->context;
Daniel Macke213e9c2010-05-11 18:13:50 +02002098 int len = urb->actual_length;
Oliver Neukumedf7de32011-03-11 13:19:43 +01002099 int ustatus = urb->status;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002100
Oliver Neukumedf7de32011-03-11 13:19:43 +01002101 if (ustatus != 0)
Daniel Macke213e9c2010-05-11 18:13:50 +02002102 goto requeue;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002103
Daniel Macke213e9c2010-05-11 18:13:50 +02002104 if (mixer->protocol == UAC_VERSION_1) {
2105 struct uac1_status_word *status;
2106
2107 for (status = urb->transfer_buffer;
2108 len >= sizeof(*status);
2109 len -= sizeof(*status), status++) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002110 snd_printd(KERN_DEBUG "status interrupt: %02x %02x\n",
Daniel Macke213e9c2010-05-11 18:13:50 +02002111 status->bStatusType,
2112 status->bOriginator);
2113
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002114 /* ignore any notifications not from the control interface */
Daniel Macke213e9c2010-05-11 18:13:50 +02002115 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2116 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002117 continue;
Daniel Macke213e9c2010-05-11 18:13:50 +02002118
2119 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2120 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
Clemens Ladischb259b102005-04-29 16:29:28 +02002121 else
Daniel Macke213e9c2010-05-11 18:13:50 +02002122 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2123 }
2124 } else { /* UAC_VERSION_2 */
2125 struct uac2_interrupt_data_msg *msg;
2126
2127 for (msg = urb->transfer_buffer;
2128 len >= sizeof(*msg);
2129 len -= sizeof(*msg), msg++) {
2130 /* drop vendor specific and endpoint requests */
2131 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2132 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2133 continue;
2134
2135 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2136 le16_to_cpu(msg->wValue),
2137 le16_to_cpu(msg->wIndex));
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002138 }
2139 }
Daniel Macke213e9c2010-05-11 18:13:50 +02002140
2141requeue:
Oliver Neukumedf7de32011-03-11 13:19:43 +01002142 if (ustatus != -ENOENT && ustatus != -ECONNRESET && ustatus != -ESHUTDOWN) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002143 urb->dev = mixer->chip->dev;
2144 usb_submit_urb(urb, GFP_ATOMIC);
2145 }
2146}
2147
Oliver Neukumedf7de32011-03-11 13:19:43 +01002148/* stop any bus activity of a mixer */
2149void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
2150{
2151 usb_kill_urb(mixer->urb);
2152 usb_kill_urb(mixer->rc_urb);
2153}
2154
2155int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
2156{
2157 int err;
2158
2159 if (mixer->urb) {
2160 err = usb_submit_urb(mixer->urb, GFP_NOIO);
2161 if (err < 0)
2162 return err;
2163 }
2164
2165 return 0;
2166}
2167
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002168/* create the handler for the optional status interrupt endpoint */
2169static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2170{
2171 struct usb_host_interface *hostif;
2172 struct usb_endpoint_descriptor *ep;
2173 void *transfer_buffer;
2174 int buffer_length;
2175 unsigned int epnum;
2176
Daniel Mack3d8d4dc2010-06-16 17:57:31 +02002177 hostif = mixer->chip->ctrl_intf;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002178 /* we need one interrupt input endpoint */
2179 if (get_iface_desc(hostif)->bNumEndpoints < 1)
2180 return 0;
2181 ep = get_endpoint(hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01002182 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002183 return 0;
2184
Julia Lawall42a6e662008-12-29 11:23:02 +01002185 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002186 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2187 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2188 if (!transfer_buffer)
2189 return -ENOMEM;
2190 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2191 if (!mixer->urb) {
2192 kfree(transfer_buffer);
2193 return -ENOMEM;
2194 }
2195 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2196 usb_rcvintpipe(mixer->chip->dev, epnum),
2197 transfer_buffer, buffer_length,
Daniel Macke213e9c2010-05-11 18:13:50 +02002198 snd_usb_mixer_interrupt, mixer, ep->bInterval);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002199 usb_submit_urb(mixer->urb, GFP_KERNEL);
2200 return 0;
2201}
2202
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002203int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2204 int ignore_error)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002205{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002206 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002207 .dev_free = snd_usb_mixer_dev_free
2208 };
2209 struct usb_mixer_interface *mixer;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002210 struct snd_info_entry *entry;
Daniel Mack7b8a0432010-02-22 23:49:12 +01002211 struct usb_host_interface *host_iface;
Daniel Mack23caaf12010-03-11 21:13:25 +01002212 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002213
2214 strcpy(chip->card->mixername, "USB Mixer");
2215
Takashi Iwai561b2202005-09-09 14:22:34 +02002216 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002217 if (!mixer)
2218 return -ENOMEM;
2219 mixer->chip = chip;
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002220 mixer->ignore_ctl_error = ignore_error;
Jaroslav Kysela291186e2010-02-16 11:55:18 +01002221 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2222 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002223 if (!mixer->id_elems) {
2224 kfree(mixer);
2225 return -ENOMEM;
2226 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002227
Daniel Mack7b8a0432010-02-22 23:49:12 +01002228 host_iface = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
Clemens Ladischa2acad82010-09-03 10:53:11 +02002229 switch (get_iface_desc(host_iface)->bInterfaceProtocol) {
2230 case UAC_VERSION_1:
2231 default:
2232 mixer->protocol = UAC_VERSION_1;
2233 break;
2234 case UAC_VERSION_2:
2235 mixer->protocol = UAC_VERSION_2;
2236 break;
2237 }
Daniel Mack7b8a0432010-02-22 23:49:12 +01002238
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002239 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002240 (err = snd_usb_mixer_status_create(mixer)) < 0)
2241 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002242
Daniel Mack7b1eda22010-03-11 21:13:22 +01002243 snd_usb_mixer_apply_create_quirk(mixer);
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02002244
Clemens Ladisch84957a82005-04-29 16:23:13 +02002245 err = snd_device_new(chip->card, SNDRV_DEV_LOWLEVEL, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002246 if (err < 0)
2247 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002248
2249 if (list_empty(&chip->mixer_list) &&
2250 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2251 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2252
Clemens Ladisch84957a82005-04-29 16:23:13 +02002253 list_add(&mixer->list, &chip->mixer_list);
2254 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002255
2256_error:
2257 snd_usb_mixer_free(mixer);
2258 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002259}
2260
2261void snd_usb_mixer_disconnect(struct list_head *p)
2262{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002263 struct usb_mixer_interface *mixer;
Daniel Mack7b1eda22010-03-11 21:13:22 +01002264
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002265 mixer = list_entry(p, struct usb_mixer_interface, list);
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002266 usb_kill_urb(mixer->urb);
2267 usb_kill_urb(mixer->rc_urb);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002268}