[ALSA] usb-audio: merge playback/capture hardware information structs
[deliverable/linux.git] / sound / usb / usbaudio.c
CommitLineData
1da177e4
LT
1/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Main and PCM part
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
11 *
12 *
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.
17 *
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.
22 *
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
26 *
27 *
28 * NOTES:
29 *
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).
38 */
39
40
41#include <sound/driver.h>
42#include <linux/bitops.h>
43#include <linux/init.h>
44#include <linux/list.h>
45#include <linux/slab.h>
46#include <linux/string.h>
47#include <linux/usb.h>
6207e51b 48#include <linux/vmalloc.h>
1da177e4 49#include <linux/moduleparam.h>
12aa7579 50#include <linux/mutex.h>
1da177e4
LT
51#include <sound/core.h>
52#include <sound/info.h>
53#include <sound/pcm.h>
54#include <sound/pcm_params.h>
55#include <sound/initval.h>
56
57#include "usbaudio.h"
58
59
60MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
61MODULE_DESCRIPTION("USB Audio");
62MODULE_LICENSE("GPL");
63MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
64
65
66static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
67static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
68static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
69static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 }; /* Vendor ID for this card */
70static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 }; /* Product ID for this card */
92b9ac78 71static int nrpacks = 8; /* max. number of packets per urb */
1da177e4 72static int async_unlink = 1;
e311334e 73static int device_setup[SNDRV_CARDS]; /* device parameter for this card*/
1da177e4
LT
74
75module_param_array(index, int, NULL, 0444);
76MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
77module_param_array(id, charp, NULL, 0444);
78MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
79module_param_array(enable, bool, NULL, 0444);
80MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
81module_param_array(vid, int, NULL, 0444);
82MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
83module_param_array(pid, int, NULL, 0444);
84MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
71d848ca 85module_param(nrpacks, int, 0644);
1da177e4
LT
86MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB.");
87module_param(async_unlink, bool, 0444);
88MODULE_PARM_DESC(async_unlink, "Use async unlink mode.");
e311334e
TLM
89module_param_array(device_setup, int, NULL, 0444);
90MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
1da177e4
LT
91
92
93/*
94 * debug the h/w constraints
95 */
96/* #define HW_CONST_DEBUG */
97
98
99/*
100 *
101 */
102
92b9ac78 103#define MAX_PACKS 20
1da177e4 104#define MAX_PACKS_HS (MAX_PACKS * 8) /* in high speed mode */
15a24c07 105#define MAX_URBS 8
604cf499 106#define SYNC_URBS 4 /* always four urbs for sync */
1da177e4
LT
107#define MIN_PACKS_URB 1 /* minimum 1 packet per urb */
108
1da177e4
LT
109struct audioformat {
110 struct list_head list;
111 snd_pcm_format_t format; /* format type */
112 unsigned int channels; /* # channels */
113 unsigned int fmt_type; /* USB audio format type (1-3) */
114 unsigned int frame_size; /* samples per frame for non-audio */
115 int iface; /* interface number */
116 unsigned char altsetting; /* corresponding alternate setting */
117 unsigned char altset_idx; /* array index of altenate setting */
118 unsigned char attributes; /* corresponding attributes of cs endpoint */
119 unsigned char endpoint; /* endpoint */
120 unsigned char ep_attr; /* endpoint attributes */
121 unsigned int maxpacksize; /* max. packet size */
122 unsigned int rates; /* rate bitmasks */
123 unsigned int rate_min, rate_max; /* min/max rates */
124 unsigned int nr_rates; /* number of rate table entries */
125 unsigned int *rate_table; /* rate table */
a79eee8d 126 unsigned int needs_knot; /* any unusual rates? */
1da177e4
LT
127};
128
86e07d34
TI
129struct snd_usb_substream;
130
1da177e4
LT
131struct snd_urb_ctx {
132 struct urb *urb;
55851f73 133 unsigned int buffer_size; /* size of data buffer, if data URB */
86e07d34 134 struct snd_usb_substream *subs;
1da177e4
LT
135 int index; /* index for urb array */
136 int packets; /* number of packets per urb */
1da177e4
LT
137};
138
139struct snd_urb_ops {
86e07d34
TI
140 int (*prepare)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
141 int (*retire)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
142 int (*prepare_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
143 int (*retire_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
1da177e4
LT
144};
145
146struct snd_usb_substream {
86e07d34 147 struct snd_usb_stream *stream;
1da177e4 148 struct usb_device *dev;
86e07d34 149 struct snd_pcm_substream *pcm_substream;
1da177e4
LT
150 int direction; /* playback or capture */
151 int interface; /* current interface */
152 int endpoint; /* assigned endpoint */
153 struct audioformat *cur_audiofmt; /* current audioformat pointer (for hw_params callback) */
154 unsigned int cur_rate; /* current rate (for hw_params callback) */
155 unsigned int period_bytes; /* current period bytes (for hw_params callback) */
156 unsigned int format; /* USB data format */
157 unsigned int datapipe; /* the data i/o pipe */
158 unsigned int syncpipe; /* 1 - async out or adaptive in */
573567e0 159 unsigned int datainterval; /* log_2 of data packet interval */
1da177e4
LT
160 unsigned int syncinterval; /* P for adaptive mode, 0 otherwise */
161 unsigned int freqn; /* nominal sampling rate in fs/fps in Q16.16 format */
162 unsigned int freqm; /* momentary sampling rate in fs/fps in Q16.16 format */
163 unsigned int freqmax; /* maximum sampling rate, used for buffer management */
164 unsigned int phase; /* phase accumulator */
165 unsigned int maxpacksize; /* max packet size in bytes */
166 unsigned int maxframesize; /* max packet size in frames */
167 unsigned int curpacksize; /* current packet size in bytes (for capture) */
168 unsigned int curframesize; /* current packet size in frames (for capture) */
169 unsigned int fill_max: 1; /* fill max packet size always */
170 unsigned int fmt_type; /* USB audio format type (1-3) */
9624ea81 171 unsigned int packs_per_ms; /* packets per millisecond (for playback) */
1da177e4
LT
172
173 unsigned int running: 1; /* running status */
174
1da177e4 175 unsigned int hwptr_done; /* processed frame position in the buffer */
1da177e4
LT
176 unsigned int transfer_done; /* processed frames since last period update */
177 unsigned long active_mask; /* bitmask of active urbs */
178 unsigned long unlink_mask; /* bitmask of unlinked urbs */
179
180 unsigned int nurbs; /* # urbs */
86e07d34
TI
181 struct snd_urb_ctx dataurb[MAX_URBS]; /* data urb table */
182 struct snd_urb_ctx syncurb[SYNC_URBS]; /* sync urb table */
55851f73
CL
183 char *syncbuf; /* sync buffer for all sync URBs */
184 dma_addr_t sync_dma; /* DMA address of syncbuf */
1da177e4
LT
185
186 u64 formats; /* format bitmasks (all or'ed) */
187 unsigned int num_formats; /* number of supported audio formats (list) */
188 struct list_head fmt_list; /* format list */
189 spinlock_t lock;
190
191 struct snd_urb_ops ops; /* callbacks (must be filled at init) */
192};
193
194
195struct snd_usb_stream {
86e07d34
TI
196 struct snd_usb_audio *chip;
197 struct snd_pcm *pcm;
1da177e4
LT
198 int pcm_index;
199 unsigned int fmt_type; /* USB audio format type (1-3) */
86e07d34 200 struct snd_usb_substream substream[2];
1da177e4
LT
201 struct list_head list;
202};
203
204
205/*
206 * we keep the snd_usb_audio_t instances by ourselves for merging
207 * the all interfaces on the same card as one sound device.
208 */
209
12aa7579 210static DEFINE_MUTEX(register_mutex);
86e07d34 211static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
1da177e4
LT
212
213
214/*
215 * convert a sampling rate into our full speed format (fs/1000 in Q16.16)
216 * this will overflow at approx 524 kHz
217 */
77933d72 218static inline unsigned get_usb_full_speed_rate(unsigned int rate)
1da177e4
LT
219{
220 return ((rate << 13) + 62) / 125;
221}
222
223/*
224 * convert a sampling rate into USB high speed format (fs/8000 in Q16.16)
225 * this will overflow at approx 4 MHz
226 */
77933d72 227static inline unsigned get_usb_high_speed_rate(unsigned int rate)
1da177e4
LT
228{
229 return ((rate << 10) + 62) / 125;
230}
231
232/* convert our full speed USB rate into sampling rate in Hz */
77933d72 233static inline unsigned get_full_speed_hz(unsigned int usb_rate)
1da177e4
LT
234{
235 return (usb_rate * 125 + (1 << 12)) >> 13;
236}
237
238/* convert our high speed USB rate into sampling rate in Hz */
77933d72 239static inline unsigned get_high_speed_hz(unsigned int usb_rate)
1da177e4
LT
240{
241 return (usb_rate * 125 + (1 << 9)) >> 10;
242}
243
244
245/*
246 * prepare urb for full speed capture sync pipe
247 *
248 * fill the length and offset of each urb descriptor.
249 * the fixed 10.14 frequency is passed through the pipe.
250 */
86e07d34
TI
251static int prepare_capture_sync_urb(struct snd_usb_substream *subs,
252 struct snd_pcm_runtime *runtime,
1da177e4
LT
253 struct urb *urb)
254{
255 unsigned char *cp = urb->transfer_buffer;
86e07d34 256 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
1da177e4 257
1da177e4 258 urb->dev = ctx->subs->dev; /* we need to set this at each time */
ca81090a
CL
259 urb->iso_frame_desc[0].length = 3;
260 urb->iso_frame_desc[0].offset = 0;
261 cp[0] = subs->freqn >> 2;
262 cp[1] = subs->freqn >> 10;
263 cp[2] = subs->freqn >> 18;
1da177e4
LT
264 return 0;
265}
266
267/*
268 * prepare urb for high speed capture sync pipe
269 *
270 * fill the length and offset of each urb descriptor.
271 * the fixed 12.13 frequency is passed as 16.16 through the pipe.
272 */
86e07d34
TI
273static int prepare_capture_sync_urb_hs(struct snd_usb_substream *subs,
274 struct snd_pcm_runtime *runtime,
1da177e4
LT
275 struct urb *urb)
276{
277 unsigned char *cp = urb->transfer_buffer;
86e07d34 278 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
1da177e4 279
1da177e4 280 urb->dev = ctx->subs->dev; /* we need to set this at each time */
ca81090a
CL
281 urb->iso_frame_desc[0].length = 4;
282 urb->iso_frame_desc[0].offset = 0;
283 cp[0] = subs->freqn;
284 cp[1] = subs->freqn >> 8;
285 cp[2] = subs->freqn >> 16;
286 cp[3] = subs->freqn >> 24;
1da177e4
LT
287 return 0;
288}
289
290/*
291 * process after capture sync complete
292 * - nothing to do
293 */
86e07d34
TI
294static int retire_capture_sync_urb(struct snd_usb_substream *subs,
295 struct snd_pcm_runtime *runtime,
1da177e4
LT
296 struct urb *urb)
297{
298 return 0;
299}
300
301/*
302 * prepare urb for capture data pipe
303 *
304 * fill the offset and length of each descriptor.
305 *
306 * we use a temporary buffer to write the captured data.
307 * since the length of written data is determined by host, we cannot
308 * write onto the pcm buffer directly... the data is thus copied
309 * later at complete callback to the global buffer.
310 */
86e07d34
TI
311static int prepare_capture_urb(struct snd_usb_substream *subs,
312 struct snd_pcm_runtime *runtime,
1da177e4
LT
313 struct urb *urb)
314{
315 int i, offs;
86e07d34 316 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
1da177e4
LT
317
318 offs = 0;
319 urb->dev = ctx->subs->dev; /* we need to set this at each time */
1da177e4
LT
320 for (i = 0; i < ctx->packets; i++) {
321 urb->iso_frame_desc[i].offset = offs;
322 urb->iso_frame_desc[i].length = subs->curpacksize;
323 offs += subs->curpacksize;
1da177e4 324 }
1da177e4 325 urb->transfer_buffer_length = offs;
b263a9bd 326 urb->number_of_packets = ctx->packets;
1da177e4
LT
327#if 0 // for check
328 if (! urb->bandwidth) {
329 int bustime;
330 bustime = usb_check_bandwidth(urb->dev, urb);
331 if (bustime < 0)
332 return bustime;
333 printk("urb %d: bandwidth = %d (packets = %d)\n", ctx->index, bustime, urb->number_of_packets);
334 usb_claim_bandwidth(urb->dev, urb, bustime, 1);
335 }
336#endif // for check
337 return 0;
338}
339
340/*
341 * process after capture complete
342 *
343 * copy the data from each desctiptor to the pcm buffer, and
344 * update the current position.
345 */
86e07d34
TI
346static int retire_capture_urb(struct snd_usb_substream *subs,
347 struct snd_pcm_runtime *runtime,
1da177e4
LT
348 struct urb *urb)
349{
350 unsigned long flags;
351 unsigned char *cp;
352 int i;
353 unsigned int stride, len, oldptr;
b263a9bd 354 int period_elapsed = 0;
1da177e4
LT
355
356 stride = runtime->frame_bits >> 3;
357
358 for (i = 0; i < urb->number_of_packets; i++) {
359 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset;
360 if (urb->iso_frame_desc[i].status) {
361 snd_printd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status);
362 // continue;
363 }
364 len = urb->iso_frame_desc[i].actual_length / stride;
365 if (! len)
366 continue;
367 /* update the current pointer */
368 spin_lock_irqsave(&subs->lock, flags);
369 oldptr = subs->hwptr_done;
370 subs->hwptr_done += len;
371 if (subs->hwptr_done >= runtime->buffer_size)
372 subs->hwptr_done -= runtime->buffer_size;
373 subs->transfer_done += len;
b263a9bd
CL
374 if (subs->transfer_done >= runtime->period_size) {
375 subs->transfer_done -= runtime->period_size;
376 period_elapsed = 1;
377 }
1da177e4
LT
378 spin_unlock_irqrestore(&subs->lock, flags);
379 /* copy a data chunk */
380 if (oldptr + len > runtime->buffer_size) {
381 unsigned int cnt = runtime->buffer_size - oldptr;
382 unsigned int blen = cnt * stride;
383 memcpy(runtime->dma_area + oldptr * stride, cp, blen);
384 memcpy(runtime->dma_area, cp + blen, len * stride - blen);
385 } else {
386 memcpy(runtime->dma_area + oldptr * stride, cp, len * stride);
387 }
1da177e4 388 }
b263a9bd
CL
389 if (period_elapsed)
390 snd_pcm_period_elapsed(subs->pcm_substream);
1da177e4
LT
391 return 0;
392}
393
394
395/*
396 * prepare urb for full speed playback sync pipe
397 *
398 * set up the offset and length to receive the current frequency.
399 */
400
86e07d34
TI
401static int prepare_playback_sync_urb(struct snd_usb_substream *subs,
402 struct snd_pcm_runtime *runtime,
1da177e4
LT
403 struct urb *urb)
404{
86e07d34 405 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
1da177e4 406
1da177e4 407 urb->dev = ctx->subs->dev; /* we need to set this at each time */
ca81090a
CL
408 urb->iso_frame_desc[0].length = 3;
409 urb->iso_frame_desc[0].offset = 0;
1da177e4
LT
410 return 0;
411}
412
413/*
414 * prepare urb for high speed playback sync pipe
415 *
416 * set up the offset and length to receive the current frequency.
417 */
418
86e07d34
TI
419static int prepare_playback_sync_urb_hs(struct snd_usb_substream *subs,
420 struct snd_pcm_runtime *runtime,
1da177e4
LT
421 struct urb *urb)
422{
86e07d34 423 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
1da177e4 424
1da177e4 425 urb->dev = ctx->subs->dev; /* we need to set this at each time */
ca81090a
CL
426 urb->iso_frame_desc[0].length = 4;
427 urb->iso_frame_desc[0].offset = 0;
1da177e4
LT
428 return 0;
429}
430
431/*
432 * process after full speed playback sync complete
433 *
434 * retrieve the current 10.14 frequency from pipe, and set it.
435 * the value is referred in prepare_playback_urb().
436 */
86e07d34
TI
437static int retire_playback_sync_urb(struct snd_usb_substream *subs,
438 struct snd_pcm_runtime *runtime,
1da177e4
LT
439 struct urb *urb)
440{
ca81090a 441 unsigned int f;
1da177e4
LT
442 unsigned long flags;
443
ca81090a
CL
444 if (urb->iso_frame_desc[0].status == 0 &&
445 urb->iso_frame_desc[0].actual_length == 3) {
446 f = combine_triple((u8*)urb->transfer_buffer) << 2;
50cdbf15
CL
447 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
448 spin_lock_irqsave(&subs->lock, flags);
449 subs->freqm = f;
450 spin_unlock_irqrestore(&subs->lock, flags);
1da177e4 451 }
1da177e4
LT
452 }
453
454 return 0;
455}
456
457/*
458 * process after high speed playback sync complete
459 *
460 * retrieve the current 12.13 frequency from pipe, and set it.
461 * the value is referred in prepare_playback_urb().
462 */
86e07d34
TI
463static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs,
464 struct snd_pcm_runtime *runtime,
1da177e4
LT
465 struct urb *urb)
466{
ca81090a 467 unsigned int f;
1da177e4
LT
468 unsigned long flags;
469
ca81090a
CL
470 if (urb->iso_frame_desc[0].status == 0 &&
471 urb->iso_frame_desc[0].actual_length == 4) {
472 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
50cdbf15
CL
473 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
474 spin_lock_irqsave(&subs->lock, flags);
475 subs->freqm = f;
476 spin_unlock_irqrestore(&subs->lock, flags);
477 }
1da177e4
LT
478 }
479
480 return 0;
481}
482
9568f461
CL
483/* determine the number of frames in the next packet */
484static int snd_usb_audio_next_packet_size(struct snd_usb_substream *subs)
485{
486 if (subs->fill_max)
487 return subs->maxframesize;
488 else {
489 subs->phase = (subs->phase & 0xffff)
490 + (subs->freqm << subs->datainterval);
491 return min(subs->phase >> 16, subs->maxframesize);
492 }
493}
494
b55bbf06
CL
495/*
496 * Prepare urb for streaming before playback starts.
497 *
4b284928 498 * We don't yet have data, so we send a frame of silence.
b55bbf06 499 */
86e07d34
TI
500static int prepare_startup_playback_urb(struct snd_usb_substream *subs,
501 struct snd_pcm_runtime *runtime,
b55bbf06
CL
502 struct urb *urb)
503{
4b284928 504 unsigned int i, offs, counts;
86e07d34 505 struct snd_urb_ctx *ctx = urb->context;
4b284928 506 int stride = runtime->frame_bits >> 3;
b55bbf06 507
4b284928 508 offs = 0;
b55bbf06
CL
509 urb->dev = ctx->subs->dev;
510 urb->number_of_packets = subs->packs_per_ms;
511 for (i = 0; i < subs->packs_per_ms; ++i) {
9568f461 512 counts = snd_usb_audio_next_packet_size(subs);
4b284928
CL
513 urb->iso_frame_desc[i].offset = offs * stride;
514 urb->iso_frame_desc[i].length = counts * stride;
515 offs += counts;
b55bbf06 516 }
4b284928
CL
517 urb->transfer_buffer_length = offs * stride;
518 memset(urb->transfer_buffer,
519 subs->cur_audiofmt->format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0,
520 offs * stride);
b55bbf06
CL
521 return 0;
522}
523
1da177e4
LT
524/*
525 * prepare urb for playback data pipe
526 *
7efd8bc8
CL
527 * Since a URB can handle only a single linear buffer, we must use double
528 * buffering when the data to be transferred overflows the buffer boundary.
529 * To avoid inconsistencies when updating hwptr_done, we use double buffering
530 * for all URBs.
1da177e4 531 */
86e07d34
TI
532static int prepare_playback_urb(struct snd_usb_substream *subs,
533 struct snd_pcm_runtime *runtime,
1da177e4
LT
534 struct urb *urb)
535{
536 int i, stride, offs;
537 unsigned int counts;
538 unsigned long flags;
7efd8bc8 539 int period_elapsed = 0;
86e07d34 540 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
1da177e4
LT
541
542 stride = runtime->frame_bits >> 3;
543
544 offs = 0;
545 urb->dev = ctx->subs->dev; /* we need to set this at each time */
546 urb->number_of_packets = 0;
547 spin_lock_irqsave(&subs->lock, flags);
548 for (i = 0; i < ctx->packets; i++) {
9568f461 549 counts = snd_usb_audio_next_packet_size(subs);
1da177e4
LT
550 /* set up descriptor */
551 urb->iso_frame_desc[i].offset = offs * stride;
552 urb->iso_frame_desc[i].length = counts * stride;
553 offs += counts;
554 urb->number_of_packets++;
7efd8bc8
CL
555 subs->transfer_done += counts;
556 if (subs->transfer_done >= runtime->period_size) {
557 subs->transfer_done -= runtime->period_size;
558 period_elapsed = 1;
1da177e4 559 if (subs->fmt_type == USB_FORMAT_TYPE_II) {
7efd8bc8
CL
560 if (subs->transfer_done > 0) {
561 /* FIXME: fill-max mode is not
562 * supported yet */
563 offs -= subs->transfer_done;
564 counts -= subs->transfer_done;
565 urb->iso_frame_desc[i].length =
566 counts * stride;
567 subs->transfer_done = 0;
1da177e4
LT
568 }
569 i++;
570 if (i < ctx->packets) {
571 /* add a transfer delimiter */
7efd8bc8
CL
572 urb->iso_frame_desc[i].offset =
573 offs * stride;
1da177e4
LT
574 urb->iso_frame_desc[i].length = 0;
575 urb->number_of_packets++;
576 }
9624ea81 577 break;
1da177e4 578 }
1da177e4 579 }
9624ea81
CL
580 /* finish at the frame boundary at/after the period boundary */
581 if (period_elapsed &&
582 (i & (subs->packs_per_ms - 1)) == subs->packs_per_ms - 1)
583 break;
1da177e4 584 }
7efd8bc8
CL
585 if (subs->hwptr_done + offs > runtime->buffer_size) {
586 /* err, the transferred area goes over buffer boundary. */
587 unsigned int len = runtime->buffer_size - subs->hwptr_done;
588 memcpy(urb->transfer_buffer,
589 runtime->dma_area + subs->hwptr_done * stride,
590 len * stride);
591 memcpy(urb->transfer_buffer + len * stride,
592 runtime->dma_area,
593 (offs - len) * stride);
1da177e4 594 } else {
7efd8bc8
CL
595 memcpy(urb->transfer_buffer,
596 runtime->dma_area + subs->hwptr_done * stride,
597 offs * stride);
1da177e4 598 }
7efd8bc8
CL
599 subs->hwptr_done += offs;
600 if (subs->hwptr_done >= runtime->buffer_size)
601 subs->hwptr_done -= runtime->buffer_size;
1da177e4
LT
602 spin_unlock_irqrestore(&subs->lock, flags);
603 urb->transfer_buffer_length = offs * stride;
b55bbf06
CL
604 if (period_elapsed)
605 snd_pcm_period_elapsed(subs->pcm_substream);
1da177e4
LT
606 return 0;
607}
608
609/*
610 * process after playback data complete
7efd8bc8 611 * - nothing to do
1da177e4 612 */
86e07d34
TI
613static int retire_playback_urb(struct snd_usb_substream *subs,
614 struct snd_pcm_runtime *runtime,
1da177e4
LT
615 struct urb *urb)
616{
1da177e4
LT
617 return 0;
618}
619
620
621/*
622 */
623static struct snd_urb_ops audio_urb_ops[2] = {
624 {
b55bbf06 625 .prepare = prepare_startup_playback_urb,
1da177e4
LT
626 .retire = retire_playback_urb,
627 .prepare_sync = prepare_playback_sync_urb,
628 .retire_sync = retire_playback_sync_urb,
629 },
630 {
631 .prepare = prepare_capture_urb,
632 .retire = retire_capture_urb,
633 .prepare_sync = prepare_capture_sync_urb,
634 .retire_sync = retire_capture_sync_urb,
635 },
636};
637
638static struct snd_urb_ops audio_urb_ops_high_speed[2] = {
639 {
b55bbf06 640 .prepare = prepare_startup_playback_urb,
1da177e4
LT
641 .retire = retire_playback_urb,
642 .prepare_sync = prepare_playback_sync_urb_hs,
643 .retire_sync = retire_playback_sync_urb_hs,
644 },
645 {
646 .prepare = prepare_capture_urb,
647 .retire = retire_capture_urb,
648 .prepare_sync = prepare_capture_sync_urb_hs,
649 .retire_sync = retire_capture_sync_urb,
650 },
651};
652
653/*
654 * complete callback from data urb
655 */
7d12e780 656static void snd_complete_urb(struct urb *urb)
1da177e4 657{
86e07d34
TI
658 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
659 struct snd_usb_substream *subs = ctx->subs;
660 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
1da177e4
LT
661 int err = 0;
662
663 if ((subs->running && subs->ops.retire(subs, substream->runtime, urb)) ||
664 ! subs->running || /* can be stopped during retire callback */
665 (err = subs->ops.prepare(subs, substream->runtime, urb)) < 0 ||
666 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
667 clear_bit(ctx->index, &subs->active_mask);
668 if (err < 0) {
669 snd_printd(KERN_ERR "cannot submit urb (err = %d)\n", err);
670 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
671 }
672 }
673}
674
675
676/*
677 * complete callback from sync urb
678 */
7d12e780 679static void snd_complete_sync_urb(struct urb *urb)
1da177e4 680{
86e07d34
TI
681 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
682 struct snd_usb_substream *subs = ctx->subs;
683 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
1da177e4
LT
684 int err = 0;
685
686 if ((subs->running && subs->ops.retire_sync(subs, substream->runtime, urb)) ||
687 ! subs->running || /* can be stopped during retire callback */
688 (err = subs->ops.prepare_sync(subs, substream->runtime, urb)) < 0 ||
689 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
690 clear_bit(ctx->index + 16, &subs->active_mask);
691 if (err < 0) {
692 snd_printd(KERN_ERR "cannot submit sync urb (err = %d)\n", err);
693 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
694 }
695 }
696}
697
698
6207e51b 699/* get the physical page pointer at the given offset */
86e07d34 700static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
6207e51b
CL
701 unsigned long offset)
702{
703 void *pageptr = subs->runtime->dma_area + offset;
704 return vmalloc_to_page(pageptr);
705}
706
707/* allocate virtual buffer; may be called more than once */
86e07d34 708static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs, size_t size)
6207e51b 709{
86e07d34 710 struct snd_pcm_runtime *runtime = subs->runtime;
6207e51b
CL
711 if (runtime->dma_area) {
712 if (runtime->dma_bytes >= size)
713 return 0; /* already large enough */
b1d5776d 714 vfree(runtime->dma_area);
6207e51b 715 }
b1d5776d 716 runtime->dma_area = vmalloc(size);
6207e51b
CL
717 if (! runtime->dma_area)
718 return -ENOMEM;
719 runtime->dma_bytes = size;
720 return 0;
721}
722
723/* free virtual buffer; may be called more than once */
86e07d34 724static int snd_pcm_free_vmalloc_buffer(struct snd_pcm_substream *subs)
6207e51b 725{
86e07d34 726 struct snd_pcm_runtime *runtime = subs->runtime;
9c4be3d3
JJ
727
728 vfree(runtime->dma_area);
729 runtime->dma_area = NULL;
6207e51b
CL
730 return 0;
731}
732
733
1da177e4
LT
734/*
735 * unlink active urbs.
736 */
86e07d34 737static int deactivate_urbs(struct snd_usb_substream *subs, int force, int can_sleep)
1da177e4
LT
738{
739 unsigned int i;
740 int async;
741
742 subs->running = 0;
743
744 if (!force && subs->stream->chip->shutdown) /* to be sure... */
745 return -EBADFD;
746
747 async = !can_sleep && async_unlink;
748
749 if (! async && in_interrupt())
750 return 0;
751
752 for (i = 0; i < subs->nurbs; i++) {
753 if (test_bit(i, &subs->active_mask)) {
754 if (! test_and_set_bit(i, &subs->unlink_mask)) {
755 struct urb *u = subs->dataurb[i].urb;
b375a049 756 if (async)
1da177e4 757 usb_unlink_urb(u);
b375a049 758 else
1da177e4
LT
759 usb_kill_urb(u);
760 }
761 }
762 }
763 if (subs->syncpipe) {
764 for (i = 0; i < SYNC_URBS; i++) {
765 if (test_bit(i+16, &subs->active_mask)) {
766 if (! test_and_set_bit(i+16, &subs->unlink_mask)) {
767 struct urb *u = subs->syncurb[i].urb;
b375a049 768 if (async)
1da177e4 769 usb_unlink_urb(u);
b375a049 770 else
1da177e4
LT
771 usb_kill_urb(u);
772 }
773 }
774 }
775 }
776 return 0;
777}
778
779
32e19e88
CL
780static const char *usb_error_string(int err)
781{
782 switch (err) {
783 case -ENODEV:
784 return "no device";
785 case -ENOENT:
786 return "endpoint not enabled";
787 case -EPIPE:
788 return "endpoint stalled";
789 case -ENOSPC:
790 return "not enough bandwidth";
791 case -ESHUTDOWN:
792 return "device disabled";
793 case -EHOSTUNREACH:
794 return "device suspended";
3e964432
CL
795#ifndef CONFIG_USB_EHCI_SPLIT_ISO
796 case -ENOSYS:
797 return "enable CONFIG_USB_EHCI_SPLIT_ISO to play through a hub";
798#endif
32e19e88
CL
799 case -EINVAL:
800 case -EAGAIN:
801 case -EFBIG:
802 case -EMSGSIZE:
803 return "internal error";
804 default:
805 return "unknown error";
806 }
807}
808
1da177e4
LT
809/*
810 * set up and start data/sync urbs
811 */
86e07d34 812static int start_urbs(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime)
1da177e4
LT
813{
814 unsigned int i;
815 int err;
816
817 if (subs->stream->chip->shutdown)
818 return -EBADFD;
819
820 for (i = 0; i < subs->nurbs; i++) {
821 snd_assert(subs->dataurb[i].urb, return -EINVAL);
822 if (subs->ops.prepare(subs, runtime, subs->dataurb[i].urb) < 0) {
823 snd_printk(KERN_ERR "cannot prepare datapipe for urb %d\n", i);
824 goto __error;
825 }
826 }
827 if (subs->syncpipe) {
828 for (i = 0; i < SYNC_URBS; i++) {
829 snd_assert(subs->syncurb[i].urb, return -EINVAL);
830 if (subs->ops.prepare_sync(subs, runtime, subs->syncurb[i].urb) < 0) {
831 snd_printk(KERN_ERR "cannot prepare syncpipe for urb %d\n", i);
832 goto __error;
833 }
834 }
835 }
836
837 subs->active_mask = 0;
838 subs->unlink_mask = 0;
839 subs->running = 1;
840 for (i = 0; i < subs->nurbs; i++) {
32e19e88
CL
841 err = usb_submit_urb(subs->dataurb[i].urb, GFP_ATOMIC);
842 if (err < 0) {
843 snd_printk(KERN_ERR "cannot submit datapipe "
844 "for urb %d, error %d: %s\n",
845 i, err, usb_error_string(err));
1da177e4
LT
846 goto __error;
847 }
848 set_bit(i, &subs->active_mask);
849 }
850 if (subs->syncpipe) {
851 for (i = 0; i < SYNC_URBS; i++) {
32e19e88
CL
852 err = usb_submit_urb(subs->syncurb[i].urb, GFP_ATOMIC);
853 if (err < 0) {
854 snd_printk(KERN_ERR "cannot submit syncpipe "
855 "for urb %d, error %d: %s\n",
856 i, err, usb_error_string(err));
1da177e4
LT
857 goto __error;
858 }
859 set_bit(i + 16, &subs->active_mask);
860 }
861 }
862 return 0;
863
864 __error:
865 // snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
866 deactivate_urbs(subs, 0, 0);
867 return -EPIPE;
868}
869
870
871/*
872 * wait until all urbs are processed.
873 */
86e07d34 874static int wait_clear_urbs(struct snd_usb_substream *subs)
1da177e4 875{
b27c187f 876 unsigned long end_time = jiffies + msecs_to_jiffies(1000);
1da177e4
LT
877 unsigned int i;
878 int alive;
879
880 do {
881 alive = 0;
882 for (i = 0; i < subs->nurbs; i++) {
883 if (test_bit(i, &subs->active_mask))
884 alive++;
885 }
886 if (subs->syncpipe) {
887 for (i = 0; i < SYNC_URBS; i++) {
888 if (test_bit(i + 16, &subs->active_mask))
889 alive++;
890 }
891 }
892 if (! alive)
893 break;
8433a509 894 schedule_timeout_uninterruptible(1);
b27c187f 895 } while (time_before(jiffies, end_time));
1da177e4
LT
896 if (alive)
897 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
898 return 0;
899}
900
901
902/*
903 * return the current pcm pointer. just return the hwptr_done value.
904 */
86e07d34 905static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
1da177e4 906{
86e07d34 907 struct snd_usb_substream *subs;
daa150ef
CL
908 snd_pcm_uframes_t hwptr_done;
909
86e07d34 910 subs = (struct snd_usb_substream *)substream->runtime->private_data;
daa150ef
CL
911 spin_lock(&subs->lock);
912 hwptr_done = subs->hwptr_done;
913 spin_unlock(&subs->lock);
914 return hwptr_done;
1da177e4
LT
915}
916
917
918/*
b55bbf06 919 * start/stop playback substream
1da177e4 920 */
86e07d34 921static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream *substream,
b55bbf06 922 int cmd)
1da177e4 923{
86e07d34 924 struct snd_usb_substream *subs = substream->runtime->private_data;
b55bbf06
CL
925
926 switch (cmd) {
927 case SNDRV_PCM_TRIGGER_START:
928 subs->ops.prepare = prepare_playback_urb;
929 return 0;
930 case SNDRV_PCM_TRIGGER_STOP:
931 return deactivate_urbs(subs, 0, 0);
932 default:
933 return -EINVAL;
934 }
935}
936
937/*
938 * start/stop capture substream
939 */
86e07d34 940static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream *substream,
b55bbf06
CL
941 int cmd)
942{
86e07d34 943 struct snd_usb_substream *subs = substream->runtime->private_data;
1da177e4
LT
944
945 switch (cmd) {
946 case SNDRV_PCM_TRIGGER_START:
b55bbf06 947 return start_urbs(subs, substream->runtime);
1da177e4 948 case SNDRV_PCM_TRIGGER_STOP:
b55bbf06 949 return deactivate_urbs(subs, 0, 0);
1da177e4 950 default:
b55bbf06 951 return -EINVAL;
1da177e4 952 }
1da177e4
LT
953}
954
955
956/*
957 * release a urb data
958 */
86e07d34 959static void release_urb_ctx(struct snd_urb_ctx *u)
1da177e4
LT
960{
961 if (u->urb) {
55851f73
CL
962 if (u->buffer_size)
963 usb_buffer_free(u->subs->dev, u->buffer_size,
964 u->urb->transfer_buffer,
965 u->urb->transfer_dma);
1da177e4
LT
966 usb_free_urb(u->urb);
967 u->urb = NULL;
968 }
1da177e4
LT
969}
970
971/*
972 * release a substream
973 */
86e07d34 974static void release_substream_urbs(struct snd_usb_substream *subs, int force)
1da177e4
LT
975{
976 int i;
977
978 /* stop urbs (to be sure) */
979 deactivate_urbs(subs, force, 1);
980 wait_clear_urbs(subs);
981
982 for (i = 0; i < MAX_URBS; i++)
983 release_urb_ctx(&subs->dataurb[i]);
984 for (i = 0; i < SYNC_URBS; i++)
985 release_urb_ctx(&subs->syncurb[i]);
55851f73
CL
986 usb_buffer_free(subs->dev, SYNC_URBS * 4,
987 subs->syncbuf, subs->sync_dma);
988 subs->syncbuf = NULL;
1da177e4
LT
989 subs->nurbs = 0;
990}
991
992/*
993 * initialize a substream for plaback/capture
994 */
86e07d34 995static int init_substream_urbs(struct snd_usb_substream *subs, unsigned int period_bytes,
1da177e4
LT
996 unsigned int rate, unsigned int frame_bits)
997{
998 unsigned int maxsize, n, i;
999 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
a93bf990 1000 unsigned int npacks[MAX_URBS], urb_packs, total_packs, packs_per_ms;
1da177e4
LT
1001
1002 /* calculate the frequency in 16.16 format */
1003 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
1004 subs->freqn = get_usb_full_speed_rate(rate);
1005 else
1006 subs->freqn = get_usb_high_speed_rate(rate);
1007 subs->freqm = subs->freqn;
573567e0
CL
1008 /* calculate max. frequency */
1009 if (subs->maxpacksize) {
1010 /* whatever fits into a max. size packet */
1da177e4 1011 maxsize = subs->maxpacksize;
573567e0
CL
1012 subs->freqmax = (maxsize / (frame_bits >> 3))
1013 << (16 - subs->datainterval);
1014 } else {
1015 /* no max. packet size: just take 25% higher than nominal */
1016 subs->freqmax = subs->freqn + (subs->freqn >> 2);
1017 maxsize = ((subs->freqmax + 0xffff) * (frame_bits >> 3))
1018 >> (16 - subs->datainterval);
1da177e4 1019 }
573567e0 1020 subs->phase = 0;
1da177e4
LT
1021
1022 if (subs->fill_max)
1023 subs->curpacksize = subs->maxpacksize;
1024 else
1025 subs->curpacksize = maxsize;
1026
a93bf990
CL
1027 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
1028 packs_per_ms = 8 >> subs->datainterval;
1029 else
1030 packs_per_ms = 1;
9624ea81 1031 subs->packs_per_ms = packs_per_ms;
a93bf990 1032
71d848ca 1033 if (is_playback) {
1da177e4 1034 urb_packs = nrpacks;
71d848ca
CL
1035 urb_packs = max(urb_packs, (unsigned int)MIN_PACKS_URB);
1036 urb_packs = min(urb_packs, (unsigned int)MAX_PACKS);
1037 } else
15a24c07 1038 urb_packs = 1;
a93bf990 1039 urb_packs *= packs_per_ms;
1da177e4 1040
1da177e4 1041 /* decide how many packets to be used */
15a24c07 1042 if (is_playback) {
d6db392e
CL
1043 unsigned int minsize;
1044 /* determine how small a packet can be */
1045 minsize = (subs->freqn >> (16 - subs->datainterval))
1046 * (frame_bits >> 3);
7efd8bc8 1047 /* with sync from device, assume it can be 12% lower */
d6db392e 1048 if (subs->syncpipe)
7efd8bc8 1049 minsize -= minsize >> 3;
d6db392e
CL
1050 minsize = max(minsize, 1u);
1051 total_packs = (period_bytes + minsize - 1) / minsize;
a93bf990
CL
1052 /* round up to multiple of packs_per_ms */
1053 total_packs = (total_packs + packs_per_ms - 1)
1054 & ~(packs_per_ms - 1);
1055 /* we need at least two URBs for queueing */
1056 if (total_packs < 2 * MIN_PACKS_URB * packs_per_ms)
1057 total_packs = 2 * MIN_PACKS_URB * packs_per_ms;
15a24c07
CL
1058 } else {
1059 total_packs = MAX_URBS * urb_packs;
1060 }
1da177e4
LT
1061 subs->nurbs = (total_packs + urb_packs - 1) / urb_packs;
1062 if (subs->nurbs > MAX_URBS) {
1063 /* too much... */
1064 subs->nurbs = MAX_URBS;
1065 total_packs = MAX_URBS * urb_packs;
1066 }
1067 n = total_packs;
1068 for (i = 0; i < subs->nurbs; i++) {
1069 npacks[i] = n > urb_packs ? urb_packs : n;
1070 n -= urb_packs;
1071 }
1072 if (subs->nurbs <= 1) {
1073 /* too little - we need at least two packets
1074 * to ensure contiguous playback/capture
1075 */
1076 subs->nurbs = 2;
1077 npacks[0] = (total_packs + 1) / 2;
1078 npacks[1] = total_packs - npacks[0];
a93bf990 1079 } else if (npacks[subs->nurbs-1] < MIN_PACKS_URB * packs_per_ms) {
1da177e4
LT
1080 /* the last packet is too small.. */
1081 if (subs->nurbs > 2) {
1082 /* merge to the first one */
1083 npacks[0] += npacks[subs->nurbs - 1];
1084 subs->nurbs--;
1085 } else {
1086 /* divide to two */
1087 subs->nurbs = 2;
1088 npacks[0] = (total_packs + 1) / 2;
1089 npacks[1] = total_packs - npacks[0];
1090 }
1091 }
1092
1093 /* allocate and initialize data urbs */
1094 for (i = 0; i < subs->nurbs; i++) {
86e07d34 1095 struct snd_urb_ctx *u = &subs->dataurb[i];
1da177e4
LT
1096 u->index = i;
1097 u->subs = subs;
1da177e4 1098 u->packets = npacks[i];
55851f73 1099 u->buffer_size = maxsize * u->packets;
1da177e4
LT
1100 if (subs->fmt_type == USB_FORMAT_TYPE_II)
1101 u->packets++; /* for transfer delimiter */
1da177e4 1102 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
55851f73
CL
1103 if (! u->urb)
1104 goto out_of_memory;
1105 u->urb->transfer_buffer =
1106 usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL,
1107 &u->urb->transfer_dma);
1108 if (! u->urb->transfer_buffer)
1109 goto out_of_memory;
1da177e4 1110 u->urb->pipe = subs->datapipe;
55851f73 1111 u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
573567e0 1112 u->urb->interval = 1 << subs->datainterval;
1da177e4 1113 u->urb->context = u;
3527a008 1114 u->urb->complete = snd_complete_urb;
1da177e4
LT
1115 }
1116
1117 if (subs->syncpipe) {
1118 /* allocate and initialize sync urbs */
55851f73
CL
1119 subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4,
1120 GFP_KERNEL, &subs->sync_dma);
1121 if (! subs->syncbuf)
1122 goto out_of_memory;
1da177e4 1123 for (i = 0; i < SYNC_URBS; i++) {
86e07d34 1124 struct snd_urb_ctx *u = &subs->syncurb[i];
1da177e4
LT
1125 u->index = i;
1126 u->subs = subs;
ca81090a
CL
1127 u->packets = 1;
1128 u->urb = usb_alloc_urb(1, GFP_KERNEL);
55851f73
CL
1129 if (! u->urb)
1130 goto out_of_memory;
ca81090a 1131 u->urb->transfer_buffer = subs->syncbuf + i * 4;
55851f73 1132 u->urb->transfer_dma = subs->sync_dma + i * 4;
ca81090a 1133 u->urb->transfer_buffer_length = 4;
1da177e4 1134 u->urb->pipe = subs->syncpipe;
55851f73
CL
1135 u->urb->transfer_flags = URB_ISO_ASAP |
1136 URB_NO_TRANSFER_DMA_MAP;
ca81090a 1137 u->urb->number_of_packets = 1;
1149a64f 1138 u->urb->interval = 1 << subs->syncinterval;
1da177e4 1139 u->urb->context = u;
3527a008 1140 u->urb->complete = snd_complete_sync_urb;
1da177e4
LT
1141 }
1142 }
1143 return 0;
55851f73
CL
1144
1145out_of_memory:
1146 release_substream_urbs(subs, 0);
1147 return -ENOMEM;
1da177e4
LT
1148}
1149
1150
1151/*
1152 * find a matching audio format
1153 */
86e07d34 1154static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format,
1da177e4
LT
1155 unsigned int rate, unsigned int channels)
1156{
1157 struct list_head *p;
1158 struct audioformat *found = NULL;
1159 int cur_attr = 0, attr;
1160
1161 list_for_each(p, &subs->fmt_list) {
1162 struct audioformat *fp;
1163 fp = list_entry(p, struct audioformat, list);
1164 if (fp->format != format || fp->channels != channels)
1165 continue;
1166 if (rate < fp->rate_min || rate > fp->rate_max)
1167 continue;
1168 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
1169 unsigned int i;
1170 for (i = 0; i < fp->nr_rates; i++)
1171 if (fp->rate_table[i] == rate)
1172 break;
1173 if (i >= fp->nr_rates)
1174 continue;
1175 }
1176 attr = fp->ep_attr & EP_ATTR_MASK;
1177 if (! found) {
1178 found = fp;
1179 cur_attr = attr;
1180 continue;
1181 }
1182 /* avoid async out and adaptive in if the other method
1183 * supports the same format.
1184 * this is a workaround for the case like
1185 * M-audio audiophile USB.
1186 */
1187 if (attr != cur_attr) {
1188 if ((attr == EP_ATTR_ASYNC &&
1189 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1190 (attr == EP_ATTR_ADAPTIVE &&
1191 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
1192 continue;
1193 if ((cur_attr == EP_ATTR_ASYNC &&
1194 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1195 (cur_attr == EP_ATTR_ADAPTIVE &&
1196 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
1197 found = fp;
1198 cur_attr = attr;
1199 continue;
1200 }
1201 }
1202 /* find the format with the largest max. packet size */
1203 if (fp->maxpacksize > found->maxpacksize) {
1204 found = fp;
1205 cur_attr = attr;
1206 }
1207 }
1208 return found;
1209}
1210
1211
1212/*
1213 * initialize the picth control and sample rate
1214 */
1215static int init_usb_pitch(struct usb_device *dev, int iface,
1216 struct usb_host_interface *alts,
1217 struct audioformat *fmt)
1218{
1219 unsigned int ep;
1220 unsigned char data[1];
1221 int err;
1222
1223 ep = get_endpoint(alts, 0)->bEndpointAddress;
1224 /* if endpoint has pitch control, enable it */
1225 if (fmt->attributes & EP_CS_ATTR_PITCH_CONTROL) {
1226 data[0] = 1;
1227 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1228 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1229 PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) {
1230 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
1231 dev->devnum, iface, ep);
1232 return err;
1233 }
1234 }
1235 return 0;
1236}
1237
1238static int init_usb_sample_rate(struct usb_device *dev, int iface,
1239 struct usb_host_interface *alts,
1240 struct audioformat *fmt, int rate)
1241{
1242 unsigned int ep;
1243 unsigned char data[3];
1244 int err;
1245
1246 ep = get_endpoint(alts, 0)->bEndpointAddress;
1247 /* if endpoint has sampling rate control, set it */
1248 if (fmt->attributes & EP_CS_ATTR_SAMPLE_RATE) {
1249 int crate;
1250 data[0] = rate;
1251 data[1] = rate >> 8;
1252 data[2] = rate >> 16;
1253 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1254 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1255 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
1256 snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep 0x%x\n",
1257 dev->devnum, iface, fmt->altsetting, rate, ep);
1258 return err;
1259 }
1260 if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), GET_CUR,
1261 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN,
1262 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
1263 snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep 0x%x\n",
1264 dev->devnum, iface, fmt->altsetting, ep);
1265 return 0; /* some devices don't support reading */
1266 }
1267 crate = data[0] | (data[1] << 8) | (data[2] << 16);
1268 if (crate != rate) {
1269 snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate);
1270 // runtime->rate = crate;
1271 }
1272 }
1273 return 0;
1274}
1275
1276/*
1277 * find a matching format and set up the interface
1278 */
86e07d34 1279static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
1da177e4
LT
1280{
1281 struct usb_device *dev = subs->dev;
1282 struct usb_host_interface *alts;
1283 struct usb_interface_descriptor *altsd;
1284 struct usb_interface *iface;
1285 unsigned int ep, attr;
1286 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
1287 int err;
1288
1289 iface = usb_ifnum_to_if(dev, fmt->iface);
1290 snd_assert(iface, return -EINVAL);
1291 alts = &iface->altsetting[fmt->altset_idx];
1292 altsd = get_iface_desc(alts);
1293 snd_assert(altsd->bAlternateSetting == fmt->altsetting, return -EINVAL);
1294
1295 if (fmt == subs->cur_audiofmt)
1296 return 0;
1297
1298 /* close the old interface */
1299 if (subs->interface >= 0 && subs->interface != fmt->iface) {
1300 usb_set_interface(subs->dev, subs->interface, 0);
1301 subs->interface = -1;
1302 subs->format = 0;
1303 }
1304
1305 /* set interface */
1306 if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) {
1307 if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) {
1308 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n",
1309 dev->devnum, fmt->iface, fmt->altsetting);
1310 return -EIO;
1311 }
1312 snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting);
1313 subs->interface = fmt->iface;
1314 subs->format = fmt->altset_idx;
1315 }
1316
1317 /* create a data pipe */
1318 ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK;
1319 if (is_playback)
1320 subs->datapipe = usb_sndisocpipe(dev, ep);
1321 else
1322 subs->datapipe = usb_rcvisocpipe(dev, ep);
573567e0
CL
1323 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH &&
1324 get_endpoint(alts, 0)->bInterval >= 1 &&
1325 get_endpoint(alts, 0)->bInterval <= 4)
1326 subs->datainterval = get_endpoint(alts, 0)->bInterval - 1;
1327 else
1328 subs->datainterval = 0;
1da177e4
LT
1329 subs->syncpipe = subs->syncinterval = 0;
1330 subs->maxpacksize = fmt->maxpacksize;
1331 subs->fill_max = 0;
1332
1333 /* we need a sync pipe in async OUT or adaptive IN mode */
1334 /* check the number of EP, since some devices have broken
1335 * descriptors which fool us. if it has only one EP,
1336 * assume it as adaptive-out or sync-in.
1337 */
1338 attr = fmt->ep_attr & EP_ATTR_MASK;
1339 if (((is_playback && attr == EP_ATTR_ASYNC) ||
1340 (! is_playback && attr == EP_ATTR_ADAPTIVE)) &&
1341 altsd->bNumEndpoints >= 2) {
1342 /* check sync-pipe endpoint */
1343 /* ... and check descriptor size before accessing bSynchAddress
1344 because there is a version of the SB Audigy 2 NX firmware lacking
1345 the audio fields in the endpoint descriptors */
1346 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
1347 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1348 get_endpoint(alts, 1)->bSynchAddress != 0)) {
1349 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1350 dev->devnum, fmt->iface, fmt->altsetting);
1351 return -EINVAL;
1352 }
1353 ep = get_endpoint(alts, 1)->bEndpointAddress;
1354 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1355 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
1356 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
1357 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1358 dev->devnum, fmt->iface, fmt->altsetting);
1359 return -EINVAL;
1360 }
1361 ep &= USB_ENDPOINT_NUMBER_MASK;
1362 if (is_playback)
1363 subs->syncpipe = usb_rcvisocpipe(dev, ep);
1364 else
1365 subs->syncpipe = usb_sndisocpipe(dev, ep);
1149a64f
CL
1366 if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1367 get_endpoint(alts, 1)->bRefresh >= 1 &&
1368 get_endpoint(alts, 1)->bRefresh <= 9)
1369 subs->syncinterval = get_endpoint(alts, 1)->bRefresh;
604cf499 1370 else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
1149a64f 1371 subs->syncinterval = 1;
604cf499
CL
1372 else if (get_endpoint(alts, 1)->bInterval >= 1 &&
1373 get_endpoint(alts, 1)->bInterval <= 16)
1374 subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
1375 else
1376 subs->syncinterval = 3;
1da177e4
LT
1377 }
1378
1379 /* always fill max packet size */
1380 if (fmt->attributes & EP_CS_ATTR_FILL_MAX)
1381 subs->fill_max = 1;
1382
1383 if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0)
1384 return err;
1385
1386 subs->cur_audiofmt = fmt;
1387
1388#if 0
1389 printk("setting done: format = %d, rate = %d, channels = %d\n",
1390 fmt->format, fmt->rate, fmt->channels);
1391 printk(" datapipe = 0x%0x, syncpipe = 0x%0x\n",
1392 subs->datapipe, subs->syncpipe);
1393#endif
1394
1395 return 0;
1396}
1397
1398/*
1399 * hw_params callback
1400 *
1401 * allocate a buffer and set the given audio format.
1402 *
1403 * so far we use a physically linear buffer although packetize transfer
1404 * doesn't need a continuous area.
1405 * if sg buffer is supported on the later version of alsa, we'll follow
1406 * that.
1407 */
86e07d34
TI
1408static int snd_usb_hw_params(struct snd_pcm_substream *substream,
1409 struct snd_pcm_hw_params *hw_params)
1da177e4 1410{
86e07d34 1411 struct snd_usb_substream *subs = (struct snd_usb_substream *)substream->runtime->private_data;
1da177e4
LT
1412 struct audioformat *fmt;
1413 unsigned int channels, rate, format;
1414 int ret, changed;
1415
6207e51b
CL
1416 ret = snd_pcm_alloc_vmalloc_buffer(substream,
1417 params_buffer_bytes(hw_params));
1da177e4
LT
1418 if (ret < 0)
1419 return ret;
1420
1421 format = params_format(hw_params);
1422 rate = params_rate(hw_params);
1423 channels = params_channels(hw_params);
1424 fmt = find_format(subs, format, rate, channels);
1425 if (! fmt) {
21a3479a
JK
1426 snd_printd(KERN_DEBUG "cannot set format: format = 0x%x, rate = %d, channels = %d\n",
1427 format, rate, channels);
1da177e4
LT
1428 return -EINVAL;
1429 }
1430
1431 changed = subs->cur_audiofmt != fmt ||
1432 subs->period_bytes != params_period_bytes(hw_params) ||
1433 subs->cur_rate != rate;
1434 if ((ret = set_format(subs, fmt)) < 0)
1435 return ret;
1436
1437 if (subs->cur_rate != rate) {
1438 struct usb_host_interface *alts;
1439 struct usb_interface *iface;
1440 iface = usb_ifnum_to_if(subs->dev, fmt->iface);
1441 alts = &iface->altsetting[fmt->altset_idx];
1442 ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate);
1443 if (ret < 0)
1444 return ret;
1445 subs->cur_rate = rate;
1446 }
1447
1448 if (changed) {
1449 /* format changed */
1450 release_substream_urbs(subs, 0);
1451 /* influenced: period_bytes, channels, rate, format, */
1452 ret = init_substream_urbs(subs, params_period_bytes(hw_params),
1453 params_rate(hw_params),
1454 snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params));
1455 }
1456
1457 return ret;
1458}
1459
1460/*
1461 * hw_free callback
1462 *
1463 * reset the audio format and release the buffer
1464 */
86e07d34 1465static int snd_usb_hw_free(struct snd_pcm_substream *substream)
1da177e4 1466{
86e07d34 1467 struct snd_usb_substream *subs = (struct snd_usb_substream *)substream->runtime->private_data;
1da177e4
LT
1468
1469 subs->cur_audiofmt = NULL;
1470 subs->cur_rate = 0;
1471 subs->period_bytes = 0;
de1b8b93
TI
1472 if (!subs->stream->chip->shutdown)
1473 release_substream_urbs(subs, 0);
6207e51b 1474 return snd_pcm_free_vmalloc_buffer(substream);
1da177e4
LT
1475}
1476
1477/*
1478 * prepare callback
1479 *
1480 * only a few subtle things...
1481 */
86e07d34 1482static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
1da177e4 1483{
86e07d34
TI
1484 struct snd_pcm_runtime *runtime = substream->runtime;
1485 struct snd_usb_substream *subs = runtime->private_data;
1da177e4
LT
1486
1487 if (! subs->cur_audiofmt) {
1488 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
1489 return -ENXIO;
1490 }
1491
1492 /* some unit conversions in runtime */
1493 subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize);
1494 subs->curframesize = bytes_to_frames(runtime, subs->curpacksize);
1495
1496 /* reset the pointer */
1da177e4 1497 subs->hwptr_done = 0;
1da177e4
LT
1498 subs->transfer_done = 0;
1499 subs->phase = 0;
1500
1501 /* clear urbs (to be sure) */
1502 deactivate_urbs(subs, 0, 1);
1503 wait_clear_urbs(subs);
1504
b55bbf06
CL
1505 /* for playback, submit the URBs now; otherwise, the first hwptr_done
1506 * updates for all URBs would happen at the same time when starting */
1507 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
1508 subs->ops.prepare = prepare_startup_playback_urb;
1509 return start_urbs(subs, runtime);
1510 } else
1511 return 0;
1da177e4
LT
1512}
1513
1700f308 1514static struct snd_pcm_hardware snd_usb_hardware =
1da177e4 1515{
49045d3d
CL
1516 .info = SNDRV_PCM_INFO_MMAP |
1517 SNDRV_PCM_INFO_MMAP_VALID |
1518 SNDRV_PCM_INFO_BATCH |
1519 SNDRV_PCM_INFO_INTERLEAVED |
1520 SNDRV_PCM_INFO_BLOCK_TRANSFER,
d31cbbfd 1521 .buffer_bytes_max = 1024 * 1024,
1da177e4 1522 .period_bytes_min = 64,
d31cbbfd 1523 .period_bytes_max = 512 * 1024,
1da177e4
LT
1524 .periods_min = 2,
1525 .periods_max = 1024,
1526};
1527
1528/*
1529 * h/w constraints
1530 */
1531
1532#ifdef HW_CONST_DEBUG
1533#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
1534#else
1535#define hwc_debug(fmt, args...) /**/
1536#endif
1537
86e07d34 1538static int hw_check_valid_format(struct snd_pcm_hw_params *params, struct audioformat *fp)
1da177e4 1539{
86e07d34
TI
1540 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1541 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
1542 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
1da177e4
LT
1543
1544 /* check the format */
1545 if (! snd_mask_test(fmts, fp->format)) {
1546 hwc_debug(" > check: no supported format %d\n", fp->format);
1547 return 0;
1548 }
1549 /* check the channels */
1550 if (fp->channels < ct->min || fp->channels > ct->max) {
1551 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
1552 return 0;
1553 }
1554 /* check the rate is within the range */
1555 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
1556 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
1557 return 0;
1558 }
1559 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
1560 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
1561 return 0;
1562 }
1563 return 1;
1564}
1565
86e07d34
TI
1566static int hw_rule_rate(struct snd_pcm_hw_params *params,
1567 struct snd_pcm_hw_rule *rule)
1da177e4 1568{
86e07d34 1569 struct snd_usb_substream *subs = rule->private;
1da177e4 1570 struct list_head *p;
86e07d34 1571 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1da177e4
LT
1572 unsigned int rmin, rmax;
1573 int changed;
1574
1575 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
1576 changed = 0;
1577 rmin = rmax = 0;
1578 list_for_each(p, &subs->fmt_list) {
1579 struct audioformat *fp;
1580 fp = list_entry(p, struct audioformat, list);
1581 if (! hw_check_valid_format(params, fp))
1582 continue;
1583 if (changed++) {
1584 if (rmin > fp->rate_min)
1585 rmin = fp->rate_min;
1586 if (rmax < fp->rate_max)
1587 rmax = fp->rate_max;
1588 } else {
1589 rmin = fp->rate_min;
1590 rmax = fp->rate_max;
1591 }
1592 }
1593
1594 if (! changed) {
1595 hwc_debug(" --> get empty\n");
1596 it->empty = 1;
1597 return -EINVAL;
1598 }
1599
1600 changed = 0;
1601 if (it->min < rmin) {
1602 it->min = rmin;
1603 it->openmin = 0;
1604 changed = 1;
1605 }
1606 if (it->max > rmax) {
1607 it->max = rmax;
1608 it->openmax = 0;
1609 changed = 1;
1610 }
1611 if (snd_interval_checkempty(it)) {
1612 it->empty = 1;
1613 return -EINVAL;
1614 }
1615 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1616 return changed;
1617}
1618
1619
86e07d34
TI
1620static int hw_rule_channels(struct snd_pcm_hw_params *params,
1621 struct snd_pcm_hw_rule *rule)
1da177e4 1622{
86e07d34 1623 struct snd_usb_substream *subs = rule->private;
1da177e4 1624 struct list_head *p;
86e07d34 1625 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
1da177e4
LT
1626 unsigned int rmin, rmax;
1627 int changed;
1628
1629 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
1630 changed = 0;
1631 rmin = rmax = 0;
1632 list_for_each(p, &subs->fmt_list) {
1633 struct audioformat *fp;
1634 fp = list_entry(p, struct audioformat, list);
1635 if (! hw_check_valid_format(params, fp))
1636 continue;
1637 if (changed++) {
1638 if (rmin > fp->channels)
1639 rmin = fp->channels;
1640 if (rmax < fp->channels)
1641 rmax = fp->channels;
1642 } else {
1643 rmin = fp->channels;
1644 rmax = fp->channels;
1645 }
1646 }
1647
1648 if (! changed) {
1649 hwc_debug(" --> get empty\n");
1650 it->empty = 1;
1651 return -EINVAL;
1652 }
1653
1654 changed = 0;
1655 if (it->min < rmin) {
1656 it->min = rmin;
1657 it->openmin = 0;
1658 changed = 1;
1659 }
1660 if (it->max > rmax) {
1661 it->max = rmax;
1662 it->openmax = 0;
1663 changed = 1;
1664 }
1665 if (snd_interval_checkempty(it)) {
1666 it->empty = 1;
1667 return -EINVAL;
1668 }
1669 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1670 return changed;
1671}
1672
86e07d34
TI
1673static int hw_rule_format(struct snd_pcm_hw_params *params,
1674 struct snd_pcm_hw_rule *rule)
1da177e4 1675{
86e07d34 1676 struct snd_usb_substream *subs = rule->private;
1da177e4 1677 struct list_head *p;
86e07d34 1678 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
1da177e4
LT
1679 u64 fbits;
1680 u32 oldbits[2];
1681 int changed;
1682
1683 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1684 fbits = 0;
1685 list_for_each(p, &subs->fmt_list) {
1686 struct audioformat *fp;
1687 fp = list_entry(p, struct audioformat, list);
1688 if (! hw_check_valid_format(params, fp))
1689 continue;
1690 fbits |= (1ULL << fp->format);
1691 }
1692
1693 oldbits[0] = fmt->bits[0];
1694 oldbits[1] = fmt->bits[1];
1695 fmt->bits[0] &= (u32)fbits;
1696 fmt->bits[1] &= (u32)(fbits >> 32);
1697 if (! fmt->bits[0] && ! fmt->bits[1]) {
1698 hwc_debug(" --> get empty\n");
1699 return -EINVAL;
1700 }
1701 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1702 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1703 return changed;
1704}
1705
1706#define MAX_MASK 64
1707
1708/*
1709 * check whether the registered audio formats need special hw-constraints
1710 */
86e07d34 1711static int check_hw_params_convention(struct snd_usb_substream *subs)
1da177e4
LT
1712{
1713 int i;
1714 u32 *channels;
1715 u32 *rates;
1716 u32 cmaster, rmaster;
1717 u32 rate_min = 0, rate_max = 0;
1718 struct list_head *p;
1719 int err = 1;
1720
1721 channels = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
1722 rates = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
1723
1724 list_for_each(p, &subs->fmt_list) {
1725 struct audioformat *f;
1726 f = list_entry(p, struct audioformat, list);
1727 /* unconventional channels? */
1728 if (f->channels > 32)
1729 goto __out;
1730 /* continuous rate min/max matches? */
1731 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1732 if (rate_min && f->rate_min != rate_min)
1733 goto __out;
1734 if (rate_max && f->rate_max != rate_max)
1735 goto __out;
1736 rate_min = f->rate_min;
1737 rate_max = f->rate_max;
1738 }
1739 /* combination of continuous rates and fixed rates? */
1740 if (rates[f->format] & SNDRV_PCM_RATE_CONTINUOUS) {
1741 if (f->rates != rates[f->format])
1742 goto __out;
1743 }
1744 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1745 if (rates[f->format] && rates[f->format] != f->rates)
1746 goto __out;
1747 }
1748 channels[f->format] |= (1 << f->channels);
1749 rates[f->format] |= f->rates;
a79eee8d
LR
1750 /* needs knot? */
1751 if (f->needs_knot)
1752 goto __out;
1da177e4
LT
1753 }
1754 /* check whether channels and rates match for all formats */
1755 cmaster = rmaster = 0;
1756 for (i = 0; i < MAX_MASK; i++) {
1757 if (cmaster != channels[i] && cmaster && channels[i])
1758 goto __out;
1759 if (rmaster != rates[i] && rmaster && rates[i])
1760 goto __out;
1761 if (channels[i])
1762 cmaster = channels[i];
1763 if (rates[i])
1764 rmaster = rates[i];
1765 }
1766 /* check whether channels match for all distinct rates */
1767 memset(channels, 0, MAX_MASK * sizeof(u32));
1768 list_for_each(p, &subs->fmt_list) {
1769 struct audioformat *f;
1770 f = list_entry(p, struct audioformat, list);
1771 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS)
1772 continue;
1773 for (i = 0; i < 32; i++) {
1774 if (f->rates & (1 << i))
1775 channels[i] |= (1 << f->channels);
1776 }
1777 }
1778 cmaster = 0;
1779 for (i = 0; i < 32; i++) {
1780 if (cmaster != channels[i] && cmaster && channels[i])
1781 goto __out;
1782 if (channels[i])
1783 cmaster = channels[i];
1784 }
1785 err = 0;
1786
1787 __out:
1788 kfree(channels);
1789 kfree(rates);
1790 return err;
1791}
1792
a79eee8d
LR
1793/*
1794 * If the device supports unusual bit rates, does the request meet these?
1795 */
1796static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1797 struct snd_usb_substream *subs)
1798{
1799 struct list_head *p;
1800 struct snd_pcm_hw_constraint_list constraints_rates;
1801 int err;
1802
1803 list_for_each(p, &subs->fmt_list) {
1804 struct audioformat *fp;
1805 fp = list_entry(p, struct audioformat, list);
1806
1807 if (!fp->needs_knot)
1808 continue;
1809
1810 constraints_rates.count = fp->nr_rates;
1811 constraints_rates.list = fp->rate_table;
1812 constraints_rates.mask = 0;
1813
1814 err = snd_pcm_hw_constraint_list(runtime, 0,
1815 SNDRV_PCM_HW_PARAM_RATE,
1816 &constraints_rates);
1817
1818 if (err < 0)
1819 return err;
1820 }
1821
1822 return 0;
1823}
1824
1da177e4
LT
1825
1826/*
1827 * set up the runtime hardware information.
1828 */
1829
86e07d34 1830static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
1da177e4
LT
1831{
1832 struct list_head *p;
1833 int err;
1834
1835 runtime->hw.formats = subs->formats;
1836
1837 runtime->hw.rate_min = 0x7fffffff;
1838 runtime->hw.rate_max = 0;
1839 runtime->hw.channels_min = 256;
1840 runtime->hw.channels_max = 0;
1841 runtime->hw.rates = 0;
1842 /* check min/max rates and channels */
1843 list_for_each(p, &subs->fmt_list) {
1844 struct audioformat *fp;
1845 fp = list_entry(p, struct audioformat, list);
1846 runtime->hw.rates |= fp->rates;
1847 if (runtime->hw.rate_min > fp->rate_min)
1848 runtime->hw.rate_min = fp->rate_min;
1849 if (runtime->hw.rate_max < fp->rate_max)
1850 runtime->hw.rate_max = fp->rate_max;
1851 if (runtime->hw.channels_min > fp->channels)
1852 runtime->hw.channels_min = fp->channels;
1853 if (runtime->hw.channels_max < fp->channels)
1854 runtime->hw.channels_max = fp->channels;
1855 if (fp->fmt_type == USB_FORMAT_TYPE_II && fp->frame_size > 0) {
1856 /* FIXME: there might be more than one audio formats... */
1857 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1858 fp->frame_size;
1859 }
1860 }
1861
1862 /* set the period time minimum 1ms */
1863 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1864 1000 * MIN_PACKS_URB,
1865 /*(nrpacks * MAX_URBS) * 1000*/ UINT_MAX);
1866
1867 if (check_hw_params_convention(subs)) {
1868 hwc_debug("setting extra hw constraints...\n");
1869 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1870 hw_rule_rate, subs,
1871 SNDRV_PCM_HW_PARAM_FORMAT,
1872 SNDRV_PCM_HW_PARAM_CHANNELS,
1873 -1)) < 0)
1874 return err;
1875 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1876 hw_rule_channels, subs,
1877 SNDRV_PCM_HW_PARAM_FORMAT,
1878 SNDRV_PCM_HW_PARAM_RATE,
1879 -1)) < 0)
1880 return err;
1881 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1882 hw_rule_format, subs,
1883 SNDRV_PCM_HW_PARAM_RATE,
1884 SNDRV_PCM_HW_PARAM_CHANNELS,
1885 -1)) < 0)
1886 return err;
a79eee8d
LR
1887 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
1888 return err;
1da177e4
LT
1889 }
1890 return 0;
1891}
1892
1700f308 1893static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
1da177e4 1894{
86e07d34
TI
1895 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1896 struct snd_pcm_runtime *runtime = substream->runtime;
1897 struct snd_usb_substream *subs = &as->substream[direction];
1da177e4
LT
1898
1899 subs->interface = -1;
1900 subs->format = 0;
1700f308 1901 runtime->hw = snd_usb_hardware;
1da177e4
LT
1902 runtime->private_data = subs;
1903 subs->pcm_substream = substream;
1904 return setup_hw_info(runtime, subs);
1905}
1906
86e07d34 1907static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
1da177e4 1908{
86e07d34
TI
1909 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1910 struct snd_usb_substream *subs = &as->substream[direction];
1da177e4
LT
1911
1912 if (subs->interface >= 0) {
1913 usb_set_interface(subs->dev, subs->interface, 0);
1914 subs->interface = -1;
1915 }
1916 subs->pcm_substream = NULL;
1917 return 0;
1918}
1919
86e07d34 1920static int snd_usb_playback_open(struct snd_pcm_substream *substream)
1da177e4 1921{
1700f308 1922 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
1da177e4
LT
1923}
1924
86e07d34 1925static int snd_usb_playback_close(struct snd_pcm_substream *substream)
1da177e4
LT
1926{
1927 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1928}
1929
86e07d34 1930static int snd_usb_capture_open(struct snd_pcm_substream *substream)
1da177e4 1931{
1700f308 1932 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
1da177e4
LT
1933}
1934
86e07d34 1935static int snd_usb_capture_close(struct snd_pcm_substream *substream)
1da177e4
LT
1936{
1937 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1938}
1939
86e07d34 1940static struct snd_pcm_ops snd_usb_playback_ops = {
1da177e4
LT
1941 .open = snd_usb_playback_open,
1942 .close = snd_usb_playback_close,
1943 .ioctl = snd_pcm_lib_ioctl,
1944 .hw_params = snd_usb_hw_params,
1945 .hw_free = snd_usb_hw_free,
1946 .prepare = snd_usb_pcm_prepare,
b55bbf06 1947 .trigger = snd_usb_pcm_playback_trigger,
1da177e4 1948 .pointer = snd_usb_pcm_pointer,
6207e51b 1949 .page = snd_pcm_get_vmalloc_page,
1da177e4
LT
1950};
1951
86e07d34 1952static struct snd_pcm_ops snd_usb_capture_ops = {
1da177e4
LT
1953 .open = snd_usb_capture_open,
1954 .close = snd_usb_capture_close,
1955 .ioctl = snd_pcm_lib_ioctl,
1956 .hw_params = snd_usb_hw_params,
1957 .hw_free = snd_usb_hw_free,
1958 .prepare = snd_usb_pcm_prepare,
b55bbf06 1959 .trigger = snd_usb_pcm_capture_trigger,
1da177e4 1960 .pointer = snd_usb_pcm_pointer,
6207e51b 1961 .page = snd_pcm_get_vmalloc_page,
1da177e4
LT
1962};
1963
1964
1965
1966/*
1967 * helper functions
1968 */
1969
1970/*
1971 * combine bytes and get an integer value
1972 */
1973unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size)
1974{
1975 switch (size) {
1976 case 1: return *bytes;
1977 case 2: return combine_word(bytes);
1978 case 3: return combine_triple(bytes);
1979 case 4: return combine_quad(bytes);
1980 default: return 0;
1981 }
1982}
1983
1984/*
1985 * parse descriptor buffer and return the pointer starting the given
1986 * descriptor type.
1987 */
1988void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype)
1989{
1990 u8 *p, *end, *next;
1991
1992 p = descstart;
1993 end = p + desclen;
1994 for (; p < end;) {
1995 if (p[0] < 2)
1996 return NULL;
1997 next = p + p[0];
1998 if (next > end)
1999 return NULL;
2000 if (p[1] == dtype && (!after || (void *)p > after)) {
2001 return p;
2002 }
2003 p = next;
2004 }
2005 return NULL;
2006}
2007
2008/*
2009 * find a class-specified interface descriptor with the given subtype.
2010 */
2011void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype)
2012{
2013 unsigned char *p = after;
2014
2015 while ((p = snd_usb_find_desc(buffer, buflen, p,
2016 USB_DT_CS_INTERFACE)) != NULL) {
2017 if (p[0] >= 3 && p[2] == dsubtype)
2018 return p;
2019 }
2020 return NULL;
2021}
2022
2023/*
2024 * Wrapper for usb_control_msg().
2025 * Allocates a temp buffer to prevent dmaing from/to the stack.
2026 */
2027int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
2028 __u8 requesttype, __u16 value, __u16 index, void *data,
2029 __u16 size, int timeout)
2030{
2031 int err;
2032 void *buf = NULL;
2033
2034 if (size > 0) {
52978be6 2035 buf = kmemdup(data, size, GFP_KERNEL);
1da177e4
LT
2036 if (!buf)
2037 return -ENOMEM;
1da177e4
LT
2038 }
2039 err = usb_control_msg(dev, pipe, request, requesttype,
2040 value, index, buf, size, timeout);
2041 if (size > 0) {
2042 memcpy(data, buf, size);
2043 kfree(buf);
2044 }
2045 return err;
2046}
2047
2048
2049/*
2050 * entry point for linux usb interface
2051 */
2052
2053static int usb_audio_probe(struct usb_interface *intf,
2054 const struct usb_device_id *id);
2055static void usb_audio_disconnect(struct usb_interface *intf);
2056
2057static struct usb_device_id usb_audio_ids [] = {
2058#include "usbquirks.h"
2059 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
2060 .bInterfaceClass = USB_CLASS_AUDIO,
2061 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL },
2062 { } /* Terminating entry */
2063};
2064
2065MODULE_DEVICE_TABLE (usb, usb_audio_ids);
2066
2067static struct usb_driver usb_audio_driver = {
1da177e4
LT
2068 .name = "snd-usb-audio",
2069 .probe = usb_audio_probe,
2070 .disconnect = usb_audio_disconnect,
2071 .id_table = usb_audio_ids,
2072};
2073
2074
727f317a 2075#if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS)
21a3479a 2076
1da177e4
LT
2077/*
2078 * proc interface for list the supported pcm formats
2079 */
86e07d34 2080static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
1da177e4
LT
2081{
2082 struct list_head *p;
2083 static char *sync_types[4] = {
2084 "NONE", "ASYNC", "ADAPTIVE", "SYNC"
2085 };
2086
2087 list_for_each(p, &subs->fmt_list) {
2088 struct audioformat *fp;
2089 fp = list_entry(p, struct audioformat, list);
2090 snd_iprintf(buffer, " Interface %d\n", fp->iface);
2091 snd_iprintf(buffer, " Altset %d\n", fp->altsetting);
3f72a30c 2092 snd_iprintf(buffer, " Format: 0x%x\n", fp->format);
1da177e4
LT
2093 snd_iprintf(buffer, " Channels: %d\n", fp->channels);
2094 snd_iprintf(buffer, " Endpoint: %d %s (%s)\n",
2095 fp->endpoint & USB_ENDPOINT_NUMBER_MASK,
2096 fp->endpoint & USB_DIR_IN ? "IN" : "OUT",
2097 sync_types[(fp->ep_attr & EP_ATTR_MASK) >> 2]);
2098 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) {
2099 snd_iprintf(buffer, " Rates: %d - %d (continuous)\n",
2100 fp->rate_min, fp->rate_max);
2101 } else {
2102 unsigned int i;
2103 snd_iprintf(buffer, " Rates: ");
2104 for (i = 0; i < fp->nr_rates; i++) {
2105 if (i > 0)
2106 snd_iprintf(buffer, ", ");
2107 snd_iprintf(buffer, "%d", fp->rate_table[i]);
2108 }
2109 snd_iprintf(buffer, "\n");
2110 }
2111 // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize);
2112 // snd_iprintf(buffer, " EP Attribute = 0x%x\n", fp->attributes);
2113 }
2114}
2115
86e07d34 2116static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
1da177e4
LT
2117{
2118 if (subs->running) {
2119 unsigned int i;
2120 snd_iprintf(buffer, " Status: Running\n");
2121 snd_iprintf(buffer, " Interface = %d\n", subs->interface);
2122 snd_iprintf(buffer, " Altset = %d\n", subs->format);
2123 snd_iprintf(buffer, " URBs = %d [ ", subs->nurbs);
2124 for (i = 0; i < subs->nurbs; i++)
2125 snd_iprintf(buffer, "%d ", subs->dataurb[i].packets);
2126 snd_iprintf(buffer, "]\n");
2127 snd_iprintf(buffer, " Packet Size = %d\n", subs->curpacksize);
08fe1589 2128 snd_iprintf(buffer, " Momentary freq = %u Hz (%#x.%04x)\n",
1da177e4
LT
2129 snd_usb_get_speed(subs->dev) == USB_SPEED_FULL
2130 ? get_full_speed_hz(subs->freqm)
08fe1589
CL
2131 : get_high_speed_hz(subs->freqm),
2132 subs->freqm >> 16, subs->freqm & 0xffff);
1da177e4
LT
2133 } else {
2134 snd_iprintf(buffer, " Status: Stop\n");
2135 }
2136}
2137
86e07d34 2138static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
1da177e4 2139{
86e07d34 2140 struct snd_usb_stream *stream = entry->private_data;
1da177e4
LT
2141
2142 snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name);
2143
2144 if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) {
2145 snd_iprintf(buffer, "\nPlayback:\n");
2146 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2147 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2148 }
2149 if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) {
2150 snd_iprintf(buffer, "\nCapture:\n");
2151 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2152 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2153 }
2154}
2155
86e07d34 2156static void proc_pcm_format_add(struct snd_usb_stream *stream)
1da177e4 2157{
86e07d34 2158 struct snd_info_entry *entry;
1da177e4 2159 char name[32];
86e07d34 2160 struct snd_card *card = stream->chip->card;
1da177e4
LT
2161
2162 sprintf(name, "stream%d", stream->pcm_index);
2163 if (! snd_card_proc_new(card, name, &entry))
bf850204 2164 snd_info_set_text_ops(entry, stream, proc_pcm_format_read);
1da177e4
LT
2165}
2166
21a3479a
JK
2167#else
2168
2169static inline void proc_pcm_format_add(struct snd_usb_stream *stream)
2170{
2171}
2172
2173#endif
1da177e4
LT
2174
2175/*
2176 * initialize the substream instance.
2177 */
2178
86e07d34 2179static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp)
1da177e4 2180{
86e07d34 2181 struct snd_usb_substream *subs = &as->substream[stream];
1da177e4
LT
2182
2183 INIT_LIST_HEAD(&subs->fmt_list);
2184 spin_lock_init(&subs->lock);
2185
2186 subs->stream = as;
2187 subs->direction = stream;
2188 subs->dev = as->chip->dev;
2189 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
2190 subs->ops = audio_urb_ops[stream];
2191 else
2192 subs->ops = audio_urb_ops_high_speed[stream];
1da177e4
LT
2193 snd_pcm_set_ops(as->pcm, stream,
2194 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2195 &snd_usb_playback_ops : &snd_usb_capture_ops);
2196
2197 list_add_tail(&fp->list, &subs->fmt_list);
2198 subs->formats |= 1ULL << fp->format;
2199 subs->endpoint = fp->endpoint;
2200 subs->num_formats++;
2201 subs->fmt_type = fp->fmt_type;
2202}
2203
2204
2205/*
2206 * free a substream
2207 */
86e07d34 2208static void free_substream(struct snd_usb_substream *subs)
1da177e4
LT
2209{
2210 struct list_head *p, *n;
2211
2212 if (! subs->num_formats)
2213 return; /* not initialized */
2214 list_for_each_safe(p, n, &subs->fmt_list) {
2215 struct audioformat *fp = list_entry(p, struct audioformat, list);
2216 kfree(fp->rate_table);
2217 kfree(fp);
2218 }
2219}
2220
2221
2222/*
2223 * free a usb stream instance
2224 */
86e07d34 2225static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
1da177e4
LT
2226{
2227 free_substream(&stream->substream[0]);
2228 free_substream(&stream->substream[1]);
2229 list_del(&stream->list);
2230 kfree(stream);
2231}
2232
86e07d34 2233static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
1da177e4 2234{
86e07d34 2235 struct snd_usb_stream *stream = pcm->private_data;
1da177e4
LT
2236 if (stream) {
2237 stream->pcm = NULL;
1da177e4
LT
2238 snd_usb_audio_stream_free(stream);
2239 }
2240}
2241
2242
2243/*
2244 * add this endpoint to the chip instance.
2245 * if a stream with the same endpoint already exists, append to it.
2246 * if not, create a new pcm stream.
2247 */
86e07d34 2248static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
1da177e4
LT
2249{
2250 struct list_head *p;
86e07d34
TI
2251 struct snd_usb_stream *as;
2252 struct snd_usb_substream *subs;
2253 struct snd_pcm *pcm;
1da177e4
LT
2254 int err;
2255
2256 list_for_each(p, &chip->pcm_list) {
86e07d34 2257 as = list_entry(p, struct snd_usb_stream, list);
1da177e4
LT
2258 if (as->fmt_type != fp->fmt_type)
2259 continue;
2260 subs = &as->substream[stream];
2261 if (! subs->endpoint)
2262 continue;
2263 if (subs->endpoint == fp->endpoint) {
2264 list_add_tail(&fp->list, &subs->fmt_list);
2265 subs->num_formats++;
2266 subs->formats |= 1ULL << fp->format;
2267 return 0;
2268 }
2269 }
2270 /* look for an empty stream */
2271 list_for_each(p, &chip->pcm_list) {
86e07d34 2272 as = list_entry(p, struct snd_usb_stream, list);
1da177e4
LT
2273 if (as->fmt_type != fp->fmt_type)
2274 continue;
2275 subs = &as->substream[stream];
2276 if (subs->endpoint)
2277 continue;
2278 err = snd_pcm_new_stream(as->pcm, stream, 1);
2279 if (err < 0)
2280 return err;
2281 init_substream(as, stream, fp);
2282 return 0;
2283 }
2284
2285 /* create a new pcm */
59feddb2 2286 as = kzalloc(sizeof(*as), GFP_KERNEL);
1da177e4
LT
2287 if (! as)
2288 return -ENOMEM;
1da177e4
LT
2289 as->pcm_index = chip->pcm_devs;
2290 as->chip = chip;
2291 as->fmt_type = fp->fmt_type;
2292 err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
2293 stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
2294 stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
2295 &pcm);
2296 if (err < 0) {
2297 kfree(as);
2298 return err;
2299 }
2300 as->pcm = pcm;
2301 pcm->private_data = as;
2302 pcm->private_free = snd_usb_audio_pcm_free;
2303 pcm->info_flags = 0;
2304 if (chip->pcm_devs > 0)
2305 sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
2306 else
2307 strcpy(pcm->name, "USB Audio");
2308
2309 init_substream(as, stream, fp);
2310
2311 list_add(&as->list, &chip->pcm_list);
2312 chip->pcm_devs++;
2313
2314 proc_pcm_format_add(as);
2315
2316 return 0;
2317}
2318
2319
2320/*
2321 * check if the device uses big-endian samples
2322 */
86e07d34 2323static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
1da177e4 2324{
27d10f56
CL
2325 switch (chip->usb_id) {
2326 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
2327 if (fp->endpoint & USB_DIR_IN)
1da177e4 2328 return 1;
27d10f56
CL
2329 break;
2330 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2331 return 1;
1da177e4
LT
2332 }
2333 return 0;
2334}
2335
2336/*
2337 * parse the audio format type I descriptor
2338 * and returns the corresponding pcm format
2339 *
2340 * @dev: usb device
2341 * @fp: audioformat record
2342 * @format: the format tag (wFormatTag)
2343 * @fmt: the format type descriptor
2344 */
86e07d34 2345static int parse_audio_format_i_type(struct snd_usb_audio *chip, struct audioformat *fp,
1da177e4
LT
2346 int format, unsigned char *fmt)
2347{
2348 int pcm_format;
2349 int sample_width, sample_bytes;
2350
2351 /* FIXME: correct endianess and sign? */
2352 pcm_format = -1;
2353 sample_width = fmt[6];
2354 sample_bytes = fmt[5];
2355 switch (format) {
2356 case 0: /* some devices don't define this correctly... */
2357 snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
27d10f56 2358 chip->dev->devnum, fp->iface, fp->altsetting);
1da177e4
LT
2359 /* fall-through */
2360 case USB_AUDIO_FORMAT_PCM:
2361 if (sample_width > sample_bytes * 8) {
2362 snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
27d10f56 2363 chip->dev->devnum, fp->iface, fp->altsetting,
1da177e4
LT
2364 sample_width, sample_bytes);
2365 }
2366 /* check the format byte size */
2367 switch (fmt[5]) {
2368 case 1:
2369 pcm_format = SNDRV_PCM_FORMAT_S8;
2370 break;
2371 case 2:
27d10f56 2372 if (is_big_endian_format(chip, fp))
1da177e4
LT
2373 pcm_format = SNDRV_PCM_FORMAT_S16_BE; /* grrr, big endian!! */
2374 else
2375 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2376 break;
2377 case 3:
27d10f56 2378 if (is_big_endian_format(chip, fp))
1da177e4
LT
2379 pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */
2380 else
2381 pcm_format = SNDRV_PCM_FORMAT_S24_3LE;
2382 break;
2383 case 4:
2384 pcm_format = SNDRV_PCM_FORMAT_S32_LE;
2385 break;
2386 default:
2387 snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
27d10f56
CL
2388 chip->dev->devnum, fp->iface,
2389 fp->altsetting, sample_width, sample_bytes);
1da177e4
LT
2390 break;
2391 }
2392 break;
2393 case USB_AUDIO_FORMAT_PCM8:
2394 /* Dallas DS4201 workaround */
27d10f56 2395 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
1da177e4
LT
2396 pcm_format = SNDRV_PCM_FORMAT_S8;
2397 else
2398 pcm_format = SNDRV_PCM_FORMAT_U8;
2399 break;
2400 case USB_AUDIO_FORMAT_IEEE_FLOAT:
2401 pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE;
2402 break;
2403 case USB_AUDIO_FORMAT_ALAW:
2404 pcm_format = SNDRV_PCM_FORMAT_A_LAW;
2405 break;
2406 case USB_AUDIO_FORMAT_MU_LAW:
2407 pcm_format = SNDRV_PCM_FORMAT_MU_LAW;
2408 break;
2409 default:
2410 snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n",
27d10f56 2411 chip->dev->devnum, fp->iface, fp->altsetting, format);
1da177e4
LT
2412 break;
2413 }
2414 return pcm_format;
2415}
2416
2417
2418/*
2419 * parse the format descriptor and stores the possible sample rates
2420 * on the audioformat table.
2421 *
2422 * @dev: usb device
2423 * @fp: audioformat record
2424 * @fmt: the format descriptor
2425 * @offset: the start offset of descriptor pointing the rate type
2426 * (7 for type I and II, 8 for type II)
2427 */
86e07d34 2428static int parse_audio_format_rates(struct snd_usb_audio *chip, struct audioformat *fp,
1da177e4
LT
2429 unsigned char *fmt, int offset)
2430{
2431 int nr_rates = fmt[offset];
a79eee8d 2432 int found;
1da177e4
LT
2433 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
2434 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
27d10f56 2435 chip->dev->devnum, fp->iface, fp->altsetting);
1da177e4
LT
2436 return -1;
2437 }
2438
2439 if (nr_rates) {
2440 /*
2441 * build the rate table and bitmap flags
2442 */
2443 int r, idx, c;
2444 /* this table corresponds to the SNDRV_PCM_RATE_XXX bit */
2445 static unsigned int conv_rates[] = {
2446 5512, 8000, 11025, 16000, 22050, 32000, 44100, 48000,
2447 64000, 88200, 96000, 176400, 192000
2448 };
2449 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
2450 if (fp->rate_table == NULL) {
2451 snd_printk(KERN_ERR "cannot malloc\n");
2452 return -1;
2453 }
2454
a79eee8d 2455 fp->needs_knot = 0;
1da177e4
LT
2456 fp->nr_rates = nr_rates;
2457 fp->rate_min = fp->rate_max = combine_triple(&fmt[8]);
2458 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
987411b7
CL
2459 unsigned int rate = combine_triple(&fmt[idx]);
2460 /* C-Media CM6501 mislabels its 96 kHz altsetting */
2461 if (rate == 48000 && nr_rates == 1 &&
2462 chip->usb_id == USB_ID(0x0d8c, 0x0201) &&
2463 fp->altsetting == 5 && fp->maxpacksize == 392)
2464 rate = 96000;
2465 fp->rate_table[r] = rate;
1da177e4
LT
2466 if (rate < fp->rate_min)
2467 fp->rate_min = rate;
2468 else if (rate > fp->rate_max)
2469 fp->rate_max = rate;
a79eee8d 2470 found = 0;
1da177e4
LT
2471 for (c = 0; c < (int)ARRAY_SIZE(conv_rates); c++) {
2472 if (rate == conv_rates[c]) {
a79eee8d 2473 found = 1;
1da177e4
LT
2474 fp->rates |= (1 << c);
2475 break;
2476 }
2477 }
a79eee8d
LR
2478 if (!found)
2479 fp->needs_knot = 1;
1da177e4 2480 }
a79eee8d
LR
2481 if (fp->needs_knot)
2482 fp->rates |= SNDRV_PCM_RATE_KNOT;
1da177e4
LT
2483 } else {
2484 /* continuous rates */
2485 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
2486 fp->rate_min = combine_triple(&fmt[offset + 1]);
2487 fp->rate_max = combine_triple(&fmt[offset + 4]);
2488 }
2489 return 0;
2490}
2491
2492/*
2493 * parse the format type I and III descriptors
2494 */
86e07d34 2495static int parse_audio_format_i(struct snd_usb_audio *chip, struct audioformat *fp,
1da177e4
LT
2496 int format, unsigned char *fmt)
2497{
2498 int pcm_format;
2499
2500 if (fmt[3] == USB_FORMAT_TYPE_III) {
2501 /* FIXME: the format type is really IECxxx
2502 * but we give normal PCM format to get the existing
2503 * apps working...
2504 */
2505 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2506 } else {
27d10f56 2507 pcm_format = parse_audio_format_i_type(chip, fp, format, fmt);
1da177e4
LT
2508 if (pcm_format < 0)
2509 return -1;
2510 }
2511 fp->format = pcm_format;
2512 fp->channels = fmt[4];
2513 if (fp->channels < 1) {
2514 snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
27d10f56 2515 chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
1da177e4
LT
2516 return -1;
2517 }
27d10f56 2518 return parse_audio_format_rates(chip, fp, fmt, 7);
1da177e4
LT
2519}
2520
2521/*
2522 * prase the format type II descriptor
2523 */
86e07d34 2524static int parse_audio_format_ii(struct snd_usb_audio *chip, struct audioformat *fp,
1da177e4
LT
2525 int format, unsigned char *fmt)
2526{
2527 int brate, framesize;
2528 switch (format) {
2529 case USB_AUDIO_FORMAT_AC3:
2530 /* FIXME: there is no AC3 format defined yet */
2531 // fp->format = SNDRV_PCM_FORMAT_AC3;
2532 fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */
2533 break;
2534 case USB_AUDIO_FORMAT_MPEG:
2535 fp->format = SNDRV_PCM_FORMAT_MPEG;
2536 break;
2537 default:
2538 snd_printd(KERN_INFO "%d:%u:%d : unknown format tag 0x%x is detected. processed as MPEG.\n",
27d10f56 2539 chip->dev->devnum, fp->iface, fp->altsetting, format);
1da177e4
LT
2540 fp->format = SNDRV_PCM_FORMAT_MPEG;
2541 break;
2542 }
2543 fp->channels = 1;
2544 brate = combine_word(&fmt[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */
2545 framesize = combine_word(&fmt[6]); /* fmt[6,7]: wSamplesPerFrame */
2546 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
2547 fp->frame_size = framesize;
27d10f56 2548 return parse_audio_format_rates(chip, fp, fmt, 8); /* fmt[8..] sample rates */
1da177e4
LT
2549}
2550
86e07d34 2551static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
1da177e4
LT
2552 int format, unsigned char *fmt, int stream)
2553{
2554 int err;
2555
2556 switch (fmt[3]) {
2557 case USB_FORMAT_TYPE_I:
2558 case USB_FORMAT_TYPE_III:
27d10f56 2559 err = parse_audio_format_i(chip, fp, format, fmt);
1da177e4
LT
2560 break;
2561 case USB_FORMAT_TYPE_II:
27d10f56 2562 err = parse_audio_format_ii(chip, fp, format, fmt);
1da177e4
LT
2563 break;
2564 default:
2565 snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
27d10f56 2566 chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]);
1da177e4
LT
2567 return -1;
2568 }
2569 fp->fmt_type = fmt[3];
2570 if (err < 0)
2571 return err;
2572#if 1
33159378 2573 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
1da177e4
LT
2574 /* extigy apparently supports sample rates other than 48k
2575 * but not in ordinary way. so we enable only 48k atm.
2576 */
27d10f56 2577 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
33159378
CL
2578 chip->usb_id == USB_ID(0x041e, 0x3020) ||
2579 chip->usb_id == USB_ID(0x041e, 0x3061)) {
1da177e4 2580 if (fmt[3] == USB_FORMAT_TYPE_I &&
8c1872dc
CL
2581 fp->rates != SNDRV_PCM_RATE_48000 &&
2582 fp->rates != SNDRV_PCM_RATE_96000)
b4d3f9d4 2583 return -1;
1da177e4
LT
2584 }
2585#endif
2586 return 0;
2587}
2588
e311334e
TLM
2589static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
2590 int iface, int altno);
86e07d34 2591static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
1da177e4
LT
2592{
2593 struct usb_device *dev;
2594 struct usb_interface *iface;
2595 struct usb_host_interface *alts;
2596 struct usb_interface_descriptor *altsd;
2597 int i, altno, err, stream;
2598 int format;
2599 struct audioformat *fp;
2600 unsigned char *fmt, *csep;
2601
2602 dev = chip->dev;
2603
2604 /* parse the interface's altsettings */
2605 iface = usb_ifnum_to_if(dev, iface_no);
2606 for (i = 0; i < iface->num_altsetting; i++) {
2607 alts = &iface->altsetting[i];
2608 altsd = get_iface_desc(alts);
2609 /* skip invalid one */
2610 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2611 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2612 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING &&
2613 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
2614 altsd->bNumEndpoints < 1 ||
2615 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
2616 continue;
2617 /* must be isochronous */
2618 if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
2619 USB_ENDPOINT_XFER_ISOC)
2620 continue;
2621 /* check direction */
2622 stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
2623 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2624 altno = altsd->bAlternateSetting;
e311334e
TLM
2625
2626 /* audiophile usb: skip altsets incompatible with device_setup
2627 */
2628 if (chip->usb_id == USB_ID(0x0763, 0x2003) &&
2629 audiophile_skip_setting_quirk(chip, iface_no, altno))
2630 continue;
1da177e4
LT
2631
2632 /* get audio formats */
2633 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, AS_GENERAL);
2634 if (!fmt) {
2635 snd_printk(KERN_ERR "%d:%u:%d : AS_GENERAL descriptor not found\n",
2636 dev->devnum, iface_no, altno);
2637 continue;
2638 }
2639
2640 if (fmt[0] < 7) {
2641 snd_printk(KERN_ERR "%d:%u:%d : invalid AS_GENERAL desc\n",
2642 dev->devnum, iface_no, altno);
2643 continue;
2644 }
2645
2646 format = (fmt[6] << 8) | fmt[5]; /* remember the format value */
2647
2648 /* get format type */
2649 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, FORMAT_TYPE);
2650 if (!fmt) {
2651 snd_printk(KERN_ERR "%d:%u:%d : no FORMAT_TYPE desc\n",
2652 dev->devnum, iface_no, altno);
2653 continue;
2654 }
2655 if (fmt[0] < 8) {
2656 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
2657 dev->devnum, iface_no, altno);
2658 continue;
2659 }
2660
2661 csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
2662 /* Creamware Noah has this descriptor after the 2nd endpoint */
2663 if (!csep && altsd->bNumEndpoints >= 2)
2664 csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
2665 if (!csep || csep[0] < 7 || csep[2] != EP_GENERAL) {
f8c75790 2666 snd_printk(KERN_WARNING "%d:%u:%d : no or invalid"
faf8d117 2667 " class specific endpoint descriptor\n",
1da177e4 2668 dev->devnum, iface_no, altno);
faf8d117 2669 csep = NULL;
1da177e4
LT
2670 }
2671
59feddb2 2672 fp = kzalloc(sizeof(*fp), GFP_KERNEL);
1da177e4
LT
2673 if (! fp) {
2674 snd_printk(KERN_ERR "cannot malloc\n");
2675 return -ENOMEM;
2676 }
2677
1da177e4
LT
2678 fp->iface = iface_no;
2679 fp->altsetting = altno;
2680 fp->altset_idx = i;
2681 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2682 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
1da177e4 2683 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
573567e0
CL
2684 if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
2685 fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
2686 * (fp->maxpacksize & 0x7ff);
faf8d117 2687 fp->attributes = csep ? csep[3] : 0;
1da177e4
LT
2688
2689 /* some quirks for attributes here */
2690
c3f93297
CL
2691 switch (chip->usb_id) {
2692 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
1da177e4
LT
2693 /* Optoplay sets the sample rate attribute although
2694 * it seems not supporting it in fact.
2695 */
2696 fp->attributes &= ~EP_CS_ATTR_SAMPLE_RATE;
c3f93297
CL
2697 break;
2698 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
2699 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
1da177e4
LT
2700 /* doesn't set the sample rate attribute, but supports it */
2701 fp->attributes |= EP_CS_ATTR_SAMPLE_RATE;
c3f93297
CL
2702 break;
2703 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
2704 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
2705 an older model 77d:223) */
1da177e4
LT
2706 /*
2707 * plantronics headset and Griffin iMic have set adaptive-in
2708 * although it's really not...
2709 */
1da177e4
LT
2710 fp->ep_attr &= ~EP_ATTR_MASK;
2711 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2712 fp->ep_attr |= EP_ATTR_ADAPTIVE;
2713 else
2714 fp->ep_attr |= EP_ATTR_SYNC;
c3f93297 2715 break;
1da177e4
LT
2716 }
2717
2718 /* ok, let's parse further... */
27d10f56 2719 if (parse_audio_format(chip, fp, format, fmt, stream) < 0) {
1da177e4
LT
2720 kfree(fp->rate_table);
2721 kfree(fp);
2722 continue;
2723 }
2724
e311334e 2725 snd_printdd(KERN_INFO "%d:%u:%d: add audio endpoint 0x%x\n", dev->devnum, iface_no, altno, fp->endpoint);
1da177e4
LT
2726 err = add_audio_endpoint(chip, stream, fp);
2727 if (err < 0) {
2728 kfree(fp->rate_table);
2729 kfree(fp);
2730 return err;
2731 }
2732 /* try to set the interface... */
2733 usb_set_interface(chip->dev, iface_no, altno);
2734 init_usb_pitch(chip->dev, iface_no, alts, fp);
2735 init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max);
2736 }
2737 return 0;
2738}
2739
2740
2741/*
2742 * disconnect streams
2743 * called from snd_usb_audio_disconnect()
2744 */
ee733397 2745static void snd_usb_stream_disconnect(struct list_head *head)
1da177e4
LT
2746{
2747 int idx;
86e07d34
TI
2748 struct snd_usb_stream *as;
2749 struct snd_usb_substream *subs;
1da177e4 2750
86e07d34 2751 as = list_entry(head, struct snd_usb_stream, list);
1da177e4
LT
2752 for (idx = 0; idx < 2; idx++) {
2753 subs = &as->substream[idx];
2754 if (!subs->num_formats)
2755 return;
2756 release_substream_urbs(subs, 1);
2757 subs->interface = -1;
2758 }
2759}
2760
2761/*
2762 * parse audio control descriptor and create pcm/midi streams
2763 */
86e07d34 2764static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
1da177e4
LT
2765{
2766 struct usb_device *dev = chip->dev;
2767 struct usb_host_interface *host_iface;
2768 struct usb_interface *iface;
2769 unsigned char *p1;
2770 int i, j;
2771
2772 /* find audiocontrol interface */
2773 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
2774 if (!(p1 = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen, NULL, HEADER))) {
2775 snd_printk(KERN_ERR "cannot find HEADER\n");
2776 return -EINVAL;
2777 }
2778 if (! p1[7] || p1[0] < 8 + p1[7]) {
2779 snd_printk(KERN_ERR "invalid HEADER\n");
2780 return -EINVAL;
2781 }
2782
2783 /*
2784 * parse all USB audio streaming interfaces
2785 */
2786 for (i = 0; i < p1[7]; i++) {
2787 struct usb_host_interface *alts;
2788 struct usb_interface_descriptor *altsd;
2789 j = p1[8 + i];
2790 iface = usb_ifnum_to_if(dev, j);
2791 if (!iface) {
2792 snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
2793 dev->devnum, ctrlif, j);
2794 continue;
2795 }
2796 if (usb_interface_claimed(iface)) {
2797 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n", dev->devnum, ctrlif, j);
2798 continue;
2799 }
2800 alts = &iface->altsetting[0];
2801 altsd = get_iface_desc(alts);
2802 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
2803 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
2804 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDI_STREAMING) {
2805 if (snd_usb_create_midi_interface(chip, iface, NULL) < 0) {
2806 snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n", dev->devnum, ctrlif, j);
2807 continue;
2808 }
2809 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2810 continue;
2811 }
2812 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2813 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2814 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING) {
2815 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n", dev->devnum, ctrlif, j, altsd->bInterfaceClass);
2816 /* skip non-supported classes */
2817 continue;
2818 }
2819 if (! parse_audio_endpoints(chip, j)) {
2820 usb_set_interface(dev, j, 0); /* reset the current interface */
2821 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2822 }
2823 }
2824
2825 return 0;
2826}
2827
2828/*
2829 * create a stream for an endpoint/altsetting without proper descriptors
2830 */
86e07d34 2831static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
1da177e4 2832 struct usb_interface *iface,
86e07d34 2833 const struct snd_usb_audio_quirk *quirk)
1da177e4
LT
2834{
2835 struct audioformat *fp;
2836 struct usb_host_interface *alts;
2837 int stream, err;
2838 int *rate_table = NULL;
2839
52978be6 2840 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
1da177e4 2841 if (! fp) {
52978be6 2842 snd_printk(KERN_ERR "cannot memdup\n");
1da177e4
LT
2843 return -ENOMEM;
2844 }
1da177e4
LT
2845 if (fp->nr_rates > 0) {
2846 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
2847 if (!rate_table) {
2848 kfree(fp);
2849 return -ENOMEM;
2850 }
2851 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
2852 fp->rate_table = rate_table;
2853 }
2854
2855 stream = (fp->endpoint & USB_DIR_IN)
2856 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2857 err = add_audio_endpoint(chip, stream, fp);
2858 if (err < 0) {
2859 kfree(fp);
2860 kfree(rate_table);
2861 return err;
2862 }
2863 if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
2864 fp->altset_idx >= iface->num_altsetting) {
2865 kfree(fp);
2866 kfree(rate_table);
2867 return -EINVAL;
2868 }
2869 alts = &iface->altsetting[fp->altset_idx];
2870 usb_set_interface(chip->dev, fp->iface, 0);
2871 init_usb_pitch(chip->dev, fp->iface, alts, fp);
2872 init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max);
2873 return 0;
2874}
2875
2876/*
2877 * create a stream for an interface with proper descriptors
2878 */
86e07d34 2879static int create_standard_audio_quirk(struct snd_usb_audio *chip,
d1bda045 2880 struct usb_interface *iface,
86e07d34 2881 const struct snd_usb_audio_quirk *quirk)
1da177e4
LT
2882{
2883 struct usb_host_interface *alts;
2884 struct usb_interface_descriptor *altsd;
2885 int err;
2886
2887 alts = &iface->altsetting[0];
2888 altsd = get_iface_desc(alts);
d1bda045 2889 err = parse_audio_endpoints(chip, altsd->bInterfaceNumber);
1da177e4
LT
2890 if (err < 0) {
2891 snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
2892 altsd->bInterfaceNumber, err);
2893 return err;
2894 }
d1bda045
CL
2895 /* reset the current interface */
2896 usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
1da177e4
LT
2897 return 0;
2898}
2899
2900/*
2901 * Create a stream for an Edirol UA-700/UA-25 interface. The only way
2902 * to detect the sample rate is by looking at wMaxPacketSize.
2903 */
86e07d34 2904static int create_ua700_ua25_quirk(struct snd_usb_audio *chip,
854af957 2905 struct usb_interface *iface,
86e07d34 2906 const struct snd_usb_audio_quirk *quirk)
1da177e4
LT
2907{
2908 static const struct audioformat ua_format = {
2909 .format = SNDRV_PCM_FORMAT_S24_3LE,
2910 .channels = 2,
2911 .fmt_type = USB_FORMAT_TYPE_I,
2912 .altsetting = 1,
2913 .altset_idx = 1,
2914 .rates = SNDRV_PCM_RATE_CONTINUOUS,
2915 };
2916 struct usb_host_interface *alts;
2917 struct usb_interface_descriptor *altsd;
2918 struct audioformat *fp;
2919 int stream, err;
2920
2921 /* both PCM and MIDI interfaces have 2 altsettings */
2922 if (iface->num_altsetting != 2)
2923 return -ENXIO;
2924 alts = &iface->altsetting[1];
2925 altsd = get_iface_desc(alts);
2926
2927 if (altsd->bNumEndpoints == 2) {
86e07d34 2928 static const struct snd_usb_midi_endpoint_info ua700_ep = {
1da177e4
LT
2929 .out_cables = 0x0003,
2930 .in_cables = 0x0003
2931 };
86e07d34 2932 static const struct snd_usb_audio_quirk ua700_quirk = {
1da177e4
LT
2933 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2934 .data = &ua700_ep
2935 };
86e07d34 2936 static const struct snd_usb_midi_endpoint_info ua25_ep = {
1da177e4
LT
2937 .out_cables = 0x0001,
2938 .in_cables = 0x0001
2939 };
86e07d34 2940 static const struct snd_usb_audio_quirk ua25_quirk = {
1da177e4
LT
2941 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2942 .data = &ua25_ep
2943 };
27d10f56 2944 if (chip->usb_id == USB_ID(0x0582, 0x002b))
1da177e4
LT
2945 return snd_usb_create_midi_interface(chip, iface,
2946 &ua700_quirk);
2947 else
2948 return snd_usb_create_midi_interface(chip, iface,
2949 &ua25_quirk);
2950 }
2951
2952 if (altsd->bNumEndpoints != 1)
2953 return -ENXIO;
2954
2955 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
2956 if (!fp)
2957 return -ENOMEM;
2958 memcpy(fp, &ua_format, sizeof(*fp));
2959
2960 fp->iface = altsd->bInterfaceNumber;
2961 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2962 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
2963 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
2964
2965 switch (fp->maxpacksize) {
2966 case 0x120:
2967 fp->rate_max = fp->rate_min = 44100;
2968 break;
2969 case 0x138:
2970 case 0x140:
2971 fp->rate_max = fp->rate_min = 48000;
2972 break;
2973 case 0x258:
2974 case 0x260:
2975 fp->rate_max = fp->rate_min = 96000;
2976 break;
2977 default:
2978 snd_printk(KERN_ERR "unknown sample rate\n");
2979 kfree(fp);
2980 return -ENXIO;
2981 }
2982
2983 stream = (fp->endpoint & USB_DIR_IN)
2984 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2985 err = add_audio_endpoint(chip, stream, fp);
2986 if (err < 0) {
2987 kfree(fp);
2988 return err;
2989 }
2990 usb_set_interface(chip->dev, fp->iface, 0);
2991 return 0;
2992}
2993
2994/*
2995 * Create a stream for an Edirol UA-1000 interface.
2996 */
86e07d34 2997static int create_ua1000_quirk(struct snd_usb_audio *chip,
854af957 2998 struct usb_interface *iface,
86e07d34 2999 const struct snd_usb_audio_quirk *quirk)
1da177e4
LT
3000{
3001 static const struct audioformat ua1000_format = {
3002 .format = SNDRV_PCM_FORMAT_S32_LE,
3003 .fmt_type = USB_FORMAT_TYPE_I,
3004 .altsetting = 1,
3005 .altset_idx = 1,
3006 .attributes = 0,
3007 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3008 };
3009 struct usb_host_interface *alts;
3010 struct usb_interface_descriptor *altsd;
3011 struct audioformat *fp;
3012 int stream, err;
3013
3014 if (iface->num_altsetting != 2)
3015 return -ENXIO;
3016 alts = &iface->altsetting[1];
3017 altsd = get_iface_desc(alts);
c4a87ef4 3018 if (alts->extralen != 11 || alts->extra[1] != USB_DT_CS_INTERFACE ||
1da177e4
LT
3019 altsd->bNumEndpoints != 1)
3020 return -ENXIO;
3021
52978be6 3022 fp = kmemdup(&ua1000_format, sizeof(*fp), GFP_KERNEL);
1da177e4
LT
3023 if (!fp)
3024 return -ENOMEM;
1da177e4
LT
3025
3026 fp->channels = alts->extra[4];
3027 fp->iface = altsd->bInterfaceNumber;
3028 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3029 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3030 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3031 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[8]);
3032
3033 stream = (fp->endpoint & USB_DIR_IN)
3034 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3035 err = add_audio_endpoint(chip, stream, fp);
3036 if (err < 0) {
3037 kfree(fp);
3038 return err;
3039 }
3040 /* FIXME: playback must be synchronized to capture */
3041 usb_set_interface(chip->dev, fp->iface, 0);
3042 return 0;
3043}
3044
86e07d34 3045static int snd_usb_create_quirk(struct snd_usb_audio *chip,
1da177e4 3046 struct usb_interface *iface,
86e07d34 3047 const struct snd_usb_audio_quirk *quirk);
1da177e4
LT
3048
3049/*
3050 * handle the quirks for the contained interfaces
3051 */
86e07d34 3052static int create_composite_quirk(struct snd_usb_audio *chip,
1da177e4 3053 struct usb_interface *iface,
86e07d34 3054 const struct snd_usb_audio_quirk *quirk)
1da177e4
LT
3055{
3056 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
3057 int err;
3058
3059 for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
3060 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
3061 if (!iface)
3062 continue;
3063 if (quirk->ifnum != probed_ifnum &&
3064 usb_interface_claimed(iface))
3065 continue;
3066 err = snd_usb_create_quirk(chip, iface, quirk);
3067 if (err < 0)
3068 return err;
3069 if (quirk->ifnum != probed_ifnum)
3070 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
3071 }
3072 return 0;
3073}
3074
86e07d34 3075static int ignore_interface_quirk(struct snd_usb_audio *chip,
854af957 3076 struct usb_interface *iface,
86e07d34 3077 const struct snd_usb_audio_quirk *quirk)
854af957
CL
3078{
3079 return 0;
3080}
3081
1da177e4
LT
3082
3083/*
3084 * boot quirks
3085 */
3086
3087#define EXTIGY_FIRMWARE_SIZE_OLD 794
3088#define EXTIGY_FIRMWARE_SIZE_NEW 483
3089
3090static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
3091{
3092 struct usb_host_config *config = dev->actconfig;
3093 int err;
3094
3095 if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
3096 le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
3097 snd_printdd("sending Extigy boot sequence...\n");
3098 /* Send message to force it to reconnect with full interface. */
3099 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
3100 0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000);
3101 if (err < 0) snd_printdd("error sending boot message: %d\n", err);
3102 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
3103 &dev->descriptor, sizeof(dev->descriptor));
3104 config = dev->actconfig;
3105 if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
3106 err = usb_reset_configuration(dev);
3107 if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
3108 snd_printdd("extigy_boot: new boot length = %d\n",
3109 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
3110 return -ENODEV; /* quit this anyway */
3111 }
3112 return 0;
3113}
3114
3a2f0856
CL
3115static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
3116{
3a2f0856
CL
3117 u8 buf = 1;
3118
3119 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
3120 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3121 0, 0, &buf, 1, 1000);
3122 if (buf == 0) {
3123 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
3124 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3125 1, 2000, NULL, 0, 1000);
3126 return -ENODEV;
3127 }
3a2f0856
CL
3128 return 0;
3129}
3130
e217e30c
SR
3131/*
3132 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
3133 * documented in the device's data sheet.
3134 */
3135static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value)
3136{
3137 u8 buf[4];
3138 buf[0] = 0x20;
3139 buf[1] = value & 0xff;
3140 buf[2] = (value >> 8) & 0xff;
3141 buf[3] = reg;
3142 return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION,
3143 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT,
3144 0, 0, &buf, 4, 1000);
3145}
3146
3147static int snd_usb_cm106_boot_quirk(struct usb_device *dev)
3148{
3149 /*
3150 * Enable line-out driver mode, set headphone source to front
3151 * channels, enable stereo mic.
3152 */
3153 return snd_usb_cm106_write_int_reg(dev, 2, 0x8004);
3154}
3155
3156
e311334e
TLM
3157/*
3158 * Setup quirks
3159 */
3160#define AUDIOPHILE_SET 0x01 /* if set, parse device_setup */
3161#define AUDIOPHILE_SET_DTS 0x02 /* if set, enable DTS Digital Output */
3162#define AUDIOPHILE_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
3163#define AUDIOPHILE_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */
3164#define AUDIOPHILE_SET_DI 0x10 /* if set, enable Digital Input */
3165#define AUDIOPHILE_SET_MASK 0x1F /* bit mask for setup value */
3166#define AUDIOPHILE_SET_24B_48K_DI 0x19 /* value for 24bits+48KHz+Digital Input */
3167#define AUDIOPHILE_SET_24B_48K_NOTDI 0x09 /* value for 24bits+48KHz+No Digital Input */
3168#define AUDIOPHILE_SET_16B_48K_DI 0x11 /* value for 16bits+48KHz+Digital Input */
3169#define AUDIOPHILE_SET_16B_48K_NOTDI 0x01 /* value for 16bits+48KHz+No Digital Input */
3170
3171static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
3172 int iface, int altno)
3173{
3174 if (device_setup[chip->index] & AUDIOPHILE_SET) {
3175 if ((device_setup[chip->index] & AUDIOPHILE_SET_DTS)
3176 && altno != 6)
3177 return 1; /* skip this altsetting */
3178 if ((device_setup[chip->index] & AUDIOPHILE_SET_96K)
3179 && altno != 1)
3180 return 1; /* skip this altsetting */
3181 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3182 AUDIOPHILE_SET_24B_48K_DI && altno != 2)
3183 return 1; /* skip this altsetting */
3184 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3185 AUDIOPHILE_SET_24B_48K_NOTDI && altno != 3)
3186 return 1; /* skip this altsetting */
3187 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3188 AUDIOPHILE_SET_16B_48K_DI && altno != 4)
3189 return 1; /* skip this altsetting */
3190 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3191 AUDIOPHILE_SET_16B_48K_NOTDI && altno != 5)
3192 return 1; /* skip this altsetting */
3193 }
3194 return 0; /* keep this altsetting */
3195}
1da177e4
LT
3196
3197/*
3198 * audio-interface quirks
3199 *
3200 * returns zero if no standard audio/MIDI parsing is needed.
3201 * returns a postive value if standard audio/midi interfaces are parsed
3202 * after this.
3203 * returns a negative value at error.
3204 */
86e07d34 3205static int snd_usb_create_quirk(struct snd_usb_audio *chip,
1da177e4 3206 struct usb_interface *iface,
86e07d34 3207 const struct snd_usb_audio_quirk *quirk)
1da177e4 3208{
86e07d34
TI
3209 typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *,
3210 const struct snd_usb_audio_quirk *);
854af957
CL
3211 static const quirk_func_t quirk_funcs[] = {
3212 [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
3213 [QUIRK_COMPOSITE] = create_composite_quirk,
3214 [QUIRK_MIDI_STANDARD_INTERFACE] = snd_usb_create_midi_interface,
3215 [QUIRK_MIDI_FIXED_ENDPOINT] = snd_usb_create_midi_interface,
3216 [QUIRK_MIDI_YAMAHA] = snd_usb_create_midi_interface,
3217 [QUIRK_MIDI_MIDIMAN] = snd_usb_create_midi_interface,
3218 [QUIRK_MIDI_NOVATION] = snd_usb_create_midi_interface,
3219 [QUIRK_MIDI_RAW] = snd_usb_create_midi_interface,
3220 [QUIRK_MIDI_EMAGIC] = snd_usb_create_midi_interface,
cc7a59bd 3221 [QUIRK_MIDI_CME] = snd_usb_create_midi_interface,
d1bda045 3222 [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
854af957
CL
3223 [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
3224 [QUIRK_AUDIO_EDIROL_UA700_UA25] = create_ua700_ua25_quirk,
3225 [QUIRK_AUDIO_EDIROL_UA1000] = create_ua1000_quirk,
3226 };
3227
3228 if (quirk->type < QUIRK_TYPE_COUNT) {
3229 return quirk_funcs[quirk->type](chip, iface, quirk);
3230 } else {
1da177e4
LT
3231 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
3232 return -ENXIO;
3233 }
3234}
3235
3236
3237/*
3238 * common proc files to show the usb device info
3239 */
86e07d34 3240static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
1da177e4 3241{
86e07d34 3242 struct snd_usb_audio *chip = entry->private_data;
1da177e4
LT
3243 if (! chip->shutdown)
3244 snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum);
3245}
3246
86e07d34 3247static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
1da177e4 3248{
86e07d34 3249 struct snd_usb_audio *chip = entry->private_data;
1da177e4
LT
3250 if (! chip->shutdown)
3251 snd_iprintf(buffer, "%04x:%04x\n",
27d10f56
CL
3252 USB_ID_VENDOR(chip->usb_id),
3253 USB_ID_PRODUCT(chip->usb_id));
1da177e4
LT
3254}
3255
86e07d34 3256static void snd_usb_audio_create_proc(struct snd_usb_audio *chip)
1da177e4 3257{
86e07d34 3258 struct snd_info_entry *entry;
1da177e4 3259 if (! snd_card_proc_new(chip->card, "usbbus", &entry))
bf850204 3260 snd_info_set_text_ops(entry, chip, proc_audio_usbbus_read);
1da177e4 3261 if (! snd_card_proc_new(chip->card, "usbid", &entry))
bf850204 3262 snd_info_set_text_ops(entry, chip, proc_audio_usbid_read);
1da177e4
LT
3263}
3264
3265/*
3266 * free the chip instance
3267 *
3268 * here we have to do not much, since pcm and controls are already freed
3269 *
3270 */
3271
86e07d34 3272static int snd_usb_audio_free(struct snd_usb_audio *chip)
1da177e4 3273{
2a2a5ddd 3274 usb_chip[chip->index] = NULL;
1da177e4
LT
3275 kfree(chip);
3276 return 0;
3277}
3278
86e07d34 3279static int snd_usb_audio_dev_free(struct snd_device *device)
1da177e4 3280{
86e07d34 3281 struct snd_usb_audio *chip = device->device_data;
1da177e4
LT
3282 return snd_usb_audio_free(chip);
3283}
3284
3285
3286/*
3287 * create a chip instance and set its names.
3288 */
3289static int snd_usb_audio_create(struct usb_device *dev, int idx,
86e07d34
TI
3290 const struct snd_usb_audio_quirk *quirk,
3291 struct snd_usb_audio **rchip)
1da177e4 3292{
86e07d34
TI
3293 struct snd_card *card;
3294 struct snd_usb_audio *chip;
1da177e4
LT
3295 int err, len;
3296 char component[14];
86e07d34 3297 static struct snd_device_ops ops = {
1da177e4
LT
3298 .dev_free = snd_usb_audio_dev_free,
3299 };
3300
3301 *rchip = NULL;
3302
3303 if (snd_usb_get_speed(dev) != USB_SPEED_FULL &&
3304 snd_usb_get_speed(dev) != USB_SPEED_HIGH) {
3305 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
3306 return -ENXIO;
3307 }
3308
3309 card = snd_card_new(index[idx], id[idx], THIS_MODULE, 0);
3310 if (card == NULL) {
3311 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
3312 return -ENOMEM;
3313 }
3314
561b220a 3315 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1da177e4
LT
3316 if (! chip) {
3317 snd_card_free(card);
3318 return -ENOMEM;
3319 }
3320
3321 chip->index = idx;
3322 chip->dev = dev;
3323 chip->card = card;
27d10f56
CL
3324 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3325 le16_to_cpu(dev->descriptor.idProduct));
1da177e4
LT
3326 INIT_LIST_HEAD(&chip->pcm_list);
3327 INIT_LIST_HEAD(&chip->midi_list);
84957a8a 3328 INIT_LIST_HEAD(&chip->mixer_list);
1da177e4
LT
3329
3330 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
3331 snd_usb_audio_free(chip);
3332 snd_card_free(card);
3333 return err;
3334 }
3335
3336 strcpy(card->driver, "USB-Audio");
3337 sprintf(component, "USB%04x:%04x",
27d10f56 3338 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
1da177e4
LT
3339 snd_component_add(card, component);
3340
3341 /* retrieve the device string as shortname */
3342 if (quirk && quirk->product_name) {
3343 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
3344 } else {
3345 if (!dev->descriptor.iProduct ||
3346 usb_string(dev, dev->descriptor.iProduct,
3347 card->shortname, sizeof(card->shortname)) <= 0) {
3348 /* no name available from anywhere, so use ID */
3349 sprintf(card->shortname, "USB Device %#04x:%#04x",
27d10f56
CL
3350 USB_ID_VENDOR(chip->usb_id),
3351 USB_ID_PRODUCT(chip->usb_id));
1da177e4
LT
3352 }
3353 }
3354
3355 /* retrieve the vendor and device strings as longname */
3356 if (quirk && quirk->vendor_name) {
3357 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
3358 } else {
3359 if (dev->descriptor.iManufacturer)
3360 len = usb_string(dev, dev->descriptor.iManufacturer,
3361 card->longname, sizeof(card->longname));
3362 else
3363 len = 0;
3364 /* we don't really care if there isn't any vendor string */
3365 }
3366 if (len > 0)
3367 strlcat(card->longname, " ", sizeof(card->longname));
3368
3369 strlcat(card->longname, card->shortname, sizeof(card->longname));
3370
3371 len = strlcat(card->longname, " at ", sizeof(card->longname));
3372
3373 if (len < sizeof(card->longname))
3374 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
3375
3376 strlcat(card->longname,
3377 snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" : ", high speed",
3378 sizeof(card->longname));
3379
3380 snd_usb_audio_create_proc(chip);
3381
1da177e4
LT
3382 *rchip = chip;
3383 return 0;
3384}
3385
3386
3387/*
3388 * probe the active usb device
3389 *
3390 * note that this can be called multiple times per a device, when it
3391 * includes multiple audio control interfaces.
3392 *
3393 * thus we check the usb device pointer and creates the card instance
3394 * only at the first time. the successive calls of this function will
3395 * append the pcm interface to the corresponding card.
3396 */
3397static void *snd_usb_audio_probe(struct usb_device *dev,
3398 struct usb_interface *intf,
3399 const struct usb_device_id *usb_id)
3400{
86e07d34 3401 const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
1da177e4 3402 int i, err;
86e07d34 3403 struct snd_usb_audio *chip;
1da177e4
LT
3404 struct usb_host_interface *alts;
3405 int ifnum;
27d10f56 3406 u32 id;
1da177e4
LT
3407
3408 alts = &intf->altsetting[0];
3409 ifnum = get_iface_desc(alts)->bInterfaceNumber;
27d10f56
CL
3410 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3411 le16_to_cpu(dev->descriptor.idProduct));
1da177e4
LT
3412
3413 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
3414 goto __err_val;
3415
3416 /* SB Extigy needs special boot-up sequence */
3417 /* if more models come, this will go to the quirk list. */
27d10f56 3418 if (id == USB_ID(0x041e, 0x3000)) {
1da177e4
LT
3419 if (snd_usb_extigy_boot_quirk(dev, intf) < 0)
3420 goto __err_val;
1da177e4 3421 }
3a2f0856
CL
3422 /* SB Audigy 2 NX needs its own boot-up magic, too */
3423 if (id == USB_ID(0x041e, 0x3020)) {
3424 if (snd_usb_audigy2nx_boot_quirk(dev) < 0)
3425 goto __err_val;
3426 }
1da177e4 3427
e217e30c
SR
3428 /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
3429 if (id == USB_ID(0x10f5, 0x0200)) {
3430 if (snd_usb_cm106_boot_quirk(dev) < 0)
3431 goto __err_val;
3432 }
3433
1da177e4
LT
3434 /*
3435 * found a config. now register to ALSA
3436 */
3437
3438 /* check whether it's already registered */
3439 chip = NULL;
12aa7579 3440 mutex_lock(&register_mutex);
1da177e4
LT
3441 for (i = 0; i < SNDRV_CARDS; i++) {
3442 if (usb_chip[i] && usb_chip[i]->dev == dev) {
3443 if (usb_chip[i]->shutdown) {
3444 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
3445 goto __error;
3446 }
3447 chip = usb_chip[i];
3448 break;
3449 }
3450 }
3451 if (! chip) {
3452 /* it's a fresh one.
3453 * now look for an empty slot and create a new card instance
3454 */
1da177e4
LT
3455 for (i = 0; i < SNDRV_CARDS; i++)
3456 if (enable[i] && ! usb_chip[i] &&
27d10f56
CL
3457 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
3458 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
1da177e4
LT
3459 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
3460 goto __error;
3461 }
1dcd3ec4 3462 snd_card_set_dev(chip->card, &intf->dev);
1da177e4
LT
3463 break;
3464 }
3465 if (! chip) {
3466 snd_printk(KERN_ERR "no available usb audio device\n");
3467 goto __error;
3468 }
3469 }
3470
3471 err = 1; /* continue */
3472 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
3473 /* need some special handlings */
3474 if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0)
3475 goto __error;
3476 }
3477
3478 if (err > 0) {
3479 /* create normal USB audio interfaces */
3480 if (snd_usb_create_streams(chip, ifnum) < 0 ||
3481 snd_usb_create_mixer(chip, ifnum) < 0) {
3482 goto __error;
3483 }
3484 }
3485
3486 /* we are allowed to call snd_card_register() many times */
3487 if (snd_card_register(chip->card) < 0) {
3488 goto __error;
3489 }
3490
3491 usb_chip[chip->index] = chip;
3492 chip->num_interfaces++;
12aa7579 3493 mutex_unlock(&register_mutex);
1da177e4
LT
3494 return chip;
3495
3496 __error:
3497 if (chip && !chip->num_interfaces)
3498 snd_card_free(chip->card);
12aa7579 3499 mutex_unlock(&register_mutex);
1da177e4
LT
3500 __err_val:
3501 return NULL;
3502}
3503
3504/*
3505 * we need to take care of counter, since disconnection can be called also
3506 * many times as well as usb_audio_probe().
3507 */
3508static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr)
3509{
86e07d34
TI
3510 struct snd_usb_audio *chip;
3511 struct snd_card *card;
1da177e4
LT
3512 struct list_head *p;
3513
3514 if (ptr == (void *)-1L)
3515 return;
3516
3517 chip = ptr;
3518 card = chip->card;
12aa7579 3519 mutex_lock(&register_mutex);
1da177e4
LT
3520 chip->shutdown = 1;
3521 chip->num_interfaces--;
3522 if (chip->num_interfaces <= 0) {
3523 snd_card_disconnect(card);
3524 /* release the pcm resources */
3525 list_for_each(p, &chip->pcm_list) {
ee733397 3526 snd_usb_stream_disconnect(p);
1da177e4
LT
3527 }
3528 /* release the midi resources */
3529 list_for_each(p, &chip->midi_list) {
ee733397 3530 snd_usbmidi_disconnect(p);
1da177e4 3531 }
84957a8a
CL
3532 /* release mixer resources */
3533 list_for_each(p, &chip->mixer_list) {
3534 snd_usb_mixer_disconnect(p);
3535 }
12aa7579 3536 mutex_unlock(&register_mutex);
c461482c 3537 snd_card_free_when_closed(card);
1da177e4 3538 } else {
12aa7579 3539 mutex_unlock(&register_mutex);
1da177e4
LT
3540 }
3541}
3542
3543/*
3544 * new 2.5 USB kernel API
3545 */
3546static int usb_audio_probe(struct usb_interface *intf,
3547 const struct usb_device_id *id)
3548{
3549 void *chip;
3550 chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
3551 if (chip) {
3552 dev_set_drvdata(&intf->dev, chip);
3553 return 0;
3554 } else
3555 return -EIO;
3556}
3557
3558static void usb_audio_disconnect(struct usb_interface *intf)
3559{
3560 snd_usb_audio_disconnect(interface_to_usbdev(intf),
3561 dev_get_drvdata(&intf->dev));
3562}
3563
3564
3565static int __init snd_usb_audio_init(void)
3566{
3567 if (nrpacks < MIN_PACKS_URB || nrpacks > MAX_PACKS) {
3568 printk(KERN_WARNING "invalid nrpacks value.\n");
3569 return -EINVAL;
3570 }
cf78bbc4 3571 return usb_register(&usb_audio_driver);
1da177e4
LT
3572}
3573
3574
3575static void __exit snd_usb_audio_cleanup(void)
3576{
3577 usb_deregister(&usb_audio_driver);
3578}
3579
3580module_init(snd_usb_audio_init);
3581module_exit(snd_usb_audio_cleanup);
This page took 0.596449 seconds and 5 git commands to generate.