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.
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.
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
18 #include <linux/init.h>
19 #include <linux/slab.h>
20 #include <linux/usb.h>
21 #include <linux/usb/audio.h>
22 #include <linux/usb/audio-v2.h>
24 #include <sound/core.h>
25 #include <sound/pcm.h>
40 static void free_substream(struct snd_usb_substream *subs)
42 struct list_head *p, *n;
44 if (!subs->num_formats)
45 return; /* not initialized */
46 list_for_each_safe(p, n, &subs->fmt_list) {
47 struct audioformat *fp = list_entry(p, struct audioformat, list);
48 kfree(fp->rate_table);
51 kfree(subs->rate_list.list);
56 * free a usb stream instance
58 static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
60 free_substream(&stream->substream[0]);
61 free_substream(&stream->substream[1]);
62 list_del(&stream->list);
66 static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
68 struct snd_usb_stream *stream = pcm->private_data;
71 snd_usb_audio_stream_free(stream);
77 * add this endpoint to the chip instance.
78 * if a stream with the same endpoint already exists, append to it.
79 * if not, create a new pcm stream.
81 int snd_usb_add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
84 struct snd_usb_stream *as;
85 struct snd_usb_substream *subs;
89 list_for_each(p, &chip->pcm_list) {
90 as = list_entry(p, struct snd_usb_stream, list);
91 if (as->fmt_type != fp->fmt_type)
93 subs = &as->substream[stream];
96 if (subs->endpoint == fp->endpoint) {
97 list_add_tail(&fp->list, &subs->fmt_list);
99 subs->formats |= fp->formats;
103 /* look for an empty stream */
104 list_for_each(p, &chip->pcm_list) {
105 as = list_entry(p, struct snd_usb_stream, list);
106 if (as->fmt_type != fp->fmt_type)
108 subs = &as->substream[stream];
111 err = snd_pcm_new_stream(as->pcm, stream, 1);
114 snd_usb_init_substream(as, stream, fp);
118 /* create a new pcm */
119 as = kzalloc(sizeof(*as), GFP_KERNEL);
122 as->pcm_index = chip->pcm_devs;
124 as->fmt_type = fp->fmt_type;
125 err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
126 stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
127 stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
134 pcm->private_data = as;
135 pcm->private_free = snd_usb_audio_pcm_free;
137 if (chip->pcm_devs > 0)
138 sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
140 strcpy(pcm->name, "USB Audio");
142 snd_usb_init_substream(as, stream, fp);
144 list_add(&as->list, &chip->pcm_list);
147 snd_usb_proc_pcm_format_add(as);
152 static int parse_uac_endpoint_attributes(struct snd_usb_audio *chip,
153 struct usb_host_interface *alts,
154 int protocol, int iface_no)
156 /* parsed with a v1 header here. that's ok as we only look at the
157 * header first which is the same for both versions */
158 struct uac_iso_endpoint_descriptor *csep;
159 struct usb_interface_descriptor *altsd = get_iface_desc(alts);
162 csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
164 /* Creamware Noah has this descriptor after the 2nd endpoint */
165 if (!csep && altsd->bNumEndpoints >= 2)
166 csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
168 if (!csep || csep->bLength < 7 ||
169 csep->bDescriptorSubtype != UAC_EP_GENERAL) {
170 snd_printk(KERN_WARNING "%d:%u:%d : no or invalid"
171 " class specific endpoint descriptor\n",
172 chip->dev->devnum, iface_no,
173 altsd->bAlternateSetting);
177 if (protocol == UAC_VERSION_1) {
178 attributes = csep->bmAttributes;
180 struct uac2_iso_endpoint_descriptor *csep2 =
181 (struct uac2_iso_endpoint_descriptor *) csep;
183 attributes = csep->bmAttributes & UAC_EP_CS_ATTR_FILL_MAX;
185 /* emulate the endpoint attributes of a v1 device */
186 if (csep2->bmControls & UAC2_CONTROL_PITCH)
187 attributes |= UAC_EP_CS_ATTR_PITCH_CONTROL;
193 static struct uac2_input_terminal_descriptor *
194 snd_usb_find_input_terminal_descriptor(struct usb_host_interface *ctrl_iface,
197 struct uac2_input_terminal_descriptor *term = NULL;
199 while ((term = snd_usb_find_csint_desc(ctrl_iface->extra,
200 ctrl_iface->extralen,
201 term, UAC_INPUT_TERMINAL))) {
202 if (term->bTerminalID == terminal_id)
209 static struct uac2_output_terminal_descriptor *
210 snd_usb_find_output_terminal_descriptor(struct usb_host_interface *ctrl_iface,
213 struct uac2_output_terminal_descriptor *term = NULL;
215 while ((term = snd_usb_find_csint_desc(ctrl_iface->extra,
216 ctrl_iface->extralen,
217 term, UAC_OUTPUT_TERMINAL))) {
218 if (term->bTerminalID == terminal_id)
225 int snd_usb_parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
227 struct usb_device *dev;
228 struct usb_interface *iface;
229 struct usb_host_interface *alts;
230 struct usb_interface_descriptor *altsd;
231 int i, altno, err, stream;
232 int format = 0, num_channels = 0;
233 struct audioformat *fp = NULL;
234 int num, protocol, clock = 0;
235 struct uac_format_type_i_continuous_descriptor *fmt;
239 /* parse the interface's altsettings */
240 iface = usb_ifnum_to_if(dev, iface_no);
242 num = iface->num_altsetting;
245 * Dallas DS4201 workaround: It presents 5 altsettings, but the last
246 * one misses syncpipe, and does not produce any sound.
248 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
251 for (i = 0; i < num; i++) {
252 alts = &iface->altsetting[i];
253 altsd = get_iface_desc(alts);
254 protocol = altsd->bInterfaceProtocol;
255 /* skip invalid one */
256 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
257 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
258 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING &&
259 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
260 altsd->bNumEndpoints < 1 ||
261 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
263 /* must be isochronous */
264 if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
265 USB_ENDPOINT_XFER_ISOC)
267 /* check direction */
268 stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
269 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
270 altno = altsd->bAlternateSetting;
272 if (snd_usb_apply_interface_quirk(chip, iface_no, altno))
275 /* get audio formats */
277 case UAC_VERSION_1: {
278 struct uac_as_header_descriptor_v1 *as =
279 snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, UAC_AS_GENERAL);
282 snd_printk(KERN_ERR "%d:%u:%d : UAC_AS_GENERAL descriptor not found\n",
283 dev->devnum, iface_no, altno);
287 if (as->bLength < sizeof(*as)) {
288 snd_printk(KERN_ERR "%d:%u:%d : invalid UAC_AS_GENERAL desc\n",
289 dev->devnum, iface_no, altno);
293 format = le16_to_cpu(as->wFormatTag); /* remember the format value */
297 case UAC_VERSION_2: {
298 struct uac2_input_terminal_descriptor *input_term;
299 struct uac2_output_terminal_descriptor *output_term;
300 struct uac_as_header_descriptor_v2 *as =
301 snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, UAC_AS_GENERAL);
304 snd_printk(KERN_ERR "%d:%u:%d : UAC_AS_GENERAL descriptor not found\n",
305 dev->devnum, iface_no, altno);
309 if (as->bLength < sizeof(*as)) {
310 snd_printk(KERN_ERR "%d:%u:%d : invalid UAC_AS_GENERAL desc\n",
311 dev->devnum, iface_no, altno);
315 num_channels = as->bNrChannels;
316 format = le32_to_cpu(as->bmFormats);
318 /* lookup the terminal associated to this interface
319 * to extract the clock */
320 input_term = snd_usb_find_input_terminal_descriptor(chip->ctrl_intf,
323 clock = input_term->bCSourceID;
327 output_term = snd_usb_find_output_terminal_descriptor(chip->ctrl_intf,
330 clock = output_term->bCSourceID;
334 snd_printk(KERN_ERR "%d:%u:%d : bogus bTerminalLink %d\n",
335 dev->devnum, iface_no, altno, as->bTerminalLink);
340 snd_printk(KERN_ERR "%d:%u:%d : unknown interface protocol %04x\n",
341 dev->devnum, iface_no, altno, protocol);
345 /* get format type */
346 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, UAC_FORMAT_TYPE);
348 snd_printk(KERN_ERR "%d:%u:%d : no UAC_FORMAT_TYPE desc\n",
349 dev->devnum, iface_no, altno);
352 if (((protocol == UAC_VERSION_1) && (fmt->bLength < 8)) ||
353 ((protocol == UAC_VERSION_2) && (fmt->bLength != 6))) {
354 snd_printk(KERN_ERR "%d:%u:%d : invalid UAC_FORMAT_TYPE desc\n",
355 dev->devnum, iface_no, altno);
360 * Blue Microphones workaround: The last altsetting is identical
361 * with the previous one, except for a larger packet size, but
362 * is actually a mislabeled two-channel setting; ignore it.
364 if (fmt->bNrChannels == 1 &&
365 fmt->bSubframeSize == 2 &&
366 altno == 2 && num == 3 &&
367 fp && fp->altsetting == 1 && fp->channels == 1 &&
368 fp->formats == SNDRV_PCM_FMTBIT_S16_LE &&
369 protocol == UAC_VERSION_1 &&
370 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) ==
374 fp = kzalloc(sizeof(*fp), GFP_KERNEL);
376 snd_printk(KERN_ERR "cannot malloc\n");
380 fp->iface = iface_no;
381 fp->altsetting = altno;
383 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
384 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
385 fp->datainterval = snd_usb_parse_datainterval(chip, alts);
386 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
387 /* num_channels is only set for v2 interfaces */
388 fp->channels = num_channels;
389 if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
390 fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
391 * (fp->maxpacksize & 0x7ff);
392 fp->attributes = parse_uac_endpoint_attributes(chip, alts, protocol, iface_no);
395 /* some quirks for attributes here */
397 switch (chip->usb_id) {
398 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
399 /* Optoplay sets the sample rate attribute although
400 * it seems not supporting it in fact.
402 fp->attributes &= ~UAC_EP_CS_ATTR_SAMPLE_RATE;
404 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
405 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
406 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra 8 */
407 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
408 /* doesn't set the sample rate attribute, but supports it */
409 fp->attributes |= UAC_EP_CS_ATTR_SAMPLE_RATE;
411 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
412 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
413 an older model 77d:223) */
415 * plantronics headset and Griffin iMic have set adaptive-in
416 * although it's really not...
418 fp->ep_attr &= ~USB_ENDPOINT_SYNCTYPE;
419 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
420 fp->ep_attr |= USB_ENDPOINT_SYNC_ADAPTIVE;
422 fp->ep_attr |= USB_ENDPOINT_SYNC_SYNC;
426 /* ok, let's parse further... */
427 if (snd_usb_parse_audio_format(chip, fp, format, fmt, stream, alts) < 0) {
428 kfree(fp->rate_table);
434 snd_printdd(KERN_INFO "%d:%u:%d: add audio endpoint %#x\n", dev->devnum, iface_no, altno, fp->endpoint);
435 err = snd_usb_add_audio_endpoint(chip, stream, fp);
437 kfree(fp->rate_table);
441 /* try to set the interface... */
442 usb_set_interface(chip->dev, iface_no, altno);
443 snd_usb_init_pitch(chip, iface_no, alts, fp);
444 snd_usb_init_sample_rate(chip, iface_no, alts, fp, fp->rate_max);