blob: 5c40c031dd579dfce297e74e76a9698229902e57 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/bitops.h>
42#include <linux/init.h>
43#include <linux/list.h>
44#include <linux/slab.h>
45#include <linux/string.h>
46#include <linux/usb.h>
Clemens Ladisch6207e512005-08-15 08:35:25 +020047#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/moduleparam.h>
Ingo Molnar12aa7572006-01-16 16:36:05 +010049#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <sound/core.h>
51#include <sound/info.h>
52#include <sound/pcm.h>
53#include <sound/pcm_params.h>
54#include <sound/initval.h>
55
56#include "usbaudio.h"
57
58
59MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
60MODULE_DESCRIPTION("USB Audio");
61MODULE_LICENSE("GPL");
62MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
63
64
65static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
66static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
67static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
68static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 }; /* Vendor ID for this card */
69static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 }; /* Product ID for this card */
Clemens Ladisch92b9ac72006-09-22 10:57:36 +020070static int nrpacks = 8; /* max. number of packets per urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static int async_unlink = 1;
Thibault LE MEURe3113342006-03-14 11:44:53 +010072static int device_setup[SNDRV_CARDS]; /* device parameter for this card*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74module_param_array(index, int, NULL, 0444);
75MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
76module_param_array(id, charp, NULL, 0444);
77MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
78module_param_array(enable, bool, NULL, 0444);
79MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
80module_param_array(vid, int, NULL, 0444);
81MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
82module_param_array(pid, int, NULL, 0444);
83MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
Clemens Ladisch71d848c2005-08-12 15:18:00 +020084module_param(nrpacks, int, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB.");
86module_param(async_unlink, bool, 0444);
87MODULE_PARM_DESC(async_unlink, "Use async unlink mode.");
Thibault LE MEURe3113342006-03-14 11:44:53 +010088module_param_array(device_setup, int, NULL, 0444);
89MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91
92/*
93 * debug the h/w constraints
94 */
95/* #define HW_CONST_DEBUG */
96
97
98/*
99 *
100 */
101
Clemens Ladisch92b9ac72006-09-22 10:57:36 +0200102#define MAX_PACKS 20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#define MAX_PACKS_HS (MAX_PACKS * 8) /* in high speed mode */
Clemens Ladisch15a24c072005-08-12 08:25:26 +0200104#define MAX_URBS 8
Clemens Ladisch604cf492005-05-17 09:15:27 +0200105#define SYNC_URBS 4 /* always four urbs for sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define MIN_PACKS_URB 1 /* minimum 1 packet per urb */
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108struct audioformat {
109 struct list_head list;
110 snd_pcm_format_t format; /* format type */
111 unsigned int channels; /* # channels */
112 unsigned int fmt_type; /* USB audio format type (1-3) */
113 unsigned int frame_size; /* samples per frame for non-audio */
114 int iface; /* interface number */
115 unsigned char altsetting; /* corresponding alternate setting */
116 unsigned char altset_idx; /* array index of altenate setting */
117 unsigned char attributes; /* corresponding attributes of cs endpoint */
118 unsigned char endpoint; /* endpoint */
119 unsigned char ep_attr; /* endpoint attributes */
120 unsigned int maxpacksize; /* max. packet size */
121 unsigned int rates; /* rate bitmasks */
122 unsigned int rate_min, rate_max; /* min/max rates */
123 unsigned int nr_rates; /* number of rate table entries */
124 unsigned int *rate_table; /* rate table */
125};
126
Takashi Iwai86e07d32005-11-17 15:08:02 +0100127struct snd_usb_substream;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129struct snd_urb_ctx {
130 struct urb *urb;
Clemens Ladisch55851f72005-08-15 08:34:16 +0200131 unsigned int buffer_size; /* size of data buffer, if data URB */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100132 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 int index; /* index for urb array */
134 int packets; /* number of packets per urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
137struct snd_urb_ops {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100138 int (*prepare)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
139 int (*retire)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
140 int (*prepare_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
141 int (*retire_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
144struct snd_usb_substream {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100145 struct snd_usb_stream *stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 struct usb_device *dev;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100147 struct snd_pcm_substream *pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 int direction; /* playback or capture */
149 int interface; /* current interface */
150 int endpoint; /* assigned endpoint */
151 struct audioformat *cur_audiofmt; /* current audioformat pointer (for hw_params callback) */
152 unsigned int cur_rate; /* current rate (for hw_params callback) */
153 unsigned int period_bytes; /* current period bytes (for hw_params callback) */
154 unsigned int format; /* USB data format */
155 unsigned int datapipe; /* the data i/o pipe */
156 unsigned int syncpipe; /* 1 - async out or adaptive in */
Clemens Ladisch573567e2005-06-27 08:17:30 +0200157 unsigned int datainterval; /* log_2 of data packet interval */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 unsigned int syncinterval; /* P for adaptive mode, 0 otherwise */
159 unsigned int freqn; /* nominal sampling rate in fs/fps in Q16.16 format */
160 unsigned int freqm; /* momentary sampling rate in fs/fps in Q16.16 format */
161 unsigned int freqmax; /* maximum sampling rate, used for buffer management */
162 unsigned int phase; /* phase accumulator */
163 unsigned int maxpacksize; /* max packet size in bytes */
164 unsigned int maxframesize; /* max packet size in frames */
165 unsigned int curpacksize; /* current packet size in bytes (for capture) */
166 unsigned int curframesize; /* current packet size in frames (for capture) */
167 unsigned int fill_max: 1; /* fill max packet size always */
168 unsigned int fmt_type; /* USB audio format type (1-3) */
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200169 unsigned int packs_per_ms; /* packets per millisecond (for playback) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 unsigned int running: 1; /* running status */
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 unsigned int hwptr_done; /* processed frame position in the buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 unsigned int transfer_done; /* processed frames since last period update */
175 unsigned long active_mask; /* bitmask of active urbs */
176 unsigned long unlink_mask; /* bitmask of unlinked urbs */
177
178 unsigned int nurbs; /* # urbs */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100179 struct snd_urb_ctx dataurb[MAX_URBS]; /* data urb table */
180 struct snd_urb_ctx syncurb[SYNC_URBS]; /* sync urb table */
Clemens Ladisch55851f72005-08-15 08:34:16 +0200181 char *syncbuf; /* sync buffer for all sync URBs */
182 dma_addr_t sync_dma; /* DMA address of syncbuf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 u64 formats; /* format bitmasks (all or'ed) */
185 unsigned int num_formats; /* number of supported audio formats (list) */
186 struct list_head fmt_list; /* format list */
Takashi Iwai8fec5602007-02-01 11:50:56 +0100187 struct snd_pcm_hw_constraint_list rate_list; /* limited rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 spinlock_t lock;
189
190 struct snd_urb_ops ops; /* callbacks (must be filled at init) */
191};
192
193
194struct snd_usb_stream {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100195 struct snd_usb_audio *chip;
196 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 int pcm_index;
198 unsigned int fmt_type; /* USB audio format type (1-3) */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100199 struct snd_usb_substream substream[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 struct list_head list;
201};
202
203
204/*
205 * we keep the snd_usb_audio_t instances by ourselves for merging
206 * the all interfaces on the same card as one sound device.
207 */
208
Ingo Molnar12aa7572006-01-16 16:36:05 +0100209static DEFINE_MUTEX(register_mutex);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100210static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212
213/*
214 * convert a sampling rate into our full speed format (fs/1000 in Q16.16)
215 * this will overflow at approx 524 kHz
216 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700217static inline unsigned get_usb_full_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 return ((rate << 13) + 62) / 125;
220}
221
222/*
223 * convert a sampling rate into USB high speed format (fs/8000 in Q16.16)
224 * this will overflow at approx 4 MHz
225 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700226static inline unsigned get_usb_high_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 return ((rate << 10) + 62) / 125;
229}
230
231/* convert our full speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700232static inline unsigned get_full_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 return (usb_rate * 125 + (1 << 12)) >> 13;
235}
236
237/* convert our high speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700238static inline unsigned get_high_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
240 return (usb_rate * 125 + (1 << 9)) >> 10;
241}
242
243
244/*
245 * prepare urb for full speed capture sync pipe
246 *
247 * fill the length and offset of each urb descriptor.
248 * the fixed 10.14 frequency is passed through the pipe.
249 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100250static int prepare_capture_sync_urb(struct snd_usb_substream *subs,
251 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 struct urb *urb)
253{
254 unsigned char *cp = urb->transfer_buffer;
John Daiker88518272006-12-28 13:55:05 +0100255 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200258 urb->iso_frame_desc[0].length = 3;
259 urb->iso_frame_desc[0].offset = 0;
260 cp[0] = subs->freqn >> 2;
261 cp[1] = subs->freqn >> 10;
262 cp[2] = subs->freqn >> 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return 0;
264}
265
266/*
267 * prepare urb for high speed capture sync pipe
268 *
269 * fill the length and offset of each urb descriptor.
270 * the fixed 12.13 frequency is passed as 16.16 through the pipe.
271 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100272static int prepare_capture_sync_urb_hs(struct snd_usb_substream *subs,
273 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 struct urb *urb)
275{
276 unsigned char *cp = urb->transfer_buffer;
John Daiker88518272006-12-28 13:55:05 +0100277 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200280 urb->iso_frame_desc[0].length = 4;
281 urb->iso_frame_desc[0].offset = 0;
282 cp[0] = subs->freqn;
283 cp[1] = subs->freqn >> 8;
284 cp[2] = subs->freqn >> 16;
285 cp[3] = subs->freqn >> 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return 0;
287}
288
289/*
290 * process after capture sync complete
291 * - nothing to do
292 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100293static int retire_capture_sync_urb(struct snd_usb_substream *subs,
294 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 struct urb *urb)
296{
297 return 0;
298}
299
300/*
301 * prepare urb for capture data pipe
302 *
303 * fill the offset and length of each descriptor.
304 *
305 * we use a temporary buffer to write the captured data.
306 * since the length of written data is determined by host, we cannot
307 * write onto the pcm buffer directly... the data is thus copied
308 * later at complete callback to the global buffer.
309 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100310static int prepare_capture_urb(struct snd_usb_substream *subs,
311 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 struct urb *urb)
313{
314 int i, offs;
John Daiker88518272006-12-28 13:55:05 +0100315 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 offs = 0;
318 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 for (i = 0; i < ctx->packets; i++) {
320 urb->iso_frame_desc[i].offset = offs;
321 urb->iso_frame_desc[i].length = subs->curpacksize;
322 offs += subs->curpacksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 urb->transfer_buffer_length = offs;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200325 urb->number_of_packets = ctx->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return 0;
327}
328
329/*
330 * process after capture complete
331 *
332 * copy the data from each desctiptor to the pcm buffer, and
333 * update the current position.
334 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100335static int retire_capture_urb(struct snd_usb_substream *subs,
336 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 struct urb *urb)
338{
339 unsigned long flags;
340 unsigned char *cp;
341 int i;
342 unsigned int stride, len, oldptr;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200343 int period_elapsed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 stride = runtime->frame_bits >> 3;
346
347 for (i = 0; i < urb->number_of_packets; i++) {
348 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset;
349 if (urb->iso_frame_desc[i].status) {
350 snd_printd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status);
351 // continue;
352 }
353 len = urb->iso_frame_desc[i].actual_length / stride;
354 if (! len)
355 continue;
356 /* update the current pointer */
357 spin_lock_irqsave(&subs->lock, flags);
358 oldptr = subs->hwptr_done;
359 subs->hwptr_done += len;
360 if (subs->hwptr_done >= runtime->buffer_size)
361 subs->hwptr_done -= runtime->buffer_size;
362 subs->transfer_done += len;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200363 if (subs->transfer_done >= runtime->period_size) {
364 subs->transfer_done -= runtime->period_size;
365 period_elapsed = 1;
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 spin_unlock_irqrestore(&subs->lock, flags);
368 /* copy a data chunk */
369 if (oldptr + len > runtime->buffer_size) {
370 unsigned int cnt = runtime->buffer_size - oldptr;
371 unsigned int blen = cnt * stride;
372 memcpy(runtime->dma_area + oldptr * stride, cp, blen);
373 memcpy(runtime->dma_area, cp + blen, len * stride - blen);
374 } else {
375 memcpy(runtime->dma_area + oldptr * stride, cp, len * stride);
376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200378 if (period_elapsed)
379 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return 0;
381}
382
Clemens Ladische4f8e652006-10-04 13:42:57 +0200383/*
384 * Process after capture complete when paused. Nothing to do.
385 */
386static int retire_paused_capture_urb(struct snd_usb_substream *subs,
387 struct snd_pcm_runtime *runtime,
388 struct urb *urb)
389{
390 return 0;
391}
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394/*
395 * prepare urb for full speed playback sync pipe
396 *
397 * set up the offset and length to receive the current frequency.
398 */
399
Takashi Iwai86e07d32005-11-17 15:08:02 +0100400static int prepare_playback_sync_urb(struct snd_usb_substream *subs,
401 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 struct urb *urb)
403{
John Daiker88518272006-12-28 13:55:05 +0100404 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200407 urb->iso_frame_desc[0].length = 3;
408 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return 0;
410}
411
412/*
413 * prepare urb for high speed playback sync pipe
414 *
415 * set up the offset and length to receive the current frequency.
416 */
417
Takashi Iwai86e07d32005-11-17 15:08:02 +0100418static int prepare_playback_sync_urb_hs(struct snd_usb_substream *subs,
419 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 struct urb *urb)
421{
John Daiker88518272006-12-28 13:55:05 +0100422 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200425 urb->iso_frame_desc[0].length = 4;
426 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return 0;
428}
429
430/*
431 * process after full speed playback sync complete
432 *
433 * retrieve the current 10.14 frequency from pipe, and set it.
434 * the value is referred in prepare_playback_urb().
435 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100436static int retire_playback_sync_urb(struct snd_usb_substream *subs,
437 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 struct urb *urb)
439{
Clemens Ladischca810902005-05-02 08:55:54 +0200440 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 unsigned long flags;
442
Clemens Ladischca810902005-05-02 08:55:54 +0200443 if (urb->iso_frame_desc[0].status == 0 &&
444 urb->iso_frame_desc[0].actual_length == 3) {
445 f = combine_triple((u8*)urb->transfer_buffer) << 2;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200446 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
447 spin_lock_irqsave(&subs->lock, flags);
448 subs->freqm = f;
449 spin_unlock_irqrestore(&subs->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452
453 return 0;
454}
455
456/*
457 * process after high speed playback sync complete
458 *
459 * retrieve the current 12.13 frequency from pipe, and set it.
460 * the value is referred in prepare_playback_urb().
461 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100462static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs,
463 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct urb *urb)
465{
Clemens Ladischca810902005-05-02 08:55:54 +0200466 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 unsigned long flags;
468
Clemens Ladischca810902005-05-02 08:55:54 +0200469 if (urb->iso_frame_desc[0].status == 0 &&
470 urb->iso_frame_desc[0].actual_length == 4) {
471 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200472 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
473 spin_lock_irqsave(&subs->lock, flags);
474 subs->freqm = f;
475 spin_unlock_irqrestore(&subs->lock, flags);
476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
479 return 0;
480}
481
Clemens Ladischd5132022008-02-25 11:01:00 +0100482/*
483 * process after E-Mu 0202/0404 high speed playback sync complete
484 *
485 * These devices return the number of samples per packet instead of the number
486 * of samples per microframe.
487 */
488static int retire_playback_sync_urb_hs_emu(struct snd_usb_substream *subs,
489 struct snd_pcm_runtime *runtime,
490 struct urb *urb)
491{
492 unsigned int f;
493 unsigned long flags;
494
495 if (urb->iso_frame_desc[0].status == 0 &&
496 urb->iso_frame_desc[0].actual_length == 4) {
497 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
498 f >>= subs->datainterval;
499 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
500 spin_lock_irqsave(&subs->lock, flags);
501 subs->freqm = f;
502 spin_unlock_irqrestore(&subs->lock, flags);
503 }
504 }
505
506 return 0;
507}
508
Clemens Ladisch9568f462006-01-12 08:19:21 +0100509/* determine the number of frames in the next packet */
510static int snd_usb_audio_next_packet_size(struct snd_usb_substream *subs)
511{
512 if (subs->fill_max)
513 return subs->maxframesize;
514 else {
515 subs->phase = (subs->phase & 0xffff)
516 + (subs->freqm << subs->datainterval);
517 return min(subs->phase >> 16, subs->maxframesize);
518 }
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
Clemens Ladische4f8e652006-10-04 13:42:57 +0200522 * Prepare urb for streaming before playback starts or when paused.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100523 *
Clemens Ladische4f8e652006-10-04 13:42:57 +0200524 * We don't have any data, so we send a frame of silence.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100525 */
Clemens Ladische4f8e652006-10-04 13:42:57 +0200526static int prepare_nodata_playback_urb(struct snd_usb_substream *subs,
527 struct snd_pcm_runtime *runtime,
528 struct urb *urb)
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100529{
Clemens Ladisch4b284922006-01-12 08:17:49 +0100530 unsigned int i, offs, counts;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100531 struct snd_urb_ctx *ctx = urb->context;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100532 int stride = runtime->frame_bits >> 3;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100533
Clemens Ladisch4b284922006-01-12 08:17:49 +0100534 offs = 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100535 urb->dev = ctx->subs->dev;
536 urb->number_of_packets = subs->packs_per_ms;
537 for (i = 0; i < subs->packs_per_ms; ++i) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100538 counts = snd_usb_audio_next_packet_size(subs);
Clemens Ladisch4b284922006-01-12 08:17:49 +0100539 urb->iso_frame_desc[i].offset = offs * stride;
540 urb->iso_frame_desc[i].length = counts * stride;
541 offs += counts;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100542 }
Clemens Ladisch4b284922006-01-12 08:17:49 +0100543 urb->transfer_buffer_length = offs * stride;
544 memset(urb->transfer_buffer,
545 subs->cur_audiofmt->format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0,
546 offs * stride);
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100547 return 0;
548}
549
550/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 * prepare urb for playback data pipe
552 *
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200553 * Since a URB can handle only a single linear buffer, we must use double
554 * buffering when the data to be transferred overflows the buffer boundary.
555 * To avoid inconsistencies when updating hwptr_done, we use double buffering
556 * for all URBs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100558static int prepare_playback_urb(struct snd_usb_substream *subs,
559 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct urb *urb)
561{
562 int i, stride, offs;
563 unsigned int counts;
564 unsigned long flags;
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200565 int period_elapsed = 0;
John Daiker88518272006-12-28 13:55:05 +0100566 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 stride = runtime->frame_bits >> 3;
569
570 offs = 0;
571 urb->dev = ctx->subs->dev; /* we need to set this at each time */
572 urb->number_of_packets = 0;
573 spin_lock_irqsave(&subs->lock, flags);
574 for (i = 0; i < ctx->packets; i++) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100575 counts = snd_usb_audio_next_packet_size(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /* set up descriptor */
577 urb->iso_frame_desc[i].offset = offs * stride;
578 urb->iso_frame_desc[i].length = counts * stride;
579 offs += counts;
580 urb->number_of_packets++;
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200581 subs->transfer_done += counts;
582 if (subs->transfer_done >= runtime->period_size) {
583 subs->transfer_done -= runtime->period_size;
584 period_elapsed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (subs->fmt_type == USB_FORMAT_TYPE_II) {
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200586 if (subs->transfer_done > 0) {
587 /* FIXME: fill-max mode is not
588 * supported yet */
589 offs -= subs->transfer_done;
590 counts -= subs->transfer_done;
591 urb->iso_frame_desc[i].length =
592 counts * stride;
593 subs->transfer_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595 i++;
596 if (i < ctx->packets) {
597 /* add a transfer delimiter */
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200598 urb->iso_frame_desc[i].offset =
599 offs * stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 urb->iso_frame_desc[i].length = 0;
601 urb->number_of_packets++;
602 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200603 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200606 /* finish at the frame boundary at/after the period boundary */
607 if (period_elapsed &&
608 (i & (subs->packs_per_ms - 1)) == subs->packs_per_ms - 1)
609 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200611 if (subs->hwptr_done + offs > runtime->buffer_size) {
612 /* err, the transferred area goes over buffer boundary. */
613 unsigned int len = runtime->buffer_size - subs->hwptr_done;
614 memcpy(urb->transfer_buffer,
615 runtime->dma_area + subs->hwptr_done * stride,
616 len * stride);
617 memcpy(urb->transfer_buffer + len * stride,
618 runtime->dma_area,
619 (offs - len) * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 } else {
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200621 memcpy(urb->transfer_buffer,
622 runtime->dma_area + subs->hwptr_done * stride,
623 offs * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 }
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200625 subs->hwptr_done += offs;
626 if (subs->hwptr_done >= runtime->buffer_size)
627 subs->hwptr_done -= runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 spin_unlock_irqrestore(&subs->lock, flags);
629 urb->transfer_buffer_length = offs * stride;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100630 if (period_elapsed)
631 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return 0;
633}
634
635/*
636 * process after playback data complete
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200637 * - nothing to do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100639static int retire_playback_urb(struct snd_usb_substream *subs,
640 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 struct urb *urb)
642{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return 0;
644}
645
646
647/*
648 */
649static struct snd_urb_ops audio_urb_ops[2] = {
650 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200651 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 .retire = retire_playback_urb,
653 .prepare_sync = prepare_playback_sync_urb,
654 .retire_sync = retire_playback_sync_urb,
655 },
656 {
657 .prepare = prepare_capture_urb,
658 .retire = retire_capture_urb,
659 .prepare_sync = prepare_capture_sync_urb,
660 .retire_sync = retire_capture_sync_urb,
661 },
662};
663
664static struct snd_urb_ops audio_urb_ops_high_speed[2] = {
665 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200666 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 .retire = retire_playback_urb,
668 .prepare_sync = prepare_playback_sync_urb_hs,
669 .retire_sync = retire_playback_sync_urb_hs,
670 },
671 {
672 .prepare = prepare_capture_urb,
673 .retire = retire_capture_urb,
674 .prepare_sync = prepare_capture_sync_urb_hs,
675 .retire_sync = retire_capture_sync_urb,
676 },
677};
678
679/*
680 * complete callback from data urb
681 */
David Howells7d12e782006-10-05 14:55:46 +0100682static void snd_complete_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
John Daiker88518272006-12-28 13:55:05 +0100684 struct snd_urb_ctx *ctx = urb->context;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100685 struct snd_usb_substream *subs = ctx->subs;
686 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 int err = 0;
688
689 if ((subs->running && subs->ops.retire(subs, substream->runtime, urb)) ||
690 ! subs->running || /* can be stopped during retire callback */
691 (err = subs->ops.prepare(subs, substream->runtime, urb)) < 0 ||
692 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
693 clear_bit(ctx->index, &subs->active_mask);
694 if (err < 0) {
695 snd_printd(KERN_ERR "cannot submit urb (err = %d)\n", err);
696 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
697 }
698 }
699}
700
701
702/*
703 * complete callback from sync urb
704 */
David Howells7d12e782006-10-05 14:55:46 +0100705static void snd_complete_sync_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
John Daiker88518272006-12-28 13:55:05 +0100707 struct snd_urb_ctx *ctx = urb->context;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100708 struct snd_usb_substream *subs = ctx->subs;
709 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 int err = 0;
711
712 if ((subs->running && subs->ops.retire_sync(subs, substream->runtime, urb)) ||
713 ! subs->running || /* can be stopped during retire callback */
714 (err = subs->ops.prepare_sync(subs, substream->runtime, urb)) < 0 ||
715 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
716 clear_bit(ctx->index + 16, &subs->active_mask);
717 if (err < 0) {
718 snd_printd(KERN_ERR "cannot submit sync urb (err = %d)\n", err);
719 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
720 }
721 }
722}
723
724
Clemens Ladisch6207e512005-08-15 08:35:25 +0200725/* get the physical page pointer at the given offset */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100726static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
Clemens Ladisch6207e512005-08-15 08:35:25 +0200727 unsigned long offset)
728{
729 void *pageptr = subs->runtime->dma_area + offset;
730 return vmalloc_to_page(pageptr);
731}
732
733/* allocate virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100734static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs, size_t size)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200735{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100736 struct snd_pcm_runtime *runtime = subs->runtime;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200737 if (runtime->dma_area) {
738 if (runtime->dma_bytes >= size)
739 return 0; /* already large enough */
Takashi Iwaib1d57762005-10-10 11:56:31 +0200740 vfree(runtime->dma_area);
Clemens Ladisch6207e512005-08-15 08:35:25 +0200741 }
Takashi Iwaib1d57762005-10-10 11:56:31 +0200742 runtime->dma_area = vmalloc(size);
Clemens Ladisch6207e512005-08-15 08:35:25 +0200743 if (! runtime->dma_area)
744 return -ENOMEM;
745 runtime->dma_bytes = size;
746 return 0;
747}
748
749/* free virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100750static int snd_pcm_free_vmalloc_buffer(struct snd_pcm_substream *subs)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200751{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100752 struct snd_pcm_runtime *runtime = subs->runtime;
Jesper Juhl9c4be3d2006-02-09 20:04:16 +0100753
754 vfree(runtime->dma_area);
755 runtime->dma_area = NULL;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200756 return 0;
757}
758
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/*
761 * unlink active urbs.
762 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100763static int deactivate_urbs(struct snd_usb_substream *subs, int force, int can_sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
765 unsigned int i;
766 int async;
767
768 subs->running = 0;
769
770 if (!force && subs->stream->chip->shutdown) /* to be sure... */
771 return -EBADFD;
772
773 async = !can_sleep && async_unlink;
774
775 if (! async && in_interrupt())
776 return 0;
777
778 for (i = 0; i < subs->nurbs; i++) {
779 if (test_bit(i, &subs->active_mask)) {
780 if (! test_and_set_bit(i, &subs->unlink_mask)) {
781 struct urb *u = subs->dataurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400782 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400784 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 usb_kill_urb(u);
786 }
787 }
788 }
789 if (subs->syncpipe) {
790 for (i = 0; i < SYNC_URBS; i++) {
791 if (test_bit(i+16, &subs->active_mask)) {
792 if (! test_and_set_bit(i+16, &subs->unlink_mask)) {
793 struct urb *u = subs->syncurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400794 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400796 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 usb_kill_urb(u);
798 }
799 }
800 }
801 }
802 return 0;
803}
804
805
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100806static const char *usb_error_string(int err)
807{
808 switch (err) {
809 case -ENODEV:
810 return "no device";
811 case -ENOENT:
812 return "endpoint not enabled";
813 case -EPIPE:
814 return "endpoint stalled";
815 case -ENOSPC:
816 return "not enough bandwidth";
817 case -ESHUTDOWN:
818 return "device disabled";
819 case -EHOSTUNREACH:
820 return "device suspended";
Clemens Ladisch3e964432006-03-14 08:06:12 +0100821#ifndef CONFIG_USB_EHCI_SPLIT_ISO
822 case -ENOSYS:
823 return "enable CONFIG_USB_EHCI_SPLIT_ISO to play through a hub";
824#endif
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100825 case -EINVAL:
826 case -EAGAIN:
827 case -EFBIG:
828 case -EMSGSIZE:
829 return "internal error";
830 default:
831 return "unknown error";
832 }
833}
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835/*
836 * set up and start data/sync urbs
837 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100838static int start_urbs(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 unsigned int i;
841 int err;
842
843 if (subs->stream->chip->shutdown)
844 return -EBADFD;
845
846 for (i = 0; i < subs->nurbs; i++) {
847 snd_assert(subs->dataurb[i].urb, return -EINVAL);
848 if (subs->ops.prepare(subs, runtime, subs->dataurb[i].urb) < 0) {
849 snd_printk(KERN_ERR "cannot prepare datapipe for urb %d\n", i);
850 goto __error;
851 }
852 }
853 if (subs->syncpipe) {
854 for (i = 0; i < SYNC_URBS; i++) {
855 snd_assert(subs->syncurb[i].urb, return -EINVAL);
856 if (subs->ops.prepare_sync(subs, runtime, subs->syncurb[i].urb) < 0) {
857 snd_printk(KERN_ERR "cannot prepare syncpipe for urb %d\n", i);
858 goto __error;
859 }
860 }
861 }
862
863 subs->active_mask = 0;
864 subs->unlink_mask = 0;
865 subs->running = 1;
866 for (i = 0; i < subs->nurbs; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100867 err = usb_submit_urb(subs->dataurb[i].urb, GFP_ATOMIC);
868 if (err < 0) {
869 snd_printk(KERN_ERR "cannot submit datapipe "
870 "for urb %d, error %d: %s\n",
871 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 goto __error;
873 }
874 set_bit(i, &subs->active_mask);
875 }
876 if (subs->syncpipe) {
877 for (i = 0; i < SYNC_URBS; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100878 err = usb_submit_urb(subs->syncurb[i].urb, GFP_ATOMIC);
879 if (err < 0) {
880 snd_printk(KERN_ERR "cannot submit syncpipe "
881 "for urb %d, error %d: %s\n",
882 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 goto __error;
884 }
885 set_bit(i + 16, &subs->active_mask);
886 }
887 }
888 return 0;
889
890 __error:
891 // snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
892 deactivate_urbs(subs, 0, 0);
893 return -EPIPE;
894}
895
896
897/*
898 * wait until all urbs are processed.
899 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100900static int wait_clear_urbs(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200902 unsigned long end_time = jiffies + msecs_to_jiffies(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 unsigned int i;
904 int alive;
905
906 do {
907 alive = 0;
908 for (i = 0; i < subs->nurbs; i++) {
909 if (test_bit(i, &subs->active_mask))
910 alive++;
911 }
912 if (subs->syncpipe) {
913 for (i = 0; i < SYNC_URBS; i++) {
914 if (test_bit(i + 16, &subs->active_mask))
915 alive++;
916 }
917 }
918 if (! alive)
919 break;
Nishanth Aravamudan8433a502005-10-24 15:02:37 +0200920 schedule_timeout_uninterruptible(1);
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200921 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (alive)
923 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
924 return 0;
925}
926
927
928/*
929 * return the current pcm pointer. just return the hwptr_done value.
930 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100931static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100933 struct snd_usb_substream *subs;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200934 snd_pcm_uframes_t hwptr_done;
935
Takashi Iwai86e07d32005-11-17 15:08:02 +0100936 subs = (struct snd_usb_substream *)substream->runtime->private_data;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200937 spin_lock(&subs->lock);
938 hwptr_done = subs->hwptr_done;
939 spin_unlock(&subs->lock);
940 return hwptr_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
943
944/*
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100945 * start/stop playback substream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100947static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100948 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100950 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 switch (cmd) {
953 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200954 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100955 subs->ops.prepare = prepare_playback_urb;
956 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 case SNDRV_PCM_TRIGGER_STOP:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100958 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200959 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
960 subs->ops.prepare = prepare_nodata_playback_urb;
961 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 default:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100963 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100965}
966
967/*
968 * start/stop capture substream
969 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100970static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100971 int cmd)
972{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100973 struct snd_usb_substream *subs = substream->runtime->private_data;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100974
975 switch (cmd) {
976 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200977 subs->ops.retire = retire_capture_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100978 return start_urbs(subs, substream->runtime);
979 case SNDRV_PCM_TRIGGER_STOP:
980 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200981 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
982 subs->ops.retire = retire_paused_capture_urb;
983 return 0;
984 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
985 subs->ops.retire = retire_capture_urb;
986 return 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100987 default:
988 return -EINVAL;
989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
992
993/*
994 * release a urb data
995 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100996static void release_urb_ctx(struct snd_urb_ctx *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
998 if (u->urb) {
Clemens Ladisch55851f72005-08-15 08:34:16 +0200999 if (u->buffer_size)
1000 usb_buffer_free(u->subs->dev, u->buffer_size,
1001 u->urb->transfer_buffer,
1002 u->urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 usb_free_urb(u->urb);
1004 u->urb = NULL;
1005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
1008/*
1009 * release a substream
1010 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001011static void release_substream_urbs(struct snd_usb_substream *subs, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 int i;
1014
1015 /* stop urbs (to be sure) */
1016 deactivate_urbs(subs, force, 1);
1017 wait_clear_urbs(subs);
1018
1019 for (i = 0; i < MAX_URBS; i++)
1020 release_urb_ctx(&subs->dataurb[i]);
1021 for (i = 0; i < SYNC_URBS; i++)
1022 release_urb_ctx(&subs->syncurb[i]);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001023 usb_buffer_free(subs->dev, SYNC_URBS * 4,
1024 subs->syncbuf, subs->sync_dma);
1025 subs->syncbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 subs->nurbs = 0;
1027}
1028
1029/*
1030 * initialize a substream for plaback/capture
1031 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001032static int init_substream_urbs(struct snd_usb_substream *subs, unsigned int period_bytes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 unsigned int rate, unsigned int frame_bits)
1034{
1035 unsigned int maxsize, n, i;
1036 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001037 unsigned int npacks[MAX_URBS], urb_packs, total_packs, packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 /* calculate the frequency in 16.16 format */
1040 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
1041 subs->freqn = get_usb_full_speed_rate(rate);
1042 else
1043 subs->freqn = get_usb_high_speed_rate(rate);
1044 subs->freqm = subs->freqn;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001045 /* calculate max. frequency */
1046 if (subs->maxpacksize) {
1047 /* whatever fits into a max. size packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 maxsize = subs->maxpacksize;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001049 subs->freqmax = (maxsize / (frame_bits >> 3))
1050 << (16 - subs->datainterval);
1051 } else {
1052 /* no max. packet size: just take 25% higher than nominal */
1053 subs->freqmax = subs->freqn + (subs->freqn >> 2);
1054 maxsize = ((subs->freqmax + 0xffff) * (frame_bits >> 3))
1055 >> (16 - subs->datainterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
Clemens Ladisch573567e2005-06-27 08:17:30 +02001057 subs->phase = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 if (subs->fill_max)
1060 subs->curpacksize = subs->maxpacksize;
1061 else
1062 subs->curpacksize = maxsize;
1063
Clemens Ladischa93bf992005-08-12 15:19:39 +02001064 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
1065 packs_per_ms = 8 >> subs->datainterval;
1066 else
1067 packs_per_ms = 1;
Clemens Ladisch9624ea82005-08-15 08:25:24 +02001068 subs->packs_per_ms = packs_per_ms;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001069
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001070 if (is_playback) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 urb_packs = nrpacks;
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001072 urb_packs = max(urb_packs, (unsigned int)MIN_PACKS_URB);
1073 urb_packs = min(urb_packs, (unsigned int)MAX_PACKS);
1074 } else
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001075 urb_packs = 1;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001076 urb_packs *= packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 /* decide how many packets to be used */
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001079 if (is_playback) {
Clemens Ladischd6db3922005-08-12 08:28:27 +02001080 unsigned int minsize;
1081 /* determine how small a packet can be */
1082 minsize = (subs->freqn >> (16 - subs->datainterval))
1083 * (frame_bits >> 3);
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +02001084 /* with sync from device, assume it can be 12% lower */
Clemens Ladischd6db3922005-08-12 08:28:27 +02001085 if (subs->syncpipe)
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +02001086 minsize -= minsize >> 3;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001087 minsize = max(minsize, 1u);
1088 total_packs = (period_bytes + minsize - 1) / minsize;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001089 /* round up to multiple of packs_per_ms */
1090 total_packs = (total_packs + packs_per_ms - 1)
1091 & ~(packs_per_ms - 1);
1092 /* we need at least two URBs for queueing */
1093 if (total_packs < 2 * MIN_PACKS_URB * packs_per_ms)
1094 total_packs = 2 * MIN_PACKS_URB * packs_per_ms;
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001095 } else {
1096 total_packs = MAX_URBS * urb_packs;
1097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 subs->nurbs = (total_packs + urb_packs - 1) / urb_packs;
1099 if (subs->nurbs > MAX_URBS) {
1100 /* too much... */
1101 subs->nurbs = MAX_URBS;
1102 total_packs = MAX_URBS * urb_packs;
1103 }
1104 n = total_packs;
1105 for (i = 0; i < subs->nurbs; i++) {
1106 npacks[i] = n > urb_packs ? urb_packs : n;
1107 n -= urb_packs;
1108 }
1109 if (subs->nurbs <= 1) {
1110 /* too little - we need at least two packets
1111 * to ensure contiguous playback/capture
1112 */
1113 subs->nurbs = 2;
1114 npacks[0] = (total_packs + 1) / 2;
1115 npacks[1] = total_packs - npacks[0];
Clemens Ladischa93bf992005-08-12 15:19:39 +02001116 } else if (npacks[subs->nurbs-1] < MIN_PACKS_URB * packs_per_ms) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 /* the last packet is too small.. */
1118 if (subs->nurbs > 2) {
1119 /* merge to the first one */
1120 npacks[0] += npacks[subs->nurbs - 1];
1121 subs->nurbs--;
1122 } else {
1123 /* divide to two */
1124 subs->nurbs = 2;
1125 npacks[0] = (total_packs + 1) / 2;
1126 npacks[1] = total_packs - npacks[0];
1127 }
1128 }
1129
1130 /* allocate and initialize data urbs */
1131 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001132 struct snd_urb_ctx *u = &subs->dataurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 u->index = i;
1134 u->subs = subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 u->packets = npacks[i];
Clemens Ladisch55851f72005-08-15 08:34:16 +02001136 u->buffer_size = maxsize * u->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (subs->fmt_type == USB_FORMAT_TYPE_II)
1138 u->packets++; /* for transfer delimiter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001140 if (! u->urb)
1141 goto out_of_memory;
1142 u->urb->transfer_buffer =
1143 usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL,
1144 &u->urb->transfer_dma);
1145 if (! u->urb->transfer_buffer)
1146 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 u->urb->pipe = subs->datapipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001148 u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001149 u->urb->interval = 1 << subs->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001151 u->urb->complete = snd_complete_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153
1154 if (subs->syncpipe) {
1155 /* allocate and initialize sync urbs */
Clemens Ladisch55851f72005-08-15 08:34:16 +02001156 subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4,
1157 GFP_KERNEL, &subs->sync_dma);
1158 if (! subs->syncbuf)
1159 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001161 struct snd_urb_ctx *u = &subs->syncurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 u->index = i;
1163 u->subs = subs;
Clemens Ladischca810902005-05-02 08:55:54 +02001164 u->packets = 1;
1165 u->urb = usb_alloc_urb(1, GFP_KERNEL);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001166 if (! u->urb)
1167 goto out_of_memory;
Clemens Ladischca810902005-05-02 08:55:54 +02001168 u->urb->transfer_buffer = subs->syncbuf + i * 4;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001169 u->urb->transfer_dma = subs->sync_dma + i * 4;
Clemens Ladischca810902005-05-02 08:55:54 +02001170 u->urb->transfer_buffer_length = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 u->urb->pipe = subs->syncpipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001172 u->urb->transfer_flags = URB_ISO_ASAP |
1173 URB_NO_TRANSFER_DMA_MAP;
Clemens Ladischca810902005-05-02 08:55:54 +02001174 u->urb->number_of_packets = 1;
Clemens Ladisch1149a642005-05-02 08:53:46 +02001175 u->urb->interval = 1 << subs->syncinterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001177 u->urb->complete = snd_complete_sync_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179 }
1180 return 0;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001181
1182out_of_memory:
1183 release_substream_urbs(subs, 0);
1184 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186
1187
1188/*
1189 * find a matching audio format
1190 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001191static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 unsigned int rate, unsigned int channels)
1193{
1194 struct list_head *p;
1195 struct audioformat *found = NULL;
1196 int cur_attr = 0, attr;
1197
1198 list_for_each(p, &subs->fmt_list) {
1199 struct audioformat *fp;
1200 fp = list_entry(p, struct audioformat, list);
1201 if (fp->format != format || fp->channels != channels)
1202 continue;
1203 if (rate < fp->rate_min || rate > fp->rate_max)
1204 continue;
1205 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
1206 unsigned int i;
1207 for (i = 0; i < fp->nr_rates; i++)
1208 if (fp->rate_table[i] == rate)
1209 break;
1210 if (i >= fp->nr_rates)
1211 continue;
1212 }
1213 attr = fp->ep_attr & EP_ATTR_MASK;
1214 if (! found) {
1215 found = fp;
1216 cur_attr = attr;
1217 continue;
1218 }
1219 /* avoid async out and adaptive in if the other method
1220 * supports the same format.
1221 * this is a workaround for the case like
1222 * M-audio audiophile USB.
1223 */
1224 if (attr != cur_attr) {
1225 if ((attr == EP_ATTR_ASYNC &&
1226 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1227 (attr == EP_ATTR_ADAPTIVE &&
1228 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
1229 continue;
1230 if ((cur_attr == EP_ATTR_ASYNC &&
1231 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1232 (cur_attr == EP_ATTR_ADAPTIVE &&
1233 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
1234 found = fp;
1235 cur_attr = attr;
1236 continue;
1237 }
1238 }
1239 /* find the format with the largest max. packet size */
1240 if (fp->maxpacksize > found->maxpacksize) {
1241 found = fp;
1242 cur_attr = attr;
1243 }
1244 }
1245 return found;
1246}
1247
1248
1249/*
1250 * initialize the picth control and sample rate
1251 */
1252static int init_usb_pitch(struct usb_device *dev, int iface,
1253 struct usb_host_interface *alts,
1254 struct audioformat *fmt)
1255{
1256 unsigned int ep;
1257 unsigned char data[1];
1258 int err;
1259
1260 ep = get_endpoint(alts, 0)->bEndpointAddress;
1261 /* if endpoint has pitch control, enable it */
1262 if (fmt->attributes & EP_CS_ATTR_PITCH_CONTROL) {
1263 data[0] = 1;
1264 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1265 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1266 PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) {
1267 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
1268 dev->devnum, iface, ep);
1269 return err;
1270 }
1271 }
1272 return 0;
1273}
1274
1275static int init_usb_sample_rate(struct usb_device *dev, int iface,
1276 struct usb_host_interface *alts,
1277 struct audioformat *fmt, int rate)
1278{
1279 unsigned int ep;
1280 unsigned char data[3];
1281 int err;
1282
1283 ep = get_endpoint(alts, 0)->bEndpointAddress;
1284 /* if endpoint has sampling rate control, set it */
1285 if (fmt->attributes & EP_CS_ATTR_SAMPLE_RATE) {
1286 int crate;
1287 data[0] = rate;
1288 data[1] = rate >> 8;
1289 data[2] = rate >> 16;
1290 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1291 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1292 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
1293 snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep 0x%x\n",
1294 dev->devnum, iface, fmt->altsetting, rate, ep);
1295 return err;
1296 }
1297 if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), GET_CUR,
1298 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN,
1299 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
1300 snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep 0x%x\n",
1301 dev->devnum, iface, fmt->altsetting, ep);
1302 return 0; /* some devices don't support reading */
1303 }
1304 crate = data[0] | (data[1] << 8) | (data[2] << 16);
1305 if (crate != rate) {
1306 snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate);
1307 // runtime->rate = crate;
1308 }
1309 }
1310 return 0;
1311}
1312
1313/*
1314 * find a matching format and set up the interface
1315 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001316static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
1318 struct usb_device *dev = subs->dev;
1319 struct usb_host_interface *alts;
1320 struct usb_interface_descriptor *altsd;
1321 struct usb_interface *iface;
1322 unsigned int ep, attr;
1323 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
1324 int err;
1325
1326 iface = usb_ifnum_to_if(dev, fmt->iface);
1327 snd_assert(iface, return -EINVAL);
1328 alts = &iface->altsetting[fmt->altset_idx];
1329 altsd = get_iface_desc(alts);
1330 snd_assert(altsd->bAlternateSetting == fmt->altsetting, return -EINVAL);
1331
1332 if (fmt == subs->cur_audiofmt)
1333 return 0;
1334
1335 /* close the old interface */
1336 if (subs->interface >= 0 && subs->interface != fmt->iface) {
Oliver Neukum5149fe2c2007-08-31 12:15:27 +02001337 if (usb_set_interface(subs->dev, subs->interface, 0) < 0) {
1338 snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed\n",
1339 dev->devnum, fmt->iface, fmt->altsetting);
1340 return -EIO;
1341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 subs->interface = -1;
1343 subs->format = 0;
1344 }
1345
1346 /* set interface */
1347 if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) {
1348 if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) {
1349 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n",
1350 dev->devnum, fmt->iface, fmt->altsetting);
1351 return -EIO;
1352 }
1353 snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting);
1354 subs->interface = fmt->iface;
1355 subs->format = fmt->altset_idx;
1356 }
1357
1358 /* create a data pipe */
1359 ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK;
1360 if (is_playback)
1361 subs->datapipe = usb_sndisocpipe(dev, ep);
1362 else
1363 subs->datapipe = usb_rcvisocpipe(dev, ep);
Clemens Ladisch573567e2005-06-27 08:17:30 +02001364 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH &&
1365 get_endpoint(alts, 0)->bInterval >= 1 &&
1366 get_endpoint(alts, 0)->bInterval <= 4)
1367 subs->datainterval = get_endpoint(alts, 0)->bInterval - 1;
1368 else
1369 subs->datainterval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 subs->syncpipe = subs->syncinterval = 0;
1371 subs->maxpacksize = fmt->maxpacksize;
1372 subs->fill_max = 0;
1373
1374 /* we need a sync pipe in async OUT or adaptive IN mode */
1375 /* check the number of EP, since some devices have broken
1376 * descriptors which fool us. if it has only one EP,
1377 * assume it as adaptive-out or sync-in.
1378 */
1379 attr = fmt->ep_attr & EP_ATTR_MASK;
1380 if (((is_playback && attr == EP_ATTR_ASYNC) ||
1381 (! is_playback && attr == EP_ATTR_ADAPTIVE)) &&
1382 altsd->bNumEndpoints >= 2) {
1383 /* check sync-pipe endpoint */
1384 /* ... and check descriptor size before accessing bSynchAddress
1385 because there is a version of the SB Audigy 2 NX firmware lacking
1386 the audio fields in the endpoint descriptors */
1387 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
1388 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1389 get_endpoint(alts, 1)->bSynchAddress != 0)) {
1390 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1391 dev->devnum, fmt->iface, fmt->altsetting);
1392 return -EINVAL;
1393 }
1394 ep = get_endpoint(alts, 1)->bEndpointAddress;
1395 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1396 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
1397 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
1398 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1399 dev->devnum, fmt->iface, fmt->altsetting);
1400 return -EINVAL;
1401 }
1402 ep &= USB_ENDPOINT_NUMBER_MASK;
1403 if (is_playback)
1404 subs->syncpipe = usb_rcvisocpipe(dev, ep);
1405 else
1406 subs->syncpipe = usb_sndisocpipe(dev, ep);
Clemens Ladisch1149a642005-05-02 08:53:46 +02001407 if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1408 get_endpoint(alts, 1)->bRefresh >= 1 &&
1409 get_endpoint(alts, 1)->bRefresh <= 9)
1410 subs->syncinterval = get_endpoint(alts, 1)->bRefresh;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001411 else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
Clemens Ladisch1149a642005-05-02 08:53:46 +02001412 subs->syncinterval = 1;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001413 else if (get_endpoint(alts, 1)->bInterval >= 1 &&
1414 get_endpoint(alts, 1)->bInterval <= 16)
1415 subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
1416 else
1417 subs->syncinterval = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419
1420 /* always fill max packet size */
1421 if (fmt->attributes & EP_CS_ATTR_FILL_MAX)
1422 subs->fill_max = 1;
1423
1424 if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0)
1425 return err;
1426
1427 subs->cur_audiofmt = fmt;
1428
1429#if 0
1430 printk("setting done: format = %d, rate = %d, channels = %d\n",
1431 fmt->format, fmt->rate, fmt->channels);
1432 printk(" datapipe = 0x%0x, syncpipe = 0x%0x\n",
1433 subs->datapipe, subs->syncpipe);
1434#endif
1435
1436 return 0;
1437}
1438
1439/*
1440 * hw_params callback
1441 *
1442 * allocate a buffer and set the given audio format.
1443 *
1444 * so far we use a physically linear buffer although packetize transfer
1445 * doesn't need a continuous area.
1446 * if sg buffer is supported on the later version of alsa, we'll follow
1447 * that.
1448 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001449static int snd_usb_hw_params(struct snd_pcm_substream *substream,
1450 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
John Daiker88518272006-12-28 13:55:05 +01001452 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 struct audioformat *fmt;
1454 unsigned int channels, rate, format;
1455 int ret, changed;
1456
Clemens Ladisch6207e512005-08-15 08:35:25 +02001457 ret = snd_pcm_alloc_vmalloc_buffer(substream,
1458 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (ret < 0)
1460 return ret;
1461
1462 format = params_format(hw_params);
1463 rate = params_rate(hw_params);
1464 channels = params_channels(hw_params);
1465 fmt = find_format(subs, format, rate, channels);
1466 if (! fmt) {
Jaroslav Kysela21a34792006-01-13 09:12:11 +01001467 snd_printd(KERN_DEBUG "cannot set format: format = 0x%x, rate = %d, channels = %d\n",
1468 format, rate, channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return -EINVAL;
1470 }
1471
1472 changed = subs->cur_audiofmt != fmt ||
1473 subs->period_bytes != params_period_bytes(hw_params) ||
1474 subs->cur_rate != rate;
1475 if ((ret = set_format(subs, fmt)) < 0)
1476 return ret;
1477
1478 if (subs->cur_rate != rate) {
1479 struct usb_host_interface *alts;
1480 struct usb_interface *iface;
1481 iface = usb_ifnum_to_if(subs->dev, fmt->iface);
1482 alts = &iface->altsetting[fmt->altset_idx];
1483 ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate);
1484 if (ret < 0)
1485 return ret;
1486 subs->cur_rate = rate;
1487 }
1488
1489 if (changed) {
1490 /* format changed */
1491 release_substream_urbs(subs, 0);
1492 /* influenced: period_bytes, channels, rate, format, */
1493 ret = init_substream_urbs(subs, params_period_bytes(hw_params),
1494 params_rate(hw_params),
1495 snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params));
1496 }
1497
1498 return ret;
1499}
1500
1501/*
1502 * hw_free callback
1503 *
1504 * reset the audio format and release the buffer
1505 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001506static int snd_usb_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
John Daiker88518272006-12-28 13:55:05 +01001508 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510 subs->cur_audiofmt = NULL;
1511 subs->cur_rate = 0;
1512 subs->period_bytes = 0;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001513 if (!subs->stream->chip->shutdown)
1514 release_substream_urbs(subs, 0);
Clemens Ladisch6207e512005-08-15 08:35:25 +02001515 return snd_pcm_free_vmalloc_buffer(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
1518/*
1519 * prepare callback
1520 *
1521 * only a few subtle things...
1522 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001523static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001525 struct snd_pcm_runtime *runtime = substream->runtime;
1526 struct snd_usb_substream *subs = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 if (! subs->cur_audiofmt) {
1529 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
1530 return -ENXIO;
1531 }
1532
1533 /* some unit conversions in runtime */
1534 subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize);
1535 subs->curframesize = bytes_to_frames(runtime, subs->curpacksize);
1536
1537 /* reset the pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 subs->hwptr_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 subs->transfer_done = 0;
1540 subs->phase = 0;
1541
1542 /* clear urbs (to be sure) */
1543 deactivate_urbs(subs, 0, 1);
1544 wait_clear_urbs(subs);
1545
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001546 /* for playback, submit the URBs now; otherwise, the first hwptr_done
1547 * updates for all URBs would happen at the same time when starting */
1548 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
Clemens Ladische4f8e652006-10-04 13:42:57 +02001549 subs->ops.prepare = prepare_nodata_playback_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001550 return start_urbs(subs, runtime);
1551 } else
1552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
1554
Clemens Ladisch1700f302006-10-04 13:41:25 +02001555static struct snd_pcm_hardware snd_usb_hardware =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Clemens Ladisch49045d32005-09-05 10:31:05 +02001557 .info = SNDRV_PCM_INFO_MMAP |
1558 SNDRV_PCM_INFO_MMAP_VALID |
1559 SNDRV_PCM_INFO_BATCH |
1560 SNDRV_PCM_INFO_INTERLEAVED |
Clemens Ladische4f8e652006-10-04 13:42:57 +02001561 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1562 SNDRV_PCM_INFO_PAUSE,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001563 .buffer_bytes_max = 1024 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 .period_bytes_min = 64,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001565 .period_bytes_max = 512 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 .periods_min = 2,
1567 .periods_max = 1024,
1568};
1569
1570/*
1571 * h/w constraints
1572 */
1573
1574#ifdef HW_CONST_DEBUG
1575#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
1576#else
1577#define hwc_debug(fmt, args...) /**/
1578#endif
1579
Takashi Iwai86e07d32005-11-17 15:08:02 +01001580static int hw_check_valid_format(struct snd_pcm_hw_params *params, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001582 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1583 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
1584 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 /* check the format */
1587 if (! snd_mask_test(fmts, fp->format)) {
1588 hwc_debug(" > check: no supported format %d\n", fp->format);
1589 return 0;
1590 }
1591 /* check the channels */
1592 if (fp->channels < ct->min || fp->channels > ct->max) {
1593 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
1594 return 0;
1595 }
1596 /* check the rate is within the range */
1597 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
1598 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
1599 return 0;
1600 }
1601 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
1602 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
1603 return 0;
1604 }
1605 return 1;
1606}
1607
Takashi Iwai86e07d32005-11-17 15:08:02 +01001608static int hw_rule_rate(struct snd_pcm_hw_params *params,
1609 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001611 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001613 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 unsigned int rmin, rmax;
1615 int changed;
1616
1617 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
1618 changed = 0;
1619 rmin = rmax = 0;
1620 list_for_each(p, &subs->fmt_list) {
1621 struct audioformat *fp;
1622 fp = list_entry(p, struct audioformat, list);
1623 if (! hw_check_valid_format(params, fp))
1624 continue;
1625 if (changed++) {
1626 if (rmin > fp->rate_min)
1627 rmin = fp->rate_min;
1628 if (rmax < fp->rate_max)
1629 rmax = fp->rate_max;
1630 } else {
1631 rmin = fp->rate_min;
1632 rmax = fp->rate_max;
1633 }
1634 }
1635
1636 if (! changed) {
1637 hwc_debug(" --> get empty\n");
1638 it->empty = 1;
1639 return -EINVAL;
1640 }
1641
1642 changed = 0;
1643 if (it->min < rmin) {
1644 it->min = rmin;
1645 it->openmin = 0;
1646 changed = 1;
1647 }
1648 if (it->max > rmax) {
1649 it->max = rmax;
1650 it->openmax = 0;
1651 changed = 1;
1652 }
1653 if (snd_interval_checkempty(it)) {
1654 it->empty = 1;
1655 return -EINVAL;
1656 }
1657 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1658 return changed;
1659}
1660
1661
Takashi Iwai86e07d32005-11-17 15:08:02 +01001662static int hw_rule_channels(struct snd_pcm_hw_params *params,
1663 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001665 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001667 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 unsigned int rmin, rmax;
1669 int changed;
1670
1671 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
1672 changed = 0;
1673 rmin = rmax = 0;
1674 list_for_each(p, &subs->fmt_list) {
1675 struct audioformat *fp;
1676 fp = list_entry(p, struct audioformat, list);
1677 if (! hw_check_valid_format(params, fp))
1678 continue;
1679 if (changed++) {
1680 if (rmin > fp->channels)
1681 rmin = fp->channels;
1682 if (rmax < fp->channels)
1683 rmax = fp->channels;
1684 } else {
1685 rmin = fp->channels;
1686 rmax = fp->channels;
1687 }
1688 }
1689
1690 if (! changed) {
1691 hwc_debug(" --> get empty\n");
1692 it->empty = 1;
1693 return -EINVAL;
1694 }
1695
1696 changed = 0;
1697 if (it->min < rmin) {
1698 it->min = rmin;
1699 it->openmin = 0;
1700 changed = 1;
1701 }
1702 if (it->max > rmax) {
1703 it->max = rmax;
1704 it->openmax = 0;
1705 changed = 1;
1706 }
1707 if (snd_interval_checkempty(it)) {
1708 it->empty = 1;
1709 return -EINVAL;
1710 }
1711 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1712 return changed;
1713}
1714
Takashi Iwai86e07d32005-11-17 15:08:02 +01001715static int hw_rule_format(struct snd_pcm_hw_params *params,
1716 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001718 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001720 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 u64 fbits;
1722 u32 oldbits[2];
1723 int changed;
1724
1725 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1726 fbits = 0;
1727 list_for_each(p, &subs->fmt_list) {
1728 struct audioformat *fp;
1729 fp = list_entry(p, struct audioformat, list);
1730 if (! hw_check_valid_format(params, fp))
1731 continue;
1732 fbits |= (1ULL << fp->format);
1733 }
1734
1735 oldbits[0] = fmt->bits[0];
1736 oldbits[1] = fmt->bits[1];
1737 fmt->bits[0] &= (u32)fbits;
1738 fmt->bits[1] &= (u32)(fbits >> 32);
1739 if (! fmt->bits[0] && ! fmt->bits[1]) {
1740 hwc_debug(" --> get empty\n");
1741 return -EINVAL;
1742 }
1743 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1744 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1745 return changed;
1746}
1747
1748#define MAX_MASK 64
1749
1750/*
1751 * check whether the registered audio formats need special hw-constraints
1752 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001753static int check_hw_params_convention(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
1755 int i;
1756 u32 *channels;
1757 u32 *rates;
1758 u32 cmaster, rmaster;
1759 u32 rate_min = 0, rate_max = 0;
1760 struct list_head *p;
1761 int err = 1;
1762
1763 channels = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
1764 rates = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
Takashi Iwai5a220c82008-03-17 09:59:32 +01001765 if (!channels || !rates) {
1766 err = -ENOMEM;
Jim Meyeringff17e952008-03-04 15:25:11 -08001767 goto __out;
Takashi Iwai5a220c82008-03-17 09:59:32 +01001768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 list_for_each(p, &subs->fmt_list) {
1771 struct audioformat *f;
1772 f = list_entry(p, struct audioformat, list);
1773 /* unconventional channels? */
1774 if (f->channels > 32)
1775 goto __out;
1776 /* continuous rate min/max matches? */
1777 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1778 if (rate_min && f->rate_min != rate_min)
1779 goto __out;
1780 if (rate_max && f->rate_max != rate_max)
1781 goto __out;
1782 rate_min = f->rate_min;
1783 rate_max = f->rate_max;
1784 }
1785 /* combination of continuous rates and fixed rates? */
1786 if (rates[f->format] & SNDRV_PCM_RATE_CONTINUOUS) {
1787 if (f->rates != rates[f->format])
1788 goto __out;
1789 }
1790 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1791 if (rates[f->format] && rates[f->format] != f->rates)
1792 goto __out;
1793 }
1794 channels[f->format] |= (1 << f->channels);
1795 rates[f->format] |= f->rates;
Luke Rossa79eee82006-08-29 10:46:32 +02001796 /* needs knot? */
Clemens Ladisch918f3a02007-08-13 17:40:54 +02001797 if (f->rates & SNDRV_PCM_RATE_KNOT)
Luke Rossa79eee82006-08-29 10:46:32 +02001798 goto __out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 }
1800 /* check whether channels and rates match for all formats */
1801 cmaster = rmaster = 0;
1802 for (i = 0; i < MAX_MASK; i++) {
1803 if (cmaster != channels[i] && cmaster && channels[i])
1804 goto __out;
1805 if (rmaster != rates[i] && rmaster && rates[i])
1806 goto __out;
1807 if (channels[i])
1808 cmaster = channels[i];
1809 if (rates[i])
1810 rmaster = rates[i];
1811 }
1812 /* check whether channels match for all distinct rates */
1813 memset(channels, 0, MAX_MASK * sizeof(u32));
1814 list_for_each(p, &subs->fmt_list) {
1815 struct audioformat *f;
1816 f = list_entry(p, struct audioformat, list);
1817 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS)
1818 continue;
1819 for (i = 0; i < 32; i++) {
1820 if (f->rates & (1 << i))
1821 channels[i] |= (1 << f->channels);
1822 }
1823 }
1824 cmaster = 0;
1825 for (i = 0; i < 32; i++) {
1826 if (cmaster != channels[i] && cmaster && channels[i])
1827 goto __out;
1828 if (channels[i])
1829 cmaster = channels[i];
1830 }
1831 err = 0;
1832
1833 __out:
1834 kfree(channels);
1835 kfree(rates);
1836 return err;
1837}
1838
Luke Rossa79eee82006-08-29 10:46:32 +02001839/*
1840 * If the device supports unusual bit rates, does the request meet these?
1841 */
1842static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1843 struct snd_usb_substream *subs)
1844{
Takashi Iwai8fec5602007-02-01 11:50:56 +01001845 struct audioformat *fp;
1846 int count = 0, needs_knot = 0;
Luke Rossa79eee82006-08-29 10:46:32 +02001847 int err;
1848
Takashi Iwai8fec5602007-02-01 11:50:56 +01001849 list_for_each_entry(fp, &subs->fmt_list, list) {
1850 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
1851 return 0;
1852 count += fp->nr_rates;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02001853 if (fp->rates & SNDRV_PCM_RATE_KNOT)
Takashi Iwai8fec5602007-02-01 11:50:56 +01001854 needs_knot = 1;
Luke Rossa79eee82006-08-29 10:46:32 +02001855 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01001856 if (!needs_knot)
1857 return 0;
1858
1859 subs->rate_list.count = count;
1860 subs->rate_list.list = kmalloc(sizeof(int) * count, GFP_KERNEL);
1861 subs->rate_list.mask = 0;
1862 count = 0;
1863 list_for_each_entry(fp, &subs->fmt_list, list) {
1864 int i;
1865 for (i = 0; i < fp->nr_rates; i++)
1866 subs->rate_list.list[count++] = fp->rate_table[i];
1867 }
1868 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1869 &subs->rate_list);
1870 if (err < 0)
1871 return err;
Luke Rossa79eee82006-08-29 10:46:32 +02001872
1873 return 0;
1874}
1875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877/*
1878 * set up the runtime hardware information.
1879 */
1880
Takashi Iwai86e07d32005-11-17 15:08:02 +01001881static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
1883 struct list_head *p;
1884 int err;
1885
1886 runtime->hw.formats = subs->formats;
1887
1888 runtime->hw.rate_min = 0x7fffffff;
1889 runtime->hw.rate_max = 0;
1890 runtime->hw.channels_min = 256;
1891 runtime->hw.channels_max = 0;
1892 runtime->hw.rates = 0;
1893 /* check min/max rates and channels */
1894 list_for_each(p, &subs->fmt_list) {
1895 struct audioformat *fp;
1896 fp = list_entry(p, struct audioformat, list);
1897 runtime->hw.rates |= fp->rates;
1898 if (runtime->hw.rate_min > fp->rate_min)
1899 runtime->hw.rate_min = fp->rate_min;
1900 if (runtime->hw.rate_max < fp->rate_max)
1901 runtime->hw.rate_max = fp->rate_max;
1902 if (runtime->hw.channels_min > fp->channels)
1903 runtime->hw.channels_min = fp->channels;
1904 if (runtime->hw.channels_max < fp->channels)
1905 runtime->hw.channels_max = fp->channels;
1906 if (fp->fmt_type == USB_FORMAT_TYPE_II && fp->frame_size > 0) {
1907 /* FIXME: there might be more than one audio formats... */
1908 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1909 fp->frame_size;
1910 }
1911 }
1912
1913 /* set the period time minimum 1ms */
Takashi Iwai81c48992007-05-03 12:26:14 +02001914 /* FIXME: high-speed mode allows 125us minimum period, but many parts
1915 * in the current code assume the 1ms period.
1916 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
Takashi Iwai81c48992007-05-03 12:26:14 +02001918 1000 * MIN_PACKS_URB,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 /*(nrpacks * MAX_URBS) * 1000*/ UINT_MAX);
1920
Takashi Iwai5a220c82008-03-17 09:59:32 +01001921 err = check_hw_params_convention(subs);
1922 if (err < 0)
1923 return err;
1924 else if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 hwc_debug("setting extra hw constraints...\n");
1926 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1927 hw_rule_rate, subs,
1928 SNDRV_PCM_HW_PARAM_FORMAT,
1929 SNDRV_PCM_HW_PARAM_CHANNELS,
1930 -1)) < 0)
1931 return err;
1932 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1933 hw_rule_channels, subs,
1934 SNDRV_PCM_HW_PARAM_FORMAT,
1935 SNDRV_PCM_HW_PARAM_RATE,
1936 -1)) < 0)
1937 return err;
1938 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1939 hw_rule_format, subs,
1940 SNDRV_PCM_HW_PARAM_RATE,
1941 SNDRV_PCM_HW_PARAM_CHANNELS,
1942 -1)) < 0)
1943 return err;
Luke Rossa79eee82006-08-29 10:46:32 +02001944 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
1945 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
1947 return 0;
1948}
1949
Clemens Ladisch1700f302006-10-04 13:41:25 +02001950static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001952 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1953 struct snd_pcm_runtime *runtime = substream->runtime;
1954 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 subs->interface = -1;
1957 subs->format = 0;
Clemens Ladisch1700f302006-10-04 13:41:25 +02001958 runtime->hw = snd_usb_hardware;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 runtime->private_data = subs;
1960 subs->pcm_substream = substream;
1961 return setup_hw_info(runtime, subs);
1962}
1963
Takashi Iwai86e07d32005-11-17 15:08:02 +01001964static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001966 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1967 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 if (subs->interface >= 0) {
1970 usb_set_interface(subs->dev, subs->interface, 0);
1971 subs->interface = -1;
1972 }
1973 subs->pcm_substream = NULL;
1974 return 0;
1975}
1976
Takashi Iwai86e07d32005-11-17 15:08:02 +01001977static int snd_usb_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001979 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980}
1981
Takashi Iwai86e07d32005-11-17 15:08:02 +01001982static int snd_usb_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1985}
1986
Takashi Iwai86e07d32005-11-17 15:08:02 +01001987static int snd_usb_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001989 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990}
1991
Takashi Iwai86e07d32005-11-17 15:08:02 +01001992static int snd_usb_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1995}
1996
Takashi Iwai86e07d32005-11-17 15:08:02 +01001997static struct snd_pcm_ops snd_usb_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 .open = snd_usb_playback_open,
1999 .close = snd_usb_playback_close,
2000 .ioctl = snd_pcm_lib_ioctl,
2001 .hw_params = snd_usb_hw_params,
2002 .hw_free = snd_usb_hw_free,
2003 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01002004 .trigger = snd_usb_pcm_playback_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02002006 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007};
2008
Takashi Iwai86e07d32005-11-17 15:08:02 +01002009static struct snd_pcm_ops snd_usb_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 .open = snd_usb_capture_open,
2011 .close = snd_usb_capture_close,
2012 .ioctl = snd_pcm_lib_ioctl,
2013 .hw_params = snd_usb_hw_params,
2014 .hw_free = snd_usb_hw_free,
2015 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01002016 .trigger = snd_usb_pcm_capture_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02002018 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019};
2020
2021
2022
2023/*
2024 * helper functions
2025 */
2026
2027/*
2028 * combine bytes and get an integer value
2029 */
2030unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size)
2031{
2032 switch (size) {
2033 case 1: return *bytes;
2034 case 2: return combine_word(bytes);
2035 case 3: return combine_triple(bytes);
2036 case 4: return combine_quad(bytes);
2037 default: return 0;
2038 }
2039}
2040
2041/*
2042 * parse descriptor buffer and return the pointer starting the given
2043 * descriptor type.
2044 */
2045void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype)
2046{
2047 u8 *p, *end, *next;
2048
2049 p = descstart;
2050 end = p + desclen;
2051 for (; p < end;) {
2052 if (p[0] < 2)
2053 return NULL;
2054 next = p + p[0];
2055 if (next > end)
2056 return NULL;
2057 if (p[1] == dtype && (!after || (void *)p > after)) {
2058 return p;
2059 }
2060 p = next;
2061 }
2062 return NULL;
2063}
2064
2065/*
2066 * find a class-specified interface descriptor with the given subtype.
2067 */
2068void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype)
2069{
2070 unsigned char *p = after;
2071
2072 while ((p = snd_usb_find_desc(buffer, buflen, p,
2073 USB_DT_CS_INTERFACE)) != NULL) {
2074 if (p[0] >= 3 && p[2] == dsubtype)
2075 return p;
2076 }
2077 return NULL;
2078}
2079
2080/*
2081 * Wrapper for usb_control_msg().
2082 * Allocates a temp buffer to prevent dmaing from/to the stack.
2083 */
2084int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
2085 __u8 requesttype, __u16 value, __u16 index, void *data,
2086 __u16 size, int timeout)
2087{
2088 int err;
2089 void *buf = NULL;
2090
2091 if (size > 0) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002092 buf = kmemdup(data, size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 if (!buf)
2094 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 }
2096 err = usb_control_msg(dev, pipe, request, requesttype,
2097 value, index, buf, size, timeout);
2098 if (size > 0) {
2099 memcpy(data, buf, size);
2100 kfree(buf);
2101 }
2102 return err;
2103}
2104
2105
2106/*
2107 * entry point for linux usb interface
2108 */
2109
2110static int usb_audio_probe(struct usb_interface *intf,
2111 const struct usb_device_id *id);
2112static void usb_audio_disconnect(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002113
2114#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01002115static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message);
2116static int usb_audio_resume(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002117#else
2118#define usb_audio_suspend NULL
2119#define usb_audio_resume NULL
2120#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122static struct usb_device_id usb_audio_ids [] = {
2123#include "usbquirks.h"
2124 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
2125 .bInterfaceClass = USB_CLASS_AUDIO,
2126 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL },
2127 { } /* Terminating entry */
2128};
2129
2130MODULE_DEVICE_TABLE (usb, usb_audio_ids);
2131
2132static struct usb_driver usb_audio_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 .name = "snd-usb-audio",
2134 .probe = usb_audio_probe,
2135 .disconnect = usb_audio_disconnect,
Oliver Neukumf85bf292007-12-14 14:42:41 +01002136 .suspend = usb_audio_suspend,
2137 .resume = usb_audio_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 .id_table = usb_audio_ids,
2139};
2140
2141
Takashi Iwai727f3172006-08-04 19:08:03 +02002142#if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS)
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144/*
2145 * proc interface for list the supported pcm formats
2146 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002147static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
2149 struct list_head *p;
2150 static char *sync_types[4] = {
2151 "NONE", "ASYNC", "ADAPTIVE", "SYNC"
2152 };
2153
2154 list_for_each(p, &subs->fmt_list) {
2155 struct audioformat *fp;
2156 fp = list_entry(p, struct audioformat, list);
2157 snd_iprintf(buffer, " Interface %d\n", fp->iface);
2158 snd_iprintf(buffer, " Altset %d\n", fp->altsetting);
Jaroslav Kysela3f72a302006-01-18 11:50:40 +01002159 snd_iprintf(buffer, " Format: 0x%x\n", fp->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 snd_iprintf(buffer, " Channels: %d\n", fp->channels);
2161 snd_iprintf(buffer, " Endpoint: %d %s (%s)\n",
2162 fp->endpoint & USB_ENDPOINT_NUMBER_MASK,
2163 fp->endpoint & USB_DIR_IN ? "IN" : "OUT",
2164 sync_types[(fp->ep_attr & EP_ATTR_MASK) >> 2]);
2165 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) {
2166 snd_iprintf(buffer, " Rates: %d - %d (continuous)\n",
2167 fp->rate_min, fp->rate_max);
2168 } else {
2169 unsigned int i;
2170 snd_iprintf(buffer, " Rates: ");
2171 for (i = 0; i < fp->nr_rates; i++) {
2172 if (i > 0)
2173 snd_iprintf(buffer, ", ");
2174 snd_iprintf(buffer, "%d", fp->rate_table[i]);
2175 }
2176 snd_iprintf(buffer, "\n");
2177 }
2178 // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize);
2179 // snd_iprintf(buffer, " EP Attribute = 0x%x\n", fp->attributes);
2180 }
2181}
2182
Takashi Iwai86e07d32005-11-17 15:08:02 +01002183static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
2185 if (subs->running) {
2186 unsigned int i;
2187 snd_iprintf(buffer, " Status: Running\n");
2188 snd_iprintf(buffer, " Interface = %d\n", subs->interface);
2189 snd_iprintf(buffer, " Altset = %d\n", subs->format);
2190 snd_iprintf(buffer, " URBs = %d [ ", subs->nurbs);
2191 for (i = 0; i < subs->nurbs; i++)
2192 snd_iprintf(buffer, "%d ", subs->dataurb[i].packets);
2193 snd_iprintf(buffer, "]\n");
2194 snd_iprintf(buffer, " Packet Size = %d\n", subs->curpacksize);
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002195 snd_iprintf(buffer, " Momentary freq = %u Hz (%#x.%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 snd_usb_get_speed(subs->dev) == USB_SPEED_FULL
2197 ? get_full_speed_hz(subs->freqm)
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002198 : get_high_speed_hz(subs->freqm),
2199 subs->freqm >> 16, subs->freqm & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 } else {
2201 snd_iprintf(buffer, " Status: Stop\n");
2202 }
2203}
2204
Takashi Iwai86e07d32005-11-17 15:08:02 +01002205static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002207 struct snd_usb_stream *stream = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209 snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name);
2210
2211 if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) {
2212 snd_iprintf(buffer, "\nPlayback:\n");
2213 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2214 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2215 }
2216 if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) {
2217 snd_iprintf(buffer, "\nCapture:\n");
2218 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2219 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2220 }
2221}
2222
Takashi Iwai86e07d32005-11-17 15:08:02 +01002223static void proc_pcm_format_add(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002225 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 char name[32];
Takashi Iwai86e07d32005-11-17 15:08:02 +01002227 struct snd_card *card = stream->chip->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229 sprintf(name, "stream%d", stream->pcm_index);
2230 if (! snd_card_proc_new(card, name, &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002231 snd_info_set_text_ops(entry, stream, proc_pcm_format_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232}
2233
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002234#else
2235
2236static inline void proc_pcm_format_add(struct snd_usb_stream *stream)
2237{
2238}
2239
2240#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242/*
2243 * initialize the substream instance.
2244 */
2245
Takashi Iwai86e07d32005-11-17 15:08:02 +01002246static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002248 struct snd_usb_substream *subs = &as->substream[stream];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
2250 INIT_LIST_HEAD(&subs->fmt_list);
2251 spin_lock_init(&subs->lock);
2252
2253 subs->stream = as;
2254 subs->direction = stream;
2255 subs->dev = as->chip->dev;
Clemens Ladischd5132022008-02-25 11:01:00 +01002256 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 subs->ops = audio_urb_ops[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002258 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 subs->ops = audio_urb_ops_high_speed[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002260 switch (as->chip->usb_id) {
2261 case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
2262 case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
2263 subs->ops.retire_sync = retire_playback_sync_urb_hs_emu;
2264 break;
2265 }
2266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 snd_pcm_set_ops(as->pcm, stream,
2268 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2269 &snd_usb_playback_ops : &snd_usb_capture_ops);
2270
2271 list_add_tail(&fp->list, &subs->fmt_list);
2272 subs->formats |= 1ULL << fp->format;
2273 subs->endpoint = fp->endpoint;
2274 subs->num_formats++;
2275 subs->fmt_type = fp->fmt_type;
2276}
2277
2278
2279/*
2280 * free a substream
2281 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002282static void free_substream(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283{
2284 struct list_head *p, *n;
2285
2286 if (! subs->num_formats)
2287 return; /* not initialized */
2288 list_for_each_safe(p, n, &subs->fmt_list) {
2289 struct audioformat *fp = list_entry(p, struct audioformat, list);
2290 kfree(fp->rate_table);
2291 kfree(fp);
2292 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01002293 kfree(subs->rate_list.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294}
2295
2296
2297/*
2298 * free a usb stream instance
2299 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002300static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301{
2302 free_substream(&stream->substream[0]);
2303 free_substream(&stream->substream[1]);
2304 list_del(&stream->list);
2305 kfree(stream);
2306}
2307
Takashi Iwai86e07d32005-11-17 15:08:02 +01002308static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002310 struct snd_usb_stream *stream = pcm->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (stream) {
2312 stream->pcm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 snd_usb_audio_stream_free(stream);
2314 }
2315}
2316
2317
2318/*
2319 * add this endpoint to the chip instance.
2320 * if a stream with the same endpoint already exists, append to it.
2321 * if not, create a new pcm stream.
2322 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002323static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324{
2325 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002326 struct snd_usb_stream *as;
2327 struct snd_usb_substream *subs;
2328 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 int err;
2330
2331 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002332 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 if (as->fmt_type != fp->fmt_type)
2334 continue;
2335 subs = &as->substream[stream];
2336 if (! subs->endpoint)
2337 continue;
2338 if (subs->endpoint == fp->endpoint) {
2339 list_add_tail(&fp->list, &subs->fmt_list);
2340 subs->num_formats++;
2341 subs->formats |= 1ULL << fp->format;
2342 return 0;
2343 }
2344 }
2345 /* look for an empty stream */
2346 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002347 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 if (as->fmt_type != fp->fmt_type)
2349 continue;
2350 subs = &as->substream[stream];
2351 if (subs->endpoint)
2352 continue;
2353 err = snd_pcm_new_stream(as->pcm, stream, 1);
2354 if (err < 0)
2355 return err;
2356 init_substream(as, stream, fp);
2357 return 0;
2358 }
2359
2360 /* create a new pcm */
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002361 as = kzalloc(sizeof(*as), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 if (! as)
2363 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 as->pcm_index = chip->pcm_devs;
2365 as->chip = chip;
2366 as->fmt_type = fp->fmt_type;
2367 err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
2368 stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
2369 stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
2370 &pcm);
2371 if (err < 0) {
2372 kfree(as);
2373 return err;
2374 }
2375 as->pcm = pcm;
2376 pcm->private_data = as;
2377 pcm->private_free = snd_usb_audio_pcm_free;
2378 pcm->info_flags = 0;
2379 if (chip->pcm_devs > 0)
2380 sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
2381 else
2382 strcpy(pcm->name, "USB Audio");
2383
2384 init_substream(as, stream, fp);
2385
2386 list_add(&as->list, &chip->pcm_list);
2387 chip->pcm_devs++;
2388
2389 proc_pcm_format_add(as);
2390
2391 return 0;
2392}
2393
2394
2395/*
2396 * check if the device uses big-endian samples
2397 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002398static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399{
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002400 switch (chip->usb_id) {
2401 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
2402 if (fp->endpoint & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 return 1;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002404 break;
2405 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02002406 if (device_setup[chip->index] == 0x00 ||
2407 fp->altsetting==1 || fp->altsetting==2 || fp->altsetting==3)
2408 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 }
2410 return 0;
2411}
2412
2413/*
2414 * parse the audio format type I descriptor
2415 * and returns the corresponding pcm format
2416 *
2417 * @dev: usb device
2418 * @fp: audioformat record
2419 * @format: the format tag (wFormatTag)
2420 * @fmt: the format type descriptor
2421 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002422static int parse_audio_format_i_type(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 int format, unsigned char *fmt)
2424{
2425 int pcm_format;
2426 int sample_width, sample_bytes;
2427
2428 /* FIXME: correct endianess and sign? */
2429 pcm_format = -1;
2430 sample_width = fmt[6];
2431 sample_bytes = fmt[5];
2432 switch (format) {
2433 case 0: /* some devices don't define this correctly... */
2434 snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002435 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 /* fall-through */
2437 case USB_AUDIO_FORMAT_PCM:
2438 if (sample_width > sample_bytes * 8) {
2439 snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002440 chip->dev->devnum, fp->iface, fp->altsetting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 sample_width, sample_bytes);
2442 }
2443 /* check the format byte size */
2444 switch (fmt[5]) {
2445 case 1:
2446 pcm_format = SNDRV_PCM_FORMAT_S8;
2447 break;
2448 case 2:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002449 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 pcm_format = SNDRV_PCM_FORMAT_S16_BE; /* grrr, big endian!! */
2451 else
2452 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2453 break;
2454 case 3:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002455 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */
2457 else
2458 pcm_format = SNDRV_PCM_FORMAT_S24_3LE;
2459 break;
2460 case 4:
2461 pcm_format = SNDRV_PCM_FORMAT_S32_LE;
2462 break;
2463 default:
2464 snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002465 chip->dev->devnum, fp->iface,
2466 fp->altsetting, sample_width, sample_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 break;
2468 }
2469 break;
2470 case USB_AUDIO_FORMAT_PCM8:
2471 /* Dallas DS4201 workaround */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002472 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 pcm_format = SNDRV_PCM_FORMAT_S8;
2474 else
2475 pcm_format = SNDRV_PCM_FORMAT_U8;
2476 break;
2477 case USB_AUDIO_FORMAT_IEEE_FLOAT:
2478 pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE;
2479 break;
2480 case USB_AUDIO_FORMAT_ALAW:
2481 pcm_format = SNDRV_PCM_FORMAT_A_LAW;
2482 break;
2483 case USB_AUDIO_FORMAT_MU_LAW:
2484 pcm_format = SNDRV_PCM_FORMAT_MU_LAW;
2485 break;
2486 default:
2487 snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002488 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 break;
2490 }
2491 return pcm_format;
2492}
2493
2494
2495/*
2496 * parse the format descriptor and stores the possible sample rates
2497 * on the audioformat table.
2498 *
2499 * @dev: usb device
2500 * @fp: audioformat record
2501 * @fmt: the format descriptor
2502 * @offset: the start offset of descriptor pointing the rate type
2503 * (7 for type I and II, 8 for type II)
2504 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002505static int parse_audio_format_rates(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 unsigned char *fmt, int offset)
2507{
2508 int nr_rates = fmt[offset];
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002509
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
2511 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002512 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 return -1;
2514 }
2515
2516 if (nr_rates) {
2517 /*
2518 * build the rate table and bitmap flags
2519 */
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002520 int r, idx;
Gregor Jasnybeb60112007-01-31 12:27:39 +01002521 unsigned int nonzero_rates = 0;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
2524 if (fp->rate_table == NULL) {
2525 snd_printk(KERN_ERR "cannot malloc\n");
2526 return -1;
2527 }
2528
2529 fp->nr_rates = nr_rates;
2530 fp->rate_min = fp->rate_max = combine_triple(&fmt[8]);
2531 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
Clemens Ladisch987411b2006-11-20 14:14:39 +01002532 unsigned int rate = combine_triple(&fmt[idx]);
2533 /* C-Media CM6501 mislabels its 96 kHz altsetting */
2534 if (rate == 48000 && nr_rates == 1 &&
2535 chip->usb_id == USB_ID(0x0d8c, 0x0201) &&
2536 fp->altsetting == 5 && fp->maxpacksize == 392)
2537 rate = 96000;
2538 fp->rate_table[r] = rate;
Gregor Jasnybeb60112007-01-31 12:27:39 +01002539 nonzero_rates |= rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 if (rate < fp->rate_min)
2541 fp->rate_min = rate;
2542 else if (rate > fp->rate_max)
2543 fp->rate_max = rate;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002544 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 }
Gregor Jasnybeb60112007-01-31 12:27:39 +01002546 if (!nonzero_rates) {
2547 hwc_debug("All rates were zero. Skipping format!\n");
2548 return -1;
2549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 } else {
2551 /* continuous rates */
2552 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
2553 fp->rate_min = combine_triple(&fmt[offset + 1]);
2554 fp->rate_max = combine_triple(&fmt[offset + 4]);
2555 }
2556 return 0;
2557}
2558
2559/*
2560 * parse the format type I and III descriptors
2561 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002562static int parse_audio_format_i(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 int format, unsigned char *fmt)
2564{
2565 int pcm_format;
2566
2567 if (fmt[3] == USB_FORMAT_TYPE_III) {
2568 /* FIXME: the format type is really IECxxx
2569 * but we give normal PCM format to get the existing
2570 * apps working...
2571 */
Thibault Le Meurcac19c32007-07-13 11:50:23 +02002572 switch (chip->usb_id) {
2573
2574 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2575 if (device_setup[chip->index] == 0x00 &&
2576 fp->altsetting == 6)
2577 pcm_format = SNDRV_PCM_FORMAT_S16_BE;
2578 else
2579 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2580 break;
2581 default:
2582 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 } else {
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002585 pcm_format = parse_audio_format_i_type(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 if (pcm_format < 0)
2587 return -1;
2588 }
2589 fp->format = pcm_format;
2590 fp->channels = fmt[4];
2591 if (fp->channels < 1) {
2592 snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002593 chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 return -1;
2595 }
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002596 return parse_audio_format_rates(chip, fp, fmt, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597}
2598
2599/*
2600 * prase the format type II descriptor
2601 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002602static int parse_audio_format_ii(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 int format, unsigned char *fmt)
2604{
2605 int brate, framesize;
2606 switch (format) {
2607 case USB_AUDIO_FORMAT_AC3:
2608 /* FIXME: there is no AC3 format defined yet */
2609 // fp->format = SNDRV_PCM_FORMAT_AC3;
2610 fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */
2611 break;
2612 case USB_AUDIO_FORMAT_MPEG:
2613 fp->format = SNDRV_PCM_FORMAT_MPEG;
2614 break;
2615 default:
2616 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 +02002617 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 fp->format = SNDRV_PCM_FORMAT_MPEG;
2619 break;
2620 }
2621 fp->channels = 1;
2622 brate = combine_word(&fmt[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */
2623 framesize = combine_word(&fmt[6]); /* fmt[6,7]: wSamplesPerFrame */
2624 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
2625 fp->frame_size = framesize;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002626 return parse_audio_format_rates(chip, fp, fmt, 8); /* fmt[8..] sample rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627}
2628
Takashi Iwai86e07d32005-11-17 15:08:02 +01002629static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 int format, unsigned char *fmt, int stream)
2631{
2632 int err;
2633
2634 switch (fmt[3]) {
2635 case USB_FORMAT_TYPE_I:
2636 case USB_FORMAT_TYPE_III:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002637 err = parse_audio_format_i(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 break;
2639 case USB_FORMAT_TYPE_II:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002640 err = parse_audio_format_ii(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 break;
2642 default:
2643 snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002644 chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 return -1;
2646 }
2647 fp->fmt_type = fmt[3];
2648 if (err < 0)
2649 return err;
2650#if 1
Clemens Ladisch33159372006-01-13 08:11:22 +01002651 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 /* extigy apparently supports sample rates other than 48k
2653 * but not in ordinary way. so we enable only 48k atm.
2654 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002655 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
Clemens Ladisch33159372006-01-13 08:11:22 +01002656 chip->usb_id == USB_ID(0x041e, 0x3020) ||
2657 chip->usb_id == USB_ID(0x041e, 0x3061)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 if (fmt[3] == USB_FORMAT_TYPE_I &&
Clemens Ladisch8c1872d2005-04-28 09:31:53 +02002659 fp->rates != SNDRV_PCM_RATE_48000 &&
2660 fp->rates != SNDRV_PCM_RATE_96000)
Clemens Ladischb4d3f9d2005-06-27 08:18:27 +02002661 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 }
2663#endif
2664 return 0;
2665}
2666
Thibault LE MEURe3113342006-03-14 11:44:53 +01002667static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
2668 int iface, int altno);
Takashi Iwai86e07d32005-11-17 15:08:02 +01002669static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
2671 struct usb_device *dev;
2672 struct usb_interface *iface;
2673 struct usb_host_interface *alts;
2674 struct usb_interface_descriptor *altsd;
2675 int i, altno, err, stream;
2676 int format;
2677 struct audioformat *fp;
2678 unsigned char *fmt, *csep;
2679
2680 dev = chip->dev;
2681
2682 /* parse the interface's altsettings */
2683 iface = usb_ifnum_to_if(dev, iface_no);
2684 for (i = 0; i < iface->num_altsetting; i++) {
2685 alts = &iface->altsetting[i];
2686 altsd = get_iface_desc(alts);
2687 /* skip invalid one */
2688 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2689 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2690 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING &&
2691 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
2692 altsd->bNumEndpoints < 1 ||
2693 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
2694 continue;
2695 /* must be isochronous */
2696 if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
2697 USB_ENDPOINT_XFER_ISOC)
2698 continue;
2699 /* check direction */
2700 stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
2701 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2702 altno = altsd->bAlternateSetting;
Thibault LE MEURe3113342006-03-14 11:44:53 +01002703
2704 /* audiophile usb: skip altsets incompatible with device_setup
2705 */
2706 if (chip->usb_id == USB_ID(0x0763, 0x2003) &&
2707 audiophile_skip_setting_quirk(chip, iface_no, altno))
2708 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
2710 /* get audio formats */
2711 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, AS_GENERAL);
2712 if (!fmt) {
2713 snd_printk(KERN_ERR "%d:%u:%d : AS_GENERAL descriptor not found\n",
2714 dev->devnum, iface_no, altno);
2715 continue;
2716 }
2717
2718 if (fmt[0] < 7) {
2719 snd_printk(KERN_ERR "%d:%u:%d : invalid AS_GENERAL desc\n",
2720 dev->devnum, iface_no, altno);
2721 continue;
2722 }
2723
2724 format = (fmt[6] << 8) | fmt[5]; /* remember the format value */
2725
2726 /* get format type */
2727 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, FORMAT_TYPE);
2728 if (!fmt) {
2729 snd_printk(KERN_ERR "%d:%u:%d : no FORMAT_TYPE desc\n",
2730 dev->devnum, iface_no, altno);
2731 continue;
2732 }
2733 if (fmt[0] < 8) {
2734 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
2735 dev->devnum, iface_no, altno);
2736 continue;
2737 }
2738
2739 csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
2740 /* Creamware Noah has this descriptor after the 2nd endpoint */
2741 if (!csep && altsd->bNumEndpoints >= 2)
2742 csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
2743 if (!csep || csep[0] < 7 || csep[2] != EP_GENERAL) {
Takashi Iwaif8c75792006-05-18 14:47:03 +02002744 snd_printk(KERN_WARNING "%d:%u:%d : no or invalid"
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002745 " class specific endpoint descriptor\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 dev->devnum, iface_no, altno);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002747 csep = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 }
2749
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002750 fp = kzalloc(sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 if (! fp) {
2752 snd_printk(KERN_ERR "cannot malloc\n");
2753 return -ENOMEM;
2754 }
2755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 fp->iface = iface_no;
2757 fp->altsetting = altno;
2758 fp->altset_idx = i;
2759 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2760 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Clemens Ladisch573567e2005-06-27 08:17:30 +02002762 if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
2763 fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
2764 * (fp->maxpacksize & 0x7ff);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002765 fp->attributes = csep ? csep[3] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
2767 /* some quirks for attributes here */
2768
Clemens Ladischc3f93292005-05-04 14:56:04 +02002769 switch (chip->usb_id) {
2770 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 /* Optoplay sets the sample rate attribute although
2772 * it seems not supporting it in fact.
2773 */
2774 fp->attributes &= ~EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002775 break;
2776 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
2777 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 /* doesn't set the sample rate attribute, but supports it */
2779 fp->attributes |= EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002780 break;
2781 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
2782 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
2783 an older model 77d:223) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 /*
2785 * plantronics headset and Griffin iMic have set adaptive-in
2786 * although it's really not...
2787 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 fp->ep_attr &= ~EP_ATTR_MASK;
2789 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2790 fp->ep_attr |= EP_ATTR_ADAPTIVE;
2791 else
2792 fp->ep_attr |= EP_ATTR_SYNC;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002793 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 }
2795
2796 /* ok, let's parse further... */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002797 if (parse_audio_format(chip, fp, format, fmt, stream) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 kfree(fp->rate_table);
2799 kfree(fp);
2800 continue;
2801 }
2802
Thibault LE MEURe3113342006-03-14 11:44:53 +01002803 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 -07002804 err = add_audio_endpoint(chip, stream, fp);
2805 if (err < 0) {
2806 kfree(fp->rate_table);
2807 kfree(fp);
2808 return err;
2809 }
2810 /* try to set the interface... */
2811 usb_set_interface(chip->dev, iface_no, altno);
2812 init_usb_pitch(chip->dev, iface_no, alts, fp);
2813 init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max);
2814 }
2815 return 0;
2816}
2817
2818
2819/*
2820 * disconnect streams
2821 * called from snd_usb_audio_disconnect()
2822 */
Clemens Ladischee733392005-04-25 10:34:13 +02002823static void snd_usb_stream_disconnect(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824{
2825 int idx;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002826 struct snd_usb_stream *as;
2827 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Takashi Iwai86e07d32005-11-17 15:08:02 +01002829 as = list_entry(head, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 for (idx = 0; idx < 2; idx++) {
2831 subs = &as->substream[idx];
2832 if (!subs->num_formats)
2833 return;
2834 release_substream_urbs(subs, 1);
2835 subs->interface = -1;
2836 }
2837}
2838
2839/*
2840 * parse audio control descriptor and create pcm/midi streams
2841 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002842static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843{
2844 struct usb_device *dev = chip->dev;
2845 struct usb_host_interface *host_iface;
2846 struct usb_interface *iface;
2847 unsigned char *p1;
2848 int i, j;
2849
2850 /* find audiocontrol interface */
2851 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
2852 if (!(p1 = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen, NULL, HEADER))) {
2853 snd_printk(KERN_ERR "cannot find HEADER\n");
2854 return -EINVAL;
2855 }
2856 if (! p1[7] || p1[0] < 8 + p1[7]) {
2857 snd_printk(KERN_ERR "invalid HEADER\n");
2858 return -EINVAL;
2859 }
2860
2861 /*
2862 * parse all USB audio streaming interfaces
2863 */
2864 for (i = 0; i < p1[7]; i++) {
2865 struct usb_host_interface *alts;
2866 struct usb_interface_descriptor *altsd;
2867 j = p1[8 + i];
2868 iface = usb_ifnum_to_if(dev, j);
2869 if (!iface) {
2870 snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
2871 dev->devnum, ctrlif, j);
2872 continue;
2873 }
2874 if (usb_interface_claimed(iface)) {
2875 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n", dev->devnum, ctrlif, j);
2876 continue;
2877 }
2878 alts = &iface->altsetting[0];
2879 altsd = get_iface_desc(alts);
2880 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
2881 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
2882 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDI_STREAMING) {
2883 if (snd_usb_create_midi_interface(chip, iface, NULL) < 0) {
2884 snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n", dev->devnum, ctrlif, j);
2885 continue;
2886 }
2887 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2888 continue;
2889 }
2890 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2891 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2892 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING) {
2893 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n", dev->devnum, ctrlif, j, altsd->bInterfaceClass);
2894 /* skip non-supported classes */
2895 continue;
2896 }
Clemens Ladisch076639f2007-08-21 08:56:54 +02002897 if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
2898 snd_printk(KERN_ERR "low speed audio streaming not supported\n");
2899 continue;
2900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 if (! parse_audio_endpoints(chip, j)) {
2902 usb_set_interface(dev, j, 0); /* reset the current interface */
2903 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2904 }
2905 }
2906
2907 return 0;
2908}
2909
2910/*
2911 * create a stream for an endpoint/altsetting without proper descriptors
2912 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002913static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002915 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916{
2917 struct audioformat *fp;
2918 struct usb_host_interface *alts;
2919 int stream, err;
Al Virob4482a42007-10-14 19:35:40 +01002920 unsigned *rate_table = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002922 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 if (! fp) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002924 snd_printk(KERN_ERR "cannot memdup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 return -ENOMEM;
2926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 if (fp->nr_rates > 0) {
2928 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
2929 if (!rate_table) {
2930 kfree(fp);
2931 return -ENOMEM;
2932 }
2933 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
2934 fp->rate_table = rate_table;
2935 }
2936
2937 stream = (fp->endpoint & USB_DIR_IN)
2938 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2939 err = add_audio_endpoint(chip, stream, fp);
2940 if (err < 0) {
2941 kfree(fp);
2942 kfree(rate_table);
2943 return err;
2944 }
2945 if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
2946 fp->altset_idx >= iface->num_altsetting) {
2947 kfree(fp);
2948 kfree(rate_table);
2949 return -EINVAL;
2950 }
2951 alts = &iface->altsetting[fp->altset_idx];
2952 usb_set_interface(chip->dev, fp->iface, 0);
2953 init_usb_pitch(chip->dev, fp->iface, alts, fp);
2954 init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max);
2955 return 0;
2956}
2957
2958/*
2959 * create a stream for an interface with proper descriptors
2960 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002961static int create_standard_audio_quirk(struct snd_usb_audio *chip,
Clemens Ladischd1bda042005-09-14 08:36:03 +02002962 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002963 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964{
2965 struct usb_host_interface *alts;
2966 struct usb_interface_descriptor *altsd;
2967 int err;
2968
2969 alts = &iface->altsetting[0];
2970 altsd = get_iface_desc(alts);
Clemens Ladischd1bda042005-09-14 08:36:03 +02002971 err = parse_audio_endpoints(chip, altsd->bInterfaceNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 if (err < 0) {
2973 snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
2974 altsd->bInterfaceNumber, err);
2975 return err;
2976 }
Clemens Ladischd1bda042005-09-14 08:36:03 +02002977 /* reset the current interface */
2978 usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 return 0;
2980}
2981
2982/*
2983 * Create a stream for an Edirol UA-700/UA-25 interface. The only way
2984 * to detect the sample rate is by looking at wMaxPacketSize.
2985 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002986static int create_ua700_ua25_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02002987 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002988 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
2990 static const struct audioformat ua_format = {
2991 .format = SNDRV_PCM_FORMAT_S24_3LE,
2992 .channels = 2,
2993 .fmt_type = USB_FORMAT_TYPE_I,
2994 .altsetting = 1,
2995 .altset_idx = 1,
2996 .rates = SNDRV_PCM_RATE_CONTINUOUS,
2997 };
2998 struct usb_host_interface *alts;
2999 struct usb_interface_descriptor *altsd;
3000 struct audioformat *fp;
3001 int stream, err;
3002
3003 /* both PCM and MIDI interfaces have 2 altsettings */
3004 if (iface->num_altsetting != 2)
3005 return -ENXIO;
3006 alts = &iface->altsetting[1];
3007 altsd = get_iface_desc(alts);
3008
3009 if (altsd->bNumEndpoints == 2) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01003010 static const struct snd_usb_midi_endpoint_info ua700_ep = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 .out_cables = 0x0003,
3012 .in_cables = 0x0003
3013 };
Takashi Iwai86e07d32005-11-17 15:08:02 +01003014 static const struct snd_usb_audio_quirk ua700_quirk = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3016 .data = &ua700_ep
3017 };
Takashi Iwai86e07d32005-11-17 15:08:02 +01003018 static const struct snd_usb_midi_endpoint_info ua25_ep = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 .out_cables = 0x0001,
3020 .in_cables = 0x0001
3021 };
Takashi Iwai86e07d32005-11-17 15:08:02 +01003022 static const struct snd_usb_audio_quirk ua25_quirk = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3024 .data = &ua25_ep
3025 };
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003026 if (chip->usb_id == USB_ID(0x0582, 0x002b))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 return snd_usb_create_midi_interface(chip, iface,
3028 &ua700_quirk);
3029 else
3030 return snd_usb_create_midi_interface(chip, iface,
3031 &ua25_quirk);
3032 }
3033
3034 if (altsd->bNumEndpoints != 1)
3035 return -ENXIO;
3036
3037 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
3038 if (!fp)
3039 return -ENOMEM;
3040 memcpy(fp, &ua_format, sizeof(*fp));
3041
3042 fp->iface = altsd->bInterfaceNumber;
3043 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3044 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3045 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3046
3047 switch (fp->maxpacksize) {
3048 case 0x120:
3049 fp->rate_max = fp->rate_min = 44100;
3050 break;
3051 case 0x138:
3052 case 0x140:
3053 fp->rate_max = fp->rate_min = 48000;
3054 break;
3055 case 0x258:
3056 case 0x260:
3057 fp->rate_max = fp->rate_min = 96000;
3058 break;
3059 default:
3060 snd_printk(KERN_ERR "unknown sample rate\n");
3061 kfree(fp);
3062 return -ENXIO;
3063 }
3064
3065 stream = (fp->endpoint & USB_DIR_IN)
3066 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3067 err = add_audio_endpoint(chip, stream, fp);
3068 if (err < 0) {
3069 kfree(fp);
3070 return err;
3071 }
3072 usb_set_interface(chip->dev, fp->iface, 0);
3073 return 0;
3074}
3075
3076/*
3077 * Create a stream for an Edirol UA-1000 interface.
3078 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003079static int create_ua1000_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003080 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003081 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
3083 static const struct audioformat ua1000_format = {
3084 .format = SNDRV_PCM_FORMAT_S32_LE,
3085 .fmt_type = USB_FORMAT_TYPE_I,
3086 .altsetting = 1,
3087 .altset_idx = 1,
3088 .attributes = 0,
3089 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3090 };
3091 struct usb_host_interface *alts;
3092 struct usb_interface_descriptor *altsd;
3093 struct audioformat *fp;
3094 int stream, err;
3095
3096 if (iface->num_altsetting != 2)
3097 return -ENXIO;
3098 alts = &iface->altsetting[1];
3099 altsd = get_iface_desc(alts);
Ben Williamsonc4a87ef2006-06-19 17:20:09 +02003100 if (alts->extralen != 11 || alts->extra[1] != USB_DT_CS_INTERFACE ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 altsd->bNumEndpoints != 1)
3102 return -ENXIO;
3103
Alexey Dobriyan52978be2006-09-30 23:27:21 -07003104 fp = kmemdup(&ua1000_format, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 if (!fp)
3106 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
3108 fp->channels = alts->extra[4];
3109 fp->iface = altsd->bInterfaceNumber;
3110 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3111 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3112 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3113 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[8]);
3114
3115 stream = (fp->endpoint & USB_DIR_IN)
3116 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3117 err = add_audio_endpoint(chip, stream, fp);
3118 if (err < 0) {
3119 kfree(fp);
3120 return err;
3121 }
3122 /* FIXME: playback must be synchronized to capture */
3123 usb_set_interface(chip->dev, fp->iface, 0);
3124 return 0;
3125}
3126
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003127/*
3128 * Create a stream for an Edirol UA-101 interface.
3129 * Copy, paste and modify from Edirol UA-1000
3130 */
3131static int create_ua101_quirk(struct snd_usb_audio *chip,
3132 struct usb_interface *iface,
3133 const struct snd_usb_audio_quirk *quirk)
3134{
3135 static const struct audioformat ua101_format = {
3136 .format = SNDRV_PCM_FORMAT_S32_LE,
3137 .fmt_type = USB_FORMAT_TYPE_I,
3138 .altsetting = 1,
3139 .altset_idx = 1,
3140 .attributes = 0,
3141 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3142 };
3143 struct usb_host_interface *alts;
3144 struct usb_interface_descriptor *altsd;
3145 struct audioformat *fp;
3146 int stream, err;
3147
3148 if (iface->num_altsetting != 2)
3149 return -ENXIO;
3150 alts = &iface->altsetting[1];
3151 altsd = get_iface_desc(alts);
3152 if (alts->extralen != 18 || alts->extra[1] != USB_DT_CS_INTERFACE ||
3153 altsd->bNumEndpoints != 1)
3154 return -ENXIO;
3155
3156 fp = kmemdup(&ua101_format, sizeof(*fp), GFP_KERNEL);
3157 if (!fp)
3158 return -ENOMEM;
3159
3160 fp->channels = alts->extra[11];
3161 fp->iface = altsd->bInterfaceNumber;
3162 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3163 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3164 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3165 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[15]);
3166
3167 stream = (fp->endpoint & USB_DIR_IN)
3168 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3169 err = add_audio_endpoint(chip, stream, fp);
3170 if (err < 0) {
3171 kfree(fp);
3172 return err;
3173 }
3174 /* FIXME: playback must be synchronized to capture */
3175 usb_set_interface(chip->dev, fp->iface, 0);
3176 return 0;
3177}
3178
Takashi Iwai86e07d32005-11-17 15:08:02 +01003179static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003181 const struct snd_usb_audio_quirk *quirk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
3183/*
3184 * handle the quirks for the contained interfaces
3185 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003186static int create_composite_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003188 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189{
3190 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
3191 int err;
3192
3193 for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
3194 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
3195 if (!iface)
3196 continue;
3197 if (quirk->ifnum != probed_ifnum &&
3198 usb_interface_claimed(iface))
3199 continue;
3200 err = snd_usb_create_quirk(chip, iface, quirk);
3201 if (err < 0)
3202 return err;
3203 if (quirk->ifnum != probed_ifnum)
3204 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
3205 }
3206 return 0;
3207}
3208
Takashi Iwai86e07d32005-11-17 15:08:02 +01003209static int ignore_interface_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003210 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003211 const struct snd_usb_audio_quirk *quirk)
Clemens Ladisch854af952005-07-25 16:19:10 +02003212{
3213 return 0;
3214}
3215
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
3217/*
3218 * boot quirks
3219 */
3220
3221#define EXTIGY_FIRMWARE_SIZE_OLD 794
3222#define EXTIGY_FIRMWARE_SIZE_NEW 483
3223
3224static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
3225{
3226 struct usb_host_config *config = dev->actconfig;
3227 int err;
3228
3229 if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
3230 le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
3231 snd_printdd("sending Extigy boot sequence...\n");
3232 /* Send message to force it to reconnect with full interface. */
3233 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
3234 0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000);
3235 if (err < 0) snd_printdd("error sending boot message: %d\n", err);
3236 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
3237 &dev->descriptor, sizeof(dev->descriptor));
3238 config = dev->actconfig;
3239 if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
3240 err = usb_reset_configuration(dev);
3241 if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
3242 snd_printdd("extigy_boot: new boot length = %d\n",
3243 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
3244 return -ENODEV; /* quit this anyway */
3245 }
3246 return 0;
3247}
3248
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003249static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
3250{
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003251 u8 buf = 1;
3252
3253 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
3254 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3255 0, 0, &buf, 1, 1000);
3256 if (buf == 0) {
3257 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
3258 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3259 1, 2000, NULL, 0, 1000);
3260 return -ENODEV;
3261 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003262 return 0;
3263}
3264
Thibault LE MEURe3113342006-03-14 11:44:53 +01003265/*
Sam Revitche217e302006-06-23 15:10:18 +02003266 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
3267 * documented in the device's data sheet.
3268 */
3269static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value)
3270{
3271 u8 buf[4];
3272 buf[0] = 0x20;
3273 buf[1] = value & 0xff;
3274 buf[2] = (value >> 8) & 0xff;
3275 buf[3] = reg;
3276 return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION,
3277 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT,
3278 0, 0, &buf, 4, 1000);
3279}
3280
3281static int snd_usb_cm106_boot_quirk(struct usb_device *dev)
3282{
3283 /*
3284 * Enable line-out driver mode, set headphone source to front
3285 * channels, enable stereo mic.
3286 */
3287 return snd_usb_cm106_write_int_reg(dev, 2, 0x8004);
3288}
3289
3290
3291/*
Thibault LE MEURe3113342006-03-14 11:44:53 +01003292 * Setup quirks
3293 */
3294#define AUDIOPHILE_SET 0x01 /* if set, parse device_setup */
3295#define AUDIOPHILE_SET_DTS 0x02 /* if set, enable DTS Digital Output */
3296#define AUDIOPHILE_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
3297#define AUDIOPHILE_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */
3298#define AUDIOPHILE_SET_DI 0x10 /* if set, enable Digital Input */
3299#define AUDIOPHILE_SET_MASK 0x1F /* bit mask for setup value */
3300#define AUDIOPHILE_SET_24B_48K_DI 0x19 /* value for 24bits+48KHz+Digital Input */
3301#define AUDIOPHILE_SET_24B_48K_NOTDI 0x09 /* value for 24bits+48KHz+No Digital Input */
3302#define AUDIOPHILE_SET_16B_48K_DI 0x11 /* value for 16bits+48KHz+Digital Input */
3303#define AUDIOPHILE_SET_16B_48K_NOTDI 0x01 /* value for 16bits+48KHz+No Digital Input */
3304
3305static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
3306 int iface, int altno)
3307{
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02003308 /* Reset ALL ifaces to 0 altsetting.
3309 * Call it for every possible altsetting of every interface.
3310 */
3311 usb_set_interface(chip->dev, iface, 0);
3312
Thibault LE MEURe3113342006-03-14 11:44:53 +01003313 if (device_setup[chip->index] & AUDIOPHILE_SET) {
3314 if ((device_setup[chip->index] & AUDIOPHILE_SET_DTS)
3315 && altno != 6)
3316 return 1; /* skip this altsetting */
3317 if ((device_setup[chip->index] & AUDIOPHILE_SET_96K)
3318 && altno != 1)
3319 return 1; /* skip this altsetting */
3320 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3321 AUDIOPHILE_SET_24B_48K_DI && altno != 2)
3322 return 1; /* skip this altsetting */
3323 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3324 AUDIOPHILE_SET_24B_48K_NOTDI && altno != 3)
3325 return 1; /* skip this altsetting */
3326 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3327 AUDIOPHILE_SET_16B_48K_DI && altno != 4)
3328 return 1; /* skip this altsetting */
3329 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3330 AUDIOPHILE_SET_16B_48K_NOTDI && altno != 5)
3331 return 1; /* skip this altsetting */
3332 }
3333 return 0; /* keep this altsetting */
3334}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
3336/*
3337 * audio-interface quirks
3338 *
3339 * returns zero if no standard audio/MIDI parsing is needed.
3340 * returns a postive value if standard audio/midi interfaces are parsed
3341 * after this.
3342 * returns a negative value at error.
3343 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003344static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003346 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003348 typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *,
3349 const struct snd_usb_audio_quirk *);
Clemens Ladisch854af952005-07-25 16:19:10 +02003350 static const quirk_func_t quirk_funcs[] = {
3351 [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
3352 [QUIRK_COMPOSITE] = create_composite_quirk,
3353 [QUIRK_MIDI_STANDARD_INTERFACE] = snd_usb_create_midi_interface,
3354 [QUIRK_MIDI_FIXED_ENDPOINT] = snd_usb_create_midi_interface,
3355 [QUIRK_MIDI_YAMAHA] = snd_usb_create_midi_interface,
3356 [QUIRK_MIDI_MIDIMAN] = snd_usb_create_midi_interface,
3357 [QUIRK_MIDI_NOVATION] = snd_usb_create_midi_interface,
3358 [QUIRK_MIDI_RAW] = snd_usb_create_midi_interface,
3359 [QUIRK_MIDI_EMAGIC] = snd_usb_create_midi_interface,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01003360 [QUIRK_MIDI_CME] = snd_usb_create_midi_interface,
Clemens Ladischd1bda042005-09-14 08:36:03 +02003361 [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003362 [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
3363 [QUIRK_AUDIO_EDIROL_UA700_UA25] = create_ua700_ua25_quirk,
3364 [QUIRK_AUDIO_EDIROL_UA1000] = create_ua1000_quirk,
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003365 [QUIRK_AUDIO_EDIROL_UA101] = create_ua101_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003366 };
3367
3368 if (quirk->type < QUIRK_TYPE_COUNT) {
3369 return quirk_funcs[quirk->type](chip, iface, quirk);
3370 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
3372 return -ENXIO;
3373 }
3374}
3375
3376
3377/*
3378 * common proc files to show the usb device info
3379 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003380static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003382 struct snd_usb_audio *chip = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 if (! chip->shutdown)
3384 snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum);
3385}
3386
Takashi Iwai86e07d32005-11-17 15:08:02 +01003387static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003389 struct snd_usb_audio *chip = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 if (! chip->shutdown)
3391 snd_iprintf(buffer, "%04x:%04x\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003392 USB_ID_VENDOR(chip->usb_id),
3393 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394}
3395
Takashi Iwai86e07d32005-11-17 15:08:02 +01003396static void snd_usb_audio_create_proc(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003398 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 if (! snd_card_proc_new(chip->card, "usbbus", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003400 snd_info_set_text_ops(entry, chip, proc_audio_usbbus_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 if (! snd_card_proc_new(chip->card, "usbid", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003402 snd_info_set_text_ops(entry, chip, proc_audio_usbid_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403}
3404
3405/*
3406 * free the chip instance
3407 *
3408 * here we have to do not much, since pcm and controls are already freed
3409 *
3410 */
3411
Takashi Iwai86e07d32005-11-17 15:08:02 +01003412static int snd_usb_audio_free(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413{
Takashi Iwai2a2a5dd2007-01-08 17:42:22 +01003414 usb_chip[chip->index] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 kfree(chip);
3416 return 0;
3417}
3418
Takashi Iwai86e07d32005-11-17 15:08:02 +01003419static int snd_usb_audio_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003421 struct snd_usb_audio *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 return snd_usb_audio_free(chip);
3423}
3424
3425
3426/*
3427 * create a chip instance and set its names.
3428 */
3429static int snd_usb_audio_create(struct usb_device *dev, int idx,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003430 const struct snd_usb_audio_quirk *quirk,
3431 struct snd_usb_audio **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003433 struct snd_card *card;
3434 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 int err, len;
3436 char component[14];
Takashi Iwai86e07d32005-11-17 15:08:02 +01003437 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 .dev_free = snd_usb_audio_dev_free,
3439 };
3440
3441 *rchip = NULL;
3442
Clemens Ladisch076639f2007-08-21 08:56:54 +02003443 if (snd_usb_get_speed(dev) != USB_SPEED_LOW &&
3444 snd_usb_get_speed(dev) != USB_SPEED_FULL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 snd_usb_get_speed(dev) != USB_SPEED_HIGH) {
3446 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
3447 return -ENXIO;
3448 }
3449
3450 card = snd_card_new(index[idx], id[idx], THIS_MODULE, 0);
3451 if (card == NULL) {
3452 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
3453 return -ENOMEM;
3454 }
3455
Takashi Iwai561b2202005-09-09 14:22:34 +02003456 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 if (! chip) {
3458 snd_card_free(card);
3459 return -ENOMEM;
3460 }
3461
3462 chip->index = idx;
3463 chip->dev = dev;
3464 chip->card = card;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003465 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3466 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 INIT_LIST_HEAD(&chip->pcm_list);
3468 INIT_LIST_HEAD(&chip->midi_list);
Clemens Ladisch84957a82005-04-29 16:23:13 +02003469 INIT_LIST_HEAD(&chip->mixer_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
3471 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
3472 snd_usb_audio_free(chip);
3473 snd_card_free(card);
3474 return err;
3475 }
3476
3477 strcpy(card->driver, "USB-Audio");
3478 sprintf(component, "USB%04x:%04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003479 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 snd_component_add(card, component);
3481
3482 /* retrieve the device string as shortname */
3483 if (quirk && quirk->product_name) {
3484 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
3485 } else {
3486 if (!dev->descriptor.iProduct ||
3487 usb_string(dev, dev->descriptor.iProduct,
3488 card->shortname, sizeof(card->shortname)) <= 0) {
3489 /* no name available from anywhere, so use ID */
3490 sprintf(card->shortname, "USB Device %#04x:%#04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003491 USB_ID_VENDOR(chip->usb_id),
3492 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 }
3494 }
3495
3496 /* retrieve the vendor and device strings as longname */
3497 if (quirk && quirk->vendor_name) {
3498 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
3499 } else {
3500 if (dev->descriptor.iManufacturer)
3501 len = usb_string(dev, dev->descriptor.iManufacturer,
3502 card->longname, sizeof(card->longname));
3503 else
3504 len = 0;
3505 /* we don't really care if there isn't any vendor string */
3506 }
3507 if (len > 0)
3508 strlcat(card->longname, " ", sizeof(card->longname));
3509
3510 strlcat(card->longname, card->shortname, sizeof(card->longname));
3511
3512 len = strlcat(card->longname, " at ", sizeof(card->longname));
3513
3514 if (len < sizeof(card->longname))
3515 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
3516
3517 strlcat(card->longname,
Clemens Ladisch076639f2007-08-21 08:56:54 +02003518 snd_usb_get_speed(dev) == USB_SPEED_LOW ? ", low speed" :
3519 snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" :
3520 ", high speed",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 sizeof(card->longname));
3522
3523 snd_usb_audio_create_proc(chip);
3524
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 *rchip = chip;
3526 return 0;
3527}
3528
3529
3530/*
3531 * probe the active usb device
3532 *
3533 * note that this can be called multiple times per a device, when it
3534 * includes multiple audio control interfaces.
3535 *
3536 * thus we check the usb device pointer and creates the card instance
3537 * only at the first time. the successive calls of this function will
3538 * append the pcm interface to the corresponding card.
3539 */
3540static void *snd_usb_audio_probe(struct usb_device *dev,
3541 struct usb_interface *intf,
3542 const struct usb_device_id *usb_id)
3543{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003544 const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 int i, err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01003546 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 struct usb_host_interface *alts;
3548 int ifnum;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003549 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
3551 alts = &intf->altsetting[0];
3552 ifnum = get_iface_desc(alts)->bInterfaceNumber;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003553 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3554 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
3556 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
3557 goto __err_val;
3558
3559 /* SB Extigy needs special boot-up sequence */
3560 /* if more models come, this will go to the quirk list. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003561 if (id == USB_ID(0x041e, 0x3000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 if (snd_usb_extigy_boot_quirk(dev, intf) < 0)
3563 goto __err_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003565 /* SB Audigy 2 NX needs its own boot-up magic, too */
3566 if (id == USB_ID(0x041e, 0x3020)) {
3567 if (snd_usb_audigy2nx_boot_quirk(dev) < 0)
3568 goto __err_val;
3569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570
Sam Revitche217e302006-06-23 15:10:18 +02003571 /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
3572 if (id == USB_ID(0x10f5, 0x0200)) {
3573 if (snd_usb_cm106_boot_quirk(dev) < 0)
3574 goto __err_val;
3575 }
3576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 /*
3578 * found a config. now register to ALSA
3579 */
3580
3581 /* check whether it's already registered */
3582 chip = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003583 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 for (i = 0; i < SNDRV_CARDS; i++) {
3585 if (usb_chip[i] && usb_chip[i]->dev == dev) {
3586 if (usb_chip[i]->shutdown) {
3587 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
3588 goto __error;
3589 }
3590 chip = usb_chip[i];
3591 break;
3592 }
3593 }
3594 if (! chip) {
3595 /* it's a fresh one.
3596 * now look for an empty slot and create a new card instance
3597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 for (i = 0; i < SNDRV_CARDS; i++)
3599 if (enable[i] && ! usb_chip[i] &&
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003600 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
3601 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
3603 goto __error;
3604 }
Clemens Ladisch1dcd3ec2005-05-10 14:51:40 +02003605 snd_card_set_dev(chip->card, &intf->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 break;
3607 }
3608 if (! chip) {
3609 snd_printk(KERN_ERR "no available usb audio device\n");
3610 goto __error;
3611 }
3612 }
3613
3614 err = 1; /* continue */
3615 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
3616 /* need some special handlings */
3617 if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0)
3618 goto __error;
3619 }
3620
3621 if (err > 0) {
3622 /* create normal USB audio interfaces */
3623 if (snd_usb_create_streams(chip, ifnum) < 0 ||
3624 snd_usb_create_mixer(chip, ifnum) < 0) {
3625 goto __error;
3626 }
3627 }
3628
3629 /* we are allowed to call snd_card_register() many times */
3630 if (snd_card_register(chip->card) < 0) {
3631 goto __error;
3632 }
3633
3634 usb_chip[chip->index] = chip;
3635 chip->num_interfaces++;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003636 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 return chip;
3638
3639 __error:
3640 if (chip && !chip->num_interfaces)
3641 snd_card_free(chip->card);
Ingo Molnar12aa7572006-01-16 16:36:05 +01003642 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 __err_val:
3644 return NULL;
3645}
3646
3647/*
3648 * we need to take care of counter, since disconnection can be called also
3649 * many times as well as usb_audio_probe().
3650 */
3651static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr)
3652{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003653 struct snd_usb_audio *chip;
3654 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 struct list_head *p;
3656
3657 if (ptr == (void *)-1L)
3658 return;
3659
3660 chip = ptr;
3661 card = chip->card;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003662 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 chip->shutdown = 1;
3664 chip->num_interfaces--;
3665 if (chip->num_interfaces <= 0) {
3666 snd_card_disconnect(card);
3667 /* release the pcm resources */
3668 list_for_each(p, &chip->pcm_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003669 snd_usb_stream_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 }
3671 /* release the midi resources */
3672 list_for_each(p, &chip->midi_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003673 snd_usbmidi_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02003675 /* release mixer resources */
3676 list_for_each(p, &chip->mixer_list) {
3677 snd_usb_mixer_disconnect(p);
3678 }
Ingo Molnar12aa7572006-01-16 16:36:05 +01003679 mutex_unlock(&register_mutex);
Takashi Iwaic4614822006-06-23 14:38:23 +02003680 snd_card_free_when_closed(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 } else {
Ingo Molnar12aa7572006-01-16 16:36:05 +01003682 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 }
3684}
3685
3686/*
3687 * new 2.5 USB kernel API
3688 */
3689static int usb_audio_probe(struct usb_interface *intf,
3690 const struct usb_device_id *id)
3691{
3692 void *chip;
3693 chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
3694 if (chip) {
3695 dev_set_drvdata(&intf->dev, chip);
3696 return 0;
3697 } else
3698 return -EIO;
3699}
3700
3701static void usb_audio_disconnect(struct usb_interface *intf)
3702{
3703 snd_usb_audio_disconnect(interface_to_usbdev(intf),
3704 dev_get_drvdata(&intf->dev));
3705}
3706
Andrew Morton93521d22007-12-24 14:40:56 +01003707#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01003708static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
3709{
3710 struct snd_usb_audio *chip = dev_get_drvdata(&intf->dev);
3711 struct list_head *p;
3712 struct snd_usb_stream *as;
3713
3714 if (chip == (void *)-1L)
3715 return 0;
3716
3717 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
3718 if (!chip->num_suspended_intf++) {
3719 list_for_each(p, &chip->pcm_list) {
3720 as = list_entry(p, struct snd_usb_stream, list);
3721 snd_pcm_suspend_all(as->pcm);
3722 }
3723 }
3724
3725 return 0;
3726}
3727
3728static int usb_audio_resume(struct usb_interface *intf)
3729{
3730 struct snd_usb_audio *chip = dev_get_drvdata(&intf->dev);
3731
3732 if (chip == (void *)-1L)
3733 return 0;
3734 if (--chip->num_suspended_intf)
3735 return 0;
3736 /*
3737 * ALSA leaves material resumption to user space
3738 * we just notify
3739 */
3740
3741 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
3742
3743 return 0;
3744}
Andrew Morton93521d22007-12-24 14:40:56 +01003745#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746
3747static int __init snd_usb_audio_init(void)
3748{
3749 if (nrpacks < MIN_PACKS_URB || nrpacks > MAX_PACKS) {
3750 printk(KERN_WARNING "invalid nrpacks value.\n");
3751 return -EINVAL;
3752 }
Tobias Klausercf78bbc2006-10-04 18:12:43 +02003753 return usb_register(&usb_audio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754}
3755
3756
3757static void __exit snd_usb_audio_cleanup(void)
3758{
3759 usb_deregister(&usb_audio_driver);
3760}
3761
3762module_init(snd_usb_audio_init);
3763module_exit(snd_usb_audio_cleanup);