blob: 2227b4cea3383ff17c01ec1c6182ca90c1723b1a [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>
Ajay Agarwalabed8d42017-02-07 16:40:09 +053023#include <linux/usb/audio-v3.h>
Daniel Macke5779992010-03-04 19:46:13 +010024
25#include <sound/core.h>
26#include <sound/pcm.h>
27
28#include "usbaudio.h"
29#include "card.h"
30#include "quirks.h"
31#include "helper.h"
32#include "debug.h"
Daniel Mack79f920f2010-05-31 14:51:31 +020033#include "clock.h"
Daniel Mackee95cb62011-05-18 11:28:40 +020034#include "format.h"
Daniel Macke5779992010-03-04 19:46:13 +010035
36/*
37 * parse the audio format type I descriptor
38 * and returns the corresponding pcm format
39 *
40 * @dev: usb device
41 * @fp: audioformat record
42 * @format: the format tag (wFormatTag)
43 * @fmt: the format type descriptor
44 */
Clemens Ladisch29088fe2010-03-04 19:46:16 +010045static u64 parse_audio_format_i_type(struct snd_usb_audio *chip,
Daniel Macke5779992010-03-04 19:46:13 +010046 struct audioformat *fp,
Clemens Ladisch8f898e92013-01-31 21:39:17 +010047 unsigned int format, void *_fmt)
Daniel Macke5779992010-03-04 19:46:13 +010048{
Daniel Macke5779992010-03-04 19:46:13 +010049 int sample_width, sample_bytes;
Daniel Mack717bfb52013-03-17 20:07:25 +080050 u64 pcm_formats = 0;
Daniel Macke5779992010-03-04 19:46:13 +010051
Clemens Ladisch8f898e92013-01-31 21:39:17 +010052 switch (fp->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;
Daniel Mack717bfb52013-03-17 20:07:25 +080066
67 if (format & UAC2_FORMAT_TYPE_I_RAW_DATA)
68 pcm_formats |= SNDRV_PCM_FMTBIT_SPECIAL;
69
Clemens Ladisch29088fe2010-03-04 19:46:16 +010070 format <<= 1;
Daniel Macke5779992010-03-04 19:46:13 +010071 break;
72 }
Ajay Agarwalabed8d42017-02-07 16:40:09 +053073
74 case UAC_VERSION_3: {
75 switch (fp->maxpacksize) {
76 case BADD_MAXPSIZE_SYNC_MONO_16:
77 case BADD_MAXPSIZE_SYNC_STEREO_16:
78 case BADD_MAXPSIZE_ASYNC_MONO_16:
79 case BADD_MAXPSIZE_ASYNC_STEREO_16: {
80 sample_width = BIT_RES_16_BIT;
81 sample_bytes = SUBSLOTSIZE_16_BIT;
82 break;
83 }
84
85 case BADD_MAXPSIZE_SYNC_MONO_24:
86 case BADD_MAXPSIZE_SYNC_STEREO_24:
87 case BADD_MAXPSIZE_ASYNC_MONO_24:
88 case BADD_MAXPSIZE_ASYNC_STEREO_24: {
89 sample_width = BIT_RES_24_BIT;
90 sample_bytes = SUBSLOTSIZE_24_BIT;
91 break;
92 }
93 default:
94 usb_audio_err(chip, "%u:%d : Invalid wMaxPacketSize\n",
95 fp->iface, fp->altsetting);
96 return pcm_formats;
97 }
98 format = 1 << format;
99 break;
100 }
Daniel Macke5779992010-03-04 19:46:13 +0100101 }
102
Daniel Mack717bfb52013-03-17 20:07:25 +0800103 if ((pcm_formats == 0) &&
104 (format == 0 || format == (1 << UAC_FORMAT_TYPE_I_UNDEFINED))) {
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100105 /* some devices don't define this correctly... */
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100106 usb_audio_info(chip, "%u:%d : format type 0 is detected, processed as PCM\n",
107 fp->iface, fp->altsetting);
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100108 format = 1 << UAC_FORMAT_TYPE_I_PCM;
109 }
110 if (format & (1 << UAC_FORMAT_TYPE_I_PCM)) {
Takamichi Horikawa6d1f2f62015-04-21 11:23:57 +0900111 if (((chip->usb_id == USB_ID(0x0582, 0x0016)) ||
112 /* Edirol SD-90 */
113 (chip->usb_id == USB_ID(0x0582, 0x000c))) &&
114 /* Roland SC-D70 */
Clemens Ladisch061b8692011-01-10 16:30:54 +0100115 sample_width == 24 && sample_bytes == 2)
116 sample_bytes = 3;
117 else if (sample_width > sample_bytes * 8) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100118 usb_audio_info(chip, "%u:%d : sample bitwidth %d in over sample bytes %d\n",
119 fp->iface, fp->altsetting,
120 sample_width, sample_bytes);
Daniel Macke5779992010-03-04 19:46:13 +0100121 }
122 /* check the format byte size */
123 switch (sample_bytes) {
124 case 1:
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100125 pcm_formats |= SNDRV_PCM_FMTBIT_S8;
Daniel Macke5779992010-03-04 19:46:13 +0100126 break;
127 case 2:
128 if (snd_usb_is_big_endian_format(chip, fp))
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100129 pcm_formats |= SNDRV_PCM_FMTBIT_S16_BE; /* grrr, big endian!! */
Daniel Macke5779992010-03-04 19:46:13 +0100130 else
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100131 pcm_formats |= SNDRV_PCM_FMTBIT_S16_LE;
Daniel Macke5779992010-03-04 19:46:13 +0100132 break;
133 case 3:
134 if (snd_usb_is_big_endian_format(chip, fp))
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100135 pcm_formats |= SNDRV_PCM_FMTBIT_S24_3BE; /* grrr, big endian!! */
Daniel Macke5779992010-03-04 19:46:13 +0100136 else
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100137 pcm_formats |= SNDRV_PCM_FMTBIT_S24_3LE;
Daniel Macke5779992010-03-04 19:46:13 +0100138 break;
139 case 4:
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100140 pcm_formats |= SNDRV_PCM_FMTBIT_S32_LE;
Daniel Macke5779992010-03-04 19:46:13 +0100141 break;
142 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100143 usb_audio_info(chip,
144 "%u:%d : unsupported sample bitwidth %d in %d bytes\n",
145 fp->iface, fp->altsetting,
146 sample_width, sample_bytes);
Daniel Macke5779992010-03-04 19:46:13 +0100147 break;
148 }
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100149 }
150 if (format & (1 << UAC_FORMAT_TYPE_I_PCM8)) {
Daniel Macke5779992010-03-04 19:46:13 +0100151 /* Dallas DS4201 workaround: it advertises U8 format, but really
152 supports S8. */
153 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100154 pcm_formats |= SNDRV_PCM_FMTBIT_S8;
155 else
156 pcm_formats |= SNDRV_PCM_FMTBIT_U8;
Daniel Macke5779992010-03-04 19:46:13 +0100157 }
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100158 if (format & (1 << UAC_FORMAT_TYPE_I_IEEE_FLOAT)) {
159 pcm_formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
160 }
161 if (format & (1 << UAC_FORMAT_TYPE_I_ALAW)) {
162 pcm_formats |= SNDRV_PCM_FMTBIT_A_LAW;
163 }
164 if (format & (1 << UAC_FORMAT_TYPE_I_MULAW)) {
165 pcm_formats |= SNDRV_PCM_FMTBIT_MU_LAW;
166 }
167 if (format & ~0x3f) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100168 usb_audio_info(chip,
169 "%u:%d : unsupported format bits %#x\n",
170 fp->iface, fp->altsetting, format);
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100171 }
Daniel Mack126825e2013-04-17 00:01:40 +0800172
173 pcm_formats |= snd_usb_interface_dsd_format_quirks(chip, fp, sample_bytes);
174
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100175 return pcm_formats;
Daniel Macke5779992010-03-04 19:46:13 +0100176}
177
178
179/*
180 * parse the format descriptor and stores the possible sample rates
181 * on the audioformat table (audio class v1).
182 *
183 * @dev: usb device
184 * @fp: audioformat record
185 * @fmt: the format descriptor
186 * @offset: the start offset of descriptor pointing the rate type
187 * (7 for type I and II, 8 for type II)
188 */
189static int parse_audio_format_rates_v1(struct snd_usb_audio *chip, struct audioformat *fp,
190 unsigned char *fmt, int offset)
191{
192 int nr_rates = fmt[offset];
193
194 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100195 usb_audio_err(chip,
196 "%u:%d : invalid UAC_FORMAT_TYPE desc\n",
197 fp->iface, fp->altsetting);
Sachin Kamat8ad10dc2012-11-21 15:25:56 +0530198 return -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100199 }
200
201 if (nr_rates) {
202 /*
203 * build the rate table and bitmap flags
204 */
205 int r, idx;
206
207 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
Shawn Lin1bc00f322016-08-21 10:17:36 +0800208 if (fp->rate_table == NULL)
Sachin Kamat8ad10dc2012-11-21 15:25:56 +0530209 return -ENOMEM;
Daniel Macke5779992010-03-04 19:46:13 +0100210
211 fp->nr_rates = 0;
212 fp->rate_min = fp->rate_max = 0;
213 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
214 unsigned int rate = combine_triple(&fmt[idx]);
215 if (!rate)
216 continue;
217 /* C-Media CM6501 mislabels its 96 kHz altsetting */
Wolfgang Breyha8129e792011-04-28 16:18:40 +0200218 /* Terratec Aureon 7.1 USB C-Media 6206, too */
Daniel Macke5779992010-03-04 19:46:13 +0100219 if (rate == 48000 && nr_rates == 1 &&
220 (chip->usb_id == USB_ID(0x0d8c, 0x0201) ||
Wolfgang Breyha8129e792011-04-28 16:18:40 +0200221 chip->usb_id == USB_ID(0x0d8c, 0x0102) ||
222 chip->usb_id == USB_ID(0x0ccd, 0x00b1)) &&
Daniel Macke5779992010-03-04 19:46:13 +0100223 fp->altsetting == 5 && fp->maxpacksize == 392)
224 rate = 96000;
Pavel Hofman8c4b79c2014-01-14 13:42:57 +0100225 /* Creative VF0420/VF0470 Live Cams report 16 kHz instead of 8kHz */
226 if (rate == 16000 &&
227 (chip->usb_id == USB_ID(0x041e, 0x4064) ||
228 chip->usb_id == USB_ID(0x041e, 0x4068)))
Daniel Macke5779992010-03-04 19:46:13 +0100229 rate = 8000;
230
231 fp->rate_table[fp->nr_rates] = rate;
232 if (!fp->rate_min || rate < fp->rate_min)
233 fp->rate_min = rate;
234 if (!fp->rate_max || rate > fp->rate_max)
235 fp->rate_max = rate;
236 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
237 fp->nr_rates++;
238 }
239 if (!fp->nr_rates) {
240 hwc_debug("All rates were zero. Skipping format!\n");
Sachin Kamat8ad10dc2012-11-21 15:25:56 +0530241 return -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100242 }
243 } else {
244 /* continuous rates */
245 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
246 fp->rate_min = combine_triple(&fmt[offset + 1]);
247 fp->rate_max = combine_triple(&fmt[offset + 4]);
248 }
249 return 0;
250}
251
252/*
Alexander Tsoyb0fb9cb2020-04-18 20:58:15 +0300253 * Many Focusrite devices supports a limited set of sampling rates per
254 * altsetting. Maximum rate is exposed in the last 4 bytes of Format Type
255 * descriptor which has a non-standard bLength = 10.
256 */
257static bool focusrite_valid_sample_rate(struct snd_usb_audio *chip,
258 struct audioformat *fp,
259 unsigned int rate)
260{
261 struct usb_interface *iface;
262 struct usb_host_interface *alts;
263 unsigned char *fmt;
264 unsigned int max_rate;
265
266 iface = usb_ifnum_to_if(chip->dev, fp->iface);
267 if (!iface)
268 return true;
269
270 alts = &iface->altsetting[fp->altset_idx];
271 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen,
272 NULL, UAC_FORMAT_TYPE);
273 if (!fmt)
274 return true;
275
276 if (fmt[0] == 10) { /* bLength */
277 max_rate = combine_quad(&fmt[6]);
278
279 /* Validate max rate */
280 if (max_rate != 48000 &&
281 max_rate != 96000 &&
282 max_rate != 192000 &&
283 max_rate != 384000) {
284
285 usb_audio_info(chip,
286 "%u:%d : unexpected max rate: %u\n",
287 fp->iface, fp->altsetting, max_rate);
288
289 return true;
290 }
291
292 return rate <= max_rate;
293 }
294
295 return true;
296}
297
298/*
Daniel Mack67c10362010-06-11 17:46:33 +0200299 * Helper function to walk the array of sample rate triplets reported by
300 * the device. The problem is that we need to parse whole array first to
301 * get to know how many sample rates we have to expect.
302 * Then fp->rate_table can be allocated and filled.
303 */
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100304static int parse_uac2_sample_rate_range(struct snd_usb_audio *chip,
305 struct audioformat *fp, int nr_triplets,
Daniel Mack67c10362010-06-11 17:46:33 +0200306 const unsigned char *data)
307{
308 int i, nr_rates = 0;
309
310 fp->rates = fp->rate_min = fp->rate_max = 0;
311
312 for (i = 0; i < nr_triplets; i++) {
313 int min = combine_quad(&data[2 + 12 * i]);
314 int max = combine_quad(&data[6 + 12 * i]);
315 int res = combine_quad(&data[10 + 12 * i]);
Xi Wang4fa0e812012-01-08 09:02:52 -0500316 unsigned int rate;
Daniel Mack67c10362010-06-11 17:46:33 +0200317
318 if ((max < 0) || (min < 0) || (res < 0) || (max < min))
319 continue;
320
321 /*
322 * for ranges with res == 1, we announce a continuous sample
323 * rate range, and this function should return 0 for no further
324 * parsing.
325 */
326 if (res == 1) {
327 fp->rate_min = min;
328 fp->rate_max = max;
329 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
330 return 0;
331 }
332
333 for (rate = min; rate <= max; rate += res) {
Alexander Tsoyb0fb9cb2020-04-18 20:58:15 +0300334 /* Filter out invalid rates on Focusrite devices */
335 if (USB_ID_VENDOR(chip->usb_id) == 0x1235 &&
336 !focusrite_valid_sample_rate(chip, fp, rate))
337 goto skip_rate;
338
Daniel Mack67c10362010-06-11 17:46:33 +0200339 if (fp->rate_table)
340 fp->rate_table[nr_rates] = rate;
341 if (!fp->rate_min || rate < fp->rate_min)
342 fp->rate_min = rate;
343 if (!fp->rate_max || rate > fp->rate_max)
344 fp->rate_max = rate;
345 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
346
347 nr_rates++;
Xi Wang8866f402012-02-14 05:18:48 -0500348 if (nr_rates >= MAX_NR_RATES) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100349 usb_audio_err(chip, "invalid uac2 rates\n");
Xi Wang4fa0e812012-01-08 09:02:52 -0500350 break;
351 }
Daniel Mack67c10362010-06-11 17:46:33 +0200352
Alexander Tsoyb0fb9cb2020-04-18 20:58:15 +0300353skip_rate:
Daniel Mack67c10362010-06-11 17:46:33 +0200354 /* avoid endless loop */
355 if (res == 0)
356 break;
357 }
358 }
359
360 return nr_rates;
361}
362
363/*
Daniel Macke5779992010-03-04 19:46:13 +0100364 * parse the format descriptor and stores the possible sample rates
365 * on the audioformat table (audio class v2).
366 */
367static int parse_audio_format_rates_v2(struct snd_usb_audio *chip,
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200368 struct audioformat *fp)
Daniel Macke5779992010-03-04 19:46:13 +0100369{
370 struct usb_device *dev = chip->dev;
371 unsigned char tmp[2], *data;
Daniel Mack67c10362010-06-11 17:46:33 +0200372 int nr_triplets, data_size, ret = 0;
Eldad Zack06ffc1e2013-04-03 23:18:54 +0200373 int clock = snd_usb_clock_find_source(chip, fp->clock, false);
Daniel Macke5779992010-03-04 19:46:13 +0100374
Daniel Mackd07140b2010-06-11 17:34:19 +0200375 if (clock < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100376 dev_err(&dev->dev,
377 "%s(): unable to find clock source (clock %d)\n",
Daniel Mackd07140b2010-06-11 17:34:19 +0200378 __func__, clock);
379 goto err;
380 }
381
Daniel Macke5779992010-03-04 19:46:13 +0100382 /* get the number of sample rates first by only fetching 2 bytes */
383 ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_RANGE,
384 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
Daniel Mack11bcbc42010-06-11 17:34:20 +0200385 UAC2_CS_CONTROL_SAM_FREQ << 8,
386 snd_usb_ctrl_intf(chip) | (clock << 8),
Clemens Ladisch17d900c2011-09-26 21:15:27 +0200387 tmp, sizeof(tmp));
Daniel Macke5779992010-03-04 19:46:13 +0100388
389 if (ret < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100390 dev_err(&dev->dev,
391 "%s(): unable to retrieve number of sample rates (clock %d)\n",
Daniel Mack79f920f2010-05-31 14:51:31 +0200392 __func__, clock);
Daniel Macke5779992010-03-04 19:46:13 +0100393 goto err;
394 }
395
Daniel Mack67c10362010-06-11 17:46:33 +0200396 nr_triplets = (tmp[1] << 8) | tmp[0];
397 data_size = 2 + 12 * nr_triplets;
Daniel Macke5779992010-03-04 19:46:13 +0100398 data = kzalloc(data_size, GFP_KERNEL);
399 if (!data) {
400 ret = -ENOMEM;
401 goto err;
402 }
403
404 /* now get the full information */
405 ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_RANGE,
Daniel Mack79f920f2010-05-31 14:51:31 +0200406 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
Daniel Mack11bcbc42010-06-11 17:34:20 +0200407 UAC2_CS_CONTROL_SAM_FREQ << 8,
408 snd_usb_ctrl_intf(chip) | (clock << 8),
Clemens Ladisch17d900c2011-09-26 21:15:27 +0200409 data, data_size);
Daniel Macke5779992010-03-04 19:46:13 +0100410
411 if (ret < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100412 dev_err(&dev->dev,
413 "%s(): unable to retrieve sample rate range (clock %d)\n",
Daniel Mack79f920f2010-05-31 14:51:31 +0200414 __func__, clock);
Daniel Macke5779992010-03-04 19:46:13 +0100415 ret = -EINVAL;
416 goto err_free;
417 }
418
Daniel Mack67c10362010-06-11 17:46:33 +0200419 /* Call the triplet parser, and make sure fp->rate_table is NULL.
420 * We just use the return value to know how many sample rates we
421 * will have to deal with. */
422 kfree(fp->rate_table);
423 fp->rate_table = NULL;
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100424 fp->nr_rates = parse_uac2_sample_rate_range(chip, fp, nr_triplets, data);
Daniel Mack67c10362010-06-11 17:46:33 +0200425
426 if (fp->nr_rates == 0) {
427 /* SNDRV_PCM_RATE_CONTINUOUS */
428 ret = 0;
429 goto err_free;
430 }
431
432 fp->rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
Daniel Macke5779992010-03-04 19:46:13 +0100433 if (!fp->rate_table) {
434 ret = -ENOMEM;
435 goto err_free;
436 }
437
Daniel Mack67c10362010-06-11 17:46:33 +0200438 /* Call the triplet parser again, but this time, fp->rate_table is
439 * allocated, so the rates will be stored */
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100440 parse_uac2_sample_rate_range(chip, fp, nr_triplets, data);
Daniel Macke5779992010-03-04 19:46:13 +0100441
442err_free:
443 kfree(data);
444err:
445 return ret;
446}
447
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530448static int badd_set_audio_rate_v3(struct snd_usb_audio *chip,
449 struct audioformat *fp)
450{
451 unsigned int rate;
452
453 fp->rate_table = kmalloc(sizeof(int), GFP_KERNEL);
454 if (fp->rate_table == NULL)
455 return -ENOMEM;
456
457 fp->nr_rates = 1;
458 rate = BADD_SAMPLING_RATE;
459 fp->rate_min = fp->rate_max = fp->rate_table[0] = rate;
460 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
461 return 0;
462}
463
Daniel Macke5779992010-03-04 19:46:13 +0100464/*
465 * parse the format type I and III descriptors
466 */
467static int parse_audio_format_i(struct snd_usb_audio *chip,
Daniel Mack2fcdb062013-03-17 20:07:24 +0800468 struct audioformat *fp, unsigned int format,
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530469 u8 format_type,
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100470 struct uac_format_type_i_continuous_descriptor *fmt)
Daniel Macke5779992010-03-04 19:46:13 +0100471{
Eldad Zack74c34ca2013-04-23 01:00:41 +0200472 snd_pcm_format_t pcm_format;
473 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100474
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530475 if (format_type == UAC_FORMAT_TYPE_III) {
Daniel Macke5779992010-03-04 19:46:13 +0100476 /* FIXME: the format type is really IECxxx
477 * but we give normal PCM format to get the existing
478 * apps working...
479 */
480 switch (chip->usb_id) {
481
482 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
483 if (chip->setup == 0x00 &&
484 fp->altsetting == 6)
485 pcm_format = SNDRV_PCM_FORMAT_S16_BE;
486 else
487 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
488 break;
489 default:
490 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
491 }
Eldad Zack74c34ca2013-04-23 01:00:41 +0200492 fp->formats = pcm_format_to_bits(pcm_format);
Daniel Macke5779992010-03-04 19:46:13 +0100493 } else {
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100494 fp->formats = parse_audio_format_i_type(chip, fp, format, fmt);
Clemens Ladisch29088fe2010-03-04 19:46:16 +0100495 if (!fp->formats)
Sachin Kamat8ad10dc2012-11-21 15:25:56 +0530496 return -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100497 }
498
Daniel Macke5779992010-03-04 19:46:13 +0100499 /* gather possible sample rates */
500 /* audio class v1 reports possible sample rates as part of the
501 * proprietary class specific descriptor.
502 * audio class v2 uses class specific EP0 range requests for that.
503 */
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100504 switch (fp->protocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +0200505 default:
Daniel Macke5779992010-03-04 19:46:13 +0100506 case UAC_VERSION_1:
507 fp->channels = fmt->bNrChannels;
Daniel Mack74754f92010-05-26 18:11:36 +0200508 ret = parse_audio_format_rates_v1(chip, fp, (unsigned char *) fmt, 7);
Daniel Macke5779992010-03-04 19:46:13 +0100509 break;
510 case UAC_VERSION_2:
511 /* fp->channels is already set in this case */
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200512 ret = parse_audio_format_rates_v2(chip, fp);
Daniel Macke5779992010-03-04 19:46:13 +0100513 break;
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530514 case UAC_VERSION_3:
515 ret = badd_set_audio_rate_v3(chip, fp);
516 break;
Daniel Macke5779992010-03-04 19:46:13 +0100517 }
518
519 if (fp->channels < 1) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100520 usb_audio_err(chip,
521 "%u:%d : invalid channels %d\n",
522 fp->iface, fp->altsetting, fp->channels);
Sachin Kamat8ad10dc2012-11-21 15:25:56 +0530523 return -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100524 }
525
526 return ret;
527}
528
529/*
530 * parse the format type II descriptor
531 */
532static int parse_audio_format_ii(struct snd_usb_audio *chip,
533 struct audioformat *fp,
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100534 int format, void *_fmt)
Daniel Macke5779992010-03-04 19:46:13 +0100535{
536 int brate, framesize, ret;
Daniel Macke5779992010-03-04 19:46:13 +0100537
538 switch (format) {
539 case UAC_FORMAT_TYPE_II_AC3:
540 /* FIXME: there is no AC3 format defined yet */
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100541 // fp->formats = SNDRV_PCM_FMTBIT_AC3;
542 fp->formats = SNDRV_PCM_FMTBIT_U8; /* temporary hack to receive byte streams */
Daniel Macke5779992010-03-04 19:46:13 +0100543 break;
544 case UAC_FORMAT_TYPE_II_MPEG:
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100545 fp->formats = SNDRV_PCM_FMTBIT_MPEG;
Daniel Macke5779992010-03-04 19:46:13 +0100546 break;
547 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100548 usb_audio_info(chip,
549 "%u:%d : unknown format tag %#x is detected. processed as MPEG.\n",
550 fp->iface, fp->altsetting, format);
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100551 fp->formats = SNDRV_PCM_FMTBIT_MPEG;
Daniel Macke5779992010-03-04 19:46:13 +0100552 break;
553 }
554
555 fp->channels = 1;
556
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100557 switch (fp->protocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +0200558 default:
Daniel Macke5779992010-03-04 19:46:13 +0100559 case UAC_VERSION_1: {
560 struct uac_format_type_ii_discrete_descriptor *fmt = _fmt;
561 brate = le16_to_cpu(fmt->wMaxBitRate);
562 framesize = le16_to_cpu(fmt->wSamplesPerFrame);
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100563 usb_audio_info(chip, "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
Daniel Macke5779992010-03-04 19:46:13 +0100564 fp->frame_size = framesize;
565 ret = parse_audio_format_rates_v1(chip, fp, _fmt, 8); /* fmt[8..] sample rates */
566 break;
567 }
568 case UAC_VERSION_2: {
569 struct uac_format_type_ii_ext_descriptor *fmt = _fmt;
570 brate = le16_to_cpu(fmt->wMaxBitRate);
571 framesize = le16_to_cpu(fmt->wSamplesPerFrame);
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100572 usb_audio_info(chip, "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
Daniel Macke5779992010-03-04 19:46:13 +0100573 fp->frame_size = framesize;
Daniel Mack3d8d4dc2010-06-16 17:57:31 +0200574 ret = parse_audio_format_rates_v2(chip, fp);
Daniel Macke5779992010-03-04 19:46:13 +0100575 break;
576 }
577 }
578
579 return ret;
580}
581
Daniel Mack2fcdb062013-03-17 20:07:24 +0800582int snd_usb_parse_audio_format(struct snd_usb_audio *chip,
583 struct audioformat *fp, unsigned int format,
584 struct uac_format_type_i_continuous_descriptor *fmt,
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100585 int stream)
Daniel Macke5779992010-03-04 19:46:13 +0100586{
587 int err;
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530588 int format_type = -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100589
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530590 if ((fp->protocol == UAC_VERSION_1) ||
591 (fp->protocol == UAC_VERSION_2))
592 format_type = fmt->bFormatType;
593 else
594 format_type = UAC_FORMAT_TYPE_I; /* only BADD is supported */
595
596 switch (format_type) {
Daniel Macke5779992010-03-04 19:46:13 +0100597 case UAC_FORMAT_TYPE_I:
598 case UAC_FORMAT_TYPE_III:
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530599 err = parse_audio_format_i(chip, fp, format, format_type, fmt);
Daniel Macke5779992010-03-04 19:46:13 +0100600 break;
601 case UAC_FORMAT_TYPE_II:
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100602 err = parse_audio_format_ii(chip, fp, format, fmt);
Daniel Macke5779992010-03-04 19:46:13 +0100603 break;
604 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100605 usb_audio_info(chip,
606 "%u:%d : format type %d is not supported yet\n",
607 fp->iface, fp->altsetting,
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530608 format_type);
Daniel Mack8d091242010-05-26 18:11:37 +0200609 return -ENOTSUPP;
Daniel Macke5779992010-03-04 19:46:13 +0100610 }
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530611 fp->fmt_type = format_type;
Daniel Macke5779992010-03-04 19:46:13 +0100612 if (err < 0)
613 return err;
614#if 1
615 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
616 /* extigy apparently supports sample rates other than 48k
617 * but not in ordinary way. so we enable only 48k atm.
618 */
619 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
620 chip->usb_id == USB_ID(0x041e, 0x3020) ||
621 chip->usb_id == USB_ID(0x041e, 0x3061)) {
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530622 if (format_type == UAC_FORMAT_TYPE_I &&
Daniel Macke5779992010-03-04 19:46:13 +0100623 fp->rates != SNDRV_PCM_RATE_48000 &&
624 fp->rates != SNDRV_PCM_RATE_96000)
Daniel Mack8d091242010-05-26 18:11:37 +0200625 return -ENOTSUPP;
Daniel Macke5779992010-03-04 19:46:13 +0100626 }
627#endif
628 return 0;
629}
630