blob: 95d5d7c4f9578042b626ad97c969f702afcb4c87 [file] [log] [blame]
Daniel Macke5779992010-03-04 19:46:13 +01001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15 *
16 */
17
18#include <linux/init.h>
Stephen Rothwell36db0452010-03-29 16:02:50 +110019#include <linux/slab.h>
Daniel Macke5779992010-03-04 19:46:13 +010020#include <linux/usb.h>
21#include <linux/usb/audio.h>
Daniel Mack7e847892010-03-11 21:13:20 +010022#include <linux/usb/audio-v2.h>
Daniel Macke5779992010-03-04 19:46:13 +010023
24#include <sound/core.h>
25#include <sound/pcm.h>
26
27#include "usbaudio.h"
28#include "card.h"
29#include "quirks.h"
30#include "helper.h"
31#include "debug.h"
Daniel Mack79f920f2010-05-31 14:51:31 +020032#include "clock.h"
Daniel Mackee95cb62011-05-18 11:28:40 +020033#include "format.h"
Daniel Macke5779992010-03-04 19:46:13 +010034
35/*
36 * parse the audio format type I descriptor
37 * and returns the corresponding pcm format
38 *
39 * @dev: usb device
40 * @fp: audioformat record
41 * @format: the format tag (wFormatTag)
42 * @fmt: the format type descriptor
43 */
Clemens Ladisch29088fe2010-03-04 19:46:16 +010044static u64 parse_audio_format_i_type(struct snd_usb_audio *chip,
Daniel Macke5779992010-03-04 19:46:13 +010045 struct audioformat *fp,
46 int format, void *_fmt,
47 int protocol)
48{
Daniel Macke5779992010-03-04 19:46:13 +010049 int sample_width, sample_bytes;
Clemens Ladisch29088fe2010-03-04 19:46:16 +010050 u64 pcm_formats;
Daniel Macke5779992010-03-04 19:46:13 +010051
52 switch (protocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +020053 case UAC_VERSION_1:
54 default: {
Daniel Macke5779992010-03-04 19:46:13 +010055 struct uac_format_type_i_discrete_descriptor *fmt = _fmt;
56 sample_width = fmt->bBitResolution;
57 sample_bytes = fmt->bSubframeSize;
Clemens Ladisch29088fe2010-03-04 19:46:16 +010058 format = 1 << format;
Daniel Macke5779992010-03-04 19:46:13 +010059 break;
60 }
61
62 case UAC_VERSION_2: {
63 struct uac_format_type_i_ext_descriptor *fmt = _fmt;
64 sample_width = fmt->bBitResolution;
65 sample_bytes = fmt->bSubslotSize;
Clemens Ladisch29088fe2010-03-04 19:46:16 +010066 format <<= 1;
Daniel Macke5779992010-03-04 19:46:13 +010067 break;
68 }
Daniel Macke5779992010-03-04 19:46:13 +010069 }
70
Clemens Ladisch29088fe2010-03-04 19:46:16 +010071 pcm_formats = 0;
Daniel Macke5779992010-03-04 19:46:13 +010072
Clemens Ladisch29088fe2010-03-04 19:46:16 +010073 if (format == 0 || format == (1 << UAC_FORMAT_TYPE_I_UNDEFINED)) {
74 /* some devices don't define this correctly... */
Daniel Macke5779992010-03-04 19:46:13 +010075 snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
76 chip->dev->devnum, fp->iface, fp->altsetting);
Clemens Ladisch29088fe2010-03-04 19:46:16 +010077 format = 1 << UAC_FORMAT_TYPE_I_PCM;
78 }
79 if (format & (1 << UAC_FORMAT_TYPE_I_PCM)) {
Clemens Ladisch061b8692011-01-10 16:30:54 +010080 if (chip->usb_id == USB_ID(0x0582, 0x0016) /* Edirol SD-90 */ &&
81 sample_width == 24 && sample_bytes == 2)
82 sample_bytes = 3;
83 else if (sample_width > sample_bytes * 8) {
Daniel Macke5779992010-03-04 19:46:13 +010084 snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
85 chip->dev->devnum, fp->iface, fp->altsetting,
86 sample_width, sample_bytes);
87 }
88 /* check the format byte size */
89 switch (sample_bytes) {
90 case 1:
Clemens Ladisch29088fe2010-03-04 19:46:16 +010091 pcm_formats |= SNDRV_PCM_FMTBIT_S8;
Daniel Macke5779992010-03-04 19:46:13 +010092 break;
93 case 2:
94 if (snd_usb_is_big_endian_format(chip, fp))
Clemens Ladisch29088fe2010-03-04 19:46:16 +010095 pcm_formats |= SNDRV_PCM_FMTBIT_S16_BE; /* grrr, big endian!! */
Daniel Macke5779992010-03-04 19:46:13 +010096 else
Clemens Ladisch29088fe2010-03-04 19:46:16 +010097 pcm_formats |= SNDRV_PCM_FMTBIT_S16_LE;
Daniel Macke5779992010-03-04 19:46:13 +010098 break;
99 case 3:
100 if (snd_usb_is_big_endian_format(chip, fp))
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100101 pcm_formats |= SNDRV_PCM_FMTBIT_S24_3BE; /* grrr, big endian!! */
Daniel Macke5779992010-03-04 19:46:13 +0100102 else
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100103 pcm_formats |= SNDRV_PCM_FMTBIT_S24_3LE;
Daniel Macke5779992010-03-04 19:46:13 +0100104 break;
105 case 4:
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100106 pcm_formats |= SNDRV_PCM_FMTBIT_S32_LE;
Daniel Macke5779992010-03-04 19:46:13 +0100107 break;
108 default:
109 snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
110 chip->dev->devnum, fp->iface, fp->altsetting,
111 sample_width, sample_bytes);
112 break;
113 }
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100114 }
115 if (format & (1 << UAC_FORMAT_TYPE_I_PCM8)) {
Daniel Macke5779992010-03-04 19:46:13 +0100116 /* Dallas DS4201 workaround: it advertises U8 format, but really
117 supports S8. */
118 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100119 pcm_formats |= SNDRV_PCM_FMTBIT_S8;
120 else
121 pcm_formats |= SNDRV_PCM_FMTBIT_U8;
Daniel Macke5779992010-03-04 19:46:13 +0100122 }
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100123 if (format & (1 << UAC_FORMAT_TYPE_I_IEEE_FLOAT)) {
124 pcm_formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
125 }
126 if (format & (1 << UAC_FORMAT_TYPE_I_ALAW)) {
127 pcm_formats |= SNDRV_PCM_FMTBIT_A_LAW;
128 }
129 if (format & (1 << UAC_FORMAT_TYPE_I_MULAW)) {
130 pcm_formats |= SNDRV_PCM_FMTBIT_MU_LAW;
131 }
132 if (format & ~0x3f) {
133 snd_printk(KERN_INFO "%d:%u:%d : unsupported format bits %#x\n",
134 chip->dev->devnum, fp->iface, fp->altsetting, format);
135 }
136 return pcm_formats;
Daniel Macke5779992010-03-04 19:46:13 +0100137}
138
139
140/*
141 * parse the format descriptor and stores the possible sample rates
142 * on the audioformat table (audio class v1).
143 *
144 * @dev: usb device
145 * @fp: audioformat record
146 * @fmt: the format descriptor
147 * @offset: the start offset of descriptor pointing the rate type
148 * (7 for type I and II, 8 for type II)
149 */
150static int parse_audio_format_rates_v1(struct snd_usb_audio *chip, struct audioformat *fp,
151 unsigned char *fmt, int offset)
152{
153 int nr_rates = fmt[offset];
154
155 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
156 snd_printk(KERN_ERR "%d:%u:%d : invalid UAC_FORMAT_TYPE desc\n",
157 chip->dev->devnum, fp->iface, fp->altsetting);
158 return -1;
159 }
160
161 if (nr_rates) {
162 /*
163 * build the rate table and bitmap flags
164 */
165 int r, idx;
166
167 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
168 if (fp->rate_table == NULL) {
169 snd_printk(KERN_ERR "cannot malloc\n");
170 return -1;
171 }
172
173 fp->nr_rates = 0;
174 fp->rate_min = fp->rate_max = 0;
175 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
176 unsigned int rate = combine_triple(&fmt[idx]);
177 if (!rate)
178 continue;
179 /* C-Media CM6501 mislabels its 96 kHz altsetting */
180 if (rate == 48000 && nr_rates == 1 &&
181 (chip->usb_id == USB_ID(0x0d8c, 0x0201) ||
182 chip->usb_id == USB_ID(0x0d8c, 0x0102)) &&
183 fp->altsetting == 5 && fp->maxpacksize == 392)
184 rate = 96000;
185 /* Creative VF0470 Live Cam reports 16 kHz instead of 8kHz */
186 if (rate == 16000 && chip->usb_id == USB_ID(0x041e, 0x4068))
187 rate = 8000;
188
189 fp->rate_table[fp->nr_rates] = rate;
190 if (!fp->rate_min || rate < fp->rate_min)
191 fp->rate_min = rate;
192 if (!fp->rate_max || rate > fp->rate_max)
193 fp->rate_max = rate;
194 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
195 fp->nr_rates++;
196 }
197 if (!fp->nr_rates) {
198 hwc_debug("All rates were zero. Skipping format!\n");
199 return -1;
200 }
201 } else {
202 /* continuous rates */
203 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
204 fp->rate_min = combine_triple(&fmt[offset + 1]);
205 fp->rate_max = combine_triple(&fmt[offset + 4]);
206 }
207 return 0;
208}
209
210/*
Daniel Mack67c10362010-06-11 17:46:33 +0200211 * Helper function to walk the array of sample rate triplets reported by
212 * the device. The problem is that we need to parse whole array first to
213 * get to know how many sample rates we have to expect.
214 * Then fp->rate_table can be allocated and filled.
215 */
216static int parse_uac2_sample_rate_range(struct audioformat *fp, int nr_triplets,
217 const unsigned char *data)
218{
219 int i, nr_rates = 0;
220
221 fp->rates = fp->rate_min = fp->rate_max = 0;
222
223 for (i = 0; i < nr_triplets; i++) {
224 int min = combine_quad(&data[2 + 12 * i]);
225 int max = combine_quad(&data[6 + 12 * i]);
226 int res = combine_quad(&data[10 + 12 * i]);
227 int rate;
228
229 if ((max < 0) || (min < 0) || (res < 0) || (max < min))
230 continue;
231
232 /*
233 * for ranges with res == 1, we announce a continuous sample
234 * rate range, and this function should return 0 for no further
235 * parsing.
236 */
237 if (res == 1) {
238 fp->rate_min = min;
239 fp->rate_max = max;
240 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
241 return 0;
242 }
243
244 for (rate = min; rate <= max; rate += res) {
245 if (fp->rate_table)
246 fp->rate_table[nr_rates] = rate;
247 if (!fp->rate_min || rate < fp->rate_min)
248 fp->rate_min = rate;
249 if (!fp->rate_max || rate > fp->rate_max)
250 fp->rate_max = rate;
251 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
252
253 nr_rates++;
254
255 /* avoid endless loop */
256 if (res == 0)
257 break;
258 }
259 }
260
261 return nr_rates;
262}
263
264/*
Daniel Macke5779992010-03-04 19:46:13 +0100265 * parse the format descriptor and stores the possible sample rates
266 * on the audioformat table (audio class v2).
267 */
268static int parse_audio_format_rates_v2(struct snd_usb_audio *chip,
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200269 struct audioformat *fp)
Daniel Macke5779992010-03-04 19:46:13 +0100270{
271 struct usb_device *dev = chip->dev;
272 unsigned char tmp[2], *data;
Daniel Mack67c10362010-06-11 17:46:33 +0200273 int nr_triplets, data_size, ret = 0;
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200274 int clock = snd_usb_clock_find_source(chip, fp->clock);
Daniel Macke5779992010-03-04 19:46:13 +0100275
Daniel Mackd07140b2010-06-11 17:34:19 +0200276 if (clock < 0) {
277 snd_printk(KERN_ERR "%s(): unable to find clock source (clock %d)\n",
278 __func__, clock);
279 goto err;
280 }
281
Daniel Macke5779992010-03-04 19:46:13 +0100282 /* get the number of sample rates first by only fetching 2 bytes */
283 ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_RANGE,
284 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
Daniel Mack11bcbc42010-06-11 17:34:20 +0200285 UAC2_CS_CONTROL_SAM_FREQ << 8,
286 snd_usb_ctrl_intf(chip) | (clock << 8),
Daniel Mack45d76052010-03-11 21:13:21 +0100287 tmp, sizeof(tmp), 1000);
Daniel Macke5779992010-03-04 19:46:13 +0100288
289 if (ret < 0) {
Daniel Mack79f920f2010-05-31 14:51:31 +0200290 snd_printk(KERN_ERR "%s(): unable to retrieve number of sample rates (clock %d)\n",
291 __func__, clock);
Daniel Macke5779992010-03-04 19:46:13 +0100292 goto err;
293 }
294
Daniel Mack67c10362010-06-11 17:46:33 +0200295 nr_triplets = (tmp[1] << 8) | tmp[0];
296 data_size = 2 + 12 * nr_triplets;
Daniel Macke5779992010-03-04 19:46:13 +0100297 data = kzalloc(data_size, GFP_KERNEL);
298 if (!data) {
299 ret = -ENOMEM;
300 goto err;
301 }
302
303 /* now get the full information */
304 ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_RANGE,
Daniel Mack79f920f2010-05-31 14:51:31 +0200305 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
Daniel Mack11bcbc42010-06-11 17:34:20 +0200306 UAC2_CS_CONTROL_SAM_FREQ << 8,
307 snd_usb_ctrl_intf(chip) | (clock << 8),
Daniel Mack79f920f2010-05-31 14:51:31 +0200308 data, data_size, 1000);
Daniel Macke5779992010-03-04 19:46:13 +0100309
310 if (ret < 0) {
Daniel Mack79f920f2010-05-31 14:51:31 +0200311 snd_printk(KERN_ERR "%s(): unable to retrieve sample rate range (clock %d)\n",
312 __func__, clock);
Daniel Macke5779992010-03-04 19:46:13 +0100313 ret = -EINVAL;
314 goto err_free;
315 }
316
Daniel Mack67c10362010-06-11 17:46:33 +0200317 /* Call the triplet parser, and make sure fp->rate_table is NULL.
318 * We just use the return value to know how many sample rates we
319 * will have to deal with. */
320 kfree(fp->rate_table);
321 fp->rate_table = NULL;
322 fp->nr_rates = parse_uac2_sample_rate_range(fp, nr_triplets, data);
323
324 if (fp->nr_rates == 0) {
325 /* SNDRV_PCM_RATE_CONTINUOUS */
326 ret = 0;
327 goto err_free;
328 }
329
330 fp->rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
Daniel Macke5779992010-03-04 19:46:13 +0100331 if (!fp->rate_table) {
332 ret = -ENOMEM;
333 goto err_free;
334 }
335
Daniel Mack67c10362010-06-11 17:46:33 +0200336 /* Call the triplet parser again, but this time, fp->rate_table is
337 * allocated, so the rates will be stored */
338 parse_uac2_sample_rate_range(fp, nr_triplets, data);
Daniel Macke5779992010-03-04 19:46:13 +0100339
340err_free:
341 kfree(data);
342err:
343 return ret;
344}
345
346/*
347 * parse the format type I and III descriptors
348 */
349static int parse_audio_format_i(struct snd_usb_audio *chip,
Daniel Mack74754f92010-05-26 18:11:36 +0200350 struct audioformat *fp, int format,
351 struct uac_format_type_i_continuous_descriptor *fmt,
Daniel Macke5779992010-03-04 19:46:13 +0100352 struct usb_host_interface *iface)
353{
354 struct usb_interface_descriptor *altsd = get_iface_desc(iface);
Daniel Macke5779992010-03-04 19:46:13 +0100355 int protocol = altsd->bInterfaceProtocol;
356 int pcm_format, ret;
357
358 if (fmt->bFormatType == UAC_FORMAT_TYPE_III) {
359 /* FIXME: the format type is really IECxxx
360 * but we give normal PCM format to get the existing
361 * apps working...
362 */
363 switch (chip->usb_id) {
364
365 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
366 if (chip->setup == 0x00 &&
367 fp->altsetting == 6)
368 pcm_format = SNDRV_PCM_FORMAT_S16_BE;
369 else
370 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
371 break;
372 default:
373 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
374 }
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100375 fp->formats = 1uLL << pcm_format;
Daniel Macke5779992010-03-04 19:46:13 +0100376 } else {
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100377 fp->formats = parse_audio_format_i_type(chip, fp, format,
378 fmt, protocol);
379 if (!fp->formats)
Daniel Macke5779992010-03-04 19:46:13 +0100380 return -1;
381 }
382
Daniel Macke5779992010-03-04 19:46:13 +0100383 /* gather possible sample rates */
384 /* audio class v1 reports possible sample rates as part of the
385 * proprietary class specific descriptor.
386 * audio class v2 uses class specific EP0 range requests for that.
387 */
388 switch (protocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +0200389 default:
390 snd_printdd(KERN_WARNING "%d:%u:%d : invalid protocol version %d, assuming v1\n",
391 chip->dev->devnum, fp->iface, fp->altsetting, protocol);
392 /* fall through */
Daniel Macke5779992010-03-04 19:46:13 +0100393 case UAC_VERSION_1:
394 fp->channels = fmt->bNrChannels;
Daniel Mack74754f92010-05-26 18:11:36 +0200395 ret = parse_audio_format_rates_v1(chip, fp, (unsigned char *) fmt, 7);
Daniel Macke5779992010-03-04 19:46:13 +0100396 break;
397 case UAC_VERSION_2:
398 /* fp->channels is already set in this case */
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200399 ret = parse_audio_format_rates_v2(chip, fp);
Daniel Macke5779992010-03-04 19:46:13 +0100400 break;
401 }
402
403 if (fp->channels < 1) {
404 snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
405 chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
406 return -1;
407 }
408
409 return ret;
410}
411
412/*
413 * parse the format type II descriptor
414 */
415static int parse_audio_format_ii(struct snd_usb_audio *chip,
416 struct audioformat *fp,
417 int format, void *_fmt,
418 struct usb_host_interface *iface)
419{
420 int brate, framesize, ret;
421 struct usb_interface_descriptor *altsd = get_iface_desc(iface);
422 int protocol = altsd->bInterfaceProtocol;
423
424 switch (format) {
425 case UAC_FORMAT_TYPE_II_AC3:
426 /* FIXME: there is no AC3 format defined yet */
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100427 // fp->formats = SNDRV_PCM_FMTBIT_AC3;
428 fp->formats = SNDRV_PCM_FMTBIT_U8; /* temporary hack to receive byte streams */
Daniel Macke5779992010-03-04 19:46:13 +0100429 break;
430 case UAC_FORMAT_TYPE_II_MPEG:
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100431 fp->formats = SNDRV_PCM_FMTBIT_MPEG;
Daniel Macke5779992010-03-04 19:46:13 +0100432 break;
433 default:
434 snd_printd(KERN_INFO "%d:%u:%d : unknown format tag %#x is detected. processed as MPEG.\n",
435 chip->dev->devnum, fp->iface, fp->altsetting, format);
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100436 fp->formats = SNDRV_PCM_FMTBIT_MPEG;
Daniel Macke5779992010-03-04 19:46:13 +0100437 break;
438 }
439
440 fp->channels = 1;
441
442 switch (protocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +0200443 default:
444 snd_printdd(KERN_WARNING "%d:%u:%d : invalid protocol version %d, assuming v1\n",
445 chip->dev->devnum, fp->iface, fp->altsetting, protocol);
446 /* fall through */
Daniel Macke5779992010-03-04 19:46:13 +0100447 case UAC_VERSION_1: {
448 struct uac_format_type_ii_discrete_descriptor *fmt = _fmt;
449 brate = le16_to_cpu(fmt->wMaxBitRate);
450 framesize = le16_to_cpu(fmt->wSamplesPerFrame);
451 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
452 fp->frame_size = framesize;
453 ret = parse_audio_format_rates_v1(chip, fp, _fmt, 8); /* fmt[8..] sample rates */
454 break;
455 }
456 case UAC_VERSION_2: {
457 struct uac_format_type_ii_ext_descriptor *fmt = _fmt;
458 brate = le16_to_cpu(fmt->wMaxBitRate);
459 framesize = le16_to_cpu(fmt->wSamplesPerFrame);
460 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
461 fp->frame_size = framesize;
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200462 ret = parse_audio_format_rates_v2(chip, fp);
Daniel Macke5779992010-03-04 19:46:13 +0100463 break;
464 }
465 }
466
467 return ret;
468}
469
470int snd_usb_parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
Daniel Mack74754f92010-05-26 18:11:36 +0200471 int format, struct uac_format_type_i_continuous_descriptor *fmt,
472 int stream, struct usb_host_interface *iface)
Daniel Macke5779992010-03-04 19:46:13 +0100473{
474 int err;
475
Daniel Mack74754f92010-05-26 18:11:36 +0200476 switch (fmt->bFormatType) {
Daniel Macke5779992010-03-04 19:46:13 +0100477 case UAC_FORMAT_TYPE_I:
478 case UAC_FORMAT_TYPE_III:
479 err = parse_audio_format_i(chip, fp, format, fmt, iface);
480 break;
481 case UAC_FORMAT_TYPE_II:
482 err = parse_audio_format_ii(chip, fp, format, fmt, iface);
483 break;
484 default:
485 snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
Daniel Mack74754f92010-05-26 18:11:36 +0200486 chip->dev->devnum, fp->iface, fp->altsetting,
487 fmt->bFormatType);
Daniel Mack8d091242010-05-26 18:11:37 +0200488 return -ENOTSUPP;
Daniel Macke5779992010-03-04 19:46:13 +0100489 }
Daniel Mack74754f92010-05-26 18:11:36 +0200490 fp->fmt_type = fmt->bFormatType;
Daniel Macke5779992010-03-04 19:46:13 +0100491 if (err < 0)
492 return err;
493#if 1
494 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
495 /* extigy apparently supports sample rates other than 48k
496 * but not in ordinary way. so we enable only 48k atm.
497 */
498 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
499 chip->usb_id == USB_ID(0x041e, 0x3020) ||
500 chip->usb_id == USB_ID(0x041e, 0x3061)) {
Daniel Mack74754f92010-05-26 18:11:36 +0200501 if (fmt->bFormatType == UAC_FORMAT_TYPE_I &&
Daniel Macke5779992010-03-04 19:46:13 +0100502 fp->rates != SNDRV_PCM_RATE_48000 &&
503 fp->rates != SNDRV_PCM_RATE_96000)
Daniel Mack8d091242010-05-26 18:11:37 +0200504 return -ENOTSUPP;
Daniel Macke5779992010-03-04 19:46:13 +0100505 }
506#endif
507 return 0;
508}
509