2 * (Tentative) USB Audio Driver for ALSA
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 * - async unlink should be used for avoiding the sleep inside lock.
31 * 2.4.22 usb-uhci seems buggy for async unlinking and results in
32 * oops. in such a cse, pass async_unlink=0 option.
33 * - the linked URBs would be preferred but not used so far because of
34 * the instability of unlinking.
35 * - type II is not supported properly. there is no device which supports
36 * this type *correctly*. SB extigy looks as if it supports, but it's
37 * indeed an AC3 stream packed in SPDIF frames (i.e. no real AC3 stream).
41 #include <linux/bitops.h>
42 #include <linux/init.h>
43 #include <linux/list.h>
44 #include <linux/slab.h>
45 #include <linux/string.h>
46 #include <linux/usb.h>
47 #include <linux/vmalloc.h>
48 #include <linux/moduleparam.h>
49 #include <linux/mutex.h>
50 #include <sound/core.h>
51 #include <sound/info.h>
52 #include <sound/pcm.h>
53 #include <sound/pcm_params.h>
54 #include <sound/initval.h>
59 MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
60 MODULE_DESCRIPTION("USB Audio");
61 MODULE_LICENSE("GPL");
62 MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
65 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
66 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
67 static int enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE_PNP
;/* Enable this card */
68 /* Vendor/product IDs for this card */
69 static int vid
[SNDRV_CARDS
] = { [0 ... (SNDRV_CARDS
-1)] = -1 };
70 static int pid
[SNDRV_CARDS
] = { [0 ... (SNDRV_CARDS
-1)] = -1 };
71 static int nrpacks
= 8; /* max. number of packets per urb */
72 static int async_unlink
= 1;
73 static int device_setup
[SNDRV_CARDS
]; /* device parameter for this card*/
74 static int ignore_ctl_error
;
76 module_param_array(index
, int, NULL
, 0444);
77 MODULE_PARM_DESC(index
, "Index value for the USB audio adapter.");
78 module_param_array(id
, charp
, NULL
, 0444);
79 MODULE_PARM_DESC(id
, "ID string for the USB audio adapter.");
80 module_param_array(enable
, bool, NULL
, 0444);
81 MODULE_PARM_DESC(enable
, "Enable USB audio adapter.");
82 module_param_array(vid
, int, NULL
, 0444);
83 MODULE_PARM_DESC(vid
, "Vendor ID for the USB audio device.");
84 module_param_array(pid
, int, NULL
, 0444);
85 MODULE_PARM_DESC(pid
, "Product ID for the USB audio device.");
86 module_param(nrpacks
, int, 0644);
87 MODULE_PARM_DESC(nrpacks
, "Max. number of packets per URB.");
88 module_param(async_unlink
, bool, 0444);
89 MODULE_PARM_DESC(async_unlink
, "Use async unlink mode.");
90 module_param_array(device_setup
, int, NULL
, 0444);
91 MODULE_PARM_DESC(device_setup
, "Specific device setup (if needed).");
92 module_param(ignore_ctl_error
, bool, 0444);
93 MODULE_PARM_DESC(ignore_ctl_error
,
94 "Ignore errors from USB controller for mixer interfaces.");
97 * debug the h/w constraints
99 /* #define HW_CONST_DEBUG */
107 #define MAX_PACKS_HS (MAX_PACKS * 8) /* in high speed mode */
109 #define SYNC_URBS 4 /* always four urbs for sync */
110 #define MAX_QUEUE 24 /* try not to exceed this queue length, in ms */
113 struct list_head list
;
114 snd_pcm_format_t format
; /* format type */
115 unsigned int channels
; /* # channels */
116 unsigned int fmt_type
; /* USB audio format type (1-3) */
117 unsigned int frame_size
; /* samples per frame for non-audio */
118 int iface
; /* interface number */
119 unsigned char altsetting
; /* corresponding alternate setting */
120 unsigned char altset_idx
; /* array index of altenate setting */
121 unsigned char attributes
; /* corresponding attributes of cs endpoint */
122 unsigned char endpoint
; /* endpoint */
123 unsigned char ep_attr
; /* endpoint attributes */
124 unsigned char datainterval
; /* log_2 of data packet interval */
125 unsigned int maxpacksize
; /* max. packet size */
126 unsigned int rates
; /* rate bitmasks */
127 unsigned int rate_min
, rate_max
; /* min/max rates */
128 unsigned int nr_rates
; /* number of rate table entries */
129 unsigned int *rate_table
; /* rate table */
132 struct snd_usb_substream
;
136 unsigned int buffer_size
; /* size of data buffer, if data URB */
137 struct snd_usb_substream
*subs
;
138 int index
; /* index for urb array */
139 int packets
; /* number of packets per urb */
143 int (*prepare
)(struct snd_usb_substream
*subs
, struct snd_pcm_runtime
*runtime
, struct urb
*u
);
144 int (*retire
)(struct snd_usb_substream
*subs
, struct snd_pcm_runtime
*runtime
, struct urb
*u
);
145 int (*prepare_sync
)(struct snd_usb_substream
*subs
, struct snd_pcm_runtime
*runtime
, struct urb
*u
);
146 int (*retire_sync
)(struct snd_usb_substream
*subs
, struct snd_pcm_runtime
*runtime
, struct urb
*u
);
149 struct snd_usb_substream
{
150 struct snd_usb_stream
*stream
;
151 struct usb_device
*dev
;
152 struct snd_pcm_substream
*pcm_substream
;
153 int direction
; /* playback or capture */
154 int interface
; /* current interface */
155 int endpoint
; /* assigned endpoint */
156 struct audioformat
*cur_audiofmt
; /* current audioformat pointer (for hw_params callback) */
157 unsigned int cur_rate
; /* current rate (for hw_params callback) */
158 unsigned int period_bytes
; /* current period bytes (for hw_params callback) */
159 unsigned int format
; /* USB data format */
160 unsigned int datapipe
; /* the data i/o pipe */
161 unsigned int syncpipe
; /* 1 - async out or adaptive in */
162 unsigned int datainterval
; /* log_2 of data packet interval */
163 unsigned int syncinterval
; /* P for adaptive mode, 0 otherwise */
164 unsigned int freqn
; /* nominal sampling rate in fs/fps in Q16.16 format */
165 unsigned int freqm
; /* momentary sampling rate in fs/fps in Q16.16 format */
166 unsigned int freqmax
; /* maximum sampling rate, used for buffer management */
167 unsigned int phase
; /* phase accumulator */
168 unsigned int maxpacksize
; /* max packet size in bytes */
169 unsigned int maxframesize
; /* max packet size in frames */
170 unsigned int curpacksize
; /* current packet size in bytes (for capture) */
171 unsigned int curframesize
; /* current packet size in frames (for capture) */
172 unsigned int fill_max
: 1; /* fill max packet size always */
173 unsigned int fmt_type
; /* USB audio format type (1-3) */
175 unsigned int running
: 1; /* running status */
177 unsigned int hwptr_done
; /* processed frame position in the buffer */
178 unsigned int transfer_done
; /* processed frames since last period update */
179 unsigned long active_mask
; /* bitmask of active urbs */
180 unsigned long unlink_mask
; /* bitmask of unlinked urbs */
182 unsigned int nurbs
; /* # urbs */
183 struct snd_urb_ctx dataurb
[MAX_URBS
]; /* data urb table */
184 struct snd_urb_ctx syncurb
[SYNC_URBS
]; /* sync urb table */
185 char *syncbuf
; /* sync buffer for all sync URBs */
186 dma_addr_t sync_dma
; /* DMA address of syncbuf */
188 u64 formats
; /* format bitmasks (all or'ed) */
189 unsigned int num_formats
; /* number of supported audio formats (list) */
190 struct list_head fmt_list
; /* format list */
191 struct snd_pcm_hw_constraint_list rate_list
; /* limited rates */
194 struct snd_urb_ops ops
; /* callbacks (must be filled at init) */
198 struct snd_usb_stream
{
199 struct snd_usb_audio
*chip
;
202 unsigned int fmt_type
; /* USB audio format type (1-3) */
203 struct snd_usb_substream substream
[2];
204 struct list_head list
;
209 * we keep the snd_usb_audio_t instances by ourselves for merging
210 * the all interfaces on the same card as one sound device.
213 static DEFINE_MUTEX(register_mutex
);
214 static struct snd_usb_audio
*usb_chip
[SNDRV_CARDS
];
218 * convert a sampling rate into our full speed format (fs/1000 in Q16.16)
219 * this will overflow at approx 524 kHz
221 static inline unsigned get_usb_full_speed_rate(unsigned int rate
)
223 return ((rate
<< 13) + 62) / 125;
227 * convert a sampling rate into USB high speed format (fs/8000 in Q16.16)
228 * this will overflow at approx 4 MHz
230 static inline unsigned get_usb_high_speed_rate(unsigned int rate
)
232 return ((rate
<< 10) + 62) / 125;
235 /* convert our full speed USB rate into sampling rate in Hz */
236 static inline unsigned get_full_speed_hz(unsigned int usb_rate
)
238 return (usb_rate
* 125 + (1 << 12)) >> 13;
241 /* convert our high speed USB rate into sampling rate in Hz */
242 static inline unsigned get_high_speed_hz(unsigned int usb_rate
)
244 return (usb_rate
* 125 + (1 << 9)) >> 10;
249 * prepare urb for full speed capture sync pipe
251 * fill the length and offset of each urb descriptor.
252 * the fixed 10.14 frequency is passed through the pipe.
254 static int prepare_capture_sync_urb(struct snd_usb_substream
*subs
,
255 struct snd_pcm_runtime
*runtime
,
258 unsigned char *cp
= urb
->transfer_buffer
;
259 struct snd_urb_ctx
*ctx
= urb
->context
;
261 urb
->dev
= ctx
->subs
->dev
; /* we need to set this at each time */
262 urb
->iso_frame_desc
[0].length
= 3;
263 urb
->iso_frame_desc
[0].offset
= 0;
264 cp
[0] = subs
->freqn
>> 2;
265 cp
[1] = subs
->freqn
>> 10;
266 cp
[2] = subs
->freqn
>> 18;
271 * prepare urb for high speed capture sync pipe
273 * fill the length and offset of each urb descriptor.
274 * the fixed 12.13 frequency is passed as 16.16 through the pipe.
276 static int prepare_capture_sync_urb_hs(struct snd_usb_substream
*subs
,
277 struct snd_pcm_runtime
*runtime
,
280 unsigned char *cp
= urb
->transfer_buffer
;
281 struct snd_urb_ctx
*ctx
= urb
->context
;
283 urb
->dev
= ctx
->subs
->dev
; /* we need to set this at each time */
284 urb
->iso_frame_desc
[0].length
= 4;
285 urb
->iso_frame_desc
[0].offset
= 0;
287 cp
[1] = subs
->freqn
>> 8;
288 cp
[2] = subs
->freqn
>> 16;
289 cp
[3] = subs
->freqn
>> 24;
294 * process after capture sync complete
297 static int retire_capture_sync_urb(struct snd_usb_substream
*subs
,
298 struct snd_pcm_runtime
*runtime
,
305 * prepare urb for capture data pipe
307 * fill the offset and length of each descriptor.
309 * we use a temporary buffer to write the captured data.
310 * since the length of written data is determined by host, we cannot
311 * write onto the pcm buffer directly... the data is thus copied
312 * later at complete callback to the global buffer.
314 static int prepare_capture_urb(struct snd_usb_substream
*subs
,
315 struct snd_pcm_runtime
*runtime
,
319 struct snd_urb_ctx
*ctx
= urb
->context
;
322 urb
->dev
= ctx
->subs
->dev
; /* we need to set this at each time */
323 for (i
= 0; i
< ctx
->packets
; i
++) {
324 urb
->iso_frame_desc
[i
].offset
= offs
;
325 urb
->iso_frame_desc
[i
].length
= subs
->curpacksize
;
326 offs
+= subs
->curpacksize
;
328 urb
->transfer_buffer_length
= offs
;
329 urb
->number_of_packets
= ctx
->packets
;
334 * process after capture complete
336 * copy the data from each desctiptor to the pcm buffer, and
337 * update the current position.
339 static int retire_capture_urb(struct snd_usb_substream
*subs
,
340 struct snd_pcm_runtime
*runtime
,
346 unsigned int stride
, len
, oldptr
;
347 int period_elapsed
= 0;
349 stride
= runtime
->frame_bits
>> 3;
351 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
352 cp
= (unsigned char *)urb
->transfer_buffer
+ urb
->iso_frame_desc
[i
].offset
;
353 if (urb
->iso_frame_desc
[i
].status
) {
354 snd_printd(KERN_ERR
"frame %d active: %d\n", i
, urb
->iso_frame_desc
[i
].status
);
357 len
= urb
->iso_frame_desc
[i
].actual_length
/ stride
;
360 /* update the current pointer */
361 spin_lock_irqsave(&subs
->lock
, flags
);
362 oldptr
= subs
->hwptr_done
;
363 subs
->hwptr_done
+= len
;
364 if (subs
->hwptr_done
>= runtime
->buffer_size
)
365 subs
->hwptr_done
-= runtime
->buffer_size
;
366 subs
->transfer_done
+= len
;
367 if (subs
->transfer_done
>= runtime
->period_size
) {
368 subs
->transfer_done
-= runtime
->period_size
;
371 spin_unlock_irqrestore(&subs
->lock
, flags
);
372 /* copy a data chunk */
373 if (oldptr
+ len
> runtime
->buffer_size
) {
374 unsigned int cnt
= runtime
->buffer_size
- oldptr
;
375 unsigned int blen
= cnt
* stride
;
376 memcpy(runtime
->dma_area
+ oldptr
* stride
, cp
, blen
);
377 memcpy(runtime
->dma_area
, cp
+ blen
, len
* stride
- blen
);
379 memcpy(runtime
->dma_area
+ oldptr
* stride
, cp
, len
* stride
);
383 snd_pcm_period_elapsed(subs
->pcm_substream
);
388 * Process after capture complete when paused. Nothing to do.
390 static int retire_paused_capture_urb(struct snd_usb_substream
*subs
,
391 struct snd_pcm_runtime
*runtime
,
399 * prepare urb for full speed playback sync pipe
401 * set up the offset and length to receive the current frequency.
404 static int prepare_playback_sync_urb(struct snd_usb_substream
*subs
,
405 struct snd_pcm_runtime
*runtime
,
408 struct snd_urb_ctx
*ctx
= urb
->context
;
410 urb
->dev
= ctx
->subs
->dev
; /* we need to set this at each time */
411 urb
->iso_frame_desc
[0].length
= 3;
412 urb
->iso_frame_desc
[0].offset
= 0;
417 * prepare urb for high speed playback sync pipe
419 * set up the offset and length to receive the current frequency.
422 static int prepare_playback_sync_urb_hs(struct snd_usb_substream
*subs
,
423 struct snd_pcm_runtime
*runtime
,
426 struct snd_urb_ctx
*ctx
= urb
->context
;
428 urb
->dev
= ctx
->subs
->dev
; /* we need to set this at each time */
429 urb
->iso_frame_desc
[0].length
= 4;
430 urb
->iso_frame_desc
[0].offset
= 0;
435 * process after full speed playback sync complete
437 * retrieve the current 10.14 frequency from pipe, and set it.
438 * the value is referred in prepare_playback_urb().
440 static int retire_playback_sync_urb(struct snd_usb_substream
*subs
,
441 struct snd_pcm_runtime
*runtime
,
447 if (urb
->iso_frame_desc
[0].status
== 0 &&
448 urb
->iso_frame_desc
[0].actual_length
== 3) {
449 f
= combine_triple((u8
*)urb
->transfer_buffer
) << 2;
450 if (f
>= subs
->freqn
- subs
->freqn
/ 8 && f
<= subs
->freqmax
) {
451 spin_lock_irqsave(&subs
->lock
, flags
);
453 spin_unlock_irqrestore(&subs
->lock
, flags
);
461 * process after high speed playback sync complete
463 * retrieve the current 12.13 frequency from pipe, and set it.
464 * the value is referred in prepare_playback_urb().
466 static int retire_playback_sync_urb_hs(struct snd_usb_substream
*subs
,
467 struct snd_pcm_runtime
*runtime
,
473 if (urb
->iso_frame_desc
[0].status
== 0 &&
474 urb
->iso_frame_desc
[0].actual_length
== 4) {
475 f
= combine_quad((u8
*)urb
->transfer_buffer
) & 0x0fffffff;
476 if (f
>= subs
->freqn
- subs
->freqn
/ 8 && f
<= subs
->freqmax
) {
477 spin_lock_irqsave(&subs
->lock
, flags
);
479 spin_unlock_irqrestore(&subs
->lock
, flags
);
487 * process after E-Mu 0202/0404/Tracker Pre high speed playback sync complete
489 * These devices return the number of samples per packet instead of the number
490 * of samples per microframe.
492 static int retire_playback_sync_urb_hs_emu(struct snd_usb_substream
*subs
,
493 struct snd_pcm_runtime
*runtime
,
499 if (urb
->iso_frame_desc
[0].status
== 0 &&
500 urb
->iso_frame_desc
[0].actual_length
== 4) {
501 f
= combine_quad((u8
*)urb
->transfer_buffer
) & 0x0fffffff;
502 f
>>= subs
->datainterval
;
503 if (f
>= subs
->freqn
- subs
->freqn
/ 8 && f
<= subs
->freqmax
) {
504 spin_lock_irqsave(&subs
->lock
, flags
);
506 spin_unlock_irqrestore(&subs
->lock
, flags
);
513 /* determine the number of frames in the next packet */
514 static int snd_usb_audio_next_packet_size(struct snd_usb_substream
*subs
)
517 return subs
->maxframesize
;
519 subs
->phase
= (subs
->phase
& 0xffff)
520 + (subs
->freqm
<< subs
->datainterval
);
521 return min(subs
->phase
>> 16, subs
->maxframesize
);
526 * Prepare urb for streaming before playback starts or when paused.
528 * We don't have any data, so we send silence.
530 static int prepare_nodata_playback_urb(struct snd_usb_substream
*subs
,
531 struct snd_pcm_runtime
*runtime
,
534 unsigned int i
, offs
, counts
;
535 struct snd_urb_ctx
*ctx
= urb
->context
;
536 int stride
= runtime
->frame_bits
>> 3;
539 urb
->dev
= ctx
->subs
->dev
;
540 for (i
= 0; i
< ctx
->packets
; ++i
) {
541 counts
= snd_usb_audio_next_packet_size(subs
);
542 urb
->iso_frame_desc
[i
].offset
= offs
* stride
;
543 urb
->iso_frame_desc
[i
].length
= counts
* stride
;
546 urb
->number_of_packets
= ctx
->packets
;
547 urb
->transfer_buffer_length
= offs
* stride
;
548 memset(urb
->transfer_buffer
,
549 subs
->cur_audiofmt
->format
== SNDRV_PCM_FORMAT_U8
? 0x80 : 0,
555 * prepare urb for playback data pipe
557 * Since a URB can handle only a single linear buffer, we must use double
558 * buffering when the data to be transferred overflows the buffer boundary.
559 * To avoid inconsistencies when updating hwptr_done, we use double buffering
562 static int prepare_playback_urb(struct snd_usb_substream
*subs
,
563 struct snd_pcm_runtime
*runtime
,
569 int period_elapsed
= 0;
570 struct snd_urb_ctx
*ctx
= urb
->context
;
572 stride
= runtime
->frame_bits
>> 3;
575 urb
->dev
= ctx
->subs
->dev
; /* we need to set this at each time */
576 urb
->number_of_packets
= 0;
577 spin_lock_irqsave(&subs
->lock
, flags
);
578 for (i
= 0; i
< ctx
->packets
; i
++) {
579 counts
= snd_usb_audio_next_packet_size(subs
);
580 /* set up descriptor */
581 urb
->iso_frame_desc
[i
].offset
= offs
* stride
;
582 urb
->iso_frame_desc
[i
].length
= counts
* stride
;
584 urb
->number_of_packets
++;
585 subs
->transfer_done
+= counts
;
586 if (subs
->transfer_done
>= runtime
->period_size
) {
587 subs
->transfer_done
-= runtime
->period_size
;
589 if (subs
->fmt_type
== USB_FORMAT_TYPE_II
) {
590 if (subs
->transfer_done
> 0) {
591 /* FIXME: fill-max mode is not
593 offs
-= subs
->transfer_done
;
594 counts
-= subs
->transfer_done
;
595 urb
->iso_frame_desc
[i
].length
=
597 subs
->transfer_done
= 0;
600 if (i
< ctx
->packets
) {
601 /* add a transfer delimiter */
602 urb
->iso_frame_desc
[i
].offset
=
604 urb
->iso_frame_desc
[i
].length
= 0;
605 urb
->number_of_packets
++;
610 if (period_elapsed
) /* finish at the period boundary */
613 if (subs
->hwptr_done
+ offs
> runtime
->buffer_size
) {
614 /* err, the transferred area goes over buffer boundary. */
615 unsigned int len
= runtime
->buffer_size
- subs
->hwptr_done
;
616 memcpy(urb
->transfer_buffer
,
617 runtime
->dma_area
+ subs
->hwptr_done
* stride
,
619 memcpy(urb
->transfer_buffer
+ len
* stride
,
621 (offs
- len
) * stride
);
623 memcpy(urb
->transfer_buffer
,
624 runtime
->dma_area
+ subs
->hwptr_done
* stride
,
627 subs
->hwptr_done
+= offs
;
628 if (subs
->hwptr_done
>= runtime
->buffer_size
)
629 subs
->hwptr_done
-= runtime
->buffer_size
;
630 runtime
->delay
+= offs
;
631 spin_unlock_irqrestore(&subs
->lock
, flags
);
632 urb
->transfer_buffer_length
= offs
* stride
;
634 snd_pcm_period_elapsed(subs
->pcm_substream
);
639 * process after playback data complete
640 * - decrease the delay count again
642 static int retire_playback_urb(struct snd_usb_substream
*subs
,
643 struct snd_pcm_runtime
*runtime
,
647 int stride
= runtime
->frame_bits
>> 3;
648 int processed
= urb
->transfer_buffer_length
/ stride
;
650 spin_lock_irqsave(&subs
->lock
, flags
);
651 if (processed
> runtime
->delay
)
654 runtime
->delay
-= processed
;
655 spin_unlock_irqrestore(&subs
->lock
, flags
);
662 static struct snd_urb_ops audio_urb_ops
[2] = {
664 .prepare
= prepare_nodata_playback_urb
,
665 .retire
= retire_playback_urb
,
666 .prepare_sync
= prepare_playback_sync_urb
,
667 .retire_sync
= retire_playback_sync_urb
,
670 .prepare
= prepare_capture_urb
,
671 .retire
= retire_capture_urb
,
672 .prepare_sync
= prepare_capture_sync_urb
,
673 .retire_sync
= retire_capture_sync_urb
,
677 static struct snd_urb_ops audio_urb_ops_high_speed
[2] = {
679 .prepare
= prepare_nodata_playback_urb
,
680 .retire
= retire_playback_urb
,
681 .prepare_sync
= prepare_playback_sync_urb_hs
,
682 .retire_sync
= retire_playback_sync_urb_hs
,
685 .prepare
= prepare_capture_urb
,
686 .retire
= retire_capture_urb
,
687 .prepare_sync
= prepare_capture_sync_urb_hs
,
688 .retire_sync
= retire_capture_sync_urb
,
693 * complete callback from data urb
695 static void snd_complete_urb(struct urb
*urb
)
697 struct snd_urb_ctx
*ctx
= urb
->context
;
698 struct snd_usb_substream
*subs
= ctx
->subs
;
699 struct snd_pcm_substream
*substream
= ctx
->subs
->pcm_substream
;
702 if ((subs
->running
&& subs
->ops
.retire(subs
, substream
->runtime
, urb
)) ||
703 !subs
->running
|| /* can be stopped during retire callback */
704 (err
= subs
->ops
.prepare(subs
, substream
->runtime
, urb
)) < 0 ||
705 (err
= usb_submit_urb(urb
, GFP_ATOMIC
)) < 0) {
706 clear_bit(ctx
->index
, &subs
->active_mask
);
708 snd_printd(KERN_ERR
"cannot submit urb (err = %d)\n", err
);
709 snd_pcm_stop(substream
, SNDRV_PCM_STATE_XRUN
);
716 * complete callback from sync urb
718 static void snd_complete_sync_urb(struct urb
*urb
)
720 struct snd_urb_ctx
*ctx
= urb
->context
;
721 struct snd_usb_substream
*subs
= ctx
->subs
;
722 struct snd_pcm_substream
*substream
= ctx
->subs
->pcm_substream
;
725 if ((subs
->running
&& subs
->ops
.retire_sync(subs
, substream
->runtime
, urb
)) ||
726 !subs
->running
|| /* can be stopped during retire callback */
727 (err
= subs
->ops
.prepare_sync(subs
, substream
->runtime
, urb
)) < 0 ||
728 (err
= usb_submit_urb(urb
, GFP_ATOMIC
)) < 0) {
729 clear_bit(ctx
->index
+ 16, &subs
->active_mask
);
731 snd_printd(KERN_ERR
"cannot submit sync urb (err = %d)\n", err
);
732 snd_pcm_stop(substream
, SNDRV_PCM_STATE_XRUN
);
738 /* get the physical page pointer at the given offset */
739 static struct page
*snd_pcm_get_vmalloc_page(struct snd_pcm_substream
*subs
,
740 unsigned long offset
)
742 void *pageptr
= subs
->runtime
->dma_area
+ offset
;
743 return vmalloc_to_page(pageptr
);
746 /* allocate virtual buffer; may be called more than once */
747 static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream
*subs
, size_t size
)
749 struct snd_pcm_runtime
*runtime
= subs
->runtime
;
750 if (runtime
->dma_area
) {
751 if (runtime
->dma_bytes
>= size
)
752 return 0; /* already large enough */
753 vfree(runtime
->dma_area
);
755 runtime
->dma_area
= vmalloc(size
);
756 if (!runtime
->dma_area
)
758 runtime
->dma_bytes
= size
;
762 /* free virtual buffer; may be called more than once */
763 static int snd_pcm_free_vmalloc_buffer(struct snd_pcm_substream
*subs
)
765 struct snd_pcm_runtime
*runtime
= subs
->runtime
;
767 vfree(runtime
->dma_area
);
768 runtime
->dma_area
= NULL
;
774 * unlink active urbs.
776 static int deactivate_urbs(struct snd_usb_substream
*subs
, int force
, int can_sleep
)
783 if (!force
&& subs
->stream
->chip
->shutdown
) /* to be sure... */
786 async
= !can_sleep
&& async_unlink
;
788 if (!async
&& in_interrupt())
791 for (i
= 0; i
< subs
->nurbs
; i
++) {
792 if (test_bit(i
, &subs
->active_mask
)) {
793 if (!test_and_set_bit(i
, &subs
->unlink_mask
)) {
794 struct urb
*u
= subs
->dataurb
[i
].urb
;
802 if (subs
->syncpipe
) {
803 for (i
= 0; i
< SYNC_URBS
; i
++) {
804 if (test_bit(i
+16, &subs
->active_mask
)) {
805 if (!test_and_set_bit(i
+16, &subs
->unlink_mask
)) {
806 struct urb
*u
= subs
->syncurb
[i
].urb
;
819 static const char *usb_error_string(int err
)
825 return "endpoint not enabled";
827 return "endpoint stalled";
829 return "not enough bandwidth";
831 return "device disabled";
833 return "device suspended";
838 return "internal error";
840 return "unknown error";
845 * set up and start data/sync urbs
847 static int start_urbs(struct snd_usb_substream
*subs
, struct snd_pcm_runtime
*runtime
)
852 if (subs
->stream
->chip
->shutdown
)
855 for (i
= 0; i
< subs
->nurbs
; i
++) {
856 if (snd_BUG_ON(!subs
->dataurb
[i
].urb
))
858 if (subs
->ops
.prepare(subs
, runtime
, subs
->dataurb
[i
].urb
) < 0) {
859 snd_printk(KERN_ERR
"cannot prepare datapipe for urb %d\n", i
);
863 if (subs
->syncpipe
) {
864 for (i
= 0; i
< SYNC_URBS
; i
++) {
865 if (snd_BUG_ON(!subs
->syncurb
[i
].urb
))
867 if (subs
->ops
.prepare_sync(subs
, runtime
, subs
->syncurb
[i
].urb
) < 0) {
868 snd_printk(KERN_ERR
"cannot prepare syncpipe for urb %d\n", i
);
874 subs
->active_mask
= 0;
875 subs
->unlink_mask
= 0;
877 for (i
= 0; i
< subs
->nurbs
; i
++) {
878 err
= usb_submit_urb(subs
->dataurb
[i
].urb
, GFP_ATOMIC
);
880 snd_printk(KERN_ERR
"cannot submit datapipe "
881 "for urb %d, error %d: %s\n",
882 i
, err
, usb_error_string(err
));
885 set_bit(i
, &subs
->active_mask
);
887 if (subs
->syncpipe
) {
888 for (i
= 0; i
< SYNC_URBS
; i
++) {
889 err
= usb_submit_urb(subs
->syncurb
[i
].urb
, GFP_ATOMIC
);
891 snd_printk(KERN_ERR
"cannot submit syncpipe "
892 "for urb %d, error %d: %s\n",
893 i
, err
, usb_error_string(err
));
896 set_bit(i
+ 16, &subs
->active_mask
);
902 // snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
903 deactivate_urbs(subs
, 0, 0);
909 * wait until all urbs are processed.
911 static int wait_clear_urbs(struct snd_usb_substream
*subs
)
913 unsigned long end_time
= jiffies
+ msecs_to_jiffies(1000);
919 for (i
= 0; i
< subs
->nurbs
; i
++) {
920 if (test_bit(i
, &subs
->active_mask
))
923 if (subs
->syncpipe
) {
924 for (i
= 0; i
< SYNC_URBS
; i
++) {
925 if (test_bit(i
+ 16, &subs
->active_mask
))
931 schedule_timeout_uninterruptible(1);
932 } while (time_before(jiffies
, end_time
));
934 snd_printk(KERN_ERR
"timeout: still %d active urbs..\n", alive
);
940 * return the current pcm pointer. just return the hwptr_done value.
942 static snd_pcm_uframes_t
snd_usb_pcm_pointer(struct snd_pcm_substream
*substream
)
944 struct snd_usb_substream
*subs
;
945 snd_pcm_uframes_t hwptr_done
;
947 subs
= (struct snd_usb_substream
*)substream
->runtime
->private_data
;
948 spin_lock(&subs
->lock
);
949 hwptr_done
= subs
->hwptr_done
;
950 spin_unlock(&subs
->lock
);
956 * start/stop playback substream
958 static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream
*substream
,
961 struct snd_usb_substream
*subs
= substream
->runtime
->private_data
;
964 case SNDRV_PCM_TRIGGER_START
:
965 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
966 subs
->ops
.prepare
= prepare_playback_urb
;
968 case SNDRV_PCM_TRIGGER_STOP
:
969 return deactivate_urbs(subs
, 0, 0);
970 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
971 subs
->ops
.prepare
= prepare_nodata_playback_urb
;
979 * start/stop capture substream
981 static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream
*substream
,
984 struct snd_usb_substream
*subs
= substream
->runtime
->private_data
;
987 case SNDRV_PCM_TRIGGER_START
:
988 subs
->ops
.retire
= retire_capture_urb
;
989 return start_urbs(subs
, substream
->runtime
);
990 case SNDRV_PCM_TRIGGER_STOP
:
991 return deactivate_urbs(subs
, 0, 0);
992 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
993 subs
->ops
.retire
= retire_paused_capture_urb
;
995 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
996 subs
->ops
.retire
= retire_capture_urb
;
1005 * release a urb data
1007 static void release_urb_ctx(struct snd_urb_ctx
*u
)
1011 usb_buffer_free(u
->subs
->dev
, u
->buffer_size
,
1012 u
->urb
->transfer_buffer
,
1013 u
->urb
->transfer_dma
);
1014 usb_free_urb(u
->urb
);
1020 * release a substream
1022 static void release_substream_urbs(struct snd_usb_substream
*subs
, int force
)
1026 /* stop urbs (to be sure) */
1027 deactivate_urbs(subs
, force
, 1);
1028 wait_clear_urbs(subs
);
1030 for (i
= 0; i
< MAX_URBS
; i
++)
1031 release_urb_ctx(&subs
->dataurb
[i
]);
1032 for (i
= 0; i
< SYNC_URBS
; i
++)
1033 release_urb_ctx(&subs
->syncurb
[i
]);
1034 usb_buffer_free(subs
->dev
, SYNC_URBS
* 4,
1035 subs
->syncbuf
, subs
->sync_dma
);
1036 subs
->syncbuf
= NULL
;
1041 * initialize a substream for plaback/capture
1043 static int init_substream_urbs(struct snd_usb_substream
*subs
, unsigned int period_bytes
,
1044 unsigned int rate
, unsigned int frame_bits
)
1046 unsigned int maxsize
, i
;
1047 int is_playback
= subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
;
1048 unsigned int urb_packs
, total_packs
, packs_per_ms
;
1050 /* calculate the frequency in 16.16 format */
1051 if (snd_usb_get_speed(subs
->dev
) == USB_SPEED_FULL
)
1052 subs
->freqn
= get_usb_full_speed_rate(rate
);
1054 subs
->freqn
= get_usb_high_speed_rate(rate
);
1055 subs
->freqm
= subs
->freqn
;
1056 /* calculate max. frequency */
1057 if (subs
->maxpacksize
) {
1058 /* whatever fits into a max. size packet */
1059 maxsize
= subs
->maxpacksize
;
1060 subs
->freqmax
= (maxsize
/ (frame_bits
>> 3))
1061 << (16 - subs
->datainterval
);
1063 /* no max. packet size: just take 25% higher than nominal */
1064 subs
->freqmax
= subs
->freqn
+ (subs
->freqn
>> 2);
1065 maxsize
= ((subs
->freqmax
+ 0xffff) * (frame_bits
>> 3))
1066 >> (16 - subs
->datainterval
);
1071 subs
->curpacksize
= subs
->maxpacksize
;
1073 subs
->curpacksize
= maxsize
;
1075 if (snd_usb_get_speed(subs
->dev
) == USB_SPEED_HIGH
)
1076 packs_per_ms
= 8 >> subs
->datainterval
;
1081 urb_packs
= max(nrpacks
, 1);
1082 urb_packs
= min(urb_packs
, (unsigned int)MAX_PACKS
);
1085 urb_packs
*= packs_per_ms
;
1087 urb_packs
= min(urb_packs
, 1U << subs
->syncinterval
);
1089 /* decide how many packets to be used */
1091 unsigned int minsize
, maxpacks
;
1092 /* determine how small a packet can be */
1093 minsize
= (subs
->freqn
>> (16 - subs
->datainterval
))
1094 * (frame_bits
>> 3);
1095 /* with sync from device, assume it can be 12% lower */
1097 minsize
-= minsize
>> 3;
1098 minsize
= max(minsize
, 1u);
1099 total_packs
= (period_bytes
+ minsize
- 1) / minsize
;
1100 /* we need at least two URBs for queueing */
1101 if (total_packs
< 2) {
1104 /* and we don't want too long a queue either */
1105 maxpacks
= max(MAX_QUEUE
* packs_per_ms
, urb_packs
* 2);
1106 total_packs
= min(total_packs
, maxpacks
);
1109 while (urb_packs
> 1 && urb_packs
* maxsize
>= period_bytes
)
1111 total_packs
= MAX_URBS
* urb_packs
;
1113 subs
->nurbs
= (total_packs
+ urb_packs
- 1) / urb_packs
;
1114 if (subs
->nurbs
> MAX_URBS
) {
1116 subs
->nurbs
= MAX_URBS
;
1117 total_packs
= MAX_URBS
* urb_packs
;
1118 } else if (subs
->nurbs
< 2) {
1119 /* too little - we need at least two packets
1120 * to ensure contiguous playback/capture
1125 /* allocate and initialize data urbs */
1126 for (i
= 0; i
< subs
->nurbs
; i
++) {
1127 struct snd_urb_ctx
*u
= &subs
->dataurb
[i
];
1130 u
->packets
= (i
+ 1) * total_packs
/ subs
->nurbs
1131 - i
* total_packs
/ subs
->nurbs
;
1132 u
->buffer_size
= maxsize
* u
->packets
;
1133 if (subs
->fmt_type
== USB_FORMAT_TYPE_II
)
1134 u
->packets
++; /* for transfer delimiter */
1135 u
->urb
= usb_alloc_urb(u
->packets
, GFP_KERNEL
);
1138 u
->urb
->transfer_buffer
=
1139 usb_buffer_alloc(subs
->dev
, u
->buffer_size
, GFP_KERNEL
,
1140 &u
->urb
->transfer_dma
);
1141 if (!u
->urb
->transfer_buffer
)
1143 u
->urb
->pipe
= subs
->datapipe
;
1144 u
->urb
->transfer_flags
= URB_ISO_ASAP
| URB_NO_TRANSFER_DMA_MAP
;
1145 u
->urb
->interval
= 1 << subs
->datainterval
;
1146 u
->urb
->context
= u
;
1147 u
->urb
->complete
= snd_complete_urb
;
1150 if (subs
->syncpipe
) {
1151 /* allocate and initialize sync urbs */
1152 subs
->syncbuf
= usb_buffer_alloc(subs
->dev
, SYNC_URBS
* 4,
1153 GFP_KERNEL
, &subs
->sync_dma
);
1156 for (i
= 0; i
< SYNC_URBS
; i
++) {
1157 struct snd_urb_ctx
*u
= &subs
->syncurb
[i
];
1161 u
->urb
= usb_alloc_urb(1, GFP_KERNEL
);
1164 u
->urb
->transfer_buffer
= subs
->syncbuf
+ i
* 4;
1165 u
->urb
->transfer_dma
= subs
->sync_dma
+ i
* 4;
1166 u
->urb
->transfer_buffer_length
= 4;
1167 u
->urb
->pipe
= subs
->syncpipe
;
1168 u
->urb
->transfer_flags
= URB_ISO_ASAP
|
1169 URB_NO_TRANSFER_DMA_MAP
;
1170 u
->urb
->number_of_packets
= 1;
1171 u
->urb
->interval
= 1 << subs
->syncinterval
;
1172 u
->urb
->context
= u
;
1173 u
->urb
->complete
= snd_complete_sync_urb
;
1179 release_substream_urbs(subs
, 0);
1185 * find a matching audio format
1187 static struct audioformat
*find_format(struct snd_usb_substream
*subs
, unsigned int format
,
1188 unsigned int rate
, unsigned int channels
)
1190 struct list_head
*p
;
1191 struct audioformat
*found
= NULL
;
1192 int cur_attr
= 0, attr
;
1194 list_for_each(p
, &subs
->fmt_list
) {
1195 struct audioformat
*fp
;
1196 fp
= list_entry(p
, struct audioformat
, list
);
1197 if (fp
->format
!= format
|| fp
->channels
!= channels
)
1199 if (rate
< fp
->rate_min
|| rate
> fp
->rate_max
)
1201 if (! (fp
->rates
& SNDRV_PCM_RATE_CONTINUOUS
)) {
1203 for (i
= 0; i
< fp
->nr_rates
; i
++)
1204 if (fp
->rate_table
[i
] == rate
)
1206 if (i
>= fp
->nr_rates
)
1209 attr
= fp
->ep_attr
& EP_ATTR_MASK
;
1215 /* avoid async out and adaptive in if the other method
1216 * supports the same format.
1217 * this is a workaround for the case like
1218 * M-audio audiophile USB.
1220 if (attr
!= cur_attr
) {
1221 if ((attr
== EP_ATTR_ASYNC
&&
1222 subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
) ||
1223 (attr
== EP_ATTR_ADAPTIVE
&&
1224 subs
->direction
== SNDRV_PCM_STREAM_CAPTURE
))
1226 if ((cur_attr
== EP_ATTR_ASYNC
&&
1227 subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
) ||
1228 (cur_attr
== EP_ATTR_ADAPTIVE
&&
1229 subs
->direction
== SNDRV_PCM_STREAM_CAPTURE
)) {
1235 /* find the format with the largest max. packet size */
1236 if (fp
->maxpacksize
> found
->maxpacksize
) {
1246 * initialize the picth control and sample rate
1248 static int init_usb_pitch(struct usb_device
*dev
, int iface
,
1249 struct usb_host_interface
*alts
,
1250 struct audioformat
*fmt
)
1253 unsigned char data
[1];
1256 ep
= get_endpoint(alts
, 0)->bEndpointAddress
;
1257 /* if endpoint has pitch control, enable it */
1258 if (fmt
->attributes
& EP_CS_ATTR_PITCH_CONTROL
) {
1260 if ((err
= snd_usb_ctl_msg(dev
, usb_sndctrlpipe(dev
, 0), SET_CUR
,
1261 USB_TYPE_CLASS
|USB_RECIP_ENDPOINT
|USB_DIR_OUT
,
1262 PITCH_CONTROL
<< 8, ep
, data
, 1, 1000)) < 0) {
1263 snd_printk(KERN_ERR
"%d:%d:%d: cannot set enable PITCH\n",
1264 dev
->devnum
, iface
, ep
);
1271 static int init_usb_sample_rate(struct usb_device
*dev
, int iface
,
1272 struct usb_host_interface
*alts
,
1273 struct audioformat
*fmt
, int rate
)
1276 unsigned char data
[3];
1279 ep
= get_endpoint(alts
, 0)->bEndpointAddress
;
1280 /* if endpoint has sampling rate control, set it */
1281 if (fmt
->attributes
& EP_CS_ATTR_SAMPLE_RATE
) {
1284 data
[1] = rate
>> 8;
1285 data
[2] = rate
>> 16;
1286 if ((err
= snd_usb_ctl_msg(dev
, usb_sndctrlpipe(dev
, 0), SET_CUR
,
1287 USB_TYPE_CLASS
|USB_RECIP_ENDPOINT
|USB_DIR_OUT
,
1288 SAMPLING_FREQ_CONTROL
<< 8, ep
, data
, 3, 1000)) < 0) {
1289 snd_printk(KERN_ERR
"%d:%d:%d: cannot set freq %d to ep %#x\n",
1290 dev
->devnum
, iface
, fmt
->altsetting
, rate
, ep
);
1293 if ((err
= snd_usb_ctl_msg(dev
, usb_rcvctrlpipe(dev
, 0), GET_CUR
,
1294 USB_TYPE_CLASS
|USB_RECIP_ENDPOINT
|USB_DIR_IN
,
1295 SAMPLING_FREQ_CONTROL
<< 8, ep
, data
, 3, 1000)) < 0) {
1296 snd_printk(KERN_WARNING
"%d:%d:%d: cannot get freq at ep %#x\n",
1297 dev
->devnum
, iface
, fmt
->altsetting
, ep
);
1298 return 0; /* some devices don't support reading */
1300 crate
= data
[0] | (data
[1] << 8) | (data
[2] << 16);
1301 if (crate
!= rate
) {
1302 snd_printd(KERN_WARNING
"current rate %d is different from the runtime rate %d\n", crate
, rate
);
1303 // runtime->rate = crate;
1310 * find a matching format and set up the interface
1312 static int set_format(struct snd_usb_substream
*subs
, struct audioformat
*fmt
)
1314 struct usb_device
*dev
= subs
->dev
;
1315 struct usb_host_interface
*alts
;
1316 struct usb_interface_descriptor
*altsd
;
1317 struct usb_interface
*iface
;
1318 unsigned int ep
, attr
;
1319 int is_playback
= subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
;
1322 iface
= usb_ifnum_to_if(dev
, fmt
->iface
);
1323 if (WARN_ON(!iface
))
1325 alts
= &iface
->altsetting
[fmt
->altset_idx
];
1326 altsd
= get_iface_desc(alts
);
1327 if (WARN_ON(altsd
->bAlternateSetting
!= fmt
->altsetting
))
1330 if (fmt
== subs
->cur_audiofmt
)
1333 /* close the old interface */
1334 if (subs
->interface
>= 0 && subs
->interface
!= fmt
->iface
) {
1335 if (usb_set_interface(subs
->dev
, subs
->interface
, 0) < 0) {
1336 snd_printk(KERN_ERR
"%d:%d:%d: return to setting 0 failed\n",
1337 dev
->devnum
, fmt
->iface
, fmt
->altsetting
);
1340 subs
->interface
= -1;
1345 if (subs
->interface
!= fmt
->iface
|| subs
->format
!= fmt
->altset_idx
) {
1346 if (usb_set_interface(dev
, fmt
->iface
, fmt
->altsetting
) < 0) {
1347 snd_printk(KERN_ERR
"%d:%d:%d: usb_set_interface failed\n",
1348 dev
->devnum
, fmt
->iface
, fmt
->altsetting
);
1351 snd_printdd(KERN_INFO
"setting usb interface %d:%d\n", fmt
->iface
, fmt
->altsetting
);
1352 subs
->interface
= fmt
->iface
;
1353 subs
->format
= fmt
->altset_idx
;
1356 /* create a data pipe */
1357 ep
= fmt
->endpoint
& USB_ENDPOINT_NUMBER_MASK
;
1359 subs
->datapipe
= usb_sndisocpipe(dev
, ep
);
1361 subs
->datapipe
= usb_rcvisocpipe(dev
, ep
);
1362 subs
->datainterval
= fmt
->datainterval
;
1363 subs
->syncpipe
= subs
->syncinterval
= 0;
1364 subs
->maxpacksize
= fmt
->maxpacksize
;
1367 /* we need a sync pipe in async OUT or adaptive IN mode */
1368 /* check the number of EP, since some devices have broken
1369 * descriptors which fool us. if it has only one EP,
1370 * assume it as adaptive-out or sync-in.
1372 attr
= fmt
->ep_attr
& EP_ATTR_MASK
;
1373 if (((is_playback
&& attr
== EP_ATTR_ASYNC
) ||
1374 (! is_playback
&& attr
== EP_ATTR_ADAPTIVE
)) &&
1375 altsd
->bNumEndpoints
>= 2) {
1376 /* check sync-pipe endpoint */
1377 /* ... and check descriptor size before accessing bSynchAddress
1378 because there is a version of the SB Audigy 2 NX firmware lacking
1379 the audio fields in the endpoint descriptors */
1380 if ((get_endpoint(alts
, 1)->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != 0x01 ||
1381 (get_endpoint(alts
, 1)->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
&&
1382 get_endpoint(alts
, 1)->bSynchAddress
!= 0)) {
1383 snd_printk(KERN_ERR
"%d:%d:%d : invalid synch pipe\n",
1384 dev
->devnum
, fmt
->iface
, fmt
->altsetting
);
1387 ep
= get_endpoint(alts
, 1)->bEndpointAddress
;
1388 if (get_endpoint(alts
, 0)->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
&&
1389 (( is_playback
&& ep
!= (unsigned int)(get_endpoint(alts
, 0)->bSynchAddress
| USB_DIR_IN
)) ||
1390 (!is_playback
&& ep
!= (unsigned int)(get_endpoint(alts
, 0)->bSynchAddress
& ~USB_DIR_IN
)))) {
1391 snd_printk(KERN_ERR
"%d:%d:%d : invalid synch pipe\n",
1392 dev
->devnum
, fmt
->iface
, fmt
->altsetting
);
1395 ep
&= USB_ENDPOINT_NUMBER_MASK
;
1397 subs
->syncpipe
= usb_rcvisocpipe(dev
, ep
);
1399 subs
->syncpipe
= usb_sndisocpipe(dev
, ep
);
1400 if (get_endpoint(alts
, 1)->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
&&
1401 get_endpoint(alts
, 1)->bRefresh
>= 1 &&
1402 get_endpoint(alts
, 1)->bRefresh
<= 9)
1403 subs
->syncinterval
= get_endpoint(alts
, 1)->bRefresh
;
1404 else if (snd_usb_get_speed(subs
->dev
) == USB_SPEED_FULL
)
1405 subs
->syncinterval
= 1;
1406 else if (get_endpoint(alts
, 1)->bInterval
>= 1 &&
1407 get_endpoint(alts
, 1)->bInterval
<= 16)
1408 subs
->syncinterval
= get_endpoint(alts
, 1)->bInterval
- 1;
1410 subs
->syncinterval
= 3;
1413 /* always fill max packet size */
1414 if (fmt
->attributes
& EP_CS_ATTR_FILL_MAX
)
1417 if ((err
= init_usb_pitch(dev
, subs
->interface
, alts
, fmt
)) < 0)
1420 subs
->cur_audiofmt
= fmt
;
1424 "setting done: format = %d, rate = %d..%d, channels = %d\n",
1425 fmt
->format
, fmt
->rate_min
, fmt
->rate_max
, fmt
->channels
);
1427 " datapipe = 0x%0x, syncpipe = 0x%0x\n",
1428 subs
->datapipe
, subs
->syncpipe
);
1435 * hw_params callback
1437 * allocate a buffer and set the given audio format.
1439 * so far we use a physically linear buffer although packetize transfer
1440 * doesn't need a continuous area.
1441 * if sg buffer is supported on the later version of alsa, we'll follow
1444 static int snd_usb_hw_params(struct snd_pcm_substream
*substream
,
1445 struct snd_pcm_hw_params
*hw_params
)
1447 struct snd_usb_substream
*subs
= substream
->runtime
->private_data
;
1448 struct audioformat
*fmt
;
1449 unsigned int channels
, rate
, format
;
1452 ret
= snd_pcm_alloc_vmalloc_buffer(substream
,
1453 params_buffer_bytes(hw_params
));
1457 format
= params_format(hw_params
);
1458 rate
= params_rate(hw_params
);
1459 channels
= params_channels(hw_params
);
1460 fmt
= find_format(subs
, format
, rate
, channels
);
1462 snd_printd(KERN_DEBUG
"cannot set format: format = %#x, rate = %d, channels = %d\n",
1463 format
, rate
, channels
);
1467 changed
= subs
->cur_audiofmt
!= fmt
||
1468 subs
->period_bytes
!= params_period_bytes(hw_params
) ||
1469 subs
->cur_rate
!= rate
;
1470 if ((ret
= set_format(subs
, fmt
)) < 0)
1473 if (subs
->cur_rate
!= rate
) {
1474 struct usb_host_interface
*alts
;
1475 struct usb_interface
*iface
;
1476 iface
= usb_ifnum_to_if(subs
->dev
, fmt
->iface
);
1477 alts
= &iface
->altsetting
[fmt
->altset_idx
];
1478 ret
= init_usb_sample_rate(subs
->dev
, subs
->interface
, alts
, fmt
, rate
);
1481 subs
->cur_rate
= rate
;
1485 /* format changed */
1486 release_substream_urbs(subs
, 0);
1487 /* influenced: period_bytes, channels, rate, format, */
1488 ret
= init_substream_urbs(subs
, params_period_bytes(hw_params
),
1489 params_rate(hw_params
),
1490 snd_pcm_format_physical_width(params_format(hw_params
)) * params_channels(hw_params
));
1499 * reset the audio format and release the buffer
1501 static int snd_usb_hw_free(struct snd_pcm_substream
*substream
)
1503 struct snd_usb_substream
*subs
= substream
->runtime
->private_data
;
1505 subs
->cur_audiofmt
= NULL
;
1507 subs
->period_bytes
= 0;
1508 if (!subs
->stream
->chip
->shutdown
)
1509 release_substream_urbs(subs
, 0);
1510 return snd_pcm_free_vmalloc_buffer(substream
);
1516 * only a few subtle things...
1518 static int snd_usb_pcm_prepare(struct snd_pcm_substream
*substream
)
1520 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1521 struct snd_usb_substream
*subs
= runtime
->private_data
;
1523 if (! subs
->cur_audiofmt
) {
1524 snd_printk(KERN_ERR
"usbaudio: no format is specified!\n");
1528 /* some unit conversions in runtime */
1529 subs
->maxframesize
= bytes_to_frames(runtime
, subs
->maxpacksize
);
1530 subs
->curframesize
= bytes_to_frames(runtime
, subs
->curpacksize
);
1532 /* reset the pointer */
1533 subs
->hwptr_done
= 0;
1534 subs
->transfer_done
= 0;
1538 /* clear urbs (to be sure) */
1539 deactivate_urbs(subs
, 0, 1);
1540 wait_clear_urbs(subs
);
1542 /* for playback, submit the URBs now; otherwise, the first hwptr_done
1543 * updates for all URBs would happen at the same time when starting */
1544 if (subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
) {
1545 subs
->ops
.prepare
= prepare_nodata_playback_urb
;
1546 return start_urbs(subs
, runtime
);
1551 static struct snd_pcm_hardware snd_usb_hardware
=
1553 .info
= SNDRV_PCM_INFO_MMAP
|
1554 SNDRV_PCM_INFO_MMAP_VALID
|
1555 SNDRV_PCM_INFO_BATCH
|
1556 SNDRV_PCM_INFO_INTERLEAVED
|
1557 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
1558 SNDRV_PCM_INFO_PAUSE
,
1559 .buffer_bytes_max
= 1024 * 1024,
1560 .period_bytes_min
= 64,
1561 .period_bytes_max
= 512 * 1024,
1563 .periods_max
= 1024,
1570 #ifdef HW_CONST_DEBUG
1571 #define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
1573 #define hwc_debug(fmt, args...) /**/
1576 static int hw_check_valid_format(struct snd_usb_substream
*subs
,
1577 struct snd_pcm_hw_params
*params
,
1578 struct audioformat
*fp
)
1580 struct snd_interval
*it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
1581 struct snd_interval
*ct
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
1582 struct snd_mask
*fmts
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
1583 struct snd_interval
*pt
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
);
1586 /* check the format */
1587 if (!snd_mask_test(fmts
, fp
->format
)) {
1588 hwc_debug(" > check: no supported format %d\n", fp
->format
);
1591 /* check the channels */
1592 if (fp
->channels
< ct
->min
|| fp
->channels
> ct
->max
) {
1593 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp
->channels
, ct
->min
, ct
->max
);
1596 /* check the rate is within the range */
1597 if (fp
->rate_min
> it
->max
|| (fp
->rate_min
== it
->max
&& it
->openmax
)) {
1598 hwc_debug(" > check: rate_min %d > max %d\n", fp
->rate_min
, it
->max
);
1601 if (fp
->rate_max
< it
->min
|| (fp
->rate_max
== it
->min
&& it
->openmin
)) {
1602 hwc_debug(" > check: rate_max %d < min %d\n", fp
->rate_max
, it
->min
);
1605 /* check whether the period time is >= the data packet interval */
1606 if (snd_usb_get_speed(subs
->dev
) == USB_SPEED_HIGH
) {
1607 ptime
= 125 * (1 << fp
->datainterval
);
1608 if (ptime
> pt
->max
|| (ptime
== pt
->max
&& pt
->openmax
)) {
1609 hwc_debug(" > check: ptime %u > max %u\n", ptime
, pt
->max
);
1616 static int hw_rule_rate(struct snd_pcm_hw_params
*params
,
1617 struct snd_pcm_hw_rule
*rule
)
1619 struct snd_usb_substream
*subs
= rule
->private;
1620 struct list_head
*p
;
1621 struct snd_interval
*it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
1622 unsigned int rmin
, rmax
;
1625 hwc_debug("hw_rule_rate: (%d,%d)\n", it
->min
, it
->max
);
1628 list_for_each(p
, &subs
->fmt_list
) {
1629 struct audioformat
*fp
;
1630 fp
= list_entry(p
, struct audioformat
, list
);
1631 if (!hw_check_valid_format(subs
, params
, fp
))
1634 if (rmin
> fp
->rate_min
)
1635 rmin
= fp
->rate_min
;
1636 if (rmax
< fp
->rate_max
)
1637 rmax
= fp
->rate_max
;
1639 rmin
= fp
->rate_min
;
1640 rmax
= fp
->rate_max
;
1645 hwc_debug(" --> get empty\n");
1651 if (it
->min
< rmin
) {
1656 if (it
->max
> rmax
) {
1661 if (snd_interval_checkempty(it
)) {
1665 hwc_debug(" --> (%d, %d) (changed = %d)\n", it
->min
, it
->max
, changed
);
1670 static int hw_rule_channels(struct snd_pcm_hw_params
*params
,
1671 struct snd_pcm_hw_rule
*rule
)
1673 struct snd_usb_substream
*subs
= rule
->private;
1674 struct list_head
*p
;
1675 struct snd_interval
*it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
1676 unsigned int rmin
, rmax
;
1679 hwc_debug("hw_rule_channels: (%d,%d)\n", it
->min
, it
->max
);
1682 list_for_each(p
, &subs
->fmt_list
) {
1683 struct audioformat
*fp
;
1684 fp
= list_entry(p
, struct audioformat
, list
);
1685 if (!hw_check_valid_format(subs
, params
, fp
))
1688 if (rmin
> fp
->channels
)
1689 rmin
= fp
->channels
;
1690 if (rmax
< fp
->channels
)
1691 rmax
= fp
->channels
;
1693 rmin
= fp
->channels
;
1694 rmax
= fp
->channels
;
1699 hwc_debug(" --> get empty\n");
1705 if (it
->min
< rmin
) {
1710 if (it
->max
> rmax
) {
1715 if (snd_interval_checkempty(it
)) {
1719 hwc_debug(" --> (%d, %d) (changed = %d)\n", it
->min
, it
->max
, changed
);
1723 static int hw_rule_format(struct snd_pcm_hw_params
*params
,
1724 struct snd_pcm_hw_rule
*rule
)
1726 struct snd_usb_substream
*subs
= rule
->private;
1727 struct list_head
*p
;
1728 struct snd_mask
*fmt
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
1733 hwc_debug("hw_rule_format: %x:%x\n", fmt
->bits
[0], fmt
->bits
[1]);
1735 list_for_each(p
, &subs
->fmt_list
) {
1736 struct audioformat
*fp
;
1737 fp
= list_entry(p
, struct audioformat
, list
);
1738 if (!hw_check_valid_format(subs
, params
, fp
))
1740 fbits
|= (1ULL << fp
->format
);
1743 oldbits
[0] = fmt
->bits
[0];
1744 oldbits
[1] = fmt
->bits
[1];
1745 fmt
->bits
[0] &= (u32
)fbits
;
1746 fmt
->bits
[1] &= (u32
)(fbits
>> 32);
1747 if (!fmt
->bits
[0] && !fmt
->bits
[1]) {
1748 hwc_debug(" --> get empty\n");
1751 changed
= (oldbits
[0] != fmt
->bits
[0] || oldbits
[1] != fmt
->bits
[1]);
1752 hwc_debug(" --> %x:%x (changed = %d)\n", fmt
->bits
[0], fmt
->bits
[1], changed
);
1756 static int hw_rule_period_time(struct snd_pcm_hw_params
*params
,
1757 struct snd_pcm_hw_rule
*rule
)
1759 struct snd_usb_substream
*subs
= rule
->private;
1760 struct audioformat
*fp
;
1761 struct snd_interval
*it
;
1762 unsigned char min_datainterval
;
1766 it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
);
1767 hwc_debug("hw_rule_period_time: (%u,%u)\n", it
->min
, it
->max
);
1768 min_datainterval
= 0xff;
1769 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
1770 if (!hw_check_valid_format(subs
, params
, fp
))
1772 min_datainterval
= min(min_datainterval
, fp
->datainterval
);
1774 if (min_datainterval
== 0xff) {
1775 hwc_debug(" --> get emtpy\n");
1779 pmin
= 125 * (1 << min_datainterval
);
1781 if (it
->min
< pmin
) {
1786 if (snd_interval_checkempty(it
)) {
1790 hwc_debug(" --> (%u,%u) (changed = %d)\n", it
->min
, it
->max
, changed
);
1795 * If the device supports unusual bit rates, does the request meet these?
1797 static int snd_usb_pcm_check_knot(struct snd_pcm_runtime
*runtime
,
1798 struct snd_usb_substream
*subs
)
1800 struct audioformat
*fp
;
1801 int count
= 0, needs_knot
= 0;
1804 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
1805 if (fp
->rates
& SNDRV_PCM_RATE_CONTINUOUS
)
1807 count
+= fp
->nr_rates
;
1808 if (fp
->rates
& SNDRV_PCM_RATE_KNOT
)
1814 subs
->rate_list
.count
= count
;
1815 subs
->rate_list
.list
= kmalloc(sizeof(int) * count
, GFP_KERNEL
);
1816 subs
->rate_list
.mask
= 0;
1818 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
1820 for (i
= 0; i
< fp
->nr_rates
; i
++)
1821 subs
->rate_list
.list
[count
++] = fp
->rate_table
[i
];
1823 err
= snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1833 * set up the runtime hardware information.
1836 static int setup_hw_info(struct snd_pcm_runtime
*runtime
, struct snd_usb_substream
*subs
)
1838 struct list_head
*p
;
1839 unsigned int pt
, ptmin
;
1840 int param_period_time_if_needed
;
1843 runtime
->hw
.formats
= subs
->formats
;
1845 runtime
->hw
.rate_min
= 0x7fffffff;
1846 runtime
->hw
.rate_max
= 0;
1847 runtime
->hw
.channels_min
= 256;
1848 runtime
->hw
.channels_max
= 0;
1849 runtime
->hw
.rates
= 0;
1851 /* check min/max rates and channels */
1852 list_for_each(p
, &subs
->fmt_list
) {
1853 struct audioformat
*fp
;
1854 fp
= list_entry(p
, struct audioformat
, list
);
1855 runtime
->hw
.rates
|= fp
->rates
;
1856 if (runtime
->hw
.rate_min
> fp
->rate_min
)
1857 runtime
->hw
.rate_min
= fp
->rate_min
;
1858 if (runtime
->hw
.rate_max
< fp
->rate_max
)
1859 runtime
->hw
.rate_max
= fp
->rate_max
;
1860 if (runtime
->hw
.channels_min
> fp
->channels
)
1861 runtime
->hw
.channels_min
= fp
->channels
;
1862 if (runtime
->hw
.channels_max
< fp
->channels
)
1863 runtime
->hw
.channels_max
= fp
->channels
;
1864 if (fp
->fmt_type
== USB_FORMAT_TYPE_II
&& fp
->frame_size
> 0) {
1865 /* FIXME: there might be more than one audio formats... */
1866 runtime
->hw
.period_bytes_min
= runtime
->hw
.period_bytes_max
=
1869 pt
= 125 * (1 << fp
->datainterval
);
1870 ptmin
= min(ptmin
, pt
);
1873 param_period_time_if_needed
= SNDRV_PCM_HW_PARAM_PERIOD_TIME
;
1874 if (snd_usb_get_speed(subs
->dev
) != USB_SPEED_HIGH
)
1875 /* full speed devices have fixed data packet interval */
1878 /* if period time doesn't go below 1 ms, no rules needed */
1879 param_period_time_if_needed
= -1;
1880 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
1883 if ((err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1885 SNDRV_PCM_HW_PARAM_FORMAT
,
1886 SNDRV_PCM_HW_PARAM_CHANNELS
,
1887 param_period_time_if_needed
,
1890 if ((err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
1891 hw_rule_channels
, subs
,
1892 SNDRV_PCM_HW_PARAM_FORMAT
,
1893 SNDRV_PCM_HW_PARAM_RATE
,
1894 param_period_time_if_needed
,
1897 if ((err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FORMAT
,
1898 hw_rule_format
, subs
,
1899 SNDRV_PCM_HW_PARAM_RATE
,
1900 SNDRV_PCM_HW_PARAM_CHANNELS
,
1901 param_period_time_if_needed
,
1904 if (param_period_time_if_needed
>= 0) {
1905 err
= snd_pcm_hw_rule_add(runtime
, 0,
1906 SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
1907 hw_rule_period_time
, subs
,
1908 SNDRV_PCM_HW_PARAM_FORMAT
,
1909 SNDRV_PCM_HW_PARAM_CHANNELS
,
1910 SNDRV_PCM_HW_PARAM_RATE
,
1915 if ((err
= snd_usb_pcm_check_knot(runtime
, subs
)) < 0)
1920 static int snd_usb_pcm_open(struct snd_pcm_substream
*substream
, int direction
)
1922 struct snd_usb_stream
*as
= snd_pcm_substream_chip(substream
);
1923 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1924 struct snd_usb_substream
*subs
= &as
->substream
[direction
];
1926 subs
->interface
= -1;
1928 runtime
->hw
= snd_usb_hardware
;
1929 runtime
->private_data
= subs
;
1930 subs
->pcm_substream
= substream
;
1931 return setup_hw_info(runtime
, subs
);
1934 static int snd_usb_pcm_close(struct snd_pcm_substream
*substream
, int direction
)
1936 struct snd_usb_stream
*as
= snd_pcm_substream_chip(substream
);
1937 struct snd_usb_substream
*subs
= &as
->substream
[direction
];
1939 if (subs
->interface
>= 0) {
1940 usb_set_interface(subs
->dev
, subs
->interface
, 0);
1941 subs
->interface
= -1;
1943 subs
->pcm_substream
= NULL
;
1947 static int snd_usb_playback_open(struct snd_pcm_substream
*substream
)
1949 return snd_usb_pcm_open(substream
, SNDRV_PCM_STREAM_PLAYBACK
);
1952 static int snd_usb_playback_close(struct snd_pcm_substream
*substream
)
1954 return snd_usb_pcm_close(substream
, SNDRV_PCM_STREAM_PLAYBACK
);
1957 static int snd_usb_capture_open(struct snd_pcm_substream
*substream
)
1959 return snd_usb_pcm_open(substream
, SNDRV_PCM_STREAM_CAPTURE
);
1962 static int snd_usb_capture_close(struct snd_pcm_substream
*substream
)
1964 return snd_usb_pcm_close(substream
, SNDRV_PCM_STREAM_CAPTURE
);
1967 static struct snd_pcm_ops snd_usb_playback_ops
= {
1968 .open
= snd_usb_playback_open
,
1969 .close
= snd_usb_playback_close
,
1970 .ioctl
= snd_pcm_lib_ioctl
,
1971 .hw_params
= snd_usb_hw_params
,
1972 .hw_free
= snd_usb_hw_free
,
1973 .prepare
= snd_usb_pcm_prepare
,
1974 .trigger
= snd_usb_pcm_playback_trigger
,
1975 .pointer
= snd_usb_pcm_pointer
,
1976 .page
= snd_pcm_get_vmalloc_page
,
1979 static struct snd_pcm_ops snd_usb_capture_ops
= {
1980 .open
= snd_usb_capture_open
,
1981 .close
= snd_usb_capture_close
,
1982 .ioctl
= snd_pcm_lib_ioctl
,
1983 .hw_params
= snd_usb_hw_params
,
1984 .hw_free
= snd_usb_hw_free
,
1985 .prepare
= snd_usb_pcm_prepare
,
1986 .trigger
= snd_usb_pcm_capture_trigger
,
1987 .pointer
= snd_usb_pcm_pointer
,
1988 .page
= snd_pcm_get_vmalloc_page
,
1998 * combine bytes and get an integer value
2000 unsigned int snd_usb_combine_bytes(unsigned char *bytes
, int size
)
2003 case 1: return *bytes
;
2004 case 2: return combine_word(bytes
);
2005 case 3: return combine_triple(bytes
);
2006 case 4: return combine_quad(bytes
);
2012 * parse descriptor buffer and return the pointer starting the given
2015 void *snd_usb_find_desc(void *descstart
, int desclen
, void *after
, u8 dtype
)
2027 if (p
[1] == dtype
&& (!after
|| (void *)p
> after
)) {
2036 * find a class-specified interface descriptor with the given subtype.
2038 void *snd_usb_find_csint_desc(void *buffer
, int buflen
, void *after
, u8 dsubtype
)
2040 unsigned char *p
= after
;
2042 while ((p
= snd_usb_find_desc(buffer
, buflen
, p
,
2043 USB_DT_CS_INTERFACE
)) != NULL
) {
2044 if (p
[0] >= 3 && p
[2] == dsubtype
)
2051 * Wrapper for usb_control_msg().
2052 * Allocates a temp buffer to prevent dmaing from/to the stack.
2054 int snd_usb_ctl_msg(struct usb_device
*dev
, unsigned int pipe
, __u8 request
,
2055 __u8 requesttype
, __u16 value
, __u16 index
, void *data
,
2056 __u16 size
, int timeout
)
2062 buf
= kmemdup(data
, size
, GFP_KERNEL
);
2066 err
= usb_control_msg(dev
, pipe
, request
, requesttype
,
2067 value
, index
, buf
, size
, timeout
);
2069 memcpy(data
, buf
, size
);
2077 * entry point for linux usb interface
2080 static int usb_audio_probe(struct usb_interface
*intf
,
2081 const struct usb_device_id
*id
);
2082 static void usb_audio_disconnect(struct usb_interface
*intf
);
2085 static int usb_audio_suspend(struct usb_interface
*intf
, pm_message_t message
);
2086 static int usb_audio_resume(struct usb_interface
*intf
);
2088 #define usb_audio_suspend NULL
2089 #define usb_audio_resume NULL
2092 static struct usb_device_id usb_audio_ids
[] = {
2093 #include "usbquirks.h"
2094 { .match_flags
= (USB_DEVICE_ID_MATCH_INT_CLASS
| USB_DEVICE_ID_MATCH_INT_SUBCLASS
),
2095 .bInterfaceClass
= USB_CLASS_AUDIO
,
2096 .bInterfaceSubClass
= USB_SUBCLASS_AUDIO_CONTROL
},
2097 { } /* Terminating entry */
2100 MODULE_DEVICE_TABLE (usb
, usb_audio_ids
);
2102 static struct usb_driver usb_audio_driver
= {
2103 .name
= "snd-usb-audio",
2104 .probe
= usb_audio_probe
,
2105 .disconnect
= usb_audio_disconnect
,
2106 .suspend
= usb_audio_suspend
,
2107 .resume
= usb_audio_resume
,
2108 .id_table
= usb_audio_ids
,
2112 #if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS)
2115 * proc interface for list the supported pcm formats
2117 static void proc_dump_substream_formats(struct snd_usb_substream
*subs
, struct snd_info_buffer
*buffer
)
2119 struct list_head
*p
;
2120 static char *sync_types
[4] = {
2121 "NONE", "ASYNC", "ADAPTIVE", "SYNC"
2124 list_for_each(p
, &subs
->fmt_list
) {
2125 struct audioformat
*fp
;
2126 fp
= list_entry(p
, struct audioformat
, list
);
2127 snd_iprintf(buffer
, " Interface %d\n", fp
->iface
);
2128 snd_iprintf(buffer
, " Altset %d\n", fp
->altsetting
);
2129 snd_iprintf(buffer
, " Format: %s\n",
2130 snd_pcm_format_name(fp
->format
));
2131 snd_iprintf(buffer
, " Channels: %d\n", fp
->channels
);
2132 snd_iprintf(buffer
, " Endpoint: %d %s (%s)\n",
2133 fp
->endpoint
& USB_ENDPOINT_NUMBER_MASK
,
2134 fp
->endpoint
& USB_DIR_IN
? "IN" : "OUT",
2135 sync_types
[(fp
->ep_attr
& EP_ATTR_MASK
) >> 2]);
2136 if (fp
->rates
& SNDRV_PCM_RATE_CONTINUOUS
) {
2137 snd_iprintf(buffer
, " Rates: %d - %d (continuous)\n",
2138 fp
->rate_min
, fp
->rate_max
);
2141 snd_iprintf(buffer
, " Rates: ");
2142 for (i
= 0; i
< fp
->nr_rates
; i
++) {
2144 snd_iprintf(buffer
, ", ");
2145 snd_iprintf(buffer
, "%d", fp
->rate_table
[i
]);
2147 snd_iprintf(buffer
, "\n");
2149 if (snd_usb_get_speed(subs
->dev
) == USB_SPEED_HIGH
)
2150 snd_iprintf(buffer
, " Data packet interval: %d us\n",
2151 125 * (1 << fp
->datainterval
));
2152 // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize);
2153 // snd_iprintf(buffer, " EP Attribute = %#x\n", fp->attributes);
2157 static void proc_dump_substream_status(struct snd_usb_substream
*subs
, struct snd_info_buffer
*buffer
)
2159 if (subs
->running
) {
2161 snd_iprintf(buffer
, " Status: Running\n");
2162 snd_iprintf(buffer
, " Interface = %d\n", subs
->interface
);
2163 snd_iprintf(buffer
, " Altset = %d\n", subs
->format
);
2164 snd_iprintf(buffer
, " URBs = %d [ ", subs
->nurbs
);
2165 for (i
= 0; i
< subs
->nurbs
; i
++)
2166 snd_iprintf(buffer
, "%d ", subs
->dataurb
[i
].packets
);
2167 snd_iprintf(buffer
, "]\n");
2168 snd_iprintf(buffer
, " Packet Size = %d\n", subs
->curpacksize
);
2169 snd_iprintf(buffer
, " Momentary freq = %u Hz (%#x.%04x)\n",
2170 snd_usb_get_speed(subs
->dev
) == USB_SPEED_FULL
2171 ? get_full_speed_hz(subs
->freqm
)
2172 : get_high_speed_hz(subs
->freqm
),
2173 subs
->freqm
>> 16, subs
->freqm
& 0xffff);
2175 snd_iprintf(buffer
, " Status: Stop\n");
2179 static void proc_pcm_format_read(struct snd_info_entry
*entry
, struct snd_info_buffer
*buffer
)
2181 struct snd_usb_stream
*stream
= entry
->private_data
;
2183 snd_iprintf(buffer
, "%s : %s\n", stream
->chip
->card
->longname
, stream
->pcm
->name
);
2185 if (stream
->substream
[SNDRV_PCM_STREAM_PLAYBACK
].num_formats
) {
2186 snd_iprintf(buffer
, "\nPlayback:\n");
2187 proc_dump_substream_status(&stream
->substream
[SNDRV_PCM_STREAM_PLAYBACK
], buffer
);
2188 proc_dump_substream_formats(&stream
->substream
[SNDRV_PCM_STREAM_PLAYBACK
], buffer
);
2190 if (stream
->substream
[SNDRV_PCM_STREAM_CAPTURE
].num_formats
) {
2191 snd_iprintf(buffer
, "\nCapture:\n");
2192 proc_dump_substream_status(&stream
->substream
[SNDRV_PCM_STREAM_CAPTURE
], buffer
);
2193 proc_dump_substream_formats(&stream
->substream
[SNDRV_PCM_STREAM_CAPTURE
], buffer
);
2197 static void proc_pcm_format_add(struct snd_usb_stream
*stream
)
2199 struct snd_info_entry
*entry
;
2201 struct snd_card
*card
= stream
->chip
->card
;
2203 sprintf(name
, "stream%d", stream
->pcm_index
);
2204 if (!snd_card_proc_new(card
, name
, &entry
))
2205 snd_info_set_text_ops(entry
, stream
, proc_pcm_format_read
);
2210 static inline void proc_pcm_format_add(struct snd_usb_stream
*stream
)
2217 * initialize the substream instance.
2220 static void init_substream(struct snd_usb_stream
*as
, int stream
, struct audioformat
*fp
)
2222 struct snd_usb_substream
*subs
= &as
->substream
[stream
];
2224 INIT_LIST_HEAD(&subs
->fmt_list
);
2225 spin_lock_init(&subs
->lock
);
2228 subs
->direction
= stream
;
2229 subs
->dev
= as
->chip
->dev
;
2230 if (snd_usb_get_speed(subs
->dev
) == USB_SPEED_FULL
) {
2231 subs
->ops
= audio_urb_ops
[stream
];
2233 subs
->ops
= audio_urb_ops_high_speed
[stream
];
2234 switch (as
->chip
->usb_id
) {
2235 case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
2236 case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
2237 case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */
2238 subs
->ops
.retire_sync
= retire_playback_sync_urb_hs_emu
;
2242 snd_pcm_set_ops(as
->pcm
, stream
,
2243 stream
== SNDRV_PCM_STREAM_PLAYBACK
?
2244 &snd_usb_playback_ops
: &snd_usb_capture_ops
);
2246 list_add_tail(&fp
->list
, &subs
->fmt_list
);
2247 subs
->formats
|= 1ULL << fp
->format
;
2248 subs
->endpoint
= fp
->endpoint
;
2249 subs
->num_formats
++;
2250 subs
->fmt_type
= fp
->fmt_type
;
2257 static void free_substream(struct snd_usb_substream
*subs
)
2259 struct list_head
*p
, *n
;
2261 if (!subs
->num_formats
)
2262 return; /* not initialized */
2263 list_for_each_safe(p
, n
, &subs
->fmt_list
) {
2264 struct audioformat
*fp
= list_entry(p
, struct audioformat
, list
);
2265 kfree(fp
->rate_table
);
2268 kfree(subs
->rate_list
.list
);
2273 * free a usb stream instance
2275 static void snd_usb_audio_stream_free(struct snd_usb_stream
*stream
)
2277 free_substream(&stream
->substream
[0]);
2278 free_substream(&stream
->substream
[1]);
2279 list_del(&stream
->list
);
2283 static void snd_usb_audio_pcm_free(struct snd_pcm
*pcm
)
2285 struct snd_usb_stream
*stream
= pcm
->private_data
;
2288 snd_usb_audio_stream_free(stream
);
2294 * add this endpoint to the chip instance.
2295 * if a stream with the same endpoint already exists, append to it.
2296 * if not, create a new pcm stream.
2298 static int add_audio_endpoint(struct snd_usb_audio
*chip
, int stream
, struct audioformat
*fp
)
2300 struct list_head
*p
;
2301 struct snd_usb_stream
*as
;
2302 struct snd_usb_substream
*subs
;
2303 struct snd_pcm
*pcm
;
2306 list_for_each(p
, &chip
->pcm_list
) {
2307 as
= list_entry(p
, struct snd_usb_stream
, list
);
2308 if (as
->fmt_type
!= fp
->fmt_type
)
2310 subs
= &as
->substream
[stream
];
2311 if (!subs
->endpoint
)
2313 if (subs
->endpoint
== fp
->endpoint
) {
2314 list_add_tail(&fp
->list
, &subs
->fmt_list
);
2315 subs
->num_formats
++;
2316 subs
->formats
|= 1ULL << fp
->format
;
2320 /* look for an empty stream */
2321 list_for_each(p
, &chip
->pcm_list
) {
2322 as
= list_entry(p
, struct snd_usb_stream
, list
);
2323 if (as
->fmt_type
!= fp
->fmt_type
)
2325 subs
= &as
->substream
[stream
];
2328 err
= snd_pcm_new_stream(as
->pcm
, stream
, 1);
2331 init_substream(as
, stream
, fp
);
2335 /* create a new pcm */
2336 as
= kzalloc(sizeof(*as
), GFP_KERNEL
);
2339 as
->pcm_index
= chip
->pcm_devs
;
2341 as
->fmt_type
= fp
->fmt_type
;
2342 err
= snd_pcm_new(chip
->card
, "USB Audio", chip
->pcm_devs
,
2343 stream
== SNDRV_PCM_STREAM_PLAYBACK
? 1 : 0,
2344 stream
== SNDRV_PCM_STREAM_PLAYBACK
? 0 : 1,
2351 pcm
->private_data
= as
;
2352 pcm
->private_free
= snd_usb_audio_pcm_free
;
2353 pcm
->info_flags
= 0;
2354 if (chip
->pcm_devs
> 0)
2355 sprintf(pcm
->name
, "USB Audio #%d", chip
->pcm_devs
);
2357 strcpy(pcm
->name
, "USB Audio");
2359 init_substream(as
, stream
, fp
);
2361 list_add(&as
->list
, &chip
->pcm_list
);
2364 proc_pcm_format_add(as
);
2371 * check if the device uses big-endian samples
2373 static int is_big_endian_format(struct snd_usb_audio
*chip
, struct audioformat
*fp
)
2375 switch (chip
->usb_id
) {
2376 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
2377 if (fp
->endpoint
& USB_DIR_IN
)
2380 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2381 if (device_setup
[chip
->index
] == 0x00 ||
2382 fp
->altsetting
==1 || fp
->altsetting
==2 || fp
->altsetting
==3)
2389 * parse the audio format type I descriptor
2390 * and returns the corresponding pcm format
2393 * @fp: audioformat record
2394 * @format: the format tag (wFormatTag)
2395 * @fmt: the format type descriptor
2397 static int parse_audio_format_i_type(struct snd_usb_audio
*chip
, struct audioformat
*fp
,
2398 int format
, unsigned char *fmt
)
2401 int sample_width
, sample_bytes
;
2403 /* FIXME: correct endianess and sign? */
2405 sample_width
= fmt
[6];
2406 sample_bytes
= fmt
[5];
2408 case 0: /* some devices don't define this correctly... */
2409 snd_printdd(KERN_INFO
"%d:%u:%d : format type 0 is detected, processed as PCM\n",
2410 chip
->dev
->devnum
, fp
->iface
, fp
->altsetting
);
2412 case USB_AUDIO_FORMAT_PCM
:
2413 if (sample_width
> sample_bytes
* 8) {
2414 snd_printk(KERN_INFO
"%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
2415 chip
->dev
->devnum
, fp
->iface
, fp
->altsetting
,
2416 sample_width
, sample_bytes
);
2418 /* check the format byte size */
2421 pcm_format
= SNDRV_PCM_FORMAT_S8
;
2424 if (is_big_endian_format(chip
, fp
))
2425 pcm_format
= SNDRV_PCM_FORMAT_S16_BE
; /* grrr, big endian!! */
2427 pcm_format
= SNDRV_PCM_FORMAT_S16_LE
;
2430 if (is_big_endian_format(chip
, fp
))
2431 pcm_format
= SNDRV_PCM_FORMAT_S24_3BE
; /* grrr, big endian!! */
2433 pcm_format
= SNDRV_PCM_FORMAT_S24_3LE
;
2436 pcm_format
= SNDRV_PCM_FORMAT_S32_LE
;
2439 snd_printk(KERN_INFO
"%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
2440 chip
->dev
->devnum
, fp
->iface
,
2441 fp
->altsetting
, sample_width
, sample_bytes
);
2445 case USB_AUDIO_FORMAT_PCM8
:
2446 pcm_format
= SNDRV_PCM_FORMAT_U8
;
2448 /* Dallas DS4201 workaround: it advertises U8 format, but really
2450 if (chip
->usb_id
== USB_ID(0x04fa, 0x4201))
2451 pcm_format
= SNDRV_PCM_FORMAT_S8
;
2453 case USB_AUDIO_FORMAT_IEEE_FLOAT
:
2454 pcm_format
= SNDRV_PCM_FORMAT_FLOAT_LE
;
2456 case USB_AUDIO_FORMAT_ALAW
:
2457 pcm_format
= SNDRV_PCM_FORMAT_A_LAW
;
2459 case USB_AUDIO_FORMAT_MU_LAW
:
2460 pcm_format
= SNDRV_PCM_FORMAT_MU_LAW
;
2463 snd_printk(KERN_INFO
"%d:%u:%d : unsupported format type %d\n",
2464 chip
->dev
->devnum
, fp
->iface
, fp
->altsetting
, format
);
2472 * parse the format descriptor and stores the possible sample rates
2473 * on the audioformat table.
2476 * @fp: audioformat record
2477 * @fmt: the format descriptor
2478 * @offset: the start offset of descriptor pointing the rate type
2479 * (7 for type I and II, 8 for type II)
2481 static int parse_audio_format_rates(struct snd_usb_audio
*chip
, struct audioformat
*fp
,
2482 unsigned char *fmt
, int offset
)
2484 int nr_rates
= fmt
[offset
];
2486 if (fmt
[0] < offset
+ 1 + 3 * (nr_rates
? nr_rates
: 2)) {
2487 snd_printk(KERN_ERR
"%d:%u:%d : invalid FORMAT_TYPE desc\n",
2488 chip
->dev
->devnum
, fp
->iface
, fp
->altsetting
);
2494 * build the rate table and bitmap flags
2498 fp
->rate_table
= kmalloc(sizeof(int) * nr_rates
, GFP_KERNEL
);
2499 if (fp
->rate_table
== NULL
) {
2500 snd_printk(KERN_ERR
"cannot malloc\n");
2505 fp
->rate_min
= fp
->rate_max
= 0;
2506 for (r
= 0, idx
= offset
+ 1; r
< nr_rates
; r
++, idx
+= 3) {
2507 unsigned int rate
= combine_triple(&fmt
[idx
]);
2510 /* C-Media CM6501 mislabels its 96 kHz altsetting */
2511 if (rate
== 48000 && nr_rates
== 1 &&
2512 (chip
->usb_id
== USB_ID(0x0d8c, 0x0201) ||
2513 chip
->usb_id
== USB_ID(0x0d8c, 0x0102)) &&
2514 fp
->altsetting
== 5 && fp
->maxpacksize
== 392)
2516 fp
->rate_table
[fp
->nr_rates
] = rate
;
2517 if (!fp
->rate_min
|| rate
< fp
->rate_min
)
2518 fp
->rate_min
= rate
;
2519 if (!fp
->rate_max
|| rate
> fp
->rate_max
)
2520 fp
->rate_max
= rate
;
2521 fp
->rates
|= snd_pcm_rate_to_rate_bit(rate
);
2524 if (!fp
->nr_rates
) {
2525 hwc_debug("All rates were zero. Skipping format!\n");
2529 /* continuous rates */
2530 fp
->rates
= SNDRV_PCM_RATE_CONTINUOUS
;
2531 fp
->rate_min
= combine_triple(&fmt
[offset
+ 1]);
2532 fp
->rate_max
= combine_triple(&fmt
[offset
+ 4]);
2538 * parse the format type I and III descriptors
2540 static int parse_audio_format_i(struct snd_usb_audio
*chip
, struct audioformat
*fp
,
2541 int format
, unsigned char *fmt
)
2545 if (fmt
[3] == USB_FORMAT_TYPE_III
) {
2546 /* FIXME: the format type is really IECxxx
2547 * but we give normal PCM format to get the existing
2550 switch (chip
->usb_id
) {
2552 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2553 if (device_setup
[chip
->index
] == 0x00 &&
2554 fp
->altsetting
== 6)
2555 pcm_format
= SNDRV_PCM_FORMAT_S16_BE
;
2557 pcm_format
= SNDRV_PCM_FORMAT_S16_LE
;
2560 pcm_format
= SNDRV_PCM_FORMAT_S16_LE
;
2563 pcm_format
= parse_audio_format_i_type(chip
, fp
, format
, fmt
);
2567 fp
->format
= pcm_format
;
2568 fp
->channels
= fmt
[4];
2569 if (fp
->channels
< 1) {
2570 snd_printk(KERN_ERR
"%d:%u:%d : invalid channels %d\n",
2571 chip
->dev
->devnum
, fp
->iface
, fp
->altsetting
, fp
->channels
);
2574 return parse_audio_format_rates(chip
, fp
, fmt
, 7);
2578 * prase the format type II descriptor
2580 static int parse_audio_format_ii(struct snd_usb_audio
*chip
, struct audioformat
*fp
,
2581 int format
, unsigned char *fmt
)
2583 int brate
, framesize
;
2585 case USB_AUDIO_FORMAT_AC3
:
2586 /* FIXME: there is no AC3 format defined yet */
2587 // fp->format = SNDRV_PCM_FORMAT_AC3;
2588 fp
->format
= SNDRV_PCM_FORMAT_U8
; /* temporarily hack to receive byte streams */
2590 case USB_AUDIO_FORMAT_MPEG
:
2591 fp
->format
= SNDRV_PCM_FORMAT_MPEG
;
2594 snd_printd(KERN_INFO
"%d:%u:%d : unknown format tag %#x is detected. processed as MPEG.\n",
2595 chip
->dev
->devnum
, fp
->iface
, fp
->altsetting
, format
);
2596 fp
->format
= SNDRV_PCM_FORMAT_MPEG
;
2600 brate
= combine_word(&fmt
[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */
2601 framesize
= combine_word(&fmt
[6]); /* fmt[6,7]: wSamplesPerFrame */
2602 snd_printd(KERN_INFO
"found format II with max.bitrate = %d, frame size=%d\n", brate
, framesize
);
2603 fp
->frame_size
= framesize
;
2604 return parse_audio_format_rates(chip
, fp
, fmt
, 8); /* fmt[8..] sample rates */
2607 static int parse_audio_format(struct snd_usb_audio
*chip
, struct audioformat
*fp
,
2608 int format
, unsigned char *fmt
, int stream
)
2613 case USB_FORMAT_TYPE_I
:
2614 case USB_FORMAT_TYPE_III
:
2615 err
= parse_audio_format_i(chip
, fp
, format
, fmt
);
2617 case USB_FORMAT_TYPE_II
:
2618 err
= parse_audio_format_ii(chip
, fp
, format
, fmt
);
2621 snd_printd(KERN_INFO
"%d:%u:%d : format type %d is not supported yet\n",
2622 chip
->dev
->devnum
, fp
->iface
, fp
->altsetting
, fmt
[3]);
2625 fp
->fmt_type
= fmt
[3];
2629 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
2630 /* extigy apparently supports sample rates other than 48k
2631 * but not in ordinary way. so we enable only 48k atm.
2633 if (chip
->usb_id
== USB_ID(0x041e, 0x3000) ||
2634 chip
->usb_id
== USB_ID(0x041e, 0x3020) ||
2635 chip
->usb_id
== USB_ID(0x041e, 0x3061)) {
2636 if (fmt
[3] == USB_FORMAT_TYPE_I
&&
2637 fp
->rates
!= SNDRV_PCM_RATE_48000
&&
2638 fp
->rates
!= SNDRV_PCM_RATE_96000
)
2645 static unsigned char parse_datainterval(struct snd_usb_audio
*chip
,
2646 struct usb_host_interface
*alts
)
2648 if (snd_usb_get_speed(chip
->dev
) == USB_SPEED_HIGH
&&
2649 get_endpoint(alts
, 0)->bInterval
>= 1 &&
2650 get_endpoint(alts
, 0)->bInterval
<= 4)
2651 return get_endpoint(alts
, 0)->bInterval
- 1;
2656 static int audiophile_skip_setting_quirk(struct snd_usb_audio
*chip
,
2657 int iface
, int altno
);
2658 static int parse_audio_endpoints(struct snd_usb_audio
*chip
, int iface_no
)
2660 struct usb_device
*dev
;
2661 struct usb_interface
*iface
;
2662 struct usb_host_interface
*alts
;
2663 struct usb_interface_descriptor
*altsd
;
2664 int i
, altno
, err
, stream
;
2666 struct audioformat
*fp
= NULL
;
2667 unsigned char *fmt
, *csep
;
2672 /* parse the interface's altsettings */
2673 iface
= usb_ifnum_to_if(dev
, iface_no
);
2675 num
= iface
->num_altsetting
;
2678 * Dallas DS4201 workaround: It presents 5 altsettings, but the last
2679 * one misses syncpipe, and does not produce any sound.
2681 if (chip
->usb_id
== USB_ID(0x04fa, 0x4201))
2684 for (i
= 0; i
< num
; i
++) {
2685 alts
= &iface
->altsetting
[i
];
2686 altsd
= get_iface_desc(alts
);
2687 /* skip invalid one */
2688 if ((altsd
->bInterfaceClass
!= USB_CLASS_AUDIO
&&
2689 altsd
->bInterfaceClass
!= USB_CLASS_VENDOR_SPEC
) ||
2690 (altsd
->bInterfaceSubClass
!= USB_SUBCLASS_AUDIO_STREAMING
&&
2691 altsd
->bInterfaceSubClass
!= USB_SUBCLASS_VENDOR_SPEC
) ||
2692 altsd
->bNumEndpoints
< 1 ||
2693 le16_to_cpu(get_endpoint(alts
, 0)->wMaxPacketSize
) == 0)
2695 /* must be isochronous */
2696 if ((get_endpoint(alts
, 0)->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) !=
2697 USB_ENDPOINT_XFER_ISOC
)
2699 /* check direction */
2700 stream
= (get_endpoint(alts
, 0)->bEndpointAddress
& USB_DIR_IN
) ?
2701 SNDRV_PCM_STREAM_CAPTURE
: SNDRV_PCM_STREAM_PLAYBACK
;
2702 altno
= altsd
->bAlternateSetting
;
2704 /* audiophile usb: skip altsets incompatible with device_setup
2706 if (chip
->usb_id
== USB_ID(0x0763, 0x2003) &&
2707 audiophile_skip_setting_quirk(chip
, iface_no
, altno
))
2710 /* get audio formats */
2711 fmt
= snd_usb_find_csint_desc(alts
->extra
, alts
->extralen
, NULL
, AS_GENERAL
);
2713 snd_printk(KERN_ERR
"%d:%u:%d : AS_GENERAL descriptor not found\n",
2714 dev
->devnum
, iface_no
, altno
);
2719 snd_printk(KERN_ERR
"%d:%u:%d : invalid AS_GENERAL desc\n",
2720 dev
->devnum
, iface_no
, altno
);
2724 format
= (fmt
[6] << 8) | fmt
[5]; /* remember the format value */
2726 /* get format type */
2727 fmt
= snd_usb_find_csint_desc(alts
->extra
, alts
->extralen
, NULL
, FORMAT_TYPE
);
2729 snd_printk(KERN_ERR
"%d:%u:%d : no FORMAT_TYPE desc\n",
2730 dev
->devnum
, iface_no
, altno
);
2734 snd_printk(KERN_ERR
"%d:%u:%d : invalid FORMAT_TYPE desc\n",
2735 dev
->devnum
, iface_no
, altno
);
2740 * Blue Microphones workaround: The last altsetting is identical
2741 * with the previous one, except for a larger packet size, but
2742 * is actually a mislabeled two-channel setting; ignore it.
2744 if (fmt
[4] == 1 && fmt
[5] == 2 && altno
== 2 && num
== 3 &&
2745 fp
&& fp
->altsetting
== 1 && fp
->channels
== 1 &&
2746 fp
->format
== SNDRV_PCM_FORMAT_S16_LE
&&
2747 le16_to_cpu(get_endpoint(alts
, 0)->wMaxPacketSize
) ==
2748 fp
->maxpacksize
* 2)
2751 csep
= snd_usb_find_desc(alts
->endpoint
[0].extra
, alts
->endpoint
[0].extralen
, NULL
, USB_DT_CS_ENDPOINT
);
2752 /* Creamware Noah has this descriptor after the 2nd endpoint */
2753 if (!csep
&& altsd
->bNumEndpoints
>= 2)
2754 csep
= snd_usb_find_desc(alts
->endpoint
[1].extra
, alts
->endpoint
[1].extralen
, NULL
, USB_DT_CS_ENDPOINT
);
2755 if (!csep
|| csep
[0] < 7 || csep
[2] != EP_GENERAL
) {
2756 snd_printk(KERN_WARNING
"%d:%u:%d : no or invalid"
2757 " class specific endpoint descriptor\n",
2758 dev
->devnum
, iface_no
, altno
);
2762 fp
= kzalloc(sizeof(*fp
), GFP_KERNEL
);
2764 snd_printk(KERN_ERR
"cannot malloc\n");
2768 fp
->iface
= iface_no
;
2769 fp
->altsetting
= altno
;
2771 fp
->endpoint
= get_endpoint(alts
, 0)->bEndpointAddress
;
2772 fp
->ep_attr
= get_endpoint(alts
, 0)->bmAttributes
;
2773 fp
->datainterval
= parse_datainterval(chip
, alts
);
2774 fp
->maxpacksize
= le16_to_cpu(get_endpoint(alts
, 0)->wMaxPacketSize
);
2775 if (snd_usb_get_speed(dev
) == USB_SPEED_HIGH
)
2776 fp
->maxpacksize
= (((fp
->maxpacksize
>> 11) & 3) + 1)
2777 * (fp
->maxpacksize
& 0x7ff);
2778 fp
->attributes
= csep
? csep
[3] : 0;
2780 /* some quirks for attributes here */
2782 switch (chip
->usb_id
) {
2783 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
2784 /* Optoplay sets the sample rate attribute although
2785 * it seems not supporting it in fact.
2787 fp
->attributes
&= ~EP_CS_ATTR_SAMPLE_RATE
;
2789 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
2790 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2791 /* doesn't set the sample rate attribute, but supports it */
2792 fp
->attributes
|= EP_CS_ATTR_SAMPLE_RATE
;
2794 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
2795 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
2796 an older model 77d:223) */
2798 * plantronics headset and Griffin iMic have set adaptive-in
2799 * although it's really not...
2801 fp
->ep_attr
&= ~EP_ATTR_MASK
;
2802 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
2803 fp
->ep_attr
|= EP_ATTR_ADAPTIVE
;
2805 fp
->ep_attr
|= EP_ATTR_SYNC
;
2809 /* ok, let's parse further... */
2810 if (parse_audio_format(chip
, fp
, format
, fmt
, stream
) < 0) {
2811 kfree(fp
->rate_table
);
2816 snd_printdd(KERN_INFO
"%d:%u:%d: add audio endpoint %#x\n", dev
->devnum
, iface_no
, altno
, fp
->endpoint
);
2817 err
= add_audio_endpoint(chip
, stream
, fp
);
2819 kfree(fp
->rate_table
);
2823 /* try to set the interface... */
2824 usb_set_interface(chip
->dev
, iface_no
, altno
);
2825 init_usb_pitch(chip
->dev
, iface_no
, alts
, fp
);
2826 init_usb_sample_rate(chip
->dev
, iface_no
, alts
, fp
, fp
->rate_max
);
2833 * disconnect streams
2834 * called from snd_usb_audio_disconnect()
2836 static void snd_usb_stream_disconnect(struct list_head
*head
)
2839 struct snd_usb_stream
*as
;
2840 struct snd_usb_substream
*subs
;
2842 as
= list_entry(head
, struct snd_usb_stream
, list
);
2843 for (idx
= 0; idx
< 2; idx
++) {
2844 subs
= &as
->substream
[idx
];
2845 if (!subs
->num_formats
)
2847 release_substream_urbs(subs
, 1);
2848 subs
->interface
= -1;
2853 * parse audio control descriptor and create pcm/midi streams
2855 static int snd_usb_create_streams(struct snd_usb_audio
*chip
, int ctrlif
)
2857 struct usb_device
*dev
= chip
->dev
;
2858 struct usb_host_interface
*host_iface
;
2859 struct usb_interface
*iface
;
2863 /* find audiocontrol interface */
2864 host_iface
= &usb_ifnum_to_if(dev
, ctrlif
)->altsetting
[0];
2865 if (!(p1
= snd_usb_find_csint_desc(host_iface
->extra
, host_iface
->extralen
, NULL
, HEADER
))) {
2866 snd_printk(KERN_ERR
"cannot find HEADER\n");
2869 if (! p1
[7] || p1
[0] < 8 + p1
[7]) {
2870 snd_printk(KERN_ERR
"invalid HEADER\n");
2875 * parse all USB audio streaming interfaces
2877 for (i
= 0; i
< p1
[7]; i
++) {
2878 struct usb_host_interface
*alts
;
2879 struct usb_interface_descriptor
*altsd
;
2881 iface
= usb_ifnum_to_if(dev
, j
);
2883 snd_printk(KERN_ERR
"%d:%u:%d : does not exist\n",
2884 dev
->devnum
, ctrlif
, j
);
2887 if (usb_interface_claimed(iface
)) {
2888 snd_printdd(KERN_INFO
"%d:%d:%d: skipping, already claimed\n", dev
->devnum
, ctrlif
, j
);
2891 alts
= &iface
->altsetting
[0];
2892 altsd
= get_iface_desc(alts
);
2893 if ((altsd
->bInterfaceClass
== USB_CLASS_AUDIO
||
2894 altsd
->bInterfaceClass
== USB_CLASS_VENDOR_SPEC
) &&
2895 altsd
->bInterfaceSubClass
== USB_SUBCLASS_MIDI_STREAMING
) {
2896 int err
= snd_usbmidi_create(chip
->card
, iface
,
2897 &chip
->midi_list
, NULL
);
2899 snd_printk(KERN_ERR
"%d:%u:%d: cannot create sequencer device\n", dev
->devnum
, ctrlif
, j
);
2902 usb_driver_claim_interface(&usb_audio_driver
, iface
, (void *)-1L);
2905 if ((altsd
->bInterfaceClass
!= USB_CLASS_AUDIO
&&
2906 altsd
->bInterfaceClass
!= USB_CLASS_VENDOR_SPEC
) ||
2907 altsd
->bInterfaceSubClass
!= USB_SUBCLASS_AUDIO_STREAMING
) {
2908 snd_printdd(KERN_ERR
"%d:%u:%d: skipping non-supported interface %d\n", dev
->devnum
, ctrlif
, j
, altsd
->bInterfaceClass
);
2909 /* skip non-supported classes */
2912 if (snd_usb_get_speed(dev
) == USB_SPEED_LOW
) {
2913 snd_printk(KERN_ERR
"low speed audio streaming not supported\n");
2916 if (! parse_audio_endpoints(chip
, j
)) {
2917 usb_set_interface(dev
, j
, 0); /* reset the current interface */
2918 usb_driver_claim_interface(&usb_audio_driver
, iface
, (void *)-1L);
2926 * create a stream for an endpoint/altsetting without proper descriptors
2928 static int create_fixed_stream_quirk(struct snd_usb_audio
*chip
,
2929 struct usb_interface
*iface
,
2930 const struct snd_usb_audio_quirk
*quirk
)
2932 struct audioformat
*fp
;
2933 struct usb_host_interface
*alts
;
2935 unsigned *rate_table
= NULL
;
2937 fp
= kmemdup(quirk
->data
, sizeof(*fp
), GFP_KERNEL
);
2939 snd_printk(KERN_ERR
"cannot memdup\n");
2942 if (fp
->nr_rates
> 0) {
2943 rate_table
= kmalloc(sizeof(int) * fp
->nr_rates
, GFP_KERNEL
);
2948 memcpy(rate_table
, fp
->rate_table
, sizeof(int) * fp
->nr_rates
);
2949 fp
->rate_table
= rate_table
;
2952 stream
= (fp
->endpoint
& USB_DIR_IN
)
2953 ? SNDRV_PCM_STREAM_CAPTURE
: SNDRV_PCM_STREAM_PLAYBACK
;
2954 err
= add_audio_endpoint(chip
, stream
, fp
);
2960 if (fp
->iface
!= get_iface_desc(&iface
->altsetting
[0])->bInterfaceNumber
||
2961 fp
->altset_idx
>= iface
->num_altsetting
) {
2966 alts
= &iface
->altsetting
[fp
->altset_idx
];
2967 fp
->datainterval
= parse_datainterval(chip
, alts
);
2968 fp
->maxpacksize
= le16_to_cpu(get_endpoint(alts
, 0)->wMaxPacketSize
);
2969 usb_set_interface(chip
->dev
, fp
->iface
, 0);
2970 init_usb_pitch(chip
->dev
, fp
->iface
, alts
, fp
);
2971 init_usb_sample_rate(chip
->dev
, fp
->iface
, alts
, fp
, fp
->rate_max
);
2976 * create a stream for an interface with proper descriptors
2978 static int create_standard_audio_quirk(struct snd_usb_audio
*chip
,
2979 struct usb_interface
*iface
,
2980 const struct snd_usb_audio_quirk
*quirk
)
2982 struct usb_host_interface
*alts
;
2983 struct usb_interface_descriptor
*altsd
;
2986 alts
= &iface
->altsetting
[0];
2987 altsd
= get_iface_desc(alts
);
2988 err
= parse_audio_endpoints(chip
, altsd
->bInterfaceNumber
);
2990 snd_printk(KERN_ERR
"cannot setup if %d: error %d\n",
2991 altsd
->bInterfaceNumber
, err
);
2994 /* reset the current interface */
2995 usb_set_interface(chip
->dev
, altsd
->bInterfaceNumber
, 0);
3000 * Create a stream for an Edirol UA-700/UA-25/UA-4FX interface.
3001 * The only way to detect the sample rate is by looking at wMaxPacketSize.
3003 static int create_uaxx_quirk(struct snd_usb_audio
*chip
,
3004 struct usb_interface
*iface
,
3005 const struct snd_usb_audio_quirk
*quirk
)
3007 static const struct audioformat ua_format
= {
3008 .format
= SNDRV_PCM_FORMAT_S24_3LE
,
3010 .fmt_type
= USB_FORMAT_TYPE_I
,
3013 .rates
= SNDRV_PCM_RATE_CONTINUOUS
,
3015 struct usb_host_interface
*alts
;
3016 struct usb_interface_descriptor
*altsd
;
3017 struct audioformat
*fp
;
3020 /* both PCM and MIDI interfaces have 2 or more altsettings */
3021 if (iface
->num_altsetting
< 2)
3023 alts
= &iface
->altsetting
[1];
3024 altsd
= get_iface_desc(alts
);
3026 if (altsd
->bNumEndpoints
== 2) {
3027 static const struct snd_usb_midi_endpoint_info ua700_ep
= {
3028 .out_cables
= 0x0003,
3031 static const struct snd_usb_audio_quirk ua700_quirk
= {
3032 .type
= QUIRK_MIDI_FIXED_ENDPOINT
,
3035 static const struct snd_usb_midi_endpoint_info uaxx_ep
= {
3036 .out_cables
= 0x0001,
3039 static const struct snd_usb_audio_quirk uaxx_quirk
= {
3040 .type
= QUIRK_MIDI_FIXED_ENDPOINT
,
3043 const struct snd_usb_audio_quirk
*quirk
=
3044 chip
->usb_id
== USB_ID(0x0582, 0x002b)
3045 ? &ua700_quirk
: &uaxx_quirk
;
3046 return snd_usbmidi_create(chip
->card
, iface
,
3047 &chip
->midi_list
, quirk
);
3050 if (altsd
->bNumEndpoints
!= 1)
3053 fp
= kmalloc(sizeof(*fp
), GFP_KERNEL
);
3056 memcpy(fp
, &ua_format
, sizeof(*fp
));
3058 fp
->iface
= altsd
->bInterfaceNumber
;
3059 fp
->endpoint
= get_endpoint(alts
, 0)->bEndpointAddress
;
3060 fp
->ep_attr
= get_endpoint(alts
, 0)->bmAttributes
;
3061 fp
->datainterval
= 0;
3062 fp
->maxpacksize
= le16_to_cpu(get_endpoint(alts
, 0)->wMaxPacketSize
);
3064 switch (fp
->maxpacksize
) {
3066 fp
->rate_max
= fp
->rate_min
= 44100;
3070 fp
->rate_max
= fp
->rate_min
= 48000;
3074 fp
->rate_max
= fp
->rate_min
= 96000;
3077 snd_printk(KERN_ERR
"unknown sample rate\n");
3082 stream
= (fp
->endpoint
& USB_DIR_IN
)
3083 ? SNDRV_PCM_STREAM_CAPTURE
: SNDRV_PCM_STREAM_PLAYBACK
;
3084 err
= add_audio_endpoint(chip
, stream
, fp
);
3089 usb_set_interface(chip
->dev
, fp
->iface
, 0);
3094 * Create a stream for an Edirol UA-1000 interface.
3096 static int create_ua1000_quirk(struct snd_usb_audio
*chip
,
3097 struct usb_interface
*iface
,
3098 const struct snd_usb_audio_quirk
*quirk
)
3100 static const struct audioformat ua1000_format
= {
3101 .format
= SNDRV_PCM_FORMAT_S32_LE
,
3102 .fmt_type
= USB_FORMAT_TYPE_I
,
3106 .rates
= SNDRV_PCM_RATE_CONTINUOUS
,
3108 struct usb_host_interface
*alts
;
3109 struct usb_interface_descriptor
*altsd
;
3110 struct audioformat
*fp
;
3113 if (iface
->num_altsetting
!= 2)
3115 alts
= &iface
->altsetting
[1];
3116 altsd
= get_iface_desc(alts
);
3117 if (alts
->extralen
!= 11 || alts
->extra
[1] != USB_DT_CS_INTERFACE
||
3118 altsd
->bNumEndpoints
!= 1)
3121 fp
= kmemdup(&ua1000_format
, sizeof(*fp
), GFP_KERNEL
);
3125 fp
->channels
= alts
->extra
[4];
3126 fp
->iface
= altsd
->bInterfaceNumber
;
3127 fp
->endpoint
= get_endpoint(alts
, 0)->bEndpointAddress
;
3128 fp
->ep_attr
= get_endpoint(alts
, 0)->bmAttributes
;
3129 fp
->datainterval
= parse_datainterval(chip
, alts
);
3130 fp
->maxpacksize
= le16_to_cpu(get_endpoint(alts
, 0)->wMaxPacketSize
);
3131 fp
->rate_max
= fp
->rate_min
= combine_triple(&alts
->extra
[8]);
3133 stream
= (fp
->endpoint
& USB_DIR_IN
)
3134 ? SNDRV_PCM_STREAM_CAPTURE
: SNDRV_PCM_STREAM_PLAYBACK
;
3135 err
= add_audio_endpoint(chip
, stream
, fp
);
3140 /* FIXME: playback must be synchronized to capture */
3141 usb_set_interface(chip
->dev
, fp
->iface
, 0);
3146 * Create a stream for an Edirol UA-101 interface.
3147 * Copy, paste and modify from Edirol UA-1000
3149 static int create_ua101_quirk(struct snd_usb_audio
*chip
,
3150 struct usb_interface
*iface
,
3151 const struct snd_usb_audio_quirk
*quirk
)
3153 static const struct audioformat ua101_format
= {
3154 .format
= SNDRV_PCM_FORMAT_S32_LE
,
3155 .fmt_type
= USB_FORMAT_TYPE_I
,
3159 .rates
= SNDRV_PCM_RATE_CONTINUOUS
,
3161 struct usb_host_interface
*alts
;
3162 struct usb_interface_descriptor
*altsd
;
3163 struct audioformat
*fp
;
3166 if (iface
->num_altsetting
!= 2)
3168 alts
= &iface
->altsetting
[1];
3169 altsd
= get_iface_desc(alts
);
3170 if (alts
->extralen
!= 18 || alts
->extra
[1] != USB_DT_CS_INTERFACE
||
3171 altsd
->bNumEndpoints
!= 1)
3174 fp
= kmemdup(&ua101_format
, sizeof(*fp
), GFP_KERNEL
);
3178 fp
->channels
= alts
->extra
[11];
3179 fp
->iface
= altsd
->bInterfaceNumber
;
3180 fp
->endpoint
= get_endpoint(alts
, 0)->bEndpointAddress
;
3181 fp
->ep_attr
= get_endpoint(alts
, 0)->bmAttributes
;
3182 fp
->datainterval
= parse_datainterval(chip
, alts
);
3183 fp
->maxpacksize
= le16_to_cpu(get_endpoint(alts
, 0)->wMaxPacketSize
);
3184 fp
->rate_max
= fp
->rate_min
= combine_triple(&alts
->extra
[15]);
3186 stream
= (fp
->endpoint
& USB_DIR_IN
)
3187 ? SNDRV_PCM_STREAM_CAPTURE
: SNDRV_PCM_STREAM_PLAYBACK
;
3188 err
= add_audio_endpoint(chip
, stream
, fp
);
3193 /* FIXME: playback must be synchronized to capture */
3194 usb_set_interface(chip
->dev
, fp
->iface
, 0);
3198 static int snd_usb_create_quirk(struct snd_usb_audio
*chip
,
3199 struct usb_interface
*iface
,
3200 const struct snd_usb_audio_quirk
*quirk
);
3203 * handle the quirks for the contained interfaces
3205 static int create_composite_quirk(struct snd_usb_audio
*chip
,
3206 struct usb_interface
*iface
,
3207 const struct snd_usb_audio_quirk
*quirk
)
3209 int probed_ifnum
= get_iface_desc(iface
->altsetting
)->bInterfaceNumber
;
3212 for (quirk
= quirk
->data
; quirk
->ifnum
>= 0; ++quirk
) {
3213 iface
= usb_ifnum_to_if(chip
->dev
, quirk
->ifnum
);
3216 if (quirk
->ifnum
!= probed_ifnum
&&
3217 usb_interface_claimed(iface
))
3219 err
= snd_usb_create_quirk(chip
, iface
, quirk
);
3222 if (quirk
->ifnum
!= probed_ifnum
)
3223 usb_driver_claim_interface(&usb_audio_driver
, iface
, (void *)-1L);
3228 static int ignore_interface_quirk(struct snd_usb_audio
*chip
,
3229 struct usb_interface
*iface
,
3230 const struct snd_usb_audio_quirk
*quirk
)
3240 #define EXTIGY_FIRMWARE_SIZE_OLD 794
3241 #define EXTIGY_FIRMWARE_SIZE_NEW 483
3243 static int snd_usb_extigy_boot_quirk(struct usb_device
*dev
, struct usb_interface
*intf
)
3245 struct usb_host_config
*config
= dev
->actconfig
;
3248 if (le16_to_cpu(get_cfg_desc(config
)->wTotalLength
) == EXTIGY_FIRMWARE_SIZE_OLD
||
3249 le16_to_cpu(get_cfg_desc(config
)->wTotalLength
) == EXTIGY_FIRMWARE_SIZE_NEW
) {
3250 snd_printdd("sending Extigy boot sequence...\n");
3251 /* Send message to force it to reconnect with full interface. */
3252 err
= snd_usb_ctl_msg(dev
, usb_sndctrlpipe(dev
,0),
3253 0x10, 0x43, 0x0001, 0x000a, NULL
, 0, 1000);
3254 if (err
< 0) snd_printdd("error sending boot message: %d\n", err
);
3255 err
= usb_get_descriptor(dev
, USB_DT_DEVICE
, 0,
3256 &dev
->descriptor
, sizeof(dev
->descriptor
));
3257 config
= dev
->actconfig
;
3258 if (err
< 0) snd_printdd("error usb_get_descriptor: %d\n", err
);
3259 err
= usb_reset_configuration(dev
);
3260 if (err
< 0) snd_printdd("error usb_reset_configuration: %d\n", err
);
3261 snd_printdd("extigy_boot: new boot length = %d\n",
3262 le16_to_cpu(get_cfg_desc(config
)->wTotalLength
));
3263 return -ENODEV
; /* quit this anyway */
3268 static int snd_usb_audigy2nx_boot_quirk(struct usb_device
*dev
)
3272 snd_usb_ctl_msg(dev
, usb_rcvctrlpipe(dev
, 0), 0x2a,
3273 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
3274 0, 0, &buf
, 1, 1000);
3276 snd_usb_ctl_msg(dev
, usb_sndctrlpipe(dev
, 0), 0x29,
3277 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
3278 1, 2000, NULL
, 0, 1000);
3285 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
3286 * documented in the device's data sheet.
3288 static int snd_usb_cm106_write_int_reg(struct usb_device
*dev
, int reg
, u16 value
)
3292 buf
[1] = value
& 0xff;
3293 buf
[2] = (value
>> 8) & 0xff;
3295 return snd_usb_ctl_msg(dev
, usb_sndctrlpipe(dev
, 0), USB_REQ_SET_CONFIGURATION
,
3296 USB_DIR_OUT
| USB_TYPE_CLASS
| USB_RECIP_ENDPOINT
,
3297 0, 0, &buf
, 4, 1000);
3300 static int snd_usb_cm106_boot_quirk(struct usb_device
*dev
)
3303 * Enable line-out driver mode, set headphone source to front
3304 * channels, enable stereo mic.
3306 return snd_usb_cm106_write_int_reg(dev
, 2, 0x8004);
3310 * C-Media CM6206 is based on CM106 with two additional
3311 * registers that are not documented in the data sheet.
3312 * Values here are chosen based on sniffing USB traffic
3315 static int snd_usb_cm6206_boot_quirk(struct usb_device
*dev
)
3318 int val
[] = {0x200c, 0x3000, 0xf800, 0x143f, 0x0000, 0x3000};
3320 for (reg
= 0; reg
< ARRAY_SIZE(val
); reg
++) {
3321 err
= snd_usb_cm106_write_int_reg(dev
, reg
, val
[reg
]);
3332 #define AUDIOPHILE_SET 0x01 /* if set, parse device_setup */
3333 #define AUDIOPHILE_SET_DTS 0x02 /* if set, enable DTS Digital Output */
3334 #define AUDIOPHILE_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
3335 #define AUDIOPHILE_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */
3336 #define AUDIOPHILE_SET_DI 0x10 /* if set, enable Digital Input */
3337 #define AUDIOPHILE_SET_MASK 0x1F /* bit mask for setup value */
3338 #define AUDIOPHILE_SET_24B_48K_DI 0x19 /* value for 24bits+48KHz+Digital Input */
3339 #define AUDIOPHILE_SET_24B_48K_NOTDI 0x09 /* value for 24bits+48KHz+No Digital Input */
3340 #define AUDIOPHILE_SET_16B_48K_DI 0x11 /* value for 16bits+48KHz+Digital Input */
3341 #define AUDIOPHILE_SET_16B_48K_NOTDI 0x01 /* value for 16bits+48KHz+No Digital Input */
3343 static int audiophile_skip_setting_quirk(struct snd_usb_audio
*chip
,
3344 int iface
, int altno
)
3346 /* Reset ALL ifaces to 0 altsetting.
3347 * Call it for every possible altsetting of every interface.
3349 usb_set_interface(chip
->dev
, iface
, 0);
3351 if (device_setup
[chip
->index
] & AUDIOPHILE_SET
) {
3352 if ((device_setup
[chip
->index
] & AUDIOPHILE_SET_DTS
)
3354 return 1; /* skip this altsetting */
3355 if ((device_setup
[chip
->index
] & AUDIOPHILE_SET_96K
)
3357 return 1; /* skip this altsetting */
3358 if ((device_setup
[chip
->index
] & AUDIOPHILE_SET_MASK
) ==
3359 AUDIOPHILE_SET_24B_48K_DI
&& altno
!= 2)
3360 return 1; /* skip this altsetting */
3361 if ((device_setup
[chip
->index
] & AUDIOPHILE_SET_MASK
) ==
3362 AUDIOPHILE_SET_24B_48K_NOTDI
&& altno
!= 3)
3363 return 1; /* skip this altsetting */
3364 if ((device_setup
[chip
->index
] & AUDIOPHILE_SET_MASK
) ==
3365 AUDIOPHILE_SET_16B_48K_DI
&& altno
!= 4)
3366 return 1; /* skip this altsetting */
3367 if ((device_setup
[chip
->index
] & AUDIOPHILE_SET_MASK
) ==
3368 AUDIOPHILE_SET_16B_48K_NOTDI
&& altno
!= 5)
3369 return 1; /* skip this altsetting */
3371 return 0; /* keep this altsetting */
3374 static int create_any_midi_quirk(struct snd_usb_audio
*chip
,
3375 struct usb_interface
*intf
,
3376 const struct snd_usb_audio_quirk
*quirk
)
3378 return snd_usbmidi_create(chip
->card
, intf
, &chip
->midi_list
, quirk
);
3382 * audio-interface quirks
3384 * returns zero if no standard audio/MIDI parsing is needed.
3385 * returns a postive value if standard audio/midi interfaces are parsed
3387 * returns a negative value at error.
3389 static int snd_usb_create_quirk(struct snd_usb_audio
*chip
,
3390 struct usb_interface
*iface
,
3391 const struct snd_usb_audio_quirk
*quirk
)
3393 typedef int (*quirk_func_t
)(struct snd_usb_audio
*, struct usb_interface
*,
3394 const struct snd_usb_audio_quirk
*);
3395 static const quirk_func_t quirk_funcs
[] = {
3396 [QUIRK_IGNORE_INTERFACE
] = ignore_interface_quirk
,
3397 [QUIRK_COMPOSITE
] = create_composite_quirk
,
3398 [QUIRK_MIDI_STANDARD_INTERFACE
] = create_any_midi_quirk
,
3399 [QUIRK_MIDI_FIXED_ENDPOINT
] = create_any_midi_quirk
,
3400 [QUIRK_MIDI_YAMAHA
] = create_any_midi_quirk
,
3401 [QUIRK_MIDI_MIDIMAN
] = create_any_midi_quirk
,
3402 [QUIRK_MIDI_NOVATION
] = create_any_midi_quirk
,
3403 [QUIRK_MIDI_FASTLANE
] = create_any_midi_quirk
,
3404 [QUIRK_MIDI_EMAGIC
] = create_any_midi_quirk
,
3405 [QUIRK_MIDI_CME
] = create_any_midi_quirk
,
3406 [QUIRK_AUDIO_STANDARD_INTERFACE
] = create_standard_audio_quirk
,
3407 [QUIRK_AUDIO_FIXED_ENDPOINT
] = create_fixed_stream_quirk
,
3408 [QUIRK_AUDIO_EDIROL_UA1000
] = create_ua1000_quirk
,
3409 [QUIRK_AUDIO_EDIROL_UA101
] = create_ua101_quirk
,
3410 [QUIRK_AUDIO_EDIROL_UAXX
] = create_uaxx_quirk
3413 if (quirk
->type
< QUIRK_TYPE_COUNT
) {
3414 return quirk_funcs
[quirk
->type
](chip
, iface
, quirk
);
3416 snd_printd(KERN_ERR
"invalid quirk type %d\n", quirk
->type
);
3423 * common proc files to show the usb device info
3425 static void proc_audio_usbbus_read(struct snd_info_entry
*entry
, struct snd_info_buffer
*buffer
)
3427 struct snd_usb_audio
*chip
= entry
->private_data
;
3428 if (!chip
->shutdown
)
3429 snd_iprintf(buffer
, "%03d/%03d\n", chip
->dev
->bus
->busnum
, chip
->dev
->devnum
);
3432 static void proc_audio_usbid_read(struct snd_info_entry
*entry
, struct snd_info_buffer
*buffer
)
3434 struct snd_usb_audio
*chip
= entry
->private_data
;
3435 if (!chip
->shutdown
)
3436 snd_iprintf(buffer
, "%04x:%04x\n",
3437 USB_ID_VENDOR(chip
->usb_id
),
3438 USB_ID_PRODUCT(chip
->usb_id
));
3441 static void snd_usb_audio_create_proc(struct snd_usb_audio
*chip
)
3443 struct snd_info_entry
*entry
;
3444 if (!snd_card_proc_new(chip
->card
, "usbbus", &entry
))
3445 snd_info_set_text_ops(entry
, chip
, proc_audio_usbbus_read
);
3446 if (!snd_card_proc_new(chip
->card
, "usbid", &entry
))
3447 snd_info_set_text_ops(entry
, chip
, proc_audio_usbid_read
);
3451 * free the chip instance
3453 * here we have to do not much, since pcm and controls are already freed
3457 static int snd_usb_audio_free(struct snd_usb_audio
*chip
)
3463 static int snd_usb_audio_dev_free(struct snd_device
*device
)
3465 struct snd_usb_audio
*chip
= device
->device_data
;
3466 return snd_usb_audio_free(chip
);
3471 * create a chip instance and set its names.
3473 static int snd_usb_audio_create(struct usb_device
*dev
, int idx
,
3474 const struct snd_usb_audio_quirk
*quirk
,
3475 struct snd_usb_audio
**rchip
)
3477 struct snd_card
*card
;
3478 struct snd_usb_audio
*chip
;
3481 static struct snd_device_ops ops
= {
3482 .dev_free
= snd_usb_audio_dev_free
,
3487 if (snd_usb_get_speed(dev
) != USB_SPEED_LOW
&&
3488 snd_usb_get_speed(dev
) != USB_SPEED_FULL
&&
3489 snd_usb_get_speed(dev
) != USB_SPEED_HIGH
) {
3490 snd_printk(KERN_ERR
"unknown device speed %d\n", snd_usb_get_speed(dev
));
3494 err
= snd_card_create(index
[idx
], id
[idx
], THIS_MODULE
, 0, &card
);
3496 snd_printk(KERN_ERR
"cannot create card instance %d\n", idx
);
3500 chip
= kzalloc(sizeof(*chip
), GFP_KERNEL
);
3502 snd_card_free(card
);
3509 chip
->usb_id
= USB_ID(le16_to_cpu(dev
->descriptor
.idVendor
),
3510 le16_to_cpu(dev
->descriptor
.idProduct
));
3511 INIT_LIST_HEAD(&chip
->pcm_list
);
3512 INIT_LIST_HEAD(&chip
->midi_list
);
3513 INIT_LIST_HEAD(&chip
->mixer_list
);
3515 if ((err
= snd_device_new(card
, SNDRV_DEV_LOWLEVEL
, chip
, &ops
)) < 0) {
3516 snd_usb_audio_free(chip
);
3517 snd_card_free(card
);
3521 strcpy(card
->driver
, "USB-Audio");
3522 sprintf(component
, "USB%04x:%04x",
3523 USB_ID_VENDOR(chip
->usb_id
), USB_ID_PRODUCT(chip
->usb_id
));
3524 snd_component_add(card
, component
);
3526 /* retrieve the device string as shortname */
3527 if (quirk
&& quirk
->product_name
) {
3528 strlcpy(card
->shortname
, quirk
->product_name
, sizeof(card
->shortname
));
3530 if (!dev
->descriptor
.iProduct
||
3531 usb_string(dev
, dev
->descriptor
.iProduct
,
3532 card
->shortname
, sizeof(card
->shortname
)) <= 0) {
3533 /* no name available from anywhere, so use ID */
3534 sprintf(card
->shortname
, "USB Device %#04x:%#04x",
3535 USB_ID_VENDOR(chip
->usb_id
),
3536 USB_ID_PRODUCT(chip
->usb_id
));
3540 /* retrieve the vendor and device strings as longname */
3541 if (quirk
&& quirk
->vendor_name
) {
3542 len
= strlcpy(card
->longname
, quirk
->vendor_name
, sizeof(card
->longname
));
3544 if (dev
->descriptor
.iManufacturer
)
3545 len
= usb_string(dev
, dev
->descriptor
.iManufacturer
,
3546 card
->longname
, sizeof(card
->longname
));
3549 /* we don't really care if there isn't any vendor string */
3552 strlcat(card
->longname
, " ", sizeof(card
->longname
));
3554 strlcat(card
->longname
, card
->shortname
, sizeof(card
->longname
));
3556 len
= strlcat(card
->longname
, " at ", sizeof(card
->longname
));
3558 if (len
< sizeof(card
->longname
))
3559 usb_make_path(dev
, card
->longname
+ len
, sizeof(card
->longname
) - len
);
3561 strlcat(card
->longname
,
3562 snd_usb_get_speed(dev
) == USB_SPEED_LOW
? ", low speed" :
3563 snd_usb_get_speed(dev
) == USB_SPEED_FULL
? ", full speed" :
3565 sizeof(card
->longname
));
3567 snd_usb_audio_create_proc(chip
);
3575 * probe the active usb device
3577 * note that this can be called multiple times per a device, when it
3578 * includes multiple audio control interfaces.
3580 * thus we check the usb device pointer and creates the card instance
3581 * only at the first time. the successive calls of this function will
3582 * append the pcm interface to the corresponding card.
3584 static void *snd_usb_audio_probe(struct usb_device
*dev
,
3585 struct usb_interface
*intf
,
3586 const struct usb_device_id
*usb_id
)
3588 const struct snd_usb_audio_quirk
*quirk
= (const struct snd_usb_audio_quirk
*)usb_id
->driver_info
;
3590 struct snd_usb_audio
*chip
;
3591 struct usb_host_interface
*alts
;
3595 alts
= &intf
->altsetting
[0];
3596 ifnum
= get_iface_desc(alts
)->bInterfaceNumber
;
3597 id
= USB_ID(le16_to_cpu(dev
->descriptor
.idVendor
),
3598 le16_to_cpu(dev
->descriptor
.idProduct
));
3600 if (quirk
&& quirk
->ifnum
>= 0 && ifnum
!= quirk
->ifnum
)
3603 /* SB Extigy needs special boot-up sequence */
3604 /* if more models come, this will go to the quirk list. */
3605 if (id
== USB_ID(0x041e, 0x3000)) {
3606 if (snd_usb_extigy_boot_quirk(dev
, intf
) < 0)
3609 /* SB Audigy 2 NX needs its own boot-up magic, too */
3610 if (id
== USB_ID(0x041e, 0x3020)) {
3611 if (snd_usb_audigy2nx_boot_quirk(dev
) < 0)
3615 /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
3616 if (id
== USB_ID(0x10f5, 0x0200)) {
3617 if (snd_usb_cm106_boot_quirk(dev
) < 0)
3621 /* C-Media CM6206 / CM106-Like Sound Device */
3622 if (id
== USB_ID(0x0d8c, 0x0102)) {
3623 if (snd_usb_cm6206_boot_quirk(dev
) < 0)
3628 * found a config. now register to ALSA
3631 /* check whether it's already registered */
3633 mutex_lock(®ister_mutex
);
3634 for (i
= 0; i
< SNDRV_CARDS
; i
++) {
3635 if (usb_chip
[i
] && usb_chip
[i
]->dev
== dev
) {
3636 if (usb_chip
[i
]->shutdown
) {
3637 snd_printk(KERN_ERR
"USB device is in the shutdown state, cannot create a card instance\n");
3645 /* it's a fresh one.
3646 * now look for an empty slot and create a new card instance
3648 for (i
= 0; i
< SNDRV_CARDS
; i
++)
3649 if (enable
[i
] && ! usb_chip
[i
] &&
3650 (vid
[i
] == -1 || vid
[i
] == USB_ID_VENDOR(id
)) &&
3651 (pid
[i
] == -1 || pid
[i
] == USB_ID_PRODUCT(id
))) {
3652 if (snd_usb_audio_create(dev
, i
, quirk
, &chip
) < 0) {
3655 snd_card_set_dev(chip
->card
, &intf
->dev
);
3659 printk(KERN_ERR
"no available usb audio device\n");
3664 err
= 1; /* continue */
3665 if (quirk
&& quirk
->ifnum
!= QUIRK_NO_INTERFACE
) {
3666 /* need some special handlings */
3667 if ((err
= snd_usb_create_quirk(chip
, intf
, quirk
)) < 0)
3672 /* create normal USB audio interfaces */
3673 if (snd_usb_create_streams(chip
, ifnum
) < 0 ||
3674 snd_usb_create_mixer(chip
, ifnum
, ignore_ctl_error
) < 0) {
3679 /* we are allowed to call snd_card_register() many times */
3680 if (snd_card_register(chip
->card
) < 0) {
3684 usb_chip
[chip
->index
] = chip
;
3685 chip
->num_interfaces
++;
3686 mutex_unlock(®ister_mutex
);
3690 if (chip
&& !chip
->num_interfaces
)
3691 snd_card_free(chip
->card
);
3692 mutex_unlock(®ister_mutex
);
3698 * we need to take care of counter, since disconnection can be called also
3699 * many times as well as usb_audio_probe().
3701 static void snd_usb_audio_disconnect(struct usb_device
*dev
, void *ptr
)
3703 struct snd_usb_audio
*chip
;
3704 struct snd_card
*card
;
3705 struct list_head
*p
;
3707 if (ptr
== (void *)-1L)
3712 mutex_lock(®ister_mutex
);
3714 chip
->num_interfaces
--;
3715 if (chip
->num_interfaces
<= 0) {
3716 snd_card_disconnect(card
);
3717 /* release the pcm resources */
3718 list_for_each(p
, &chip
->pcm_list
) {
3719 snd_usb_stream_disconnect(p
);
3721 /* release the midi resources */
3722 list_for_each(p
, &chip
->midi_list
) {
3723 snd_usbmidi_disconnect(p
);
3725 /* release mixer resources */
3726 list_for_each(p
, &chip
->mixer_list
) {
3727 snd_usb_mixer_disconnect(p
);
3729 usb_chip
[chip
->index
] = NULL
;
3730 mutex_unlock(®ister_mutex
);
3731 snd_card_free_when_closed(card
);
3733 mutex_unlock(®ister_mutex
);
3738 * new 2.5 USB kernel API
3740 static int usb_audio_probe(struct usb_interface
*intf
,
3741 const struct usb_device_id
*id
)
3744 chip
= snd_usb_audio_probe(interface_to_usbdev(intf
), intf
, id
);
3746 usb_set_intfdata(intf
, chip
);
3752 static void usb_audio_disconnect(struct usb_interface
*intf
)
3754 snd_usb_audio_disconnect(interface_to_usbdev(intf
),
3755 usb_get_intfdata(intf
));
3759 static int usb_audio_suspend(struct usb_interface
*intf
, pm_message_t message
)
3761 struct snd_usb_audio
*chip
= usb_get_intfdata(intf
);
3762 struct list_head
*p
;
3763 struct snd_usb_stream
*as
;
3765 if (chip
== (void *)-1L)
3768 snd_power_change_state(chip
->card
, SNDRV_CTL_POWER_D3hot
);
3769 if (!chip
->num_suspended_intf
++) {
3770 list_for_each(p
, &chip
->pcm_list
) {
3771 as
= list_entry(p
, struct snd_usb_stream
, list
);
3772 snd_pcm_suspend_all(as
->pcm
);
3779 static int usb_audio_resume(struct usb_interface
*intf
)
3781 struct snd_usb_audio
*chip
= usb_get_intfdata(intf
);
3783 if (chip
== (void *)-1L)
3785 if (--chip
->num_suspended_intf
)
3788 * ALSA leaves material resumption to user space
3792 snd_power_change_state(chip
->card
, SNDRV_CTL_POWER_D0
);
3796 #endif /* CONFIG_PM */
3798 static int __init
snd_usb_audio_init(void)
3800 if (nrpacks
< 1 || nrpacks
> MAX_PACKS
) {
3801 printk(KERN_WARNING
"invalid nrpacks value.\n");
3804 return usb_register(&usb_audio_driver
);
3808 static void __exit
snd_usb_audio_cleanup(void)
3810 usb_deregister(&usb_audio_driver
);
3813 module_init(snd_usb_audio_init
);
3814 module_exit(snd_usb_audio_cleanup
);