Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Mack | 157a57b | 2010-06-16 17:57:30 +0200 | [diff] [blame] | 29 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/bitops.h> |
| 46 | #include <linux/init.h> |
| 47 | #include <linux/list.h> |
Daniel Mack | cddaafb | 2016-04-09 11:21:46 +0200 | [diff] [blame] | 48 | #include <linux/log2.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <linux/slab.h> |
| 50 | #include <linux/string.h> |
| 51 | #include <linux/usb.h> |
Daniel Mack | 28e1b77 | 2010-02-22 23:49:09 +0100 | [diff] [blame] | 52 | #include <linux/usb/audio.h> |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 53 | #include <linux/usb/audio-v2.h> |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 54 | #include <linux/usb/audio-v3.h> |
Daniel Mack | 28e1b77 | 2010-02-22 23:49:09 +0100 | [diff] [blame] | 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <sound/core.h> |
| 57 | #include <sound/control.h> |
Clemens Ladisch | b259b10 | 2005-04-29 16:29:28 +0200 | [diff] [blame] | 58 | #include <sound/hwdep.h> |
Clemens Ladisch | aafad56 | 2005-05-10 14:47:38 +0200 | [diff] [blame] | 59 | #include <sound/info.h> |
Takashi Iwai | 7bc5ba7e | 2006-07-14 15:18:19 +0200 | [diff] [blame] | 60 | #include <sound/tlv.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | #include "usbaudio.h" |
Daniel Mack | f0b5e63 | 2010-03-11 21:13:23 +0100 | [diff] [blame] | 63 | #include "mixer.h" |
Daniel Mack | e577999 | 2010-03-04 19:46:13 +0100 | [diff] [blame] | 64 | #include "helper.h" |
Daniel Mack | 7b1eda2 | 2010-03-11 21:13:22 +0100 | [diff] [blame] | 65 | #include "mixer_quirks.h" |
Oliver Neukum | 88a8516 | 2011-03-11 14:51:12 +0100 | [diff] [blame] | 66 | #include "power.h" |
Raimonds Cicans | 4d1a70d | 2006-05-05 09:49:53 +0200 | [diff] [blame] | 67 | |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 68 | #define MAX_ID_ELEMS 256 |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | struct usb_audio_term { |
| 71 | int id; |
| 72 | int type; |
| 73 | int channels; |
| 74 | unsigned int chconfig; |
| 75 | int name; |
| 76 | }; |
| 77 | |
| 78 | struct usbmix_name_map; |
| 79 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 80 | struct mixer_build { |
| 81 | struct snd_usb_audio *chip; |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 82 | struct usb_mixer_interface *mixer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | unsigned char *buffer; |
| 84 | unsigned int buflen; |
Jaroslav Kysela | 291186e | 2010-02-16 11:55:18 +0100 | [diff] [blame] | 85 | DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS); |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 86 | struct usb_audio_term oterm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | const struct usbmix_name_map *map; |
Clemens Ladisch | 8e062ec | 2005-04-22 15:49:52 +0200 | [diff] [blame] | 88 | const struct usbmix_selector_map *selector_map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | }; |
| 90 | |
Joseph Teichman | 1cdfa9f | 2011-02-08 01:22:36 -0500 | [diff] [blame] | 91 | /*E-mu 0202/0404/0204 eXtension Unit(XU) control*/ |
Sergiy Kovalchuk | 7d2b451 | 2009-12-27 09:13:41 -0800 | [diff] [blame] | 92 | enum { |
| 93 | USB_XU_CLOCK_RATE = 0xe301, |
| 94 | USB_XU_CLOCK_SOURCE = 0xe302, |
| 95 | USB_XU_DIGITAL_IO_STATUS = 0xe303, |
| 96 | USB_XU_DEVICE_OPTIONS = 0xe304, |
| 97 | USB_XU_DIRECT_MONITORING = 0xe305, |
| 98 | USB_XU_METERING = 0xe306 |
| 99 | }; |
| 100 | enum { |
| 101 | USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/ |
| 102 | USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */ |
| 103 | USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */ |
| 104 | USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */ |
| 105 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
| 107 | /* |
| 108 | * manual mapping of mixer names |
| 109 | * if the mixer topology is too complicated and the parsed names are |
| 110 | * ambiguous, add the entries in usbmixer_maps.c. |
| 111 | */ |
Daniel Mack | f0b5e63 | 2010-03-11 21:13:23 +0100 | [diff] [blame] | 112 | #include "mixer_maps.c" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 114 | static const struct usbmix_name_map * |
| 115 | find_map(struct mixer_build *state, int unitid, int control) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 117 | const struct usbmix_name_map *p = state->map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 119 | if (!p) |
| 120 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
| 122 | for (p = state->map; p->id; p++) { |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 123 | if (p->id == unitid && |
| 124 | (!control || !p->control || control == p->control)) |
| 125 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 127 | return NULL; |
| 128 | } |
| 129 | |
| 130 | /* get the mapped name if the unit matches */ |
| 131 | static int |
| 132 | check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen) |
| 133 | { |
| 134 | if (!p || !p->name) |
| 135 | return 0; |
| 136 | |
| 137 | buflen--; |
| 138 | return strlcpy(buf, p->name, buflen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 141 | /* ignore the error value if ignore_ctl_error flag is set */ |
| 142 | #define filter_error(cval, err) \ |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 143 | ((cval)->head.mixer->ignore_ctl_error ? 0 : (err)) |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | /* check whether the control should be ignored */ |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 146 | static inline int |
| 147 | check_ignored_ctl(const struct usbmix_name_map *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 149 | if (!p || p->name || p->dB) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | return 0; |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 151 | return 1; |
| 152 | } |
| 153 | |
| 154 | /* dB mapping */ |
| 155 | static inline void check_mapped_dB(const struct usbmix_name_map *p, |
| 156 | struct usb_mixer_elem_info *cval) |
| 157 | { |
| 158 | if (p && p->dB) { |
| 159 | cval->dBmin = p->dB->min; |
| 160 | cval->dBmax = p->dB->max; |
Takashi Iwai | 38b6519 | 2011-08-19 07:55:10 +0200 | [diff] [blame] | 161 | cval->initialized = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Clemens Ladisch | 8e062ec | 2005-04-22 15:49:52 +0200 | [diff] [blame] | 165 | /* get the mapped selector source name */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 166 | static int check_mapped_selector_name(struct mixer_build *state, int unitid, |
Clemens Ladisch | 8e062ec | 2005-04-22 15:49:52 +0200 | [diff] [blame] | 167 | int index, char *buf, int buflen) |
| 168 | { |
| 169 | const struct usbmix_selector_map *p; |
| 170 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 171 | if (!state->selector_map) |
Clemens Ladisch | 8e062ec | 2005-04-22 15:49:52 +0200 | [diff] [blame] | 172 | return 0; |
| 173 | for (p = state->selector_map; p->id; p++) { |
| 174 | if (p->id == unitid && index < p->count) |
| 175 | return strlcpy(buf, p->names[index], buflen); |
| 176 | } |
| 177 | return 0; |
| 178 | } |
| 179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | /* |
| 181 | * find an audio control unit with the given unit id |
| 182 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 183 | static void *find_audio_control_unit(struct mixer_build *state, |
| 184 | unsigned char unit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | { |
Daniel Mack | 67e1daa | 2010-05-31 13:35:43 +0200 | [diff] [blame] | 186 | /* we just parse the header */ |
| 187 | struct uac_feature_unit_descriptor *hdr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
Daniel Mack | 67e1daa | 2010-05-31 13:35:43 +0200 | [diff] [blame] | 189 | while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr, |
| 190 | USB_DT_CS_INTERFACE)) != NULL) { |
| 191 | if (hdr->bLength >= 4 && |
| 192 | hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL && |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 193 | hdr->bDescriptorSubtype <= UAC3_SAMPLE_RATE_CONVERTER && |
Daniel Mack | 67e1daa | 2010-05-31 13:35:43 +0200 | [diff] [blame] | 194 | hdr->bUnitID == unit) |
| 195 | return hdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | } |
Daniel Mack | 67e1daa | 2010-05-31 13:35:43 +0200 | [diff] [blame] | 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | return NULL; |
| 199 | } |
| 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | /* |
| 202 | * copy a string with the given id |
| 203 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 204 | static int snd_usb_copy_string_desc(struct mixer_build *state, |
| 205 | int index, char *buf, int maxlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
| 207 | int len = usb_string(state->chip->dev, index, buf, maxlen - 1); |
Jaejoong Kim | 251552a | 2017-12-04 15:31:48 +0900 | [diff] [blame] | 208 | |
| 209 | if (len < 0) |
| 210 | return 0; |
| 211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | buf[len] = 0; |
| 213 | return len; |
| 214 | } |
| 215 | |
| 216 | /* |
| 217 | * convert from the byte/word on usb descriptor to the zero-based integer |
| 218 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 219 | static int convert_signed_value(struct usb_mixer_elem_info *cval, int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | { |
| 221 | switch (cval->val_type) { |
| 222 | case USB_MIXER_BOOLEAN: |
| 223 | return !!val; |
| 224 | case USB_MIXER_INV_BOOLEAN: |
| 225 | return !val; |
| 226 | case USB_MIXER_U8: |
| 227 | val &= 0xff; |
| 228 | break; |
| 229 | case USB_MIXER_S8: |
| 230 | val &= 0xff; |
| 231 | if (val >= 0x80) |
| 232 | val -= 0x100; |
| 233 | break; |
| 234 | case USB_MIXER_U16: |
| 235 | val &= 0xffff; |
| 236 | break; |
| 237 | case USB_MIXER_S16: |
| 238 | val &= 0xffff; |
| 239 | if (val >= 0x8000) |
| 240 | val -= 0x10000; |
| 241 | break; |
| 242 | } |
| 243 | return val; |
| 244 | } |
| 245 | |
| 246 | /* |
| 247 | * convert from the zero-based int to the byte/word for usb descriptor |
| 248 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 249 | static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | { |
| 251 | switch (cval->val_type) { |
| 252 | case USB_MIXER_BOOLEAN: |
| 253 | return !!val; |
| 254 | case USB_MIXER_INV_BOOLEAN: |
| 255 | return !val; |
| 256 | case USB_MIXER_S8: |
| 257 | case USB_MIXER_U8: |
| 258 | return val & 0xff; |
| 259 | case USB_MIXER_S16: |
| 260 | case USB_MIXER_U16: |
| 261 | return val & 0xffff; |
| 262 | } |
| 263 | return 0; /* not reached */ |
| 264 | } |
| 265 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 266 | static int get_relative_value(struct usb_mixer_elem_info *cval, int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | { |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 268 | if (!cval->res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | cval->res = 1; |
| 270 | if (val < cval->min) |
| 271 | return 0; |
Takashi Iwai | 14790f1 | 2006-03-28 17:58:28 +0200 | [diff] [blame] | 272 | else if (val >= cval->max) |
| 273 | return (cval->max - cval->min + cval->res - 1) / cval->res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | else |
| 275 | return (val - cval->min) / cval->res; |
| 276 | } |
| 277 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 278 | static int get_abs_value(struct usb_mixer_elem_info *cval, int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | { |
| 280 | if (val < 0) |
| 281 | return cval->min; |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 282 | if (!cval->res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | cval->res = 1; |
| 284 | val *= cval->res; |
| 285 | val += cval->min; |
| 286 | if (val > cval->max) |
| 287 | return cval->max; |
| 288 | return val; |
| 289 | } |
| 290 | |
Julian Scheel | bc18e31 | 2015-08-14 16:14:45 +0200 | [diff] [blame] | 291 | static int uac2_ctl_value_size(int val_type) |
| 292 | { |
| 293 | switch (val_type) { |
| 294 | case USB_MIXER_S32: |
| 295 | case USB_MIXER_U32: |
| 296 | return 4; |
| 297 | case USB_MIXER_S16: |
| 298 | case USB_MIXER_U16: |
| 299 | return 2; |
| 300 | default: |
| 301 | return 1; |
| 302 | } |
| 303 | return 0; /* unreachable */ |
| 304 | } |
| 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
| 307 | /* |
| 308 | * retrieve a mixer value |
| 309 | */ |
| 310 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 311 | static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request, |
| 312 | int validx, int *value_ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 314 | struct snd_usb_audio *chip = cval->head.mixer->chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | unsigned char buf[2]; |
| 316 | int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1; |
| 317 | int timeout = 10; |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 318 | int idx = 0, err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Takashi Iwai | 47ab154 | 2015-08-25 16:09:00 +0200 | [diff] [blame] | 320 | err = snd_usb_lock_shutdown(chip); |
Oliver Neukum | 88a8516 | 2011-03-11 14:51:12 +0100 | [diff] [blame] | 321 | if (err < 0) |
| 322 | return -EIO; |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | while (timeout-- > 0) { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 325 | idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8); |
Stephen Barber | 5a9a8ec | 2017-08-17 15:17:46 -0700 | [diff] [blame] | 326 | err = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request, |
| 327 | USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN, |
| 328 | validx, idx, buf, val_len); |
| 329 | if (err >= val_len) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len)); |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 331 | err = 0; |
| 332 | goto out; |
Stephen Barber | 5a9a8ec | 2017-08-17 15:17:46 -0700 | [diff] [blame] | 333 | } else if (err == -ETIMEDOUT) { |
| 334 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | } |
| 336 | } |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 337 | usb_audio_dbg(chip, |
| 338 | "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n", |
| 339 | request, validx, idx, cval->val_type); |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 340 | err = -EINVAL; |
| 341 | |
| 342 | out: |
Takashi Iwai | 47ab154 | 2015-08-25 16:09:00 +0200 | [diff] [blame] | 343 | snd_usb_unlock_shutdown(chip); |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 344 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | } |
| 346 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 347 | static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request, |
| 348 | int validx, int *value_ret) |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 349 | { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 350 | struct snd_usb_audio *chip = cval->head.mixer->chip; |
Kirill Marinushkin | 447cae5 | 2018-01-29 06:37:55 +0100 | [diff] [blame] | 351 | /* enough space for one range */ |
| 352 | unsigned char buf[sizeof(__u16) + 3 * sizeof(__u32)]; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 353 | unsigned char *val; |
Kirill Marinushkin | 447cae5 | 2018-01-29 06:37:55 +0100 | [diff] [blame] | 354 | int idx = 0, ret, val_size, size; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 355 | __u8 bRequest; |
| 356 | |
Kirill Marinushkin | 447cae5 | 2018-01-29 06:37:55 +0100 | [diff] [blame] | 357 | val_size = uac2_ctl_value_size(cval->val_type); |
| 358 | |
Daniel Mack | e8bdb6b | 2010-06-11 17:34:22 +0200 | [diff] [blame] | 359 | if (request == UAC_GET_CUR) { |
| 360 | bRequest = UAC2_CS_CUR; |
Kirill Marinushkin | 447cae5 | 2018-01-29 06:37:55 +0100 | [diff] [blame] | 361 | size = val_size; |
Daniel Mack | e8bdb6b | 2010-06-11 17:34:22 +0200 | [diff] [blame] | 362 | } else { |
| 363 | bRequest = UAC2_CS_RANGE; |
Kirill Marinushkin | 447cae5 | 2018-01-29 06:37:55 +0100 | [diff] [blame] | 364 | size = sizeof(__u16) + 3 * val_size; |
Daniel Mack | e8bdb6b | 2010-06-11 17:34:22 +0200 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | memset(buf, 0, sizeof(buf)); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 368 | |
Takashi Iwai | 47ab154 | 2015-08-25 16:09:00 +0200 | [diff] [blame] | 369 | ret = snd_usb_lock_shutdown(chip) ? -EIO : 0; |
Oliver Neukum | 88a8516 | 2011-03-11 14:51:12 +0100 | [diff] [blame] | 370 | if (ret) |
| 371 | goto error; |
| 372 | |
Takashi Iwai | 47ab154 | 2015-08-25 16:09:00 +0200 | [diff] [blame] | 373 | idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8); |
| 374 | ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest, |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 375 | USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN, |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 376 | validx, idx, buf, size); |
Takashi Iwai | 47ab154 | 2015-08-25 16:09:00 +0200 | [diff] [blame] | 377 | snd_usb_unlock_shutdown(chip); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 378 | |
| 379 | if (ret < 0) { |
Oliver Neukum | 88a8516 | 2011-03-11 14:51:12 +0100 | [diff] [blame] | 380 | error: |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 381 | usb_audio_err(chip, |
| 382 | "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n", |
| 383 | request, validx, idx, cval->val_type); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 384 | return ret; |
| 385 | } |
| 386 | |
Daniel Mack | e8bdb6b | 2010-06-11 17:34:22 +0200 | [diff] [blame] | 387 | /* FIXME: how should we handle multiple triplets here? */ |
| 388 | |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 389 | switch (request) { |
| 390 | case UAC_GET_CUR: |
| 391 | val = buf; |
| 392 | break; |
| 393 | case UAC_GET_MIN: |
| 394 | val = buf + sizeof(__u16); |
| 395 | break; |
| 396 | case UAC_GET_MAX: |
Kirill Marinushkin | 447cae5 | 2018-01-29 06:37:55 +0100 | [diff] [blame] | 397 | val = buf + sizeof(__u16) + val_size; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 398 | break; |
| 399 | case UAC_GET_RES: |
Kirill Marinushkin | 447cae5 | 2018-01-29 06:37:55 +0100 | [diff] [blame] | 400 | val = buf + sizeof(__u16) + val_size * 2; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 401 | break; |
| 402 | default: |
| 403 | return -EINVAL; |
| 404 | } |
| 405 | |
Kirill Marinushkin | 447cae5 | 2018-01-29 06:37:55 +0100 | [diff] [blame] | 406 | *value_ret = convert_signed_value(cval, |
| 407 | snd_usb_combine_bytes(val, val_size)); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 408 | |
| 409 | return 0; |
| 410 | } |
| 411 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 412 | static int get_ctl_value(struct usb_mixer_elem_info *cval, int request, |
| 413 | int validx, int *value_ret) |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 414 | { |
Eldad Zack | 9f81410 | 2012-11-28 23:55:35 +0100 | [diff] [blame] | 415 | validx += cval->idx_off; |
| 416 | |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 417 | return (cval->head.mixer->protocol == UAC_VERSION_1) ? |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 418 | get_ctl_value_v1(cval, request, validx, value_ret) : |
| 419 | get_ctl_value_v2(cval, request, validx, value_ret); |
| 420 | } |
| 421 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 422 | static int get_cur_ctl_value(struct usb_mixer_elem_info *cval, |
| 423 | int validx, int *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | { |
Daniel Mack | de48c7b | 2010-02-22 23:49:13 +0100 | [diff] [blame] | 425 | return get_ctl_value(cval, UAC_GET_CUR, validx, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | /* channel = 0: master, 1 = first channel */ |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 429 | static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval, |
| 430 | int channel, int *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | { |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 432 | return get_ctl_value(cval, UAC_GET_CUR, |
| 433 | (cval->control << 8) | channel, |
| 434 | value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | } |
| 436 | |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 437 | int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info *cval, |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 438 | int channel, int index, int *value) |
| 439 | { |
| 440 | int err; |
| 441 | |
| 442 | if (cval->cached & (1 << channel)) { |
| 443 | *value = cval->cache_val[index]; |
| 444 | return 0; |
| 445 | } |
| 446 | err = get_cur_mix_raw(cval, channel, value); |
| 447 | if (err < 0) { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 448 | if (!cval->head.mixer->ignore_ctl_error) |
| 449 | usb_audio_dbg(cval->head.mixer->chip, |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 450 | "cannot get current value for control %d ch %d: err = %d\n", |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 451 | cval->control, channel, err); |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 452 | return err; |
| 453 | } |
| 454 | cval->cached |= 1 << channel; |
| 455 | cval->cache_val[index] = *value; |
| 456 | return 0; |
| 457 | } |
| 458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | /* |
| 460 | * set a mixer value |
| 461 | */ |
| 462 | |
Daniel Mack | 7b1eda2 | 2010-03-11 21:13:22 +0100 | [diff] [blame] | 463 | int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval, |
| 464 | int request, int validx, int value_set) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 466 | struct snd_usb_audio *chip = cval->head.mixer->chip; |
Julian Scheel | bc18e31 | 2015-08-14 16:14:45 +0200 | [diff] [blame] | 467 | unsigned char buf[4]; |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 468 | int idx = 0, val_len, err, timeout = 10; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 469 | |
Eldad Zack | 9f81410 | 2012-11-28 23:55:35 +0100 | [diff] [blame] | 470 | validx += cval->idx_off; |
| 471 | |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 472 | |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 473 | if (cval->head.mixer->protocol == UAC_VERSION_1) { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 474 | val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1; |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 475 | } else { /* UAC_VERSION_2/3 */ |
Julian Scheel | bc18e31 | 2015-08-14 16:14:45 +0200 | [diff] [blame] | 476 | val_len = uac2_ctl_value_size(cval->val_type); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 477 | |
| 478 | /* FIXME */ |
| 479 | if (request != UAC_SET_CUR) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 480 | usb_audio_dbg(chip, "RANGE setting not yet supported\n"); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 481 | return -EINVAL; |
| 482 | } |
| 483 | |
| 484 | request = UAC2_CS_CUR; |
| 485 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 487 | value_set = convert_bytes_value(cval, value_set); |
| 488 | buf[0] = value_set & 0xff; |
| 489 | buf[1] = (value_set >> 8) & 0xff; |
Julian Scheel | bc18e31 | 2015-08-14 16:14:45 +0200 | [diff] [blame] | 490 | buf[2] = (value_set >> 16) & 0xff; |
| 491 | buf[3] = (value_set >> 24) & 0xff; |
Takashi Iwai | 47ab154 | 2015-08-25 16:09:00 +0200 | [diff] [blame] | 492 | |
| 493 | err = snd_usb_lock_shutdown(chip); |
Oliver Neukum | 88a8516 | 2011-03-11 14:51:12 +0100 | [diff] [blame] | 494 | if (err < 0) |
| 495 | return -EIO; |
Takashi Iwai | 47ab154 | 2015-08-25 16:09:00 +0200 | [diff] [blame] | 496 | |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 497 | while (timeout-- > 0) { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 498 | idx = snd_usb_ctrl_intf(chip) | (cval->head.id << 8); |
Stephen Barber | 5a9a8ec | 2017-08-17 15:17:46 -0700 | [diff] [blame] | 499 | err = snd_usb_ctl_msg(chip->dev, |
| 500 | usb_sndctrlpipe(chip->dev, 0), request, |
| 501 | USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT, |
| 502 | validx, idx, buf, val_len); |
| 503 | if (err >= 0) { |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 504 | err = 0; |
| 505 | goto out; |
Stephen Barber | 5a9a8ec | 2017-08-17 15:17:46 -0700 | [diff] [blame] | 506 | } else if (err == -ETIMEDOUT) { |
| 507 | goto out; |
Oliver Neukum | 88a8516 | 2011-03-11 14:51:12 +0100 | [diff] [blame] | 508 | } |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 509 | } |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 510 | usb_audio_dbg(chip, "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n", |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 511 | request, validx, idx, cval->val_type, buf[0], buf[1]); |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 512 | err = -EINVAL; |
| 513 | |
| 514 | out: |
Takashi Iwai | 47ab154 | 2015-08-25 16:09:00 +0200 | [diff] [blame] | 515 | snd_usb_unlock_shutdown(chip); |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 516 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | } |
| 518 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 519 | static int set_cur_ctl_value(struct usb_mixer_elem_info *cval, |
| 520 | int validx, int value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | { |
Daniel Mack | 7b1eda2 | 2010-03-11 21:13:22 +0100 | [diff] [blame] | 522 | return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | } |
| 524 | |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 525 | int snd_usb_set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel, |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 526 | int index, int value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | { |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 528 | int err; |
Daniel Mack | a6a3325 | 2010-05-31 13:35:37 +0200 | [diff] [blame] | 529 | unsigned int read_only = (channel == 0) ? |
| 530 | cval->master_readonly : |
| 531 | cval->ch_readonly & (1 << (channel - 1)); |
| 532 | |
| 533 | if (read_only) { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 534 | usb_audio_dbg(cval->head.mixer->chip, |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 535 | "%s(): channel %d of control %d is read_only\n", |
Daniel Mack | a6a3325 | 2010-05-31 13:35:37 +0200 | [diff] [blame] | 536 | __func__, channel, cval->control); |
| 537 | return 0; |
| 538 | } |
| 539 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 540 | err = snd_usb_mixer_set_ctl_value(cval, |
| 541 | UAC_SET_CUR, (cval->control << 8) | channel, |
| 542 | value); |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 543 | if (err < 0) |
| 544 | return err; |
| 545 | cval->cached |= 1 << channel; |
| 546 | cval->cache_val[index] = value; |
| 547 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | } |
| 549 | |
Takashi Iwai | 7bc5ba7e | 2006-07-14 15:18:19 +0200 | [diff] [blame] | 550 | /* |
| 551 | * TLV callback for mixer volume controls |
| 552 | */ |
Felix Homann | 285de9c | 2012-04-23 20:24:24 +0200 | [diff] [blame] | 553 | int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
Takashi Iwai | 7bc5ba7e | 2006-07-14 15:18:19 +0200 | [diff] [blame] | 554 | unsigned int size, unsigned int __user *_tlv) |
| 555 | { |
| 556 | struct usb_mixer_elem_info *cval = kcontrol->private_data; |
Takashi Iwai | b8e1c73 | 2009-06-16 14:04:37 +0200 | [diff] [blame] | 557 | DECLARE_TLV_DB_MINMAX(scale, 0, 0); |
Takashi Iwai | 7bc5ba7e | 2006-07-14 15:18:19 +0200 | [diff] [blame] | 558 | |
| 559 | if (size < sizeof(scale)) |
| 560 | return -ENOMEM; |
Takashi Iwai | 0f174b3 | 2017-08-16 14:18:37 +0200 | [diff] [blame] | 561 | if (cval->min_mute) |
| 562 | scale[0] = SNDRV_CTL_TLVT_DB_MINMAX_MUTE; |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 563 | scale[2] = cval->dBmin; |
| 564 | scale[3] = cval->dBmax; |
Takashi Iwai | 7bc5ba7e | 2006-07-14 15:18:19 +0200 | [diff] [blame] | 565 | if (copy_to_user(_tlv, scale, sizeof(scale))) |
| 566 | return -EFAULT; |
| 567 | return 0; |
| 568 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
| 570 | /* |
| 571 | * parser routines begin here... |
| 572 | */ |
| 573 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 574 | static int parse_audio_unit(struct mixer_build *state, int unitid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | |
| 576 | |
| 577 | /* |
| 578 | * check if the input/output channel routing is enabled on the given bitmap. |
| 579 | * used for mixer unit parser |
| 580 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 581 | static int check_matrix_bitmap(unsigned char *bmap, |
| 582 | int ich, int och, int num_outs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
| 584 | int idx = ich * num_outs + och; |
| 585 | return bmap[idx >> 3] & (0x80 >> (idx & 7)); |
| 586 | } |
| 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | /* |
| 589 | * add an alsa control element |
| 590 | * search and increment the index until an empty slot is found. |
| 591 | * |
| 592 | * if failed, give up and free the control instance. |
| 593 | */ |
| 594 | |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 595 | int snd_usb_mixer_add_control(struct usb_mixer_elem_list *list, |
Daniel Mack | ef9d597 | 2011-05-25 09:09:00 +0200 | [diff] [blame] | 596 | struct snd_kcontrol *kctl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 598 | struct usb_mixer_interface *mixer = list->mixer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | int err; |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 600 | |
Daniel Mack | ef9d597 | 2011-05-25 09:09:00 +0200 | [diff] [blame] | 601 | while (snd_ctl_find_id(mixer->chip->card, &kctl->id)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | kctl->id.index++; |
Daniel Mack | ef9d597 | 2011-05-25 09:09:00 +0200 | [diff] [blame] | 603 | if ((err = snd_ctl_add(mixer->chip->card, kctl)) < 0) { |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 604 | usb_audio_dbg(mixer->chip, "cannot add control (err = %d)\n", |
| 605 | err); |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 606 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 608 | list->kctl = kctl; |
| 609 | list->next_id_elem = mixer->id_elems[list->id]; |
| 610 | mixer->id_elems[list->id] = list; |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 611 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
| 613 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | /* |
| 615 | * get a terminal name string |
| 616 | */ |
| 617 | |
| 618 | static struct iterm_name_combo { |
| 619 | int type; |
| 620 | char *name; |
| 621 | } iterm_names[] = { |
| 622 | { 0x0300, "Output" }, |
| 623 | { 0x0301, "Speaker" }, |
| 624 | { 0x0302, "Headphone" }, |
| 625 | { 0x0303, "HMD Audio" }, |
| 626 | { 0x0304, "Desktop Speaker" }, |
| 627 | { 0x0305, "Room Speaker" }, |
| 628 | { 0x0306, "Com Speaker" }, |
| 629 | { 0x0307, "LFE" }, |
| 630 | { 0x0600, "External In" }, |
| 631 | { 0x0601, "Analog In" }, |
| 632 | { 0x0602, "Digital In" }, |
| 633 | { 0x0603, "Line" }, |
| 634 | { 0x0604, "Legacy In" }, |
| 635 | { 0x0605, "IEC958 In" }, |
| 636 | { 0x0606, "1394 DA Stream" }, |
| 637 | { 0x0607, "1394 DV Stream" }, |
| 638 | { 0x0700, "Embedded" }, |
| 639 | { 0x0701, "Noise Source" }, |
| 640 | { 0x0702, "Equalization Noise" }, |
| 641 | { 0x0703, "CD" }, |
| 642 | { 0x0704, "DAT" }, |
| 643 | { 0x0705, "DCC" }, |
| 644 | { 0x0706, "MiniDisk" }, |
| 645 | { 0x0707, "Analog Tape" }, |
| 646 | { 0x0708, "Phonograph" }, |
| 647 | { 0x0709, "VCR Audio" }, |
| 648 | { 0x070a, "Video Disk Audio" }, |
| 649 | { 0x070b, "DVD Audio" }, |
| 650 | { 0x070c, "TV Tuner Audio" }, |
| 651 | { 0x070d, "Satellite Rec Audio" }, |
| 652 | { 0x070e, "Cable Tuner Audio" }, |
| 653 | { 0x070f, "DSS Audio" }, |
| 654 | { 0x0710, "Radio Receiver" }, |
| 655 | { 0x0711, "Radio Transmitter" }, |
| 656 | { 0x0712, "Multi-Track Recorder" }, |
| 657 | { 0x0713, "Synthesizer" }, |
| 658 | { 0 }, |
| 659 | }; |
| 660 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 661 | static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | unsigned char *name, int maxlen, int term_only) |
| 663 | { |
| 664 | struct iterm_name_combo *names; |
Takashi Iwai | 56a23ee | 2017-12-19 13:38:23 +0100 | [diff] [blame] | 665 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | |
Takashi Iwai | 56a23ee | 2017-12-19 13:38:23 +0100 | [diff] [blame] | 667 | if (iterm->name) { |
| 668 | len = snd_usb_copy_string_desc(state, iterm->name, |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 669 | name, maxlen); |
Takashi Iwai | 56a23ee | 2017-12-19 13:38:23 +0100 | [diff] [blame] | 670 | if (len) |
| 671 | return len; |
| 672 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
| 674 | /* virtual type - not a real terminal */ |
| 675 | if (iterm->type >> 16) { |
| 676 | if (term_only) |
| 677 | return 0; |
| 678 | switch (iterm->type >> 16) { |
Daniel Mack | de48c7b | 2010-02-22 23:49:13 +0100 | [diff] [blame] | 679 | case UAC_SELECTOR_UNIT: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 680 | strcpy(name, "Selector"); |
| 681 | return 8; |
Daniel Mack | 69da9bc | 2010-06-16 17:57:28 +0200 | [diff] [blame] | 682 | case UAC1_PROCESSING_UNIT: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 683 | strcpy(name, "Process Unit"); |
| 684 | return 12; |
Daniel Mack | 69da9bc | 2010-06-16 17:57:28 +0200 | [diff] [blame] | 685 | case UAC1_EXTENSION_UNIT: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 686 | strcpy(name, "Ext Unit"); |
| 687 | return 8; |
Daniel Mack | de48c7b | 2010-02-22 23:49:13 +0100 | [diff] [blame] | 688 | case UAC_MIXER_UNIT: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 689 | strcpy(name, "Mixer"); |
| 690 | return 5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | default: |
| 692 | return sprintf(name, "Unit %d", iterm->id); |
| 693 | } |
| 694 | } |
| 695 | |
| 696 | switch (iterm->type & 0xff00) { |
| 697 | case 0x0100: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 698 | strcpy(name, "PCM"); |
| 699 | return 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | case 0x0200: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 701 | strcpy(name, "Mic"); |
| 702 | return 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | case 0x0400: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 704 | strcpy(name, "Headset"); |
| 705 | return 7; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | case 0x0500: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 707 | strcpy(name, "Phone"); |
| 708 | return 5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | } |
| 710 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 711 | for (names = iterm_names; names->type; names++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | if (names->type == iterm->type) { |
| 713 | strcpy(name, names->name); |
| 714 | return strlen(names->name); |
| 715 | } |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 716 | } |
| 717 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | return 0; |
| 719 | } |
| 720 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | /* |
| 722 | * parse the source unit recursively until it reaches to a terminal |
| 723 | * or a branched unit. |
| 724 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 725 | static int check_input_term(struct mixer_build *state, int id, |
| 726 | struct usb_audio_term *term) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | { |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 728 | int protocol = state->mixer->protocol; |
Daniel Mack | 0941420 | 2010-05-31 13:35:44 +0200 | [diff] [blame] | 729 | int err; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 730 | void *p1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
| 732 | memset(term, 0, sizeof(*term)); |
| 733 | while ((p1 = find_audio_control_unit(state, id)) != NULL) { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 734 | unsigned char *hdr = p1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | term->id = id; |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 736 | |
| 737 | if (protocol == UAC_VERSION_1 || protocol == UAC_VERSION_2) { |
| 738 | switch (hdr[2]) { |
| 739 | case UAC_INPUT_TERMINAL: |
| 740 | if (protocol == UAC_VERSION_1) { |
| 741 | struct uac_input_terminal_descriptor *d = p1; |
| 742 | |
| 743 | term->type = le16_to_cpu(d->wTerminalType); |
| 744 | term->channels = d->bNrChannels; |
| 745 | term->chconfig = le16_to_cpu(d->wChannelConfig); |
| 746 | term->name = d->iTerminal; |
| 747 | } else { /* UAC_VERSION_2 */ |
| 748 | struct uac2_input_terminal_descriptor *d = p1; |
| 749 | |
| 750 | /* call recursively to verify that the |
| 751 | * referenced clock entity is valid */ |
| 752 | err = check_input_term(state, d->bCSourceID, term); |
| 753 | if (err < 0) |
| 754 | return err; |
| 755 | |
| 756 | /* save input term properties after recursion, |
| 757 | * to ensure they are not overriden by the |
| 758 | * recursion calls */ |
| 759 | term->id = id; |
| 760 | term->type = le16_to_cpu(d->wTerminalType); |
| 761 | term->channels = d->bNrChannels; |
| 762 | term->chconfig = le32_to_cpu(d->bmChannelConfig); |
| 763 | term->name = d->iTerminal; |
| 764 | } |
| 765 | return 0; |
| 766 | case UAC_FEATURE_UNIT: { |
| 767 | /* the header is the same for v1 and v2 */ |
| 768 | struct uac_feature_unit_descriptor *d = p1; |
| 769 | |
| 770 | id = d->bSourceID; |
| 771 | break; /* continue to parse */ |
| 772 | } |
| 773 | case UAC_MIXER_UNIT: { |
| 774 | struct uac_mixer_unit_descriptor *d = p1; |
| 775 | |
| 776 | term->type = d->bDescriptorSubtype << 16; /* virtual type */ |
| 777 | term->channels = uac_mixer_unit_bNrChannels(d); |
| 778 | term->chconfig = uac_mixer_unit_wChannelConfig(d, protocol); |
| 779 | term->name = uac_mixer_unit_iMixer(d); |
| 780 | return 0; |
| 781 | } |
| 782 | case UAC_SELECTOR_UNIT: |
| 783 | case UAC2_CLOCK_SELECTOR: { |
| 784 | struct uac_selector_unit_descriptor *d = p1; |
| 785 | /* call recursively to retrieve the channel info */ |
| 786 | err = check_input_term(state, d->baSourceID[0], term); |
| 787 | if (err < 0) |
| 788 | return err; |
| 789 | term->type = d->bDescriptorSubtype << 16; /* virtual type */ |
| 790 | term->id = id; |
| 791 | term->name = uac_selector_unit_iSelector(d); |
| 792 | return 0; |
| 793 | } |
| 794 | case UAC1_PROCESSING_UNIT: |
| 795 | case UAC1_EXTENSION_UNIT: |
| 796 | /* UAC2_PROCESSING_UNIT_V2 */ |
| 797 | /* UAC2_EFFECT_UNIT */ |
| 798 | case UAC2_EXTENSION_UNIT_V2: { |
| 799 | struct uac_processing_unit_descriptor *d = p1; |
| 800 | |
| 801 | if (protocol == UAC_VERSION_2 && |
| 802 | hdr[2] == UAC2_EFFECT_UNIT) { |
| 803 | /* UAC2/UAC1 unit IDs overlap here in an |
| 804 | * uncompatible way. Ignore this unit for now. |
| 805 | */ |
| 806 | return 0; |
| 807 | } |
| 808 | |
| 809 | if (d->bNrInPins) { |
| 810 | id = d->baSourceID[0]; |
| 811 | break; /* continue to parse */ |
| 812 | } |
| 813 | term->type = d->bDescriptorSubtype << 16; /* virtual type */ |
| 814 | term->channels = uac_processing_unit_bNrChannels(d); |
| 815 | term->chconfig = uac_processing_unit_wChannelConfig(d, protocol); |
| 816 | term->name = uac_processing_unit_iProcessing(d, protocol); |
| 817 | return 0; |
| 818 | } |
| 819 | case UAC2_CLOCK_SOURCE: { |
| 820 | struct uac_clock_source_descriptor *d = p1; |
| 821 | |
| 822 | term->type = d->bDescriptorSubtype << 16; /* virtual type */ |
| 823 | term->id = id; |
| 824 | term->name = d->iClockSource; |
| 825 | return 0; |
| 826 | } |
| 827 | default: |
| 828 | return -ENODEV; |
| 829 | } |
| 830 | } else { /* UAC_VERSION_3 */ |
| 831 | switch (hdr[2]) { |
| 832 | case UAC_INPUT_TERMINAL: { |
| 833 | struct uac3_input_terminal_descriptor *d = p1; |
Julian Scheel | 9430e54 | 2015-08-19 09:28:09 +0200 | [diff] [blame] | 834 | |
| 835 | /* call recursively to verify that the |
| 836 | * referenced clock entity is valid */ |
| 837 | err = check_input_term(state, d->bCSourceID, term); |
| 838 | if (err < 0) |
| 839 | return err; |
| 840 | |
| 841 | /* save input term properties after recursion, |
| 842 | * to ensure they are not overriden by the |
| 843 | * recursion calls */ |
| 844 | term->id = id; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 845 | term->type = le16_to_cpu(d->wTerminalType); |
Eldad Zack | 5dae5fd | 2012-11-28 23:55:36 +0100 | [diff] [blame] | 846 | |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 847 | /* REVISIT: UAC3 IT doesn't have channels/cfg */ |
| 848 | term->channels = 0; |
| 849 | term->chconfig = 0; |
| 850 | |
| 851 | term->name = le16_to_cpu(d->wTerminalDescrStr); |
Eldad Zack | 5dae5fd | 2012-11-28 23:55:36 +0100 | [diff] [blame] | 852 | return 0; |
| 853 | } |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 854 | case UAC3_FEATURE_UNIT: { |
| 855 | struct uac3_feature_unit_descriptor *d = p1; |
Eldad Zack | 5dae5fd | 2012-11-28 23:55:36 +0100 | [diff] [blame] | 856 | |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 857 | id = d->bSourceID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | break; /* continue to parse */ |
| 859 | } |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 860 | case UAC3_CLOCK_SOURCE: { |
| 861 | struct uac3_clock_source_descriptor *d = p1; |
| 862 | |
| 863 | term->type = d->bDescriptorSubtype << 16; /* virtual type */ |
| 864 | term->id = id; |
| 865 | term->name = le16_to_cpu(d->wClockSourceStr); |
| 866 | return 0; |
| 867 | } |
| 868 | default: |
| 869 | return -ENODEV; |
| 870 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } |
| 872 | } |
| 873 | return -ENODEV; |
| 874 | } |
| 875 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | /* |
| 877 | * Feature Unit |
| 878 | */ |
| 879 | |
| 880 | /* feature unit control information */ |
| 881 | struct usb_feature_control_info { |
| 882 | const char *name; |
Julian Scheel | bc18e31 | 2015-08-14 16:14:45 +0200 | [diff] [blame] | 883 | int type; /* data type for uac1 */ |
| 884 | int type_uac2; /* data type for uac2 if different from uac1, else -1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | }; |
| 886 | |
| 887 | static struct usb_feature_control_info audio_feature_info[] = { |
Julian Scheel | bc18e31 | 2015-08-14 16:14:45 +0200 | [diff] [blame] | 888 | { "Mute", USB_MIXER_INV_BOOLEAN, -1 }, |
| 889 | { "Volume", USB_MIXER_S16, -1 }, |
| 890 | { "Tone Control - Bass", USB_MIXER_S8, -1 }, |
| 891 | { "Tone Control - Mid", USB_MIXER_S8, -1 }, |
| 892 | { "Tone Control - Treble", USB_MIXER_S8, -1 }, |
| 893 | { "Graphic Equalizer", USB_MIXER_S8, -1 }, /* FIXME: not implemeted yet */ |
| 894 | { "Auto Gain Control", USB_MIXER_BOOLEAN, -1 }, |
| 895 | { "Delay Control", USB_MIXER_U16, USB_MIXER_U32 }, |
| 896 | { "Bass Boost", USB_MIXER_BOOLEAN, -1 }, |
| 897 | { "Loudness", USB_MIXER_BOOLEAN, -1 }, |
Daniel Mack | 2e0281d | 2010-05-31 13:35:42 +0200 | [diff] [blame] | 898 | /* UAC2 specific */ |
Julian Scheel | bc18e31 | 2015-08-14 16:14:45 +0200 | [diff] [blame] | 899 | { "Input Gain Control", USB_MIXER_S16, -1 }, |
| 900 | { "Input Gain Pad Control", USB_MIXER_S16, -1 }, |
| 901 | { "Phase Inverter Control", USB_MIXER_BOOLEAN, -1 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | }; |
| 903 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | /* private_free callback */ |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 905 | void snd_usb_mixer_elem_free(struct snd_kcontrol *kctl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | { |
Jesper Juhl | 4d57277 | 2005-05-30 17:30:32 +0200 | [diff] [blame] | 907 | kfree(kctl->private_data); |
| 908 | kctl->private_data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | } |
| 910 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | /* |
| 912 | * interface to ALSA control for feature/mixer units |
| 913 | */ |
| 914 | |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 915 | /* volume control quirks */ |
| 916 | static void volume_control_quirks(struct usb_mixer_elem_info *cval, |
| 917 | struct snd_kcontrol *kctl) |
| 918 | { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 919 | struct snd_usb_audio *chip = cval->head.mixer->chip; |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 920 | switch (chip->usb_id) { |
Eldad Zack | d50ed62 | 2012-11-28 23:55:39 +0100 | [diff] [blame] | 921 | case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */ |
Matt Gruskin | e9a25e0 | 2013-02-09 12:56:35 -0500 | [diff] [blame] | 922 | case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */ |
Eldad Zack | d50ed62 | 2012-11-28 23:55:39 +0100 | [diff] [blame] | 923 | if (strcmp(kctl->id.name, "Effect Duration") == 0) { |
| 924 | cval->min = 0x0000; |
| 925 | cval->max = 0xffff; |
| 926 | cval->res = 0x00e6; |
| 927 | break; |
| 928 | } |
| 929 | if (strcmp(kctl->id.name, "Effect Volume") == 0 || |
| 930 | strcmp(kctl->id.name, "Effect Feedback Volume") == 0) { |
| 931 | cval->min = 0x00; |
| 932 | cval->max = 0xff; |
| 933 | break; |
| 934 | } |
| 935 | if (strstr(kctl->id.name, "Effect Return") != NULL) { |
| 936 | cval->min = 0xb706; |
| 937 | cval->max = 0xff7b; |
| 938 | cval->res = 0x0073; |
| 939 | break; |
| 940 | } |
| 941 | if ((strstr(kctl->id.name, "Playback Volume") != NULL) || |
| 942 | (strstr(kctl->id.name, "Effect Send") != NULL)) { |
| 943 | cval->min = 0xb5fb; /* -73 dB = 0xb6ff */ |
| 944 | cval->max = 0xfcfe; |
| 945 | cval->res = 0x0073; |
| 946 | } |
| 947 | break; |
| 948 | |
Felix Homann | d34bf14 | 2012-04-23 20:24:27 +0200 | [diff] [blame] | 949 | case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */ |
| 950 | case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */ |
| 951 | if (strcmp(kctl->id.name, "Effect Duration") == 0) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 952 | usb_audio_info(chip, |
| 953 | "set quirk for FTU Effect Duration\n"); |
Felix Homann | d34bf14 | 2012-04-23 20:24:27 +0200 | [diff] [blame] | 954 | cval->min = 0x0000; |
| 955 | cval->max = 0x7f00; |
| 956 | cval->res = 0x0100; |
| 957 | break; |
| 958 | } |
| 959 | if (strcmp(kctl->id.name, "Effect Volume") == 0 || |
| 960 | strcmp(kctl->id.name, "Effect Feedback Volume") == 0) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 961 | usb_audio_info(chip, |
| 962 | "set quirks for FTU Effect Feedback/Volume\n"); |
Felix Homann | d34bf14 | 2012-04-23 20:24:27 +0200 | [diff] [blame] | 963 | cval->min = 0x00; |
| 964 | cval->max = 0x7f; |
| 965 | break; |
| 966 | } |
| 967 | break; |
| 968 | |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 969 | case USB_ID(0x0471, 0x0101): |
| 970 | case USB_ID(0x0471, 0x0104): |
| 971 | case USB_ID(0x0471, 0x0105): |
| 972 | case USB_ID(0x0672, 0x1041): |
| 973 | /* quirk for UDA1321/N101. |
| 974 | * note that detection between firmware 2.1.1.7 (N101) |
| 975 | * and later 2.1.1.21 is not very clear from datasheets. |
| 976 | * I hope that the min value is -15360 for newer firmware --jk |
| 977 | */ |
| 978 | if (!strcmp(kctl->id.name, "PCM Playback Volume") && |
| 979 | cval->min == -15616) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 980 | usb_audio_info(chip, |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 981 | "set volume quirk for UDA1321/N101 chip\n"); |
| 982 | cval->max = -256; |
| 983 | } |
| 984 | break; |
| 985 | |
| 986 | case USB_ID(0x046d, 0x09a4): |
| 987 | if (!strcmp(kctl->id.name, "Mic Capture Volume")) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 988 | usb_audio_info(chip, |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 989 | "set volume quirk for QuickCam E3500\n"); |
| 990 | cval->min = 6080; |
| 991 | cval->max = 8768; |
| 992 | cval->res = 192; |
| 993 | } |
| 994 | break; |
| 995 | |
Takashi Iwai | e805ca8 | 2014-03-05 12:34:39 +0100 | [diff] [blame] | 996 | case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */ |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 997 | case USB_ID(0x046d, 0x0808): |
| 998 | case USB_ID(0x046d, 0x0809): |
Jason Lee Cragg | 6455931 | 2015-01-17 12:28:29 -0500 | [diff] [blame] | 999 | case USB_ID(0x046d, 0x0819): /* Logitech Webcam C210 */ |
Takashi Iwai | 36691e1 | 2013-06-17 10:25:02 +0200 | [diff] [blame] | 1000 | case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */ |
Alexey Fisher | 55c0008 | 2011-11-09 11:39:24 +0100 | [diff] [blame] | 1001 | case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */ |
Takashi Iwai | 11e7064 | 2013-06-05 08:35:26 +0200 | [diff] [blame] | 1002 | case USB_ID(0x046d, 0x0825): /* HD Webcam c270 */ |
Maksim A. Boyko | 140d37d | 2013-08-10 12:20:02 +0400 | [diff] [blame] | 1003 | case USB_ID(0x046d, 0x0826): /* HD Webcam c525 */ |
Wolfram Sang | 1ef9f05 | 2015-05-29 19:50:56 +0900 | [diff] [blame] | 1004 | case USB_ID(0x046d, 0x08ca): /* Logitech Quickcam Fusion */ |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 1005 | case USB_ID(0x046d, 0x0991): |
Con Kolivas | 82ffb6f | 2016-12-09 15:15:57 +1100 | [diff] [blame] | 1006 | case USB_ID(0x046d, 0x09a2): /* QuickCam Communicate Deluxe/S7500 */ |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 1007 | /* Most audio usb devices lie about volume resolution. |
| 1008 | * Most Logitech webcams have res = 384. |
Con Kolivas | 82ffb6f | 2016-12-09 15:15:57 +1100 | [diff] [blame] | 1009 | * Probably there is some logitech magic behind this number --fishor |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 1010 | */ |
| 1011 | if (!strcmp(kctl->id.name, "Mic Capture Volume")) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1012 | usb_audio_info(chip, |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 1013 | "set resolution quirk: cval->res = 384\n"); |
| 1014 | cval->res = 384; |
| 1015 | } |
| 1016 | break; |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 1017 | } |
| 1018 | } |
| 1019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | /* |
| 1021 | * retrieve the minimum and maximum values for the specified control |
| 1022 | */ |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 1023 | static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval, |
| 1024 | int default_min, struct snd_kcontrol *kctl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | { |
| 1026 | /* for failsafe */ |
| 1027 | cval->min = default_min; |
| 1028 | cval->max = cval->min + 1; |
| 1029 | cval->res = 1; |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1030 | cval->dBmin = cval->dBmax = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | |
| 1032 | if (cval->val_type == USB_MIXER_BOOLEAN || |
| 1033 | cval->val_type == USB_MIXER_INV_BOOLEAN) { |
| 1034 | cval->initialized = 1; |
| 1035 | } else { |
| 1036 | int minchn = 0; |
| 1037 | if (cval->cmask) { |
| 1038 | int i; |
| 1039 | for (i = 0; i < MAX_CHANNELS; i++) |
| 1040 | if (cval->cmask & (1 << i)) { |
| 1041 | minchn = i + 1; |
| 1042 | break; |
| 1043 | } |
| 1044 | } |
Daniel Mack | de48c7b | 2010-02-22 23:49:13 +0100 | [diff] [blame] | 1045 | if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 || |
| 1046 | get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 1047 | usb_audio_err(cval->head.mixer->chip, |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1048 | "%d:%d: cannot get min/max values for control %d (id %d)\n", |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 1049 | cval->head.id, snd_usb_ctrl_intf(cval->head.mixer->chip), |
| 1050 | cval->control, cval->head.id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | return -EINVAL; |
| 1052 | } |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1053 | if (get_ctl_value(cval, UAC_GET_RES, |
| 1054 | (cval->control << 8) | minchn, |
| 1055 | &cval->res) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | cval->res = 1; |
| 1057 | } else { |
| 1058 | int last_valid_res = cval->res; |
| 1059 | |
| 1060 | while (cval->res > 1) { |
Daniel Mack | 7b1eda2 | 2010-03-11 21:13:22 +0100 | [diff] [blame] | 1061 | if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES, |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1062 | (cval->control << 8) | minchn, |
| 1063 | cval->res / 2) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | break; |
| 1065 | cval->res /= 2; |
| 1066 | } |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1067 | if (get_ctl_value(cval, UAC_GET_RES, |
| 1068 | (cval->control << 8) | minchn, &cval->res) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | cval->res = last_valid_res; |
| 1070 | } |
| 1071 | if (cval->res == 0) |
| 1072 | cval->res = 1; |
Takashi Iwai | 14790f1 | 2006-03-28 17:58:28 +0200 | [diff] [blame] | 1073 | |
| 1074 | /* Additional checks for the proper resolution |
| 1075 | * |
| 1076 | * Some devices report smaller resolutions than actually |
| 1077 | * reacting. They don't return errors but simply clip |
| 1078 | * to the lower aligned value. |
| 1079 | */ |
| 1080 | if (cval->min + cval->res < cval->max) { |
| 1081 | int last_valid_res = cval->res; |
| 1082 | int saved, test, check; |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1083 | get_cur_mix_raw(cval, minchn, &saved); |
Takashi Iwai | 14790f1 | 2006-03-28 17:58:28 +0200 | [diff] [blame] | 1084 | for (;;) { |
| 1085 | test = saved; |
| 1086 | if (test < cval->max) |
| 1087 | test += cval->res; |
| 1088 | else |
| 1089 | test -= cval->res; |
| 1090 | if (test < cval->min || test > cval->max || |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1091 | snd_usb_set_cur_mix_value(cval, minchn, 0, test) || |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1092 | get_cur_mix_raw(cval, minchn, &check)) { |
Takashi Iwai | 14790f1 | 2006-03-28 17:58:28 +0200 | [diff] [blame] | 1093 | cval->res = last_valid_res; |
| 1094 | break; |
| 1095 | } |
| 1096 | if (test == check) |
| 1097 | break; |
| 1098 | cval->res *= 2; |
| 1099 | } |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1100 | snd_usb_set_cur_mix_value(cval, minchn, 0, saved); |
Takashi Iwai | 14790f1 | 2006-03-28 17:58:28 +0200 | [diff] [blame] | 1101 | } |
| 1102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | cval->initialized = 1; |
| 1104 | } |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1105 | |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 1106 | if (kctl) |
| 1107 | volume_control_quirks(cval, kctl); |
| 1108 | |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1109 | /* USB descriptions contain the dB scale in 1/256 dB unit |
| 1110 | * while ALSA TLV contains in 1/100 dB unit |
| 1111 | */ |
| 1112 | cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256; |
| 1113 | cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256; |
| 1114 | if (cval->dBmin > cval->dBmax) { |
| 1115 | /* something is wrong; assume it's either from/to 0dB */ |
| 1116 | if (cval->dBmin < 0) |
| 1117 | cval->dBmax = 0; |
| 1118 | else if (cval->dBmin > 0) |
| 1119 | cval->dBmin = 0; |
| 1120 | if (cval->dBmin > cval->dBmax) { |
| 1121 | /* totally crap, return an error */ |
| 1122 | return -EINVAL; |
| 1123 | } |
| 1124 | } |
| 1125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | return 0; |
| 1127 | } |
| 1128 | |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 1129 | #define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
| 1131 | /* get a feature/mixer unit info */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1132 | static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol, |
| 1133 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1135 | struct usb_mixer_elem_info *cval = kcontrol->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | |
| 1137 | if (cval->val_type == USB_MIXER_BOOLEAN || |
| 1138 | cval->val_type == USB_MIXER_INV_BOOLEAN) |
| 1139 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 1140 | else |
| 1141 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 1142 | uinfo->count = cval->channels; |
| 1143 | if (cval->val_type == USB_MIXER_BOOLEAN || |
| 1144 | cval->val_type == USB_MIXER_INV_BOOLEAN) { |
| 1145 | uinfo->value.integer.min = 0; |
| 1146 | uinfo->value.integer.max = 1; |
| 1147 | } else { |
Takashi Iwai | 9fcd0ab | 2011-08-19 08:30:53 +0200 | [diff] [blame] | 1148 | if (!cval->initialized) { |
Takashi Iwai | dcaaf9f | 2011-11-08 17:50:27 +0100 | [diff] [blame] | 1149 | get_min_max_with_quirks(cval, 0, kcontrol); |
Takashi Iwai | 9fcd0ab | 2011-08-19 08:30:53 +0200 | [diff] [blame] | 1150 | if (cval->initialized && cval->dBmin >= cval->dBmax) { |
| 1151 | kcontrol->vd[0].access &= |
| 1152 | ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ | |
| 1153 | SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK); |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 1154 | snd_ctl_notify(cval->head.mixer->chip->card, |
Takashi Iwai | 9fcd0ab | 2011-08-19 08:30:53 +0200 | [diff] [blame] | 1155 | SNDRV_CTL_EVENT_MASK_INFO, |
| 1156 | &kcontrol->id); |
| 1157 | } |
| 1158 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | uinfo->value.integer.min = 0; |
Takashi Iwai | 14790f1 | 2006-03-28 17:58:28 +0200 | [diff] [blame] | 1160 | uinfo->value.integer.max = |
| 1161 | (cval->max - cval->min + cval->res - 1) / cval->res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | } |
| 1163 | return 0; |
| 1164 | } |
| 1165 | |
| 1166 | /* get the current value from feature/mixer unit */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1167 | static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol, |
| 1168 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1170 | struct usb_mixer_elem_info *cval = kcontrol->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | int c, cnt, val, err; |
| 1172 | |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1173 | ucontrol->value.integer.value[0] = cval->min; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | if (cval->cmask) { |
| 1175 | cnt = 0; |
| 1176 | for (c = 0; c < MAX_CHANNELS; c++) { |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1177 | if (!(cval->cmask & (1 << c))) |
| 1178 | continue; |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1179 | err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &val); |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1180 | if (err < 0) |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 1181 | return filter_error(cval, err); |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1182 | val = get_relative_value(cval, val); |
| 1183 | ucontrol->value.integer.value[cnt] = val; |
| 1184 | cnt++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | } |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1186 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | } else { |
| 1188 | /* master channel */ |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1189 | err = snd_usb_get_cur_mix_value(cval, 0, 0, &val); |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1190 | if (err < 0) |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 1191 | return filter_error(cval, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | val = get_relative_value(cval, val); |
| 1193 | ucontrol->value.integer.value[0] = val; |
| 1194 | } |
| 1195 | return 0; |
| 1196 | } |
| 1197 | |
| 1198 | /* put the current value to feature/mixer unit */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1199 | static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol, |
| 1200 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1202 | struct usb_mixer_elem_info *cval = kcontrol->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | int c, cnt, val, oval, err; |
| 1204 | int changed = 0; |
| 1205 | |
| 1206 | if (cval->cmask) { |
| 1207 | cnt = 0; |
| 1208 | for (c = 0; c < MAX_CHANNELS; c++) { |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1209 | if (!(cval->cmask & (1 << c))) |
| 1210 | continue; |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1211 | err = snd_usb_get_cur_mix_value(cval, c + 1, cnt, &oval); |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1212 | if (err < 0) |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 1213 | return filter_error(cval, err); |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1214 | val = ucontrol->value.integer.value[cnt]; |
| 1215 | val = get_abs_value(cval, val); |
| 1216 | if (oval != val) { |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1217 | snd_usb_set_cur_mix_value(cval, c + 1, cnt, val); |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1218 | changed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | } |
Takashi Iwai | 641b487 | 2009-01-15 17:05:24 +0100 | [diff] [blame] | 1220 | cnt++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | } |
| 1222 | } else { |
| 1223 | /* master channel */ |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1224 | err = snd_usb_get_cur_mix_value(cval, 0, 0, &oval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | if (err < 0) |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 1226 | return filter_error(cval, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | val = ucontrol->value.integer.value[0]; |
| 1228 | val = get_abs_value(cval, val); |
| 1229 | if (val != oval) { |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1230 | snd_usb_set_cur_mix_value(cval, 0, 0, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | changed = 1; |
| 1232 | } |
| 1233 | } |
| 1234 | return changed; |
| 1235 | } |
| 1236 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1237 | static struct snd_kcontrol_new usb_feature_unit_ctl = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1239 | .name = "", /* will be filled later manually */ |
| 1240 | .info = mixer_ctl_feature_info, |
| 1241 | .get = mixer_ctl_feature_get, |
| 1242 | .put = mixer_ctl_feature_put, |
| 1243 | }; |
| 1244 | |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1245 | /* the read-only variant */ |
Bhumika Goyal | 8fdaebb | 2017-04-12 18:38:06 +0530 | [diff] [blame] | 1246 | static const struct snd_kcontrol_new usb_feature_unit_ctl_ro = { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1247 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1248 | .name = "", /* will be filled later manually */ |
| 1249 | .info = mixer_ctl_feature_info, |
| 1250 | .get = mixer_ctl_feature_get, |
| 1251 | .put = NULL, |
| 1252 | }; |
| 1253 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1254 | /* |
| 1255 | * This symbol is exported in order to allow the mixer quirks to |
| 1256 | * hook up to the standard feature unit control mechanism |
| 1257 | */ |
Daniel Mack | 9e38658 | 2011-05-25 09:09:01 +0200 | [diff] [blame] | 1258 | struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | |
| 1260 | /* |
| 1261 | * build a feature control |
| 1262 | */ |
Takashi Iwai | 08d1e63 | 2009-10-02 14:06:08 +0200 | [diff] [blame] | 1263 | static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str) |
| 1264 | { |
| 1265 | return strlcat(kctl->id.name, str, sizeof(kctl->id.name)); |
| 1266 | } |
| 1267 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1268 | /* |
| 1269 | * A lot of headsets/headphones have a "Speaker" mixer. Make sure we |
| 1270 | * rename it to "Headphone". We determine if something is a headphone |
| 1271 | * similar to how udev determines form factor. |
| 1272 | */ |
David Henningsson | 9b4ef97 | 2012-11-23 13:48:55 +0100 | [diff] [blame] | 1273 | static void check_no_speaker_on_headset(struct snd_kcontrol *kctl, |
| 1274 | struct snd_card *card) |
| 1275 | { |
| 1276 | const char *names_to_check[] = { |
| 1277 | "Headset", "headset", "Headphone", "headphone", NULL}; |
| 1278 | const char **s; |
Peter Senna Tschudin | e0f17c7 | 2013-09-22 20:44:12 +0200 | [diff] [blame] | 1279 | bool found = false; |
David Henningsson | 9b4ef97 | 2012-11-23 13:48:55 +0100 | [diff] [blame] | 1280 | |
| 1281 | if (strcmp("Speaker", kctl->id.name)) |
| 1282 | return; |
| 1283 | |
| 1284 | for (s = names_to_check; *s; s++) |
| 1285 | if (strstr(card->shortname, *s)) { |
Peter Senna Tschudin | e0f17c7 | 2013-09-22 20:44:12 +0200 | [diff] [blame] | 1286 | found = true; |
David Henningsson | 9b4ef97 | 2012-11-23 13:48:55 +0100 | [diff] [blame] | 1287 | break; |
| 1288 | } |
| 1289 | |
| 1290 | if (!found) |
| 1291 | return; |
| 1292 | |
| 1293 | strlcpy(kctl->id.name, "Headphone", sizeof(kctl->id.name)); |
| 1294 | } |
| 1295 | |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1296 | static void build_feature_ctl(struct mixer_build *state, void *raw_desc, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | unsigned int ctl_mask, int control, |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1298 | struct usb_audio_term *iterm, int unitid, |
Daniel Mack | a6a3325 | 2010-05-31 13:35:37 +0200 | [diff] [blame] | 1299 | int readonly_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | { |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1301 | struct uac_feature_unit_descriptor *desc = raw_desc; |
Julian Scheel | bc18e31 | 2015-08-14 16:14:45 +0200 | [diff] [blame] | 1302 | struct usb_feature_control_info *ctl_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | unsigned int len = 0; |
| 1304 | int mapped_name = 0; |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1305 | int nameid = uac_feature_unit_iFeature(desc); |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1306 | struct snd_kcontrol *kctl; |
| 1307 | struct usb_mixer_elem_info *cval; |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1308 | const struct usbmix_name_map *map; |
Alexey Fisher | 80aceff | 2011-03-10 14:53:38 +0100 | [diff] [blame] | 1309 | unsigned int range; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | |
| 1311 | control++; /* change from zero-based to 1-based value */ |
| 1312 | |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1313 | if (control == UAC_FU_GRAPHIC_EQUALIZER) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | /* FIXME: not supported yet */ |
| 1315 | return; |
| 1316 | } |
| 1317 | |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1318 | map = find_map(state, unitid, control); |
| 1319 | if (check_ignored_ctl(map)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | return; |
| 1321 | |
Takashi Iwai | 561b220 | 2005-09-09 14:22:34 +0200 | [diff] [blame] | 1322 | cval = kzalloc(sizeof(*cval), GFP_KERNEL); |
Daniel Mack | a860d95 | 2014-05-24 10:58:17 +0200 | [diff] [blame] | 1323 | if (!cval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | return; |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 1325 | snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | cval->control = control; |
| 1327 | cval->cmask = ctl_mask; |
Julian Scheel | bc18e31 | 2015-08-14 16:14:45 +0200 | [diff] [blame] | 1328 | ctl_info = &audio_feature_info[control-1]; |
| 1329 | if (state->mixer->protocol == UAC_VERSION_1) |
| 1330 | cval->val_type = ctl_info->type; |
| 1331 | else /* UAC_VERSION_2 */ |
| 1332 | cval->val_type = ctl_info->type_uac2 >= 0 ? |
| 1333 | ctl_info->type_uac2 : ctl_info->type; |
| 1334 | |
Daniel Mack | a6a3325 | 2010-05-31 13:35:37 +0200 | [diff] [blame] | 1335 | if (ctl_mask == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | cval->channels = 1; /* master channel */ |
Daniel Mack | a6a3325 | 2010-05-31 13:35:37 +0200 | [diff] [blame] | 1337 | cval->master_readonly = readonly_mask; |
| 1338 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | int i, c = 0; |
| 1340 | for (i = 0; i < 16; i++) |
| 1341 | if (ctl_mask & (1 << i)) |
| 1342 | c++; |
| 1343 | cval->channels = c; |
Daniel Mack | a6a3325 | 2010-05-31 13:35:37 +0200 | [diff] [blame] | 1344 | cval->ch_readonly = readonly_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | } |
| 1346 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1347 | /* |
| 1348 | * If all channels in the mask are marked read-only, make the control |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1349 | * read-only. snd_usb_set_cur_mix_value() will check the mask again and won't |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1350 | * issue write commands to read-only channels. |
| 1351 | */ |
Daniel Mack | a6a3325 | 2010-05-31 13:35:37 +0200 | [diff] [blame] | 1352 | if (cval->channels == readonly_mask) |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1353 | kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval); |
| 1354 | else |
| 1355 | kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval); |
| 1356 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1357 | if (!kctl) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1358 | usb_audio_err(state->chip, "cannot malloc kcontrol\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | kfree(cval); |
| 1360 | return; |
| 1361 | } |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1362 | kctl->private_free = snd_usb_mixer_elem_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1364 | len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | mapped_name = len != 0; |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1366 | if (!len && nameid) |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1367 | len = snd_usb_copy_string_desc(state, nameid, |
| 1368 | kctl->id.name, sizeof(kctl->id.name)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | |
| 1370 | switch (control) { |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1371 | case UAC_FU_MUTE: |
| 1372 | case UAC_FU_VOLUME: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1373 | /* |
| 1374 | * determine the control name. the rule is: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | * - if a name id is given in descriptor, use it. |
| 1376 | * - if the connected input can be determined, then use the name |
| 1377 | * of terminal type. |
| 1378 | * - if the connected output can be determined, use it. |
| 1379 | * - otherwise, anonymous name. |
| 1380 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1381 | if (!len) { |
| 1382 | len = get_term_name(state, iterm, kctl->id.name, |
| 1383 | sizeof(kctl->id.name), 1); |
| 1384 | if (!len) |
| 1385 | len = get_term_name(state, &state->oterm, |
| 1386 | kctl->id.name, |
| 1387 | sizeof(kctl->id.name), 1); |
| 1388 | if (!len) |
Daniel Mack | 49fd46d | 2014-10-19 09:11:25 +0200 | [diff] [blame] | 1389 | snprintf(kctl->id.name, sizeof(kctl->id.name), |
| 1390 | "Feature %d", unitid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | } |
David Henningsson | 9b4ef97 | 2012-11-23 13:48:55 +0100 | [diff] [blame] | 1392 | |
| 1393 | if (!mapped_name) |
| 1394 | check_no_speaker_on_headset(kctl, state->mixer->chip->card); |
| 1395 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1396 | /* |
| 1397 | * determine the stream direction: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | * if the connected output is USB stream, then it's likely a |
| 1399 | * capture stream. otherwise it should be playback (hopefully :) |
| 1400 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1401 | if (!mapped_name && !(state->oterm.type >> 16)) { |
| 1402 | if ((state->oterm.type & 0xff00) == 0x0100) |
Daniel Mack | 49fd46d | 2014-10-19 09:11:25 +0200 | [diff] [blame] | 1403 | append_ctl_name(kctl, " Capture"); |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1404 | else |
Daniel Mack | 49fd46d | 2014-10-19 09:11:25 +0200 | [diff] [blame] | 1405 | append_ctl_name(kctl, " Playback"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | } |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1407 | append_ctl_name(kctl, control == UAC_FU_MUTE ? |
Takashi Iwai | 08d1e63 | 2009-10-02 14:06:08 +0200 | [diff] [blame] | 1408 | " Switch" : " Volume"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | default: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1411 | if (!len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | strlcpy(kctl->id.name, audio_feature_info[control-1].name, |
| 1413 | sizeof(kctl->id.name)); |
| 1414 | break; |
| 1415 | } |
| 1416 | |
Takashi Iwai | e182534 | 2012-05-14 17:11:06 +0200 | [diff] [blame] | 1417 | /* get min/max values */ |
| 1418 | get_min_max_with_quirks(cval, 0, kctl); |
| 1419 | |
| 1420 | if (control == UAC_FU_VOLUME) { |
| 1421 | check_mapped_dB(map, cval); |
| 1422 | if (cval->dBmin < cval->dBmax || !cval->initialized) { |
| 1423 | kctl->tlv.c = snd_usb_mixer_vol_tlv; |
| 1424 | kctl->vd[0].access |= |
| 1425 | SNDRV_CTL_ELEM_ACCESS_TLV_READ | |
| 1426 | SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK; |
| 1427 | } |
| 1428 | } |
| 1429 | |
Anssi Hannula | 42e3121 | 2015-12-13 20:49:58 +0200 | [diff] [blame] | 1430 | snd_usb_mixer_fu_apply_quirk(state->mixer, cval, unitid, kctl); |
| 1431 | |
Alexey Fisher | 80aceff | 2011-03-10 14:53:38 +0100 | [diff] [blame] | 1432 | range = (cval->max - cval->min) / cval->res; |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1433 | /* |
| 1434 | * Are there devices with volume range more than 255? I use a bit more |
Alexey Fisher | 80aceff | 2011-03-10 14:53:38 +0100 | [diff] [blame] | 1435 | * to be sure. 384 is a resolution magic number found on Logitech |
| 1436 | * devices. It will definitively catch all buggy Logitech devices. |
| 1437 | */ |
| 1438 | if (range > 384) { |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1439 | usb_audio_warn(state->chip, |
Michał Mirosław | 82c1cf0 | 2014-08-03 15:09:57 +0200 | [diff] [blame] | 1440 | "Warning! Unlikely big volume range (=%u), cval->res is probably wrong.", |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1441 | range); |
Michał Mirosław | 82c1cf0 | 2014-08-03 15:09:57 +0200 | [diff] [blame] | 1442 | usb_audio_warn(state->chip, |
| 1443 | "[%d] FU [%s] ch = %d, val = %d/%d/%d", |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 1444 | cval->head.id, kctl->id.name, cval->channels, |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1445 | cval->min, cval->max, cval->res); |
Alexey Fisher | 80aceff | 2011-03-10 14:53:38 +0100 | [diff] [blame] | 1446 | } |
| 1447 | |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1448 | usb_audio_dbg(state->chip, "[%d] FU [%s] ch = %d, val = %d/%d/%d\n", |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 1449 | cval->head.id, kctl->id.name, cval->channels, |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1450 | cval->min, cval->max, cval->res); |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 1451 | snd_usb_mixer_add_control(&cval->head, kctl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | } |
| 1453 | |
Daniel Mack | cddaafb | 2016-04-09 11:21:46 +0200 | [diff] [blame] | 1454 | static int parse_clock_source_unit(struct mixer_build *state, int unitid, |
| 1455 | void *_ftr) |
| 1456 | { |
| 1457 | struct uac_clock_source_descriptor *hdr = _ftr; |
| 1458 | struct usb_mixer_elem_info *cval; |
| 1459 | struct snd_kcontrol *kctl; |
| 1460 | char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN]; |
| 1461 | int ret; |
| 1462 | |
| 1463 | if (state->mixer->protocol != UAC_VERSION_2) |
| 1464 | return -EINVAL; |
| 1465 | |
| 1466 | if (hdr->bLength != sizeof(*hdr)) { |
| 1467 | usb_audio_dbg(state->chip, |
| 1468 | "Bogus clock source descriptor length of %d, ignoring.\n", |
| 1469 | hdr->bLength); |
| 1470 | return 0; |
| 1471 | } |
| 1472 | |
| 1473 | /* |
| 1474 | * The only property of this unit we are interested in is the |
| 1475 | * clock source validity. If that isn't readable, just bail out. |
| 1476 | */ |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 1477 | if (!uac_v2v3_control_is_readable(hdr->bmControls, |
Daniel Mack | cddaafb | 2016-04-09 11:21:46 +0200 | [diff] [blame] | 1478 | ilog2(UAC2_CS_CONTROL_CLOCK_VALID))) |
| 1479 | return 0; |
| 1480 | |
| 1481 | cval = kzalloc(sizeof(*cval), GFP_KERNEL); |
| 1482 | if (!cval) |
| 1483 | return -ENOMEM; |
| 1484 | |
| 1485 | snd_usb_mixer_elem_init_std(&cval->head, state->mixer, hdr->bClockID); |
| 1486 | |
| 1487 | cval->min = 0; |
| 1488 | cval->max = 1; |
| 1489 | cval->channels = 1; |
| 1490 | cval->val_type = USB_MIXER_BOOLEAN; |
| 1491 | cval->control = UAC2_CS_CONTROL_CLOCK_VALID; |
| 1492 | |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 1493 | if (uac_v2v3_control_is_writeable(hdr->bmControls, |
Daniel Mack | cddaafb | 2016-04-09 11:21:46 +0200 | [diff] [blame] | 1494 | ilog2(UAC2_CS_CONTROL_CLOCK_VALID))) |
| 1495 | kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval); |
| 1496 | else { |
| 1497 | cval->master_readonly = 1; |
| 1498 | kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval); |
| 1499 | } |
| 1500 | |
| 1501 | if (!kctl) { |
| 1502 | kfree(cval); |
| 1503 | return -ENOMEM; |
| 1504 | } |
| 1505 | |
| 1506 | kctl->private_free = snd_usb_mixer_elem_free; |
| 1507 | ret = snd_usb_copy_string_desc(state, hdr->iClockSource, |
| 1508 | name, sizeof(name)); |
| 1509 | if (ret > 0) |
| 1510 | snprintf(kctl->id.name, sizeof(kctl->id.name), |
| 1511 | "%s Validity", name); |
| 1512 | else |
| 1513 | snprintf(kctl->id.name, sizeof(kctl->id.name), |
| 1514 | "Clock Source %d Validity", hdr->bClockID); |
| 1515 | |
| 1516 | return snd_usb_mixer_add_control(&cval->head, kctl); |
| 1517 | } |
| 1518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | /* |
| 1520 | * parse a feature unit |
| 1521 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1522 | * most of controls are defined here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1524 | static int parse_audio_feature_unit(struct mixer_build *state, int unitid, |
| 1525 | void *_ftr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | { |
| 1527 | int channels, i, j; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1528 | struct usb_audio_term iterm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | unsigned int master_bits, first_ch_bits; |
| 1530 | int err, csize; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1531 | struct uac_feature_unit_descriptor *hdr = _ftr; |
| 1532 | __u8 *bmaControls; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1534 | if (state->mixer->protocol == UAC_VERSION_1) { |
Takashi Iwai | d937cd6 | 2017-11-21 16:55:51 +0100 | [diff] [blame] | 1535 | if (hdr->bLength < 7) { |
| 1536 | usb_audio_err(state->chip, |
| 1537 | "unit %u: invalid UAC_FEATURE_UNIT descriptor\n", |
| 1538 | unitid); |
| 1539 | return -EINVAL; |
| 1540 | } |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1541 | csize = hdr->bControlSize; |
Takashi Iwai | 3c02a6d | 2017-11-27 10:59:40 +0100 | [diff] [blame] | 1542 | if (!csize) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1543 | usb_audio_dbg(state->chip, |
Takashi Iwai | 3c02a6d | 2017-11-27 10:59:40 +0100 | [diff] [blame] | 1544 | "unit %u: invalid bControlSize == 0\n", |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1545 | unitid); |
Nicolai Krakowiak | 60c961a9 | 2011-08-04 15:56:27 +0200 | [diff] [blame] | 1546 | return -EINVAL; |
| 1547 | } |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1548 | channels = (hdr->bLength - 7) / csize - 1; |
| 1549 | bmaControls = hdr->bmaControls; |
Clemens Ladisch | d56268f | 2012-11-29 17:04:23 +0100 | [diff] [blame] | 1550 | if (hdr->bLength < 7 + csize) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1551 | usb_audio_err(state->chip, |
| 1552 | "unit %u: invalid UAC_FEATURE_UNIT descriptor\n", |
| 1553 | unitid); |
Clemens Ladisch | d56268f | 2012-11-29 17:04:23 +0100 | [diff] [blame] | 1554 | return -EINVAL; |
| 1555 | } |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 1556 | } else if (state->mixer->protocol == UAC_VERSION_2) { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1557 | struct uac2_feature_unit_descriptor *ftr = _ftr; |
Takashi Iwai | d937cd6 | 2017-11-21 16:55:51 +0100 | [diff] [blame] | 1558 | if (hdr->bLength < 6) { |
| 1559 | usb_audio_err(state->chip, |
| 1560 | "unit %u: invalid UAC_FEATURE_UNIT descriptor\n", |
| 1561 | unitid); |
| 1562 | return -EINVAL; |
| 1563 | } |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1564 | csize = 4; |
Daniel Mack | e8d0fee | 2010-05-27 20:15:14 +0200 | [diff] [blame] | 1565 | channels = (hdr->bLength - 6) / 4 - 1; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1566 | bmaControls = ftr->bmaControls; |
Clemens Ladisch | d56268f | 2012-11-29 17:04:23 +0100 | [diff] [blame] | 1567 | if (hdr->bLength < 6 + csize) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1568 | usb_audio_err(state->chip, |
| 1569 | "unit %u: invalid UAC_FEATURE_UNIT descriptor\n", |
| 1570 | unitid); |
Clemens Ladisch | d56268f | 2012-11-29 17:04:23 +0100 | [diff] [blame] | 1571 | return -EINVAL; |
| 1572 | } |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 1573 | } else { /* UAC_VERSION_3 */ |
| 1574 | struct uac3_feature_unit_descriptor *ftr = _ftr; |
| 1575 | |
| 1576 | if (hdr->bLength < 7) { |
| 1577 | usb_audio_err(state->chip, |
| 1578 | "unit %u: invalid UAC3_FEATURE_UNIT descriptor\n", |
| 1579 | unitid); |
| 1580 | return -EINVAL; |
| 1581 | } |
| 1582 | csize = 4; |
| 1583 | channels = (ftr->bLength - 7) / 4 - 1; |
| 1584 | bmaControls = ftr->bmaControls; |
| 1585 | if (hdr->bLength < 7 + csize) { |
| 1586 | usb_audio_err(state->chip, |
| 1587 | "unit %u: invalid UAC3_FEATURE_UNIT descriptor\n", |
| 1588 | unitid); |
| 1589 | return -EINVAL; |
| 1590 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | } |
| 1592 | |
| 1593 | /* parse the source unit */ |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1594 | if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | return err; |
| 1596 | |
| 1597 | /* determine the input source type and name */ |
Daniel Mack | 4d7b86c | 2013-03-19 21:09:24 +0100 | [diff] [blame] | 1598 | err = check_input_term(state, hdr->bSourceID, &iterm); |
| 1599 | if (err < 0) |
| 1600 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1602 | master_bits = snd_usb_combine_bytes(bmaControls, csize); |
Javier Kohen | 0c3cee5 | 2009-11-17 15:36:13 +0100 | [diff] [blame] | 1603 | /* master configuration quirks */ |
| 1604 | switch (state->chip->usb_id) { |
| 1605 | case USB_ID(0x08bb, 0x2702): |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1606 | usb_audio_info(state->chip, |
| 1607 | "usbmixer: master volume quirk for PCM2702 chip\n"); |
Javier Kohen | 0c3cee5 | 2009-11-17 15:36:13 +0100 | [diff] [blame] | 1608 | /* disable non-functional volume control */ |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1609 | master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME); |
Javier Kohen | 0c3cee5 | 2009-11-17 15:36:13 +0100 | [diff] [blame] | 1610 | break; |
David Henningsson | c105143 | 2012-09-20 10:20:41 +0200 | [diff] [blame] | 1611 | case USB_ID(0x1130, 0xf211): |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1612 | usb_audio_info(state->chip, |
| 1613 | "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n"); |
David Henningsson | c105143 | 2012-09-20 10:20:41 +0200 | [diff] [blame] | 1614 | /* disable non-functional volume control */ |
| 1615 | channels = 0; |
| 1616 | break; |
| 1617 | |
Javier Kohen | 0c3cee5 | 2009-11-17 15:36:13 +0100 | [diff] [blame] | 1618 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | if (channels > 0) |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1620 | first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | else |
| 1622 | first_ch_bits = 0; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1623 | |
| 1624 | if (state->mixer->protocol == UAC_VERSION_1) { |
| 1625 | /* check all control types */ |
| 1626 | for (i = 0; i < 10; i++) { |
| 1627 | unsigned int ch_bits = 0; |
| 1628 | for (j = 0; j < channels; j++) { |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1629 | unsigned int mask; |
| 1630 | |
| 1631 | mask = snd_usb_combine_bytes(bmaControls + |
| 1632 | csize * (j+1), csize); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1633 | if (mask & (1 << i)) |
| 1634 | ch_bits |= (1 << j); |
| 1635 | } |
| 1636 | /* audio class v1 controls are never read-only */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1637 | |
| 1638 | /* |
| 1639 | * The first channel must be set |
| 1640 | * (for ease of programming). |
| 1641 | */ |
| 1642 | if (ch_bits & 1) |
| 1643 | build_feature_ctl(state, _ftr, ch_bits, i, |
| 1644 | &iterm, unitid, 0); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1645 | if (master_bits & (1 << i)) |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1646 | build_feature_ctl(state, _ftr, 0, i, &iterm, |
| 1647 | unitid, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | } |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 1649 | } else { /* UAC_VERSION_2/3 */ |
Takashi Iwai | d09c06c | 2011-10-13 08:19:09 +0200 | [diff] [blame] | 1650 | for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1651 | unsigned int ch_bits = 0; |
| 1652 | unsigned int ch_read_only = 0; |
| 1653 | |
| 1654 | for (j = 0; j < channels; j++) { |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1655 | unsigned int mask; |
| 1656 | |
| 1657 | mask = snd_usb_combine_bytes(bmaControls + |
| 1658 | csize * (j+1), csize); |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 1659 | if (uac_v2v3_control_is_readable(mask, i)) { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1660 | ch_bits |= (1 << j); |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 1661 | if (!uac_v2v3_control_is_writeable(mask, i)) |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1662 | ch_read_only |= (1 << j); |
| 1663 | } |
| 1664 | } |
| 1665 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1666 | /* |
| 1667 | * NOTE: build_feature_ctl() will mark the control |
| 1668 | * read-only if all channels are marked read-only in |
| 1669 | * the descriptors. Otherwise, the control will be |
| 1670 | * reported as writeable, but the driver will not |
| 1671 | * actually issue a write command for read-only |
| 1672 | * channels. |
| 1673 | */ |
| 1674 | |
| 1675 | /* |
| 1676 | * The first channel must be set |
| 1677 | * (for ease of programming). |
| 1678 | */ |
| 1679 | if (ch_bits & 1) |
| 1680 | build_feature_ctl(state, _ftr, ch_bits, i, |
| 1681 | &iterm, unitid, ch_read_only); |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 1682 | if (uac_v2v3_control_is_readable(master_bits, i)) |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1683 | build_feature_ctl(state, _ftr, 0, i, &iterm, unitid, |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 1684 | !uac_v2v3_control_is_writeable(master_bits, i)); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1685 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | } |
| 1687 | |
| 1688 | return 0; |
| 1689 | } |
| 1690 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | /* |
| 1692 | * Mixer Unit |
| 1693 | */ |
| 1694 | |
| 1695 | /* |
| 1696 | * build a mixer unit control |
| 1697 | * |
| 1698 | * the callbacks are identical with feature unit. |
| 1699 | * input channel number (zero based) is given in control field instead. |
| 1700 | */ |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1701 | static void build_mixer_unit_ctl(struct mixer_build *state, |
| 1702 | struct uac_mixer_unit_descriptor *desc, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | int in_pin, int in_ch, int unitid, |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1704 | struct usb_audio_term *iterm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1706 | struct usb_mixer_elem_info *cval; |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1707 | unsigned int num_outs = uac_mixer_unit_bNrChannels(desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | unsigned int i, len; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1709 | struct snd_kcontrol *kctl; |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1710 | const struct usbmix_name_map *map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1712 | map = find_map(state, unitid, 0); |
| 1713 | if (check_ignored_ctl(map)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1714 | return; |
| 1715 | |
Takashi Iwai | 561b220 | 2005-09-09 14:22:34 +0200 | [diff] [blame] | 1716 | cval = kzalloc(sizeof(*cval), GFP_KERNEL); |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1717 | if (!cval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | return; |
| 1719 | |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 1720 | snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | cval->control = in_ch + 1; /* based on 1 */ |
| 1722 | cval->val_type = USB_MIXER_S16; |
| 1723 | for (i = 0; i < num_outs; i++) { |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1724 | __u8 *c = uac_mixer_unit_bmControls(desc, state->mixer->protocol); |
| 1725 | |
| 1726 | if (check_matrix_bitmap(c, in_ch, i, num_outs)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | cval->cmask |= (1 << i); |
| 1728 | cval->channels++; |
| 1729 | } |
| 1730 | } |
| 1731 | |
| 1732 | /* get min/max values */ |
| 1733 | get_min_max(cval, 0); |
| 1734 | |
| 1735 | kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval); |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1736 | if (!kctl) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1737 | usb_audio_err(state->chip, "cannot malloc kcontrol\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | kfree(cval); |
| 1739 | return; |
| 1740 | } |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 1741 | kctl->private_free = snd_usb_mixer_elem_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1743 | len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name)); |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1744 | if (!len) |
| 1745 | len = get_term_name(state, iterm, kctl->id.name, |
| 1746 | sizeof(kctl->id.name), 0); |
| 1747 | if (!len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1); |
Takashi Iwai | 08d1e63 | 2009-10-02 14:06:08 +0200 | [diff] [blame] | 1749 | append_ctl_name(kctl, " Volume"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1751 | usb_audio_dbg(state->chip, "[%d] MU [%s] ch = %d, val = %d/%d\n", |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 1752 | cval->head.id, kctl->id.name, cval->channels, cval->min, cval->max); |
| 1753 | snd_usb_mixer_add_control(&cval->head, kctl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | } |
| 1755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | /* |
| 1757 | * parse a mixer unit |
| 1758 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1759 | static int parse_audio_mixer_unit(struct mixer_build *state, int unitid, |
| 1760 | void *raw_desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | { |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1762 | struct uac_mixer_unit_descriptor *desc = raw_desc; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1763 | struct usb_audio_term iterm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | int input_pins, num_ins, num_outs; |
| 1765 | int pin, ich, err; |
| 1766 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1767 | if (desc->bLength < 11 || !(input_pins = desc->bNrInPins) || |
| 1768 | !(num_outs = uac_mixer_unit_bNrChannels(desc))) { |
| 1769 | usb_audio_err(state->chip, |
| 1770 | "invalid MIXER UNIT descriptor %d\n", |
| 1771 | unitid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | return -EINVAL; |
| 1773 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | |
| 1775 | num_ins = 0; |
| 1776 | ich = 0; |
| 1777 | for (pin = 0; pin < input_pins; pin++) { |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1778 | err = parse_audio_unit(state, desc->baSourceID[pin]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | if (err < 0) |
Mark Hills | 284a8dd | 2012-04-14 17:19:23 +0100 | [diff] [blame] | 1780 | continue; |
Clemens Ladisch | ea114fc | 2015-06-03 11:36:51 +0200 | [diff] [blame] | 1781 | /* no bmControls field (e.g. Maya44) -> ignore */ |
| 1782 | if (desc->bLength <= 10 + input_pins) |
| 1783 | continue; |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1784 | err = check_input_term(state, desc->baSourceID[pin], &iterm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | if (err < 0) |
| 1786 | return err; |
| 1787 | num_ins += iterm.channels; |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1788 | for (; ich < num_ins; ich++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | int och, ich_has_controls = 0; |
| 1790 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1791 | for (och = 0; och < num_outs; och++) { |
| 1792 | __u8 *c = uac_mixer_unit_bmControls(desc, |
| 1793 | state->mixer->protocol); |
| 1794 | |
| 1795 | if (check_matrix_bitmap(c, ich, och, num_outs)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1796 | ich_has_controls = 1; |
| 1797 | break; |
| 1798 | } |
| 1799 | } |
| 1800 | if (ich_has_controls) |
| 1801 | build_mixer_unit_ctl(state, desc, pin, ich, |
| 1802 | unitid, &iterm); |
| 1803 | } |
| 1804 | } |
| 1805 | return 0; |
| 1806 | } |
| 1807 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | /* |
| 1809 | * Processing Unit / Extension Unit |
| 1810 | */ |
| 1811 | |
| 1812 | /* get callback for processing/extension unit */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1813 | static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol, |
| 1814 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1816 | struct usb_mixer_elem_info *cval = kcontrol->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | int err, val; |
| 1818 | |
| 1819 | err = get_cur_ctl_value(cval, cval->control << 8, &val); |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 1820 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | ucontrol->value.integer.value[0] = cval->min; |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 1822 | return filter_error(cval, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | val = get_relative_value(cval, val); |
| 1825 | ucontrol->value.integer.value[0] = val; |
| 1826 | return 0; |
| 1827 | } |
| 1828 | |
| 1829 | /* put callback for processing/extension unit */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1830 | static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol, |
| 1831 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1833 | struct usb_mixer_elem_info *cval = kcontrol->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | int val, oval, err; |
| 1835 | |
| 1836 | err = get_cur_ctl_value(cval, cval->control << 8, &oval); |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 1837 | if (err < 0) |
| 1838 | return filter_error(cval, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | val = ucontrol->value.integer.value[0]; |
| 1840 | val = get_abs_value(cval, val); |
| 1841 | if (val != oval) { |
| 1842 | set_cur_ctl_value(cval, cval->control << 8, val); |
| 1843 | return 1; |
| 1844 | } |
| 1845 | return 0; |
| 1846 | } |
| 1847 | |
| 1848 | /* alsa control interface for processing/extension unit */ |
Bhumika Goyal | 8fdaebb | 2017-04-12 18:38:06 +0530 | [diff] [blame] | 1849 | static const struct snd_kcontrol_new mixer_procunit_ctl = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1851 | .name = "", /* will be filled later */ |
| 1852 | .info = mixer_ctl_feature_info, |
| 1853 | .get = mixer_ctl_procunit_get, |
| 1854 | .put = mixer_ctl_procunit_put, |
| 1855 | }; |
| 1856 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | /* |
| 1858 | * predefined data for processing units |
| 1859 | */ |
| 1860 | struct procunit_value_info { |
| 1861 | int control; |
| 1862 | char *suffix; |
| 1863 | int val_type; |
| 1864 | int min_value; |
| 1865 | }; |
| 1866 | |
| 1867 | struct procunit_info { |
| 1868 | int type; |
| 1869 | char *name; |
| 1870 | struct procunit_value_info *values; |
| 1871 | }; |
| 1872 | |
| 1873 | static struct procunit_value_info updown_proc_info[] = { |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1874 | { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN }, |
| 1875 | { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | { 0 } |
| 1877 | }; |
| 1878 | static struct procunit_value_info prologic_proc_info[] = { |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1879 | { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN }, |
| 1880 | { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | { 0 } |
| 1882 | }; |
| 1883 | static struct procunit_value_info threed_enh_proc_info[] = { |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1884 | { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN }, |
| 1885 | { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | { 0 } |
| 1887 | }; |
| 1888 | static struct procunit_value_info reverb_proc_info[] = { |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1889 | { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN }, |
| 1890 | { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 }, |
| 1891 | { UAC_REVERB_TIME, "Time", USB_MIXER_U16 }, |
| 1892 | { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | { 0 } |
| 1894 | }; |
| 1895 | static struct procunit_value_info chorus_proc_info[] = { |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1896 | { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN }, |
| 1897 | { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 }, |
| 1898 | { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 }, |
| 1899 | { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | { 0 } |
| 1901 | }; |
| 1902 | static struct procunit_value_info dcr_proc_info[] = { |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1903 | { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN }, |
| 1904 | { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 }, |
| 1905 | { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 }, |
| 1906 | { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 }, |
| 1907 | { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 }, |
| 1908 | { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | { 0 } |
| 1910 | }; |
| 1911 | |
| 1912 | static struct procunit_info procunits[] = { |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 1913 | { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info }, |
| 1914 | { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info }, |
| 1915 | { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info }, |
| 1916 | { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info }, |
| 1917 | { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info }, |
| 1918 | { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | { 0 }, |
| 1920 | }; |
Sergiy Kovalchuk | 7d2b451 | 2009-12-27 09:13:41 -0800 | [diff] [blame] | 1921 | /* |
| 1922 | * predefined data for extension units |
| 1923 | */ |
| 1924 | static struct procunit_value_info clock_rate_xu_info[] = { |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 1925 | { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 }, |
| 1926 | { 0 } |
Sergiy Kovalchuk | 7d2b451 | 2009-12-27 09:13:41 -0800 | [diff] [blame] | 1927 | }; |
| 1928 | static struct procunit_value_info clock_source_xu_info[] = { |
| 1929 | { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN }, |
| 1930 | { 0 } |
| 1931 | }; |
| 1932 | static struct procunit_value_info spdif_format_xu_info[] = { |
| 1933 | { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN }, |
| 1934 | { 0 } |
| 1935 | }; |
| 1936 | static struct procunit_value_info soft_limit_xu_info[] = { |
| 1937 | { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN }, |
| 1938 | { 0 } |
| 1939 | }; |
| 1940 | static struct procunit_info extunits[] = { |
| 1941 | { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info }, |
| 1942 | { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info }, |
| 1943 | { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info }, |
| 1944 | { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info }, |
| 1945 | { 0 } |
| 1946 | }; |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1947 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | /* |
| 1949 | * build a processing/extension unit |
| 1950 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1951 | static int build_audio_procunit(struct mixer_build *state, int unitid, |
| 1952 | void *raw_desc, struct procunit_info *list, |
| 1953 | char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | { |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1955 | struct uac_processing_unit_descriptor *desc = raw_desc; |
| 1956 | int num_ins = desc->bNrInPins; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1957 | struct usb_mixer_elem_info *cval; |
| 1958 | struct snd_kcontrol *kctl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | int i, err, nameid, type, len; |
| 1960 | struct procunit_info *info; |
| 1961 | struct procunit_value_info *valinfo; |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1962 | const struct usbmix_name_map *map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | static struct procunit_value_info default_value_info[] = { |
| 1964 | { 0x01, "Switch", USB_MIXER_BOOLEAN }, |
| 1965 | { 0 } |
| 1966 | }; |
| 1967 | static struct procunit_info default_info = { |
| 1968 | 0, NULL, default_value_info |
| 1969 | }; |
| 1970 | |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1971 | if (desc->bLength < 13 || desc->bLength < 13 + num_ins || |
| 1972 | desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1973 | usb_audio_err(state->chip, "invalid %s descriptor (id %d)\n", name, unitid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | return -EINVAL; |
| 1975 | } |
| 1976 | |
| 1977 | for (i = 0; i < num_ins; i++) { |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1978 | if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | return err; |
| 1980 | } |
| 1981 | |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1982 | type = le16_to_cpu(desc->wProcessType); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | for (info = list; info && info->type; info++) |
| 1984 | if (info->type == type) |
| 1985 | break; |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1986 | if (!info || !info->type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | info = &default_info; |
| 1988 | |
| 1989 | for (valinfo = info->values; valinfo->control; valinfo++) { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 1990 | __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol); |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 1991 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 1992 | if (!(controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1)))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | continue; |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 1994 | map = find_map(state, unitid, valinfo->control); |
| 1995 | if (check_ignored_ctl(map)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1996 | continue; |
Takashi Iwai | 561b220 | 2005-09-09 14:22:34 +0200 | [diff] [blame] | 1997 | cval = kzalloc(sizeof(*cval), GFP_KERNEL); |
Daniel Mack | a860d95 | 2014-05-24 10:58:17 +0200 | [diff] [blame] | 1998 | if (!cval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | return -ENOMEM; |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2000 | snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | cval->control = valinfo->control; |
| 2002 | cval->val_type = valinfo->val_type; |
| 2003 | cval->channels = 1; |
| 2004 | |
| 2005 | /* get min/max values */ |
Daniel Mack | 65f25da | 2010-05-31 13:35:41 +0200 | [diff] [blame] | 2006 | if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2007 | __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | /* FIXME: hard-coded */ |
| 2009 | cval->min = 1; |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 2010 | cval->max = control_spec[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | cval->res = 1; |
| 2012 | cval->initialized = 1; |
Sergiy Kovalchuk | 7d2b451 | 2009-12-27 09:13:41 -0800 | [diff] [blame] | 2013 | } else { |
| 2014 | if (type == USB_XU_CLOCK_RATE) { |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2015 | /* |
| 2016 | * E-Mu USB 0404/0202/TrackerPre/0204 |
Sergiy Kovalchuk | 7d2b451 | 2009-12-27 09:13:41 -0800 | [diff] [blame] | 2017 | * samplerate control quirk |
| 2018 | */ |
| 2019 | cval->min = 0; |
| 2020 | cval->max = 5; |
| 2021 | cval->res = 1; |
| 2022 | cval->initialized = 1; |
| 2023 | } else |
| 2024 | get_min_max(cval, valinfo->min_value); |
| 2025 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | |
| 2027 | kctl = snd_ctl_new1(&mixer_procunit_ctl, cval); |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2028 | if (!kctl) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | kfree(cval); |
| 2030 | return -ENOMEM; |
| 2031 | } |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 2032 | kctl->private_free = snd_usb_mixer_elem_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2034 | if (check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name))) { |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 2035 | /* nothing */ ; |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2036 | } else if (info->name) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name)); |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2038 | } else { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2039 | nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | len = 0; |
| 2041 | if (nameid) |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2042 | len = snd_usb_copy_string_desc(state, nameid, |
| 2043 | kctl->id.name, |
| 2044 | sizeof(kctl->id.name)); |
| 2045 | if (!len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | strlcpy(kctl->id.name, name, sizeof(kctl->id.name)); |
| 2047 | } |
Takashi Iwai | 08d1e63 | 2009-10-02 14:06:08 +0200 | [diff] [blame] | 2048 | append_ctl_name(kctl, " "); |
| 2049 | append_ctl_name(kctl, valinfo->suffix); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 2051 | usb_audio_dbg(state->chip, |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2052 | "[%d] PU [%s] ch = %d, val = %d/%d\n", |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2053 | cval->head.id, kctl->id.name, cval->channels, |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2054 | cval->min, cval->max); |
| 2055 | |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2056 | err = snd_usb_mixer_add_control(&cval->head, kctl); |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2057 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | return err; |
| 2059 | } |
| 2060 | return 0; |
| 2061 | } |
| 2062 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2063 | static int parse_audio_processing_unit(struct mixer_build *state, int unitid, |
| 2064 | void *raw_desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | { |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2066 | return build_audio_procunit(state, unitid, raw_desc, |
| 2067 | procunits, "Processing Unit"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | } |
| 2069 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2070 | static int parse_audio_extension_unit(struct mixer_build *state, int unitid, |
| 2071 | void *raw_desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | { |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2073 | /* |
| 2074 | * Note that we parse extension units with processing unit descriptors. |
| 2075 | * That's ok as the layout is the same. |
| 2076 | */ |
| 2077 | return build_audio_procunit(state, unitid, raw_desc, |
| 2078 | extunits, "Extension Unit"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | } |
| 2080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | /* |
| 2082 | * Selector Unit |
| 2083 | */ |
| 2084 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2085 | /* |
| 2086 | * info callback for selector unit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | * use an enumerator type for routing |
| 2088 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2089 | static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol, |
| 2090 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2092 | struct usb_mixer_elem_info *cval = kcontrol->private_data; |
Clemens Ladisch | 2a1803a | 2011-01-10 16:30:13 +0100 | [diff] [blame] | 2093 | const char **itemlist = (const char **)kcontrol->private_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | |
Takashi Iwai | 5e246b8 | 2008-08-08 17:12:47 +0200 | [diff] [blame] | 2095 | if (snd_BUG_ON(!itemlist)) |
| 2096 | return -EINVAL; |
Clemens Ladisch | 2a1803a | 2011-01-10 16:30:13 +0100 | [diff] [blame] | 2097 | return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | } |
| 2099 | |
| 2100 | /* get callback for selector unit */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2101 | static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol, |
| 2102 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2104 | struct usb_mixer_elem_info *cval = kcontrol->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | int val, err; |
| 2106 | |
Daniel Mack | 0941420 | 2010-05-31 13:35:44 +0200 | [diff] [blame] | 2107 | err = get_cur_ctl_value(cval, cval->control << 8, &val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | if (err < 0) { |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 2109 | ucontrol->value.enumerated.item[0] = 0; |
| 2110 | return filter_error(cval, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | } |
| 2112 | val = get_relative_value(cval, val); |
| 2113 | ucontrol->value.enumerated.item[0] = val; |
| 2114 | return 0; |
| 2115 | } |
| 2116 | |
| 2117 | /* put callback for selector unit */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2118 | static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol, |
| 2119 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2121 | struct usb_mixer_elem_info *cval = kcontrol->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | int val, oval, err; |
| 2123 | |
Daniel Mack | 0941420 | 2010-05-31 13:35:44 +0200 | [diff] [blame] | 2124 | err = get_cur_ctl_value(cval, cval->control << 8, &oval); |
Takashi Iwai | 5aeee34 | 2014-11-18 11:02:14 +0100 | [diff] [blame] | 2125 | if (err < 0) |
| 2126 | return filter_error(cval, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | val = ucontrol->value.enumerated.item[0]; |
| 2128 | val = get_abs_value(cval, val); |
| 2129 | if (val != oval) { |
Daniel Mack | 0941420 | 2010-05-31 13:35:44 +0200 | [diff] [blame] | 2130 | set_cur_ctl_value(cval, cval->control << 8, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | return 1; |
| 2132 | } |
| 2133 | return 0; |
| 2134 | } |
| 2135 | |
| 2136 | /* alsa control interface for selector unit */ |
Bhumika Goyal | 8fdaebb | 2017-04-12 18:38:06 +0530 | [diff] [blame] | 2137 | static const struct snd_kcontrol_new mixer_selectunit_ctl = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2139 | .name = "", /* will be filled later */ |
| 2140 | .info = mixer_ctl_selector_info, |
| 2141 | .get = mixer_ctl_selector_get, |
| 2142 | .put = mixer_ctl_selector_put, |
| 2143 | }; |
| 2144 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2145 | /* |
| 2146 | * private free callback. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2147 | * free both private_data and private_value |
| 2148 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2149 | static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | { |
| 2151 | int i, num_ins = 0; |
| 2152 | |
| 2153 | if (kctl->private_data) { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2154 | struct usb_mixer_elem_info *cval = kctl->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | num_ins = cval->max; |
| 2156 | kfree(cval); |
| 2157 | kctl->private_data = NULL; |
| 2158 | } |
| 2159 | if (kctl->private_value) { |
| 2160 | char **itemlist = (char **)kctl->private_value; |
| 2161 | for (i = 0; i < num_ins; i++) |
| 2162 | kfree(itemlist[i]); |
| 2163 | kfree(itemlist); |
| 2164 | kctl->private_value = 0; |
| 2165 | } |
| 2166 | } |
| 2167 | |
| 2168 | /* |
| 2169 | * parse a selector unit |
| 2170 | */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2171 | static int parse_audio_selector_unit(struct mixer_build *state, int unitid, |
| 2172 | void *raw_desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | { |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 2174 | struct uac_selector_unit_descriptor *desc = raw_desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | unsigned int i, nameid, len; |
| 2176 | int err; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2177 | struct usb_mixer_elem_info *cval; |
| 2178 | struct snd_kcontrol *kctl; |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 2179 | const struct usbmix_name_map *map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | char **namelist; |
| 2181 | |
Takashi Iwai | f658f17 | 2017-11-21 17:00:32 +0100 | [diff] [blame] | 2182 | if (desc->bLength < 5 || !desc->bNrInPins || |
| 2183 | desc->bLength < 5 + desc->bNrInPins) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 2184 | usb_audio_err(state->chip, |
| 2185 | "invalid SELECTOR UNIT descriptor %d\n", unitid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2186 | return -EINVAL; |
| 2187 | } |
| 2188 | |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 2189 | for (i = 0; i < desc->bNrInPins; i++) { |
| 2190 | if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | return err; |
| 2192 | } |
| 2193 | |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 2194 | if (desc->bNrInPins == 1) /* only one ? nonsense! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | return 0; |
| 2196 | |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 2197 | map = find_map(state, unitid, 0); |
| 2198 | if (check_ignored_ctl(map)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | return 0; |
| 2200 | |
Takashi Iwai | 561b220 | 2005-09-09 14:22:34 +0200 | [diff] [blame] | 2201 | cval = kzalloc(sizeof(*cval), GFP_KERNEL); |
Daniel Mack | a860d95 | 2014-05-24 10:58:17 +0200 | [diff] [blame] | 2202 | if (!cval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | return -ENOMEM; |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2204 | snd_usb_mixer_elem_init_std(&cval->head, state->mixer, unitid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | cval->val_type = USB_MIXER_U8; |
| 2206 | cval->channels = 1; |
| 2207 | cval->min = 1; |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 2208 | cval->max = desc->bNrInPins; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | cval->res = 1; |
| 2210 | cval->initialized = 1; |
| 2211 | |
Johan Rastén | a358a0e | 2014-11-17 08:39:33 +0100 | [diff] [blame] | 2212 | if (state->mixer->protocol == UAC_VERSION_1) |
Daniel Mack | 0941420 | 2010-05-31 13:35:44 +0200 | [diff] [blame] | 2213 | cval->control = 0; |
Johan Rastén | a358a0e | 2014-11-17 08:39:33 +0100 | [diff] [blame] | 2214 | else /* UAC_VERSION_2 */ |
| 2215 | cval->control = (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR) ? |
| 2216 | UAC2_CX_CLOCK_SELECTOR : UAC2_SU_SELECTOR; |
Daniel Mack | 0941420 | 2010-05-31 13:35:44 +0200 | [diff] [blame] | 2217 | |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 2218 | namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL); |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2219 | if (!namelist) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | kfree(cval); |
| 2221 | return -ENOMEM; |
| 2222 | } |
| 2223 | #define MAX_ITEM_NAME_LEN 64 |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 2224 | for (i = 0; i < desc->bNrInPins; i++) { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2225 | struct usb_audio_term iterm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | len = 0; |
| 2227 | namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL); |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2228 | if (!namelist[i]) { |
Mariusz Kozlowski | 7fbe3ca | 2007-01-08 11:25:30 +0100 | [diff] [blame] | 2229 | while (i--) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | kfree(namelist[i]); |
| 2231 | kfree(namelist); |
| 2232 | kfree(cval); |
| 2233 | return -ENOMEM; |
| 2234 | } |
Clemens Ladisch | 8e062ec | 2005-04-22 15:49:52 +0200 | [diff] [blame] | 2235 | len = check_mapped_selector_name(state, unitid, i, namelist[i], |
| 2236 | MAX_ITEM_NAME_LEN); |
Daniel Mack | 99fc864 | 2010-03-11 21:13:24 +0100 | [diff] [blame] | 2237 | if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0); |
| 2239 | if (! len) |
Masanari Iida | af831ee | 2014-04-28 13:08:55 +0900 | [diff] [blame] | 2240 | sprintf(namelist[i], "Input %u", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | } |
| 2242 | |
| 2243 | kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval); |
| 2244 | if (! kctl) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 2245 | usb_audio_err(state->chip, "cannot malloc kcontrol\n"); |
Jesper Juhl | 878b478 | 2006-03-20 11:27:13 +0100 | [diff] [blame] | 2246 | kfree(namelist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 | kfree(cval); |
| 2248 | return -ENOMEM; |
| 2249 | } |
| 2250 | kctl->private_value = (unsigned long)namelist; |
| 2251 | kctl->private_free = usb_mixer_selector_elem_free; |
| 2252 | |
Takashi Iwai | 5a15f28 | 2017-12-18 23:36:57 +0100 | [diff] [blame] | 2253 | /* check the static mapping table at first */ |
Jaroslav Kysela | c3a3e04 | 2010-02-11 17:50:44 +0100 | [diff] [blame] | 2254 | len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name)); |
Jaejoong Kim | 89b89d1 | 2017-12-04 15:31:49 +0900 | [diff] [blame] | 2255 | if (!len) { |
Takashi Iwai | 5a15f28 | 2017-12-18 23:36:57 +0100 | [diff] [blame] | 2256 | /* no mapping ? */ |
| 2257 | /* if iSelector is given, use it */ |
| 2258 | nameid = uac_selector_unit_iSelector(desc); |
| 2259 | if (nameid) |
| 2260 | len = snd_usb_copy_string_desc(state, nameid, |
| 2261 | kctl->id.name, |
| 2262 | sizeof(kctl->id.name)); |
| 2263 | /* ... or pick up the terminal name at next */ |
| 2264 | if (!len) |
| 2265 | len = get_term_name(state, &state->oterm, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | kctl->id.name, sizeof(kctl->id.name), 0); |
Takashi Iwai | 5a15f28 | 2017-12-18 23:36:57 +0100 | [diff] [blame] | 2267 | /* ... or use the fixed string "USB" as the last resort */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2268 | if (!len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name)); |
| 2270 | |
Takashi Iwai | 5a15f28 | 2017-12-18 23:36:57 +0100 | [diff] [blame] | 2271 | /* and add the proper suffix */ |
Daniel Mack | 0941420 | 2010-05-31 13:35:44 +0200 | [diff] [blame] | 2272 | if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR) |
| 2273 | append_ctl_name(kctl, " Clock Source"); |
| 2274 | else if ((state->oterm.type & 0xff00) == 0x0100) |
Takashi Iwai | 08d1e63 | 2009-10-02 14:06:08 +0200 | [diff] [blame] | 2275 | append_ctl_name(kctl, " Capture Source"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2276 | else |
Takashi Iwai | 08d1e63 | 2009-10-02 14:06:08 +0200 | [diff] [blame] | 2277 | append_ctl_name(kctl, " Playback Source"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | } |
| 2279 | |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 2280 | usb_audio_dbg(state->chip, "[%d] SU [%s] items = %d\n", |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2281 | cval->head.id, kctl->id.name, desc->bNrInPins); |
| 2282 | return snd_usb_mixer_add_control(&cval->head, kctl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | } |
| 2284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | /* |
| 2286 | * parse an audio unit recursively |
| 2287 | */ |
| 2288 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2289 | static int parse_audio_unit(struct mixer_build *state, int unitid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | { |
| 2291 | unsigned char *p1; |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 2292 | int protocol = state->mixer->protocol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | |
| 2294 | if (test_and_set_bit(unitid, state->unitbitmap)) |
| 2295 | return 0; /* the unit already visited */ |
| 2296 | |
| 2297 | p1 = find_audio_control_unit(state, unitid); |
| 2298 | if (!p1) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 2299 | usb_audio_err(state->chip, "unit %d not found!\n", unitid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2300 | return -EINVAL; |
| 2301 | } |
| 2302 | |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 2303 | if (protocol == UAC_VERSION_1 || protocol == UAC_VERSION_2) { |
| 2304 | switch (p1[2]) { |
| 2305 | case UAC_INPUT_TERMINAL: |
| 2306 | return 0; /* NOP */ |
| 2307 | case UAC_MIXER_UNIT: |
| 2308 | return parse_audio_mixer_unit(state, unitid, p1); |
| 2309 | case UAC2_CLOCK_SOURCE: |
| 2310 | return parse_clock_source_unit(state, unitid, p1); |
| 2311 | case UAC_SELECTOR_UNIT: |
| 2312 | case UAC2_CLOCK_SELECTOR: |
| 2313 | return parse_audio_selector_unit(state, unitid, p1); |
| 2314 | case UAC_FEATURE_UNIT: |
| 2315 | return parse_audio_feature_unit(state, unitid, p1); |
| 2316 | case UAC1_PROCESSING_UNIT: |
| 2317 | /* UAC2_EFFECT_UNIT has the same value */ |
| 2318 | if (protocol == UAC_VERSION_1) |
| 2319 | return parse_audio_processing_unit(state, unitid, p1); |
| 2320 | else |
| 2321 | return 0; /* FIXME - effect units not implemented yet */ |
| 2322 | case UAC1_EXTENSION_UNIT: |
| 2323 | /* UAC2_PROCESSING_UNIT_V2 has the same value */ |
| 2324 | if (protocol == UAC_VERSION_1) |
| 2325 | return parse_audio_extension_unit(state, unitid, p1); |
| 2326 | else /* UAC_VERSION_2 */ |
| 2327 | return parse_audio_processing_unit(state, unitid, p1); |
| 2328 | case UAC2_EXTENSION_UNIT_V2: |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2329 | return parse_audio_extension_unit(state, unitid, p1); |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 2330 | default: |
| 2331 | usb_audio_err(state->chip, |
| 2332 | "unit %u: unexpected type 0x%02x\n", unitid, p1[2]); |
| 2333 | return -EINVAL; |
| 2334 | } |
| 2335 | } else { /* UAC_VERSION_3 */ |
| 2336 | switch (p1[2]) { |
| 2337 | case UAC_INPUT_TERMINAL: |
| 2338 | return 0; /* NOP */ |
| 2339 | case UAC3_MIXER_UNIT: |
| 2340 | return parse_audio_mixer_unit(state, unitid, p1); |
| 2341 | case UAC3_CLOCK_SOURCE: |
| 2342 | return parse_clock_source_unit(state, unitid, p1); |
| 2343 | case UAC3_CLOCK_SELECTOR: |
| 2344 | return parse_audio_selector_unit(state, unitid, p1); |
| 2345 | case UAC3_FEATURE_UNIT: |
| 2346 | return parse_audio_feature_unit(state, unitid, p1); |
| 2347 | case UAC3_EFFECT_UNIT: |
| 2348 | return 0; /* FIXME - effect units not implemented yet */ |
| 2349 | case UAC3_PROCESSING_UNIT: |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2350 | return parse_audio_processing_unit(state, unitid, p1); |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 2351 | case UAC3_EXTENSION_UNIT: |
| 2352 | return parse_audio_extension_unit(state, unitid, p1); |
| 2353 | default: |
| 2354 | usb_audio_err(state->chip, |
| 2355 | "unit %u: unexpected type 0x%02x\n", unitid, p1[2]); |
| 2356 | return -EINVAL; |
| 2357 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | } |
| 2359 | } |
| 2360 | |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2361 | static void snd_usb_mixer_free(struct usb_mixer_interface *mixer) |
| 2362 | { |
Takashi Iwai | 124751d | 2017-10-10 14:10:32 +0200 | [diff] [blame] | 2363 | /* kill pending URBs */ |
| 2364 | snd_usb_mixer_disconnect(mixer); |
| 2365 | |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2366 | kfree(mixer->id_elems); |
| 2367 | if (mixer->urb) { |
| 2368 | kfree(mixer->urb->transfer_buffer); |
| 2369 | usb_free_urb(mixer->urb); |
| 2370 | } |
Mariusz Kozlowski | 68df9de | 2006-11-08 15:37:04 +0100 | [diff] [blame] | 2371 | usb_free_urb(mixer->rc_urb); |
Clemens Ladisch | b259b10 | 2005-04-29 16:29:28 +0200 | [diff] [blame] | 2372 | kfree(mixer->rc_setup_packet); |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2373 | kfree(mixer); |
| 2374 | } |
| 2375 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2376 | static int snd_usb_mixer_dev_free(struct snd_device *device) |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2377 | { |
| 2378 | struct usb_mixer_interface *mixer = device->device_data; |
| 2379 | snd_usb_mixer_free(mixer); |
| 2380 | return 0; |
| 2381 | } |
| 2382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | /* |
| 2384 | * create mixer controls |
| 2385 | * |
Daniel Mack | de48c7b | 2010-02-22 23:49:13 +0100 | [diff] [blame] | 2386 | * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | */ |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2388 | static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2389 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2390 | struct mixer_build state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | int err; |
| 2392 | const struct usbmix_ctl_map *map; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2393 | void *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2395 | memset(&state, 0, sizeof(state)); |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2396 | state.chip = mixer->chip; |
| 2397 | state.mixer = mixer; |
Daniel Mack | 1faa5d0 | 2011-08-04 15:56:28 +0200 | [diff] [blame] | 2398 | state.buffer = mixer->hostif->extra; |
| 2399 | state.buflen = mixer->hostif->extralen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | |
| 2401 | /* check the mapping table */ |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2402 | for (map = usbmix_ctl_maps; map->id; map++) { |
| 2403 | if (map->id == state.chip->usb_id) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | state.map = map->map; |
Clemens Ladisch | 8e062ec | 2005-04-22 15:49:52 +0200 | [diff] [blame] | 2405 | state.selector_map = map->selector_map; |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2406 | mixer->ignore_ctl_error = map->ignore_ctl_error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2407 | break; |
| 2408 | } |
| 2409 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2410 | |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2411 | p = NULL; |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2412 | while ((p = snd_usb_find_csint_desc(mixer->hostif->extra, |
| 2413 | mixer->hostif->extralen, |
Daniel Mack | 1faa5d0 | 2011-08-04 15:56:28 +0200 | [diff] [blame] | 2414 | p, UAC_OUTPUT_TERMINAL)) != NULL) { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2415 | if (mixer->protocol == UAC_VERSION_1) { |
Daniel Mack | 69da9bc | 2010-06-16 17:57:28 +0200 | [diff] [blame] | 2416 | struct uac1_output_terminal_descriptor *desc = p; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2417 | |
| 2418 | if (desc->bLength < sizeof(*desc)) |
| 2419 | continue; /* invalid descriptor? */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2420 | /* mark terminal ID as visited */ |
| 2421 | set_bit(desc->bTerminalID, state.unitbitmap); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2422 | state.oterm.id = desc->bTerminalID; |
| 2423 | state.oterm.type = le16_to_cpu(desc->wTerminalType); |
| 2424 | state.oterm.name = desc->iTerminal; |
| 2425 | err = parse_audio_unit(&state, desc->bSourceID); |
Daniel Mack | 83ea5d1 | 2013-03-19 21:09:25 +0100 | [diff] [blame] | 2426 | if (err < 0 && err != -EINVAL) |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2427 | return err; |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 2428 | } else if (mixer->protocol == UAC_VERSION_2) { |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2429 | struct uac2_output_terminal_descriptor *desc = p; |
| 2430 | |
| 2431 | if (desc->bLength < sizeof(*desc)) |
| 2432 | continue; /* invalid descriptor? */ |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2433 | /* mark terminal ID as visited */ |
| 2434 | set_bit(desc->bTerminalID, state.unitbitmap); |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2435 | state.oterm.id = desc->bTerminalID; |
| 2436 | state.oterm.type = le16_to_cpu(desc->wTerminalType); |
| 2437 | state.oterm.name = desc->iTerminal; |
| 2438 | err = parse_audio_unit(&state, desc->bSourceID); |
Daniel Mack | 83ea5d1 | 2013-03-19 21:09:25 +0100 | [diff] [blame] | 2439 | if (err < 0 && err != -EINVAL) |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2440 | return err; |
Daniel Mack | 0941420 | 2010-05-31 13:35:44 +0200 | [diff] [blame] | 2441 | |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2442 | /* |
| 2443 | * For UAC2, use the same approach to also add the |
| 2444 | * clock selectors |
| 2445 | */ |
Daniel Mack | 0941420 | 2010-05-31 13:35:44 +0200 | [diff] [blame] | 2446 | err = parse_audio_unit(&state, desc->bCSourceID); |
Daniel Mack | 83ea5d1 | 2013-03-19 21:09:25 +0100 | [diff] [blame] | 2447 | if (err < 0 && err != -EINVAL) |
Daniel Mack | 0941420 | 2010-05-31 13:35:44 +0200 | [diff] [blame] | 2448 | return err; |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 2449 | } else { /* UAC_VERSION_3 */ |
| 2450 | struct uac3_output_terminal_descriptor *desc = p; |
| 2451 | |
| 2452 | if (desc->bLength < sizeof(*desc)) |
| 2453 | continue; /* invalid descriptor? */ |
| 2454 | /* mark terminal ID as visited */ |
| 2455 | set_bit(desc->bTerminalID, state.unitbitmap); |
| 2456 | state.oterm.id = desc->bTerminalID; |
| 2457 | state.oterm.type = le16_to_cpu(desc->wTerminalType); |
| 2458 | state.oterm.name = le16_to_cpu(desc->wTerminalDescrStr); |
| 2459 | err = parse_audio_unit(&state, desc->bSourceID); |
| 2460 | if (err < 0 && err != -EINVAL) |
| 2461 | return err; |
| 2462 | |
| 2463 | /* |
| 2464 | * For UAC3, use the same approach to also add the |
| 2465 | * clock selectors |
| 2466 | */ |
| 2467 | err = parse_audio_unit(&state, desc->bCSourceID); |
| 2468 | if (err < 0 && err != -EINVAL) |
| 2469 | return err; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2470 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2471 | } |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2472 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2473 | return 0; |
| 2474 | } |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2475 | |
Daniel Mack | 7b1eda2 | 2010-03-11 21:13:22 +0100 | [diff] [blame] | 2476 | void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid) |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2477 | { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2478 | struct usb_mixer_elem_list *list; |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2479 | |
Julian Scheel | b2500b5 | 2017-11-16 17:35:17 +0100 | [diff] [blame] | 2480 | for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem) { |
| 2481 | struct usb_mixer_elem_info *info = |
| 2482 | (struct usb_mixer_elem_info *)list; |
| 2483 | /* invalidate cache, so the value is read from the device */ |
| 2484 | info->cached = 0; |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2485 | snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE, |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2486 | &list->kctl->id); |
Julian Scheel | b2500b5 | 2017-11-16 17:35:17 +0100 | [diff] [blame] | 2487 | } |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2488 | } |
| 2489 | |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 2490 | static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer, |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2491 | struct usb_mixer_elem_list *list) |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 2492 | { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2493 | struct usb_mixer_elem_info *cval = (struct usb_mixer_elem_info *)list; |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 2494 | static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN", |
| 2495 | "S8", "U8", "S16", "U16"}; |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 2496 | snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, " |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2497 | "channels=%i, type=\"%s\"\n", cval->head.id, |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 2498 | cval->control, cval->cmask, cval->channels, |
| 2499 | val_types[cval->val_type]); |
| 2500 | snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n", |
| 2501 | cval->min, cval->max, cval->dBmin, cval->dBmax); |
| 2502 | } |
| 2503 | |
| 2504 | static void snd_usb_mixer_proc_read(struct snd_info_entry *entry, |
| 2505 | struct snd_info_buffer *buffer) |
| 2506 | { |
| 2507 | struct snd_usb_audio *chip = entry->private_data; |
| 2508 | struct usb_mixer_interface *mixer; |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2509 | struct usb_mixer_elem_list *list; |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 2510 | int unitid; |
| 2511 | |
| 2512 | list_for_each_entry(mixer, &chip->mixer_list, list) { |
| 2513 | snd_iprintf(buffer, |
Jaroslav Kysela | 7affdc1 | 2010-02-16 11:52:27 +0100 | [diff] [blame] | 2514 | "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n", |
Daniel Mack | 3d8d4dc | 2010-06-16 17:57:31 +0200 | [diff] [blame] | 2515 | chip->usb_id, snd_usb_ctrl_intf(chip), |
Jaroslav Kysela | 7affdc1 | 2010-02-16 11:52:27 +0100 | [diff] [blame] | 2516 | mixer->ignore_ctl_error); |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 2517 | snd_iprintf(buffer, "Card: %s\n", chip->card->longname); |
| 2518 | for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2519 | for (list = mixer->id_elems[unitid]; list; |
| 2520 | list = list->next_id_elem) { |
| 2521 | snd_iprintf(buffer, " Unit: %i\n", list->id); |
| 2522 | if (list->kctl) |
| 2523 | snd_iprintf(buffer, |
| 2524 | " Control: name=\"%s\", index=%i\n", |
| 2525 | list->kctl->id.name, |
| 2526 | list->kctl->id.index); |
| 2527 | if (list->dump) |
| 2528 | list->dump(buffer, list); |
| 2529 | } |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 2530 | } |
| 2531 | } |
| 2532 | } |
| 2533 | |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2534 | static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer, |
| 2535 | int attribute, int value, int index) |
| 2536 | { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2537 | struct usb_mixer_elem_list *list; |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2538 | __u8 unitid = (index >> 8) & 0xff; |
| 2539 | __u8 control = (value >> 8) & 0xff; |
| 2540 | __u8 channel = value & 0xff; |
Daniel Mack | 191227d | 2016-04-08 19:52:02 +0200 | [diff] [blame] | 2541 | unsigned int count = 0; |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2542 | |
| 2543 | if (channel >= MAX_CHANNELS) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 2544 | usb_audio_dbg(mixer->chip, |
| 2545 | "%s(): bogus channel number %d\n", |
| 2546 | __func__, channel); |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2547 | return; |
| 2548 | } |
| 2549 | |
Daniel Mack | 191227d | 2016-04-08 19:52:02 +0200 | [diff] [blame] | 2550 | for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem) |
| 2551 | count++; |
| 2552 | |
| 2553 | if (count == 0) |
| 2554 | return; |
| 2555 | |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2556 | for (list = mixer->id_elems[unitid]; list; list = list->next_id_elem) { |
| 2557 | struct usb_mixer_elem_info *info; |
| 2558 | |
| 2559 | if (!list->kctl) |
| 2560 | continue; |
| 2561 | |
| 2562 | info = (struct usb_mixer_elem_info *)list; |
Daniel Mack | 191227d | 2016-04-08 19:52:02 +0200 | [diff] [blame] | 2563 | if (count > 1 && info->control != control) |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2564 | continue; |
| 2565 | |
| 2566 | switch (attribute) { |
| 2567 | case UAC2_CS_CUR: |
| 2568 | /* invalidate cache, so the value is read from the device */ |
| 2569 | if (channel) |
| 2570 | info->cached &= ~(1 << channel); |
| 2571 | else /* master channel */ |
| 2572 | info->cached = 0; |
| 2573 | |
| 2574 | snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE, |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2575 | &info->head.kctl->id); |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2576 | break; |
| 2577 | |
| 2578 | case UAC2_CS_RANGE: |
| 2579 | /* TODO */ |
| 2580 | break; |
| 2581 | |
| 2582 | case UAC2_CS_MEM: |
| 2583 | /* TODO */ |
| 2584 | break; |
| 2585 | |
| 2586 | default: |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 2587 | usb_audio_dbg(mixer->chip, |
| 2588 | "unknown attribute %d in interrupt\n", |
| 2589 | attribute); |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2590 | break; |
| 2591 | } /* switch */ |
| 2592 | } |
| 2593 | } |
| 2594 | |
| 2595 | static void snd_usb_mixer_interrupt(struct urb *urb) |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2596 | { |
| 2597 | struct usb_mixer_interface *mixer = urb->context; |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2598 | int len = urb->actual_length; |
Oliver Neukum | edf7de3 | 2011-03-11 13:19:43 +0100 | [diff] [blame] | 2599 | int ustatus = urb->status; |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2600 | |
Oliver Neukum | edf7de3 | 2011-03-11 13:19:43 +0100 | [diff] [blame] | 2601 | if (ustatus != 0) |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2602 | goto requeue; |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2603 | |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2604 | if (mixer->protocol == UAC_VERSION_1) { |
| 2605 | struct uac1_status_word *status; |
| 2606 | |
| 2607 | for (status = urb->transfer_buffer; |
| 2608 | len >= sizeof(*status); |
| 2609 | len -= sizeof(*status), status++) { |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 2610 | dev_dbg(&urb->dev->dev, "status interrupt: %02x %02x\n", |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2611 | status->bStatusType, |
| 2612 | status->bOriginator); |
| 2613 | |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2614 | /* ignore any notifications not from the control interface */ |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2615 | if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) != |
| 2616 | UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF) |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2617 | continue; |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2618 | |
| 2619 | if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED) |
| 2620 | snd_usb_mixer_rc_memory_change(mixer, status->bOriginator); |
Clemens Ladisch | b259b10 | 2005-04-29 16:29:28 +0200 | [diff] [blame] | 2621 | else |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2622 | snd_usb_mixer_notify_id(mixer, status->bOriginator); |
| 2623 | } |
| 2624 | } else { /* UAC_VERSION_2 */ |
| 2625 | struct uac2_interrupt_data_msg *msg; |
| 2626 | |
| 2627 | for (msg = urb->transfer_buffer; |
| 2628 | len >= sizeof(*msg); |
| 2629 | len -= sizeof(*msg), msg++) { |
| 2630 | /* drop vendor specific and endpoint requests */ |
| 2631 | if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) || |
| 2632 | (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP)) |
| 2633 | continue; |
| 2634 | |
| 2635 | snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute, |
| 2636 | le16_to_cpu(msg->wValue), |
| 2637 | le16_to_cpu(msg->wIndex)); |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2638 | } |
| 2639 | } |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2640 | |
| 2641 | requeue: |
Daniel Mack | 6bc170e | 2014-05-24 10:58:16 +0200 | [diff] [blame] | 2642 | if (ustatus != -ENOENT && |
| 2643 | ustatus != -ECONNRESET && |
| 2644 | ustatus != -ESHUTDOWN) { |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2645 | urb->dev = mixer->chip->dev; |
| 2646 | usb_submit_urb(urb, GFP_ATOMIC); |
| 2647 | } |
| 2648 | } |
| 2649 | |
| 2650 | /* create the handler for the optional status interrupt endpoint */ |
| 2651 | static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer) |
| 2652 | { |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2653 | struct usb_endpoint_descriptor *ep; |
| 2654 | void *transfer_buffer; |
| 2655 | int buffer_length; |
| 2656 | unsigned int epnum; |
| 2657 | |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2658 | /* we need one interrupt input endpoint */ |
Daniel Mack | 1faa5d0 | 2011-08-04 15:56:28 +0200 | [diff] [blame] | 2659 | if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1) |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2660 | return 0; |
Daniel Mack | 1faa5d0 | 2011-08-04 15:56:28 +0200 | [diff] [blame] | 2661 | ep = get_endpoint(mixer->hostif, 0); |
Julia Lawall | 913ae5a | 2009-01-03 17:54:53 +0100 | [diff] [blame] | 2662 | if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep)) |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2663 | return 0; |
| 2664 | |
Julia Lawall | 42a6e66 | 2008-12-29 11:23:02 +0100 | [diff] [blame] | 2665 | epnum = usb_endpoint_num(ep); |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2666 | buffer_length = le16_to_cpu(ep->wMaxPacketSize); |
| 2667 | transfer_buffer = kmalloc(buffer_length, GFP_KERNEL); |
| 2668 | if (!transfer_buffer) |
| 2669 | return -ENOMEM; |
| 2670 | mixer->urb = usb_alloc_urb(0, GFP_KERNEL); |
| 2671 | if (!mixer->urb) { |
| 2672 | kfree(transfer_buffer); |
| 2673 | return -ENOMEM; |
| 2674 | } |
| 2675 | usb_fill_int_urb(mixer->urb, mixer->chip->dev, |
| 2676 | usb_rcvintpipe(mixer->chip->dev, epnum), |
| 2677 | transfer_buffer, buffer_length, |
Daniel Mack | e213e9c | 2010-05-11 18:13:50 +0200 | [diff] [blame] | 2678 | snd_usb_mixer_interrupt, mixer, ep->bInterval); |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2679 | usb_submit_urb(mixer->urb, GFP_KERNEL); |
| 2680 | return 0; |
| 2681 | } |
| 2682 | |
Takashi Iwai | 7a9b806 | 2008-08-13 15:40:53 +0200 | [diff] [blame] | 2683 | int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif, |
| 2684 | int ignore_error) |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2685 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2686 | static struct snd_device_ops dev_ops = { |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2687 | .dev_free = snd_usb_mixer_dev_free |
| 2688 | }; |
| 2689 | struct usb_mixer_interface *mixer; |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 2690 | struct snd_info_entry *entry; |
Daniel Mack | 23caaf1 | 2010-03-11 21:13:25 +0100 | [diff] [blame] | 2691 | int err; |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2692 | |
| 2693 | strcpy(chip->card->mixername, "USB Mixer"); |
| 2694 | |
Takashi Iwai | 561b220 | 2005-09-09 14:22:34 +0200 | [diff] [blame] | 2695 | mixer = kzalloc(sizeof(*mixer), GFP_KERNEL); |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2696 | if (!mixer) |
| 2697 | return -ENOMEM; |
| 2698 | mixer->chip = chip; |
Takashi Iwai | 7a9b806 | 2008-08-13 15:40:53 +0200 | [diff] [blame] | 2699 | mixer->ignore_ctl_error = ignore_error; |
Jaroslav Kysela | 291186e | 2010-02-16 11:55:18 +0100 | [diff] [blame] | 2700 | mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems), |
| 2701 | GFP_KERNEL); |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2702 | if (!mixer->id_elems) { |
| 2703 | kfree(mixer); |
| 2704 | return -ENOMEM; |
| 2705 | } |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2706 | |
Daniel Mack | 1faa5d0 | 2011-08-04 15:56:28 +0200 | [diff] [blame] | 2707 | mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0]; |
| 2708 | switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) { |
Clemens Ladisch | a2acad8 | 2010-09-03 10:53:11 +0200 | [diff] [blame] | 2709 | case UAC_VERSION_1: |
| 2710 | default: |
| 2711 | mixer->protocol = UAC_VERSION_1; |
| 2712 | break; |
| 2713 | case UAC_VERSION_2: |
| 2714 | mixer->protocol = UAC_VERSION_2; |
| 2715 | break; |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame^] | 2716 | case UAC_VERSION_3: |
| 2717 | mixer->protocol = UAC_VERSION_3; |
| 2718 | break; |
Clemens Ladisch | a2acad8 | 2010-09-03 10:53:11 +0200 | [diff] [blame] | 2719 | } |
Daniel Mack | 7b8a043 | 2010-02-22 23:49:12 +0100 | [diff] [blame] | 2720 | |
Clemens Ladisch | 6639b6c | 2005-04-29 16:26:14 +0200 | [diff] [blame] | 2721 | if ((err = snd_usb_mixer_controls(mixer)) < 0 || |
Clemens Ladisch | 93446ed | 2005-05-03 08:02:40 +0200 | [diff] [blame] | 2722 | (err = snd_usb_mixer_status_create(mixer)) < 0) |
| 2723 | goto _error; |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2724 | |
Daniel Mack | 7b1eda2 | 2010-03-11 21:13:22 +0100 | [diff] [blame] | 2725 | snd_usb_mixer_apply_create_quirk(mixer); |
Clemens Ladisch | 468b8fd | 2009-07-13 11:39:29 +0200 | [diff] [blame] | 2726 | |
Takashi Iwai | 9cbb280 | 2014-02-04 11:15:31 +0100 | [diff] [blame] | 2727 | err = snd_device_new(chip->card, SNDRV_DEV_CODEC, mixer, &dev_ops); |
Clemens Ladisch | 93446ed | 2005-05-03 08:02:40 +0200 | [diff] [blame] | 2728 | if (err < 0) |
| 2729 | goto _error; |
Jaroslav Kysela | ebfdeea | 2010-02-16 11:17:09 +0100 | [diff] [blame] | 2730 | |
| 2731 | if (list_empty(&chip->mixer_list) && |
| 2732 | !snd_card_proc_new(chip->card, "usbmixer", &entry)) |
| 2733 | snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read); |
| 2734 | |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2735 | list_add(&mixer->list, &chip->mixer_list); |
| 2736 | return 0; |
Clemens Ladisch | 93446ed | 2005-05-03 08:02:40 +0200 | [diff] [blame] | 2737 | |
| 2738 | _error: |
| 2739 | snd_usb_mixer_free(mixer); |
| 2740 | return err; |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2741 | } |
| 2742 | |
Takashi Iwai | a6cece9 | 2014-10-31 11:24:32 +0100 | [diff] [blame] | 2743 | void snd_usb_mixer_disconnect(struct usb_mixer_interface *mixer) |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2744 | { |
Takashi Iwai | 124751d | 2017-10-10 14:10:32 +0200 | [diff] [blame] | 2745 | if (mixer->disconnected) |
| 2746 | return; |
| 2747 | if (mixer->urb) |
| 2748 | usb_kill_urb(mixer->urb); |
| 2749 | if (mixer->rc_urb) |
| 2750 | usb_kill_urb(mixer->rc_urb); |
| 2751 | mixer->disconnected = true; |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 2752 | } |
Takashi Iwai | 400362f | 2014-01-20 16:51:16 +0100 | [diff] [blame] | 2753 | |
| 2754 | #ifdef CONFIG_PM |
| 2755 | /* stop any bus activity of a mixer */ |
| 2756 | static void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer) |
| 2757 | { |
| 2758 | usb_kill_urb(mixer->urb); |
| 2759 | usb_kill_urb(mixer->rc_urb); |
| 2760 | } |
| 2761 | |
| 2762 | static int snd_usb_mixer_activate(struct usb_mixer_interface *mixer) |
| 2763 | { |
| 2764 | int err; |
| 2765 | |
| 2766 | if (mixer->urb) { |
| 2767 | err = usb_submit_urb(mixer->urb, GFP_NOIO); |
| 2768 | if (err < 0) |
| 2769 | return err; |
| 2770 | } |
| 2771 | |
| 2772 | return 0; |
| 2773 | } |
| 2774 | |
| 2775 | int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer) |
| 2776 | { |
| 2777 | snd_usb_mixer_inactivate(mixer); |
| 2778 | return 0; |
| 2779 | } |
| 2780 | |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2781 | static int restore_mixer_value(struct usb_mixer_elem_list *list) |
Takashi Iwai | 400362f | 2014-01-20 16:51:16 +0100 | [diff] [blame] | 2782 | { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2783 | struct usb_mixer_elem_info *cval = (struct usb_mixer_elem_info *)list; |
Takashi Iwai | 400362f | 2014-01-20 16:51:16 +0100 | [diff] [blame] | 2784 | int c, err, idx; |
| 2785 | |
| 2786 | if (cval->cmask) { |
| 2787 | idx = 0; |
| 2788 | for (c = 0; c < MAX_CHANNELS; c++) { |
| 2789 | if (!(cval->cmask & (1 << c))) |
| 2790 | continue; |
Yao-Wen Mao | 6aa6925 | 2015-08-28 16:33:25 +0800 | [diff] [blame] | 2791 | if (cval->cached & (1 << (c + 1))) { |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 2792 | err = snd_usb_set_cur_mix_value(cval, c + 1, idx, |
Takashi Iwai | 400362f | 2014-01-20 16:51:16 +0100 | [diff] [blame] | 2793 | cval->cache_val[idx]); |
| 2794 | if (err < 0) |
| 2795 | return err; |
| 2796 | } |
| 2797 | idx++; |
| 2798 | } |
| 2799 | } else { |
| 2800 | /* master */ |
| 2801 | if (cval->cached) { |
Chris J Arges | eef9045 | 2014-11-12 12:07:01 -0600 | [diff] [blame] | 2802 | err = snd_usb_set_cur_mix_value(cval, 0, 0, *cval->cache_val); |
Takashi Iwai | 400362f | 2014-01-20 16:51:16 +0100 | [diff] [blame] | 2803 | if (err < 0) |
| 2804 | return err; |
| 2805 | } |
| 2806 | } |
| 2807 | |
| 2808 | return 0; |
| 2809 | } |
| 2810 | |
| 2811 | int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume) |
| 2812 | { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2813 | struct usb_mixer_elem_list *list; |
Takashi Iwai | 400362f | 2014-01-20 16:51:16 +0100 | [diff] [blame] | 2814 | int id, err; |
| 2815 | |
Takashi Iwai | 400362f | 2014-01-20 16:51:16 +0100 | [diff] [blame] | 2816 | if (reset_resume) { |
| 2817 | /* restore cached mixer values */ |
| 2818 | for (id = 0; id < MAX_ID_ELEMS; id++) { |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2819 | for (list = mixer->id_elems[id]; list; |
| 2820 | list = list->next_id_elem) { |
| 2821 | if (list->resume) { |
| 2822 | err = list->resume(list); |
| 2823 | if (err < 0) |
| 2824 | return err; |
| 2825 | } |
Takashi Iwai | 400362f | 2014-01-20 16:51:16 +0100 | [diff] [blame] | 2826 | } |
| 2827 | } |
| 2828 | } |
| 2829 | |
| 2830 | return snd_usb_mixer_activate(mixer); |
| 2831 | } |
| 2832 | #endif |
Takashi Iwai | 3360b84 | 2014-11-18 11:47:04 +0100 | [diff] [blame] | 2833 | |
| 2834 | void snd_usb_mixer_elem_init_std(struct usb_mixer_elem_list *list, |
| 2835 | struct usb_mixer_interface *mixer, |
| 2836 | int unitid) |
| 2837 | { |
| 2838 | list->mixer = mixer; |
| 2839 | list->id = unitid; |
| 2840 | list->dump = snd_usb_mixer_dump_cval; |
| 2841 | #ifdef CONFIG_PM |
| 2842 | list->resume = restore_mixer_value; |
| 2843 | #endif |
| 2844 | } |