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