blob: 0b728d886f0d071460ffa2765ce558be43399435 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Mixer control part
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
11 *
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 */
28
Daniel Mack157a57b2010-06-16 17:57:30 +020029/*
30 * TODOs, for both the mixer and the streaming interfaces:
31 *
32 * - support for UAC2 effect units
33 * - support for graphical equalizers
34 * - RANGE and MEM set commands (UAC2)
35 * - RANGE and MEM interrupt dispatchers (UAC2)
36 * - audio channel clustering (UAC2)
37 * - audio sample rate converter units (UAC2)
38 * - proper handling of clock multipliers (UAC2)
39 * - dispatch clock change notifications (UAC2)
40 * - stop PCM streams which use a clock that became invalid
41 * - stop PCM streams which use a clock selector that has changed
42 * - parse available sample rates again when clock sources changed
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/bitops.h>
46#include <linux/init.h>
47#include <linux/list.h>
48#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/usb.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010051#include <linux/usb/audio.h>
Daniel Mack23caaf12010-03-11 21:13:25 +010052#include <linux/usb/audio-v2.h>
Daniel Mack28e1b772010-02-22 23:49:09 +010053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <sound/core.h>
55#include <sound/control.h>
Clemens Ladischb259b102005-04-29 16:29:28 +020056#include <sound/hwdep.h>
Clemens Ladischaafad562005-05-10 14:47:38 +020057#include <sound/info.h>
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +020058#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include "usbaudio.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010061#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010062#include "helper.h"
Daniel Mack7b1eda22010-03-11 21:13:22 +010063#include "mixer_quirks.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010064#include "power.h"
Raimonds Cicans4d1a70d2006-05-05 09:49:53 +020065
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +010066#define MAX_ID_ELEMS 256
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068struct usb_audio_term {
69 int id;
70 int type;
71 int channels;
72 unsigned int chconfig;
73 int name;
74};
75
76struct usbmix_name_map;
77
Takashi Iwai86e07d32005-11-17 15:08:02 +010078struct mixer_build {
79 struct snd_usb_audio *chip;
Clemens Ladisch84957a82005-04-29 16:23:13 +020080 struct usb_mixer_interface *mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned char *buffer;
82 unsigned int buflen;
Jaroslav Kysela291186e2010-02-16 11:55:18 +010083 DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
Takashi Iwai86e07d32005-11-17 15:08:02 +010084 struct usb_audio_term oterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 const struct usbmix_name_map *map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +020086 const struct usbmix_selector_map *selector_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
Joseph Teichman1cdfa9f2011-02-08 01:22:36 -050089/*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -080090enum {
91 USB_XU_CLOCK_RATE = 0xe301,
92 USB_XU_CLOCK_SOURCE = 0xe302,
93 USB_XU_DIGITAL_IO_STATUS = 0xe303,
94 USB_XU_DEVICE_OPTIONS = 0xe304,
95 USB_XU_DIRECT_MONITORING = 0xe305,
96 USB_XU_METERING = 0xe306
97};
98enum {
99 USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
100 USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
101 USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
102 USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
103};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/*
106 * manual mapping of mixer names
107 * if the mixer topology is too complicated and the parsed names are
108 * ambiguous, add the entries in usbmixer_maps.c.
109 */
Daniel Mackf0b5e632010-03-11 21:13:23 +0100110#include "mixer_maps.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100112static const struct usbmix_name_map *
113find_map(struct mixer_build *state, int unitid, int control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100115 const struct usbmix_name_map *p = state->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100117 if (!p)
118 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 for (p = state->map; p->id; p++) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100121 if (p->id == unitid &&
122 (!control || !p->control || control == p->control))
123 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100125 return NULL;
126}
127
128/* get the mapped name if the unit matches */
129static int
130check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
131{
132 if (!p || !p->name)
133 return 0;
134
135 buflen--;
136 return strlcpy(buf, p->name, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139/* check whether the control should be ignored */
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100140static inline int
141check_ignored_ctl(const struct usbmix_name_map *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100143 if (!p || p->name || p->dB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return 0;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100145 return 1;
146}
147
148/* dB mapping */
149static inline void check_mapped_dB(const struct usbmix_name_map *p,
150 struct usb_mixer_elem_info *cval)
151{
152 if (p && p->dB) {
153 cval->dBmin = p->dB->min;
154 cval->dBmax = p->dB->max;
Takashi Iwai38b65192011-08-19 07:55:10 +0200155 cval->initialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200159/* get the mapped selector source name */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100160static int check_mapped_selector_name(struct mixer_build *state, int unitid,
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200161 int index, char *buf, int buflen)
162{
163 const struct usbmix_selector_map *p;
164
Daniel Mack6bc170e2014-05-24 10:58:16 +0200165 if (!state->selector_map)
Clemens Ladisch8e062ec2005-04-22 15:49:52 +0200166 return 0;
167 for (p = state->selector_map; p->id; p++) {
168 if (p->id == unitid && index < p->count)
169 return strlcpy(buf, p->names[index], buflen);
170 }
171 return 0;
172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
175 * find an audio control unit with the given unit id
176 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200177static void *find_audio_control_unit(struct mixer_build *state,
178 unsigned char unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Daniel Mack67e1daa2010-05-31 13:35:43 +0200180 /* we just parse the header */
181 struct uac_feature_unit_descriptor *hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Daniel Mack67e1daa2010-05-31 13:35:43 +0200183 while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
184 USB_DT_CS_INTERFACE)) != NULL) {
185 if (hdr->bLength >= 4 &&
186 hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
187 hdr->bDescriptorSubtype <= UAC2_SAMPLE_RATE_CONVERTER &&
188 hdr->bUnitID == unit)
189 return hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
Daniel Mack67e1daa2010-05-31 13:35:43 +0200191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return NULL;
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/*
196 * copy a string with the given id
197 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200198static int snd_usb_copy_string_desc(struct mixer_build *state,
199 int index, char *buf, int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
202 buf[len] = 0;
203 return len;
204}
205
206/*
207 * convert from the byte/word on usb descriptor to the zero-based integer
208 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100209static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 switch (cval->val_type) {
212 case USB_MIXER_BOOLEAN:
213 return !!val;
214 case USB_MIXER_INV_BOOLEAN:
215 return !val;
216 case USB_MIXER_U8:
217 val &= 0xff;
218 break;
219 case USB_MIXER_S8:
220 val &= 0xff;
221 if (val >= 0x80)
222 val -= 0x100;
223 break;
224 case USB_MIXER_U16:
225 val &= 0xffff;
226 break;
227 case USB_MIXER_S16:
228 val &= 0xffff;
229 if (val >= 0x8000)
230 val -= 0x10000;
231 break;
232 }
233 return val;
234}
235
236/*
237 * convert from the zero-based int to the byte/word for usb descriptor
238 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100239static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 switch (cval->val_type) {
242 case USB_MIXER_BOOLEAN:
243 return !!val;
244 case USB_MIXER_INV_BOOLEAN:
245 return !val;
246 case USB_MIXER_S8:
247 case USB_MIXER_U8:
248 return val & 0xff;
249 case USB_MIXER_S16:
250 case USB_MIXER_U16:
251 return val & 0xffff;
252 }
253 return 0; /* not reached */
254}
255
Takashi Iwai86e07d32005-11-17 15:08:02 +0100256static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Daniel Mack6bc170e2014-05-24 10:58:16 +0200258 if (!cval->res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 cval->res = 1;
260 if (val < cval->min)
261 return 0;
Takashi Iwai14790f12006-03-28 17:58:28 +0200262 else if (val >= cval->max)
263 return (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 else
265 return (val - cval->min) / cval->res;
266}
267
Takashi Iwai86e07d32005-11-17 15:08:02 +0100268static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 if (val < 0)
271 return cval->min;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200272 if (!cval->res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 cval->res = 1;
274 val *= cval->res;
275 val += cval->min;
276 if (val > cval->max)
277 return cval->max;
278 return val;
279}
280
281
282/*
283 * retrieve a mixer value
284 */
285
Daniel Mack6bc170e2014-05-24 10:58:16 +0200286static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request,
287 int validx, int *value_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200289 struct snd_usb_audio *chip = cval->mixer->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 unsigned char buf[2];
291 int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
292 int timeout = 10;
Takashi Iwai978520b2012-10-12 15:12:55 +0200293 int idx = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Oliver Neukum88a85162011-03-11 14:51:12 +0100295 err = snd_usb_autoresume(cval->mixer->chip);
296 if (err < 0)
297 return -EIO;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200298
Takashi Iwai34f3c892012-10-15 12:16:02 +0200299 down_read(&chip->shutdown_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 while (timeout-- > 0) {
Takashi Iwai978520b2012-10-12 15:12:55 +0200301 if (chip->shutdown)
302 break;
303 idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200304 if (snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Takashi Iwai978520b2012-10-12 15:12:55 +0200306 validx, idx, buf, val_len) >= val_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
Takashi Iwai978520b2012-10-12 15:12:55 +0200308 err = 0;
309 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100312 usb_audio_dbg(chip,
313 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
314 request, validx, idx, cval->val_type);
Takashi Iwai978520b2012-10-12 15:12:55 +0200315 err = -EINVAL;
316
317 out:
Takashi Iwai34f3c892012-10-15 12:16:02 +0200318 up_read(&chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200319 snd_usb_autosuspend(cval->mixer->chip);
320 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Daniel Mack6bc170e2014-05-24 10:58:16 +0200323static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request,
324 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100325{
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200326 struct snd_usb_audio *chip = cval->mixer->chip;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200327 unsigned char buf[2 + 3 * sizeof(__u16)]; /* enough space for one range */
Daniel Mack23caaf12010-03-11 21:13:25 +0100328 unsigned char *val;
Takashi Iwai978520b2012-10-12 15:12:55 +0200329 int idx = 0, ret, size;
Daniel Mack23caaf12010-03-11 21:13:25 +0100330 __u8 bRequest;
331
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200332 if (request == UAC_GET_CUR) {
333 bRequest = UAC2_CS_CUR;
334 size = sizeof(__u16);
335 } else {
336 bRequest = UAC2_CS_RANGE;
337 size = sizeof(buf);
338 }
339
340 memset(buf, 0, sizeof(buf));
Daniel Mack23caaf12010-03-11 21:13:25 +0100341
Oliver Neukum88a85162011-03-11 14:51:12 +0100342 ret = snd_usb_autoresume(chip) ? -EIO : 0;
343 if (ret)
344 goto error;
345
Takashi Iwai34f3c892012-10-15 12:16:02 +0200346 down_read(&chip->shutdown_rwsem);
Daniel Mack6bc170e2014-05-24 10:58:16 +0200347 if (chip->shutdown) {
Takashi Iwai978520b2012-10-12 15:12:55 +0200348 ret = -ENODEV;
Daniel Mack6bc170e2014-05-24 10:58:16 +0200349 } else {
Takashi Iwai978520b2012-10-12 15:12:55 +0200350 idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
351 ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
Daniel Mack23caaf12010-03-11 21:13:25 +0100352 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
Takashi Iwai978520b2012-10-12 15:12:55 +0200353 validx, idx, buf, size);
354 }
Takashi Iwai34f3c892012-10-15 12:16:02 +0200355 up_read(&chip->shutdown_rwsem);
Oliver Neukum88a85162011-03-11 14:51:12 +0100356 snd_usb_autosuspend(chip);
Daniel Mack23caaf12010-03-11 21:13:25 +0100357
358 if (ret < 0) {
Oliver Neukum88a85162011-03-11 14:51:12 +0100359error:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100360 usb_audio_err(chip,
361 "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
362 request, validx, idx, cval->val_type);
Daniel Mack23caaf12010-03-11 21:13:25 +0100363 return ret;
364 }
365
Daniel Macke8bdb6b2010-06-11 17:34:22 +0200366 /* FIXME: how should we handle multiple triplets here? */
367
Daniel Mack23caaf12010-03-11 21:13:25 +0100368 switch (request) {
369 case UAC_GET_CUR:
370 val = buf;
371 break;
372 case UAC_GET_MIN:
373 val = buf + sizeof(__u16);
374 break;
375 case UAC_GET_MAX:
376 val = buf + sizeof(__u16) * 2;
377 break;
378 case UAC_GET_RES:
379 val = buf + sizeof(__u16) * 3;
380 break;
381 default:
382 return -EINVAL;
383 }
384
385 *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(val, sizeof(__u16)));
386
387 return 0;
388}
389
Daniel Mack6bc170e2014-05-24 10:58:16 +0200390static int get_ctl_value(struct usb_mixer_elem_info *cval, int request,
391 int validx, int *value_ret)
Daniel Mack23caaf12010-03-11 21:13:25 +0100392{
Eldad Zack9f814102012-11-28 23:55:35 +0100393 validx += cval->idx_off;
394
Daniel Mack23caaf12010-03-11 21:13:25 +0100395 return (cval->mixer->protocol == UAC_VERSION_1) ?
396 get_ctl_value_v1(cval, request, validx, value_ret) :
397 get_ctl_value_v2(cval, request, validx, value_ret);
398}
399
Daniel Mack6bc170e2014-05-24 10:58:16 +0200400static int get_cur_ctl_value(struct usb_mixer_elem_info *cval,
401 int validx, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Daniel Mackde48c7b2010-02-22 23:49:13 +0100403 return get_ctl_value(cval, UAC_GET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406/* channel = 0: master, 1 = first channel */
Takashi Iwai641b4872009-01-15 17:05:24 +0100407static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
408 int channel, int *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Daniel Mack6bc170e2014-05-24 10:58:16 +0200410 return get_ctl_value(cval, UAC_GET_CUR,
411 (cval->control << 8) | channel,
412 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Takashi Iwai641b4872009-01-15 17:05:24 +0100415static int get_cur_mix_value(struct usb_mixer_elem_info *cval,
416 int channel, int index, int *value)
417{
418 int err;
419
420 if (cval->cached & (1 << channel)) {
421 *value = cval->cache_val[index];
422 return 0;
423 }
424 err = get_cur_mix_raw(cval, channel, value);
425 if (err < 0) {
426 if (!cval->mixer->ignore_ctl_error)
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100427 usb_audio_dbg(cval->mixer->chip,
428 "cannot get current value for control %d ch %d: err = %d\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200429 cval->control, channel, err);
Takashi Iwai641b4872009-01-15 17:05:24 +0100430 return err;
431 }
432 cval->cached |= 1 << channel;
433 cval->cache_val[index] = *value;
434 return 0;
435}
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/*
438 * set a mixer value
439 */
440
Daniel Mack7b1eda22010-03-11 21:13:22 +0100441int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
442 int request, int validx, int value_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200444 struct snd_usb_audio *chip = cval->mixer->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned char buf[2];
Takashi Iwai978520b2012-10-12 15:12:55 +0200446 int idx = 0, val_len, err, timeout = 10;
Daniel Mack23caaf12010-03-11 21:13:25 +0100447
Eldad Zack9f814102012-11-28 23:55:35 +0100448 validx += cval->idx_off;
449
Daniel Mack23caaf12010-03-11 21:13:25 +0100450 if (cval->mixer->protocol == UAC_VERSION_1) {
451 val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
452 } else { /* UAC_VERSION_2 */
453 /* audio class v2 controls are always 2 bytes in size */
454 val_len = sizeof(__u16);
455
456 /* FIXME */
457 if (request != UAC_SET_CUR) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100458 usb_audio_dbg(chip, "RANGE setting not yet supported\n");
Daniel Mack23caaf12010-03-11 21:13:25 +0100459 return -EINVAL;
460 }
461
462 request = UAC2_CS_CUR;
463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 value_set = convert_bytes_value(cval, value_set);
466 buf[0] = value_set & 0xff;
467 buf[1] = (value_set >> 8) & 0xff;
Oliver Neukum88a85162011-03-11 14:51:12 +0100468 err = snd_usb_autoresume(chip);
469 if (err < 0)
470 return -EIO;
Takashi Iwai34f3c892012-10-15 12:16:02 +0200471 down_read(&chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200472 while (timeout-- > 0) {
473 if (chip->shutdown)
474 break;
475 idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200476 if (snd_usb_ctl_msg(chip->dev,
477 usb_sndctrlpipe(chip->dev, 0), request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
Takashi Iwai978520b2012-10-12 15:12:55 +0200479 validx, idx, buf, val_len) >= 0) {
480 err = 0;
481 goto out;
Oliver Neukum88a85162011-03-11 14:51:12 +0100482 }
Takashi Iwai978520b2012-10-12 15:12:55 +0200483 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100484 usb_audio_dbg(chip, "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200485 request, validx, idx, cval->val_type, buf[0], buf[1]);
Takashi Iwai978520b2012-10-12 15:12:55 +0200486 err = -EINVAL;
487
488 out:
Takashi Iwai34f3c892012-10-15 12:16:02 +0200489 up_read(&chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200490 snd_usb_autosuspend(chip);
491 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Daniel Mack6bc170e2014-05-24 10:58:16 +0200494static int set_cur_ctl_value(struct usb_mixer_elem_info *cval,
495 int validx, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Daniel Mack7b1eda22010-03-11 21:13:22 +0100497 return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
Takashi Iwai641b4872009-01-15 17:05:24 +0100500static int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
501 int index, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Takashi Iwai641b4872009-01-15 17:05:24 +0100503 int err;
Daniel Macka6a33252010-05-31 13:35:37 +0200504 unsigned int read_only = (channel == 0) ?
505 cval->master_readonly :
506 cval->ch_readonly & (1 << (channel - 1));
507
508 if (read_only) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100509 usb_audio_dbg(cval->mixer->chip,
510 "%s(): channel %d of control %d is read_only\n",
Daniel Macka6a33252010-05-31 13:35:37 +0200511 __func__, channel, cval->control);
512 return 0;
513 }
514
Daniel Mack6bc170e2014-05-24 10:58:16 +0200515 err = snd_usb_mixer_set_ctl_value(cval,
516 UAC_SET_CUR, (cval->control << 8) | channel,
517 value);
Takashi Iwai641b4872009-01-15 17:05:24 +0100518 if (err < 0)
519 return err;
520 cval->cached |= 1 << channel;
521 cval->cache_val[index] = value;
522 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200525/*
526 * TLV callback for mixer volume controls
527 */
Felix Homann285de9c2012-04-23 20:24:24 +0200528int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200529 unsigned int size, unsigned int __user *_tlv)
530{
531 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Takashi Iwaib8e1c732009-06-16 14:04:37 +0200532 DECLARE_TLV_DB_MINMAX(scale, 0, 0);
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200533
534 if (size < sizeof(scale))
535 return -ENOMEM;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100536 scale[2] = cval->dBmin;
537 scale[3] = cval->dBmax;
Takashi Iwai7bc5ba7e2006-07-14 15:18:19 +0200538 if (copy_to_user(_tlv, scale, sizeof(scale)))
539 return -EFAULT;
540 return 0;
541}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543/*
544 * parser routines begin here...
545 */
546
Takashi Iwai86e07d32005-11-17 15:08:02 +0100547static int parse_audio_unit(struct mixer_build *state, int unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549
550/*
551 * check if the input/output channel routing is enabled on the given bitmap.
552 * used for mixer unit parser
553 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200554static int check_matrix_bitmap(unsigned char *bmap,
555 int ich, int och, int num_outs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 int idx = ich * num_outs + och;
558 return bmap[idx >> 3] & (0x80 >> (idx & 7));
559}
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561/*
562 * add an alsa control element
563 * search and increment the index until an empty slot is found.
564 *
565 * if failed, give up and free the control instance.
566 */
567
Daniel Mackef9d5972011-05-25 09:09:00 +0200568int snd_usb_mixer_add_control(struct usb_mixer_interface *mixer,
569 struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100571 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +0200573
Daniel Mackef9d5972011-05-25 09:09:00 +0200574 while (snd_ctl_find_id(mixer->chip->card, &kctl->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 kctl->id.index++;
Daniel Mackef9d5972011-05-25 09:09:00 +0200576 if ((err = snd_ctl_add(mixer->chip->card, kctl)) < 0) {
Daniel Mack6bc170e2014-05-24 10:58:16 +0200577 usb_audio_dbg(mixer->chip, "cannot add control (err = %d)\n",
578 err);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200579 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200581 cval->elem_id = &kctl->id;
Daniel Mackef9d5972011-05-25 09:09:00 +0200582 cval->next_id_elem = mixer->id_elems[cval->id];
583 mixer->id_elems[cval->id] = cval;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +0200584 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587/*
588 * get a terminal name string
589 */
590
591static struct iterm_name_combo {
592 int type;
593 char *name;
594} iterm_names[] = {
595 { 0x0300, "Output" },
596 { 0x0301, "Speaker" },
597 { 0x0302, "Headphone" },
598 { 0x0303, "HMD Audio" },
599 { 0x0304, "Desktop Speaker" },
600 { 0x0305, "Room Speaker" },
601 { 0x0306, "Com Speaker" },
602 { 0x0307, "LFE" },
603 { 0x0600, "External In" },
604 { 0x0601, "Analog In" },
605 { 0x0602, "Digital In" },
606 { 0x0603, "Line" },
607 { 0x0604, "Legacy In" },
608 { 0x0605, "IEC958 In" },
609 { 0x0606, "1394 DA Stream" },
610 { 0x0607, "1394 DV Stream" },
611 { 0x0700, "Embedded" },
612 { 0x0701, "Noise Source" },
613 { 0x0702, "Equalization Noise" },
614 { 0x0703, "CD" },
615 { 0x0704, "DAT" },
616 { 0x0705, "DCC" },
617 { 0x0706, "MiniDisk" },
618 { 0x0707, "Analog Tape" },
619 { 0x0708, "Phonograph" },
620 { 0x0709, "VCR Audio" },
621 { 0x070a, "Video Disk Audio" },
622 { 0x070b, "DVD Audio" },
623 { 0x070c, "TV Tuner Audio" },
624 { 0x070d, "Satellite Rec Audio" },
625 { 0x070e, "Cable Tuner Audio" },
626 { 0x070f, "DSS Audio" },
627 { 0x0710, "Radio Receiver" },
628 { 0x0711, "Radio Transmitter" },
629 { 0x0712, "Multi-Track Recorder" },
630 { 0x0713, "Synthesizer" },
631 { 0 },
632};
633
Takashi Iwai86e07d32005-11-17 15:08:02 +0100634static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 unsigned char *name, int maxlen, int term_only)
636{
637 struct iterm_name_combo *names;
638
639 if (iterm->name)
Daniel Mack6bc170e2014-05-24 10:58:16 +0200640 return snd_usb_copy_string_desc(state, iterm->name,
641 name, maxlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 /* virtual type - not a real terminal */
644 if (iterm->type >> 16) {
645 if (term_only)
646 return 0;
647 switch (iterm->type >> 16) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100648 case UAC_SELECTOR_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200649 strcpy(name, "Selector");
650 return 8;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200651 case UAC1_PROCESSING_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200652 strcpy(name, "Process Unit");
653 return 12;
Daniel Mack69da9bc2010-06-16 17:57:28 +0200654 case UAC1_EXTENSION_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200655 strcpy(name, "Ext Unit");
656 return 8;
Daniel Mackde48c7b2010-02-22 23:49:13 +0100657 case UAC_MIXER_UNIT:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200658 strcpy(name, "Mixer");
659 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 default:
661 return sprintf(name, "Unit %d", iterm->id);
662 }
663 }
664
665 switch (iterm->type & 0xff00) {
666 case 0x0100:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200667 strcpy(name, "PCM");
668 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 case 0x0200:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200670 strcpy(name, "Mic");
671 return 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 case 0x0400:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200673 strcpy(name, "Headset");
674 return 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 case 0x0500:
Daniel Mack6bc170e2014-05-24 10:58:16 +0200676 strcpy(name, "Phone");
677 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679
Daniel Mack6bc170e2014-05-24 10:58:16 +0200680 for (names = iterm_names; names->type; names++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (names->type == iterm->type) {
682 strcpy(name, names->name);
683 return strlen(names->name);
684 }
Daniel Mack6bc170e2014-05-24 10:58:16 +0200685 }
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return 0;
688}
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690/*
691 * parse the source unit recursively until it reaches to a terminal
692 * or a branched unit.
693 */
Daniel Mack6bc170e2014-05-24 10:58:16 +0200694static int check_input_term(struct mixer_build *state, int id,
695 struct usb_audio_term *term)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Daniel Mack09414202010-05-31 13:35:44 +0200697 int err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100698 void *p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 memset(term, 0, sizeof(*term));
701 while ((p1 = find_audio_control_unit(state, id)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +0100702 unsigned char *hdr = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100704 switch (hdr[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +0100705 case UAC_INPUT_TERMINAL:
Daniel Mack23caaf12010-03-11 21:13:25 +0100706 if (state->mixer->protocol == UAC_VERSION_1) {
707 struct uac_input_terminal_descriptor *d = p1;
708 term->type = le16_to_cpu(d->wTerminalType);
709 term->channels = d->bNrChannels;
710 term->chconfig = le16_to_cpu(d->wChannelConfig);
711 term->name = d->iTerminal;
712 } else { /* UAC_VERSION_2 */
713 struct uac2_input_terminal_descriptor *d = p1;
714 term->type = le16_to_cpu(d->wTerminalType);
715 term->channels = d->bNrChannels;
716 term->chconfig = le32_to_cpu(d->bmChannelConfig);
717 term->name = d->iTerminal;
Daniel Mack09414202010-05-31 13:35:44 +0200718
719 /* call recursively to get the clock selectors */
720 err = check_input_term(state, d->bCSourceID, term);
721 if (err < 0)
722 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100725 case UAC_FEATURE_UNIT: {
726 /* the header is the same for v1 and v2 */
727 struct uac_feature_unit_descriptor *d = p1;
Daniel Mack5e688882010-05-08 11:24:56 +0200728 id = d->bSourceID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 break; /* continue to parse */
Daniel Mack23caaf12010-03-11 21:13:25 +0100730 }
731 case UAC_MIXER_UNIT: {
732 struct uac_mixer_unit_descriptor *d = p1;
733 term->type = d->bDescriptorSubtype << 16; /* virtual type */
734 term->channels = uac_mixer_unit_bNrChannels(d);
735 term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
736 term->name = uac_mixer_unit_iMixer(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100738 }
Daniel Mack09414202010-05-31 13:35:44 +0200739 case UAC_SELECTOR_UNIT:
740 case UAC2_CLOCK_SELECTOR: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100741 struct uac_selector_unit_descriptor *d = p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 /* call recursively to retrieve the channel info */
Daniel Mack4d7b86c2013-03-19 21:09:24 +0100743 err = check_input_term(state, d->baSourceID[0], term);
744 if (err < 0)
745 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +0100746 term->type = d->bDescriptorSubtype << 16; /* virtual type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 term->id = id;
Daniel Mack23caaf12010-03-11 21:13:25 +0100748 term->name = uac_selector_unit_iSelector(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100750 }
Daniel Mack69da9bc2010-06-16 17:57:28 +0200751 case UAC1_PROCESSING_UNIT:
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100752 case UAC1_EXTENSION_UNIT:
753 /* UAC2_PROCESSING_UNIT_V2 */
Torstein Hegge61ac5132013-03-19 17:12:14 +0100754 /* UAC2_EFFECT_UNIT */
755 case UAC2_EXTENSION_UNIT_V2: {
Daniel Mack23caaf12010-03-11 21:13:25 +0100756 struct uac_processing_unit_descriptor *d = p1;
Eldad Zack5dae5fd2012-11-28 23:55:36 +0100757
758 if (state->mixer->protocol == UAC_VERSION_2 &&
759 hdr[2] == UAC2_EFFECT_UNIT) {
760 /* UAC2/UAC1 unit IDs overlap here in an
761 * uncompatible way. Ignore this unit for now.
762 */
763 return 0;
764 }
765
Daniel Mack23caaf12010-03-11 21:13:25 +0100766 if (d->bNrInPins) {
767 id = d->baSourceID[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 break; /* continue to parse */
769 }
Daniel Mack23caaf12010-03-11 21:13:25 +0100770 term->type = d->bDescriptorSubtype << 16; /* virtual type */
771 term->channels = uac_processing_unit_bNrChannels(d);
772 term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
773 term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return 0;
Daniel Mack23caaf12010-03-11 21:13:25 +0100775 }
Daniel Mack09414202010-05-31 13:35:44 +0200776 case UAC2_CLOCK_SOURCE: {
777 struct uac_clock_source_descriptor *d = p1;
778 term->type = d->bDescriptorSubtype << 16; /* virtual type */
779 term->id = id;
780 term->name = d->iClockSource;
781 return 0;
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 default:
784 return -ENODEV;
785 }
786 }
787 return -ENODEV;
788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790/*
791 * Feature Unit
792 */
793
794/* feature unit control information */
795struct usb_feature_control_info {
796 const char *name;
797 unsigned int type; /* control type (mute, volume, etc.) */
798};
799
800static struct usb_feature_control_info audio_feature_info[] = {
Daniel Mack2e0281d2010-05-31 13:35:42 +0200801 { "Mute", USB_MIXER_INV_BOOLEAN },
802 { "Volume", USB_MIXER_S16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 { "Tone Control - Bass", USB_MIXER_S8 },
804 { "Tone Control - Mid", USB_MIXER_S8 },
805 { "Tone Control - Treble", USB_MIXER_S8 },
806 { "Graphic Equalizer", USB_MIXER_S8 }, /* FIXME: not implemeted yet */
Daniel Mack2e0281d2010-05-31 13:35:42 +0200807 { "Auto Gain Control", USB_MIXER_BOOLEAN },
808 { "Delay Control", USB_MIXER_U16 },
809 { "Bass Boost", USB_MIXER_BOOLEAN },
810 { "Loudness", USB_MIXER_BOOLEAN },
811 /* UAC2 specific */
812 { "Input Gain Control", USB_MIXER_U16 },
813 { "Input Gain Pad Control", USB_MIXER_BOOLEAN },
814 { "Phase Inverter Control", USB_MIXER_BOOLEAN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815};
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817/* private_free callback */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100818static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Jesper Juhl4d572772005-05-30 17:30:32 +0200820 kfree(kctl->private_data);
821 kctl->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824/*
825 * interface to ALSA control for feature/mixer units
826 */
827
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100828/* volume control quirks */
829static void volume_control_quirks(struct usb_mixer_elem_info *cval,
830 struct snd_kcontrol *kctl)
831{
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100832 struct snd_usb_audio *chip = cval->mixer->chip;
833 switch (chip->usb_id) {
Eldad Zackd50ed622012-11-28 23:55:39 +0100834 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
Matt Gruskine9a25e02013-02-09 12:56:35 -0500835 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
Eldad Zackd50ed622012-11-28 23:55:39 +0100836 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
837 cval->min = 0x0000;
838 cval->max = 0xffff;
839 cval->res = 0x00e6;
840 break;
841 }
842 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
843 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
844 cval->min = 0x00;
845 cval->max = 0xff;
846 break;
847 }
848 if (strstr(kctl->id.name, "Effect Return") != NULL) {
849 cval->min = 0xb706;
850 cval->max = 0xff7b;
851 cval->res = 0x0073;
852 break;
853 }
854 if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
855 (strstr(kctl->id.name, "Effect Send") != NULL)) {
856 cval->min = 0xb5fb; /* -73 dB = 0xb6ff */
857 cval->max = 0xfcfe;
858 cval->res = 0x0073;
859 }
860 break;
861
Felix Homannd34bf142012-04-23 20:24:27 +0200862 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
863 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
864 if (strcmp(kctl->id.name, "Effect Duration") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100865 usb_audio_info(chip,
866 "set quirk for FTU Effect Duration\n");
Felix Homannd34bf142012-04-23 20:24:27 +0200867 cval->min = 0x0000;
868 cval->max = 0x7f00;
869 cval->res = 0x0100;
870 break;
871 }
872 if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
873 strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100874 usb_audio_info(chip,
875 "set quirks for FTU Effect Feedback/Volume\n");
Felix Homannd34bf142012-04-23 20:24:27 +0200876 cval->min = 0x00;
877 cval->max = 0x7f;
878 break;
879 }
880 break;
881
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100882 case USB_ID(0x0471, 0x0101):
883 case USB_ID(0x0471, 0x0104):
884 case USB_ID(0x0471, 0x0105):
885 case USB_ID(0x0672, 0x1041):
886 /* quirk for UDA1321/N101.
887 * note that detection between firmware 2.1.1.7 (N101)
888 * and later 2.1.1.21 is not very clear from datasheets.
889 * I hope that the min value is -15360 for newer firmware --jk
890 */
891 if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
892 cval->min == -15616) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100893 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100894 "set volume quirk for UDA1321/N101 chip\n");
895 cval->max = -256;
896 }
897 break;
898
899 case USB_ID(0x046d, 0x09a4):
900 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100901 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100902 "set volume quirk for QuickCam E3500\n");
903 cval->min = 6080;
904 cval->max = 8768;
905 cval->res = 192;
906 }
907 break;
908
Takashi Iwaie805ca82014-03-05 12:34:39 +0100909 case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100910 case USB_ID(0x046d, 0x0808):
911 case USB_ID(0x046d, 0x0809):
Takashi Iwai36691e12013-06-17 10:25:02 +0200912 case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */
Alexey Fisher55c00082011-11-09 11:39:24 +0100913 case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
Takashi Iwai11e70642013-06-05 08:35:26 +0200914 case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */
Maksim A. Boyko140d37d2013-08-10 12:20:02 +0400915 case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100916 case USB_ID(0x046d, 0x0991):
917 /* Most audio usb devices lie about volume resolution.
918 * Most Logitech webcams have res = 384.
919 * Proboly there is some logitech magic behind this number --fishor
920 */
921 if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100922 usb_audio_info(chip,
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100923 "set resolution quirk: cval->res = 384\n");
924 cval->res = 384;
925 }
926 break;
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100927 }
928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/*
931 * retrieve the minimum and maximum values for the specified control
932 */
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +0100933static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
934 int default_min, struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
936 /* for failsafe */
937 cval->min = default_min;
938 cval->max = cval->min + 1;
939 cval->res = 1;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +0100940 cval->dBmin = cval->dBmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 if (cval->val_type == USB_MIXER_BOOLEAN ||
943 cval->val_type == USB_MIXER_INV_BOOLEAN) {
944 cval->initialized = 1;
945 } else {
946 int minchn = 0;
947 if (cval->cmask) {
948 int i;
949 for (i = 0; i < MAX_CHANNELS; i++)
950 if (cval->cmask & (1 << i)) {
951 minchn = i + 1;
952 break;
953 }
954 }
Daniel Mackde48c7b2010-02-22 23:49:13 +0100955 if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
956 get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100957 usb_audio_err(cval->mixer->chip,
958 "%d:%d: cannot get min/max values for control %d (id %d)\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +0200959 cval->id, snd_usb_ctrl_intf(cval->mixer->chip),
960 cval->control, cval->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return -EINVAL;
962 }
Daniel Mack6bc170e2014-05-24 10:58:16 +0200963 if (get_ctl_value(cval, UAC_GET_RES,
964 (cval->control << 8) | minchn,
965 &cval->res) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 cval->res = 1;
967 } else {
968 int last_valid_res = cval->res;
969
970 while (cval->res > 1) {
Daniel Mack7b1eda22010-03-11 21:13:22 +0100971 if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
Daniel Mack6bc170e2014-05-24 10:58:16 +0200972 (cval->control << 8) | minchn,
973 cval->res / 2) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 break;
975 cval->res /= 2;
976 }
Daniel Mack6bc170e2014-05-24 10:58:16 +0200977 if (get_ctl_value(cval, UAC_GET_RES,
978 (cval->control << 8) | minchn, &cval->res) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 cval->res = last_valid_res;
980 }
981 if (cval->res == 0)
982 cval->res = 1;
Takashi Iwai14790f12006-03-28 17:58:28 +0200983
984 /* Additional checks for the proper resolution
985 *
986 * Some devices report smaller resolutions than actually
987 * reacting. They don't return errors but simply clip
988 * to the lower aligned value.
989 */
990 if (cval->min + cval->res < cval->max) {
991 int last_valid_res = cval->res;
992 int saved, test, check;
Takashi Iwai641b4872009-01-15 17:05:24 +0100993 get_cur_mix_raw(cval, minchn, &saved);
Takashi Iwai14790f12006-03-28 17:58:28 +0200994 for (;;) {
995 test = saved;
996 if (test < cval->max)
997 test += cval->res;
998 else
999 test -= cval->res;
1000 if (test < cval->min || test > cval->max ||
Takashi Iwai641b4872009-01-15 17:05:24 +01001001 set_cur_mix_value(cval, minchn, 0, test) ||
1002 get_cur_mix_raw(cval, minchn, &check)) {
Takashi Iwai14790f12006-03-28 17:58:28 +02001003 cval->res = last_valid_res;
1004 break;
1005 }
1006 if (test == check)
1007 break;
1008 cval->res *= 2;
1009 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001010 set_cur_mix_value(cval, minchn, 0, saved);
Takashi Iwai14790f12006-03-28 17:58:28 +02001011 }
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 cval->initialized = 1;
1014 }
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001015
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001016 if (kctl)
1017 volume_control_quirks(cval, kctl);
1018
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001019 /* USB descriptions contain the dB scale in 1/256 dB unit
1020 * while ALSA TLV contains in 1/100 dB unit
1021 */
1022 cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
1023 cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
1024 if (cval->dBmin > cval->dBmax) {
1025 /* something is wrong; assume it's either from/to 0dB */
1026 if (cval->dBmin < 0)
1027 cval->dBmax = 0;
1028 else if (cval->dBmin > 0)
1029 cval->dBmin = 0;
1030 if (cval->dBmin > cval->dBmax) {
1031 /* totally crap, return an error */
1032 return -EINVAL;
1033 }
1034 }
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 0;
1037}
1038
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001039#define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041/* get a feature/mixer unit info */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001042static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
1043 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001045 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 if (cval->val_type == USB_MIXER_BOOLEAN ||
1048 cval->val_type == USB_MIXER_INV_BOOLEAN)
1049 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1050 else
1051 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1052 uinfo->count = cval->channels;
1053 if (cval->val_type == USB_MIXER_BOOLEAN ||
1054 cval->val_type == USB_MIXER_INV_BOOLEAN) {
1055 uinfo->value.integer.min = 0;
1056 uinfo->value.integer.max = 1;
1057 } else {
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001058 if (!cval->initialized) {
Takashi Iwaidcaaf9f2011-11-08 17:50:27 +01001059 get_min_max_with_quirks(cval, 0, kcontrol);
Takashi Iwai9fcd0ab2011-08-19 08:30:53 +02001060 if (cval->initialized && cval->dBmin >= cval->dBmax) {
1061 kcontrol->vd[0].access &=
1062 ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1063 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK);
1064 snd_ctl_notify(cval->mixer->chip->card,
1065 SNDRV_CTL_EVENT_MASK_INFO,
1066 &kcontrol->id);
1067 }
1068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 uinfo->value.integer.min = 0;
Takashi Iwai14790f12006-03-28 17:58:28 +02001070 uinfo->value.integer.max =
1071 (cval->max - cval->min + cval->res - 1) / cval->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073 return 0;
1074}
1075
1076/* get the current value from feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001077static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol,
1078 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001080 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 int c, cnt, val, err;
1082
Takashi Iwai641b4872009-01-15 17:05:24 +01001083 ucontrol->value.integer.value[0] = cval->min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (cval->cmask) {
1085 cnt = 0;
1086 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001087 if (!(cval->cmask & (1 << c)))
1088 continue;
1089 err = get_cur_mix_value(cval, c + 1, cnt, &val);
1090 if (err < 0)
1091 return cval->mixer->ignore_ctl_error ? 0 : err;
1092 val = get_relative_value(cval, val);
1093 ucontrol->value.integer.value[cnt] = val;
1094 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001096 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 } else {
1098 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +01001099 err = get_cur_mix_value(cval, 0, 0, &val);
1100 if (err < 0)
1101 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 val = get_relative_value(cval, val);
1103 ucontrol->value.integer.value[0] = val;
1104 }
1105 return 0;
1106}
1107
1108/* put the current value to feature/mixer unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001109static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
1110 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001112 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 int c, cnt, val, oval, err;
1114 int changed = 0;
1115
1116 if (cval->cmask) {
1117 cnt = 0;
1118 for (c = 0; c < MAX_CHANNELS; c++) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001119 if (!(cval->cmask & (1 << c)))
1120 continue;
1121 err = get_cur_mix_value(cval, c + 1, cnt, &oval);
1122 if (err < 0)
1123 return cval->mixer->ignore_ctl_error ? 0 : err;
1124 val = ucontrol->value.integer.value[cnt];
1125 val = get_abs_value(cval, val);
1126 if (oval != val) {
1127 set_cur_mix_value(cval, c + 1, cnt, val);
1128 changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 }
Takashi Iwai641b4872009-01-15 17:05:24 +01001130 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132 } else {
1133 /* master channel */
Takashi Iwai641b4872009-01-15 17:05:24 +01001134 err = get_cur_mix_value(cval, 0, 0, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (err < 0)
Takashi Iwai641b4872009-01-15 17:05:24 +01001136 return cval->mixer->ignore_ctl_error ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 val = ucontrol->value.integer.value[0];
1138 val = get_abs_value(cval, val);
1139 if (val != oval) {
Takashi Iwai641b4872009-01-15 17:05:24 +01001140 set_cur_mix_value(cval, 0, 0, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 changed = 1;
1142 }
1143 }
1144 return changed;
1145}
1146
Takashi Iwai86e07d32005-11-17 15:08:02 +01001147static struct snd_kcontrol_new usb_feature_unit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1149 .name = "", /* will be filled later manually */
1150 .info = mixer_ctl_feature_info,
1151 .get = mixer_ctl_feature_get,
1152 .put = mixer_ctl_feature_put,
1153};
1154
Daniel Mack23caaf12010-03-11 21:13:25 +01001155/* the read-only variant */
1156static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
1157 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1158 .name = "", /* will be filled later manually */
1159 .info = mixer_ctl_feature_info,
1160 .get = mixer_ctl_feature_get,
1161 .put = NULL,
1162};
1163
Daniel Mack6bc170e2014-05-24 10:58:16 +02001164/*
1165 * This symbol is exported in order to allow the mixer quirks to
1166 * hook up to the standard feature unit control mechanism
1167 */
Daniel Mack9e386582011-05-25 09:09:01 +02001168struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170/*
1171 * build a feature control
1172 */
Takashi Iwai08d1e632009-10-02 14:06:08 +02001173static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
1174{
1175 return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
1176}
1177
Daniel Mack6bc170e2014-05-24 10:58:16 +02001178/*
1179 * A lot of headsets/headphones have a "Speaker" mixer. Make sure we
1180 * rename it to "Headphone". We determine if something is a headphone
1181 * similar to how udev determines form factor.
1182 */
David Henningsson9b4ef972012-11-23 13:48:55 +01001183static void check_no_speaker_on_headset(struct snd_kcontrol *kctl,
1184 struct snd_card *card)
1185{
1186 const char *names_to_check[] = {
1187 "Headset", "headset", "Headphone", "headphone", NULL};
1188 const char **s;
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001189 bool found = false;
David Henningsson9b4ef972012-11-23 13:48:55 +01001190
1191 if (strcmp("Speaker", kctl->id.name))
1192 return;
1193
1194 for (s = names_to_check; *s; s++)
1195 if (strstr(card->shortname, *s)) {
Peter Senna Tschudine0f17c72013-09-22 20:44:12 +02001196 found = true;
David Henningsson9b4ef972012-11-23 13:48:55 +01001197 break;
1198 }
1199
1200 if (!found)
1201 return;
1202
1203 strlcpy(kctl->id.name, "Headphone", sizeof(kctl->id.name));
1204}
1205
Daniel Mack99fc8642010-03-11 21:13:24 +01001206static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 unsigned int ctl_mask, int control,
Daniel Mack23caaf12010-03-11 21:13:25 +01001208 struct usb_audio_term *iterm, int unitid,
Daniel Macka6a33252010-05-31 13:35:37 +02001209 int readonly_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
Daniel Mack99fc8642010-03-11 21:13:24 +01001211 struct uac_feature_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 unsigned int len = 0;
1213 int mapped_name = 0;
Daniel Mack99fc8642010-03-11 21:13:24 +01001214 int nameid = uac_feature_unit_iFeature(desc);
Takashi Iwai86e07d32005-11-17 15:08:02 +01001215 struct snd_kcontrol *kctl;
1216 struct usb_mixer_elem_info *cval;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001217 const struct usbmix_name_map *map;
Alexey Fisher80aceff2011-03-10 14:53:38 +01001218 unsigned int range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 control++; /* change from zero-based to 1-based value */
1221
Daniel Mack65f25da2010-05-31 13:35:41 +02001222 if (control == UAC_FU_GRAPHIC_EQUALIZER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 /* FIXME: not supported yet */
1224 return;
1225 }
1226
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001227 map = find_map(state, unitid, control);
1228 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return;
1230
Takashi Iwai561b2202005-09-09 14:22:34 +02001231 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001232 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 return;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001234 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 cval->id = unitid;
1236 cval->control = control;
1237 cval->cmask = ctl_mask;
1238 cval->val_type = audio_feature_info[control-1].type;
Daniel Macka6a33252010-05-31 13:35:37 +02001239 if (ctl_mask == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 cval->channels = 1; /* master channel */
Daniel Macka6a33252010-05-31 13:35:37 +02001241 cval->master_readonly = readonly_mask;
1242 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 int i, c = 0;
1244 for (i = 0; i < 16; i++)
1245 if (ctl_mask & (1 << i))
1246 c++;
1247 cval->channels = c;
Daniel Macka6a33252010-05-31 13:35:37 +02001248 cval->ch_readonly = readonly_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250
Daniel Mack6bc170e2014-05-24 10:58:16 +02001251 /*
1252 * If all channels in the mask are marked read-only, make the control
Daniel Macka6a33252010-05-31 13:35:37 +02001253 * read-only. set_cur_mix_value() will check the mask again and won't
Daniel Mack6bc170e2014-05-24 10:58:16 +02001254 * issue write commands to read-only channels.
1255 */
Daniel Macka6a33252010-05-31 13:35:37 +02001256 if (cval->channels == readonly_mask)
Daniel Mack23caaf12010-03-11 21:13:25 +01001257 kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
1258 else
1259 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
1260
Daniel Mack6bc170e2014-05-24 10:58:16 +02001261 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001262 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 kfree(cval);
1264 return;
1265 }
1266 kctl->private_free = usb_mixer_elem_free;
1267
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001268 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 mapped_name = len != 0;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001270 if (!len && nameid)
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001271 len = snd_usb_copy_string_desc(state, nameid,
1272 kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 switch (control) {
Daniel Mack65f25da2010-05-31 13:35:41 +02001275 case UAC_FU_MUTE:
1276 case UAC_FU_VOLUME:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001277 /*
1278 * determine the control name. the rule is:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 * - if a name id is given in descriptor, use it.
1280 * - if the connected input can be determined, then use the name
1281 * of terminal type.
1282 * - if the connected output can be determined, use it.
1283 * - otherwise, anonymous name.
1284 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001285 if (!len) {
1286 len = get_term_name(state, iterm, kctl->id.name,
1287 sizeof(kctl->id.name), 1);
1288 if (!len)
1289 len = get_term_name(state, &state->oterm,
1290 kctl->id.name,
1291 sizeof(kctl->id.name), 1);
1292 if (!len)
1293 len = snprintf(kctl->id.name,
1294 sizeof(kctl->id.name),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 "Feature %d", unitid);
1296 }
David Henningsson9b4ef972012-11-23 13:48:55 +01001297
1298 if (!mapped_name)
1299 check_no_speaker_on_headset(kctl, state->mixer->chip->card);
1300
Daniel Mack6bc170e2014-05-24 10:58:16 +02001301 /*
1302 * determine the stream direction:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 * if the connected output is USB stream, then it's likely a
1304 * capture stream. otherwise it should be playback (hopefully :)
1305 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001306 if (!mapped_name && !(state->oterm.type >> 16)) {
1307 if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02001308 len = append_ctl_name(kctl, " Capture");
Daniel Mack6bc170e2014-05-24 10:58:16 +02001309 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02001310 len = append_ctl_name(kctl, " Playback");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
Daniel Mack65f25da2010-05-31 13:35:41 +02001312 append_ctl_name(kctl, control == UAC_FU_MUTE ?
Takashi Iwai08d1e632009-10-02 14:06:08 +02001313 " Switch" : " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 default:
Daniel Mack6bc170e2014-05-24 10:58:16 +02001316 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 strlcpy(kctl->id.name, audio_feature_info[control-1].name,
1318 sizeof(kctl->id.name));
1319 break;
1320 }
1321
Takashi Iwaie1825342012-05-14 17:11:06 +02001322 /* get min/max values */
1323 get_min_max_with_quirks(cval, 0, kctl);
1324
1325 if (control == UAC_FU_VOLUME) {
1326 check_mapped_dB(map, cval);
1327 if (cval->dBmin < cval->dBmax || !cval->initialized) {
1328 kctl->tlv.c = snd_usb_mixer_vol_tlv;
1329 kctl->vd[0].access |=
1330 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
1331 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1332 }
1333 }
1334
Alexey Fisher80aceff2011-03-10 14:53:38 +01001335 range = (cval->max - cval->min) / cval->res;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001336 /*
1337 * Are there devices with volume range more than 255? I use a bit more
Alexey Fisher80aceff2011-03-10 14:53:38 +01001338 * to be sure. 384 is a resolution magic number found on Logitech
1339 * devices. It will definitively catch all buggy Logitech devices.
1340 */
1341 if (range > 384) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001342 usb_audio_warn(state->chip,
1343 "Warning! Unlikely big volume range (=%u), "
1344 "cval->res is probably wrong.",
1345 range);
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001346 usb_audio_warn(state->chip, "[%d] FU [%s] ch = %d, "
Daniel Mack6bc170e2014-05-24 10:58:16 +02001347 "val = %d/%d/%d", cval->id,
1348 kctl->id.name, cval->channels,
1349 cval->min, cval->max, cval->res);
Alexey Fisher80aceff2011-03-10 14:53:38 +01001350 }
1351
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001352 usb_audio_dbg(state->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
Daniel Mack6bc170e2014-05-24 10:58:16 +02001353 cval->id, kctl->id.name, cval->channels,
1354 cval->min, cval->max, cval->res);
Daniel Mackef9d5972011-05-25 09:09:00 +02001355 snd_usb_mixer_add_control(state->mixer, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358/*
1359 * parse a feature unit
1360 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001361 * most of controls are defined here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001363static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
1364 void *_ftr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
1366 int channels, i, j;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001367 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 unsigned int master_bits, first_ch_bits;
1369 int err, csize;
Daniel Mack23caaf12010-03-11 21:13:25 +01001370 struct uac_feature_unit_descriptor *hdr = _ftr;
1371 __u8 *bmaControls;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Daniel Mack23caaf12010-03-11 21:13:25 +01001373 if (state->mixer->protocol == UAC_VERSION_1) {
1374 csize = hdr->bControlSize;
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001375 if (!csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001376 usb_audio_dbg(state->chip,
1377 "unit %u: invalid bControlSize == 0\n",
1378 unitid);
Nicolai Krakowiak60c961a92011-08-04 15:56:27 +02001379 return -EINVAL;
1380 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001381 channels = (hdr->bLength - 7) / csize - 1;
1382 bmaControls = hdr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001383 if (hdr->bLength < 7 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001384 usb_audio_err(state->chip,
1385 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1386 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001387 return -EINVAL;
1388 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001389 } else {
1390 struct uac2_feature_unit_descriptor *ftr = _ftr;
1391 csize = 4;
Daniel Macke8d0fee2010-05-27 20:15:14 +02001392 channels = (hdr->bLength - 6) / 4 - 1;
Daniel Mack23caaf12010-03-11 21:13:25 +01001393 bmaControls = ftr->bmaControls;
Clemens Ladischd56268f2012-11-29 17:04:23 +01001394 if (hdr->bLength < 6 + csize) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001395 usb_audio_err(state->chip,
1396 "unit %u: invalid UAC_FEATURE_UNIT descriptor\n",
1397 unitid);
Clemens Ladischd56268f2012-11-29 17:04:23 +01001398 return -EINVAL;
1399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401
1402 /* parse the source unit */
Daniel Mack23caaf12010-03-11 21:13:25 +01001403 if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return err;
1405
1406 /* determine the input source type and name */
Daniel Mack4d7b86c2013-03-19 21:09:24 +01001407 err = check_input_term(state, hdr->bSourceID, &iterm);
1408 if (err < 0)
1409 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Daniel Mack23caaf12010-03-11 21:13:25 +01001411 master_bits = snd_usb_combine_bytes(bmaControls, csize);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001412 /* master configuration quirks */
1413 switch (state->chip->usb_id) {
1414 case USB_ID(0x08bb, 0x2702):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001415 usb_audio_info(state->chip,
1416 "usbmixer: master volume quirk for PCM2702 chip\n");
Javier Kohen0c3cee52009-11-17 15:36:13 +01001417 /* disable non-functional volume control */
Daniel Mack65f25da2010-05-31 13:35:41 +02001418 master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
Javier Kohen0c3cee52009-11-17 15:36:13 +01001419 break;
David Henningssonc1051432012-09-20 10:20:41 +02001420 case USB_ID(0x1130, 0xf211):
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001421 usb_audio_info(state->chip,
1422 "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
David Henningssonc1051432012-09-20 10:20:41 +02001423 /* disable non-functional volume control */
1424 channels = 0;
1425 break;
1426
Javier Kohen0c3cee52009-11-17 15:36:13 +01001427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (channels > 0)
Daniel Mack23caaf12010-03-11 21:13:25 +01001429 first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 else
1431 first_ch_bits = 0;
Daniel Mack23caaf12010-03-11 21:13:25 +01001432
1433 if (state->mixer->protocol == UAC_VERSION_1) {
1434 /* check all control types */
1435 for (i = 0; i < 10; i++) {
1436 unsigned int ch_bits = 0;
1437 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001438 unsigned int mask;
1439
1440 mask = snd_usb_combine_bytes(bmaControls +
1441 csize * (j+1), csize);
Daniel Mack23caaf12010-03-11 21:13:25 +01001442 if (mask & (1 << i))
1443 ch_bits |= (1 << j);
1444 }
1445 /* audio class v1 controls are never read-only */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001446
1447 /*
1448 * The first channel must be set
1449 * (for ease of programming).
1450 */
1451 if (ch_bits & 1)
1452 build_feature_ctl(state, _ftr, ch_bits, i,
1453 &iterm, unitid, 0);
Daniel Mack23caaf12010-03-11 21:13:25 +01001454 if (master_bits & (1 << i))
Daniel Mack6bc170e2014-05-24 10:58:16 +02001455 build_feature_ctl(state, _ftr, 0, i, &iterm,
1456 unitid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
Daniel Mack23caaf12010-03-11 21:13:25 +01001458 } else { /* UAC_VERSION_2 */
Takashi Iwaid09c06c2011-10-13 08:19:09 +02001459 for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001460 unsigned int ch_bits = 0;
1461 unsigned int ch_read_only = 0;
1462
1463 for (j = 0; j < channels; j++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001464 unsigned int mask;
1465
1466 mask = snd_usb_combine_bytes(bmaControls +
1467 csize * (j+1), csize);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001468 if (uac2_control_is_readable(mask, i)) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001469 ch_bits |= (1 << j);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001470 if (!uac2_control_is_writeable(mask, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001471 ch_read_only |= (1 << j);
1472 }
1473 }
1474
Daniel Mack6bc170e2014-05-24 10:58:16 +02001475 /*
1476 * NOTE: build_feature_ctl() will mark the control
1477 * read-only if all channels are marked read-only in
1478 * the descriptors. Otherwise, the control will be
1479 * reported as writeable, but the driver will not
1480 * actually issue a write command for read-only
1481 * channels.
1482 */
1483
1484 /*
1485 * The first channel must be set
1486 * (for ease of programming).
1487 */
1488 if (ch_bits & 1)
1489 build_feature_ctl(state, _ftr, ch_bits, i,
1490 &iterm, unitid, ch_read_only);
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001491 if (uac2_control_is_readable(master_bits, i))
Daniel Mack23caaf12010-03-11 21:13:25 +01001492 build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
Daniel Mackdcbe7bc2010-05-31 13:35:36 +02001493 !uac2_control_is_writeable(master_bits, i));
Daniel Mack23caaf12010-03-11 21:13:25 +01001494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
1496
1497 return 0;
1498}
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500/*
1501 * Mixer Unit
1502 */
1503
1504/*
1505 * build a mixer unit control
1506 *
1507 * the callbacks are identical with feature unit.
1508 * input channel number (zero based) is given in control field instead.
1509 */
Daniel Mack99fc8642010-03-11 21:13:24 +01001510static void build_mixer_unit_ctl(struct mixer_build *state,
1511 struct uac_mixer_unit_descriptor *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 int in_pin, int in_ch, int unitid,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001513 struct usb_audio_term *iterm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001515 struct usb_mixer_elem_info *cval;
Daniel Mack99fc8642010-03-11 21:13:24 +01001516 unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 unsigned int i, len;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001518 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001519 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001521 map = find_map(state, unitid, 0);
1522 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return;
1524
Takashi Iwai561b2202005-09-09 14:22:34 +02001525 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001526 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return;
1528
Clemens Ladisch84957a82005-04-29 16:23:13 +02001529 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 cval->id = unitid;
1531 cval->control = in_ch + 1; /* based on 1 */
1532 cval->val_type = USB_MIXER_S16;
1533 for (i = 0; i < num_outs; i++) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001534 __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol);
1535
1536 if (check_matrix_bitmap(c, in_ch, i, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 cval->cmask |= (1 << i);
1538 cval->channels++;
1539 }
1540 }
1541
1542 /* get min/max values */
1543 get_min_max(cval, 0);
1544
1545 kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001546 if (!kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001547 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 kfree(cval);
1549 return;
1550 }
1551 kctl->private_free = usb_mixer_elem_free;
1552
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001553 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001554 if (!len)
1555 len = get_term_name(state, iterm, kctl->id.name,
1556 sizeof(kctl->id.name), 0);
1557 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
Takashi Iwai08d1e632009-10-02 14:06:08 +02001559 append_ctl_name(kctl, " Volume");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001561 usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
Daniel Mackef9d5972011-05-25 09:09:00 +02001563 snd_usb_mixer_add_control(state->mixer, kctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566/*
1567 * parse a mixer unit
1568 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001569static int parse_audio_mixer_unit(struct mixer_build *state, int unitid,
1570 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Daniel Mack99fc8642010-03-11 21:13:24 +01001572 struct uac_mixer_unit_descriptor *desc = raw_desc;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001573 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 int input_pins, num_ins, num_outs;
1575 int pin, ich, err;
1576
Daniel Mack6bc170e2014-05-24 10:58:16 +02001577 if (desc->bLength < 11 || !(input_pins = desc->bNrInPins) ||
1578 !(num_outs = uac_mixer_unit_bNrChannels(desc))) {
1579 usb_audio_err(state->chip,
1580 "invalid MIXER UNIT descriptor %d\n",
1581 unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 return -EINVAL;
1583 }
1584 /* no bmControls field (e.g. Maya44) -> ignore */
Daniel Mack99fc8642010-03-11 21:13:24 +01001585 if (desc->bLength <= 10 + input_pins) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001586 usb_audio_dbg(state->chip, "MU %d has no bmControls field\n",
1587 unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return 0;
1589 }
1590
1591 num_ins = 0;
1592 ich = 0;
1593 for (pin = 0; pin < input_pins; pin++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001594 err = parse_audio_unit(state, desc->baSourceID[pin]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (err < 0)
Mark Hills284a8dd2012-04-14 17:19:23 +01001596 continue;
Daniel Mack99fc8642010-03-11 21:13:24 +01001597 err = check_input_term(state, desc->baSourceID[pin], &iterm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (err < 0)
1599 return err;
1600 num_ins += iterm.channels;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001601 for (; ich < num_ins; ich++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 int och, ich_has_controls = 0;
1603
Daniel Mack6bc170e2014-05-24 10:58:16 +02001604 for (och = 0; och < num_outs; och++) {
1605 __u8 *c = uac_mixer_unit_bmControls(desc,
1606 state->mixer->protocol);
1607
1608 if (check_matrix_bitmap(c, ich, och, num_outs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 ich_has_controls = 1;
1610 break;
1611 }
1612 }
1613 if (ich_has_controls)
1614 build_mixer_unit_ctl(state, desc, pin, ich,
1615 unitid, &iterm);
1616 }
1617 }
1618 return 0;
1619}
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621/*
1622 * Processing Unit / Extension Unit
1623 */
1624
1625/* get callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001626static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol,
1627 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001629 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 int err, val;
1631
1632 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Clemens Ladisch84957a82005-04-29 16:23:13 +02001633 if (err < 0 && cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 ucontrol->value.integer.value[0] = cval->min;
1635 return 0;
1636 }
1637 if (err < 0)
1638 return err;
1639 val = get_relative_value(cval, val);
1640 ucontrol->value.integer.value[0] = val;
1641 return 0;
1642}
1643
1644/* put callback for processing/extension unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001645static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
1646 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001648 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 int val, oval, err;
1650
1651 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
1652 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001653 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 return 0;
1655 return err;
1656 }
1657 val = ucontrol->value.integer.value[0];
1658 val = get_abs_value(cval, val);
1659 if (val != oval) {
1660 set_cur_ctl_value(cval, cval->control << 8, val);
1661 return 1;
1662 }
1663 return 0;
1664}
1665
1666/* alsa control interface for processing/extension unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001667static struct snd_kcontrol_new mixer_procunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1669 .name = "", /* will be filled later */
1670 .info = mixer_ctl_feature_info,
1671 .get = mixer_ctl_procunit_get,
1672 .put = mixer_ctl_procunit_put,
1673};
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675/*
1676 * predefined data for processing units
1677 */
1678struct procunit_value_info {
1679 int control;
1680 char *suffix;
1681 int val_type;
1682 int min_value;
1683};
1684
1685struct procunit_info {
1686 int type;
1687 char *name;
1688 struct procunit_value_info *values;
1689};
1690
1691static struct procunit_value_info updown_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001692 { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1693 { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 { 0 }
1695};
1696static struct procunit_value_info prologic_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001697 { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1698 { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 { 0 }
1700};
1701static struct procunit_value_info threed_enh_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001702 { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1703 { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 { 0 }
1705};
1706static struct procunit_value_info reverb_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001707 { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1708 { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
1709 { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
1710 { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 { 0 }
1712};
1713static struct procunit_value_info chorus_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001714 { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1715 { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
1716 { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
1717 { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 { 0 }
1719};
1720static struct procunit_value_info dcr_proc_info[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001721 { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
1722 { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
1723 { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
1724 { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
1725 { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
1726 { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 { 0 }
1728};
1729
1730static struct procunit_info procunits[] = {
Daniel Mack65f25da2010-05-31 13:35:41 +02001731 { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
1732 { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
1733 { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
1734 { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
1735 { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
1736 { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 { 0 },
1738};
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001739/*
1740 * predefined data for extension units
1741 */
1742static struct procunit_value_info clock_rate_xu_info[] = {
Daniel Macke213e9c2010-05-11 18:13:50 +02001743 { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
1744 { 0 }
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001745};
1746static struct procunit_value_info clock_source_xu_info[] = {
1747 { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
1748 { 0 }
1749};
1750static struct procunit_value_info spdif_format_xu_info[] = {
1751 { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
1752 { 0 }
1753};
1754static struct procunit_value_info soft_limit_xu_info[] = {
1755 { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
1756 { 0 }
1757};
1758static struct procunit_info extunits[] = {
1759 { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
1760 { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
1761 { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
1762 { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
1763 { 0 }
1764};
Daniel Mack6bc170e2014-05-24 10:58:16 +02001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766/*
1767 * build a processing/extension unit
1768 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001769static int build_audio_procunit(struct mixer_build *state, int unitid,
1770 void *raw_desc, struct procunit_info *list,
1771 char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Daniel Mack99fc8642010-03-11 21:13:24 +01001773 struct uac_processing_unit_descriptor *desc = raw_desc;
1774 int num_ins = desc->bNrInPins;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001775 struct usb_mixer_elem_info *cval;
1776 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 int i, err, nameid, type, len;
1778 struct procunit_info *info;
1779 struct procunit_value_info *valinfo;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001780 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 static struct procunit_value_info default_value_info[] = {
1782 { 0x01, "Switch", USB_MIXER_BOOLEAN },
1783 { 0 }
1784 };
1785 static struct procunit_info default_info = {
1786 0, NULL, default_value_info
1787 };
1788
Daniel Mack23caaf12010-03-11 21:13:25 +01001789 if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
1790 desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001791 usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 return -EINVAL;
1793 }
1794
1795 for (i = 0; i < num_ins; i++) {
Daniel Mack99fc8642010-03-11 21:13:24 +01001796 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return err;
1798 }
1799
Daniel Mack99fc8642010-03-11 21:13:24 +01001800 type = le16_to_cpu(desc->wProcessType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 for (info = list; info && info->type; info++)
1802 if (info->type == type)
1803 break;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001804 if (!info || !info->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 info = &default_info;
1806
1807 for (valinfo = info->values; valinfo->control; valinfo++) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001808 __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +01001809
Daniel Mack6bc170e2014-05-24 10:58:16 +02001810 if (!(controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 continue;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001812 map = find_map(state, unitid, valinfo->control);
1813 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 continue;
Takashi Iwai561b2202005-09-09 14:22:34 +02001815 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02001816 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return -ENOMEM;
Clemens Ladisch84957a82005-04-29 16:23:13 +02001818 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 cval->id = unitid;
1820 cval->control = valinfo->control;
1821 cval->val_type = valinfo->val_type;
1822 cval->channels = 1;
1823
1824 /* get min/max values */
Daniel Mack65f25da2010-05-31 13:35:41 +02001825 if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
Daniel Mack23caaf12010-03-11 21:13:25 +01001826 __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 /* FIXME: hard-coded */
1828 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01001829 cval->max = control_spec[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 cval->res = 1;
1831 cval->initialized = 1;
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001832 } else {
1833 if (type == USB_XU_CLOCK_RATE) {
Daniel Mack6bc170e2014-05-24 10:58:16 +02001834 /*
1835 * E-Mu USB 0404/0202/TrackerPre/0204
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001836 * samplerate control quirk
1837 */
1838 cval->min = 0;
1839 cval->max = 5;
1840 cval->res = 1;
1841 cval->initialized = 1;
1842 } else
1843 get_min_max(cval, valinfo->min_value);
1844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
1846 kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
Daniel Mack6bc170e2014-05-24 10:58:16 +02001847 if (!kctl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 kfree(cval);
1849 return -ENOMEM;
1850 }
1851 kctl->private_free = usb_mixer_elem_free;
1852
Daniel Mack6bc170e2014-05-24 10:58:16 +02001853 if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) {
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01001854 /* nothing */ ;
Daniel Mack6bc170e2014-05-24 10:58:16 +02001855 } else if (info->name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
Daniel Mack6bc170e2014-05-24 10:58:16 +02001857 } else {
Daniel Mack23caaf12010-03-11 21:13:25 +01001858 nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 len = 0;
1860 if (nameid)
Daniel Mack6bc170e2014-05-24 10:58:16 +02001861 len = snd_usb_copy_string_desc(state, nameid,
1862 kctl->id.name,
1863 sizeof(kctl->id.name));
1864 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
1866 }
Takashi Iwai08d1e632009-10-02 14:06:08 +02001867 append_ctl_name(kctl, " ");
1868 append_ctl_name(kctl, valinfo->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001870 usb_audio_dbg(state->chip,
Daniel Mack6bc170e2014-05-24 10:58:16 +02001871 "[%d] PU [%s] ch = %d, val = %d/%d\n",
1872 cval->id, kctl->id.name, cval->channels,
1873 cval->min, cval->max);
1874
1875 err = snd_usb_mixer_add_control(state->mixer, kctl);
1876 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return err;
1878 }
1879 return 0;
1880}
1881
Daniel Mack6bc170e2014-05-24 10:58:16 +02001882static int parse_audio_processing_unit(struct mixer_build *state, int unitid,
1883 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
Daniel Mack6bc170e2014-05-24 10:58:16 +02001885 return build_audio_procunit(state, unitid, raw_desc,
1886 procunits, "Processing Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887}
1888
Daniel Mack6bc170e2014-05-24 10:58:16 +02001889static int parse_audio_extension_unit(struct mixer_build *state, int unitid,
1890 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
Daniel Mack6bc170e2014-05-24 10:58:16 +02001892 /*
1893 * Note that we parse extension units with processing unit descriptors.
1894 * That's ok as the layout is the same.
1895 */
1896 return build_audio_procunit(state, unitid, raw_desc,
1897 extunits, "Extension Unit");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900/*
1901 * Selector Unit
1902 */
1903
Daniel Mack6bc170e2014-05-24 10:58:16 +02001904/*
1905 * info callback for selector unit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 * use an enumerator type for routing
1907 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001908static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol,
1909 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001911 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01001912 const char **itemlist = (const char **)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Takashi Iwai5e246b82008-08-08 17:12:47 +02001914 if (snd_BUG_ON(!itemlist))
1915 return -EINVAL;
Clemens Ladisch2a1803a2011-01-10 16:30:13 +01001916 return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917}
1918
1919/* get callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001920static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol,
1921 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001923 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 int val, err;
1925
Daniel Mack09414202010-05-31 13:35:44 +02001926 err = get_cur_ctl_value(cval, cval->control << 8, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001928 if (cval->mixer->ignore_ctl_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 ucontrol->value.enumerated.item[0] = 0;
1930 return 0;
1931 }
1932 return err;
1933 }
1934 val = get_relative_value(cval, val);
1935 ucontrol->value.enumerated.item[0] = val;
1936 return 0;
1937}
1938
1939/* put callback for selector unit */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001940static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
1941 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001943 struct usb_mixer_elem_info *cval = kcontrol->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 int val, oval, err;
1945
Daniel Mack09414202010-05-31 13:35:44 +02001946 err = get_cur_ctl_value(cval, cval->control << 8, &oval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (err < 0) {
Clemens Ladisch84957a82005-04-29 16:23:13 +02001948 if (cval->mixer->ignore_ctl_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 return 0;
1950 return err;
1951 }
1952 val = ucontrol->value.enumerated.item[0];
1953 val = get_abs_value(cval, val);
1954 if (val != oval) {
Daniel Mack09414202010-05-31 13:35:44 +02001955 set_cur_ctl_value(cval, cval->control << 8, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return 1;
1957 }
1958 return 0;
1959}
1960
1961/* alsa control interface for selector unit */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001962static struct snd_kcontrol_new mixer_selectunit_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1964 .name = "", /* will be filled later */
1965 .info = mixer_ctl_selector_info,
1966 .get = mixer_ctl_selector_get,
1967 .put = mixer_ctl_selector_put,
1968};
1969
Daniel Mack6bc170e2014-05-24 10:58:16 +02001970/*
1971 * private free callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 * free both private_data and private_value
1973 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001974static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
1976 int i, num_ins = 0;
1977
1978 if (kctl->private_data) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001979 struct usb_mixer_elem_info *cval = kctl->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 num_ins = cval->max;
1981 kfree(cval);
1982 kctl->private_data = NULL;
1983 }
1984 if (kctl->private_value) {
1985 char **itemlist = (char **)kctl->private_value;
1986 for (i = 0; i < num_ins; i++)
1987 kfree(itemlist[i]);
1988 kfree(itemlist);
1989 kctl->private_value = 0;
1990 }
1991}
1992
1993/*
1994 * parse a selector unit
1995 */
Daniel Mack6bc170e2014-05-24 10:58:16 +02001996static int parse_audio_selector_unit(struct mixer_build *state, int unitid,
1997 void *raw_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
Daniel Mack99fc8642010-03-11 21:13:24 +01001999 struct uac_selector_unit_descriptor *desc = raw_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 unsigned int i, nameid, len;
2001 int err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002002 struct usb_mixer_elem_info *cval;
2003 struct snd_kcontrol *kctl;
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002004 const struct usbmix_name_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 char **namelist;
2006
Daniel Mack99fc8642010-03-11 21:13:24 +01002007 if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002008 usb_audio_err(state->chip,
2009 "invalid SELECTOR UNIT descriptor %d\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return -EINVAL;
2011 }
2012
Daniel Mack99fc8642010-03-11 21:13:24 +01002013 for (i = 0; i < desc->bNrInPins; i++) {
2014 if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return err;
2016 }
2017
Daniel Mack99fc8642010-03-11 21:13:24 +01002018 if (desc->bNrInPins == 1) /* only one ? nonsense! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return 0;
2020
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002021 map = find_map(state, unitid, 0);
2022 if (check_ignored_ctl(map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return 0;
2024
Takashi Iwai561b2202005-09-09 14:22:34 +02002025 cval = kzalloc(sizeof(*cval), GFP_KERNEL);
Daniel Macka860d952014-05-24 10:58:17 +02002026 if (!cval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return -ENOMEM;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002028 cval->mixer = state->mixer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 cval->id = unitid;
2030 cval->val_type = USB_MIXER_U8;
2031 cval->channels = 1;
2032 cval->min = 1;
Daniel Mack99fc8642010-03-11 21:13:24 +01002033 cval->max = desc->bNrInPins;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 cval->res = 1;
2035 cval->initialized = 1;
2036
Daniel Mack09414202010-05-31 13:35:44 +02002037 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2038 cval->control = UAC2_CX_CLOCK_SELECTOR;
2039 else
2040 cval->control = 0;
2041
Daniel Mack99fc8642010-03-11 21:13:24 +01002042 namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002043 if (!namelist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 kfree(cval);
2045 return -ENOMEM;
2046 }
2047#define MAX_ITEM_NAME_LEN 64
Daniel Mack99fc8642010-03-11 21:13:24 +01002048 for (i = 0; i < desc->bNrInPins; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002049 struct usb_audio_term iterm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 len = 0;
2051 namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002052 if (!namelist[i]) {
Mariusz Kozlowski7fbe3ca2007-01-08 11:25:30 +01002053 while (i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 kfree(namelist[i]);
2055 kfree(namelist);
2056 kfree(cval);
2057 return -ENOMEM;
2058 }
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002059 len = check_mapped_selector_name(state, unitid, i, namelist[i],
2060 MAX_ITEM_NAME_LEN);
Daniel Mack99fc8642010-03-11 21:13:24 +01002061 if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
2063 if (! len)
Masanari Iidaaf831ee2014-04-28 13:08:55 +09002064 sprintf(namelist[i], "Input %u", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 }
2066
2067 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
2068 if (! kctl) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002069 usb_audio_err(state->chip, "cannot malloc kcontrol\n");
Jesper Juhl878b4782006-03-20 11:27:13 +01002070 kfree(namelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 kfree(cval);
2072 return -ENOMEM;
2073 }
2074 kctl->private_value = (unsigned long)namelist;
2075 kctl->private_free = usb_mixer_selector_elem_free;
2076
Daniel Mack99fc8642010-03-11 21:13:24 +01002077 nameid = uac_selector_unit_iSelector(desc);
Jaroslav Kyselac3a3e042010-02-11 17:50:44 +01002078 len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (len)
2080 ;
2081 else if (nameid)
Daniel Mack6bc170e2014-05-24 10:58:16 +02002082 snd_usb_copy_string_desc(state, nameid, kctl->id.name,
2083 sizeof(kctl->id.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 else {
2085 len = get_term_name(state, &state->oterm,
2086 kctl->id.name, sizeof(kctl->id.name), 0);
Daniel Mack6bc170e2014-05-24 10:58:16 +02002087 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
2089
Daniel Mack09414202010-05-31 13:35:44 +02002090 if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
2091 append_ctl_name(kctl, " Clock Source");
2092 else if ((state->oterm.type & 0xff00) == 0x0100)
Takashi Iwai08d1e632009-10-02 14:06:08 +02002093 append_ctl_name(kctl, " Capture Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 else
Takashi Iwai08d1e632009-10-02 14:06:08 +02002095 append_ctl_name(kctl, " Playback Source");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 }
2097
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002098 usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n",
Daniel Mack99fc8642010-03-11 21:13:24 +01002099 cval->id, kctl->id.name, desc->bNrInPins);
Daniel Mackef9d5972011-05-25 09:09:00 +02002100 if ((err = snd_usb_mixer_add_control(state->mixer, kctl)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 return err;
2102
2103 return 0;
2104}
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106/*
2107 * parse an audio unit recursively
2108 */
2109
Takashi Iwai86e07d32005-11-17 15:08:02 +01002110static int parse_audio_unit(struct mixer_build *state, int unitid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
2112 unsigned char *p1;
2113
2114 if (test_and_set_bit(unitid, state->unitbitmap))
2115 return 0; /* the unit already visited */
2116
2117 p1 = find_audio_control_unit(state, unitid);
2118 if (!p1) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002119 usb_audio_err(state->chip, "unit %d not found!\n", unitid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 return -EINVAL;
2121 }
2122
2123 switch (p1[2]) {
Daniel Mackde48c7b2010-02-22 23:49:13 +01002124 case UAC_INPUT_TERMINAL:
Daniel Mack09414202010-05-31 13:35:44 +02002125 case UAC2_CLOCK_SOURCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return 0; /* NOP */
Daniel Mackde48c7b2010-02-22 23:49:13 +01002127 case UAC_MIXER_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return parse_audio_mixer_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01002129 case UAC_SELECTOR_UNIT:
Daniel Mack09414202010-05-31 13:35:44 +02002130 case UAC2_CLOCK_SELECTOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return parse_audio_selector_unit(state, unitid, p1);
Daniel Mackde48c7b2010-02-22 23:49:13 +01002132 case UAC_FEATURE_UNIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return parse_audio_feature_unit(state, unitid, p1);
Daniel Mack69da9bc2010-06-16 17:57:28 +02002134 case UAC1_PROCESSING_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002135 /* UAC2_EFFECT_UNIT has the same value */
2136 if (state->mixer->protocol == UAC_VERSION_1)
2137 return parse_audio_processing_unit(state, unitid, p1);
2138 else
2139 return 0; /* FIXME - effect units not implemented yet */
Daniel Mack69da9bc2010-06-16 17:57:28 +02002140 case UAC1_EXTENSION_UNIT:
Daniel Mack23caaf12010-03-11 21:13:25 +01002141 /* UAC2_PROCESSING_UNIT_V2 has the same value */
2142 if (state->mixer->protocol == UAC_VERSION_1)
2143 return parse_audio_extension_unit(state, unitid, p1);
2144 else /* UAC_VERSION_2 */
2145 return parse_audio_processing_unit(state, unitid, p1);
Torstein Hegge61ac5132013-03-19 17:12:14 +01002146 case UAC2_EXTENSION_UNIT_V2:
2147 return parse_audio_extension_unit(state, unitid, p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002149 usb_audio_err(state->chip,
2150 "unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return -EINVAL;
2152 }
2153}
2154
Clemens Ladisch84957a82005-04-29 16:23:13 +02002155static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
2156{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002157 kfree(mixer->id_elems);
2158 if (mixer->urb) {
2159 kfree(mixer->urb->transfer_buffer);
2160 usb_free_urb(mixer->urb);
2161 }
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002162 usb_free_urb(mixer->rc_urb);
Clemens Ladischb259b102005-04-29 16:29:28 +02002163 kfree(mixer->rc_setup_packet);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002164 kfree(mixer);
2165}
2166
Takashi Iwai86e07d32005-11-17 15:08:02 +01002167static int snd_usb_mixer_dev_free(struct snd_device *device)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002168{
2169 struct usb_mixer_interface *mixer = device->device_data;
2170 snd_usb_mixer_free(mixer);
2171 return 0;
2172}
2173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174/*
2175 * create mixer controls
2176 *
Daniel Mackde48c7b2010-02-22 23:49:13 +01002177 * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 */
Clemens Ladisch84957a82005-04-29 16:23:13 +02002179static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002181 struct mixer_build state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 int err;
2183 const struct usbmix_ctl_map *map;
Daniel Mack23caaf12010-03-11 21:13:25 +01002184 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 memset(&state, 0, sizeof(state));
Clemens Ladisch84957a82005-04-29 16:23:13 +02002187 state.chip = mixer->chip;
2188 state.mixer = mixer;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002189 state.buffer = mixer->hostif->extra;
2190 state.buflen = mixer->hostif->extralen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192 /* check the mapping table */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002193 for (map = usbmix_ctl_maps; map->id; map++) {
2194 if (map->id == state.chip->usb_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 state.map = map->map;
Clemens Ladisch8e062ec2005-04-22 15:49:52 +02002196 state.selector_map = map->selector_map;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002197 mixer->ignore_ctl_error = map->ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 break;
2199 }
2200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Daniel Mack23caaf12010-03-11 21:13:25 +01002202 p = NULL;
Daniel Mack6bc170e2014-05-24 10:58:16 +02002203 while ((p = snd_usb_find_csint_desc(mixer->hostif->extra,
2204 mixer->hostif->extralen,
Daniel Mack1faa5d02011-08-04 15:56:28 +02002205 p, UAC_OUTPUT_TERMINAL)) != NULL) {
Daniel Mack23caaf12010-03-11 21:13:25 +01002206 if (mixer->protocol == UAC_VERSION_1) {
Daniel Mack69da9bc2010-06-16 17:57:28 +02002207 struct uac1_output_terminal_descriptor *desc = p;
Daniel Mack23caaf12010-03-11 21:13:25 +01002208
2209 if (desc->bLength < sizeof(*desc))
2210 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002211 /* mark terminal ID as visited */
2212 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002213 state.oterm.id = desc->bTerminalID;
2214 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2215 state.oterm.name = desc->iTerminal;
2216 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002217 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002218 return err;
2219 } else { /* UAC_VERSION_2 */
2220 struct uac2_output_terminal_descriptor *desc = p;
2221
2222 if (desc->bLength < sizeof(*desc))
2223 continue; /* invalid descriptor? */
Daniel Mack6bc170e2014-05-24 10:58:16 +02002224 /* mark terminal ID as visited */
2225 set_bit(desc->bTerminalID, state.unitbitmap);
Daniel Mack23caaf12010-03-11 21:13:25 +01002226 state.oterm.id = desc->bTerminalID;
2227 state.oterm.type = le16_to_cpu(desc->wTerminalType);
2228 state.oterm.name = desc->iTerminal;
2229 err = parse_audio_unit(&state, desc->bSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002230 if (err < 0 && err != -EINVAL)
Daniel Mack23caaf12010-03-11 21:13:25 +01002231 return err;
Daniel Mack09414202010-05-31 13:35:44 +02002232
Daniel Mack6bc170e2014-05-24 10:58:16 +02002233 /*
2234 * For UAC2, use the same approach to also add the
2235 * clock selectors
2236 */
Daniel Mack09414202010-05-31 13:35:44 +02002237 err = parse_audio_unit(&state, desc->bCSourceID);
Daniel Mack83ea5d12013-03-19 21:09:25 +01002238 if (err < 0 && err != -EINVAL)
Daniel Mack09414202010-05-31 13:35:44 +02002239 return err;
Daniel Mack23caaf12010-03-11 21:13:25 +01002240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 }
Daniel Mack23caaf12010-03-11 21:13:25 +01002242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 return 0;
2244}
Clemens Ladisch84957a82005-04-29 16:23:13 +02002245
Daniel Mack7b1eda22010-03-11 21:13:22 +01002246void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002247{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002248 struct usb_mixer_elem_info *info;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002249
2250 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
2251 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2252 info->elem_id);
2253}
2254
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002255static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
2256 int unitid,
2257 struct usb_mixer_elem_info *cval)
2258{
2259 static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
2260 "S8", "U8", "S16", "U16"};
2261 snd_iprintf(buffer, " Unit: %i\n", unitid);
2262 if (cval->elem_id)
2263 snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
2264 cval->elem_id->name, cval->elem_id->index);
2265 snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
2266 "channels=%i, type=\"%s\"\n", cval->id,
2267 cval->control, cval->cmask, cval->channels,
2268 val_types[cval->val_type]);
2269 snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
2270 cval->min, cval->max, cval->dBmin, cval->dBmax);
2271}
2272
2273static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
2274 struct snd_info_buffer *buffer)
2275{
2276 struct snd_usb_audio *chip = entry->private_data;
2277 struct usb_mixer_interface *mixer;
2278 struct usb_mixer_elem_info *cval;
2279 int unitid;
2280
2281 list_for_each_entry(mixer, &chip->mixer_list, list) {
2282 snd_iprintf(buffer,
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002283 "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
Daniel Mack3d8d4dc2010-06-16 17:57:31 +02002284 chip->usb_id, snd_usb_ctrl_intf(chip),
Jaroslav Kysela7affdc12010-02-16 11:52:27 +01002285 mixer->ignore_ctl_error);
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002286 snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
2287 for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
2288 for (cval = mixer->id_elems[unitid]; cval;
2289 cval = cval->next_id_elem)
2290 snd_usb_mixer_dump_cval(buffer, unitid, cval);
2291 }
2292 }
2293}
2294
Daniel Macke213e9c2010-05-11 18:13:50 +02002295static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
2296 int attribute, int value, int index)
2297{
2298 struct usb_mixer_elem_info *info;
2299 __u8 unitid = (index >> 8) & 0xff;
2300 __u8 control = (value >> 8) & 0xff;
2301 __u8 channel = value & 0xff;
2302
2303 if (channel >= MAX_CHANNELS) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002304 usb_audio_dbg(mixer->chip,
2305 "%s(): bogus channel number %d\n",
2306 __func__, channel);
Daniel Macke213e9c2010-05-11 18:13:50 +02002307 return;
2308 }
2309
2310 for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem) {
2311 if (info->control != control)
2312 continue;
2313
2314 switch (attribute) {
2315 case UAC2_CS_CUR:
2316 /* invalidate cache, so the value is read from the device */
2317 if (channel)
2318 info->cached &= ~(1 << channel);
2319 else /* master channel */
2320 info->cached = 0;
2321
2322 snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
2323 info->elem_id);
2324 break;
2325
2326 case UAC2_CS_RANGE:
2327 /* TODO */
2328 break;
2329
2330 case UAC2_CS_MEM:
2331 /* TODO */
2332 break;
2333
2334 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002335 usb_audio_dbg(mixer->chip,
2336 "unknown attribute %d in interrupt\n",
2337 attribute);
Daniel Macke213e9c2010-05-11 18:13:50 +02002338 break;
2339 } /* switch */
2340 }
2341}
2342
2343static void snd_usb_mixer_interrupt(struct urb *urb)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002344{
2345 struct usb_mixer_interface *mixer = urb->context;
Daniel Macke213e9c2010-05-11 18:13:50 +02002346 int len = urb->actual_length;
Oliver Neukumedf7de32011-03-11 13:19:43 +01002347 int ustatus = urb->status;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002348
Oliver Neukumedf7de32011-03-11 13:19:43 +01002349 if (ustatus != 0)
Daniel Macke213e9c2010-05-11 18:13:50 +02002350 goto requeue;
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002351
Daniel Macke213e9c2010-05-11 18:13:50 +02002352 if (mixer->protocol == UAC_VERSION_1) {
2353 struct uac1_status_word *status;
2354
2355 for (status = urb->transfer_buffer;
2356 len >= sizeof(*status);
2357 len -= sizeof(*status), status++) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01002358 dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n",
Daniel Macke213e9c2010-05-11 18:13:50 +02002359 status->bStatusType,
2360 status->bOriginator);
2361
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002362 /* ignore any notifications not from the control interface */
Daniel Macke213e9c2010-05-11 18:13:50 +02002363 if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
2364 UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002365 continue;
Daniel Macke213e9c2010-05-11 18:13:50 +02002366
2367 if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
2368 snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
Clemens Ladischb259b102005-04-29 16:29:28 +02002369 else
Daniel Macke213e9c2010-05-11 18:13:50 +02002370 snd_usb_mixer_notify_id(mixer, status->bOriginator);
2371 }
2372 } else { /* UAC_VERSION_2 */
2373 struct uac2_interrupt_data_msg *msg;
2374
2375 for (msg = urb->transfer_buffer;
2376 len >= sizeof(*msg);
2377 len -= sizeof(*msg), msg++) {
2378 /* drop vendor specific and endpoint requests */
2379 if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
2380 (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
2381 continue;
2382
2383 snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
2384 le16_to_cpu(msg->wValue),
2385 le16_to_cpu(msg->wIndex));
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002386 }
2387 }
Daniel Macke213e9c2010-05-11 18:13:50 +02002388
2389requeue:
Daniel Mack6bc170e2014-05-24 10:58:16 +02002390 if (ustatus != -ENOENT &&
2391 ustatus != -ECONNRESET &&
2392 ustatus != -ESHUTDOWN) {
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002393 urb->dev = mixer->chip->dev;
2394 usb_submit_urb(urb, GFP_ATOMIC);
2395 }
2396}
2397
2398/* create the handler for the optional status interrupt endpoint */
2399static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
2400{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002401 struct usb_endpoint_descriptor *ep;
2402 void *transfer_buffer;
2403 int buffer_length;
2404 unsigned int epnum;
2405
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002406 /* we need one interrupt input endpoint */
Daniel Mack1faa5d02011-08-04 15:56:28 +02002407 if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002408 return 0;
Daniel Mack1faa5d02011-08-04 15:56:28 +02002409 ep = get_endpoint(mixer->hostif, 0);
Julia Lawall913ae5a2009-01-03 17:54:53 +01002410 if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002411 return 0;
2412
Julia Lawall42a6e662008-12-29 11:23:02 +01002413 epnum = usb_endpoint_num(ep);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002414 buffer_length = le16_to_cpu(ep->wMaxPacketSize);
2415 transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
2416 if (!transfer_buffer)
2417 return -ENOMEM;
2418 mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
2419 if (!mixer->urb) {
2420 kfree(transfer_buffer);
2421 return -ENOMEM;
2422 }
2423 usb_fill_int_urb(mixer->urb, mixer->chip->dev,
2424 usb_rcvintpipe(mixer->chip->dev, epnum),
2425 transfer_buffer, buffer_length,
Daniel Macke213e9c2010-05-11 18:13:50 +02002426 snd_usb_mixer_interrupt, mixer, ep->bInterval);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002427 usb_submit_urb(mixer->urb, GFP_KERNEL);
2428 return 0;
2429}
2430
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002431int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
2432 int ignore_error)
Clemens Ladisch84957a82005-04-29 16:23:13 +02002433{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002434 static struct snd_device_ops dev_ops = {
Clemens Ladisch84957a82005-04-29 16:23:13 +02002435 .dev_free = snd_usb_mixer_dev_free
2436 };
2437 struct usb_mixer_interface *mixer;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002438 struct snd_info_entry *entry;
Daniel Mack23caaf12010-03-11 21:13:25 +01002439 int err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002440
2441 strcpy(chip->card->mixername, "USB Mixer");
2442
Takashi Iwai561b2202005-09-09 14:22:34 +02002443 mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002444 if (!mixer)
2445 return -ENOMEM;
2446 mixer->chip = chip;
Takashi Iwai7a9b8062008-08-13 15:40:53 +02002447 mixer->ignore_ctl_error = ignore_error;
Jaroslav Kysela291186e2010-02-16 11:55:18 +01002448 mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
2449 GFP_KERNEL);
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002450 if (!mixer->id_elems) {
2451 kfree(mixer);
2452 return -ENOMEM;
2453 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02002454
Daniel Mack1faa5d02011-08-04 15:56:28 +02002455 mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
2456 switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +02002457 case UAC_VERSION_1:
2458 default:
2459 mixer->protocol = UAC_VERSION_1;
2460 break;
2461 case UAC_VERSION_2:
2462 mixer->protocol = UAC_VERSION_2;
2463 break;
2464 }
Daniel Mack7b8a0432010-02-22 23:49:12 +01002465
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002466 if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002467 (err = snd_usb_mixer_status_create(mixer)) < 0)
2468 goto _error;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002469
Daniel Mack7b1eda22010-03-11 21:13:22 +01002470 snd_usb_mixer_apply_create_quirk(mixer);
Clemens Ladisch468b8fd2009-07-13 11:39:29 +02002471
Takashi Iwai9cbb2802014-02-04 11:15:31 +01002472 err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops);
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002473 if (err < 0)
2474 goto _error;
Jaroslav Kyselaebfdeea2010-02-16 11:17:09 +01002475
2476 if (list_empty(&chip->mixer_list) &&
2477 !snd_card_proc_new(chip->card, "usbmixer", &entry))
2478 snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
2479
Clemens Ladisch84957a82005-04-29 16:23:13 +02002480 list_add(&mixer->list, &chip->mixer_list);
2481 return 0;
Clemens Ladisch93446ed2005-05-03 08:02:40 +02002482
2483_error:
2484 snd_usb_mixer_free(mixer);
2485 return err;
Clemens Ladisch84957a82005-04-29 16:23:13 +02002486}
2487
2488void snd_usb_mixer_disconnect(struct list_head *p)
2489{
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002490 struct usb_mixer_interface *mixer;
Daniel Mack7b1eda22010-03-11 21:13:22 +01002491
Clemens Ladisch6639b6c2005-04-29 16:26:14 +02002492 mixer = list_entry(p, struct usb_mixer_interface, list);
Mariusz Kozlowski68df9de2006-11-08 15:37:04 +01002493 usb_kill_urb(mixer->urb);
2494 usb_kill_urb(mixer->rc_urb);
Clemens Ladisch84957a82005-04-29 16:23:13 +02002495}
Takashi Iwai400362f2014-01-20 16:51:16 +01002496
2497#ifdef CONFIG_PM
2498/* stop any bus activity of a mixer */
2499static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
2500{
2501 usb_kill_urb(mixer->urb);
2502 usb_kill_urb(mixer->rc_urb);
2503}
2504
2505static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
2506{
2507 int err;
2508
2509 if (mixer->urb) {
2510 err = usb_submit_urb(mixer->urb, GFP_NOIO);
2511 if (err < 0)
2512 return err;
2513 }
2514
2515 return 0;
2516}
2517
2518int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer)
2519{
2520 snd_usb_mixer_inactivate(mixer);
2521 return 0;
2522}
2523
2524static int restore_mixer_value(struct usb_mixer_elem_info *cval)
2525{
2526 int c, err, idx;
2527
2528 if (cval->cmask) {
2529 idx = 0;
2530 for (c = 0; c < MAX_CHANNELS; c++) {
2531 if (!(cval->cmask & (1 << c)))
2532 continue;
2533 if (cval->cached & (1 << c)) {
2534 err = set_cur_mix_value(cval, c + 1, idx,
2535 cval->cache_val[idx]);
2536 if (err < 0)
2537 return err;
2538 }
2539 idx++;
2540 }
2541 } else {
2542 /* master */
2543 if (cval->cached) {
2544 err = set_cur_mix_value(cval, 0, 0, *cval->cache_val);
2545 if (err < 0)
2546 return err;
2547 }
2548 }
2549
2550 return 0;
2551}
2552
2553int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume)
2554{
2555 struct usb_mixer_elem_info *cval;
2556 int id, err;
2557
2558 /* FIXME: any mixer quirks? */
2559
2560 if (reset_resume) {
2561 /* restore cached mixer values */
2562 for (id = 0; id < MAX_ID_ELEMS; id++) {
2563 for (cval = mixer->id_elems[id]; cval;
2564 cval = cval->next_id_elem) {
2565 err = restore_mixer_value(cval);
2566 if (err < 0)
2567 return err;
2568 }
2569 }
2570 }
2571
2572 return snd_usb_mixer_activate(mixer);
2573}
2574#endif