blob: d2e066dc5d81690d4d122bea687aaf7f030fa660 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Clemens Ladisch6207e512005-08-15 08:35:25 +020048#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/moduleparam.h>
Ingo Molnar12aa7572006-01-16 16:36:05 +010050#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#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 */
Clemens Ladisch92b9ac72006-09-22 10:57:36 +020071static int nrpacks = 8; /* max. number of packets per urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static int async_unlink = 1;
Thibault LE MEURe3113342006-03-14 11:44:53 +010073static int device_setup[SNDRV_CARDS]; /* device parameter for this card*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
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.");
Clemens Ladisch71d848c2005-08-12 15:18:00 +020085module_param(nrpacks, int, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB.");
87module_param(async_unlink, bool, 0444);
88MODULE_PARM_DESC(async_unlink, "Use async unlink mode.");
Thibault LE MEURe3113342006-03-14 11:44:53 +010089module_param_array(device_setup, int, NULL, 0444);
90MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92
93/*
94 * debug the h/w constraints
95 */
96/* #define HW_CONST_DEBUG */
97
98
99/*
100 *
101 */
102
Clemens Ladisch92b9ac72006-09-22 10:57:36 +0200103#define MAX_PACKS 20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#define MAX_PACKS_HS (MAX_PACKS * 8) /* in high speed mode */
Clemens Ladisch15a24c02005-08-12 08:25:26 +0200105#define MAX_URBS 8
Clemens Ladisch604cf492005-05-17 09:15:27 +0200106#define SYNC_URBS 4 /* always four urbs for sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define MIN_PACKS_URB 1 /* minimum 1 packet per urb */
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109struct 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 */
Luke Rossa79eee82006-08-29 10:46:32 +0200126 unsigned int needs_knot; /* any unusual rates? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
128
Takashi Iwai86e07d32005-11-17 15:08:02 +0100129struct snd_usb_substream;
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131struct snd_urb_ctx {
132 struct urb *urb;
Clemens Ladisch55851f72005-08-15 08:34:16 +0200133 unsigned int buffer_size; /* size of data buffer, if data URB */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100134 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 int index; /* index for urb array */
136 int packets; /* number of packets per urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137};
138
139struct snd_urb_ops {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100140 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
146struct snd_usb_substream {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100147 struct snd_usb_stream *stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct usb_device *dev;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100149 struct snd_pcm_substream *pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 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 */
Clemens Ladisch573567e2005-06-27 08:17:30 +0200159 unsigned int datainterval; /* log_2 of data packet interval */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 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) */
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200171 unsigned int packs_per_ms; /* packets per millisecond (for playback) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 unsigned int running: 1; /* running status */
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 unsigned int hwptr_done; /* processed frame position in the buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 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 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100181 struct snd_urb_ctx dataurb[MAX_URBS]; /* data urb table */
182 struct snd_urb_ctx syncurb[SYNC_URBS]; /* sync urb table */
Clemens Ladisch55851f72005-08-15 08:34:16 +0200183 char *syncbuf; /* sync buffer for all sync URBs */
184 dma_addr_t sync_dma; /* DMA address of syncbuf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
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 {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100196 struct snd_usb_audio *chip;
197 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 int pcm_index;
199 unsigned int fmt_type; /* USB audio format type (1-3) */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100200 struct snd_usb_substream substream[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 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
Ingo Molnar12aa7572006-01-16 16:36:05 +0100210static DEFINE_MUTEX(register_mutex);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100211static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
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 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700218static inline unsigned get_usb_full_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
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 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700227static inline unsigned get_usb_high_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 return ((rate << 10) + 62) / 125;
230}
231
232/* convert our full speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700233static inline unsigned get_full_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 return (usb_rate * 125 + (1 << 12)) >> 13;
236}
237
238/* convert our high speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700239static inline unsigned get_high_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
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 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100251static int prepare_capture_sync_urb(struct snd_usb_substream *subs,
252 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 struct urb *urb)
254{
255 unsigned char *cp = urb->transfer_buffer;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100256 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200259 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 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 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100273static int prepare_capture_sync_urb_hs(struct snd_usb_substream *subs,
274 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 struct urb *urb)
276{
277 unsigned char *cp = urb->transfer_buffer;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100278 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200281 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
288}
289
290/*
291 * process after capture sync complete
292 * - nothing to do
293 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100294static int retire_capture_sync_urb(struct snd_usb_substream *subs,
295 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 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 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100311static int prepare_capture_urb(struct snd_usb_substream *subs,
312 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct urb *urb)
314{
315 int i, offs;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100316 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 offs = 0;
319 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 urb->transfer_buffer_length = offs;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200326 urb->number_of_packets = ctx->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327#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 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100346static int retire_capture_urb(struct snd_usb_substream *subs,
347 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 struct urb *urb)
349{
350 unsigned long flags;
351 unsigned char *cp;
352 int i;
353 unsigned int stride, len, oldptr;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200354 int period_elapsed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
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;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200374 if (subs->transfer_done >= runtime->period_size) {
375 subs->transfer_done -= runtime->period_size;
376 period_elapsed = 1;
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200389 if (period_elapsed)
390 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return 0;
392}
393
Clemens Ladische4f8e652006-10-04 13:42:57 +0200394/*
395 * Process after capture complete when paused. Nothing to do.
396 */
397static int retire_paused_capture_urb(struct snd_usb_substream *subs,
398 struct snd_pcm_runtime *runtime,
399 struct urb *urb)
400{
401 return 0;
402}
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405/*
406 * prepare urb for full speed playback sync pipe
407 *
408 * set up the offset and length to receive the current frequency.
409 */
410
Takashi Iwai86e07d32005-11-17 15:08:02 +0100411static int prepare_playback_sync_urb(struct snd_usb_substream *subs,
412 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 struct urb *urb)
414{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100415 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200418 urb->iso_frame_desc[0].length = 3;
419 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return 0;
421}
422
423/*
424 * prepare urb for high speed playback sync pipe
425 *
426 * set up the offset and length to receive the current frequency.
427 */
428
Takashi Iwai86e07d32005-11-17 15:08:02 +0100429static int prepare_playback_sync_urb_hs(struct snd_usb_substream *subs,
430 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct urb *urb)
432{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100433 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200436 urb->iso_frame_desc[0].length = 4;
437 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return 0;
439}
440
441/*
442 * process after full speed playback sync complete
443 *
444 * retrieve the current 10.14 frequency from pipe, and set it.
445 * the value is referred in prepare_playback_urb().
446 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100447static int retire_playback_sync_urb(struct snd_usb_substream *subs,
448 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 struct urb *urb)
450{
Clemens Ladischca810902005-05-02 08:55:54 +0200451 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 unsigned long flags;
453
Clemens Ladischca810902005-05-02 08:55:54 +0200454 if (urb->iso_frame_desc[0].status == 0 &&
455 urb->iso_frame_desc[0].actual_length == 3) {
456 f = combine_triple((u8*)urb->transfer_buffer) << 2;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200457 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
458 spin_lock_irqsave(&subs->lock, flags);
459 subs->freqm = f;
460 spin_unlock_irqrestore(&subs->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
464 return 0;
465}
466
467/*
468 * process after high speed playback sync complete
469 *
470 * retrieve the current 12.13 frequency from pipe, and set it.
471 * the value is referred in prepare_playback_urb().
472 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100473static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs,
474 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 struct urb *urb)
476{
Clemens Ladischca810902005-05-02 08:55:54 +0200477 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 unsigned long flags;
479
Clemens Ladischca810902005-05-02 08:55:54 +0200480 if (urb->iso_frame_desc[0].status == 0 &&
481 urb->iso_frame_desc[0].actual_length == 4) {
482 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200483 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
484 spin_lock_irqsave(&subs->lock, flags);
485 subs->freqm = f;
486 spin_unlock_irqrestore(&subs->lock, flags);
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489
490 return 0;
491}
492
Clemens Ladisch9568f462006-01-12 08:19:21 +0100493/* determine the number of frames in the next packet */
494static int snd_usb_audio_next_packet_size(struct snd_usb_substream *subs)
495{
496 if (subs->fill_max)
497 return subs->maxframesize;
498 else {
499 subs->phase = (subs->phase & 0xffff)
500 + (subs->freqm << subs->datainterval);
501 return min(subs->phase >> 16, subs->maxframesize);
502 }
503}
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505/*
Clemens Ladische4f8e652006-10-04 13:42:57 +0200506 * Prepare urb for streaming before playback starts or when paused.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100507 *
Clemens Ladische4f8e652006-10-04 13:42:57 +0200508 * We don't have any data, so we send a frame of silence.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100509 */
Clemens Ladische4f8e652006-10-04 13:42:57 +0200510static int prepare_nodata_playback_urb(struct snd_usb_substream *subs,
511 struct snd_pcm_runtime *runtime,
512 struct urb *urb)
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100513{
Clemens Ladisch4b284922006-01-12 08:17:49 +0100514 unsigned int i, offs, counts;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100515 struct snd_urb_ctx *ctx = urb->context;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100516 int stride = runtime->frame_bits >> 3;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100517
Clemens Ladisch4b284922006-01-12 08:17:49 +0100518 offs = 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100519 urb->dev = ctx->subs->dev;
520 urb->number_of_packets = subs->packs_per_ms;
521 for (i = 0; i < subs->packs_per_ms; ++i) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100522 counts = snd_usb_audio_next_packet_size(subs);
Clemens Ladisch4b284922006-01-12 08:17:49 +0100523 urb->iso_frame_desc[i].offset = offs * stride;
524 urb->iso_frame_desc[i].length = counts * stride;
525 offs += counts;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100526 }
Clemens Ladisch4b284922006-01-12 08:17:49 +0100527 urb->transfer_buffer_length = offs * stride;
528 memset(urb->transfer_buffer,
529 subs->cur_audiofmt->format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0,
530 offs * stride);
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100531 return 0;
532}
533
534/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * prepare urb for playback data pipe
536 *
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200537 * Since a URB can handle only a single linear buffer, we must use double
538 * buffering when the data to be transferred overflows the buffer boundary.
539 * To avoid inconsistencies when updating hwptr_done, we use double buffering
540 * for all URBs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100542static int prepare_playback_urb(struct snd_usb_substream *subs,
543 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 struct urb *urb)
545{
546 int i, stride, offs;
547 unsigned int counts;
548 unsigned long flags;
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200549 int period_elapsed = 0;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100550 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 stride = runtime->frame_bits >> 3;
553
554 offs = 0;
555 urb->dev = ctx->subs->dev; /* we need to set this at each time */
556 urb->number_of_packets = 0;
557 spin_lock_irqsave(&subs->lock, flags);
558 for (i = 0; i < ctx->packets; i++) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100559 counts = snd_usb_audio_next_packet_size(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 /* set up descriptor */
561 urb->iso_frame_desc[i].offset = offs * stride;
562 urb->iso_frame_desc[i].length = counts * stride;
563 offs += counts;
564 urb->number_of_packets++;
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200565 subs->transfer_done += counts;
566 if (subs->transfer_done >= runtime->period_size) {
567 subs->transfer_done -= runtime->period_size;
568 period_elapsed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (subs->fmt_type == USB_FORMAT_TYPE_II) {
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200570 if (subs->transfer_done > 0) {
571 /* FIXME: fill-max mode is not
572 * supported yet */
573 offs -= subs->transfer_done;
574 counts -= subs->transfer_done;
575 urb->iso_frame_desc[i].length =
576 counts * stride;
577 subs->transfer_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579 i++;
580 if (i < ctx->packets) {
581 /* add a transfer delimiter */
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200582 urb->iso_frame_desc[i].offset =
583 offs * stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 urb->iso_frame_desc[i].length = 0;
585 urb->number_of_packets++;
586 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200587 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200590 /* finish at the frame boundary at/after the period boundary */
591 if (period_elapsed &&
592 (i & (subs->packs_per_ms - 1)) == subs->packs_per_ms - 1)
593 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200595 if (subs->hwptr_done + offs > runtime->buffer_size) {
596 /* err, the transferred area goes over buffer boundary. */
597 unsigned int len = runtime->buffer_size - subs->hwptr_done;
598 memcpy(urb->transfer_buffer,
599 runtime->dma_area + subs->hwptr_done * stride,
600 len * stride);
601 memcpy(urb->transfer_buffer + len * stride,
602 runtime->dma_area,
603 (offs - len) * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 } else {
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200605 memcpy(urb->transfer_buffer,
606 runtime->dma_area + subs->hwptr_done * stride,
607 offs * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200609 subs->hwptr_done += offs;
610 if (subs->hwptr_done >= runtime->buffer_size)
611 subs->hwptr_done -= runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 spin_unlock_irqrestore(&subs->lock, flags);
613 urb->transfer_buffer_length = offs * stride;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100614 if (period_elapsed)
615 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return 0;
617}
618
619/*
620 * process after playback data complete
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200621 * - nothing to do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100623static int retire_playback_urb(struct snd_usb_substream *subs,
624 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 struct urb *urb)
626{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return 0;
628}
629
630
631/*
632 */
633static struct snd_urb_ops audio_urb_ops[2] = {
634 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200635 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 .retire = retire_playback_urb,
637 .prepare_sync = prepare_playback_sync_urb,
638 .retire_sync = retire_playback_sync_urb,
639 },
640 {
641 .prepare = prepare_capture_urb,
642 .retire = retire_capture_urb,
643 .prepare_sync = prepare_capture_sync_urb,
644 .retire_sync = retire_capture_sync_urb,
645 },
646};
647
648static struct snd_urb_ops audio_urb_ops_high_speed[2] = {
649 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200650 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 .retire = retire_playback_urb,
652 .prepare_sync = prepare_playback_sync_urb_hs,
653 .retire_sync = retire_playback_sync_urb_hs,
654 },
655 {
656 .prepare = prepare_capture_urb,
657 .retire = retire_capture_urb,
658 .prepare_sync = prepare_capture_sync_urb_hs,
659 .retire_sync = retire_capture_sync_urb,
660 },
661};
662
663/*
664 * complete callback from data urb
665 */
David Howells7d12e782006-10-05 14:55:46 +0100666static void snd_complete_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100668 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
669 struct snd_usb_substream *subs = ctx->subs;
670 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 int err = 0;
672
673 if ((subs->running && subs->ops.retire(subs, substream->runtime, urb)) ||
674 ! subs->running || /* can be stopped during retire callback */
675 (err = subs->ops.prepare(subs, substream->runtime, urb)) < 0 ||
676 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
677 clear_bit(ctx->index, &subs->active_mask);
678 if (err < 0) {
679 snd_printd(KERN_ERR "cannot submit urb (err = %d)\n", err);
680 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
681 }
682 }
683}
684
685
686/*
687 * complete callback from sync urb
688 */
David Howells7d12e782006-10-05 14:55:46 +0100689static void snd_complete_sync_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100691 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
692 struct snd_usb_substream *subs = ctx->subs;
693 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 int err = 0;
695
696 if ((subs->running && subs->ops.retire_sync(subs, substream->runtime, urb)) ||
697 ! subs->running || /* can be stopped during retire callback */
698 (err = subs->ops.prepare_sync(subs, substream->runtime, urb)) < 0 ||
699 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
700 clear_bit(ctx->index + 16, &subs->active_mask);
701 if (err < 0) {
702 snd_printd(KERN_ERR "cannot submit sync urb (err = %d)\n", err);
703 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
704 }
705 }
706}
707
708
Clemens Ladisch6207e512005-08-15 08:35:25 +0200709/* get the physical page pointer at the given offset */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100710static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
Clemens Ladisch6207e512005-08-15 08:35:25 +0200711 unsigned long offset)
712{
713 void *pageptr = subs->runtime->dma_area + offset;
714 return vmalloc_to_page(pageptr);
715}
716
717/* allocate virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100718static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs, size_t size)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200719{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100720 struct snd_pcm_runtime *runtime = subs->runtime;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200721 if (runtime->dma_area) {
722 if (runtime->dma_bytes >= size)
723 return 0; /* already large enough */
Takashi Iwaib1d57762005-10-10 11:56:31 +0200724 vfree(runtime->dma_area);
Clemens Ladisch6207e512005-08-15 08:35:25 +0200725 }
Takashi Iwaib1d57762005-10-10 11:56:31 +0200726 runtime->dma_area = vmalloc(size);
Clemens Ladisch6207e512005-08-15 08:35:25 +0200727 if (! runtime->dma_area)
728 return -ENOMEM;
729 runtime->dma_bytes = size;
730 return 0;
731}
732
733/* free virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100734static int snd_pcm_free_vmalloc_buffer(struct snd_pcm_substream *subs)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200735{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100736 struct snd_pcm_runtime *runtime = subs->runtime;
Jesper Juhl9c4be3d2006-02-09 20:04:16 +0100737
738 vfree(runtime->dma_area);
739 runtime->dma_area = NULL;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200740 return 0;
741}
742
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744/*
745 * unlink active urbs.
746 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100747static int deactivate_urbs(struct snd_usb_substream *subs, int force, int can_sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 unsigned int i;
750 int async;
751
752 subs->running = 0;
753
754 if (!force && subs->stream->chip->shutdown) /* to be sure... */
755 return -EBADFD;
756
757 async = !can_sleep && async_unlink;
758
759 if (! async && in_interrupt())
760 return 0;
761
762 for (i = 0; i < subs->nurbs; i++) {
763 if (test_bit(i, &subs->active_mask)) {
764 if (! test_and_set_bit(i, &subs->unlink_mask)) {
765 struct urb *u = subs->dataurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400766 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400768 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 usb_kill_urb(u);
770 }
771 }
772 }
773 if (subs->syncpipe) {
774 for (i = 0; i < SYNC_URBS; i++) {
775 if (test_bit(i+16, &subs->active_mask)) {
776 if (! test_and_set_bit(i+16, &subs->unlink_mask)) {
777 struct urb *u = subs->syncurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400778 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400780 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 usb_kill_urb(u);
782 }
783 }
784 }
785 }
786 return 0;
787}
788
789
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100790static const char *usb_error_string(int err)
791{
792 switch (err) {
793 case -ENODEV:
794 return "no device";
795 case -ENOENT:
796 return "endpoint not enabled";
797 case -EPIPE:
798 return "endpoint stalled";
799 case -ENOSPC:
800 return "not enough bandwidth";
801 case -ESHUTDOWN:
802 return "device disabled";
803 case -EHOSTUNREACH:
804 return "device suspended";
Clemens Ladisch3e964432006-03-14 08:06:12 +0100805#ifndef CONFIG_USB_EHCI_SPLIT_ISO
806 case -ENOSYS:
807 return "enable CONFIG_USB_EHCI_SPLIT_ISO to play through a hub";
808#endif
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100809 case -EINVAL:
810 case -EAGAIN:
811 case -EFBIG:
812 case -EMSGSIZE:
813 return "internal error";
814 default:
815 return "unknown error";
816 }
817}
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819/*
820 * set up and start data/sync urbs
821 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100822static int start_urbs(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 unsigned int i;
825 int err;
826
827 if (subs->stream->chip->shutdown)
828 return -EBADFD;
829
830 for (i = 0; i < subs->nurbs; i++) {
831 snd_assert(subs->dataurb[i].urb, return -EINVAL);
832 if (subs->ops.prepare(subs, runtime, subs->dataurb[i].urb) < 0) {
833 snd_printk(KERN_ERR "cannot prepare datapipe for urb %d\n", i);
834 goto __error;
835 }
836 }
837 if (subs->syncpipe) {
838 for (i = 0; i < SYNC_URBS; i++) {
839 snd_assert(subs->syncurb[i].urb, return -EINVAL);
840 if (subs->ops.prepare_sync(subs, runtime, subs->syncurb[i].urb) < 0) {
841 snd_printk(KERN_ERR "cannot prepare syncpipe for urb %d\n", i);
842 goto __error;
843 }
844 }
845 }
846
847 subs->active_mask = 0;
848 subs->unlink_mask = 0;
849 subs->running = 1;
850 for (i = 0; i < subs->nurbs; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100851 err = usb_submit_urb(subs->dataurb[i].urb, GFP_ATOMIC);
852 if (err < 0) {
853 snd_printk(KERN_ERR "cannot submit datapipe "
854 "for urb %d, error %d: %s\n",
855 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 goto __error;
857 }
858 set_bit(i, &subs->active_mask);
859 }
860 if (subs->syncpipe) {
861 for (i = 0; i < SYNC_URBS; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100862 err = usb_submit_urb(subs->syncurb[i].urb, GFP_ATOMIC);
863 if (err < 0) {
864 snd_printk(KERN_ERR "cannot submit syncpipe "
865 "for urb %d, error %d: %s\n",
866 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 goto __error;
868 }
869 set_bit(i + 16, &subs->active_mask);
870 }
871 }
872 return 0;
873
874 __error:
875 // snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
876 deactivate_urbs(subs, 0, 0);
877 return -EPIPE;
878}
879
880
881/*
882 * wait until all urbs are processed.
883 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100884static int wait_clear_urbs(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200886 unsigned long end_time = jiffies + msecs_to_jiffies(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 unsigned int i;
888 int alive;
889
890 do {
891 alive = 0;
892 for (i = 0; i < subs->nurbs; i++) {
893 if (test_bit(i, &subs->active_mask))
894 alive++;
895 }
896 if (subs->syncpipe) {
897 for (i = 0; i < SYNC_URBS; i++) {
898 if (test_bit(i + 16, &subs->active_mask))
899 alive++;
900 }
901 }
902 if (! alive)
903 break;
Nishanth Aravamudan8433a502005-10-24 15:02:37 +0200904 schedule_timeout_uninterruptible(1);
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200905 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (alive)
907 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
908 return 0;
909}
910
911
912/*
913 * return the current pcm pointer. just return the hwptr_done value.
914 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100915static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100917 struct snd_usb_substream *subs;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200918 snd_pcm_uframes_t hwptr_done;
919
Takashi Iwai86e07d32005-11-17 15:08:02 +0100920 subs = (struct snd_usb_substream *)substream->runtime->private_data;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200921 spin_lock(&subs->lock);
922 hwptr_done = subs->hwptr_done;
923 spin_unlock(&subs->lock);
924 return hwptr_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
927
928/*
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100929 * start/stop playback substream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100931static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100932 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100934 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 switch (cmd) {
937 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200938 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100939 subs->ops.prepare = prepare_playback_urb;
940 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 case SNDRV_PCM_TRIGGER_STOP:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100942 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200943 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
944 subs->ops.prepare = prepare_nodata_playback_urb;
945 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 default:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100947 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100949}
950
951/*
952 * start/stop capture substream
953 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100954static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100955 int cmd)
956{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100957 struct snd_usb_substream *subs = substream->runtime->private_data;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100958
959 switch (cmd) {
960 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200961 subs->ops.retire = retire_capture_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100962 return start_urbs(subs, substream->runtime);
963 case SNDRV_PCM_TRIGGER_STOP:
964 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200965 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
966 subs->ops.retire = retire_paused_capture_urb;
967 return 0;
968 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
969 subs->ops.retire = retire_capture_urb;
970 return 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100971 default:
972 return -EINVAL;
973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
976
977/*
978 * release a urb data
979 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100980static void release_urb_ctx(struct snd_urb_ctx *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
982 if (u->urb) {
Clemens Ladisch55851f72005-08-15 08:34:16 +0200983 if (u->buffer_size)
984 usb_buffer_free(u->subs->dev, u->buffer_size,
985 u->urb->transfer_buffer,
986 u->urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 usb_free_urb(u->urb);
988 u->urb = NULL;
989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
992/*
993 * release a substream
994 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100995static void release_substream_urbs(struct snd_usb_substream *subs, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
997 int i;
998
999 /* stop urbs (to be sure) */
1000 deactivate_urbs(subs, force, 1);
1001 wait_clear_urbs(subs);
1002
1003 for (i = 0; i < MAX_URBS; i++)
1004 release_urb_ctx(&subs->dataurb[i]);
1005 for (i = 0; i < SYNC_URBS; i++)
1006 release_urb_ctx(&subs->syncurb[i]);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001007 usb_buffer_free(subs->dev, SYNC_URBS * 4,
1008 subs->syncbuf, subs->sync_dma);
1009 subs->syncbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 subs->nurbs = 0;
1011}
1012
1013/*
1014 * initialize a substream for plaback/capture
1015 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001016static int init_substream_urbs(struct snd_usb_substream *subs, unsigned int period_bytes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 unsigned int rate, unsigned int frame_bits)
1018{
1019 unsigned int maxsize, n, i;
1020 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001021 unsigned int npacks[MAX_URBS], urb_packs, total_packs, packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 /* calculate the frequency in 16.16 format */
1024 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
1025 subs->freqn = get_usb_full_speed_rate(rate);
1026 else
1027 subs->freqn = get_usb_high_speed_rate(rate);
1028 subs->freqm = subs->freqn;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001029 /* calculate max. frequency */
1030 if (subs->maxpacksize) {
1031 /* whatever fits into a max. size packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 maxsize = subs->maxpacksize;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001033 subs->freqmax = (maxsize / (frame_bits >> 3))
1034 << (16 - subs->datainterval);
1035 } else {
1036 /* no max. packet size: just take 25% higher than nominal */
1037 subs->freqmax = subs->freqn + (subs->freqn >> 2);
1038 maxsize = ((subs->freqmax + 0xffff) * (frame_bits >> 3))
1039 >> (16 - subs->datainterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
Clemens Ladisch573567e2005-06-27 08:17:30 +02001041 subs->phase = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
1043 if (subs->fill_max)
1044 subs->curpacksize = subs->maxpacksize;
1045 else
1046 subs->curpacksize = maxsize;
1047
Clemens Ladischa93bf992005-08-12 15:19:39 +02001048 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
1049 packs_per_ms = 8 >> subs->datainterval;
1050 else
1051 packs_per_ms = 1;
Clemens Ladisch9624ea82005-08-15 08:25:24 +02001052 subs->packs_per_ms = packs_per_ms;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001053
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001054 if (is_playback) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 urb_packs = nrpacks;
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001056 urb_packs = max(urb_packs, (unsigned int)MIN_PACKS_URB);
1057 urb_packs = min(urb_packs, (unsigned int)MAX_PACKS);
1058 } else
Clemens Ladisch15a24c02005-08-12 08:25:26 +02001059 urb_packs = 1;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001060 urb_packs *= packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 /* decide how many packets to be used */
Clemens Ladisch15a24c02005-08-12 08:25:26 +02001063 if (is_playback) {
Clemens Ladischd6db3922005-08-12 08:28:27 +02001064 unsigned int minsize;
1065 /* determine how small a packet can be */
1066 minsize = (subs->freqn >> (16 - subs->datainterval))
1067 * (frame_bits >> 3);
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +02001068 /* with sync from device, assume it can be 12% lower */
Clemens Ladischd6db3922005-08-12 08:28:27 +02001069 if (subs->syncpipe)
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +02001070 minsize -= minsize >> 3;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001071 minsize = max(minsize, 1u);
1072 total_packs = (period_bytes + minsize - 1) / minsize;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001073 /* round up to multiple of packs_per_ms */
1074 total_packs = (total_packs + packs_per_ms - 1)
1075 & ~(packs_per_ms - 1);
1076 /* we need at least two URBs for queueing */
1077 if (total_packs < 2 * MIN_PACKS_URB * packs_per_ms)
1078 total_packs = 2 * MIN_PACKS_URB * packs_per_ms;
Clemens Ladisch15a24c02005-08-12 08:25:26 +02001079 } else {
1080 total_packs = MAX_URBS * urb_packs;
1081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 subs->nurbs = (total_packs + urb_packs - 1) / urb_packs;
1083 if (subs->nurbs > MAX_URBS) {
1084 /* too much... */
1085 subs->nurbs = MAX_URBS;
1086 total_packs = MAX_URBS * urb_packs;
1087 }
1088 n = total_packs;
1089 for (i = 0; i < subs->nurbs; i++) {
1090 npacks[i] = n > urb_packs ? urb_packs : n;
1091 n -= urb_packs;
1092 }
1093 if (subs->nurbs <= 1) {
1094 /* too little - we need at least two packets
1095 * to ensure contiguous playback/capture
1096 */
1097 subs->nurbs = 2;
1098 npacks[0] = (total_packs + 1) / 2;
1099 npacks[1] = total_packs - npacks[0];
Clemens Ladischa93bf992005-08-12 15:19:39 +02001100 } else if (npacks[subs->nurbs-1] < MIN_PACKS_URB * packs_per_ms) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 /* the last packet is too small.. */
1102 if (subs->nurbs > 2) {
1103 /* merge to the first one */
1104 npacks[0] += npacks[subs->nurbs - 1];
1105 subs->nurbs--;
1106 } else {
1107 /* divide to two */
1108 subs->nurbs = 2;
1109 npacks[0] = (total_packs + 1) / 2;
1110 npacks[1] = total_packs - npacks[0];
1111 }
1112 }
1113
1114 /* allocate and initialize data urbs */
1115 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001116 struct snd_urb_ctx *u = &subs->dataurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 u->index = i;
1118 u->subs = subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 u->packets = npacks[i];
Clemens Ladisch55851f72005-08-15 08:34:16 +02001120 u->buffer_size = maxsize * u->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (subs->fmt_type == USB_FORMAT_TYPE_II)
1122 u->packets++; /* for transfer delimiter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001124 if (! u->urb)
1125 goto out_of_memory;
1126 u->urb->transfer_buffer =
1127 usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL,
1128 &u->urb->transfer_dma);
1129 if (! u->urb->transfer_buffer)
1130 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 u->urb->pipe = subs->datapipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001132 u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001133 u->urb->interval = 1 << subs->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001135 u->urb->complete = snd_complete_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137
1138 if (subs->syncpipe) {
1139 /* allocate and initialize sync urbs */
Clemens Ladisch55851f72005-08-15 08:34:16 +02001140 subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4,
1141 GFP_KERNEL, &subs->sync_dma);
1142 if (! subs->syncbuf)
1143 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001145 struct snd_urb_ctx *u = &subs->syncurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 u->index = i;
1147 u->subs = subs;
Clemens Ladischca810902005-05-02 08:55:54 +02001148 u->packets = 1;
1149 u->urb = usb_alloc_urb(1, GFP_KERNEL);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001150 if (! u->urb)
1151 goto out_of_memory;
Clemens Ladischca810902005-05-02 08:55:54 +02001152 u->urb->transfer_buffer = subs->syncbuf + i * 4;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001153 u->urb->transfer_dma = subs->sync_dma + i * 4;
Clemens Ladischca810902005-05-02 08:55:54 +02001154 u->urb->transfer_buffer_length = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 u->urb->pipe = subs->syncpipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001156 u->urb->transfer_flags = URB_ISO_ASAP |
1157 URB_NO_TRANSFER_DMA_MAP;
Clemens Ladischca810902005-05-02 08:55:54 +02001158 u->urb->number_of_packets = 1;
Clemens Ladisch1149a642005-05-02 08:53:46 +02001159 u->urb->interval = 1 << subs->syncinterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001161 u->urb->complete = snd_complete_sync_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
1163 }
1164 return 0;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001165
1166out_of_memory:
1167 release_substream_urbs(subs, 0);
1168 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
1170
1171
1172/*
1173 * find a matching audio format
1174 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001175static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 unsigned int rate, unsigned int channels)
1177{
1178 struct list_head *p;
1179 struct audioformat *found = NULL;
1180 int cur_attr = 0, attr;
1181
1182 list_for_each(p, &subs->fmt_list) {
1183 struct audioformat *fp;
1184 fp = list_entry(p, struct audioformat, list);
1185 if (fp->format != format || fp->channels != channels)
1186 continue;
1187 if (rate < fp->rate_min || rate > fp->rate_max)
1188 continue;
1189 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
1190 unsigned int i;
1191 for (i = 0; i < fp->nr_rates; i++)
1192 if (fp->rate_table[i] == rate)
1193 break;
1194 if (i >= fp->nr_rates)
1195 continue;
1196 }
1197 attr = fp->ep_attr & EP_ATTR_MASK;
1198 if (! found) {
1199 found = fp;
1200 cur_attr = attr;
1201 continue;
1202 }
1203 /* avoid async out and adaptive in if the other method
1204 * supports the same format.
1205 * this is a workaround for the case like
1206 * M-audio audiophile USB.
1207 */
1208 if (attr != cur_attr) {
1209 if ((attr == EP_ATTR_ASYNC &&
1210 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1211 (attr == EP_ATTR_ADAPTIVE &&
1212 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
1213 continue;
1214 if ((cur_attr == EP_ATTR_ASYNC &&
1215 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1216 (cur_attr == EP_ATTR_ADAPTIVE &&
1217 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
1218 found = fp;
1219 cur_attr = attr;
1220 continue;
1221 }
1222 }
1223 /* find the format with the largest max. packet size */
1224 if (fp->maxpacksize > found->maxpacksize) {
1225 found = fp;
1226 cur_attr = attr;
1227 }
1228 }
1229 return found;
1230}
1231
1232
1233/*
1234 * initialize the picth control and sample rate
1235 */
1236static int init_usb_pitch(struct usb_device *dev, int iface,
1237 struct usb_host_interface *alts,
1238 struct audioformat *fmt)
1239{
1240 unsigned int ep;
1241 unsigned char data[1];
1242 int err;
1243
1244 ep = get_endpoint(alts, 0)->bEndpointAddress;
1245 /* if endpoint has pitch control, enable it */
1246 if (fmt->attributes & EP_CS_ATTR_PITCH_CONTROL) {
1247 data[0] = 1;
1248 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1249 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1250 PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) {
1251 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
1252 dev->devnum, iface, ep);
1253 return err;
1254 }
1255 }
1256 return 0;
1257}
1258
1259static int init_usb_sample_rate(struct usb_device *dev, int iface,
1260 struct usb_host_interface *alts,
1261 struct audioformat *fmt, int rate)
1262{
1263 unsigned int ep;
1264 unsigned char data[3];
1265 int err;
1266
1267 ep = get_endpoint(alts, 0)->bEndpointAddress;
1268 /* if endpoint has sampling rate control, set it */
1269 if (fmt->attributes & EP_CS_ATTR_SAMPLE_RATE) {
1270 int crate;
1271 data[0] = rate;
1272 data[1] = rate >> 8;
1273 data[2] = rate >> 16;
1274 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1275 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1276 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
1277 snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep 0x%x\n",
1278 dev->devnum, iface, fmt->altsetting, rate, ep);
1279 return err;
1280 }
1281 if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), GET_CUR,
1282 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN,
1283 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
1284 snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep 0x%x\n",
1285 dev->devnum, iface, fmt->altsetting, ep);
1286 return 0; /* some devices don't support reading */
1287 }
1288 crate = data[0] | (data[1] << 8) | (data[2] << 16);
1289 if (crate != rate) {
1290 snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate);
1291 // runtime->rate = crate;
1292 }
1293 }
1294 return 0;
1295}
1296
1297/*
1298 * find a matching format and set up the interface
1299 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001300static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
1302 struct usb_device *dev = subs->dev;
1303 struct usb_host_interface *alts;
1304 struct usb_interface_descriptor *altsd;
1305 struct usb_interface *iface;
1306 unsigned int ep, attr;
1307 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
1308 int err;
1309
1310 iface = usb_ifnum_to_if(dev, fmt->iface);
1311 snd_assert(iface, return -EINVAL);
1312 alts = &iface->altsetting[fmt->altset_idx];
1313 altsd = get_iface_desc(alts);
1314 snd_assert(altsd->bAlternateSetting == fmt->altsetting, return -EINVAL);
1315
1316 if (fmt == subs->cur_audiofmt)
1317 return 0;
1318
1319 /* close the old interface */
1320 if (subs->interface >= 0 && subs->interface != fmt->iface) {
1321 usb_set_interface(subs->dev, subs->interface, 0);
1322 subs->interface = -1;
1323 subs->format = 0;
1324 }
1325
1326 /* set interface */
1327 if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) {
1328 if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) {
1329 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n",
1330 dev->devnum, fmt->iface, fmt->altsetting);
1331 return -EIO;
1332 }
1333 snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting);
1334 subs->interface = fmt->iface;
1335 subs->format = fmt->altset_idx;
1336 }
1337
1338 /* create a data pipe */
1339 ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK;
1340 if (is_playback)
1341 subs->datapipe = usb_sndisocpipe(dev, ep);
1342 else
1343 subs->datapipe = usb_rcvisocpipe(dev, ep);
Clemens Ladisch573567e2005-06-27 08:17:30 +02001344 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH &&
1345 get_endpoint(alts, 0)->bInterval >= 1 &&
1346 get_endpoint(alts, 0)->bInterval <= 4)
1347 subs->datainterval = get_endpoint(alts, 0)->bInterval - 1;
1348 else
1349 subs->datainterval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 subs->syncpipe = subs->syncinterval = 0;
1351 subs->maxpacksize = fmt->maxpacksize;
1352 subs->fill_max = 0;
1353
1354 /* we need a sync pipe in async OUT or adaptive IN mode */
1355 /* check the number of EP, since some devices have broken
1356 * descriptors which fool us. if it has only one EP,
1357 * assume it as adaptive-out or sync-in.
1358 */
1359 attr = fmt->ep_attr & EP_ATTR_MASK;
1360 if (((is_playback && attr == EP_ATTR_ASYNC) ||
1361 (! is_playback && attr == EP_ATTR_ADAPTIVE)) &&
1362 altsd->bNumEndpoints >= 2) {
1363 /* check sync-pipe endpoint */
1364 /* ... and check descriptor size before accessing bSynchAddress
1365 because there is a version of the SB Audigy 2 NX firmware lacking
1366 the audio fields in the endpoint descriptors */
1367 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
1368 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1369 get_endpoint(alts, 1)->bSynchAddress != 0)) {
1370 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1371 dev->devnum, fmt->iface, fmt->altsetting);
1372 return -EINVAL;
1373 }
1374 ep = get_endpoint(alts, 1)->bEndpointAddress;
1375 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1376 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
1377 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
1378 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1379 dev->devnum, fmt->iface, fmt->altsetting);
1380 return -EINVAL;
1381 }
1382 ep &= USB_ENDPOINT_NUMBER_MASK;
1383 if (is_playback)
1384 subs->syncpipe = usb_rcvisocpipe(dev, ep);
1385 else
1386 subs->syncpipe = usb_sndisocpipe(dev, ep);
Clemens Ladisch1149a642005-05-02 08:53:46 +02001387 if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1388 get_endpoint(alts, 1)->bRefresh >= 1 &&
1389 get_endpoint(alts, 1)->bRefresh <= 9)
1390 subs->syncinterval = get_endpoint(alts, 1)->bRefresh;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001391 else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
Clemens Ladisch1149a642005-05-02 08:53:46 +02001392 subs->syncinterval = 1;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001393 else if (get_endpoint(alts, 1)->bInterval >= 1 &&
1394 get_endpoint(alts, 1)->bInterval <= 16)
1395 subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
1396 else
1397 subs->syncinterval = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399
1400 /* always fill max packet size */
1401 if (fmt->attributes & EP_CS_ATTR_FILL_MAX)
1402 subs->fill_max = 1;
1403
1404 if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0)
1405 return err;
1406
1407 subs->cur_audiofmt = fmt;
1408
1409#if 0
1410 printk("setting done: format = %d, rate = %d, channels = %d\n",
1411 fmt->format, fmt->rate, fmt->channels);
1412 printk(" datapipe = 0x%0x, syncpipe = 0x%0x\n",
1413 subs->datapipe, subs->syncpipe);
1414#endif
1415
1416 return 0;
1417}
1418
1419/*
1420 * hw_params callback
1421 *
1422 * allocate a buffer and set the given audio format.
1423 *
1424 * so far we use a physically linear buffer although packetize transfer
1425 * doesn't need a continuous area.
1426 * if sg buffer is supported on the later version of alsa, we'll follow
1427 * that.
1428 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001429static int snd_usb_hw_params(struct snd_pcm_substream *substream,
1430 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001432 struct snd_usb_substream *subs = (struct snd_usb_substream *)substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 struct audioformat *fmt;
1434 unsigned int channels, rate, format;
1435 int ret, changed;
1436
Clemens Ladisch6207e512005-08-15 08:35:25 +02001437 ret = snd_pcm_alloc_vmalloc_buffer(substream,
1438 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 if (ret < 0)
1440 return ret;
1441
1442 format = params_format(hw_params);
1443 rate = params_rate(hw_params);
1444 channels = params_channels(hw_params);
1445 fmt = find_format(subs, format, rate, channels);
1446 if (! fmt) {
Jaroslav Kysela21a34792006-01-13 09:12:11 +01001447 snd_printd(KERN_DEBUG "cannot set format: format = 0x%x, rate = %d, channels = %d\n",
1448 format, rate, channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return -EINVAL;
1450 }
1451
1452 changed = subs->cur_audiofmt != fmt ||
1453 subs->period_bytes != params_period_bytes(hw_params) ||
1454 subs->cur_rate != rate;
1455 if ((ret = set_format(subs, fmt)) < 0)
1456 return ret;
1457
1458 if (subs->cur_rate != rate) {
1459 struct usb_host_interface *alts;
1460 struct usb_interface *iface;
1461 iface = usb_ifnum_to_if(subs->dev, fmt->iface);
1462 alts = &iface->altsetting[fmt->altset_idx];
1463 ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate);
1464 if (ret < 0)
1465 return ret;
1466 subs->cur_rate = rate;
1467 }
1468
1469 if (changed) {
1470 /* format changed */
1471 release_substream_urbs(subs, 0);
1472 /* influenced: period_bytes, channels, rate, format, */
1473 ret = init_substream_urbs(subs, params_period_bytes(hw_params),
1474 params_rate(hw_params),
1475 snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params));
1476 }
1477
1478 return ret;
1479}
1480
1481/*
1482 * hw_free callback
1483 *
1484 * reset the audio format and release the buffer
1485 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001486static int snd_usb_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001488 struct snd_usb_substream *subs = (struct snd_usb_substream *)substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490 subs->cur_audiofmt = NULL;
1491 subs->cur_rate = 0;
1492 subs->period_bytes = 0;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001493 if (!subs->stream->chip->shutdown)
1494 release_substream_urbs(subs, 0);
Clemens Ladisch6207e512005-08-15 08:35:25 +02001495 return snd_pcm_free_vmalloc_buffer(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
1498/*
1499 * prepare callback
1500 *
1501 * only a few subtle things...
1502 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001503static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001505 struct snd_pcm_runtime *runtime = substream->runtime;
1506 struct snd_usb_substream *subs = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508 if (! subs->cur_audiofmt) {
1509 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
1510 return -ENXIO;
1511 }
1512
1513 /* some unit conversions in runtime */
1514 subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize);
1515 subs->curframesize = bytes_to_frames(runtime, subs->curpacksize);
1516
1517 /* reset the pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 subs->hwptr_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 subs->transfer_done = 0;
1520 subs->phase = 0;
1521
1522 /* clear urbs (to be sure) */
1523 deactivate_urbs(subs, 0, 1);
1524 wait_clear_urbs(subs);
1525
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001526 /* for playback, submit the URBs now; otherwise, the first hwptr_done
1527 * updates for all URBs would happen at the same time when starting */
1528 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
Clemens Ladische4f8e652006-10-04 13:42:57 +02001529 subs->ops.prepare = prepare_nodata_playback_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001530 return start_urbs(subs, runtime);
1531 } else
1532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
Clemens Ladisch1700f302006-10-04 13:41:25 +02001535static struct snd_pcm_hardware snd_usb_hardware =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
Clemens Ladisch49045d32005-09-05 10:31:05 +02001537 .info = SNDRV_PCM_INFO_MMAP |
1538 SNDRV_PCM_INFO_MMAP_VALID |
1539 SNDRV_PCM_INFO_BATCH |
1540 SNDRV_PCM_INFO_INTERLEAVED |
Clemens Ladische4f8e652006-10-04 13:42:57 +02001541 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1542 SNDRV_PCM_INFO_PAUSE,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001543 .buffer_bytes_max = 1024 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 .period_bytes_min = 64,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001545 .period_bytes_max = 512 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 .periods_min = 2,
1547 .periods_max = 1024,
1548};
1549
1550/*
1551 * h/w constraints
1552 */
1553
1554#ifdef HW_CONST_DEBUG
1555#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
1556#else
1557#define hwc_debug(fmt, args...) /**/
1558#endif
1559
Takashi Iwai86e07d32005-11-17 15:08:02 +01001560static int hw_check_valid_format(struct snd_pcm_hw_params *params, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001562 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1563 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
1564 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 /* check the format */
1567 if (! snd_mask_test(fmts, fp->format)) {
1568 hwc_debug(" > check: no supported format %d\n", fp->format);
1569 return 0;
1570 }
1571 /* check the channels */
1572 if (fp->channels < ct->min || fp->channels > ct->max) {
1573 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
1574 return 0;
1575 }
1576 /* check the rate is within the range */
1577 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
1578 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
1579 return 0;
1580 }
1581 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
1582 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
1583 return 0;
1584 }
1585 return 1;
1586}
1587
Takashi Iwai86e07d32005-11-17 15:08:02 +01001588static int hw_rule_rate(struct snd_pcm_hw_params *params,
1589 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001591 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001593 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 unsigned int rmin, rmax;
1595 int changed;
1596
1597 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
1598 changed = 0;
1599 rmin = rmax = 0;
1600 list_for_each(p, &subs->fmt_list) {
1601 struct audioformat *fp;
1602 fp = list_entry(p, struct audioformat, list);
1603 if (! hw_check_valid_format(params, fp))
1604 continue;
1605 if (changed++) {
1606 if (rmin > fp->rate_min)
1607 rmin = fp->rate_min;
1608 if (rmax < fp->rate_max)
1609 rmax = fp->rate_max;
1610 } else {
1611 rmin = fp->rate_min;
1612 rmax = fp->rate_max;
1613 }
1614 }
1615
1616 if (! changed) {
1617 hwc_debug(" --> get empty\n");
1618 it->empty = 1;
1619 return -EINVAL;
1620 }
1621
1622 changed = 0;
1623 if (it->min < rmin) {
1624 it->min = rmin;
1625 it->openmin = 0;
1626 changed = 1;
1627 }
1628 if (it->max > rmax) {
1629 it->max = rmax;
1630 it->openmax = 0;
1631 changed = 1;
1632 }
1633 if (snd_interval_checkempty(it)) {
1634 it->empty = 1;
1635 return -EINVAL;
1636 }
1637 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1638 return changed;
1639}
1640
1641
Takashi Iwai86e07d32005-11-17 15:08:02 +01001642static int hw_rule_channels(struct snd_pcm_hw_params *params,
1643 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001645 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001647 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 unsigned int rmin, rmax;
1649 int changed;
1650
1651 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
1652 changed = 0;
1653 rmin = rmax = 0;
1654 list_for_each(p, &subs->fmt_list) {
1655 struct audioformat *fp;
1656 fp = list_entry(p, struct audioformat, list);
1657 if (! hw_check_valid_format(params, fp))
1658 continue;
1659 if (changed++) {
1660 if (rmin > fp->channels)
1661 rmin = fp->channels;
1662 if (rmax < fp->channels)
1663 rmax = fp->channels;
1664 } else {
1665 rmin = fp->channels;
1666 rmax = fp->channels;
1667 }
1668 }
1669
1670 if (! changed) {
1671 hwc_debug(" --> get empty\n");
1672 it->empty = 1;
1673 return -EINVAL;
1674 }
1675
1676 changed = 0;
1677 if (it->min < rmin) {
1678 it->min = rmin;
1679 it->openmin = 0;
1680 changed = 1;
1681 }
1682 if (it->max > rmax) {
1683 it->max = rmax;
1684 it->openmax = 0;
1685 changed = 1;
1686 }
1687 if (snd_interval_checkempty(it)) {
1688 it->empty = 1;
1689 return -EINVAL;
1690 }
1691 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1692 return changed;
1693}
1694
Takashi Iwai86e07d32005-11-17 15:08:02 +01001695static int hw_rule_format(struct snd_pcm_hw_params *params,
1696 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001698 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001700 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 u64 fbits;
1702 u32 oldbits[2];
1703 int changed;
1704
1705 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1706 fbits = 0;
1707 list_for_each(p, &subs->fmt_list) {
1708 struct audioformat *fp;
1709 fp = list_entry(p, struct audioformat, list);
1710 if (! hw_check_valid_format(params, fp))
1711 continue;
1712 fbits |= (1ULL << fp->format);
1713 }
1714
1715 oldbits[0] = fmt->bits[0];
1716 oldbits[1] = fmt->bits[1];
1717 fmt->bits[0] &= (u32)fbits;
1718 fmt->bits[1] &= (u32)(fbits >> 32);
1719 if (! fmt->bits[0] && ! fmt->bits[1]) {
1720 hwc_debug(" --> get empty\n");
1721 return -EINVAL;
1722 }
1723 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1724 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1725 return changed;
1726}
1727
1728#define MAX_MASK 64
1729
1730/*
1731 * check whether the registered audio formats need special hw-constraints
1732 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001733static int check_hw_params_convention(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
1735 int i;
1736 u32 *channels;
1737 u32 *rates;
1738 u32 cmaster, rmaster;
1739 u32 rate_min = 0, rate_max = 0;
1740 struct list_head *p;
1741 int err = 1;
1742
1743 channels = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
1744 rates = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
1745
1746 list_for_each(p, &subs->fmt_list) {
1747 struct audioformat *f;
1748 f = list_entry(p, struct audioformat, list);
1749 /* unconventional channels? */
1750 if (f->channels > 32)
1751 goto __out;
1752 /* continuous rate min/max matches? */
1753 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1754 if (rate_min && f->rate_min != rate_min)
1755 goto __out;
1756 if (rate_max && f->rate_max != rate_max)
1757 goto __out;
1758 rate_min = f->rate_min;
1759 rate_max = f->rate_max;
1760 }
1761 /* combination of continuous rates and fixed rates? */
1762 if (rates[f->format] & SNDRV_PCM_RATE_CONTINUOUS) {
1763 if (f->rates != rates[f->format])
1764 goto __out;
1765 }
1766 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1767 if (rates[f->format] && rates[f->format] != f->rates)
1768 goto __out;
1769 }
1770 channels[f->format] |= (1 << f->channels);
1771 rates[f->format] |= f->rates;
Luke Rossa79eee82006-08-29 10:46:32 +02001772 /* needs knot? */
1773 if (f->needs_knot)
1774 goto __out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 }
1776 /* check whether channels and rates match for all formats */
1777 cmaster = rmaster = 0;
1778 for (i = 0; i < MAX_MASK; i++) {
1779 if (cmaster != channels[i] && cmaster && channels[i])
1780 goto __out;
1781 if (rmaster != rates[i] && rmaster && rates[i])
1782 goto __out;
1783 if (channels[i])
1784 cmaster = channels[i];
1785 if (rates[i])
1786 rmaster = rates[i];
1787 }
1788 /* check whether channels match for all distinct rates */
1789 memset(channels, 0, MAX_MASK * sizeof(u32));
1790 list_for_each(p, &subs->fmt_list) {
1791 struct audioformat *f;
1792 f = list_entry(p, struct audioformat, list);
1793 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS)
1794 continue;
1795 for (i = 0; i < 32; i++) {
1796 if (f->rates & (1 << i))
1797 channels[i] |= (1 << f->channels);
1798 }
1799 }
1800 cmaster = 0;
1801 for (i = 0; i < 32; i++) {
1802 if (cmaster != channels[i] && cmaster && channels[i])
1803 goto __out;
1804 if (channels[i])
1805 cmaster = channels[i];
1806 }
1807 err = 0;
1808
1809 __out:
1810 kfree(channels);
1811 kfree(rates);
1812 return err;
1813}
1814
Luke Rossa79eee82006-08-29 10:46:32 +02001815/*
1816 * If the device supports unusual bit rates, does the request meet these?
1817 */
1818static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1819 struct snd_usb_substream *subs)
1820{
1821 struct list_head *p;
1822 struct snd_pcm_hw_constraint_list constraints_rates;
1823 int err;
1824
1825 list_for_each(p, &subs->fmt_list) {
1826 struct audioformat *fp;
1827 fp = list_entry(p, struct audioformat, list);
1828
1829 if (!fp->needs_knot)
1830 continue;
1831
1832 constraints_rates.count = fp->nr_rates;
1833 constraints_rates.list = fp->rate_table;
1834 constraints_rates.mask = 0;
1835
1836 err = snd_pcm_hw_constraint_list(runtime, 0,
1837 SNDRV_PCM_HW_PARAM_RATE,
1838 &constraints_rates);
1839
1840 if (err < 0)
1841 return err;
1842 }
1843
1844 return 0;
1845}
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
1848/*
1849 * set up the runtime hardware information.
1850 */
1851
Takashi Iwai86e07d32005-11-17 15:08:02 +01001852static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
1854 struct list_head *p;
1855 int err;
1856
1857 runtime->hw.formats = subs->formats;
1858
1859 runtime->hw.rate_min = 0x7fffffff;
1860 runtime->hw.rate_max = 0;
1861 runtime->hw.channels_min = 256;
1862 runtime->hw.channels_max = 0;
1863 runtime->hw.rates = 0;
1864 /* check min/max rates and channels */
1865 list_for_each(p, &subs->fmt_list) {
1866 struct audioformat *fp;
1867 fp = list_entry(p, struct audioformat, list);
1868 runtime->hw.rates |= fp->rates;
1869 if (runtime->hw.rate_min > fp->rate_min)
1870 runtime->hw.rate_min = fp->rate_min;
1871 if (runtime->hw.rate_max < fp->rate_max)
1872 runtime->hw.rate_max = fp->rate_max;
1873 if (runtime->hw.channels_min > fp->channels)
1874 runtime->hw.channels_min = fp->channels;
1875 if (runtime->hw.channels_max < fp->channels)
1876 runtime->hw.channels_max = fp->channels;
1877 if (fp->fmt_type == USB_FORMAT_TYPE_II && fp->frame_size > 0) {
1878 /* FIXME: there might be more than one audio formats... */
1879 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1880 fp->frame_size;
1881 }
1882 }
1883
1884 /* set the period time minimum 1ms */
1885 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1886 1000 * MIN_PACKS_URB,
1887 /*(nrpacks * MAX_URBS) * 1000*/ UINT_MAX);
1888
1889 if (check_hw_params_convention(subs)) {
1890 hwc_debug("setting extra hw constraints...\n");
1891 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1892 hw_rule_rate, subs,
1893 SNDRV_PCM_HW_PARAM_FORMAT,
1894 SNDRV_PCM_HW_PARAM_CHANNELS,
1895 -1)) < 0)
1896 return err;
1897 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1898 hw_rule_channels, subs,
1899 SNDRV_PCM_HW_PARAM_FORMAT,
1900 SNDRV_PCM_HW_PARAM_RATE,
1901 -1)) < 0)
1902 return err;
1903 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1904 hw_rule_format, subs,
1905 SNDRV_PCM_HW_PARAM_RATE,
1906 SNDRV_PCM_HW_PARAM_CHANNELS,
1907 -1)) < 0)
1908 return err;
Luke Rossa79eee82006-08-29 10:46:32 +02001909 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
1910 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
1912 return 0;
1913}
1914
Clemens Ladisch1700f302006-10-04 13:41:25 +02001915static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001917 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1918 struct snd_pcm_runtime *runtime = substream->runtime;
1919 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 subs->interface = -1;
1922 subs->format = 0;
Clemens Ladisch1700f302006-10-04 13:41:25 +02001923 runtime->hw = snd_usb_hardware;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 runtime->private_data = subs;
1925 subs->pcm_substream = substream;
1926 return setup_hw_info(runtime, subs);
1927}
1928
Takashi Iwai86e07d32005-11-17 15:08:02 +01001929static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001931 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1932 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 if (subs->interface >= 0) {
1935 usb_set_interface(subs->dev, subs->interface, 0);
1936 subs->interface = -1;
1937 }
1938 subs->pcm_substream = NULL;
1939 return 0;
1940}
1941
Takashi Iwai86e07d32005-11-17 15:08:02 +01001942static int snd_usb_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001944 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945}
1946
Takashi Iwai86e07d32005-11-17 15:08:02 +01001947static int snd_usb_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
1949 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1950}
1951
Takashi Iwai86e07d32005-11-17 15:08:02 +01001952static int snd_usb_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001954 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
Takashi Iwai86e07d32005-11-17 15:08:02 +01001957static int snd_usb_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
1959 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1960}
1961
Takashi Iwai86e07d32005-11-17 15:08:02 +01001962static struct snd_pcm_ops snd_usb_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 .open = snd_usb_playback_open,
1964 .close = snd_usb_playback_close,
1965 .ioctl = snd_pcm_lib_ioctl,
1966 .hw_params = snd_usb_hw_params,
1967 .hw_free = snd_usb_hw_free,
1968 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001969 .trigger = snd_usb_pcm_playback_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02001971 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972};
1973
Takashi Iwai86e07d32005-11-17 15:08:02 +01001974static struct snd_pcm_ops snd_usb_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 .open = snd_usb_capture_open,
1976 .close = snd_usb_capture_close,
1977 .ioctl = snd_pcm_lib_ioctl,
1978 .hw_params = snd_usb_hw_params,
1979 .hw_free = snd_usb_hw_free,
1980 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001981 .trigger = snd_usb_pcm_capture_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02001983 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984};
1985
1986
1987
1988/*
1989 * helper functions
1990 */
1991
1992/*
1993 * combine bytes and get an integer value
1994 */
1995unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size)
1996{
1997 switch (size) {
1998 case 1: return *bytes;
1999 case 2: return combine_word(bytes);
2000 case 3: return combine_triple(bytes);
2001 case 4: return combine_quad(bytes);
2002 default: return 0;
2003 }
2004}
2005
2006/*
2007 * parse descriptor buffer and return the pointer starting the given
2008 * descriptor type.
2009 */
2010void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype)
2011{
2012 u8 *p, *end, *next;
2013
2014 p = descstart;
2015 end = p + desclen;
2016 for (; p < end;) {
2017 if (p[0] < 2)
2018 return NULL;
2019 next = p + p[0];
2020 if (next > end)
2021 return NULL;
2022 if (p[1] == dtype && (!after || (void *)p > after)) {
2023 return p;
2024 }
2025 p = next;
2026 }
2027 return NULL;
2028}
2029
2030/*
2031 * find a class-specified interface descriptor with the given subtype.
2032 */
2033void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype)
2034{
2035 unsigned char *p = after;
2036
2037 while ((p = snd_usb_find_desc(buffer, buflen, p,
2038 USB_DT_CS_INTERFACE)) != NULL) {
2039 if (p[0] >= 3 && p[2] == dsubtype)
2040 return p;
2041 }
2042 return NULL;
2043}
2044
2045/*
2046 * Wrapper for usb_control_msg().
2047 * Allocates a temp buffer to prevent dmaing from/to the stack.
2048 */
2049int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
2050 __u8 requesttype, __u16 value, __u16 index, void *data,
2051 __u16 size, int timeout)
2052{
2053 int err;
2054 void *buf = NULL;
2055
2056 if (size > 0) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002057 buf = kmemdup(data, size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (!buf)
2059 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
2061 err = usb_control_msg(dev, pipe, request, requesttype,
2062 value, index, buf, size, timeout);
2063 if (size > 0) {
2064 memcpy(data, buf, size);
2065 kfree(buf);
2066 }
2067 return err;
2068}
2069
2070
2071/*
2072 * entry point for linux usb interface
2073 */
2074
2075static int usb_audio_probe(struct usb_interface *intf,
2076 const struct usb_device_id *id);
2077static void usb_audio_disconnect(struct usb_interface *intf);
2078
2079static struct usb_device_id usb_audio_ids [] = {
2080#include "usbquirks.h"
2081 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
2082 .bInterfaceClass = USB_CLASS_AUDIO,
2083 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL },
2084 { } /* Terminating entry */
2085};
2086
2087MODULE_DEVICE_TABLE (usb, usb_audio_ids);
2088
2089static struct usb_driver usb_audio_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 .name = "snd-usb-audio",
2091 .probe = usb_audio_probe,
2092 .disconnect = usb_audio_disconnect,
2093 .id_table = usb_audio_ids,
2094};
2095
2096
Takashi Iwai727f3172006-08-04 19:08:03 +02002097#if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS)
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099/*
2100 * proc interface for list the supported pcm formats
2101 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002102static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
2104 struct list_head *p;
2105 static char *sync_types[4] = {
2106 "NONE", "ASYNC", "ADAPTIVE", "SYNC"
2107 };
2108
2109 list_for_each(p, &subs->fmt_list) {
2110 struct audioformat *fp;
2111 fp = list_entry(p, struct audioformat, list);
2112 snd_iprintf(buffer, " Interface %d\n", fp->iface);
2113 snd_iprintf(buffer, " Altset %d\n", fp->altsetting);
Jaroslav Kysela3f72a302006-01-18 11:50:40 +01002114 snd_iprintf(buffer, " Format: 0x%x\n", fp->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 snd_iprintf(buffer, " Channels: %d\n", fp->channels);
2116 snd_iprintf(buffer, " Endpoint: %d %s (%s)\n",
2117 fp->endpoint & USB_ENDPOINT_NUMBER_MASK,
2118 fp->endpoint & USB_DIR_IN ? "IN" : "OUT",
2119 sync_types[(fp->ep_attr & EP_ATTR_MASK) >> 2]);
2120 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) {
2121 snd_iprintf(buffer, " Rates: %d - %d (continuous)\n",
2122 fp->rate_min, fp->rate_max);
2123 } else {
2124 unsigned int i;
2125 snd_iprintf(buffer, " Rates: ");
2126 for (i = 0; i < fp->nr_rates; i++) {
2127 if (i > 0)
2128 snd_iprintf(buffer, ", ");
2129 snd_iprintf(buffer, "%d", fp->rate_table[i]);
2130 }
2131 snd_iprintf(buffer, "\n");
2132 }
2133 // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize);
2134 // snd_iprintf(buffer, " EP Attribute = 0x%x\n", fp->attributes);
2135 }
2136}
2137
Takashi Iwai86e07d32005-11-17 15:08:02 +01002138static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
2140 if (subs->running) {
2141 unsigned int i;
2142 snd_iprintf(buffer, " Status: Running\n");
2143 snd_iprintf(buffer, " Interface = %d\n", subs->interface);
2144 snd_iprintf(buffer, " Altset = %d\n", subs->format);
2145 snd_iprintf(buffer, " URBs = %d [ ", subs->nurbs);
2146 for (i = 0; i < subs->nurbs; i++)
2147 snd_iprintf(buffer, "%d ", subs->dataurb[i].packets);
2148 snd_iprintf(buffer, "]\n");
2149 snd_iprintf(buffer, " Packet Size = %d\n", subs->curpacksize);
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002150 snd_iprintf(buffer, " Momentary freq = %u Hz (%#x.%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 snd_usb_get_speed(subs->dev) == USB_SPEED_FULL
2152 ? get_full_speed_hz(subs->freqm)
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002153 : get_high_speed_hz(subs->freqm),
2154 subs->freqm >> 16, subs->freqm & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 } else {
2156 snd_iprintf(buffer, " Status: Stop\n");
2157 }
2158}
2159
Takashi Iwai86e07d32005-11-17 15:08:02 +01002160static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002162 struct snd_usb_stream *stream = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
2164 snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name);
2165
2166 if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) {
2167 snd_iprintf(buffer, "\nPlayback:\n");
2168 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2169 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2170 }
2171 if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) {
2172 snd_iprintf(buffer, "\nCapture:\n");
2173 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2174 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2175 }
2176}
2177
Takashi Iwai86e07d32005-11-17 15:08:02 +01002178static void proc_pcm_format_add(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002180 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 char name[32];
Takashi Iwai86e07d32005-11-17 15:08:02 +01002182 struct snd_card *card = stream->chip->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
2184 sprintf(name, "stream%d", stream->pcm_index);
2185 if (! snd_card_proc_new(card, name, &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002186 snd_info_set_text_ops(entry, stream, proc_pcm_format_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002189#else
2190
2191static inline void proc_pcm_format_add(struct snd_usb_stream *stream)
2192{
2193}
2194
2195#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
2197/*
2198 * initialize the substream instance.
2199 */
2200
Takashi Iwai86e07d32005-11-17 15:08:02 +01002201static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002203 struct snd_usb_substream *subs = &as->substream[stream];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
2205 INIT_LIST_HEAD(&subs->fmt_list);
2206 spin_lock_init(&subs->lock);
2207
2208 subs->stream = as;
2209 subs->direction = stream;
2210 subs->dev = as->chip->dev;
2211 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
2212 subs->ops = audio_urb_ops[stream];
2213 else
2214 subs->ops = audio_urb_ops_high_speed[stream];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 snd_pcm_set_ops(as->pcm, stream,
2216 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2217 &snd_usb_playback_ops : &snd_usb_capture_ops);
2218
2219 list_add_tail(&fp->list, &subs->fmt_list);
2220 subs->formats |= 1ULL << fp->format;
2221 subs->endpoint = fp->endpoint;
2222 subs->num_formats++;
2223 subs->fmt_type = fp->fmt_type;
2224}
2225
2226
2227/*
2228 * free a substream
2229 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002230static void free_substream(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
2232 struct list_head *p, *n;
2233
2234 if (! subs->num_formats)
2235 return; /* not initialized */
2236 list_for_each_safe(p, n, &subs->fmt_list) {
2237 struct audioformat *fp = list_entry(p, struct audioformat, list);
2238 kfree(fp->rate_table);
2239 kfree(fp);
2240 }
2241}
2242
2243
2244/*
2245 * free a usb stream instance
2246 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002247static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248{
2249 free_substream(&stream->substream[0]);
2250 free_substream(&stream->substream[1]);
2251 list_del(&stream->list);
2252 kfree(stream);
2253}
2254
Takashi Iwai86e07d32005-11-17 15:08:02 +01002255static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002257 struct snd_usb_stream *stream = pcm->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 if (stream) {
2259 stream->pcm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 snd_usb_audio_stream_free(stream);
2261 }
2262}
2263
2264
2265/*
2266 * add this endpoint to the chip instance.
2267 * if a stream with the same endpoint already exists, append to it.
2268 * if not, create a new pcm stream.
2269 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002270static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
2272 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002273 struct snd_usb_stream *as;
2274 struct snd_usb_substream *subs;
2275 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 int err;
2277
2278 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002279 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 if (as->fmt_type != fp->fmt_type)
2281 continue;
2282 subs = &as->substream[stream];
2283 if (! subs->endpoint)
2284 continue;
2285 if (subs->endpoint == fp->endpoint) {
2286 list_add_tail(&fp->list, &subs->fmt_list);
2287 subs->num_formats++;
2288 subs->formats |= 1ULL << fp->format;
2289 return 0;
2290 }
2291 }
2292 /* look for an empty stream */
2293 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002294 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 if (as->fmt_type != fp->fmt_type)
2296 continue;
2297 subs = &as->substream[stream];
2298 if (subs->endpoint)
2299 continue;
2300 err = snd_pcm_new_stream(as->pcm, stream, 1);
2301 if (err < 0)
2302 return err;
2303 init_substream(as, stream, fp);
2304 return 0;
2305 }
2306
2307 /* create a new pcm */
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002308 as = kzalloc(sizeof(*as), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 if (! as)
2310 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 as->pcm_index = chip->pcm_devs;
2312 as->chip = chip;
2313 as->fmt_type = fp->fmt_type;
2314 err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
2315 stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
2316 stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
2317 &pcm);
2318 if (err < 0) {
2319 kfree(as);
2320 return err;
2321 }
2322 as->pcm = pcm;
2323 pcm->private_data = as;
2324 pcm->private_free = snd_usb_audio_pcm_free;
2325 pcm->info_flags = 0;
2326 if (chip->pcm_devs > 0)
2327 sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
2328 else
2329 strcpy(pcm->name, "USB Audio");
2330
2331 init_substream(as, stream, fp);
2332
2333 list_add(&as->list, &chip->pcm_list);
2334 chip->pcm_devs++;
2335
2336 proc_pcm_format_add(as);
2337
2338 return 0;
2339}
2340
2341
2342/*
2343 * check if the device uses big-endian samples
2344 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002345static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002347 switch (chip->usb_id) {
2348 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
2349 if (fp->endpoint & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 return 1;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002351 break;
2352 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2353 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 }
2355 return 0;
2356}
2357
2358/*
2359 * parse the audio format type I descriptor
2360 * and returns the corresponding pcm format
2361 *
2362 * @dev: usb device
2363 * @fp: audioformat record
2364 * @format: the format tag (wFormatTag)
2365 * @fmt: the format type descriptor
2366 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002367static int parse_audio_format_i_type(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 int format, unsigned char *fmt)
2369{
2370 int pcm_format;
2371 int sample_width, sample_bytes;
2372
2373 /* FIXME: correct endianess and sign? */
2374 pcm_format = -1;
2375 sample_width = fmt[6];
2376 sample_bytes = fmt[5];
2377 switch (format) {
2378 case 0: /* some devices don't define this correctly... */
2379 snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002380 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 /* fall-through */
2382 case USB_AUDIO_FORMAT_PCM:
2383 if (sample_width > sample_bytes * 8) {
2384 snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002385 chip->dev->devnum, fp->iface, fp->altsetting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 sample_width, sample_bytes);
2387 }
2388 /* check the format byte size */
2389 switch (fmt[5]) {
2390 case 1:
2391 pcm_format = SNDRV_PCM_FORMAT_S8;
2392 break;
2393 case 2:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002394 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 pcm_format = SNDRV_PCM_FORMAT_S16_BE; /* grrr, big endian!! */
2396 else
2397 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2398 break;
2399 case 3:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002400 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */
2402 else
2403 pcm_format = SNDRV_PCM_FORMAT_S24_3LE;
2404 break;
2405 case 4:
2406 pcm_format = SNDRV_PCM_FORMAT_S32_LE;
2407 break;
2408 default:
2409 snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002410 chip->dev->devnum, fp->iface,
2411 fp->altsetting, sample_width, sample_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 break;
2413 }
2414 break;
2415 case USB_AUDIO_FORMAT_PCM8:
2416 /* Dallas DS4201 workaround */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002417 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 pcm_format = SNDRV_PCM_FORMAT_S8;
2419 else
2420 pcm_format = SNDRV_PCM_FORMAT_U8;
2421 break;
2422 case USB_AUDIO_FORMAT_IEEE_FLOAT:
2423 pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE;
2424 break;
2425 case USB_AUDIO_FORMAT_ALAW:
2426 pcm_format = SNDRV_PCM_FORMAT_A_LAW;
2427 break;
2428 case USB_AUDIO_FORMAT_MU_LAW:
2429 pcm_format = SNDRV_PCM_FORMAT_MU_LAW;
2430 break;
2431 default:
2432 snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002433 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 break;
2435 }
2436 return pcm_format;
2437}
2438
2439
2440/*
2441 * parse the format descriptor and stores the possible sample rates
2442 * on the audioformat table.
2443 *
2444 * @dev: usb device
2445 * @fp: audioformat record
2446 * @fmt: the format descriptor
2447 * @offset: the start offset of descriptor pointing the rate type
2448 * (7 for type I and II, 8 for type II)
2449 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002450static int parse_audio_format_rates(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 unsigned char *fmt, int offset)
2452{
2453 int nr_rates = fmt[offset];
Luke Rossa79eee82006-08-29 10:46:32 +02002454 int found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
2456 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002457 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 return -1;
2459 }
2460
2461 if (nr_rates) {
2462 /*
2463 * build the rate table and bitmap flags
2464 */
2465 int r, idx, c;
2466 /* this table corresponds to the SNDRV_PCM_RATE_XXX bit */
2467 static unsigned int conv_rates[] = {
2468 5512, 8000, 11025, 16000, 22050, 32000, 44100, 48000,
2469 64000, 88200, 96000, 176400, 192000
2470 };
2471 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
2472 if (fp->rate_table == NULL) {
2473 snd_printk(KERN_ERR "cannot malloc\n");
2474 return -1;
2475 }
2476
Luke Rossa79eee82006-08-29 10:46:32 +02002477 fp->needs_knot = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 fp->nr_rates = nr_rates;
2479 fp->rate_min = fp->rate_max = combine_triple(&fmt[8]);
2480 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
Clemens Ladisch987411b2006-11-20 14:14:39 +01002481 unsigned int rate = combine_triple(&fmt[idx]);
2482 /* C-Media CM6501 mislabels its 96 kHz altsetting */
2483 if (rate == 48000 && nr_rates == 1 &&
2484 chip->usb_id == USB_ID(0x0d8c, 0x0201) &&
2485 fp->altsetting == 5 && fp->maxpacksize == 392)
2486 rate = 96000;
2487 fp->rate_table[r] = rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 if (rate < fp->rate_min)
2489 fp->rate_min = rate;
2490 else if (rate > fp->rate_max)
2491 fp->rate_max = rate;
Luke Rossa79eee82006-08-29 10:46:32 +02002492 found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 for (c = 0; c < (int)ARRAY_SIZE(conv_rates); c++) {
2494 if (rate == conv_rates[c]) {
Luke Rossa79eee82006-08-29 10:46:32 +02002495 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 fp->rates |= (1 << c);
2497 break;
2498 }
2499 }
Luke Rossa79eee82006-08-29 10:46:32 +02002500 if (!found)
2501 fp->needs_knot = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 }
Luke Rossa79eee82006-08-29 10:46:32 +02002503 if (fp->needs_knot)
2504 fp->rates |= SNDRV_PCM_RATE_KNOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 } else {
2506 /* continuous rates */
2507 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
2508 fp->rate_min = combine_triple(&fmt[offset + 1]);
2509 fp->rate_max = combine_triple(&fmt[offset + 4]);
2510 }
2511 return 0;
2512}
2513
2514/*
2515 * parse the format type I and III descriptors
2516 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002517static int parse_audio_format_i(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 int format, unsigned char *fmt)
2519{
2520 int pcm_format;
2521
2522 if (fmt[3] == USB_FORMAT_TYPE_III) {
2523 /* FIXME: the format type is really IECxxx
2524 * but we give normal PCM format to get the existing
2525 * apps working...
2526 */
2527 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2528 } else {
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002529 pcm_format = parse_audio_format_i_type(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 if (pcm_format < 0)
2531 return -1;
2532 }
2533 fp->format = pcm_format;
2534 fp->channels = fmt[4];
2535 if (fp->channels < 1) {
2536 snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002537 chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 return -1;
2539 }
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002540 return parse_audio_format_rates(chip, fp, fmt, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541}
2542
2543/*
2544 * prase the format type II descriptor
2545 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002546static int parse_audio_format_ii(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 int format, unsigned char *fmt)
2548{
2549 int brate, framesize;
2550 switch (format) {
2551 case USB_AUDIO_FORMAT_AC3:
2552 /* FIXME: there is no AC3 format defined yet */
2553 // fp->format = SNDRV_PCM_FORMAT_AC3;
2554 fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */
2555 break;
2556 case USB_AUDIO_FORMAT_MPEG:
2557 fp->format = SNDRV_PCM_FORMAT_MPEG;
2558 break;
2559 default:
2560 snd_printd(KERN_INFO "%d:%u:%d : unknown format tag 0x%x is detected. processed as MPEG.\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002561 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 fp->format = SNDRV_PCM_FORMAT_MPEG;
2563 break;
2564 }
2565 fp->channels = 1;
2566 brate = combine_word(&fmt[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */
2567 framesize = combine_word(&fmt[6]); /* fmt[6,7]: wSamplesPerFrame */
2568 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
2569 fp->frame_size = framesize;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002570 return parse_audio_format_rates(chip, fp, fmt, 8); /* fmt[8..] sample rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571}
2572
Takashi Iwai86e07d32005-11-17 15:08:02 +01002573static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 int format, unsigned char *fmt, int stream)
2575{
2576 int err;
2577
2578 switch (fmt[3]) {
2579 case USB_FORMAT_TYPE_I:
2580 case USB_FORMAT_TYPE_III:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002581 err = parse_audio_format_i(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 break;
2583 case USB_FORMAT_TYPE_II:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002584 err = parse_audio_format_ii(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 break;
2586 default:
2587 snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002588 chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 return -1;
2590 }
2591 fp->fmt_type = fmt[3];
2592 if (err < 0)
2593 return err;
2594#if 1
Clemens Ladisch33159372006-01-13 08:11:22 +01002595 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 /* extigy apparently supports sample rates other than 48k
2597 * but not in ordinary way. so we enable only 48k atm.
2598 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002599 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
Clemens Ladisch33159372006-01-13 08:11:22 +01002600 chip->usb_id == USB_ID(0x041e, 0x3020) ||
2601 chip->usb_id == USB_ID(0x041e, 0x3061)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 if (fmt[3] == USB_FORMAT_TYPE_I &&
Clemens Ladisch8c1872d2005-04-28 09:31:53 +02002603 fp->rates != SNDRV_PCM_RATE_48000 &&
2604 fp->rates != SNDRV_PCM_RATE_96000)
Clemens Ladischb4d3f9d2005-06-27 08:18:27 +02002605 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 }
2607#endif
2608 return 0;
2609}
2610
Thibault LE MEURe3113342006-03-14 11:44:53 +01002611static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
2612 int iface, int altno);
Takashi Iwai86e07d32005-11-17 15:08:02 +01002613static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614{
2615 struct usb_device *dev;
2616 struct usb_interface *iface;
2617 struct usb_host_interface *alts;
2618 struct usb_interface_descriptor *altsd;
2619 int i, altno, err, stream;
2620 int format;
2621 struct audioformat *fp;
2622 unsigned char *fmt, *csep;
2623
2624 dev = chip->dev;
2625
2626 /* parse the interface's altsettings */
2627 iface = usb_ifnum_to_if(dev, iface_no);
2628 for (i = 0; i < iface->num_altsetting; i++) {
2629 alts = &iface->altsetting[i];
2630 altsd = get_iface_desc(alts);
2631 /* skip invalid one */
2632 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2633 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2634 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING &&
2635 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
2636 altsd->bNumEndpoints < 1 ||
2637 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
2638 continue;
2639 /* must be isochronous */
2640 if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
2641 USB_ENDPOINT_XFER_ISOC)
2642 continue;
2643 /* check direction */
2644 stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
2645 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2646 altno = altsd->bAlternateSetting;
Thibault LE MEURe3113342006-03-14 11:44:53 +01002647
2648 /* audiophile usb: skip altsets incompatible with device_setup
2649 */
2650 if (chip->usb_id == USB_ID(0x0763, 0x2003) &&
2651 audiophile_skip_setting_quirk(chip, iface_no, altno))
2652 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
2654 /* get audio formats */
2655 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, AS_GENERAL);
2656 if (!fmt) {
2657 snd_printk(KERN_ERR "%d:%u:%d : AS_GENERAL descriptor not found\n",
2658 dev->devnum, iface_no, altno);
2659 continue;
2660 }
2661
2662 if (fmt[0] < 7) {
2663 snd_printk(KERN_ERR "%d:%u:%d : invalid AS_GENERAL desc\n",
2664 dev->devnum, iface_no, altno);
2665 continue;
2666 }
2667
2668 format = (fmt[6] << 8) | fmt[5]; /* remember the format value */
2669
2670 /* get format type */
2671 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, FORMAT_TYPE);
2672 if (!fmt) {
2673 snd_printk(KERN_ERR "%d:%u:%d : no FORMAT_TYPE desc\n",
2674 dev->devnum, iface_no, altno);
2675 continue;
2676 }
2677 if (fmt[0] < 8) {
2678 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
2679 dev->devnum, iface_no, altno);
2680 continue;
2681 }
2682
2683 csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
2684 /* Creamware Noah has this descriptor after the 2nd endpoint */
2685 if (!csep && altsd->bNumEndpoints >= 2)
2686 csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
2687 if (!csep || csep[0] < 7 || csep[2] != EP_GENERAL) {
Takashi Iwaif8c75792006-05-18 14:47:03 +02002688 snd_printk(KERN_WARNING "%d:%u:%d : no or invalid"
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002689 " class specific endpoint descriptor\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 dev->devnum, iface_no, altno);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002691 csep = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 }
2693
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002694 fp = kzalloc(sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 if (! fp) {
2696 snd_printk(KERN_ERR "cannot malloc\n");
2697 return -ENOMEM;
2698 }
2699
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 fp->iface = iface_no;
2701 fp->altsetting = altno;
2702 fp->altset_idx = i;
2703 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2704 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Clemens Ladisch573567e2005-06-27 08:17:30 +02002706 if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
2707 fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
2708 * (fp->maxpacksize & 0x7ff);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002709 fp->attributes = csep ? csep[3] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
2711 /* some quirks for attributes here */
2712
Clemens Ladischc3f93292005-05-04 14:56:04 +02002713 switch (chip->usb_id) {
2714 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 /* Optoplay sets the sample rate attribute although
2716 * it seems not supporting it in fact.
2717 */
2718 fp->attributes &= ~EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002719 break;
2720 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
2721 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 /* doesn't set the sample rate attribute, but supports it */
2723 fp->attributes |= EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002724 break;
2725 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
2726 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
2727 an older model 77d:223) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 /*
2729 * plantronics headset and Griffin iMic have set adaptive-in
2730 * although it's really not...
2731 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 fp->ep_attr &= ~EP_ATTR_MASK;
2733 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2734 fp->ep_attr |= EP_ATTR_ADAPTIVE;
2735 else
2736 fp->ep_attr |= EP_ATTR_SYNC;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002737 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 }
2739
2740 /* ok, let's parse further... */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002741 if (parse_audio_format(chip, fp, format, fmt, stream) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 kfree(fp->rate_table);
2743 kfree(fp);
2744 continue;
2745 }
2746
Thibault LE MEURe3113342006-03-14 11:44:53 +01002747 snd_printdd(KERN_INFO "%d:%u:%d: add audio endpoint 0x%x\n", dev->devnum, iface_no, altno, fp->endpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 err = add_audio_endpoint(chip, stream, fp);
2749 if (err < 0) {
2750 kfree(fp->rate_table);
2751 kfree(fp);
2752 return err;
2753 }
2754 /* try to set the interface... */
2755 usb_set_interface(chip->dev, iface_no, altno);
2756 init_usb_pitch(chip->dev, iface_no, alts, fp);
2757 init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max);
2758 }
2759 return 0;
2760}
2761
2762
2763/*
2764 * disconnect streams
2765 * called from snd_usb_audio_disconnect()
2766 */
Clemens Ladischee733392005-04-25 10:34:13 +02002767static void snd_usb_stream_disconnect(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768{
2769 int idx;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002770 struct snd_usb_stream *as;
2771 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
Takashi Iwai86e07d32005-11-17 15:08:02 +01002773 as = list_entry(head, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 for (idx = 0; idx < 2; idx++) {
2775 subs = &as->substream[idx];
2776 if (!subs->num_formats)
2777 return;
2778 release_substream_urbs(subs, 1);
2779 subs->interface = -1;
2780 }
2781}
2782
2783/*
2784 * parse audio control descriptor and create pcm/midi streams
2785 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002786static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787{
2788 struct usb_device *dev = chip->dev;
2789 struct usb_host_interface *host_iface;
2790 struct usb_interface *iface;
2791 unsigned char *p1;
2792 int i, j;
2793
2794 /* find audiocontrol interface */
2795 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
2796 if (!(p1 = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen, NULL, HEADER))) {
2797 snd_printk(KERN_ERR "cannot find HEADER\n");
2798 return -EINVAL;
2799 }
2800 if (! p1[7] || p1[0] < 8 + p1[7]) {
2801 snd_printk(KERN_ERR "invalid HEADER\n");
2802 return -EINVAL;
2803 }
2804
2805 /*
2806 * parse all USB audio streaming interfaces
2807 */
2808 for (i = 0; i < p1[7]; i++) {
2809 struct usb_host_interface *alts;
2810 struct usb_interface_descriptor *altsd;
2811 j = p1[8 + i];
2812 iface = usb_ifnum_to_if(dev, j);
2813 if (!iface) {
2814 snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
2815 dev->devnum, ctrlif, j);
2816 continue;
2817 }
2818 if (usb_interface_claimed(iface)) {
2819 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n", dev->devnum, ctrlif, j);
2820 continue;
2821 }
2822 alts = &iface->altsetting[0];
2823 altsd = get_iface_desc(alts);
2824 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
2825 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
2826 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDI_STREAMING) {
2827 if (snd_usb_create_midi_interface(chip, iface, NULL) < 0) {
2828 snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n", dev->devnum, ctrlif, j);
2829 continue;
2830 }
2831 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2832 continue;
2833 }
2834 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2835 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2836 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING) {
2837 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n", dev->devnum, ctrlif, j, altsd->bInterfaceClass);
2838 /* skip non-supported classes */
2839 continue;
2840 }
2841 if (! parse_audio_endpoints(chip, j)) {
2842 usb_set_interface(dev, j, 0); /* reset the current interface */
2843 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2844 }
2845 }
2846
2847 return 0;
2848}
2849
2850/*
2851 * create a stream for an endpoint/altsetting without proper descriptors
2852 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002853static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002855 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856{
2857 struct audioformat *fp;
2858 struct usb_host_interface *alts;
2859 int stream, err;
2860 int *rate_table = NULL;
2861
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002862 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 if (! fp) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002864 snd_printk(KERN_ERR "cannot memdup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 return -ENOMEM;
2866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 if (fp->nr_rates > 0) {
2868 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
2869 if (!rate_table) {
2870 kfree(fp);
2871 return -ENOMEM;
2872 }
2873 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
2874 fp->rate_table = rate_table;
2875 }
2876
2877 stream = (fp->endpoint & USB_DIR_IN)
2878 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2879 err = add_audio_endpoint(chip, stream, fp);
2880 if (err < 0) {
2881 kfree(fp);
2882 kfree(rate_table);
2883 return err;
2884 }
2885 if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
2886 fp->altset_idx >= iface->num_altsetting) {
2887 kfree(fp);
2888 kfree(rate_table);
2889 return -EINVAL;
2890 }
2891 alts = &iface->altsetting[fp->altset_idx];
2892 usb_set_interface(chip->dev, fp->iface, 0);
2893 init_usb_pitch(chip->dev, fp->iface, alts, fp);
2894 init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max);
2895 return 0;
2896}
2897
2898/*
2899 * create a stream for an interface with proper descriptors
2900 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002901static int create_standard_audio_quirk(struct snd_usb_audio *chip,
Clemens Ladischd1bda042005-09-14 08:36:03 +02002902 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002903 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
2905 struct usb_host_interface *alts;
2906 struct usb_interface_descriptor *altsd;
2907 int err;
2908
2909 alts = &iface->altsetting[0];
2910 altsd = get_iface_desc(alts);
Clemens Ladischd1bda042005-09-14 08:36:03 +02002911 err = parse_audio_endpoints(chip, altsd->bInterfaceNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 if (err < 0) {
2913 snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
2914 altsd->bInterfaceNumber, err);
2915 return err;
2916 }
Clemens Ladischd1bda042005-09-14 08:36:03 +02002917 /* reset the current interface */
2918 usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 return 0;
2920}
2921
2922/*
2923 * Create a stream for an Edirol UA-700/UA-25 interface. The only way
2924 * to detect the sample rate is by looking at wMaxPacketSize.
2925 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002926static int create_ua700_ua25_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02002927 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002928 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929{
2930 static const struct audioformat ua_format = {
2931 .format = SNDRV_PCM_FORMAT_S24_3LE,
2932 .channels = 2,
2933 .fmt_type = USB_FORMAT_TYPE_I,
2934 .altsetting = 1,
2935 .altset_idx = 1,
2936 .rates = SNDRV_PCM_RATE_CONTINUOUS,
2937 };
2938 struct usb_host_interface *alts;
2939 struct usb_interface_descriptor *altsd;
2940 struct audioformat *fp;
2941 int stream, err;
2942
2943 /* both PCM and MIDI interfaces have 2 altsettings */
2944 if (iface->num_altsetting != 2)
2945 return -ENXIO;
2946 alts = &iface->altsetting[1];
2947 altsd = get_iface_desc(alts);
2948
2949 if (altsd->bNumEndpoints == 2) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002950 static const struct snd_usb_midi_endpoint_info ua700_ep = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 .out_cables = 0x0003,
2952 .in_cables = 0x0003
2953 };
Takashi Iwai86e07d32005-11-17 15:08:02 +01002954 static const struct snd_usb_audio_quirk ua700_quirk = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2956 .data = &ua700_ep
2957 };
Takashi Iwai86e07d32005-11-17 15:08:02 +01002958 static const struct snd_usb_midi_endpoint_info ua25_ep = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 .out_cables = 0x0001,
2960 .in_cables = 0x0001
2961 };
Takashi Iwai86e07d32005-11-17 15:08:02 +01002962 static const struct snd_usb_audio_quirk ua25_quirk = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2964 .data = &ua25_ep
2965 };
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002966 if (chip->usb_id == USB_ID(0x0582, 0x002b))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 return snd_usb_create_midi_interface(chip, iface,
2968 &ua700_quirk);
2969 else
2970 return snd_usb_create_midi_interface(chip, iface,
2971 &ua25_quirk);
2972 }
2973
2974 if (altsd->bNumEndpoints != 1)
2975 return -ENXIO;
2976
2977 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
2978 if (!fp)
2979 return -ENOMEM;
2980 memcpy(fp, &ua_format, sizeof(*fp));
2981
2982 fp->iface = altsd->bInterfaceNumber;
2983 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2984 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
2985 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
2986
2987 switch (fp->maxpacksize) {
2988 case 0x120:
2989 fp->rate_max = fp->rate_min = 44100;
2990 break;
2991 case 0x138:
2992 case 0x140:
2993 fp->rate_max = fp->rate_min = 48000;
2994 break;
2995 case 0x258:
2996 case 0x260:
2997 fp->rate_max = fp->rate_min = 96000;
2998 break;
2999 default:
3000 snd_printk(KERN_ERR "unknown sample rate\n");
3001 kfree(fp);
3002 return -ENXIO;
3003 }
3004
3005 stream = (fp->endpoint & USB_DIR_IN)
3006 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3007 err = add_audio_endpoint(chip, stream, fp);
3008 if (err < 0) {
3009 kfree(fp);
3010 return err;
3011 }
3012 usb_set_interface(chip->dev, fp->iface, 0);
3013 return 0;
3014}
3015
3016/*
3017 * Create a stream for an Edirol UA-1000 interface.
3018 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003019static int create_ua1000_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003020 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003021 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022{
3023 static const struct audioformat ua1000_format = {
3024 .format = SNDRV_PCM_FORMAT_S32_LE,
3025 .fmt_type = USB_FORMAT_TYPE_I,
3026 .altsetting = 1,
3027 .altset_idx = 1,
3028 .attributes = 0,
3029 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3030 };
3031 struct usb_host_interface *alts;
3032 struct usb_interface_descriptor *altsd;
3033 struct audioformat *fp;
3034 int stream, err;
3035
3036 if (iface->num_altsetting != 2)
3037 return -ENXIO;
3038 alts = &iface->altsetting[1];
3039 altsd = get_iface_desc(alts);
Ben Williamsonc4a87ef2006-06-19 17:20:09 +02003040 if (alts->extralen != 11 || alts->extra[1] != USB_DT_CS_INTERFACE ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 altsd->bNumEndpoints != 1)
3042 return -ENXIO;
3043
Alexey Dobriyan52978be2006-09-30 23:27:21 -07003044 fp = kmemdup(&ua1000_format, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 if (!fp)
3046 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
3048 fp->channels = alts->extra[4];
3049 fp->iface = altsd->bInterfaceNumber;
3050 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3051 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3052 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3053 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[8]);
3054
3055 stream = (fp->endpoint & USB_DIR_IN)
3056 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3057 err = add_audio_endpoint(chip, stream, fp);
3058 if (err < 0) {
3059 kfree(fp);
3060 return err;
3061 }
3062 /* FIXME: playback must be synchronized to capture */
3063 usb_set_interface(chip->dev, fp->iface, 0);
3064 return 0;
3065}
3066
Takashi Iwai86e07d32005-11-17 15:08:02 +01003067static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003069 const struct snd_usb_audio_quirk *quirk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
3071/*
3072 * handle the quirks for the contained interfaces
3073 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003074static int create_composite_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003076 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077{
3078 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
3079 int err;
3080
3081 for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
3082 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
3083 if (!iface)
3084 continue;
3085 if (quirk->ifnum != probed_ifnum &&
3086 usb_interface_claimed(iface))
3087 continue;
3088 err = snd_usb_create_quirk(chip, iface, quirk);
3089 if (err < 0)
3090 return err;
3091 if (quirk->ifnum != probed_ifnum)
3092 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
3093 }
3094 return 0;
3095}
3096
Takashi Iwai86e07d32005-11-17 15:08:02 +01003097static int ignore_interface_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003098 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003099 const struct snd_usb_audio_quirk *quirk)
Clemens Ladisch854af952005-07-25 16:19:10 +02003100{
3101 return 0;
3102}
3103
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
3105/*
3106 * boot quirks
3107 */
3108
3109#define EXTIGY_FIRMWARE_SIZE_OLD 794
3110#define EXTIGY_FIRMWARE_SIZE_NEW 483
3111
3112static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
3113{
3114 struct usb_host_config *config = dev->actconfig;
3115 int err;
3116
3117 if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
3118 le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
3119 snd_printdd("sending Extigy boot sequence...\n");
3120 /* Send message to force it to reconnect with full interface. */
3121 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
3122 0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000);
3123 if (err < 0) snd_printdd("error sending boot message: %d\n", err);
3124 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
3125 &dev->descriptor, sizeof(dev->descriptor));
3126 config = dev->actconfig;
3127 if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
3128 err = usb_reset_configuration(dev);
3129 if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
3130 snd_printdd("extigy_boot: new boot length = %d\n",
3131 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
3132 return -ENODEV; /* quit this anyway */
3133 }
3134 return 0;
3135}
3136
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003137static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
3138{
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003139 u8 buf = 1;
3140
3141 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
3142 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3143 0, 0, &buf, 1, 1000);
3144 if (buf == 0) {
3145 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
3146 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3147 1, 2000, NULL, 0, 1000);
3148 return -ENODEV;
3149 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003150 return 0;
3151}
3152
Thibault LE MEURe3113342006-03-14 11:44:53 +01003153/*
Sam Revitche217e302006-06-23 15:10:18 +02003154 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
3155 * documented in the device's data sheet.
3156 */
3157static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value)
3158{
3159 u8 buf[4];
3160 buf[0] = 0x20;
3161 buf[1] = value & 0xff;
3162 buf[2] = (value >> 8) & 0xff;
3163 buf[3] = reg;
3164 return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION,
3165 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT,
3166 0, 0, &buf, 4, 1000);
3167}
3168
3169static int snd_usb_cm106_boot_quirk(struct usb_device *dev)
3170{
3171 /*
3172 * Enable line-out driver mode, set headphone source to front
3173 * channels, enable stereo mic.
3174 */
3175 return snd_usb_cm106_write_int_reg(dev, 2, 0x8004);
3176}
3177
3178
3179/*
Thibault LE MEURe3113342006-03-14 11:44:53 +01003180 * Setup quirks
3181 */
3182#define AUDIOPHILE_SET 0x01 /* if set, parse device_setup */
3183#define AUDIOPHILE_SET_DTS 0x02 /* if set, enable DTS Digital Output */
3184#define AUDIOPHILE_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
3185#define AUDIOPHILE_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */
3186#define AUDIOPHILE_SET_DI 0x10 /* if set, enable Digital Input */
3187#define AUDIOPHILE_SET_MASK 0x1F /* bit mask for setup value */
3188#define AUDIOPHILE_SET_24B_48K_DI 0x19 /* value for 24bits+48KHz+Digital Input */
3189#define AUDIOPHILE_SET_24B_48K_NOTDI 0x09 /* value for 24bits+48KHz+No Digital Input */
3190#define AUDIOPHILE_SET_16B_48K_DI 0x11 /* value for 16bits+48KHz+Digital Input */
3191#define AUDIOPHILE_SET_16B_48K_NOTDI 0x01 /* value for 16bits+48KHz+No Digital Input */
3192
3193static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
3194 int iface, int altno)
3195{
3196 if (device_setup[chip->index] & AUDIOPHILE_SET) {
3197 if ((device_setup[chip->index] & AUDIOPHILE_SET_DTS)
3198 && altno != 6)
3199 return 1; /* skip this altsetting */
3200 if ((device_setup[chip->index] & AUDIOPHILE_SET_96K)
3201 && altno != 1)
3202 return 1; /* skip this altsetting */
3203 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3204 AUDIOPHILE_SET_24B_48K_DI && altno != 2)
3205 return 1; /* skip this altsetting */
3206 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3207 AUDIOPHILE_SET_24B_48K_NOTDI && altno != 3)
3208 return 1; /* skip this altsetting */
3209 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3210 AUDIOPHILE_SET_16B_48K_DI && altno != 4)
3211 return 1; /* skip this altsetting */
3212 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3213 AUDIOPHILE_SET_16B_48K_NOTDI && altno != 5)
3214 return 1; /* skip this altsetting */
3215 }
3216 return 0; /* keep this altsetting */
3217}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
3219/*
3220 * audio-interface quirks
3221 *
3222 * returns zero if no standard audio/MIDI parsing is needed.
3223 * returns a postive value if standard audio/midi interfaces are parsed
3224 * after this.
3225 * returns a negative value at error.
3226 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003227static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003229 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003231 typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *,
3232 const struct snd_usb_audio_quirk *);
Clemens Ladisch854af952005-07-25 16:19:10 +02003233 static const quirk_func_t quirk_funcs[] = {
3234 [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
3235 [QUIRK_COMPOSITE] = create_composite_quirk,
3236 [QUIRK_MIDI_STANDARD_INTERFACE] = snd_usb_create_midi_interface,
3237 [QUIRK_MIDI_FIXED_ENDPOINT] = snd_usb_create_midi_interface,
3238 [QUIRK_MIDI_YAMAHA] = snd_usb_create_midi_interface,
3239 [QUIRK_MIDI_MIDIMAN] = snd_usb_create_midi_interface,
3240 [QUIRK_MIDI_NOVATION] = snd_usb_create_midi_interface,
3241 [QUIRK_MIDI_RAW] = snd_usb_create_midi_interface,
3242 [QUIRK_MIDI_EMAGIC] = snd_usb_create_midi_interface,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01003243 [QUIRK_MIDI_CME] = snd_usb_create_midi_interface,
Clemens Ladischd1bda042005-09-14 08:36:03 +02003244 [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003245 [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
3246 [QUIRK_AUDIO_EDIROL_UA700_UA25] = create_ua700_ua25_quirk,
3247 [QUIRK_AUDIO_EDIROL_UA1000] = create_ua1000_quirk,
3248 };
3249
3250 if (quirk->type < QUIRK_TYPE_COUNT) {
3251 return quirk_funcs[quirk->type](chip, iface, quirk);
3252 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
3254 return -ENXIO;
3255 }
3256}
3257
3258
3259/*
3260 * common proc files to show the usb device info
3261 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003262static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003264 struct snd_usb_audio *chip = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 if (! chip->shutdown)
3266 snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum);
3267}
3268
Takashi Iwai86e07d32005-11-17 15:08:02 +01003269static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003271 struct snd_usb_audio *chip = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 if (! chip->shutdown)
3273 snd_iprintf(buffer, "%04x:%04x\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003274 USB_ID_VENDOR(chip->usb_id),
3275 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276}
3277
Takashi Iwai86e07d32005-11-17 15:08:02 +01003278static void snd_usb_audio_create_proc(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003280 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 if (! snd_card_proc_new(chip->card, "usbbus", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003282 snd_info_set_text_ops(entry, chip, proc_audio_usbbus_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 if (! snd_card_proc_new(chip->card, "usbid", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003284 snd_info_set_text_ops(entry, chip, proc_audio_usbid_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285}
3286
3287/*
3288 * free the chip instance
3289 *
3290 * here we have to do not much, since pcm and controls are already freed
3291 *
3292 */
3293
Takashi Iwai86e07d32005-11-17 15:08:02 +01003294static int snd_usb_audio_free(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295{
Takashi Iwai2a2a5dd2007-01-08 17:42:22 +01003296 usb_chip[chip->index] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 kfree(chip);
3298 return 0;
3299}
3300
Takashi Iwai86e07d32005-11-17 15:08:02 +01003301static int snd_usb_audio_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003303 struct snd_usb_audio *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 return snd_usb_audio_free(chip);
3305}
3306
3307
3308/*
3309 * create a chip instance and set its names.
3310 */
3311static int snd_usb_audio_create(struct usb_device *dev, int idx,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003312 const struct snd_usb_audio_quirk *quirk,
3313 struct snd_usb_audio **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003315 struct snd_card *card;
3316 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 int err, len;
3318 char component[14];
Takashi Iwai86e07d32005-11-17 15:08:02 +01003319 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 .dev_free = snd_usb_audio_dev_free,
3321 };
3322
3323 *rchip = NULL;
3324
3325 if (snd_usb_get_speed(dev) != USB_SPEED_FULL &&
3326 snd_usb_get_speed(dev) != USB_SPEED_HIGH) {
3327 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
3328 return -ENXIO;
3329 }
3330
3331 card = snd_card_new(index[idx], id[idx], THIS_MODULE, 0);
3332 if (card == NULL) {
3333 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
3334 return -ENOMEM;
3335 }
3336
Takashi Iwai561b2202005-09-09 14:22:34 +02003337 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 if (! chip) {
3339 snd_card_free(card);
3340 return -ENOMEM;
3341 }
3342
3343 chip->index = idx;
3344 chip->dev = dev;
3345 chip->card = card;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003346 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3347 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 INIT_LIST_HEAD(&chip->pcm_list);
3349 INIT_LIST_HEAD(&chip->midi_list);
Clemens Ladisch84957a82005-04-29 16:23:13 +02003350 INIT_LIST_HEAD(&chip->mixer_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
3352 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
3353 snd_usb_audio_free(chip);
3354 snd_card_free(card);
3355 return err;
3356 }
3357
3358 strcpy(card->driver, "USB-Audio");
3359 sprintf(component, "USB%04x:%04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003360 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 snd_component_add(card, component);
3362
3363 /* retrieve the device string as shortname */
3364 if (quirk && quirk->product_name) {
3365 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
3366 } else {
3367 if (!dev->descriptor.iProduct ||
3368 usb_string(dev, dev->descriptor.iProduct,
3369 card->shortname, sizeof(card->shortname)) <= 0) {
3370 /* no name available from anywhere, so use ID */
3371 sprintf(card->shortname, "USB Device %#04x:%#04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003372 USB_ID_VENDOR(chip->usb_id),
3373 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 }
3375 }
3376
3377 /* retrieve the vendor and device strings as longname */
3378 if (quirk && quirk->vendor_name) {
3379 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
3380 } else {
3381 if (dev->descriptor.iManufacturer)
3382 len = usb_string(dev, dev->descriptor.iManufacturer,
3383 card->longname, sizeof(card->longname));
3384 else
3385 len = 0;
3386 /* we don't really care if there isn't any vendor string */
3387 }
3388 if (len > 0)
3389 strlcat(card->longname, " ", sizeof(card->longname));
3390
3391 strlcat(card->longname, card->shortname, sizeof(card->longname));
3392
3393 len = strlcat(card->longname, " at ", sizeof(card->longname));
3394
3395 if (len < sizeof(card->longname))
3396 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
3397
3398 strlcat(card->longname,
3399 snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" : ", high speed",
3400 sizeof(card->longname));
3401
3402 snd_usb_audio_create_proc(chip);
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 *rchip = chip;
3405 return 0;
3406}
3407
3408
3409/*
3410 * probe the active usb device
3411 *
3412 * note that this can be called multiple times per a device, when it
3413 * includes multiple audio control interfaces.
3414 *
3415 * thus we check the usb device pointer and creates the card instance
3416 * only at the first time. the successive calls of this function will
3417 * append the pcm interface to the corresponding card.
3418 */
3419static void *snd_usb_audio_probe(struct usb_device *dev,
3420 struct usb_interface *intf,
3421 const struct usb_device_id *usb_id)
3422{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003423 const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 int i, err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01003425 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 struct usb_host_interface *alts;
3427 int ifnum;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003428 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
3430 alts = &intf->altsetting[0];
3431 ifnum = get_iface_desc(alts)->bInterfaceNumber;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003432 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3433 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
3435 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
3436 goto __err_val;
3437
3438 /* SB Extigy needs special boot-up sequence */
3439 /* if more models come, this will go to the quirk list. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003440 if (id == USB_ID(0x041e, 0x3000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 if (snd_usb_extigy_boot_quirk(dev, intf) < 0)
3442 goto __err_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003444 /* SB Audigy 2 NX needs its own boot-up magic, too */
3445 if (id == USB_ID(0x041e, 0x3020)) {
3446 if (snd_usb_audigy2nx_boot_quirk(dev) < 0)
3447 goto __err_val;
3448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Sam Revitche217e302006-06-23 15:10:18 +02003450 /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
3451 if (id == USB_ID(0x10f5, 0x0200)) {
3452 if (snd_usb_cm106_boot_quirk(dev) < 0)
3453 goto __err_val;
3454 }
3455
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 /*
3457 * found a config. now register to ALSA
3458 */
3459
3460 /* check whether it's already registered */
3461 chip = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003462 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 for (i = 0; i < SNDRV_CARDS; i++) {
3464 if (usb_chip[i] && usb_chip[i]->dev == dev) {
3465 if (usb_chip[i]->shutdown) {
3466 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
3467 goto __error;
3468 }
3469 chip = usb_chip[i];
3470 break;
3471 }
3472 }
3473 if (! chip) {
3474 /* it's a fresh one.
3475 * now look for an empty slot and create a new card instance
3476 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 for (i = 0; i < SNDRV_CARDS; i++)
3478 if (enable[i] && ! usb_chip[i] &&
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003479 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
3480 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
3482 goto __error;
3483 }
Clemens Ladisch1dcd3ec2005-05-10 14:51:40 +02003484 snd_card_set_dev(chip->card, &intf->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 break;
3486 }
3487 if (! chip) {
3488 snd_printk(KERN_ERR "no available usb audio device\n");
3489 goto __error;
3490 }
3491 }
3492
3493 err = 1; /* continue */
3494 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
3495 /* need some special handlings */
3496 if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0)
3497 goto __error;
3498 }
3499
3500 if (err > 0) {
3501 /* create normal USB audio interfaces */
3502 if (snd_usb_create_streams(chip, ifnum) < 0 ||
3503 snd_usb_create_mixer(chip, ifnum) < 0) {
3504 goto __error;
3505 }
3506 }
3507
3508 /* we are allowed to call snd_card_register() many times */
3509 if (snd_card_register(chip->card) < 0) {
3510 goto __error;
3511 }
3512
3513 usb_chip[chip->index] = chip;
3514 chip->num_interfaces++;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003515 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 return chip;
3517
3518 __error:
3519 if (chip && !chip->num_interfaces)
3520 snd_card_free(chip->card);
Ingo Molnar12aa7572006-01-16 16:36:05 +01003521 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 __err_val:
3523 return NULL;
3524}
3525
3526/*
3527 * we need to take care of counter, since disconnection can be called also
3528 * many times as well as usb_audio_probe().
3529 */
3530static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr)
3531{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003532 struct snd_usb_audio *chip;
3533 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 struct list_head *p;
3535
3536 if (ptr == (void *)-1L)
3537 return;
3538
3539 chip = ptr;
3540 card = chip->card;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003541 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 chip->shutdown = 1;
3543 chip->num_interfaces--;
3544 if (chip->num_interfaces <= 0) {
3545 snd_card_disconnect(card);
3546 /* release the pcm resources */
3547 list_for_each(p, &chip->pcm_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003548 snd_usb_stream_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 }
3550 /* release the midi resources */
3551 list_for_each(p, &chip->midi_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003552 snd_usbmidi_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02003554 /* release mixer resources */
3555 list_for_each(p, &chip->mixer_list) {
3556 snd_usb_mixer_disconnect(p);
3557 }
Ingo Molnar12aa7572006-01-16 16:36:05 +01003558 mutex_unlock(&register_mutex);
Takashi Iwaic4614822006-06-23 14:38:23 +02003559 snd_card_free_when_closed(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 } else {
Ingo Molnar12aa7572006-01-16 16:36:05 +01003561 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 }
3563}
3564
3565/*
3566 * new 2.5 USB kernel API
3567 */
3568static int usb_audio_probe(struct usb_interface *intf,
3569 const struct usb_device_id *id)
3570{
3571 void *chip;
3572 chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
3573 if (chip) {
3574 dev_set_drvdata(&intf->dev, chip);
3575 return 0;
3576 } else
3577 return -EIO;
3578}
3579
3580static void usb_audio_disconnect(struct usb_interface *intf)
3581{
3582 snd_usb_audio_disconnect(interface_to_usbdev(intf),
3583 dev_get_drvdata(&intf->dev));
3584}
3585
3586
3587static int __init snd_usb_audio_init(void)
3588{
3589 if (nrpacks < MIN_PACKS_URB || nrpacks > MAX_PACKS) {
3590 printk(KERN_WARNING "invalid nrpacks value.\n");
3591 return -EINVAL;
3592 }
Tobias Klausercf78bbc2006-10-04 18:12:43 +02003593 return usb_register(&usb_audio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594}
3595
3596
3597static void __exit snd_usb_audio_cleanup(void)
3598{
3599 usb_deregister(&usb_audio_driver);
3600}
3601
3602module_init(snd_usb_audio_init);
3603module_exit(snd_usb_audio_cleanup);