GNU Linux-libre 5.4.200-gnu1
[releases.git] / sound / usb / format.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  */
4
5 #include <linux/init.h>
6 #include <linux/slab.h>
7 #include <linux/usb.h>
8 #include <linux/usb/audio.h>
9 #include <linux/usb/audio-v2.h>
10 #include <linux/usb/audio-v3.h>
11
12 #include <sound/core.h>
13 #include <sound/pcm.h>
14
15 #include "usbaudio.h"
16 #include "card.h"
17 #include "quirks.h"
18 #include "helper.h"
19 #include "debug.h"
20 #include "clock.h"
21 #include "format.h"
22
23 /*
24  * parse the audio format type I descriptor
25  * and returns the corresponding pcm format
26  *
27  * @dev: usb device
28  * @fp: audioformat record
29  * @format: the format tag (wFormatTag)
30  * @fmt: the format type descriptor (v1/v2) or AudioStreaming descriptor (v3)
31  */
32 static u64 parse_audio_format_i_type(struct snd_usb_audio *chip,
33                                      struct audioformat *fp,
34                                      u64 format, void *_fmt)
35 {
36         int sample_width, sample_bytes;
37         u64 pcm_formats = 0;
38
39         switch (fp->protocol) {
40         case UAC_VERSION_1:
41         default: {
42                 struct uac_format_type_i_discrete_descriptor *fmt = _fmt;
43                 if (format >= 64)
44                         return 0; /* invalid format */
45                 sample_width = fmt->bBitResolution;
46                 sample_bytes = fmt->bSubframeSize;
47                 format = 1ULL << format;
48                 break;
49         }
50
51         case UAC_VERSION_2: {
52                 struct uac_format_type_i_ext_descriptor *fmt = _fmt;
53                 sample_width = fmt->bBitResolution;
54                 sample_bytes = fmt->bSubslotSize;
55
56                 if (format & UAC2_FORMAT_TYPE_I_RAW_DATA) {
57                         pcm_formats |= SNDRV_PCM_FMTBIT_SPECIAL;
58                         /* flag potentially raw DSD capable altsettings */
59                         fp->dsd_raw = true;
60                 }
61
62                 format <<= 1;
63                 break;
64         }
65         case UAC_VERSION_3: {
66                 struct uac3_as_header_descriptor *as = _fmt;
67
68                 sample_width = as->bBitResolution;
69                 sample_bytes = as->bSubslotSize;
70
71                 if (format & UAC3_FORMAT_TYPE_I_RAW_DATA)
72                         pcm_formats |= SNDRV_PCM_FMTBIT_SPECIAL;
73
74                 format <<= 1;
75                 break;
76         }
77         }
78
79         fp->fmt_bits = sample_width;
80
81         if ((pcm_formats == 0) &&
82             (format == 0 || format == (1 << UAC_FORMAT_TYPE_I_UNDEFINED))) {
83                 /* some devices don't define this correctly... */
84                 usb_audio_info(chip, "%u:%d : format type 0 is detected, processed as PCM\n",
85                         fp->iface, fp->altsetting);
86                 format = 1 << UAC_FORMAT_TYPE_I_PCM;
87         }
88         if (format & (1 << UAC_FORMAT_TYPE_I_PCM)) {
89                 if (((chip->usb_id == USB_ID(0x0582, 0x0016)) ||
90                      /* Edirol SD-90 */
91                      (chip->usb_id == USB_ID(0x0582, 0x000c))) &&
92                      /* Roland SC-D70 */
93                     sample_width == 24 && sample_bytes == 2)
94                         sample_bytes = 3;
95                 else if (sample_width > sample_bytes * 8) {
96                         usb_audio_info(chip, "%u:%d : sample bitwidth %d in over sample bytes %d\n",
97                                  fp->iface, fp->altsetting,
98                                  sample_width, sample_bytes);
99                 }
100                 /* check the format byte size */
101                 switch (sample_bytes) {
102                 case 1:
103                         pcm_formats |= SNDRV_PCM_FMTBIT_S8;
104                         break;
105                 case 2:
106                         if (snd_usb_is_big_endian_format(chip, fp))
107                                 pcm_formats |= SNDRV_PCM_FMTBIT_S16_BE; /* grrr, big endian!! */
108                         else
109                                 pcm_formats |= SNDRV_PCM_FMTBIT_S16_LE;
110                         break;
111                 case 3:
112                         if (snd_usb_is_big_endian_format(chip, fp))
113                                 pcm_formats |= SNDRV_PCM_FMTBIT_S24_3BE; /* grrr, big endian!! */
114                         else
115                                 pcm_formats |= SNDRV_PCM_FMTBIT_S24_3LE;
116                         break;
117                 case 4:
118                         pcm_formats |= SNDRV_PCM_FMTBIT_S32_LE;
119                         break;
120                 default:
121                         usb_audio_info(chip,
122                                  "%u:%d : unsupported sample bitwidth %d in %d bytes\n",
123                                  fp->iface, fp->altsetting,
124                                  sample_width, sample_bytes);
125                         break;
126                 }
127         }
128         if (format & (1 << UAC_FORMAT_TYPE_I_PCM8)) {
129                 /* Dallas DS4201 workaround: it advertises U8 format, but really
130                    supports S8. */
131                 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
132                         pcm_formats |= SNDRV_PCM_FMTBIT_S8;
133                 else
134                         pcm_formats |= SNDRV_PCM_FMTBIT_U8;
135         }
136         if (format & (1 << UAC_FORMAT_TYPE_I_IEEE_FLOAT)) {
137                 pcm_formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
138         }
139         if (format & (1 << UAC_FORMAT_TYPE_I_ALAW)) {
140                 pcm_formats |= SNDRV_PCM_FMTBIT_A_LAW;
141         }
142         if (format & (1 << UAC_FORMAT_TYPE_I_MULAW)) {
143                 pcm_formats |= SNDRV_PCM_FMTBIT_MU_LAW;
144         }
145         if (format & ~0x3f) {
146                 usb_audio_info(chip,
147                          "%u:%d : unsupported format bits %#llx\n",
148                          fp->iface, fp->altsetting, format);
149         }
150
151         pcm_formats |= snd_usb_interface_dsd_format_quirks(chip, fp, sample_bytes);
152
153         return pcm_formats;
154 }
155
156
157 /*
158  * parse the format descriptor and stores the possible sample rates
159  * on the audioformat table (audio class v1).
160  *
161  * @dev: usb device
162  * @fp: audioformat record
163  * @fmt: the format descriptor
164  * @offset: the start offset of descriptor pointing the rate type
165  *          (7 for type I and II, 8 for type II)
166  */
167 static int parse_audio_format_rates_v1(struct snd_usb_audio *chip, struct audioformat *fp,
168                                        unsigned char *fmt, int offset)
169 {
170         int nr_rates = fmt[offset];
171
172         if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
173                 usb_audio_err(chip,
174                         "%u:%d : invalid UAC_FORMAT_TYPE desc\n",
175                         fp->iface, fp->altsetting);
176                 return -EINVAL;
177         }
178
179         if (nr_rates) {
180                 /*
181                  * build the rate table and bitmap flags
182                  */
183                 int r, idx;
184
185                 fp->rate_table = kmalloc_array(nr_rates, sizeof(int),
186                                                GFP_KERNEL);
187                 if (fp->rate_table == NULL)
188                         return -ENOMEM;
189
190                 fp->nr_rates = 0;
191                 fp->rate_min = fp->rate_max = 0;
192                 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
193                         unsigned int rate = combine_triple(&fmt[idx]);
194                         if (!rate)
195                                 continue;
196                         /* C-Media CM6501 mislabels its 96 kHz altsetting */
197                         /* Terratec Aureon 7.1 USB C-Media 6206, too */
198                         /* Ozone Z90 USB C-Media, too */
199                         if (rate == 48000 && nr_rates == 1 &&
200                             (chip->usb_id == USB_ID(0x0d8c, 0x0201) ||
201                              chip->usb_id == USB_ID(0x0d8c, 0x0102) ||
202                              chip->usb_id == USB_ID(0x0d8c, 0x0078) ||
203                              chip->usb_id == USB_ID(0x0ccd, 0x00b1)) &&
204                             fp->altsetting == 5 && fp->maxpacksize == 392)
205                                 rate = 96000;
206                         /* Creative VF0420/VF0470 Live Cams report 16 kHz instead of 8kHz */
207                         if (rate == 16000 &&
208                             (chip->usb_id == USB_ID(0x041e, 0x4064) ||
209                              chip->usb_id == USB_ID(0x041e, 0x4068)))
210                                 rate = 8000;
211
212                         fp->rate_table[fp->nr_rates] = rate;
213                         if (!fp->rate_min || rate < fp->rate_min)
214                                 fp->rate_min = rate;
215                         if (!fp->rate_max || rate > fp->rate_max)
216                                 fp->rate_max = rate;
217                         fp->rates |= snd_pcm_rate_to_rate_bit(rate);
218                         fp->nr_rates++;
219                 }
220                 if (!fp->nr_rates) {
221                         hwc_debug("All rates were zero. Skipping format!\n");
222                         return -EINVAL;
223                 }
224         } else {
225                 /* continuous rates */
226                 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
227                 fp->rate_min = combine_triple(&fmt[offset + 1]);
228                 fp->rate_max = combine_triple(&fmt[offset + 4]);
229         }
230         return 0;
231 }
232
233 /*
234  * Many Focusrite devices supports a limited set of sampling rates per
235  * altsetting. Maximum rate is exposed in the last 4 bytes of Format Type
236  * descriptor which has a non-standard bLength = 10.
237  */
238 static bool focusrite_valid_sample_rate(struct snd_usb_audio *chip,
239                                         struct audioformat *fp,
240                                         unsigned int rate)
241 {
242         struct usb_interface *iface;
243         struct usb_host_interface *alts;
244         unsigned char *fmt;
245         unsigned int max_rate;
246
247         iface = usb_ifnum_to_if(chip->dev, fp->iface);
248         if (!iface)
249                 return true;
250
251         alts = &iface->altsetting[fp->altset_idx];
252         fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen,
253                                       NULL, UAC_FORMAT_TYPE);
254         if (!fmt)
255                 return true;
256
257         if (fmt[0] == 10) { /* bLength */
258                 max_rate = combine_quad(&fmt[6]);
259
260                 /* Validate max rate */
261                 if (max_rate != 48000 &&
262                     max_rate != 96000 &&
263                     max_rate != 192000 &&
264                     max_rate != 384000) {
265
266                         usb_audio_info(chip,
267                                 "%u:%d : unexpected max rate: %u\n",
268                                 fp->iface, fp->altsetting, max_rate);
269
270                         return true;
271                 }
272
273                 return rate <= max_rate;
274         }
275
276         return true;
277 }
278
279 /*
280  * Helper function to walk the array of sample rate triplets reported by
281  * the device. The problem is that we need to parse whole array first to
282  * get to know how many sample rates we have to expect.
283  * Then fp->rate_table can be allocated and filled.
284  */
285 static int parse_uac2_sample_rate_range(struct snd_usb_audio *chip,
286                                         struct audioformat *fp, int nr_triplets,
287                                         const unsigned char *data)
288 {
289         int i, nr_rates = 0;
290
291         fp->rates = fp->rate_min = fp->rate_max = 0;
292
293         for (i = 0; i < nr_triplets; i++) {
294                 int min = combine_quad(&data[2 + 12 * i]);
295                 int max = combine_quad(&data[6 + 12 * i]);
296                 int res = combine_quad(&data[10 + 12 * i]);
297                 unsigned int rate;
298
299                 if ((max < 0) || (min < 0) || (res < 0) || (max < min))
300                         continue;
301
302                 /*
303                  * for ranges with res == 1, we announce a continuous sample
304                  * rate range, and this function should return 0 for no further
305                  * parsing.
306                  */
307                 if (res == 1) {
308                         fp->rate_min = min;
309                         fp->rate_max = max;
310                         fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
311                         return 0;
312                 }
313
314                 for (rate = min; rate <= max; rate += res) {
315                         /* Filter out invalid rates on Focusrite devices */
316                         if (USB_ID_VENDOR(chip->usb_id) == 0x1235 &&
317                             !focusrite_valid_sample_rate(chip, fp, rate))
318                                 goto skip_rate;
319
320                         if (fp->rate_table)
321                                 fp->rate_table[nr_rates] = rate;
322                         if (!fp->rate_min || rate < fp->rate_min)
323                                 fp->rate_min = rate;
324                         if (!fp->rate_max || rate > fp->rate_max)
325                                 fp->rate_max = rate;
326                         fp->rates |= snd_pcm_rate_to_rate_bit(rate);
327
328                         nr_rates++;
329                         if (nr_rates >= MAX_NR_RATES) {
330                                 usb_audio_err(chip, "invalid uac2 rates\n");
331                                 break;
332                         }
333
334 skip_rate:
335                         /* avoid endless loop */
336                         if (res == 0)
337                                 break;
338                 }
339         }
340
341         return nr_rates;
342 }
343
344 /* Line6 Helix series don't support the UAC2_CS_RANGE usb function
345  * call. Return a static table of known clock rates.
346  */
347 static int line6_parse_audio_format_rates_quirk(struct snd_usb_audio *chip,
348                                                 struct audioformat *fp)
349 {
350         switch (chip->usb_id) {
351         case USB_ID(0x0E41, 0x4241): /* Line6 Helix */
352         case USB_ID(0x0E41, 0x4242): /* Line6 Helix Rack */
353         case USB_ID(0x0E41, 0x4244): /* Line6 Helix LT */
354         case USB_ID(0x0E41, 0x4246): /* Line6 HX-Stomp */
355         case USB_ID(0x0E41, 0x4248): /* Line6 Helix >= fw 2.82 */
356         case USB_ID(0x0E41, 0x4249): /* Line6 Helix Rack >= fw 2.82 */
357         case USB_ID(0x0E41, 0x424a): /* Line6 Helix LT >= fw 2.82 */
358                 /* supported rates: 48Khz */
359                 kfree(fp->rate_table);
360                 fp->rate_table = kmalloc(sizeof(int), GFP_KERNEL);
361                 if (!fp->rate_table)
362                         return -ENOMEM;
363                 fp->nr_rates = 1;
364                 fp->rate_min = 48000;
365                 fp->rate_max = 48000;
366                 fp->rates = SNDRV_PCM_RATE_48000;
367                 fp->rate_table[0] = 48000;
368                 return 0;
369         }
370
371         return -ENODEV;
372 }
373
374 /*
375  * parse the format descriptor and stores the possible sample rates
376  * on the audioformat table (audio class v2 and v3).
377  */
378 static int parse_audio_format_rates_v2v3(struct snd_usb_audio *chip,
379                                        struct audioformat *fp)
380 {
381         struct usb_device *dev = chip->dev;
382         unsigned char tmp[2], *data;
383         int nr_triplets, data_size, ret = 0, ret_l6;
384         int clock = snd_usb_clock_find_source(chip, fp, false);
385
386         if (clock < 0) {
387                 dev_err(&dev->dev,
388                         "%s(): unable to find clock source (clock %d)\n",
389                                 __func__, clock);
390                 goto err;
391         }
392
393         /* get the number of sample rates first by only fetching 2 bytes */
394         ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_RANGE,
395                               USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
396                               UAC2_CS_CONTROL_SAM_FREQ << 8,
397                               snd_usb_ctrl_intf(chip) | (clock << 8),
398                               tmp, sizeof(tmp));
399
400         if (ret < 0) {
401                 /* line6 helix devices don't support UAC2_CS_CONTROL_SAM_FREQ call */
402                 ret_l6 = line6_parse_audio_format_rates_quirk(chip, fp);
403                 if (ret_l6 == -ENODEV) {
404                         /* no line6 device found continue showing the error */
405                         dev_err(&dev->dev,
406                                 "%s(): unable to retrieve number of sample rates (clock %d)\n",
407                                 __func__, clock);
408                         goto err;
409                 }
410                 if (ret_l6 == 0) {
411                         dev_info(&dev->dev,
412                                 "%s(): unable to retrieve number of sample rates: set it to a predefined value (clock %d).\n",
413                                 __func__, clock);
414                         return 0;
415                 }
416                 ret = ret_l6;
417                 goto err;
418         }
419
420         nr_triplets = (tmp[1] << 8) | tmp[0];
421         data_size = 2 + 12 * nr_triplets;
422         data = kzalloc(data_size, GFP_KERNEL);
423         if (!data) {
424                 ret = -ENOMEM;
425                 goto err;
426         }
427
428         /* now get the full information */
429         ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_RANGE,
430                               USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
431                               UAC2_CS_CONTROL_SAM_FREQ << 8,
432                               snd_usb_ctrl_intf(chip) | (clock << 8),
433                               data, data_size);
434
435         if (ret < 0) {
436                 dev_err(&dev->dev,
437                         "%s(): unable to retrieve sample rate range (clock %d)\n",
438                                 __func__, clock);
439                 ret = -EINVAL;
440                 goto err_free;
441         }
442
443         /* Call the triplet parser, and make sure fp->rate_table is NULL.
444          * We just use the return value to know how many sample rates we
445          * will have to deal with. */
446         kfree(fp->rate_table);
447         fp->rate_table = NULL;
448         fp->nr_rates = parse_uac2_sample_rate_range(chip, fp, nr_triplets, data);
449
450         if (fp->nr_rates == 0) {
451                 /* SNDRV_PCM_RATE_CONTINUOUS */
452                 ret = 0;
453                 goto err_free;
454         }
455
456         fp->rate_table = kmalloc_array(fp->nr_rates, sizeof(int), GFP_KERNEL);
457         if (!fp->rate_table) {
458                 ret = -ENOMEM;
459                 goto err_free;
460         }
461
462         /* Call the triplet parser again, but this time, fp->rate_table is
463          * allocated, so the rates will be stored */
464         parse_uac2_sample_rate_range(chip, fp, nr_triplets, data);
465
466 err_free:
467         kfree(data);
468 err:
469         return ret;
470 }
471
472 /*
473  * parse the format type I and III descriptors
474  */
475 static int parse_audio_format_i(struct snd_usb_audio *chip,
476                                 struct audioformat *fp, u64 format,
477                                 void *_fmt)
478 {
479         snd_pcm_format_t pcm_format;
480         unsigned int fmt_type;
481         int ret;
482
483         switch (fp->protocol) {
484         default:
485         case UAC_VERSION_1:
486         case UAC_VERSION_2: {
487                 struct uac_format_type_i_continuous_descriptor *fmt = _fmt;
488
489                 fmt_type = fmt->bFormatType;
490                 break;
491         }
492         case UAC_VERSION_3: {
493                 /* fp->fmt_type is already set in this case */
494                 fmt_type = fp->fmt_type;
495                 break;
496         }
497         }
498
499         if (fmt_type == UAC_FORMAT_TYPE_III) {
500                 /* FIXME: the format type is really IECxxx
501                  *        but we give normal PCM format to get the existing
502                  *        apps working...
503                  */
504                 switch (chip->usb_id) {
505
506                 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
507                         if (chip->setup == 0x00 && 
508                             fp->altsetting == 6)
509                                 pcm_format = SNDRV_PCM_FORMAT_S16_BE;
510                         else
511                                 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
512                         break;
513                 default:
514                         pcm_format = SNDRV_PCM_FORMAT_S16_LE;
515                 }
516                 fp->formats = pcm_format_to_bits(pcm_format);
517         } else {
518                 fp->formats = parse_audio_format_i_type(chip, fp, format, _fmt);
519                 if (!fp->formats)
520                         return -EINVAL;
521         }
522
523         /* gather possible sample rates */
524         /* audio class v1 reports possible sample rates as part of the
525          * proprietary class specific descriptor.
526          * audio class v2 uses class specific EP0 range requests for that.
527          */
528         switch (fp->protocol) {
529         default:
530         case UAC_VERSION_1: {
531                 struct uac_format_type_i_continuous_descriptor *fmt = _fmt;
532
533                 fp->channels = fmt->bNrChannels;
534                 ret = parse_audio_format_rates_v1(chip, fp, (unsigned char *) fmt, 7);
535                 break;
536         }
537         case UAC_VERSION_2:
538         case UAC_VERSION_3: {
539                 /* fp->channels is already set in this case */
540                 ret = parse_audio_format_rates_v2v3(chip, fp);
541                 break;
542         }
543         }
544
545         if (fp->channels < 1) {
546                 usb_audio_err(chip,
547                         "%u:%d : invalid channels %d\n",
548                         fp->iface, fp->altsetting, fp->channels);
549                 return -EINVAL;
550         }
551
552         return ret;
553 }
554
555 /*
556  * parse the format type II descriptor
557  */
558 static int parse_audio_format_ii(struct snd_usb_audio *chip,
559                                  struct audioformat *fp,
560                                  u64 format, void *_fmt)
561 {
562         int brate, framesize, ret;
563
564         switch (format) {
565         case UAC_FORMAT_TYPE_II_AC3:
566                 /* FIXME: there is no AC3 format defined yet */
567                 // fp->formats = SNDRV_PCM_FMTBIT_AC3;
568                 fp->formats = SNDRV_PCM_FMTBIT_U8; /* temporary hack to receive byte streams */
569                 break;
570         case UAC_FORMAT_TYPE_II_MPEG:
571                 fp->formats = SNDRV_PCM_FMTBIT_MPEG;
572                 break;
573         default:
574                 usb_audio_info(chip,
575                          "%u:%d : unknown format tag %#llx is detected.  processed as MPEG.\n",
576                          fp->iface, fp->altsetting, format);
577                 fp->formats = SNDRV_PCM_FMTBIT_MPEG;
578                 break;
579         }
580
581         fp->channels = 1;
582
583         switch (fp->protocol) {
584         default:
585         case UAC_VERSION_1: {
586                 struct uac_format_type_ii_discrete_descriptor *fmt = _fmt;
587                 brate = le16_to_cpu(fmt->wMaxBitRate);
588                 framesize = le16_to_cpu(fmt->wSamplesPerFrame);
589                 usb_audio_info(chip, "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
590                 fp->frame_size = framesize;
591                 ret = parse_audio_format_rates_v1(chip, fp, _fmt, 8); /* fmt[8..] sample rates */
592                 break;
593         }
594         case UAC_VERSION_2: {
595                 struct uac_format_type_ii_ext_descriptor *fmt = _fmt;
596                 brate = le16_to_cpu(fmt->wMaxBitRate);
597                 framesize = le16_to_cpu(fmt->wSamplesPerFrame);
598                 usb_audio_info(chip, "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
599                 fp->frame_size = framesize;
600                 ret = parse_audio_format_rates_v2v3(chip, fp);
601                 break;
602         }
603         }
604
605         return ret;
606 }
607
608 int snd_usb_parse_audio_format(struct snd_usb_audio *chip,
609                                struct audioformat *fp, u64 format,
610                                struct uac_format_type_i_continuous_descriptor *fmt,
611                                int stream)
612 {
613         int err;
614
615         switch (fmt->bFormatType) {
616         case UAC_FORMAT_TYPE_I:
617         case UAC_FORMAT_TYPE_III:
618                 err = parse_audio_format_i(chip, fp, format, fmt);
619                 break;
620         case UAC_FORMAT_TYPE_II:
621                 err = parse_audio_format_ii(chip, fp, format, fmt);
622                 break;
623         default:
624                 usb_audio_info(chip,
625                          "%u:%d : format type %d is not supported yet\n",
626                          fp->iface, fp->altsetting,
627                          fmt->bFormatType);
628                 return -ENOTSUPP;
629         }
630         fp->fmt_type = fmt->bFormatType;
631         if (err < 0)
632                 return err;
633 #if 1
634         /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
635         /* extigy apparently supports sample rates other than 48k
636          * but not in ordinary way.  so we enable only 48k atm.
637          */
638         if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
639             chip->usb_id == USB_ID(0x041e, 0x3020) ||
640             chip->usb_id == USB_ID(0x041e, 0x3061)) {
641                 if (fmt->bFormatType == UAC_FORMAT_TYPE_I &&
642                     fp->rates != SNDRV_PCM_RATE_48000 &&
643                     fp->rates != SNDRV_PCM_RATE_96000)
644                         return -ENOTSUPP;
645         }
646 #endif
647         return 0;
648 }
649
650 int snd_usb_parse_audio_format_v3(struct snd_usb_audio *chip,
651                                struct audioformat *fp,
652                                struct uac3_as_header_descriptor *as,
653                                int stream)
654 {
655         u64 format = le64_to_cpu(as->bmFormats);
656         int err;
657
658         /*
659          * Type I format bits are D0..D6
660          * This test works because type IV is not supported
661          */
662         if (format & 0x7f)
663                 fp->fmt_type = UAC_FORMAT_TYPE_I;
664         else
665                 fp->fmt_type = UAC_FORMAT_TYPE_III;
666
667         err = parse_audio_format_i(chip, fp, format, as);
668         if (err < 0)
669                 return err;
670
671         return 0;
672 }