Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 2 | /* |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 3 | */ |
| 4 | |
| 5 | |
| 6 | #include <linux/init.h> |
| 7 | #include <linux/slab.h> |
| 8 | #include <linux/usb.h> |
| 9 | #include <linux/usb/audio.h> |
| 10 | #include <linux/usb/audio-v2.h> |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame] | 11 | #include <linux/usb/audio-v3.h> |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 12 | |
| 13 | #include <sound/core.h> |
| 14 | #include <sound/pcm.h> |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 15 | #include <sound/control.h> |
| 16 | #include <sound/tlv.h> |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 17 | |
| 18 | #include "usbaudio.h" |
| 19 | #include "card.h" |
| 20 | #include "proc.h" |
| 21 | #include "quirks.h" |
| 22 | #include "endpoint.h" |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 23 | #include "pcm.h" |
| 24 | #include "helper.h" |
| 25 | #include "format.h" |
| 26 | #include "clock.h" |
| 27 | #include "stream.h" |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 28 | #include "power.h" |
Shuah Khan | 66354f1 | 2019-04-01 20:40:22 -0400 | [diff] [blame] | 29 | #include "media.h" |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 30 | |
Takashi Iwai | c1ae5e7 | 2019-07-27 10:55:49 +0200 | [diff] [blame] | 31 | static void audioformat_free(struct audioformat *fp) |
| 32 | { |
| 33 | list_del(&fp->list); /* unlink for avoiding double-free */ |
| 34 | kfree(fp->rate_table); |
| 35 | kfree(fp->chmap); |
| 36 | kfree(fp); |
| 37 | } |
| 38 | |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 39 | /* |
| 40 | * free a substream |
| 41 | */ |
| 42 | static void free_substream(struct snd_usb_substream *subs) |
| 43 | { |
Eldad Zack | 88766f0 | 2013-04-03 23:18:49 +0200 | [diff] [blame] | 44 | struct audioformat *fp, *n; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 45 | |
| 46 | if (!subs->num_formats) |
| 47 | return; /* not initialized */ |
Takashi Iwai | c1ae5e7 | 2019-07-27 10:55:49 +0200 | [diff] [blame] | 48 | list_for_each_entry_safe(fp, n, &subs->fmt_list, list) |
| 49 | audioformat_free(fp); |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 50 | kfree(subs->rate_list.list); |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 51 | kfree(subs->str_pd); |
Shuah Khan | 66354f1 | 2019-04-01 20:40:22 -0400 | [diff] [blame] | 52 | snd_media_stream_delete(subs); |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | |
| 56 | /* |
| 57 | * free a usb stream instance |
| 58 | */ |
| 59 | static void snd_usb_audio_stream_free(struct snd_usb_stream *stream) |
| 60 | { |
| 61 | free_substream(&stream->substream[0]); |
| 62 | free_substream(&stream->substream[1]); |
| 63 | list_del(&stream->list); |
| 64 | kfree(stream); |
| 65 | } |
| 66 | |
| 67 | static void snd_usb_audio_pcm_free(struct snd_pcm *pcm) |
| 68 | { |
| 69 | struct snd_usb_stream *stream = pcm->private_data; |
Hemant Kumar | 3f60546 | 2016-03-07 14:46:31 -0800 | [diff] [blame] | 70 | struct snd_usb_audio *chip; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 71 | if (stream) { |
Hemant Kumar | 3f60546 | 2016-03-07 14:46:31 -0800 | [diff] [blame] | 72 | mutex_lock(&stream->chip->dev_lock); |
| 73 | chip = stream->chip; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 74 | stream->pcm = NULL; |
| 75 | snd_usb_audio_stream_free(stream); |
Hemant Kumar | 3f60546 | 2016-03-07 14:46:31 -0800 | [diff] [blame] | 76 | mutex_unlock(&chip->dev_lock); |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 77 | } |
| 78 | } |
| 79 | |
Daniel Mack | edcd363 | 2012-04-12 13:51:12 +0200 | [diff] [blame] | 80 | /* |
| 81 | * initialize the substream instance. |
| 82 | */ |
| 83 | |
| 84 | static void snd_usb_init_substream(struct snd_usb_stream *as, |
| 85 | int stream, |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 86 | struct audioformat *fp, |
| 87 | struct snd_usb_power_domain *pd) |
Daniel Mack | edcd363 | 2012-04-12 13:51:12 +0200 | [diff] [blame] | 88 | { |
| 89 | struct snd_usb_substream *subs = &as->substream[stream]; |
| 90 | |
| 91 | INIT_LIST_HEAD(&subs->fmt_list); |
| 92 | spin_lock_init(&subs->lock); |
| 93 | |
| 94 | subs->stream = as; |
| 95 | subs->direction = stream; |
| 96 | subs->dev = as->chip->dev; |
| 97 | subs->txfr_quirk = as->chip->txfr_quirk; |
Ricard Wanderlof | e057044 | 2015-10-19 08:52:53 +0200 | [diff] [blame] | 98 | subs->tx_length_quirk = as->chip->tx_length_quirk; |
Takashi Iwai | 978520b | 2012-10-12 15:12:55 +0200 | [diff] [blame] | 99 | subs->speed = snd_usb_get_speed(subs->dev); |
Calvin Owens | 1539d4f | 2013-04-12 22:33:59 -0500 | [diff] [blame] | 100 | subs->pkt_offset_adj = 0; |
Hector Martin | 1b7ecc2 | 2020-08-10 17:24:00 +0900 | [diff] [blame] | 101 | subs->stream_offset_adj = 0; |
Daniel Mack | edcd363 | 2012-04-12 13:51:12 +0200 | [diff] [blame] | 102 | |
| 103 | snd_usb_set_pcm_ops(as->pcm, stream); |
| 104 | |
| 105 | list_add_tail(&fp->list, &subs->fmt_list); |
| 106 | subs->formats |= fp->formats; |
| 107 | subs->num_formats++; |
| 108 | subs->fmt_type = fp->fmt_type; |
Takashi Iwai | 8260ef0 | 2012-06-08 09:01:37 +0200 | [diff] [blame] | 109 | subs->ep_num = fp->endpoint; |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 110 | if (fp->channels > subs->channels_max) |
| 111 | subs->channels_max = fp->channels; |
Takashi Iwai | f274baa | 2018-05-27 13:01:17 +0200 | [diff] [blame] | 112 | |
Jorge Sanjuan | a0a4959 | 2018-07-31 13:28:45 +0100 | [diff] [blame] | 113 | if (pd) { |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 114 | subs->str_pd = pd; |
Jorge Sanjuan | a0a4959 | 2018-07-31 13:28:45 +0100 | [diff] [blame] | 115 | /* Initialize Power Domain to idle status D1 */ |
| 116 | snd_usb_power_domain_set(subs->stream->chip, pd, |
| 117 | UAC3_PD_STATE_D1); |
| 118 | } |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 119 | |
Takashi Iwai | f274baa | 2018-05-27 13:01:17 +0200 | [diff] [blame] | 120 | snd_usb_preallocate_buffer(subs); |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | /* kctl callbacks for usb-audio channel maps */ |
| 124 | static int usb_chmap_ctl_info(struct snd_kcontrol *kcontrol, |
| 125 | struct snd_ctl_elem_info *uinfo) |
| 126 | { |
| 127 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol); |
| 128 | struct snd_usb_substream *subs = info->private_data; |
| 129 | |
| 130 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 131 | uinfo->count = subs->channels_max; |
| 132 | uinfo->value.integer.min = 0; |
| 133 | uinfo->value.integer.max = SNDRV_CHMAP_LAST; |
| 134 | return 0; |
| 135 | } |
| 136 | |
| 137 | /* check whether a duplicated entry exists in the audiofmt list */ |
| 138 | static bool have_dup_chmap(struct snd_usb_substream *subs, |
| 139 | struct audioformat *fp) |
| 140 | { |
Geliang Tang | f67d71a | 2015-12-21 23:55:39 +0800 | [diff] [blame] | 141 | struct audioformat *prev = fp; |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 142 | |
Geliang Tang | f67d71a | 2015-12-21 23:55:39 +0800 | [diff] [blame] | 143 | list_for_each_entry_continue_reverse(prev, &subs->fmt_list, list) { |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 144 | if (prev->chmap && |
| 145 | !memcmp(prev->chmap, fp->chmap, sizeof(*fp->chmap))) |
| 146 | return true; |
| 147 | } |
| 148 | return false; |
| 149 | } |
| 150 | |
| 151 | static int usb_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 152 | unsigned int size, unsigned int __user *tlv) |
| 153 | { |
| 154 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol); |
| 155 | struct snd_usb_substream *subs = info->private_data; |
| 156 | struct audioformat *fp; |
| 157 | unsigned int __user *dst; |
| 158 | int count = 0; |
| 159 | |
| 160 | if (size < 8) |
| 161 | return -ENOMEM; |
| 162 | if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv)) |
| 163 | return -EFAULT; |
| 164 | size -= 8; |
| 165 | dst = tlv + 2; |
| 166 | list_for_each_entry(fp, &subs->fmt_list, list) { |
| 167 | int i, ch_bytes; |
| 168 | |
| 169 | if (!fp->chmap) |
| 170 | continue; |
| 171 | if (have_dup_chmap(subs, fp)) |
| 172 | continue; |
| 173 | /* copy the entry */ |
| 174 | ch_bytes = fp->chmap->channels * 4; |
| 175 | if (size < 8 + ch_bytes) |
| 176 | return -ENOMEM; |
| 177 | if (put_user(SNDRV_CTL_TLVT_CHMAP_FIXED, dst) || |
| 178 | put_user(ch_bytes, dst + 1)) |
| 179 | return -EFAULT; |
| 180 | dst += 2; |
| 181 | for (i = 0; i < fp->chmap->channels; i++, dst++) { |
| 182 | if (put_user(fp->chmap->map[i], dst)) |
| 183 | return -EFAULT; |
| 184 | } |
| 185 | |
| 186 | count += 8 + ch_bytes; |
| 187 | size -= 8 + ch_bytes; |
| 188 | } |
| 189 | if (put_user(count, tlv + 1)) |
| 190 | return -EFAULT; |
| 191 | return 0; |
| 192 | } |
| 193 | |
| 194 | static int usb_chmap_ctl_get(struct snd_kcontrol *kcontrol, |
| 195 | struct snd_ctl_elem_value *ucontrol) |
| 196 | { |
| 197 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol); |
| 198 | struct snd_usb_substream *subs = info->private_data; |
| 199 | struct snd_pcm_chmap_elem *chmap = NULL; |
Takashi Iwai | f1e6ab0 | 2020-12-11 14:00:48 +0100 | [diff] [blame] | 200 | int i = 0; |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 201 | |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 202 | if (subs->cur_audiofmt) |
| 203 | chmap = subs->cur_audiofmt->chmap; |
| 204 | if (chmap) { |
| 205 | for (i = 0; i < chmap->channels; i++) |
| 206 | ucontrol->value.integer.value[i] = chmap->map[i]; |
| 207 | } |
Takashi Iwai | f1e6ab0 | 2020-12-11 14:00:48 +0100 | [diff] [blame] | 208 | for (; i < subs->channels_max; i++) |
| 209 | ucontrol->value.integer.value[i] = 0; |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 210 | return 0; |
| 211 | } |
| 212 | |
| 213 | /* create a chmap kctl assigned to the given USB substream */ |
| 214 | static int add_chmap(struct snd_pcm *pcm, int stream, |
| 215 | struct snd_usb_substream *subs) |
| 216 | { |
| 217 | struct audioformat *fp; |
| 218 | struct snd_pcm_chmap *chmap; |
| 219 | struct snd_kcontrol *kctl; |
| 220 | int err; |
| 221 | |
| 222 | list_for_each_entry(fp, &subs->fmt_list, list) |
| 223 | if (fp->chmap) |
| 224 | goto ok; |
| 225 | /* no chmap is found */ |
| 226 | return 0; |
| 227 | |
| 228 | ok: |
| 229 | err = snd_pcm_add_chmap_ctls(pcm, stream, NULL, 0, 0, &chmap); |
| 230 | if (err < 0) |
| 231 | return err; |
| 232 | |
| 233 | /* override handlers */ |
| 234 | chmap->private_data = subs; |
| 235 | kctl = chmap->kctl; |
| 236 | kctl->info = usb_chmap_ctl_info; |
| 237 | kctl->get = usb_chmap_ctl_get; |
| 238 | kctl->tlv.c = usb_chmap_ctl_tlv; |
| 239 | |
| 240 | return 0; |
| 241 | } |
| 242 | |
| 243 | /* convert from USB ChannelConfig bits to ALSA chmap element */ |
| 244 | static struct snd_pcm_chmap_elem *convert_chmap(int channels, unsigned int bits, |
| 245 | int protocol) |
| 246 | { |
Takashi Iwai | a01df92 | 2020-01-05 15:47:26 +0100 | [diff] [blame] | 247 | static const unsigned int uac1_maps[] = { |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 248 | SNDRV_CHMAP_FL, /* left front */ |
| 249 | SNDRV_CHMAP_FR, /* right front */ |
| 250 | SNDRV_CHMAP_FC, /* center front */ |
| 251 | SNDRV_CHMAP_LFE, /* LFE */ |
| 252 | SNDRV_CHMAP_SL, /* left surround */ |
| 253 | SNDRV_CHMAP_SR, /* right surround */ |
| 254 | SNDRV_CHMAP_FLC, /* left of center */ |
| 255 | SNDRV_CHMAP_FRC, /* right of center */ |
| 256 | SNDRV_CHMAP_RC, /* surround */ |
| 257 | SNDRV_CHMAP_SL, /* side left */ |
| 258 | SNDRV_CHMAP_SR, /* side right */ |
| 259 | SNDRV_CHMAP_TC, /* top */ |
| 260 | 0 /* terminator */ |
| 261 | }; |
Takashi Iwai | a01df92 | 2020-01-05 15:47:26 +0100 | [diff] [blame] | 262 | static const unsigned int uac2_maps[] = { |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 263 | SNDRV_CHMAP_FL, /* front left */ |
| 264 | SNDRV_CHMAP_FR, /* front right */ |
| 265 | SNDRV_CHMAP_FC, /* front center */ |
| 266 | SNDRV_CHMAP_LFE, /* LFE */ |
| 267 | SNDRV_CHMAP_RL, /* back left */ |
| 268 | SNDRV_CHMAP_RR, /* back right */ |
| 269 | SNDRV_CHMAP_FLC, /* front left of center */ |
| 270 | SNDRV_CHMAP_FRC, /* front right of center */ |
| 271 | SNDRV_CHMAP_RC, /* back center */ |
| 272 | SNDRV_CHMAP_SL, /* side left */ |
| 273 | SNDRV_CHMAP_SR, /* side right */ |
| 274 | SNDRV_CHMAP_TC, /* top center */ |
| 275 | SNDRV_CHMAP_TFL, /* top front left */ |
| 276 | SNDRV_CHMAP_TFC, /* top front center */ |
| 277 | SNDRV_CHMAP_TFR, /* top front right */ |
| 278 | SNDRV_CHMAP_TRL, /* top back left */ |
| 279 | SNDRV_CHMAP_TRC, /* top back center */ |
| 280 | SNDRV_CHMAP_TRR, /* top back right */ |
| 281 | SNDRV_CHMAP_TFLC, /* top front left of center */ |
| 282 | SNDRV_CHMAP_TFRC, /* top front right of center */ |
| 283 | SNDRV_CHMAP_LLFE, /* left LFE */ |
| 284 | SNDRV_CHMAP_RLFE, /* right LFE */ |
| 285 | SNDRV_CHMAP_TSL, /* top side left */ |
| 286 | SNDRV_CHMAP_TSR, /* top side right */ |
| 287 | SNDRV_CHMAP_BC, /* bottom center */ |
Anssi Hannula | 71373fd | 2013-11-10 21:24:05 +0200 | [diff] [blame] | 288 | SNDRV_CHMAP_RLC, /* back left of center */ |
| 289 | SNDRV_CHMAP_RRC, /* back right of center */ |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 290 | 0 /* terminator */ |
| 291 | }; |
| 292 | struct snd_pcm_chmap_elem *chmap; |
| 293 | const unsigned int *maps; |
| 294 | int c; |
| 295 | |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 296 | if (channels > ARRAY_SIZE(chmap->map)) |
| 297 | return NULL; |
| 298 | |
| 299 | chmap = kzalloc(sizeof(*chmap), GFP_KERNEL); |
| 300 | if (!chmap) |
| 301 | return NULL; |
| 302 | |
| 303 | maps = protocol == UAC_VERSION_2 ? uac2_maps : uac1_maps; |
| 304 | chmap->channels = channels; |
| 305 | c = 0; |
David Henningsson | 0dca01c | 2013-11-05 04:41:06 +0100 | [diff] [blame] | 306 | |
| 307 | if (bits) { |
| 308 | for (; bits && *maps; maps++, bits >>= 1) |
| 309 | if (bits & 1) |
| 310 | chmap->map[c++] = *maps; |
| 311 | } else { |
| 312 | /* If we're missing wChannelConfig, then guess something |
| 313 | to make sure the channel map is not skipped entirely */ |
| 314 | if (channels == 1) |
| 315 | chmap->map[c++] = SNDRV_CHMAP_MONO; |
| 316 | else |
| 317 | for (; c < channels && *maps; maps++) |
| 318 | chmap->map[c++] = *maps; |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | for (; c < channels; c++) |
| 322 | chmap->map[c] = SNDRV_CHMAP_UNKNOWN; |
| 323 | |
| 324 | return chmap; |
Daniel Mack | edcd363 | 2012-04-12 13:51:12 +0200 | [diff] [blame] | 325 | } |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 326 | |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame] | 327 | /* UAC3 device stores channels information in Cluster Descriptors */ |
| 328 | static struct |
| 329 | snd_pcm_chmap_elem *convert_chmap_v3(struct uac3_cluster_header_descriptor |
| 330 | *cluster) |
| 331 | { |
| 332 | unsigned int channels = cluster->bNrChannels; |
| 333 | struct snd_pcm_chmap_elem *chmap; |
| 334 | void *p = cluster; |
| 335 | int len, c; |
| 336 | |
| 337 | if (channels > ARRAY_SIZE(chmap->map)) |
| 338 | return NULL; |
| 339 | |
| 340 | chmap = kzalloc(sizeof(*chmap), GFP_KERNEL); |
| 341 | if (!chmap) |
| 342 | return NULL; |
| 343 | |
| 344 | len = le16_to_cpu(cluster->wLength); |
| 345 | c = 0; |
| 346 | p += sizeof(struct uac3_cluster_header_descriptor); |
| 347 | |
| 348 | while (((p - (void *)cluster) < len) && (c < channels)) { |
| 349 | struct uac3_cluster_segment_descriptor *cs_desc = p; |
| 350 | u16 cs_len; |
| 351 | u8 cs_type; |
| 352 | |
| 353 | cs_len = le16_to_cpu(cs_desc->wLength); |
| 354 | cs_type = cs_desc->bSegmentType; |
| 355 | |
| 356 | if (cs_type == UAC3_CHANNEL_INFORMATION) { |
| 357 | struct uac3_cluster_information_segment_descriptor *is = p; |
| 358 | unsigned char map; |
| 359 | |
| 360 | /* |
| 361 | * TODO: this conversion is not complete, update it |
| 362 | * after adding UAC3 values to asound.h |
| 363 | */ |
Michael Drake | 8e0428a | 2018-04-24 18:24:43 +0100 | [diff] [blame] | 364 | switch (is->bChRelationship) { |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame] | 365 | case UAC3_CH_MONO: |
| 366 | map = SNDRV_CHMAP_MONO; |
| 367 | break; |
| 368 | case UAC3_CH_LEFT: |
| 369 | case UAC3_CH_FRONT_LEFT: |
| 370 | case UAC3_CH_HEADPHONE_LEFT: |
| 371 | map = SNDRV_CHMAP_FL; |
| 372 | break; |
| 373 | case UAC3_CH_RIGHT: |
| 374 | case UAC3_CH_FRONT_RIGHT: |
| 375 | case UAC3_CH_HEADPHONE_RIGHT: |
| 376 | map = SNDRV_CHMAP_FR; |
| 377 | break; |
| 378 | case UAC3_CH_FRONT_CENTER: |
| 379 | map = SNDRV_CHMAP_FC; |
| 380 | break; |
| 381 | case UAC3_CH_FRONT_LEFT_OF_CENTER: |
| 382 | map = SNDRV_CHMAP_FLC; |
| 383 | break; |
| 384 | case UAC3_CH_FRONT_RIGHT_OF_CENTER: |
| 385 | map = SNDRV_CHMAP_FRC; |
| 386 | break; |
| 387 | case UAC3_CH_SIDE_LEFT: |
| 388 | map = SNDRV_CHMAP_SL; |
| 389 | break; |
| 390 | case UAC3_CH_SIDE_RIGHT: |
| 391 | map = SNDRV_CHMAP_SR; |
| 392 | break; |
| 393 | case UAC3_CH_BACK_LEFT: |
| 394 | map = SNDRV_CHMAP_RL; |
| 395 | break; |
| 396 | case UAC3_CH_BACK_RIGHT: |
| 397 | map = SNDRV_CHMAP_RR; |
| 398 | break; |
| 399 | case UAC3_CH_BACK_CENTER: |
| 400 | map = SNDRV_CHMAP_RC; |
| 401 | break; |
| 402 | case UAC3_CH_BACK_LEFT_OF_CENTER: |
| 403 | map = SNDRV_CHMAP_RLC; |
| 404 | break; |
| 405 | case UAC3_CH_BACK_RIGHT_OF_CENTER: |
| 406 | map = SNDRV_CHMAP_RRC; |
| 407 | break; |
| 408 | case UAC3_CH_TOP_CENTER: |
| 409 | map = SNDRV_CHMAP_TC; |
| 410 | break; |
| 411 | case UAC3_CH_TOP_FRONT_LEFT: |
| 412 | map = SNDRV_CHMAP_TFL; |
| 413 | break; |
| 414 | case UAC3_CH_TOP_FRONT_RIGHT: |
| 415 | map = SNDRV_CHMAP_TFR; |
| 416 | break; |
| 417 | case UAC3_CH_TOP_FRONT_CENTER: |
| 418 | map = SNDRV_CHMAP_TFC; |
| 419 | break; |
| 420 | case UAC3_CH_TOP_FRONT_LOC: |
| 421 | map = SNDRV_CHMAP_TFLC; |
| 422 | break; |
| 423 | case UAC3_CH_TOP_FRONT_ROC: |
| 424 | map = SNDRV_CHMAP_TFRC; |
| 425 | break; |
| 426 | case UAC3_CH_TOP_SIDE_LEFT: |
| 427 | map = SNDRV_CHMAP_TSL; |
| 428 | break; |
| 429 | case UAC3_CH_TOP_SIDE_RIGHT: |
| 430 | map = SNDRV_CHMAP_TSR; |
| 431 | break; |
| 432 | case UAC3_CH_TOP_BACK_LEFT: |
| 433 | map = SNDRV_CHMAP_TRL; |
| 434 | break; |
| 435 | case UAC3_CH_TOP_BACK_RIGHT: |
| 436 | map = SNDRV_CHMAP_TRR; |
| 437 | break; |
| 438 | case UAC3_CH_TOP_BACK_CENTER: |
| 439 | map = SNDRV_CHMAP_TRC; |
| 440 | break; |
| 441 | case UAC3_CH_BOTTOM_CENTER: |
| 442 | map = SNDRV_CHMAP_BC; |
| 443 | break; |
| 444 | case UAC3_CH_LOW_FREQUENCY_EFFECTS: |
| 445 | map = SNDRV_CHMAP_LFE; |
| 446 | break; |
| 447 | case UAC3_CH_LFE_LEFT: |
| 448 | map = SNDRV_CHMAP_LLFE; |
| 449 | break; |
| 450 | case UAC3_CH_LFE_RIGHT: |
| 451 | map = SNDRV_CHMAP_RLFE; |
| 452 | break; |
| 453 | case UAC3_CH_RELATIONSHIP_UNDEFINED: |
| 454 | default: |
| 455 | map = SNDRV_CHMAP_UNKNOWN; |
| 456 | break; |
| 457 | } |
| 458 | chmap->map[c++] = map; |
| 459 | } |
| 460 | p += cs_len; |
| 461 | } |
| 462 | |
| 463 | if (channels < c) |
| 464 | pr_err("%s: channel number mismatch\n", __func__); |
| 465 | |
| 466 | chmap->channels = channels; |
| 467 | |
| 468 | for (; c < channels; c++) |
| 469 | chmap->map[c] = SNDRV_CHMAP_UNKNOWN; |
| 470 | |
| 471 | return chmap; |
| 472 | } |
| 473 | |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 474 | /* |
| 475 | * add this endpoint to the chip instance. |
| 476 | * if a stream with the same endpoint already exists, append to it. |
Vladis Dronov | 836b34a | 2016-03-31 12:05:43 -0400 | [diff] [blame] | 477 | * if not, create a new pcm stream. note, fp is added to the substream |
| 478 | * fmt_list and will be freed on the chip instance release. do not free |
| 479 | * fp or do remove it from the substream fmt_list to avoid double-free. |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 480 | */ |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 481 | static int __snd_usb_add_audio_stream(struct snd_usb_audio *chip, |
| 482 | int stream, |
| 483 | struct audioformat *fp, |
| 484 | struct snd_usb_power_domain *pd) |
| 485 | |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 486 | { |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 487 | struct snd_usb_stream *as; |
| 488 | struct snd_usb_substream *subs; |
| 489 | struct snd_pcm *pcm; |
| 490 | int err; |
| 491 | |
Eldad Zack | 88766f0 | 2013-04-03 23:18:49 +0200 | [diff] [blame] | 492 | list_for_each_entry(as, &chip->pcm_list, list) { |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 493 | if (as->fmt_type != fp->fmt_type) |
| 494 | continue; |
| 495 | subs = &as->substream[stream]; |
Takashi Iwai | 8260ef0 | 2012-06-08 09:01:37 +0200 | [diff] [blame] | 496 | if (subs->ep_num == fp->endpoint) { |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 497 | list_add_tail(&fp->list, &subs->fmt_list); |
| 498 | subs->num_formats++; |
| 499 | subs->formats |= fp->formats; |
| 500 | return 0; |
| 501 | } |
| 502 | } |
| 503 | /* look for an empty stream */ |
Eldad Zack | 88766f0 | 2013-04-03 23:18:49 +0200 | [diff] [blame] | 504 | list_for_each_entry(as, &chip->pcm_list, list) { |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 505 | if (as->fmt_type != fp->fmt_type) |
| 506 | continue; |
| 507 | subs = &as->substream[stream]; |
Takashi Iwai | 8260ef0 | 2012-06-08 09:01:37 +0200 | [diff] [blame] | 508 | if (subs->ep_num) |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 509 | continue; |
Takashi Iwai | a4aad56 | 2020-03-25 11:33:21 +0100 | [diff] [blame] | 510 | if (snd_device_get_state(chip->card, as->pcm) != |
| 511 | SNDRV_DEV_BUILD) |
| 512 | chip->need_delayed_register = true; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 513 | err = snd_pcm_new_stream(as->pcm, stream, 1); |
| 514 | if (err < 0) |
| 515 | return err; |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 516 | snd_usb_init_substream(as, stream, fp, pd); |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 517 | return add_chmap(as->pcm, stream, subs); |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 518 | } |
| 519 | |
| 520 | /* create a new pcm */ |
| 521 | as = kzalloc(sizeof(*as), GFP_KERNEL); |
| 522 | if (!as) |
| 523 | return -ENOMEM; |
| 524 | as->pcm_index = chip->pcm_devs; |
| 525 | as->chip = chip; |
| 526 | as->fmt_type = fp->fmt_type; |
| 527 | err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs, |
| 528 | stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0, |
| 529 | stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1, |
| 530 | &pcm); |
| 531 | if (err < 0) { |
| 532 | kfree(as); |
| 533 | return err; |
| 534 | } |
| 535 | as->pcm = pcm; |
| 536 | pcm->private_data = as; |
| 537 | pcm->private_free = snd_usb_audio_pcm_free; |
| 538 | pcm->info_flags = 0; |
| 539 | if (chip->pcm_devs > 0) |
| 540 | sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs); |
| 541 | else |
| 542 | strcpy(pcm->name, "USB Audio"); |
| 543 | |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 544 | snd_usb_init_substream(as, stream, fp, pd); |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 545 | |
Johan Rastén | 5ee20bc | 2015-09-06 18:16:13 +0200 | [diff] [blame] | 546 | /* |
| 547 | * Keep using head insertion for M-Audio Audiophile USB (tm) which has a |
| 548 | * fix to swap capture stream order in conf/cards/USB-audio.conf |
| 549 | */ |
| 550 | if (chip->usb_id == USB_ID(0x0763, 0x2003)) |
| 551 | list_add(&as->list, &chip->pcm_list); |
| 552 | else |
| 553 | list_add_tail(&as->list, &chip->pcm_list); |
| 554 | |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 555 | chip->pcm_devs++; |
| 556 | |
| 557 | snd_usb_proc_pcm_format_add(as); |
| 558 | |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 559 | return add_chmap(pcm, stream, &as->substream[stream]); |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 560 | } |
| 561 | |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 562 | int snd_usb_add_audio_stream(struct snd_usb_audio *chip, |
| 563 | int stream, |
| 564 | struct audioformat *fp) |
| 565 | { |
| 566 | return __snd_usb_add_audio_stream(chip, stream, fp, NULL); |
| 567 | } |
| 568 | |
| 569 | static int snd_usb_add_audio_stream_v3(struct snd_usb_audio *chip, |
| 570 | int stream, |
| 571 | struct audioformat *fp, |
| 572 | struct snd_usb_power_domain *pd) |
| 573 | { |
| 574 | return __snd_usb_add_audio_stream(chip, stream, fp, pd); |
| 575 | } |
| 576 | |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 577 | static int parse_uac_endpoint_attributes(struct snd_usb_audio *chip, |
| 578 | struct usb_host_interface *alts, |
| 579 | int protocol, int iface_no) |
| 580 | { |
| 581 | /* parsed with a v1 header here. that's ok as we only look at the |
| 582 | * header first which is the same for both versions */ |
| 583 | struct uac_iso_endpoint_descriptor *csep; |
| 584 | struct usb_interface_descriptor *altsd = get_iface_desc(alts); |
| 585 | int attributes = 0; |
| 586 | |
| 587 | csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT); |
| 588 | |
| 589 | /* Creamware Noah has this descriptor after the 2nd endpoint */ |
| 590 | if (!csep && altsd->bNumEndpoints >= 2) |
| 591 | csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT); |
| 592 | |
Daniel Mack | ebfc594 | 2013-04-24 19:38:42 +0200 | [diff] [blame] | 593 | /* |
| 594 | * If we can't locate the USB_DT_CS_ENDPOINT descriptor in the extra |
| 595 | * bytes after the first endpoint, go search the entire interface. |
| 596 | * Some devices have it directly *before* the standard endpoint. |
| 597 | */ |
| 598 | if (!csep) |
| 599 | csep = snd_usb_find_desc(alts->extra, alts->extralen, NULL, USB_DT_CS_ENDPOINT); |
| 600 | |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 601 | if (!csep || csep->bLength < 7 || |
Takashi Iwai | 3e96d72 | 2019-01-02 17:12:21 +0100 | [diff] [blame] | 602 | csep->bDescriptorSubtype != UAC_EP_GENERAL) |
| 603 | goto error; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 604 | |
| 605 | if (protocol == UAC_VERSION_1) { |
| 606 | attributes = csep->bmAttributes; |
Jorge Sanjuan | c99f080 | 2018-05-11 16:25:35 +0100 | [diff] [blame] | 607 | } else if (protocol == UAC_VERSION_2) { |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 608 | struct uac2_iso_endpoint_descriptor *csep2 = |
| 609 | (struct uac2_iso_endpoint_descriptor *) csep; |
| 610 | |
Takashi Iwai | 3e96d72 | 2019-01-02 17:12:21 +0100 | [diff] [blame] | 611 | if (csep2->bLength < sizeof(*csep2)) |
| 612 | goto error; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 613 | attributes = csep->bmAttributes & UAC_EP_CS_ATTR_FILL_MAX; |
| 614 | |
| 615 | /* emulate the endpoint attributes of a v1 device */ |
| 616 | if (csep2->bmControls & UAC2_CONTROL_PITCH) |
| 617 | attributes |= UAC_EP_CS_ATTR_PITCH_CONTROL; |
Jorge Sanjuan | c99f080 | 2018-05-11 16:25:35 +0100 | [diff] [blame] | 618 | } else { /* UAC_VERSION_3 */ |
| 619 | struct uac3_iso_endpoint_descriptor *csep3 = |
| 620 | (struct uac3_iso_endpoint_descriptor *) csep; |
| 621 | |
Takashi Iwai | 3e96d72 | 2019-01-02 17:12:21 +0100 | [diff] [blame] | 622 | if (csep3->bLength < sizeof(*csep3)) |
| 623 | goto error; |
Jorge Sanjuan | c99f080 | 2018-05-11 16:25:35 +0100 | [diff] [blame] | 624 | /* emulate the endpoint attributes of a v1 device */ |
| 625 | if (le32_to_cpu(csep3->bmControls) & UAC2_CONTROL_PITCH) |
| 626 | attributes |= UAC_EP_CS_ATTR_PITCH_CONTROL; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | return attributes; |
Takashi Iwai | 3e96d72 | 2019-01-02 17:12:21 +0100 | [diff] [blame] | 630 | |
| 631 | error: |
| 632 | usb_audio_warn(chip, |
| 633 | "%u:%d : no or invalid class specific endpoint descriptor\n", |
| 634 | iface_no, altsd->bAlternateSetting); |
| 635 | return 0; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 636 | } |
| 637 | |
Takashi Iwai | 04324cc | 2012-11-26 16:24:02 +0100 | [diff] [blame] | 638 | /* find an input terminal descriptor (either UAC1 or UAC2) with the given |
| 639 | * terminal id |
| 640 | */ |
| 641 | static void * |
| 642 | snd_usb_find_input_terminal_descriptor(struct usb_host_interface *ctrl_iface, |
Takashi Iwai | 57f8770 | 2019-08-20 17:17:09 +0200 | [diff] [blame] | 643 | int terminal_id, int protocol) |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 644 | { |
| 645 | struct uac2_input_terminal_descriptor *term = NULL; |
| 646 | |
| 647 | while ((term = snd_usb_find_csint_desc(ctrl_iface->extra, |
| 648 | ctrl_iface->extralen, |
| 649 | term, UAC_INPUT_TERMINAL))) { |
Takashi Iwai | 57f8770 | 2019-08-20 17:17:09 +0200 | [diff] [blame] | 650 | if (!snd_usb_validate_audio_desc(term, protocol)) |
Takashi Iwai | 3e96d72 | 2019-01-02 17:12:21 +0100 | [diff] [blame] | 651 | continue; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 652 | if (term->bTerminalID == terminal_id) |
| 653 | return term; |
| 654 | } |
| 655 | |
| 656 | return NULL; |
| 657 | } |
| 658 | |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame] | 659 | static void * |
| 660 | snd_usb_find_output_terminal_descriptor(struct usb_host_interface *ctrl_iface, |
Takashi Iwai | 57f8770 | 2019-08-20 17:17:09 +0200 | [diff] [blame] | 661 | int terminal_id, int protocol) |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 662 | { |
Ruslan Bilovol | 9a2fe9b | 2018-03-21 02:03:59 +0200 | [diff] [blame] | 663 | /* OK to use with both UAC2 and UAC3 */ |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 664 | struct uac2_output_terminal_descriptor *term = NULL; |
| 665 | |
| 666 | while ((term = snd_usb_find_csint_desc(ctrl_iface->extra, |
| 667 | ctrl_iface->extralen, |
| 668 | term, UAC_OUTPUT_TERMINAL))) { |
Takashi Iwai | 57f8770 | 2019-08-20 17:17:09 +0200 | [diff] [blame] | 669 | if (!snd_usb_validate_audio_desc(term, protocol)) |
| 670 | continue; |
| 671 | if (term->bTerminalID == terminal_id) |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 672 | return term; |
| 673 | } |
| 674 | |
| 675 | return NULL; |
| 676 | } |
| 677 | |
Ruslan Bilovol | 4d47fa8 | 2018-05-04 04:23:58 +0300 | [diff] [blame] | 678 | static struct audioformat * |
| 679 | audio_format_alloc_init(struct snd_usb_audio *chip, |
| 680 | struct usb_host_interface *alts, |
| 681 | int protocol, int iface_no, int altset_idx, |
| 682 | int altno, int num_channels, int clock) |
| 683 | { |
| 684 | struct audioformat *fp; |
| 685 | |
| 686 | fp = kzalloc(sizeof(*fp), GFP_KERNEL); |
| 687 | if (!fp) |
| 688 | return NULL; |
| 689 | |
| 690 | fp->iface = iface_no; |
| 691 | fp->altsetting = altno; |
| 692 | fp->altset_idx = altset_idx; |
| 693 | fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress; |
| 694 | fp->ep_attr = get_endpoint(alts, 0)->bmAttributes; |
| 695 | fp->datainterval = snd_usb_parse_datainterval(chip, alts); |
| 696 | fp->protocol = protocol; |
| 697 | fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize); |
| 698 | fp->channels = num_channels; |
| 699 | if (snd_usb_get_speed(chip->dev) == USB_SPEED_HIGH) |
| 700 | fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1) |
| 701 | * (fp->maxpacksize & 0x7ff); |
| 702 | fp->clock = clock; |
| 703 | INIT_LIST_HEAD(&fp->list); |
| 704 | |
| 705 | return fp; |
| 706 | } |
| 707 | |
Ruslan Bilovol | 68faa86 | 2018-05-04 04:23:59 +0300 | [diff] [blame] | 708 | static struct audioformat * |
| 709 | snd_usb_get_audioformat_uac12(struct snd_usb_audio *chip, |
| 710 | struct usb_host_interface *alts, |
| 711 | int protocol, int iface_no, int altset_idx, |
| 712 | int altno, int stream, int bm_quirk) |
| 713 | { |
| 714 | struct usb_device *dev = chip->dev; |
| 715 | struct uac_format_type_i_continuous_descriptor *fmt; |
| 716 | unsigned int num_channels = 0, chconfig = 0; |
| 717 | struct audioformat *fp; |
| 718 | int clock = 0; |
| 719 | u64 format; |
| 720 | |
| 721 | /* get audio formats */ |
| 722 | if (protocol == UAC_VERSION_1) { |
| 723 | struct uac1_as_header_descriptor *as = |
| 724 | snd_usb_find_csint_desc(alts->extra, alts->extralen, |
| 725 | NULL, UAC_AS_GENERAL); |
| 726 | struct uac_input_terminal_descriptor *iterm; |
| 727 | |
| 728 | if (!as) { |
| 729 | dev_err(&dev->dev, |
| 730 | "%u:%d : UAC_AS_GENERAL descriptor not found\n", |
| 731 | iface_no, altno); |
| 732 | return NULL; |
| 733 | } |
| 734 | |
| 735 | if (as->bLength < sizeof(*as)) { |
| 736 | dev_err(&dev->dev, |
| 737 | "%u:%d : invalid UAC_AS_GENERAL desc\n", |
| 738 | iface_no, altno); |
| 739 | return NULL; |
| 740 | } |
| 741 | |
| 742 | format = le16_to_cpu(as->wFormatTag); /* remember the format value */ |
| 743 | |
| 744 | iterm = snd_usb_find_input_terminal_descriptor(chip->ctrl_intf, |
Takashi Iwai | 3e96d72 | 2019-01-02 17:12:21 +0100 | [diff] [blame] | 745 | as->bTerminalLink, |
Takashi Iwai | 57f8770 | 2019-08-20 17:17:09 +0200 | [diff] [blame] | 746 | protocol); |
Ruslan Bilovol | 68faa86 | 2018-05-04 04:23:59 +0300 | [diff] [blame] | 747 | if (iterm) { |
| 748 | num_channels = iterm->bNrChannels; |
| 749 | chconfig = le16_to_cpu(iterm->wChannelConfig); |
| 750 | } |
| 751 | } else { /* UAC_VERSION_2 */ |
| 752 | struct uac2_input_terminal_descriptor *input_term; |
| 753 | struct uac2_output_terminal_descriptor *output_term; |
| 754 | struct uac2_as_header_descriptor *as = |
| 755 | snd_usb_find_csint_desc(alts->extra, alts->extralen, |
| 756 | NULL, UAC_AS_GENERAL); |
| 757 | |
| 758 | if (!as) { |
| 759 | dev_err(&dev->dev, |
| 760 | "%u:%d : UAC_AS_GENERAL descriptor not found\n", |
| 761 | iface_no, altno); |
| 762 | return NULL; |
| 763 | } |
| 764 | |
| 765 | if (as->bLength < sizeof(*as)) { |
| 766 | dev_err(&dev->dev, |
| 767 | "%u:%d : invalid UAC_AS_GENERAL desc\n", |
| 768 | iface_no, altno); |
| 769 | return NULL; |
| 770 | } |
| 771 | |
| 772 | num_channels = as->bNrChannels; |
| 773 | format = le32_to_cpu(as->bmFormats); |
| 774 | chconfig = le32_to_cpu(as->bmChannelConfig); |
| 775 | |
| 776 | /* |
| 777 | * lookup the terminal associated to this interface |
| 778 | * to extract the clock |
| 779 | */ |
| 780 | input_term = snd_usb_find_input_terminal_descriptor(chip->ctrl_intf, |
Takashi Iwai | 3e96d72 | 2019-01-02 17:12:21 +0100 | [diff] [blame] | 781 | as->bTerminalLink, |
Takashi Iwai | 57f8770 | 2019-08-20 17:17:09 +0200 | [diff] [blame] | 782 | protocol); |
Ruslan Bilovol | 68faa86 | 2018-05-04 04:23:59 +0300 | [diff] [blame] | 783 | if (input_term) { |
| 784 | clock = input_term->bCSourceID; |
| 785 | if (!chconfig && (num_channels == input_term->bNrChannels)) |
| 786 | chconfig = le32_to_cpu(input_term->bmChannelConfig); |
| 787 | goto found_clock; |
| 788 | } |
| 789 | |
| 790 | output_term = snd_usb_find_output_terminal_descriptor(chip->ctrl_intf, |
Takashi Iwai | 57f8770 | 2019-08-20 17:17:09 +0200 | [diff] [blame] | 791 | as->bTerminalLink, |
| 792 | protocol); |
Ruslan Bilovol | 68faa86 | 2018-05-04 04:23:59 +0300 | [diff] [blame] | 793 | if (output_term) { |
| 794 | clock = output_term->bCSourceID; |
| 795 | goto found_clock; |
| 796 | } |
| 797 | |
| 798 | dev_err(&dev->dev, |
| 799 | "%u:%d : bogus bTerminalLink %d\n", |
| 800 | iface_no, altno, as->bTerminalLink); |
| 801 | return NULL; |
| 802 | } |
| 803 | |
| 804 | found_clock: |
| 805 | /* get format type */ |
| 806 | fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, |
| 807 | NULL, UAC_FORMAT_TYPE); |
| 808 | if (!fmt) { |
| 809 | dev_err(&dev->dev, |
| 810 | "%u:%d : no UAC_FORMAT_TYPE desc\n", |
| 811 | iface_no, altno); |
| 812 | return NULL; |
| 813 | } |
| 814 | if (((protocol == UAC_VERSION_1) && (fmt->bLength < 8)) |
| 815 | || ((protocol == UAC_VERSION_2) && |
| 816 | (fmt->bLength < 6))) { |
| 817 | dev_err(&dev->dev, |
| 818 | "%u:%d : invalid UAC_FORMAT_TYPE desc\n", |
| 819 | iface_no, altno); |
| 820 | return NULL; |
| 821 | } |
| 822 | |
| 823 | /* |
| 824 | * Blue Microphones workaround: The last altsetting is |
| 825 | * identical with the previous one, except for a larger |
| 826 | * packet size, but is actually a mislabeled two-channel |
| 827 | * setting; ignore it. |
| 828 | * |
| 829 | * Part 2: analyze quirk flag and format |
| 830 | */ |
| 831 | if (bm_quirk && fmt->bNrChannels == 1 && fmt->bSubframeSize == 2) |
| 832 | return NULL; |
| 833 | |
| 834 | fp = audio_format_alloc_init(chip, alts, protocol, iface_no, |
| 835 | altset_idx, altno, num_channels, clock); |
| 836 | if (!fp) |
| 837 | return ERR_PTR(-ENOMEM); |
| 838 | |
| 839 | fp->attributes = parse_uac_endpoint_attributes(chip, alts, protocol, |
| 840 | iface_no); |
| 841 | |
| 842 | /* some quirks for attributes here */ |
| 843 | snd_usb_audioformat_attributes_quirk(chip, fp, stream); |
| 844 | |
| 845 | /* ok, let's parse further... */ |
| 846 | if (snd_usb_parse_audio_format(chip, fp, format, |
| 847 | fmt, stream) < 0) { |
Takashi Iwai | c1ae5e7 | 2019-07-27 10:55:49 +0200 | [diff] [blame] | 848 | audioformat_free(fp); |
Ruslan Bilovol | 68faa86 | 2018-05-04 04:23:59 +0300 | [diff] [blame] | 849 | return NULL; |
| 850 | } |
| 851 | |
| 852 | /* Create chmap */ |
| 853 | if (fp->channels != num_channels) |
| 854 | chconfig = 0; |
| 855 | |
| 856 | fp->chmap = convert_chmap(fp->channels, chconfig, protocol); |
| 857 | |
| 858 | return fp; |
| 859 | } |
Ruslan Bilovol | 4d47fa8 | 2018-05-04 04:23:58 +0300 | [diff] [blame] | 860 | |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 861 | static struct audioformat * |
| 862 | snd_usb_get_audioformat_uac3(struct snd_usb_audio *chip, |
| 863 | struct usb_host_interface *alts, |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 864 | struct snd_usb_power_domain **pd_out, |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 865 | int iface_no, int altset_idx, |
| 866 | int altno, int stream) |
| 867 | { |
| 868 | struct usb_device *dev = chip->dev; |
| 869 | struct uac3_input_terminal_descriptor *input_term; |
| 870 | struct uac3_output_terminal_descriptor *output_term; |
| 871 | struct uac3_cluster_header_descriptor *cluster; |
Ruslan Bilovol | 17156f2 | 2018-05-04 04:24:04 +0300 | [diff] [blame] | 872 | struct uac3_as_header_descriptor *as = NULL; |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 873 | struct uac3_hc_descriptor_header hc_header; |
| 874 | struct snd_pcm_chmap_elem *chmap; |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 875 | struct snd_usb_power_domain *pd; |
Ruslan Bilovol | 17156f2 | 2018-05-04 04:24:04 +0300 | [diff] [blame] | 876 | unsigned char badd_profile; |
| 877 | u64 badd_formats = 0; |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 878 | unsigned int num_channels; |
| 879 | struct audioformat *fp; |
| 880 | u16 cluster_id, wLength; |
| 881 | int clock = 0; |
| 882 | int err; |
| 883 | |
Ruslan Bilovol | 17156f2 | 2018-05-04 04:24:04 +0300 | [diff] [blame] | 884 | badd_profile = chip->badd_profile; |
| 885 | |
| 886 | if (badd_profile >= UAC3_FUNCTION_SUBCLASS_GENERIC_IO) { |
| 887 | unsigned int maxpacksize = |
| 888 | le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize); |
| 889 | |
| 890 | switch (maxpacksize) { |
| 891 | default: |
| 892 | dev_err(&dev->dev, |
| 893 | "%u:%d : incorrect wMaxPacketSize for BADD profile\n", |
| 894 | iface_no, altno); |
| 895 | return NULL; |
| 896 | case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_16: |
| 897 | case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_16: |
| 898 | badd_formats = SNDRV_PCM_FMTBIT_S16_LE; |
| 899 | num_channels = 1; |
| 900 | break; |
| 901 | case UAC3_BADD_EP_MAXPSIZE_SYNC_MONO_24: |
| 902 | case UAC3_BADD_EP_MAXPSIZE_ASYNC_MONO_24: |
| 903 | badd_formats = SNDRV_PCM_FMTBIT_S24_3LE; |
| 904 | num_channels = 1; |
| 905 | break; |
| 906 | case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_16: |
| 907 | case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_16: |
| 908 | badd_formats = SNDRV_PCM_FMTBIT_S16_LE; |
| 909 | num_channels = 2; |
| 910 | break; |
| 911 | case UAC3_BADD_EP_MAXPSIZE_SYNC_STEREO_24: |
| 912 | case UAC3_BADD_EP_MAXPSIZE_ASYNC_STEREO_24: |
| 913 | badd_formats = SNDRV_PCM_FMTBIT_S24_3LE; |
| 914 | num_channels = 2; |
| 915 | break; |
| 916 | } |
| 917 | |
| 918 | chmap = kzalloc(sizeof(*chmap), GFP_KERNEL); |
| 919 | if (!chmap) |
| 920 | return ERR_PTR(-ENOMEM); |
| 921 | |
| 922 | if (num_channels == 1) { |
| 923 | chmap->map[0] = SNDRV_CHMAP_MONO; |
| 924 | } else { |
| 925 | chmap->map[0] = SNDRV_CHMAP_FL; |
| 926 | chmap->map[1] = SNDRV_CHMAP_FR; |
| 927 | } |
| 928 | |
| 929 | chmap->channels = num_channels; |
| 930 | clock = UAC3_BADD_CS_ID9; |
| 931 | goto found_clock; |
| 932 | } |
| 933 | |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 934 | as = snd_usb_find_csint_desc(alts->extra, alts->extralen, |
| 935 | NULL, UAC_AS_GENERAL); |
| 936 | if (!as) { |
| 937 | dev_err(&dev->dev, |
| 938 | "%u:%d : UAC_AS_GENERAL descriptor not found\n", |
| 939 | iface_no, altno); |
| 940 | return NULL; |
| 941 | } |
| 942 | |
| 943 | if (as->bLength < sizeof(*as)) { |
| 944 | dev_err(&dev->dev, |
| 945 | "%u:%d : invalid UAC_AS_GENERAL desc\n", |
| 946 | iface_no, altno); |
| 947 | return NULL; |
| 948 | } |
| 949 | |
| 950 | cluster_id = le16_to_cpu(as->wClusterDescrID); |
| 951 | if (!cluster_id) { |
| 952 | dev_err(&dev->dev, |
| 953 | "%u:%d : no cluster descriptor\n", |
| 954 | iface_no, altno); |
| 955 | return NULL; |
| 956 | } |
| 957 | |
| 958 | /* |
| 959 | * Get number of channels and channel map through |
| 960 | * High Capability Cluster Descriptor |
| 961 | * |
| 962 | * First step: get High Capability header and |
| 963 | * read size of Cluster Descriptor |
| 964 | */ |
| 965 | err = snd_usb_ctl_msg(chip->dev, |
| 966 | usb_rcvctrlpipe(chip->dev, 0), |
| 967 | UAC3_CS_REQ_HIGH_CAPABILITY_DESCRIPTOR, |
| 968 | USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN, |
| 969 | cluster_id, |
| 970 | snd_usb_ctrl_intf(chip), |
| 971 | &hc_header, sizeof(hc_header)); |
| 972 | if (err < 0) |
| 973 | return ERR_PTR(err); |
| 974 | else if (err != sizeof(hc_header)) { |
| 975 | dev_err(&dev->dev, |
| 976 | "%u:%d : can't get High Capability descriptor\n", |
| 977 | iface_no, altno); |
| 978 | return ERR_PTR(-EIO); |
| 979 | } |
| 980 | |
| 981 | /* |
| 982 | * Second step: allocate needed amount of memory |
| 983 | * and request Cluster Descriptor |
| 984 | */ |
| 985 | wLength = le16_to_cpu(hc_header.wLength); |
| 986 | cluster = kzalloc(wLength, GFP_KERNEL); |
| 987 | if (!cluster) |
| 988 | return ERR_PTR(-ENOMEM); |
| 989 | err = snd_usb_ctl_msg(chip->dev, |
| 990 | usb_rcvctrlpipe(chip->dev, 0), |
| 991 | UAC3_CS_REQ_HIGH_CAPABILITY_DESCRIPTOR, |
| 992 | USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN, |
| 993 | cluster_id, |
| 994 | snd_usb_ctrl_intf(chip), |
| 995 | cluster, wLength); |
| 996 | if (err < 0) { |
| 997 | kfree(cluster); |
| 998 | return ERR_PTR(err); |
| 999 | } else if (err != wLength) { |
| 1000 | dev_err(&dev->dev, |
| 1001 | "%u:%d : can't get Cluster Descriptor\n", |
| 1002 | iface_no, altno); |
| 1003 | kfree(cluster); |
| 1004 | return ERR_PTR(-EIO); |
| 1005 | } |
| 1006 | |
| 1007 | num_channels = cluster->bNrChannels; |
| 1008 | chmap = convert_chmap_v3(cluster); |
| 1009 | kfree(cluster); |
| 1010 | |
| 1011 | /* |
| 1012 | * lookup the terminal associated to this interface |
| 1013 | * to extract the clock |
| 1014 | */ |
| 1015 | input_term = snd_usb_find_input_terminal_descriptor(chip->ctrl_intf, |
Takashi Iwai | 3e96d72 | 2019-01-02 17:12:21 +0100 | [diff] [blame] | 1016 | as->bTerminalLink, |
Takashi Iwai | 57f8770 | 2019-08-20 17:17:09 +0200 | [diff] [blame] | 1017 | UAC_VERSION_3); |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1018 | if (input_term) { |
| 1019 | clock = input_term->bCSourceID; |
| 1020 | goto found_clock; |
| 1021 | } |
| 1022 | |
| 1023 | output_term = snd_usb_find_output_terminal_descriptor(chip->ctrl_intf, |
Takashi Iwai | 57f8770 | 2019-08-20 17:17:09 +0200 | [diff] [blame] | 1024 | as->bTerminalLink, |
| 1025 | UAC_VERSION_3); |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1026 | if (output_term) { |
| 1027 | clock = output_term->bCSourceID; |
| 1028 | goto found_clock; |
| 1029 | } |
| 1030 | |
| 1031 | dev_err(&dev->dev, "%u:%d : bogus bTerminalLink %d\n", |
| 1032 | iface_no, altno, as->bTerminalLink); |
Ruslan Bilovol | 6cd17ea | 2018-05-18 01:08:59 +0300 | [diff] [blame] | 1033 | kfree(chmap); |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1034 | return NULL; |
| 1035 | |
| 1036 | found_clock: |
| 1037 | fp = audio_format_alloc_init(chip, alts, UAC_VERSION_3, iface_no, |
| 1038 | altset_idx, altno, num_channels, clock); |
Ruslan Bilovol | 6cd17ea | 2018-05-18 01:08:59 +0300 | [diff] [blame] | 1039 | if (!fp) { |
| 1040 | kfree(chmap); |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1041 | return ERR_PTR(-ENOMEM); |
Ruslan Bilovol | 6cd17ea | 2018-05-18 01:08:59 +0300 | [diff] [blame] | 1042 | } |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1043 | |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1044 | fp->chmap = chmap; |
| 1045 | |
Ruslan Bilovol | 17156f2 | 2018-05-04 04:24:04 +0300 | [diff] [blame] | 1046 | if (badd_profile >= UAC3_FUNCTION_SUBCLASS_GENERIC_IO) { |
| 1047 | fp->attributes = 0; /* No attributes */ |
| 1048 | |
| 1049 | fp->fmt_type = UAC_FORMAT_TYPE_I; |
| 1050 | fp->formats = badd_formats; |
| 1051 | |
| 1052 | fp->nr_rates = 0; /* SNDRV_PCM_RATE_CONTINUOUS */ |
| 1053 | fp->rate_min = UAC3_BADD_SAMPLING_RATE; |
| 1054 | fp->rate_max = UAC3_BADD_SAMPLING_RATE; |
| 1055 | fp->rates = SNDRV_PCM_RATE_CONTINUOUS; |
| 1056 | |
Wei Yongjun | 1117555 | 2018-08-02 04:31:02 +0000 | [diff] [blame] | 1057 | pd = kzalloc(sizeof(*pd), GFP_KERNEL); |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 1058 | if (!pd) { |
Takashi Iwai | c1ae5e7 | 2019-07-27 10:55:49 +0200 | [diff] [blame] | 1059 | audioformat_free(fp); |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 1060 | return NULL; |
| 1061 | } |
| 1062 | pd->pd_id = (stream == SNDRV_PCM_STREAM_PLAYBACK) ? |
| 1063 | UAC3_BADD_PD_ID10 : UAC3_BADD_PD_ID11; |
| 1064 | pd->pd_d1d0_rec = UAC3_BADD_PD_RECOVER_D1D0; |
| 1065 | pd->pd_d2d0_rec = UAC3_BADD_PD_RECOVER_D2D0; |
| 1066 | |
Ruslan Bilovol | 17156f2 | 2018-05-04 04:24:04 +0300 | [diff] [blame] | 1067 | } else { |
| 1068 | fp->attributes = parse_uac_endpoint_attributes(chip, alts, |
| 1069 | UAC_VERSION_3, |
| 1070 | iface_no); |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 1071 | |
| 1072 | pd = snd_usb_find_power_domain(chip->ctrl_intf, |
| 1073 | as->bTerminalLink); |
| 1074 | |
Ruslan Bilovol | 17156f2 | 2018-05-04 04:24:04 +0300 | [diff] [blame] | 1075 | /* ok, let's parse further... */ |
| 1076 | if (snd_usb_parse_audio_format_v3(chip, fp, as, stream) < 0) { |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 1077 | kfree(pd); |
Takashi Iwai | c1ae5e7 | 2019-07-27 10:55:49 +0200 | [diff] [blame] | 1078 | audioformat_free(fp); |
Ruslan Bilovol | 17156f2 | 2018-05-04 04:24:04 +0300 | [diff] [blame] | 1079 | return NULL; |
| 1080 | } |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1081 | } |
| 1082 | |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 1083 | if (pd) |
| 1084 | *pd_out = pd; |
| 1085 | |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1086 | return fp; |
| 1087 | } |
| 1088 | |
Alexander Tsoy | f7f5301 | 2017-08-11 02:36:14 +0300 | [diff] [blame] | 1089 | static int __snd_usb_parse_audio_interface(struct snd_usb_audio *chip, |
| 1090 | int iface_no, |
| 1091 | bool *has_non_pcm, bool non_pcm) |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1092 | { |
| 1093 | struct usb_device *dev; |
| 1094 | struct usb_interface *iface; |
| 1095 | struct usb_host_interface *alts; |
| 1096 | struct usb_interface_descriptor *altsd; |
| 1097 | int i, altno, err, stream; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1098 | struct audioformat *fp = NULL; |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 1099 | struct snd_usb_power_domain *pd = NULL; |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1100 | int num, protocol; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1101 | |
| 1102 | dev = chip->dev; |
| 1103 | |
| 1104 | /* parse the interface's altsettings */ |
| 1105 | iface = usb_ifnum_to_if(dev, iface_no); |
| 1106 | |
| 1107 | num = iface->num_altsetting; |
| 1108 | |
| 1109 | /* |
| 1110 | * Dallas DS4201 workaround: It presents 5 altsettings, but the last |
| 1111 | * one misses syncpipe, and does not produce any sound. |
| 1112 | */ |
| 1113 | if (chip->usb_id == USB_ID(0x04fa, 0x4201)) |
| 1114 | num = 4; |
| 1115 | |
| 1116 | for (i = 0; i < num; i++) { |
| 1117 | alts = &iface->altsetting[i]; |
| 1118 | altsd = get_iface_desc(alts); |
| 1119 | protocol = altsd->bInterfaceProtocol; |
| 1120 | /* skip invalid one */ |
Clemens Ladisch | aafe77c | 2013-03-31 23:43:12 +0200 | [diff] [blame] | 1121 | if (((altsd->bInterfaceClass != USB_CLASS_AUDIO || |
| 1122 | (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING && |
| 1123 | altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC)) && |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1124 | altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) || |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1125 | altsd->bNumEndpoints < 1 || |
| 1126 | le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0) |
| 1127 | continue; |
| 1128 | /* must be isochronous */ |
| 1129 | if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != |
| 1130 | USB_ENDPOINT_XFER_ISOC) |
| 1131 | continue; |
| 1132 | /* check direction */ |
| 1133 | stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ? |
| 1134 | SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK; |
| 1135 | altno = altsd->bAlternateSetting; |
| 1136 | |
| 1137 | if (snd_usb_apply_interface_quirk(chip, iface_no, altno)) |
| 1138 | continue; |
| 1139 | |
Clemens Ladisch | aafe77c | 2013-03-31 23:43:12 +0200 | [diff] [blame] | 1140 | /* |
| 1141 | * Roland audio streaming interfaces are marked with protocols |
| 1142 | * 0/1/2, but are UAC 1 compatible. |
| 1143 | */ |
| 1144 | if (USB_ID_VENDOR(chip->usb_id) == 0x0582 && |
| 1145 | altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC && |
| 1146 | protocol <= 2) |
| 1147 | protocol = UAC_VERSION_1; |
| 1148 | |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1149 | switch (protocol) { |
| 1150 | default: |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1151 | dev_dbg(&dev->dev, "%u:%d: unknown interface protocol %#02x, assuming v1\n", |
| 1152 | iface_no, altno, protocol); |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1153 | protocol = UAC_VERSION_1; |
Gustavo A. R. Silva | c0dbbda | 2020-07-08 15:32:36 -0500 | [diff] [blame] | 1154 | fallthrough; |
Ruslan Bilovol | 68faa86 | 2018-05-04 04:23:59 +0300 | [diff] [blame] | 1155 | case UAC_VERSION_1: |
Ruslan Bilovol | 68faa86 | 2018-05-04 04:23:59 +0300 | [diff] [blame] | 1156 | case UAC_VERSION_2: { |
| 1157 | int bm_quirk = 0; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1158 | |
Ruslan Bilovol | 68faa86 | 2018-05-04 04:23:59 +0300 | [diff] [blame] | 1159 | /* |
| 1160 | * Blue Microphones workaround: The last altsetting is |
| 1161 | * identical with the previous one, except for a larger |
| 1162 | * packet size, but is actually a mislabeled two-channel |
| 1163 | * setting; ignore it. |
| 1164 | * |
| 1165 | * Part 1: prepare quirk flag |
| 1166 | */ |
| 1167 | if (altno == 2 && num == 3 && |
| 1168 | fp && fp->altsetting == 1 && fp->channels == 1 && |
| 1169 | fp->formats == SNDRV_PCM_FMTBIT_S16_LE && |
| 1170 | protocol == UAC_VERSION_1 && |
| 1171 | le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == |
| 1172 | fp->maxpacksize * 2) |
| 1173 | bm_quirk = 1; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1174 | |
Ruslan Bilovol | 68faa86 | 2018-05-04 04:23:59 +0300 | [diff] [blame] | 1175 | fp = snd_usb_get_audioformat_uac12(chip, alts, protocol, |
| 1176 | iface_no, i, altno, |
| 1177 | stream, bm_quirk); |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1178 | break; |
| 1179 | } |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1180 | case UAC_VERSION_3: |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 1181 | fp = snd_usb_get_audioformat_uac3(chip, alts, &pd, |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1182 | iface_no, i, altno, stream); |
| 1183 | break; |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1184 | } |
| 1185 | |
Markus Elfring | 9ecb240 | 2017-08-11 18:38:25 +0200 | [diff] [blame] | 1186 | if (!fp) |
Ruslan Bilovol | 68faa86 | 2018-05-04 04:23:59 +0300 | [diff] [blame] | 1187 | continue; |
Ruslan Bilovol | eda553f | 2018-05-04 04:24:00 +0300 | [diff] [blame] | 1188 | else if (IS_ERR(fp)) |
| 1189 | return PTR_ERR(fp); |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1190 | |
Alexander Tsoy | f7f5301 | 2017-08-11 02:36:14 +0300 | [diff] [blame] | 1191 | if (fp->fmt_type != UAC_FORMAT_TYPE_I) |
| 1192 | *has_non_pcm = true; |
| 1193 | if ((fp->fmt_type == UAC_FORMAT_TYPE_I) == non_pcm) { |
| 1194 | audioformat_free(fp); |
| 1195 | kfree(pd); |
| 1196 | fp = NULL; |
| 1197 | pd = NULL; |
| 1198 | continue; |
| 1199 | } |
| 1200 | |
Takashi Iwai | 0ba41d9 | 2014-02-26 13:02:17 +0100 | [diff] [blame] | 1201 | dev_dbg(&dev->dev, "%u:%d: add audio endpoint %#x\n", iface_no, altno, fp->endpoint); |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 1202 | if (protocol == UAC_VERSION_3) |
| 1203 | err = snd_usb_add_audio_stream_v3(chip, stream, fp, pd); |
| 1204 | else |
| 1205 | err = snd_usb_add_audio_stream(chip, stream, fp); |
| 1206 | |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1207 | if (err < 0) { |
Takashi Iwai | c1ae5e7 | 2019-07-27 10:55:49 +0200 | [diff] [blame] | 1208 | audioformat_free(fp); |
Jorge Sanjuan | 7edf3b5 | 2018-07-31 13:28:43 +0100 | [diff] [blame] | 1209 | kfree(pd); |
Daniel Mack | e8e8bab | 2011-09-12 18:54:12 +0200 | [diff] [blame] | 1210 | return err; |
| 1211 | } |
| 1212 | /* try to set the interface... */ |
| 1213 | usb_set_interface(chip->dev, iface_no, altno); |
| 1214 | snd_usb_init_pitch(chip, iface_no, alts, fp); |
| 1215 | snd_usb_init_sample_rate(chip, iface_no, alts, fp, fp->rate_max); |
| 1216 | } |
| 1217 | return 0; |
| 1218 | } |
| 1219 | |
Alexander Tsoy | f7f5301 | 2017-08-11 02:36:14 +0300 | [diff] [blame] | 1220 | int snd_usb_parse_audio_interface(struct snd_usb_audio *chip, int iface_no) |
| 1221 | { |
| 1222 | int err; |
| 1223 | bool has_non_pcm = false; |
| 1224 | |
| 1225 | /* parse PCM formats */ |
| 1226 | err = __snd_usb_parse_audio_interface(chip, iface_no, &has_non_pcm, false); |
| 1227 | if (err < 0) |
| 1228 | return err; |
| 1229 | |
| 1230 | if (has_non_pcm) { |
| 1231 | /* parse non-PCM formats */ |
| 1232 | err = __snd_usb_parse_audio_interface(chip, iface_no, &has_non_pcm, true); |
| 1233 | if (err < 0) |
| 1234 | return err; |
| 1235 | } |
| 1236 | |
| 1237 | return 0; |
| 1238 | } |
| 1239 | |