blob: bf88933acc4fd6249a169c859428d9e25323050c [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Daniel Macke8e8bab2011-09-12 18:54:12 +02002/*
Daniel Macke8e8bab2011-09-12 18:54:12 +02003 */
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 Bilovol9a2fe9b2018-03-21 02:03:59 +020011#include <linux/usb/audio-v3.h>
Daniel Macke8e8bab2011-09-12 18:54:12 +020012
13#include <sound/core.h>
14#include <sound/pcm.h>
Takashi Iwai04324cc2012-11-26 16:24:02 +010015#include <sound/control.h>
16#include <sound/tlv.h>
Daniel Macke8e8bab2011-09-12 18:54:12 +020017
18#include "usbaudio.h"
19#include "card.h"
20#include "proc.h"
21#include "quirks.h"
22#include "endpoint.h"
Daniel Macke8e8bab2011-09-12 18:54:12 +020023#include "pcm.h"
24#include "helper.h"
25#include "format.h"
26#include "clock.h"
27#include "stream.h"
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +010028#include "power.h"
Shuah Khan66354f12019-04-01 20:40:22 -040029#include "media.h"
Daniel Macke8e8bab2011-09-12 18:54:12 +020030
Takashi Iwaic1ae5e72019-07-27 10:55:49 +020031static 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 Macke8e8bab2011-09-12 18:54:12 +020039/*
40 * free a substream
41 */
42static void free_substream(struct snd_usb_substream *subs)
43{
Eldad Zack88766f02013-04-03 23:18:49 +020044 struct audioformat *fp, *n;
Daniel Macke8e8bab2011-09-12 18:54:12 +020045
46 if (!subs->num_formats)
47 return; /* not initialized */
Takashi Iwaic1ae5e72019-07-27 10:55:49 +020048 list_for_each_entry_safe(fp, n, &subs->fmt_list, list)
49 audioformat_free(fp);
Daniel Macke8e8bab2011-09-12 18:54:12 +020050 kfree(subs->rate_list.list);
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +010051 kfree(subs->str_pd);
Shuah Khan66354f12019-04-01 20:40:22 -040052 snd_media_stream_delete(subs);
Daniel Macke8e8bab2011-09-12 18:54:12 +020053}
54
55
56/*
57 * free a usb stream instance
58 */
59static 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
67static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
68{
69 struct snd_usb_stream *stream = pcm->private_data;
Hemant Kumar3f605462016-03-07 14:46:31 -080070 struct snd_usb_audio *chip;
Daniel Macke8e8bab2011-09-12 18:54:12 +020071 if (stream) {
Hemant Kumar3f605462016-03-07 14:46:31 -080072 mutex_lock(&stream->chip->dev_lock);
73 chip = stream->chip;
Daniel Macke8e8bab2011-09-12 18:54:12 +020074 stream->pcm = NULL;
75 snd_usb_audio_stream_free(stream);
Hemant Kumar3f605462016-03-07 14:46:31 -080076 mutex_unlock(&chip->dev_lock);
Daniel Macke8e8bab2011-09-12 18:54:12 +020077 }
78}
79
Daniel Mackedcd3632012-04-12 13:51:12 +020080/*
81 * initialize the substream instance.
82 */
83
84static void snd_usb_init_substream(struct snd_usb_stream *as,
85 int stream,
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +010086 struct audioformat *fp,
87 struct snd_usb_power_domain *pd)
Daniel Mackedcd3632012-04-12 13:51:12 +020088{
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 Wanderlofe0570442015-10-19 08:52:53 +020098 subs->tx_length_quirk = as->chip->tx_length_quirk;
Takashi Iwai978520b2012-10-12 15:12:55 +020099 subs->speed = snd_usb_get_speed(subs->dev);
Calvin Owens1539d4f2013-04-12 22:33:59 -0500100 subs->pkt_offset_adj = 0;
Hector Martin1b7ecc22020-08-10 17:24:00 +0900101 subs->stream_offset_adj = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +0200102
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 Iwai8260ef02012-06-08 09:01:37 +0200109 subs->ep_num = fp->endpoint;
Takashi Iwai04324cc2012-11-26 16:24:02 +0100110 if (fp->channels > subs->channels_max)
111 subs->channels_max = fp->channels;
Takashi Iwaif274baa2018-05-27 13:01:17 +0200112
Jorge Sanjuana0a49592018-07-31 13:28:45 +0100113 if (pd) {
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +0100114 subs->str_pd = pd;
Jorge Sanjuana0a49592018-07-31 13:28:45 +0100115 /* Initialize Power Domain to idle status D1 */
116 snd_usb_power_domain_set(subs->stream->chip, pd,
117 UAC3_PD_STATE_D1);
118 }
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +0100119
Takashi Iwaif274baa2018-05-27 13:01:17 +0200120 snd_usb_preallocate_buffer(subs);
Takashi Iwai04324cc2012-11-26 16:24:02 +0100121}
122
123/* kctl callbacks for usb-audio channel maps */
124static 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 */
138static bool have_dup_chmap(struct snd_usb_substream *subs,
139 struct audioformat *fp)
140{
Geliang Tangf67d71a2015-12-21 23:55:39 +0800141 struct audioformat *prev = fp;
Takashi Iwai04324cc2012-11-26 16:24:02 +0100142
Geliang Tangf67d71a2015-12-21 23:55:39 +0800143 list_for_each_entry_continue_reverse(prev, &subs->fmt_list, list) {
Takashi Iwai04324cc2012-11-26 16:24:02 +0100144 if (prev->chmap &&
145 !memcmp(prev->chmap, fp->chmap, sizeof(*fp->chmap)))
146 return true;
147 }
148 return false;
149}
150
151static 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
194static 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 Iwaif1e6ab02020-12-11 14:00:48 +0100200 int i = 0;
Takashi Iwai04324cc2012-11-26 16:24:02 +0100201
Takashi Iwai04324cc2012-11-26 16:24:02 +0100202 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 Iwaif1e6ab02020-12-11 14:00:48 +0100208 for (; i < subs->channels_max; i++)
209 ucontrol->value.integer.value[i] = 0;
Takashi Iwai04324cc2012-11-26 16:24:02 +0100210 return 0;
211}
212
213/* create a chmap kctl assigned to the given USB substream */
214static 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 */
244static struct snd_pcm_chmap_elem *convert_chmap(int channels, unsigned int bits,
245 int protocol)
246{
Takashi Iwaia01df922020-01-05 15:47:26 +0100247 static const unsigned int uac1_maps[] = {
Takashi Iwai04324cc2012-11-26 16:24:02 +0100248 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 Iwaia01df922020-01-05 15:47:26 +0100262 static const unsigned int uac2_maps[] = {
Takashi Iwai04324cc2012-11-26 16:24:02 +0100263 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 Hannula71373fd2013-11-10 21:24:05 +0200288 SNDRV_CHMAP_RLC, /* back left of center */
289 SNDRV_CHMAP_RRC, /* back right of center */
Takashi Iwai04324cc2012-11-26 16:24:02 +0100290 0 /* terminator */
291 };
292 struct snd_pcm_chmap_elem *chmap;
293 const unsigned int *maps;
294 int c;
295
Takashi Iwai04324cc2012-11-26 16:24:02 +0100296 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 Henningsson0dca01c2013-11-05 04:41:06 +0100306
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 Iwai04324cc2012-11-26 16:24:02 +0100319 }
320
321 for (; c < channels; c++)
322 chmap->map[c] = SNDRV_CHMAP_UNKNOWN;
323
324 return chmap;
Daniel Mackedcd3632012-04-12 13:51:12 +0200325}
Daniel Macke8e8bab2011-09-12 18:54:12 +0200326
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200327/* UAC3 device stores channels information in Cluster Descriptors */
328static struct
329snd_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 Drake8e0428a2018-04-24 18:24:43 +0100364 switch (is->bChRelationship) {
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200365 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 Macke8e8bab2011-09-12 18:54:12 +0200474/*
475 * add this endpoint to the chip instance.
476 * if a stream with the same endpoint already exists, append to it.
Vladis Dronov836b34a2016-03-31 12:05:43 -0400477 * 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 Macke8e8bab2011-09-12 18:54:12 +0200480 */
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +0100481static 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 Macke8e8bab2011-09-12 18:54:12 +0200486{
Daniel Macke8e8bab2011-09-12 18:54:12 +0200487 struct snd_usb_stream *as;
488 struct snd_usb_substream *subs;
489 struct snd_pcm *pcm;
490 int err;
491
Eldad Zack88766f02013-04-03 23:18:49 +0200492 list_for_each_entry(as, &chip->pcm_list, list) {
Daniel Macke8e8bab2011-09-12 18:54:12 +0200493 if (as->fmt_type != fp->fmt_type)
494 continue;
495 subs = &as->substream[stream];
Takashi Iwai8260ef02012-06-08 09:01:37 +0200496 if (subs->ep_num == fp->endpoint) {
Daniel Macke8e8bab2011-09-12 18:54:12 +0200497 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 Zack88766f02013-04-03 23:18:49 +0200504 list_for_each_entry(as, &chip->pcm_list, list) {
Daniel Macke8e8bab2011-09-12 18:54:12 +0200505 if (as->fmt_type != fp->fmt_type)
506 continue;
507 subs = &as->substream[stream];
Takashi Iwai8260ef02012-06-08 09:01:37 +0200508 if (subs->ep_num)
Daniel Macke8e8bab2011-09-12 18:54:12 +0200509 continue;
Takashi Iwaia4aad562020-03-25 11:33:21 +0100510 if (snd_device_get_state(chip->card, as->pcm) !=
511 SNDRV_DEV_BUILD)
512 chip->need_delayed_register = true;
Daniel Macke8e8bab2011-09-12 18:54:12 +0200513 err = snd_pcm_new_stream(as->pcm, stream, 1);
514 if (err < 0)
515 return err;
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +0100516 snd_usb_init_substream(as, stream, fp, pd);
Takashi Iwai04324cc2012-11-26 16:24:02 +0100517 return add_chmap(as->pcm, stream, subs);
Daniel Macke8e8bab2011-09-12 18:54:12 +0200518 }
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 Sanjuan7edf3b52018-07-31 13:28:43 +0100544 snd_usb_init_substream(as, stream, fp, pd);
Daniel Macke8e8bab2011-09-12 18:54:12 +0200545
Johan Rastén5ee20bc2015-09-06 18:16:13 +0200546 /*
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 Macke8e8bab2011-09-12 18:54:12 +0200555 chip->pcm_devs++;
556
557 snd_usb_proc_pcm_format_add(as);
558
Takashi Iwai04324cc2012-11-26 16:24:02 +0100559 return add_chmap(pcm, stream, &as->substream[stream]);
Daniel Macke8e8bab2011-09-12 18:54:12 +0200560}
561
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +0100562int 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
569static 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 Macke8e8bab2011-09-12 18:54:12 +0200577static 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 Mackebfc5942013-04-24 19:38:42 +0200593 /*
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 Macke8e8bab2011-09-12 18:54:12 +0200601 if (!csep || csep->bLength < 7 ||
Takashi Iwai3e96d722019-01-02 17:12:21 +0100602 csep->bDescriptorSubtype != UAC_EP_GENERAL)
603 goto error;
Daniel Macke8e8bab2011-09-12 18:54:12 +0200604
605 if (protocol == UAC_VERSION_1) {
606 attributes = csep->bmAttributes;
Jorge Sanjuanc99f0802018-05-11 16:25:35 +0100607 } else if (protocol == UAC_VERSION_2) {
Daniel Macke8e8bab2011-09-12 18:54:12 +0200608 struct uac2_iso_endpoint_descriptor *csep2 =
609 (struct uac2_iso_endpoint_descriptor *) csep;
610
Takashi Iwai3e96d722019-01-02 17:12:21 +0100611 if (csep2->bLength < sizeof(*csep2))
612 goto error;
Daniel Macke8e8bab2011-09-12 18:54:12 +0200613 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 Sanjuanc99f0802018-05-11 16:25:35 +0100618 } else { /* UAC_VERSION_3 */
619 struct uac3_iso_endpoint_descriptor *csep3 =
620 (struct uac3_iso_endpoint_descriptor *) csep;
621
Takashi Iwai3e96d722019-01-02 17:12:21 +0100622 if (csep3->bLength < sizeof(*csep3))
623 goto error;
Jorge Sanjuanc99f0802018-05-11 16:25:35 +0100624 /* 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 Macke8e8bab2011-09-12 18:54:12 +0200627 }
628
629 return attributes;
Takashi Iwai3e96d722019-01-02 17:12:21 +0100630
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 Macke8e8bab2011-09-12 18:54:12 +0200636}
637
Takashi Iwai04324cc2012-11-26 16:24:02 +0100638/* find an input terminal descriptor (either UAC1 or UAC2) with the given
639 * terminal id
640 */
641static void *
642snd_usb_find_input_terminal_descriptor(struct usb_host_interface *ctrl_iface,
Takashi Iwai57f87702019-08-20 17:17:09 +0200643 int terminal_id, int protocol)
Daniel Macke8e8bab2011-09-12 18:54:12 +0200644{
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 Iwai57f87702019-08-20 17:17:09 +0200650 if (!snd_usb_validate_audio_desc(term, protocol))
Takashi Iwai3e96d722019-01-02 17:12:21 +0100651 continue;
Daniel Macke8e8bab2011-09-12 18:54:12 +0200652 if (term->bTerminalID == terminal_id)
653 return term;
654 }
655
656 return NULL;
657}
658
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200659static void *
660snd_usb_find_output_terminal_descriptor(struct usb_host_interface *ctrl_iface,
Takashi Iwai57f87702019-08-20 17:17:09 +0200661 int terminal_id, int protocol)
Daniel Macke8e8bab2011-09-12 18:54:12 +0200662{
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200663 /* OK to use with both UAC2 and UAC3 */
Daniel Macke8e8bab2011-09-12 18:54:12 +0200664 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 Iwai57f87702019-08-20 17:17:09 +0200669 if (!snd_usb_validate_audio_desc(term, protocol))
670 continue;
671 if (term->bTerminalID == terminal_id)
Daniel Macke8e8bab2011-09-12 18:54:12 +0200672 return term;
673 }
674
675 return NULL;
676}
677
Ruslan Bilovol4d47fa82018-05-04 04:23:58 +0300678static struct audioformat *
679audio_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 Bilovol68faa862018-05-04 04:23:59 +0300708static struct audioformat *
709snd_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 Iwai3e96d722019-01-02 17:12:21 +0100745 as->bTerminalLink,
Takashi Iwai57f87702019-08-20 17:17:09 +0200746 protocol);
Ruslan Bilovol68faa862018-05-04 04:23:59 +0300747 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 Iwai3e96d722019-01-02 17:12:21 +0100781 as->bTerminalLink,
Takashi Iwai57f87702019-08-20 17:17:09 +0200782 protocol);
Ruslan Bilovol68faa862018-05-04 04:23:59 +0300783 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 Iwai57f87702019-08-20 17:17:09 +0200791 as->bTerminalLink,
792 protocol);
Ruslan Bilovol68faa862018-05-04 04:23:59 +0300793 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
804found_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 Iwaic1ae5e72019-07-27 10:55:49 +0200848 audioformat_free(fp);
Ruslan Bilovol68faa862018-05-04 04:23:59 +0300849 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 Bilovol4d47fa82018-05-04 04:23:58 +0300860
Ruslan Bilovoleda553f2018-05-04 04:24:00 +0300861static struct audioformat *
862snd_usb_get_audioformat_uac3(struct snd_usb_audio *chip,
863 struct usb_host_interface *alts,
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +0100864 struct snd_usb_power_domain **pd_out,
Ruslan Bilovoleda553f2018-05-04 04:24:00 +0300865 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 Bilovol17156f22018-05-04 04:24:04 +0300872 struct uac3_as_header_descriptor *as = NULL;
Ruslan Bilovoleda553f2018-05-04 04:24:00 +0300873 struct uac3_hc_descriptor_header hc_header;
874 struct snd_pcm_chmap_elem *chmap;
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +0100875 struct snd_usb_power_domain *pd;
Ruslan Bilovol17156f22018-05-04 04:24:04 +0300876 unsigned char badd_profile;
877 u64 badd_formats = 0;
Ruslan Bilovoleda553f2018-05-04 04:24:00 +0300878 unsigned int num_channels;
879 struct audioformat *fp;
880 u16 cluster_id, wLength;
881 int clock = 0;
882 int err;
883
Ruslan Bilovol17156f22018-05-04 04:24:04 +0300884 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 Bilovoleda553f2018-05-04 04:24:00 +0300934 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 Iwai3e96d722019-01-02 17:12:21 +01001016 as->bTerminalLink,
Takashi Iwai57f87702019-08-20 17:17:09 +02001017 UAC_VERSION_3);
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001018 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 Iwai57f87702019-08-20 17:17:09 +02001024 as->bTerminalLink,
1025 UAC_VERSION_3);
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001026 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 Bilovol6cd17ea2018-05-18 01:08:59 +03001033 kfree(chmap);
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001034 return NULL;
1035
1036found_clock:
1037 fp = audio_format_alloc_init(chip, alts, UAC_VERSION_3, iface_no,
1038 altset_idx, altno, num_channels, clock);
Ruslan Bilovol6cd17ea2018-05-18 01:08:59 +03001039 if (!fp) {
1040 kfree(chmap);
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001041 return ERR_PTR(-ENOMEM);
Ruslan Bilovol6cd17ea2018-05-18 01:08:59 +03001042 }
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001043
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001044 fp->chmap = chmap;
1045
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001046 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 Yongjun11175552018-08-02 04:31:02 +00001057 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +01001058 if (!pd) {
Takashi Iwaic1ae5e72019-07-27 10:55:49 +02001059 audioformat_free(fp);
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +01001060 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 Bilovol17156f22018-05-04 04:24:04 +03001067 } else {
1068 fp->attributes = parse_uac_endpoint_attributes(chip, alts,
1069 UAC_VERSION_3,
1070 iface_no);
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +01001071
1072 pd = snd_usb_find_power_domain(chip->ctrl_intf,
1073 as->bTerminalLink);
1074
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001075 /* ok, let's parse further... */
1076 if (snd_usb_parse_audio_format_v3(chip, fp, as, stream) < 0) {
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +01001077 kfree(pd);
Takashi Iwaic1ae5e72019-07-27 10:55:49 +02001078 audioformat_free(fp);
Ruslan Bilovol17156f22018-05-04 04:24:04 +03001079 return NULL;
1080 }
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001081 }
1082
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +01001083 if (pd)
1084 *pd_out = pd;
1085
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001086 return fp;
1087}
1088
Alexander Tsoyf7f53012017-08-11 02:36:14 +03001089static int __snd_usb_parse_audio_interface(struct snd_usb_audio *chip,
1090 int iface_no,
1091 bool *has_non_pcm, bool non_pcm)
Daniel Macke8e8bab2011-09-12 18:54:12 +02001092{
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 Macke8e8bab2011-09-12 18:54:12 +02001098 struct audioformat *fp = NULL;
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +01001099 struct snd_usb_power_domain *pd = NULL;
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001100 int num, protocol;
Daniel Macke8e8bab2011-09-12 18:54:12 +02001101
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 Ladischaafe77c2013-03-31 23:43:12 +02001121 if (((altsd->bInterfaceClass != USB_CLASS_AUDIO ||
1122 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING &&
1123 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC)) &&
Daniel Macke8e8bab2011-09-12 18:54:12 +02001124 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
Daniel Macke8e8bab2011-09-12 18:54:12 +02001125 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 Ladischaafe77c2013-03-31 23:43:12 +02001140 /*
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 Macke8e8bab2011-09-12 18:54:12 +02001149 switch (protocol) {
1150 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001151 dev_dbg(&dev->dev, "%u:%d: unknown interface protocol %#02x, assuming v1\n",
1152 iface_no, altno, protocol);
Daniel Macke8e8bab2011-09-12 18:54:12 +02001153 protocol = UAC_VERSION_1;
Gustavo A. R. Silvac0dbbda2020-07-08 15:32:36 -05001154 fallthrough;
Ruslan Bilovol68faa862018-05-04 04:23:59 +03001155 case UAC_VERSION_1:
Ruslan Bilovol68faa862018-05-04 04:23:59 +03001156 case UAC_VERSION_2: {
1157 int bm_quirk = 0;
Daniel Macke8e8bab2011-09-12 18:54:12 +02001158
Ruslan Bilovol68faa862018-05-04 04:23:59 +03001159 /*
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 Macke8e8bab2011-09-12 18:54:12 +02001174
Ruslan Bilovol68faa862018-05-04 04:23:59 +03001175 fp = snd_usb_get_audioformat_uac12(chip, alts, protocol,
1176 iface_no, i, altno,
1177 stream, bm_quirk);
Daniel Macke8e8bab2011-09-12 18:54:12 +02001178 break;
1179 }
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001180 case UAC_VERSION_3:
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +01001181 fp = snd_usb_get_audioformat_uac3(chip, alts, &pd,
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001182 iface_no, i, altno, stream);
1183 break;
Daniel Macke8e8bab2011-09-12 18:54:12 +02001184 }
1185
Markus Elfring9ecb2402017-08-11 18:38:25 +02001186 if (!fp)
Ruslan Bilovol68faa862018-05-04 04:23:59 +03001187 continue;
Ruslan Bilovoleda553f2018-05-04 04:24:00 +03001188 else if (IS_ERR(fp))
1189 return PTR_ERR(fp);
Daniel Macke8e8bab2011-09-12 18:54:12 +02001190
Alexander Tsoyf7f53012017-08-11 02:36:14 +03001191 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 Iwai0ba41d92014-02-26 13:02:17 +01001201 dev_dbg(&dev->dev, "%u:%d: add audio endpoint %#x\n", iface_no, altno, fp->endpoint);
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +01001202 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 Macke8e8bab2011-09-12 18:54:12 +02001207 if (err < 0) {
Takashi Iwaic1ae5e72019-07-27 10:55:49 +02001208 audioformat_free(fp);
Jorge Sanjuan7edf3b52018-07-31 13:28:43 +01001209 kfree(pd);
Daniel Macke8e8bab2011-09-12 18:54:12 +02001210 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 Tsoyf7f53012017-08-11 02:36:14 +03001220int 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