blob: f5aadb001986f2f9d8287686e10345f15e4e3cec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Main and PCM part
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
11 *
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 *
28 * NOTES:
29 *
30 * - async unlink should be used for avoiding the sleep inside lock.
31 * 2.4.22 usb-uhci seems buggy for async unlinking and results in
32 * oops. in such a cse, pass async_unlink=0 option.
33 * - the linked URBs would be preferred but not used so far because of
34 * the instability of unlinking.
35 * - type II is not supported properly. there is no device which supports
36 * this type *correctly*. SB extigy looks as if it supports, but it's
37 * indeed an AC3 stream packed in SPDIF frames (i.e. no real AC3 stream).
38 */
39
40
41#include <sound/driver.h>
42#include <linux/bitops.h>
43#include <linux/init.h>
44#include <linux/list.h>
45#include <linux/slab.h>
46#include <linux/string.h>
47#include <linux/usb.h>
Clemens Ladisch6207e512005-08-15 08:35:25 +020048#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/moduleparam.h>
50#include <sound/core.h>
51#include <sound/info.h>
52#include <sound/pcm.h>
53#include <sound/pcm_params.h>
54#include <sound/initval.h>
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 */
70static int nrpacks = 4; /* max. number of packets per urb */
71static int async_unlink = 1;
72
73module_param_array(index, int, NULL, 0444);
74MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
75module_param_array(id, charp, NULL, 0444);
76MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
77module_param_array(enable, bool, NULL, 0444);
78MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
79module_param_array(vid, int, NULL, 0444);
80MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
81module_param_array(pid, int, NULL, 0444);
82MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
Clemens Ladisch71d848c2005-08-12 15:18:00 +020083module_param(nrpacks, int, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB.");
85module_param(async_unlink, bool, 0444);
86MODULE_PARM_DESC(async_unlink, "Use async unlink mode.");
87
88
89/*
90 * debug the h/w constraints
91 */
92/* #define HW_CONST_DEBUG */
93
94
95/*
96 *
97 */
98
99#define MAX_PACKS 10
100#define MAX_PACKS_HS (MAX_PACKS * 8) /* in high speed mode */
Clemens Ladisch15a24c072005-08-12 08:25:26 +0200101#define MAX_URBS 8
Clemens Ladisch604cf492005-05-17 09:15:27 +0200102#define SYNC_URBS 4 /* always four urbs for sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#define MIN_PACKS_URB 1 /* minimum 1 packet per urb */
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105struct audioformat {
106 struct list_head list;
107 snd_pcm_format_t format; /* format type */
108 unsigned int channels; /* # channels */
109 unsigned int fmt_type; /* USB audio format type (1-3) */
110 unsigned int frame_size; /* samples per frame for non-audio */
111 int iface; /* interface number */
112 unsigned char altsetting; /* corresponding alternate setting */
113 unsigned char altset_idx; /* array index of altenate setting */
114 unsigned char attributes; /* corresponding attributes of cs endpoint */
115 unsigned char endpoint; /* endpoint */
116 unsigned char ep_attr; /* endpoint attributes */
117 unsigned int maxpacksize; /* max. packet size */
118 unsigned int rates; /* rate bitmasks */
119 unsigned int rate_min, rate_max; /* min/max rates */
120 unsigned int nr_rates; /* number of rate table entries */
121 unsigned int *rate_table; /* rate table */
122};
123
Takashi Iwai86e07d32005-11-17 15:08:02 +0100124struct snd_usb_substream;
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126struct snd_urb_ctx {
127 struct urb *urb;
Clemens Ladisch55851f72005-08-15 08:34:16 +0200128 unsigned int buffer_size; /* size of data buffer, if data URB */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100129 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 int index; /* index for urb array */
131 int packets; /* number of packets per urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
134struct snd_urb_ops {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100135 int (*prepare)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
136 int (*retire)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
137 int (*prepare_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
138 int (*retire_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139};
140
141struct snd_usb_substream {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100142 struct snd_usb_stream *stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct usb_device *dev;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100144 struct snd_pcm_substream *pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 int direction; /* playback or capture */
146 int interface; /* current interface */
147 int endpoint; /* assigned endpoint */
148 struct audioformat *cur_audiofmt; /* current audioformat pointer (for hw_params callback) */
149 unsigned int cur_rate; /* current rate (for hw_params callback) */
150 unsigned int period_bytes; /* current period bytes (for hw_params callback) */
151 unsigned int format; /* USB data format */
152 unsigned int datapipe; /* the data i/o pipe */
153 unsigned int syncpipe; /* 1 - async out or adaptive in */
Clemens Ladisch573567e2005-06-27 08:17:30 +0200154 unsigned int datainterval; /* log_2 of data packet interval */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned int syncinterval; /* P for adaptive mode, 0 otherwise */
156 unsigned int freqn; /* nominal sampling rate in fs/fps in Q16.16 format */
157 unsigned int freqm; /* momentary sampling rate in fs/fps in Q16.16 format */
158 unsigned int freqmax; /* maximum sampling rate, used for buffer management */
159 unsigned int phase; /* phase accumulator */
160 unsigned int maxpacksize; /* max packet size in bytes */
161 unsigned int maxframesize; /* max packet size in frames */
162 unsigned int curpacksize; /* current packet size in bytes (for capture) */
163 unsigned int curframesize; /* current packet size in frames (for capture) */
164 unsigned int fill_max: 1; /* fill max packet size always */
165 unsigned int fmt_type; /* USB audio format type (1-3) */
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200166 unsigned int packs_per_ms; /* packets per millisecond (for playback) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 unsigned int running: 1; /* running status */
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 unsigned int hwptr_done; /* processed frame position in the buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 unsigned int transfer_done; /* processed frames since last period update */
172 unsigned long active_mask; /* bitmask of active urbs */
173 unsigned long unlink_mask; /* bitmask of unlinked urbs */
174
175 unsigned int nurbs; /* # urbs */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100176 struct snd_urb_ctx dataurb[MAX_URBS]; /* data urb table */
177 struct snd_urb_ctx syncurb[SYNC_URBS]; /* sync urb table */
Clemens Ladisch55851f72005-08-15 08:34:16 +0200178 char *syncbuf; /* sync buffer for all sync URBs */
179 dma_addr_t sync_dma; /* DMA address of syncbuf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 u64 formats; /* format bitmasks (all or'ed) */
182 unsigned int num_formats; /* number of supported audio formats (list) */
183 struct list_head fmt_list; /* format list */
184 spinlock_t lock;
185
186 struct snd_urb_ops ops; /* callbacks (must be filled at init) */
187};
188
189
190struct snd_usb_stream {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100191 struct snd_usb_audio *chip;
192 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int pcm_index;
194 unsigned int fmt_type; /* USB audio format type (1-3) */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100195 struct snd_usb_substream substream[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 struct list_head list;
197};
198
199
200/*
201 * we keep the snd_usb_audio_t instances by ourselves for merging
202 * the all interfaces on the same card as one sound device.
203 */
204
205static DECLARE_MUTEX(register_mutex);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100206static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208
209/*
210 * convert a sampling rate into our full speed format (fs/1000 in Q16.16)
211 * this will overflow at approx 524 kHz
212 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700213static inline unsigned get_usb_full_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 return ((rate << 13) + 62) / 125;
216}
217
218/*
219 * convert a sampling rate into USB high speed format (fs/8000 in Q16.16)
220 * this will overflow at approx 4 MHz
221 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700222static inline unsigned get_usb_high_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 return ((rate << 10) + 62) / 125;
225}
226
227/* convert our full speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700228static inline unsigned get_full_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 return (usb_rate * 125 + (1 << 12)) >> 13;
231}
232
233/* convert our high speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700234static inline unsigned get_high_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 return (usb_rate * 125 + (1 << 9)) >> 10;
237}
238
239
240/*
241 * prepare urb for full speed capture sync pipe
242 *
243 * fill the length and offset of each urb descriptor.
244 * the fixed 10.14 frequency is passed through the pipe.
245 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100246static int prepare_capture_sync_urb(struct snd_usb_substream *subs,
247 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 struct urb *urb)
249{
250 unsigned char *cp = urb->transfer_buffer;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100251 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200254 urb->iso_frame_desc[0].length = 3;
255 urb->iso_frame_desc[0].offset = 0;
256 cp[0] = subs->freqn >> 2;
257 cp[1] = subs->freqn >> 10;
258 cp[2] = subs->freqn >> 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return 0;
260}
261
262/*
263 * prepare urb for high speed capture sync pipe
264 *
265 * fill the length and offset of each urb descriptor.
266 * the fixed 12.13 frequency is passed as 16.16 through the pipe.
267 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100268static int prepare_capture_sync_urb_hs(struct snd_usb_substream *subs,
269 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 struct urb *urb)
271{
272 unsigned char *cp = urb->transfer_buffer;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100273 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200276 urb->iso_frame_desc[0].length = 4;
277 urb->iso_frame_desc[0].offset = 0;
278 cp[0] = subs->freqn;
279 cp[1] = subs->freqn >> 8;
280 cp[2] = subs->freqn >> 16;
281 cp[3] = subs->freqn >> 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return 0;
283}
284
285/*
286 * process after capture sync complete
287 * - nothing to do
288 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100289static int retire_capture_sync_urb(struct snd_usb_substream *subs,
290 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 struct urb *urb)
292{
293 return 0;
294}
295
296/*
297 * prepare urb for capture data pipe
298 *
299 * fill the offset and length of each descriptor.
300 *
301 * we use a temporary buffer to write the captured data.
302 * since the length of written data is determined by host, we cannot
303 * write onto the pcm buffer directly... the data is thus copied
304 * later at complete callback to the global buffer.
305 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100306static int prepare_capture_urb(struct snd_usb_substream *subs,
307 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct urb *urb)
309{
310 int i, offs;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100311 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 offs = 0;
314 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 for (i = 0; i < ctx->packets; i++) {
316 urb->iso_frame_desc[i].offset = offs;
317 urb->iso_frame_desc[i].length = subs->curpacksize;
318 offs += subs->curpacksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 urb->transfer_buffer_length = offs;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200321 urb->number_of_packets = ctx->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322#if 0 // for check
323 if (! urb->bandwidth) {
324 int bustime;
325 bustime = usb_check_bandwidth(urb->dev, urb);
326 if (bustime < 0)
327 return bustime;
328 printk("urb %d: bandwidth = %d (packets = %d)\n", ctx->index, bustime, urb->number_of_packets);
329 usb_claim_bandwidth(urb->dev, urb, bustime, 1);
330 }
331#endif // for check
332 return 0;
333}
334
335/*
336 * process after capture complete
337 *
338 * copy the data from each desctiptor to the pcm buffer, and
339 * update the current position.
340 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100341static int retire_capture_urb(struct snd_usb_substream *subs,
342 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 struct urb *urb)
344{
345 unsigned long flags;
346 unsigned char *cp;
347 int i;
348 unsigned int stride, len, oldptr;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200349 int period_elapsed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 stride = runtime->frame_bits >> 3;
352
353 for (i = 0; i < urb->number_of_packets; i++) {
354 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset;
355 if (urb->iso_frame_desc[i].status) {
356 snd_printd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status);
357 // continue;
358 }
359 len = urb->iso_frame_desc[i].actual_length / stride;
360 if (! len)
361 continue;
362 /* update the current pointer */
363 spin_lock_irqsave(&subs->lock, flags);
364 oldptr = subs->hwptr_done;
365 subs->hwptr_done += len;
366 if (subs->hwptr_done >= runtime->buffer_size)
367 subs->hwptr_done -= runtime->buffer_size;
368 subs->transfer_done += len;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200369 if (subs->transfer_done >= runtime->period_size) {
370 subs->transfer_done -= runtime->period_size;
371 period_elapsed = 1;
372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 spin_unlock_irqrestore(&subs->lock, flags);
374 /* copy a data chunk */
375 if (oldptr + len > runtime->buffer_size) {
376 unsigned int cnt = runtime->buffer_size - oldptr;
377 unsigned int blen = cnt * stride;
378 memcpy(runtime->dma_area + oldptr * stride, cp, blen);
379 memcpy(runtime->dma_area, cp + blen, len * stride - blen);
380 } else {
381 memcpy(runtime->dma_area + oldptr * stride, cp, len * stride);
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200384 if (period_elapsed)
385 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return 0;
387}
388
389
390/*
391 * prepare urb for full speed playback sync pipe
392 *
393 * set up the offset and length to receive the current frequency.
394 */
395
Takashi Iwai86e07d32005-11-17 15:08:02 +0100396static int prepare_playback_sync_urb(struct snd_usb_substream *subs,
397 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 struct urb *urb)
399{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100400 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200403 urb->iso_frame_desc[0].length = 3;
404 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return 0;
406}
407
408/*
409 * prepare urb for high speed playback sync pipe
410 *
411 * set up the offset and length to receive the current frequency.
412 */
413
Takashi Iwai86e07d32005-11-17 15:08:02 +0100414static int prepare_playback_sync_urb_hs(struct snd_usb_substream *subs,
415 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct urb *urb)
417{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100418 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200421 urb->iso_frame_desc[0].length = 4;
422 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return 0;
424}
425
426/*
427 * process after full speed playback sync complete
428 *
429 * retrieve the current 10.14 frequency from pipe, and set it.
430 * the value is referred in prepare_playback_urb().
431 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100432static int retire_playback_sync_urb(struct snd_usb_substream *subs,
433 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 struct urb *urb)
435{
Clemens Ladischca810902005-05-02 08:55:54 +0200436 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 unsigned long flags;
438
Clemens Ladischca810902005-05-02 08:55:54 +0200439 if (urb->iso_frame_desc[0].status == 0 &&
440 urb->iso_frame_desc[0].actual_length == 3) {
441 f = combine_triple((u8*)urb->transfer_buffer) << 2;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200442 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
443 spin_lock_irqsave(&subs->lock, flags);
444 subs->freqm = f;
445 spin_unlock_irqrestore(&subs->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
449 return 0;
450}
451
452/*
453 * process after high speed playback sync complete
454 *
455 * retrieve the current 12.13 frequency from pipe, and set it.
456 * the value is referred in prepare_playback_urb().
457 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100458static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs,
459 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 struct urb *urb)
461{
Clemens Ladischca810902005-05-02 08:55:54 +0200462 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 unsigned long flags;
464
Clemens Ladischca810902005-05-02 08:55:54 +0200465 if (urb->iso_frame_desc[0].status == 0 &&
466 urb->iso_frame_desc[0].actual_length == 4) {
467 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200468 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
469 spin_lock_irqsave(&subs->lock, flags);
470 subs->freqm = f;
471 spin_unlock_irqrestore(&subs->lock, flags);
472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474
475 return 0;
476}
477
Clemens Ladisch9568f462006-01-12 08:19:21 +0100478/* determine the number of frames in the next packet */
479static int snd_usb_audio_next_packet_size(struct snd_usb_substream *subs)
480{
481 if (subs->fill_max)
482 return subs->maxframesize;
483 else {
484 subs->phase = (subs->phase & 0xffff)
485 + (subs->freqm << subs->datainterval);
486 return min(subs->phase >> 16, subs->maxframesize);
487 }
488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490/*
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100491 * Prepare urb for streaming before playback starts.
492 *
Clemens Ladisch4b284922006-01-12 08:17:49 +0100493 * We don't yet have data, so we send a frame of silence.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100494 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100495static int prepare_startup_playback_urb(struct snd_usb_substream *subs,
496 struct snd_pcm_runtime *runtime,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100497 struct urb *urb)
498{
Clemens Ladisch4b284922006-01-12 08:17:49 +0100499 unsigned int i, offs, counts;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100500 struct snd_urb_ctx *ctx = urb->context;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100501 int stride = runtime->frame_bits >> 3;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100502
Clemens Ladisch4b284922006-01-12 08:17:49 +0100503 offs = 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100504 urb->dev = ctx->subs->dev;
505 urb->number_of_packets = subs->packs_per_ms;
506 for (i = 0; i < subs->packs_per_ms; ++i) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100507 counts = snd_usb_audio_next_packet_size(subs);
Clemens Ladisch4b284922006-01-12 08:17:49 +0100508 urb->iso_frame_desc[i].offset = offs * stride;
509 urb->iso_frame_desc[i].length = counts * stride;
510 offs += counts;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100511 }
Clemens Ladisch4b284922006-01-12 08:17:49 +0100512 urb->transfer_buffer_length = offs * stride;
513 memset(urb->transfer_buffer,
514 subs->cur_audiofmt->format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0,
515 offs * stride);
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100516 return 0;
517}
518
519/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 * prepare urb for playback data pipe
521 *
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200522 * Since a URB can handle only a single linear buffer, we must use double
523 * buffering when the data to be transferred overflows the buffer boundary.
524 * To avoid inconsistencies when updating hwptr_done, we use double buffering
525 * for all URBs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100527static int prepare_playback_urb(struct snd_usb_substream *subs,
528 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 struct urb *urb)
530{
531 int i, stride, offs;
532 unsigned int counts;
533 unsigned long flags;
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200534 int period_elapsed = 0;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100535 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 stride = runtime->frame_bits >> 3;
538
539 offs = 0;
540 urb->dev = ctx->subs->dev; /* we need to set this at each time */
541 urb->number_of_packets = 0;
542 spin_lock_irqsave(&subs->lock, flags);
543 for (i = 0; i < ctx->packets; i++) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100544 counts = snd_usb_audio_next_packet_size(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 /* set up descriptor */
546 urb->iso_frame_desc[i].offset = offs * stride;
547 urb->iso_frame_desc[i].length = counts * stride;
548 offs += counts;
549 urb->number_of_packets++;
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200550 subs->transfer_done += counts;
551 if (subs->transfer_done >= runtime->period_size) {
552 subs->transfer_done -= runtime->period_size;
553 period_elapsed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (subs->fmt_type == USB_FORMAT_TYPE_II) {
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200555 if (subs->transfer_done > 0) {
556 /* FIXME: fill-max mode is not
557 * supported yet */
558 offs -= subs->transfer_done;
559 counts -= subs->transfer_done;
560 urb->iso_frame_desc[i].length =
561 counts * stride;
562 subs->transfer_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564 i++;
565 if (i < ctx->packets) {
566 /* add a transfer delimiter */
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200567 urb->iso_frame_desc[i].offset =
568 offs * stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 urb->iso_frame_desc[i].length = 0;
570 urb->number_of_packets++;
571 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200572 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200575 /* finish at the frame boundary at/after the period boundary */
576 if (period_elapsed &&
577 (i & (subs->packs_per_ms - 1)) == subs->packs_per_ms - 1)
578 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200580 if (subs->hwptr_done + offs > runtime->buffer_size) {
581 /* err, the transferred area goes over buffer boundary. */
582 unsigned int len = runtime->buffer_size - subs->hwptr_done;
583 memcpy(urb->transfer_buffer,
584 runtime->dma_area + subs->hwptr_done * stride,
585 len * stride);
586 memcpy(urb->transfer_buffer + len * stride,
587 runtime->dma_area,
588 (offs - len) * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 } else {
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200590 memcpy(urb->transfer_buffer,
591 runtime->dma_area + subs->hwptr_done * stride,
592 offs * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200594 subs->hwptr_done += offs;
595 if (subs->hwptr_done >= runtime->buffer_size)
596 subs->hwptr_done -= runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 spin_unlock_irqrestore(&subs->lock, flags);
598 urb->transfer_buffer_length = offs * stride;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100599 if (period_elapsed)
600 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return 0;
602}
603
604/*
605 * process after playback data complete
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200606 * - nothing to do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100608static int retire_playback_urb(struct snd_usb_substream *subs,
609 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct urb *urb)
611{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return 0;
613}
614
615
616/*
617 */
618static struct snd_urb_ops audio_urb_ops[2] = {
619 {
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100620 .prepare = prepare_startup_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 .retire = retire_playback_urb,
622 .prepare_sync = prepare_playback_sync_urb,
623 .retire_sync = retire_playback_sync_urb,
624 },
625 {
626 .prepare = prepare_capture_urb,
627 .retire = retire_capture_urb,
628 .prepare_sync = prepare_capture_sync_urb,
629 .retire_sync = retire_capture_sync_urb,
630 },
631};
632
633static struct snd_urb_ops audio_urb_ops_high_speed[2] = {
634 {
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100635 .prepare = prepare_startup_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 .retire = retire_playback_urb,
637 .prepare_sync = prepare_playback_sync_urb_hs,
638 .retire_sync = retire_playback_sync_urb_hs,
639 },
640 {
641 .prepare = prepare_capture_urb,
642 .retire = retire_capture_urb,
643 .prepare_sync = prepare_capture_sync_urb_hs,
644 .retire_sync = retire_capture_sync_urb,
645 },
646};
647
648/*
649 * complete callback from data urb
650 */
651static void snd_complete_urb(struct urb *urb, struct pt_regs *regs)
652{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100653 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
654 struct snd_usb_substream *subs = ctx->subs;
655 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 int err = 0;
657
658 if ((subs->running && subs->ops.retire(subs, substream->runtime, urb)) ||
659 ! subs->running || /* can be stopped during retire callback */
660 (err = subs->ops.prepare(subs, substream->runtime, urb)) < 0 ||
661 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
662 clear_bit(ctx->index, &subs->active_mask);
663 if (err < 0) {
664 snd_printd(KERN_ERR "cannot submit urb (err = %d)\n", err);
665 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
666 }
667 }
668}
669
670
671/*
672 * complete callback from sync urb
673 */
674static void snd_complete_sync_urb(struct urb *urb, struct pt_regs *regs)
675{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100676 struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
677 struct snd_usb_substream *subs = ctx->subs;
678 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 int err = 0;
680
681 if ((subs->running && subs->ops.retire_sync(subs, substream->runtime, urb)) ||
682 ! subs->running || /* can be stopped during retire callback */
683 (err = subs->ops.prepare_sync(subs, substream->runtime, urb)) < 0 ||
684 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
685 clear_bit(ctx->index + 16, &subs->active_mask);
686 if (err < 0) {
687 snd_printd(KERN_ERR "cannot submit sync urb (err = %d)\n", err);
688 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
689 }
690 }
691}
692
693
Clemens Ladisch6207e512005-08-15 08:35:25 +0200694/* get the physical page pointer at the given offset */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100695static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
Clemens Ladisch6207e512005-08-15 08:35:25 +0200696 unsigned long offset)
697{
698 void *pageptr = subs->runtime->dma_area + offset;
699 return vmalloc_to_page(pageptr);
700}
701
702/* allocate virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100703static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs, size_t size)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200704{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100705 struct snd_pcm_runtime *runtime = subs->runtime;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200706 if (runtime->dma_area) {
707 if (runtime->dma_bytes >= size)
708 return 0; /* already large enough */
Takashi Iwaib1d57762005-10-10 11:56:31 +0200709 vfree(runtime->dma_area);
Clemens Ladisch6207e512005-08-15 08:35:25 +0200710 }
Takashi Iwaib1d57762005-10-10 11:56:31 +0200711 runtime->dma_area = vmalloc(size);
Clemens Ladisch6207e512005-08-15 08:35:25 +0200712 if (! runtime->dma_area)
713 return -ENOMEM;
714 runtime->dma_bytes = size;
715 return 0;
716}
717
718/* free virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100719static int snd_pcm_free_vmalloc_buffer(struct snd_pcm_substream *subs)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200720{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100721 struct snd_pcm_runtime *runtime = subs->runtime;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200722 if (runtime->dma_area) {
Takashi Iwaib1d57762005-10-10 11:56:31 +0200723 vfree(runtime->dma_area);
Clemens Ladisch6207e512005-08-15 08:35:25 +0200724 runtime->dma_area = NULL;
725 }
726 return 0;
727}
728
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730/*
731 * unlink active urbs.
732 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100733static int deactivate_urbs(struct snd_usb_substream *subs, int force, int can_sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 unsigned int i;
736 int async;
737
738 subs->running = 0;
739
740 if (!force && subs->stream->chip->shutdown) /* to be sure... */
741 return -EBADFD;
742
743 async = !can_sleep && async_unlink;
744
745 if (! async && in_interrupt())
746 return 0;
747
748 for (i = 0; i < subs->nurbs; i++) {
749 if (test_bit(i, &subs->active_mask)) {
750 if (! test_and_set_bit(i, &subs->unlink_mask)) {
751 struct urb *u = subs->dataurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400752 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400754 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 usb_kill_urb(u);
756 }
757 }
758 }
759 if (subs->syncpipe) {
760 for (i = 0; i < SYNC_URBS; i++) {
761 if (test_bit(i+16, &subs->active_mask)) {
762 if (! test_and_set_bit(i+16, &subs->unlink_mask)) {
763 struct urb *u = subs->syncurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400764 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400766 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 usb_kill_urb(u);
768 }
769 }
770 }
771 }
772 return 0;
773}
774
775
776/*
777 * set up and start data/sync urbs
778 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100779static int start_urbs(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 unsigned int i;
782 int err;
783
784 if (subs->stream->chip->shutdown)
785 return -EBADFD;
786
787 for (i = 0; i < subs->nurbs; i++) {
788 snd_assert(subs->dataurb[i].urb, return -EINVAL);
789 if (subs->ops.prepare(subs, runtime, subs->dataurb[i].urb) < 0) {
790 snd_printk(KERN_ERR "cannot prepare datapipe for urb %d\n", i);
791 goto __error;
792 }
793 }
794 if (subs->syncpipe) {
795 for (i = 0; i < SYNC_URBS; i++) {
796 snd_assert(subs->syncurb[i].urb, return -EINVAL);
797 if (subs->ops.prepare_sync(subs, runtime, subs->syncurb[i].urb) < 0) {
798 snd_printk(KERN_ERR "cannot prepare syncpipe for urb %d\n", i);
799 goto __error;
800 }
801 }
802 }
803
804 subs->active_mask = 0;
805 subs->unlink_mask = 0;
806 subs->running = 1;
807 for (i = 0; i < subs->nurbs; i++) {
808 if ((err = usb_submit_urb(subs->dataurb[i].urb, GFP_ATOMIC)) < 0) {
809 snd_printk(KERN_ERR "cannot submit datapipe for urb %d, err = %d\n", i, err);
810 goto __error;
811 }
812 set_bit(i, &subs->active_mask);
813 }
814 if (subs->syncpipe) {
815 for (i = 0; i < SYNC_URBS; i++) {
816 if ((err = usb_submit_urb(subs->syncurb[i].urb, GFP_ATOMIC)) < 0) {
817 snd_printk(KERN_ERR "cannot submit syncpipe for urb %d, err = %d\n", i, err);
818 goto __error;
819 }
820 set_bit(i + 16, &subs->active_mask);
821 }
822 }
823 return 0;
824
825 __error:
826 // snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
827 deactivate_urbs(subs, 0, 0);
828 return -EPIPE;
829}
830
831
832/*
833 * wait until all urbs are processed.
834 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100835static int wait_clear_urbs(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200837 unsigned long end_time = jiffies + msecs_to_jiffies(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 unsigned int i;
839 int alive;
840
841 do {
842 alive = 0;
843 for (i = 0; i < subs->nurbs; i++) {
844 if (test_bit(i, &subs->active_mask))
845 alive++;
846 }
847 if (subs->syncpipe) {
848 for (i = 0; i < SYNC_URBS; i++) {
849 if (test_bit(i + 16, &subs->active_mask))
850 alive++;
851 }
852 }
853 if (! alive)
854 break;
Nishanth Aravamudan8433a502005-10-24 15:02:37 +0200855 schedule_timeout_uninterruptible(1);
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200856 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (alive)
858 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
859 return 0;
860}
861
862
863/*
864 * return the current pcm pointer. just return the hwptr_done value.
865 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100866static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100868 struct snd_usb_substream *subs;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200869 snd_pcm_uframes_t hwptr_done;
870
Takashi Iwai86e07d32005-11-17 15:08:02 +0100871 subs = (struct snd_usb_substream *)substream->runtime->private_data;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200872 spin_lock(&subs->lock);
873 hwptr_done = subs->hwptr_done;
874 spin_unlock(&subs->lock);
875 return hwptr_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
878
879/*
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100880 * start/stop playback substream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100882static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100883 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100885 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 switch (cmd) {
888 case SNDRV_PCM_TRIGGER_START:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100889 subs->ops.prepare = prepare_playback_urb;
890 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 case SNDRV_PCM_TRIGGER_STOP:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100892 return deactivate_urbs(subs, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 default:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100894 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100896}
897
898/*
899 * start/stop capture substream
900 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100901static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100902 int cmd)
903{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100904 struct snd_usb_substream *subs = substream->runtime->private_data;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100905
906 switch (cmd) {
907 case SNDRV_PCM_TRIGGER_START:
908 return start_urbs(subs, substream->runtime);
909 case SNDRV_PCM_TRIGGER_STOP:
910 return deactivate_urbs(subs, 0, 0);
911 default:
912 return -EINVAL;
913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
916
917/*
918 * release a urb data
919 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100920static void release_urb_ctx(struct snd_urb_ctx *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 if (u->urb) {
Clemens Ladisch55851f72005-08-15 08:34:16 +0200923 if (u->buffer_size)
924 usb_buffer_free(u->subs->dev, u->buffer_size,
925 u->urb->transfer_buffer,
926 u->urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 usb_free_urb(u->urb);
928 u->urb = NULL;
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
932/*
933 * release a substream
934 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100935static void release_substream_urbs(struct snd_usb_substream *subs, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
937 int i;
938
939 /* stop urbs (to be sure) */
940 deactivate_urbs(subs, force, 1);
941 wait_clear_urbs(subs);
942
943 for (i = 0; i < MAX_URBS; i++)
944 release_urb_ctx(&subs->dataurb[i]);
945 for (i = 0; i < SYNC_URBS; i++)
946 release_urb_ctx(&subs->syncurb[i]);
Clemens Ladisch55851f72005-08-15 08:34:16 +0200947 usb_buffer_free(subs->dev, SYNC_URBS * 4,
948 subs->syncbuf, subs->sync_dma);
949 subs->syncbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 subs->nurbs = 0;
951}
952
953/*
954 * initialize a substream for plaback/capture
955 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100956static int init_substream_urbs(struct snd_usb_substream *subs, unsigned int period_bytes,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 unsigned int rate, unsigned int frame_bits)
958{
959 unsigned int maxsize, n, i;
960 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
Clemens Ladischa93bf992005-08-12 15:19:39 +0200961 unsigned int npacks[MAX_URBS], urb_packs, total_packs, packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 /* calculate the frequency in 16.16 format */
964 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
965 subs->freqn = get_usb_full_speed_rate(rate);
966 else
967 subs->freqn = get_usb_high_speed_rate(rate);
968 subs->freqm = subs->freqn;
Clemens Ladisch573567e2005-06-27 08:17:30 +0200969 /* calculate max. frequency */
970 if (subs->maxpacksize) {
971 /* whatever fits into a max. size packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 maxsize = subs->maxpacksize;
Clemens Ladisch573567e2005-06-27 08:17:30 +0200973 subs->freqmax = (maxsize / (frame_bits >> 3))
974 << (16 - subs->datainterval);
975 } else {
976 /* no max. packet size: just take 25% higher than nominal */
977 subs->freqmax = subs->freqn + (subs->freqn >> 2);
978 maxsize = ((subs->freqmax + 0xffff) * (frame_bits >> 3))
979 >> (16 - subs->datainterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
Clemens Ladisch573567e2005-06-27 08:17:30 +0200981 subs->phase = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 if (subs->fill_max)
984 subs->curpacksize = subs->maxpacksize;
985 else
986 subs->curpacksize = maxsize;
987
Clemens Ladischa93bf992005-08-12 15:19:39 +0200988 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
989 packs_per_ms = 8 >> subs->datainterval;
990 else
991 packs_per_ms = 1;
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200992 subs->packs_per_ms = packs_per_ms;
Clemens Ladischa93bf992005-08-12 15:19:39 +0200993
Clemens Ladisch71d848c2005-08-12 15:18:00 +0200994 if (is_playback) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 urb_packs = nrpacks;
Clemens Ladisch71d848c2005-08-12 15:18:00 +0200996 urb_packs = max(urb_packs, (unsigned int)MIN_PACKS_URB);
997 urb_packs = min(urb_packs, (unsigned int)MAX_PACKS);
998 } else
Clemens Ladisch15a24c072005-08-12 08:25:26 +0200999 urb_packs = 1;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001000 urb_packs *= packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /* decide how many packets to be used */
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001003 if (is_playback) {
Clemens Ladischd6db3922005-08-12 08:28:27 +02001004 unsigned int minsize;
1005 /* determine how small a packet can be */
1006 minsize = (subs->freqn >> (16 - subs->datainterval))
1007 * (frame_bits >> 3);
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +02001008 /* with sync from device, assume it can be 12% lower */
Clemens Ladischd6db3922005-08-12 08:28:27 +02001009 if (subs->syncpipe)
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +02001010 minsize -= minsize >> 3;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001011 minsize = max(minsize, 1u);
1012 total_packs = (period_bytes + minsize - 1) / minsize;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001013 /* round up to multiple of packs_per_ms */
1014 total_packs = (total_packs + packs_per_ms - 1)
1015 & ~(packs_per_ms - 1);
1016 /* we need at least two URBs for queueing */
1017 if (total_packs < 2 * MIN_PACKS_URB * packs_per_ms)
1018 total_packs = 2 * MIN_PACKS_URB * packs_per_ms;
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001019 } else {
1020 total_packs = MAX_URBS * urb_packs;
1021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 subs->nurbs = (total_packs + urb_packs - 1) / urb_packs;
1023 if (subs->nurbs > MAX_URBS) {
1024 /* too much... */
1025 subs->nurbs = MAX_URBS;
1026 total_packs = MAX_URBS * urb_packs;
1027 }
1028 n = total_packs;
1029 for (i = 0; i < subs->nurbs; i++) {
1030 npacks[i] = n > urb_packs ? urb_packs : n;
1031 n -= urb_packs;
1032 }
1033 if (subs->nurbs <= 1) {
1034 /* too little - we need at least two packets
1035 * to ensure contiguous playback/capture
1036 */
1037 subs->nurbs = 2;
1038 npacks[0] = (total_packs + 1) / 2;
1039 npacks[1] = total_packs - npacks[0];
Clemens Ladischa93bf992005-08-12 15:19:39 +02001040 } else if (npacks[subs->nurbs-1] < MIN_PACKS_URB * packs_per_ms) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 /* the last packet is too small.. */
1042 if (subs->nurbs > 2) {
1043 /* merge to the first one */
1044 npacks[0] += npacks[subs->nurbs - 1];
1045 subs->nurbs--;
1046 } else {
1047 /* divide to two */
1048 subs->nurbs = 2;
1049 npacks[0] = (total_packs + 1) / 2;
1050 npacks[1] = total_packs - npacks[0];
1051 }
1052 }
1053
1054 /* allocate and initialize data urbs */
1055 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001056 struct snd_urb_ctx *u = &subs->dataurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 u->index = i;
1058 u->subs = subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 u->packets = npacks[i];
Clemens Ladisch55851f72005-08-15 08:34:16 +02001060 u->buffer_size = maxsize * u->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (subs->fmt_type == USB_FORMAT_TYPE_II)
1062 u->packets++; /* for transfer delimiter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001064 if (! u->urb)
1065 goto out_of_memory;
1066 u->urb->transfer_buffer =
1067 usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL,
1068 &u->urb->transfer_dma);
1069 if (! u->urb->transfer_buffer)
1070 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 u->urb->pipe = subs->datapipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001072 u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001073 u->urb->interval = 1 << subs->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001075 u->urb->complete = snd_complete_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077
1078 if (subs->syncpipe) {
1079 /* allocate and initialize sync urbs */
Clemens Ladisch55851f72005-08-15 08:34:16 +02001080 subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4,
1081 GFP_KERNEL, &subs->sync_dma);
1082 if (! subs->syncbuf)
1083 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001085 struct snd_urb_ctx *u = &subs->syncurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 u->index = i;
1087 u->subs = subs;
Clemens Ladischca810902005-05-02 08:55:54 +02001088 u->packets = 1;
1089 u->urb = usb_alloc_urb(1, GFP_KERNEL);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001090 if (! u->urb)
1091 goto out_of_memory;
Clemens Ladischca810902005-05-02 08:55:54 +02001092 u->urb->transfer_buffer = subs->syncbuf + i * 4;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001093 u->urb->transfer_dma = subs->sync_dma + i * 4;
Clemens Ladischca810902005-05-02 08:55:54 +02001094 u->urb->transfer_buffer_length = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 u->urb->pipe = subs->syncpipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001096 u->urb->transfer_flags = URB_ISO_ASAP |
1097 URB_NO_TRANSFER_DMA_MAP;
Clemens Ladischca810902005-05-02 08:55:54 +02001098 u->urb->number_of_packets = 1;
Clemens Ladisch1149a642005-05-02 08:53:46 +02001099 u->urb->interval = 1 << subs->syncinterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001101 u->urb->complete = snd_complete_sync_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103 }
1104 return 0;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001105
1106out_of_memory:
1107 release_substream_urbs(subs, 0);
1108 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
1111
1112/*
1113 * find a matching audio format
1114 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001115static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 unsigned int rate, unsigned int channels)
1117{
1118 struct list_head *p;
1119 struct audioformat *found = NULL;
1120 int cur_attr = 0, attr;
1121
1122 list_for_each(p, &subs->fmt_list) {
1123 struct audioformat *fp;
1124 fp = list_entry(p, struct audioformat, list);
1125 if (fp->format != format || fp->channels != channels)
1126 continue;
1127 if (rate < fp->rate_min || rate > fp->rate_max)
1128 continue;
1129 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
1130 unsigned int i;
1131 for (i = 0; i < fp->nr_rates; i++)
1132 if (fp->rate_table[i] == rate)
1133 break;
1134 if (i >= fp->nr_rates)
1135 continue;
1136 }
1137 attr = fp->ep_attr & EP_ATTR_MASK;
1138 if (! found) {
1139 found = fp;
1140 cur_attr = attr;
1141 continue;
1142 }
1143 /* avoid async out and adaptive in if the other method
1144 * supports the same format.
1145 * this is a workaround for the case like
1146 * M-audio audiophile USB.
1147 */
1148 if (attr != cur_attr) {
1149 if ((attr == EP_ATTR_ASYNC &&
1150 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1151 (attr == EP_ATTR_ADAPTIVE &&
1152 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
1153 continue;
1154 if ((cur_attr == EP_ATTR_ASYNC &&
1155 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1156 (cur_attr == EP_ATTR_ADAPTIVE &&
1157 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
1158 found = fp;
1159 cur_attr = attr;
1160 continue;
1161 }
1162 }
1163 /* find the format with the largest max. packet size */
1164 if (fp->maxpacksize > found->maxpacksize) {
1165 found = fp;
1166 cur_attr = attr;
1167 }
1168 }
1169 return found;
1170}
1171
1172
1173/*
1174 * initialize the picth control and sample rate
1175 */
1176static int init_usb_pitch(struct usb_device *dev, int iface,
1177 struct usb_host_interface *alts,
1178 struct audioformat *fmt)
1179{
1180 unsigned int ep;
1181 unsigned char data[1];
1182 int err;
1183
1184 ep = get_endpoint(alts, 0)->bEndpointAddress;
1185 /* if endpoint has pitch control, enable it */
1186 if (fmt->attributes & EP_CS_ATTR_PITCH_CONTROL) {
1187 data[0] = 1;
1188 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1189 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1190 PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) {
1191 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
1192 dev->devnum, iface, ep);
1193 return err;
1194 }
1195 }
1196 return 0;
1197}
1198
1199static int init_usb_sample_rate(struct usb_device *dev, int iface,
1200 struct usb_host_interface *alts,
1201 struct audioformat *fmt, int rate)
1202{
1203 unsigned int ep;
1204 unsigned char data[3];
1205 int err;
1206
1207 ep = get_endpoint(alts, 0)->bEndpointAddress;
1208 /* if endpoint has sampling rate control, set it */
1209 if (fmt->attributes & EP_CS_ATTR_SAMPLE_RATE) {
1210 int crate;
1211 data[0] = rate;
1212 data[1] = rate >> 8;
1213 data[2] = rate >> 16;
1214 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1215 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1216 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
1217 snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep 0x%x\n",
1218 dev->devnum, iface, fmt->altsetting, rate, ep);
1219 return err;
1220 }
1221 if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), GET_CUR,
1222 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN,
1223 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
1224 snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep 0x%x\n",
1225 dev->devnum, iface, fmt->altsetting, ep);
1226 return 0; /* some devices don't support reading */
1227 }
1228 crate = data[0] | (data[1] << 8) | (data[2] << 16);
1229 if (crate != rate) {
1230 snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate);
1231 // runtime->rate = crate;
1232 }
1233 }
1234 return 0;
1235}
1236
1237/*
1238 * find a matching format and set up the interface
1239 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001240static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
1242 struct usb_device *dev = subs->dev;
1243 struct usb_host_interface *alts;
1244 struct usb_interface_descriptor *altsd;
1245 struct usb_interface *iface;
1246 unsigned int ep, attr;
1247 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
1248 int err;
1249
1250 iface = usb_ifnum_to_if(dev, fmt->iface);
1251 snd_assert(iface, return -EINVAL);
1252 alts = &iface->altsetting[fmt->altset_idx];
1253 altsd = get_iface_desc(alts);
1254 snd_assert(altsd->bAlternateSetting == fmt->altsetting, return -EINVAL);
1255
1256 if (fmt == subs->cur_audiofmt)
1257 return 0;
1258
1259 /* close the old interface */
1260 if (subs->interface >= 0 && subs->interface != fmt->iface) {
1261 usb_set_interface(subs->dev, subs->interface, 0);
1262 subs->interface = -1;
1263 subs->format = 0;
1264 }
1265
1266 /* set interface */
1267 if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) {
1268 if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) {
1269 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n",
1270 dev->devnum, fmt->iface, fmt->altsetting);
1271 return -EIO;
1272 }
1273 snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting);
1274 subs->interface = fmt->iface;
1275 subs->format = fmt->altset_idx;
1276 }
1277
1278 /* create a data pipe */
1279 ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK;
1280 if (is_playback)
1281 subs->datapipe = usb_sndisocpipe(dev, ep);
1282 else
1283 subs->datapipe = usb_rcvisocpipe(dev, ep);
Clemens Ladisch573567e2005-06-27 08:17:30 +02001284 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH &&
1285 get_endpoint(alts, 0)->bInterval >= 1 &&
1286 get_endpoint(alts, 0)->bInterval <= 4)
1287 subs->datainterval = get_endpoint(alts, 0)->bInterval - 1;
1288 else
1289 subs->datainterval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 subs->syncpipe = subs->syncinterval = 0;
1291 subs->maxpacksize = fmt->maxpacksize;
1292 subs->fill_max = 0;
1293
1294 /* we need a sync pipe in async OUT or adaptive IN mode */
1295 /* check the number of EP, since some devices have broken
1296 * descriptors which fool us. if it has only one EP,
1297 * assume it as adaptive-out or sync-in.
1298 */
1299 attr = fmt->ep_attr & EP_ATTR_MASK;
1300 if (((is_playback && attr == EP_ATTR_ASYNC) ||
1301 (! is_playback && attr == EP_ATTR_ADAPTIVE)) &&
1302 altsd->bNumEndpoints >= 2) {
1303 /* check sync-pipe endpoint */
1304 /* ... and check descriptor size before accessing bSynchAddress
1305 because there is a version of the SB Audigy 2 NX firmware lacking
1306 the audio fields in the endpoint descriptors */
1307 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
1308 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1309 get_endpoint(alts, 1)->bSynchAddress != 0)) {
1310 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1311 dev->devnum, fmt->iface, fmt->altsetting);
1312 return -EINVAL;
1313 }
1314 ep = get_endpoint(alts, 1)->bEndpointAddress;
1315 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1316 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
1317 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
1318 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1319 dev->devnum, fmt->iface, fmt->altsetting);
1320 return -EINVAL;
1321 }
1322 ep &= USB_ENDPOINT_NUMBER_MASK;
1323 if (is_playback)
1324 subs->syncpipe = usb_rcvisocpipe(dev, ep);
1325 else
1326 subs->syncpipe = usb_sndisocpipe(dev, ep);
Clemens Ladisch1149a642005-05-02 08:53:46 +02001327 if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1328 get_endpoint(alts, 1)->bRefresh >= 1 &&
1329 get_endpoint(alts, 1)->bRefresh <= 9)
1330 subs->syncinterval = get_endpoint(alts, 1)->bRefresh;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001331 else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
Clemens Ladisch1149a642005-05-02 08:53:46 +02001332 subs->syncinterval = 1;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001333 else if (get_endpoint(alts, 1)->bInterval >= 1 &&
1334 get_endpoint(alts, 1)->bInterval <= 16)
1335 subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
1336 else
1337 subs->syncinterval = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339
1340 /* always fill max packet size */
1341 if (fmt->attributes & EP_CS_ATTR_FILL_MAX)
1342 subs->fill_max = 1;
1343
1344 if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0)
1345 return err;
1346
1347 subs->cur_audiofmt = fmt;
1348
1349#if 0
1350 printk("setting done: format = %d, rate = %d, channels = %d\n",
1351 fmt->format, fmt->rate, fmt->channels);
1352 printk(" datapipe = 0x%0x, syncpipe = 0x%0x\n",
1353 subs->datapipe, subs->syncpipe);
1354#endif
1355
1356 return 0;
1357}
1358
1359/*
1360 * hw_params callback
1361 *
1362 * allocate a buffer and set the given audio format.
1363 *
1364 * so far we use a physically linear buffer although packetize transfer
1365 * doesn't need a continuous area.
1366 * if sg buffer is supported on the later version of alsa, we'll follow
1367 * that.
1368 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001369static int snd_usb_hw_params(struct snd_pcm_substream *substream,
1370 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001372 struct snd_usb_substream *subs = (struct snd_usb_substream *)substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 struct audioformat *fmt;
1374 unsigned int channels, rate, format;
1375 int ret, changed;
1376
Clemens Ladisch6207e512005-08-15 08:35:25 +02001377 ret = snd_pcm_alloc_vmalloc_buffer(substream,
1378 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (ret < 0)
1380 return ret;
1381
1382 format = params_format(hw_params);
1383 rate = params_rate(hw_params);
1384 channels = params_channels(hw_params);
1385 fmt = find_format(subs, format, rate, channels);
1386 if (! fmt) {
1387 snd_printd(KERN_DEBUG "cannot set format: format = %s, rate = %d, channels = %d\n",
1388 snd_pcm_format_name(format), rate, channels);
1389 return -EINVAL;
1390 }
1391
1392 changed = subs->cur_audiofmt != fmt ||
1393 subs->period_bytes != params_period_bytes(hw_params) ||
1394 subs->cur_rate != rate;
1395 if ((ret = set_format(subs, fmt)) < 0)
1396 return ret;
1397
1398 if (subs->cur_rate != rate) {
1399 struct usb_host_interface *alts;
1400 struct usb_interface *iface;
1401 iface = usb_ifnum_to_if(subs->dev, fmt->iface);
1402 alts = &iface->altsetting[fmt->altset_idx];
1403 ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate);
1404 if (ret < 0)
1405 return ret;
1406 subs->cur_rate = rate;
1407 }
1408
1409 if (changed) {
1410 /* format changed */
1411 release_substream_urbs(subs, 0);
1412 /* influenced: period_bytes, channels, rate, format, */
1413 ret = init_substream_urbs(subs, params_period_bytes(hw_params),
1414 params_rate(hw_params),
1415 snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params));
1416 }
1417
1418 return ret;
1419}
1420
1421/*
1422 * hw_free callback
1423 *
1424 * reset the audio format and release the buffer
1425 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001426static int snd_usb_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001428 struct snd_usb_substream *subs = (struct snd_usb_substream *)substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 subs->cur_audiofmt = NULL;
1431 subs->cur_rate = 0;
1432 subs->period_bytes = 0;
1433 release_substream_urbs(subs, 0);
Clemens Ladisch6207e512005-08-15 08:35:25 +02001434 return snd_pcm_free_vmalloc_buffer(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435}
1436
1437/*
1438 * prepare callback
1439 *
1440 * only a few subtle things...
1441 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001442static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001444 struct snd_pcm_runtime *runtime = substream->runtime;
1445 struct snd_usb_substream *subs = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 if (! subs->cur_audiofmt) {
1448 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
1449 return -ENXIO;
1450 }
1451
1452 /* some unit conversions in runtime */
1453 subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize);
1454 subs->curframesize = bytes_to_frames(runtime, subs->curpacksize);
1455
1456 /* reset the pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 subs->hwptr_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 subs->transfer_done = 0;
1459 subs->phase = 0;
1460
1461 /* clear urbs (to be sure) */
1462 deactivate_urbs(subs, 0, 1);
1463 wait_clear_urbs(subs);
1464
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001465 /* for playback, submit the URBs now; otherwise, the first hwptr_done
1466 * updates for all URBs would happen at the same time when starting */
1467 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
1468 subs->ops.prepare = prepare_startup_playback_urb;
1469 return start_urbs(subs, runtime);
1470 } else
1471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
1473
Takashi Iwai86e07d32005-11-17 15:08:02 +01001474static struct snd_pcm_hardware snd_usb_playback =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Clemens Ladisch49045d32005-09-05 10:31:05 +02001476 .info = SNDRV_PCM_INFO_MMAP |
1477 SNDRV_PCM_INFO_MMAP_VALID |
1478 SNDRV_PCM_INFO_BATCH |
1479 SNDRV_PCM_INFO_INTERLEAVED |
1480 SNDRV_PCM_INFO_BLOCK_TRANSFER,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001481 .buffer_bytes_max = 1024 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 .period_bytes_min = 64,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001483 .period_bytes_max = 512 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 .periods_min = 2,
1485 .periods_max = 1024,
1486};
1487
Takashi Iwai86e07d32005-11-17 15:08:02 +01001488static struct snd_pcm_hardware snd_usb_capture =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
Clemens Ladisch49045d32005-09-05 10:31:05 +02001490 .info = SNDRV_PCM_INFO_MMAP |
1491 SNDRV_PCM_INFO_MMAP_VALID |
1492 SNDRV_PCM_INFO_BATCH |
1493 SNDRV_PCM_INFO_INTERLEAVED |
1494 SNDRV_PCM_INFO_BLOCK_TRANSFER,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001495 .buffer_bytes_max = 1024 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 .period_bytes_min = 64,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001497 .period_bytes_max = 512 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 .periods_min = 2,
1499 .periods_max = 1024,
1500};
1501
1502/*
1503 * h/w constraints
1504 */
1505
1506#ifdef HW_CONST_DEBUG
1507#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
1508#else
1509#define hwc_debug(fmt, args...) /**/
1510#endif
1511
Takashi Iwai86e07d32005-11-17 15:08:02 +01001512static int hw_check_valid_format(struct snd_pcm_hw_params *params, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001514 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1515 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
1516 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 /* check the format */
1519 if (! snd_mask_test(fmts, fp->format)) {
1520 hwc_debug(" > check: no supported format %d\n", fp->format);
1521 return 0;
1522 }
1523 /* check the channels */
1524 if (fp->channels < ct->min || fp->channels > ct->max) {
1525 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
1526 return 0;
1527 }
1528 /* check the rate is within the range */
1529 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
1530 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
1531 return 0;
1532 }
1533 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
1534 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
1535 return 0;
1536 }
1537 return 1;
1538}
1539
Takashi Iwai86e07d32005-11-17 15:08:02 +01001540static int hw_rule_rate(struct snd_pcm_hw_params *params,
1541 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001543 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001545 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 unsigned int rmin, rmax;
1547 int changed;
1548
1549 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
1550 changed = 0;
1551 rmin = rmax = 0;
1552 list_for_each(p, &subs->fmt_list) {
1553 struct audioformat *fp;
1554 fp = list_entry(p, struct audioformat, list);
1555 if (! hw_check_valid_format(params, fp))
1556 continue;
1557 if (changed++) {
1558 if (rmin > fp->rate_min)
1559 rmin = fp->rate_min;
1560 if (rmax < fp->rate_max)
1561 rmax = fp->rate_max;
1562 } else {
1563 rmin = fp->rate_min;
1564 rmax = fp->rate_max;
1565 }
1566 }
1567
1568 if (! changed) {
1569 hwc_debug(" --> get empty\n");
1570 it->empty = 1;
1571 return -EINVAL;
1572 }
1573
1574 changed = 0;
1575 if (it->min < rmin) {
1576 it->min = rmin;
1577 it->openmin = 0;
1578 changed = 1;
1579 }
1580 if (it->max > rmax) {
1581 it->max = rmax;
1582 it->openmax = 0;
1583 changed = 1;
1584 }
1585 if (snd_interval_checkempty(it)) {
1586 it->empty = 1;
1587 return -EINVAL;
1588 }
1589 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1590 return changed;
1591}
1592
1593
Takashi Iwai86e07d32005-11-17 15:08:02 +01001594static int hw_rule_channels(struct snd_pcm_hw_params *params,
1595 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001597 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001599 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 unsigned int rmin, rmax;
1601 int changed;
1602
1603 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
1604 changed = 0;
1605 rmin = rmax = 0;
1606 list_for_each(p, &subs->fmt_list) {
1607 struct audioformat *fp;
1608 fp = list_entry(p, struct audioformat, list);
1609 if (! hw_check_valid_format(params, fp))
1610 continue;
1611 if (changed++) {
1612 if (rmin > fp->channels)
1613 rmin = fp->channels;
1614 if (rmax < fp->channels)
1615 rmax = fp->channels;
1616 } else {
1617 rmin = fp->channels;
1618 rmax = fp->channels;
1619 }
1620 }
1621
1622 if (! changed) {
1623 hwc_debug(" --> get empty\n");
1624 it->empty = 1;
1625 return -EINVAL;
1626 }
1627
1628 changed = 0;
1629 if (it->min < rmin) {
1630 it->min = rmin;
1631 it->openmin = 0;
1632 changed = 1;
1633 }
1634 if (it->max > rmax) {
1635 it->max = rmax;
1636 it->openmax = 0;
1637 changed = 1;
1638 }
1639 if (snd_interval_checkempty(it)) {
1640 it->empty = 1;
1641 return -EINVAL;
1642 }
1643 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1644 return changed;
1645}
1646
Takashi Iwai86e07d32005-11-17 15:08:02 +01001647static int hw_rule_format(struct snd_pcm_hw_params *params,
1648 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001650 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001652 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 u64 fbits;
1654 u32 oldbits[2];
1655 int changed;
1656
1657 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1658 fbits = 0;
1659 list_for_each(p, &subs->fmt_list) {
1660 struct audioformat *fp;
1661 fp = list_entry(p, struct audioformat, list);
1662 if (! hw_check_valid_format(params, fp))
1663 continue;
1664 fbits |= (1ULL << fp->format);
1665 }
1666
1667 oldbits[0] = fmt->bits[0];
1668 oldbits[1] = fmt->bits[1];
1669 fmt->bits[0] &= (u32)fbits;
1670 fmt->bits[1] &= (u32)(fbits >> 32);
1671 if (! fmt->bits[0] && ! fmt->bits[1]) {
1672 hwc_debug(" --> get empty\n");
1673 return -EINVAL;
1674 }
1675 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1676 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1677 return changed;
1678}
1679
1680#define MAX_MASK 64
1681
1682/*
1683 * check whether the registered audio formats need special hw-constraints
1684 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001685static int check_hw_params_convention(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686{
1687 int i;
1688 u32 *channels;
1689 u32 *rates;
1690 u32 cmaster, rmaster;
1691 u32 rate_min = 0, rate_max = 0;
1692 struct list_head *p;
1693 int err = 1;
1694
1695 channels = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
1696 rates = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
1697
1698 list_for_each(p, &subs->fmt_list) {
1699 struct audioformat *f;
1700 f = list_entry(p, struct audioformat, list);
1701 /* unconventional channels? */
1702 if (f->channels > 32)
1703 goto __out;
1704 /* continuous rate min/max matches? */
1705 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1706 if (rate_min && f->rate_min != rate_min)
1707 goto __out;
1708 if (rate_max && f->rate_max != rate_max)
1709 goto __out;
1710 rate_min = f->rate_min;
1711 rate_max = f->rate_max;
1712 }
1713 /* combination of continuous rates and fixed rates? */
1714 if (rates[f->format] & SNDRV_PCM_RATE_CONTINUOUS) {
1715 if (f->rates != rates[f->format])
1716 goto __out;
1717 }
1718 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1719 if (rates[f->format] && rates[f->format] != f->rates)
1720 goto __out;
1721 }
1722 channels[f->format] |= (1 << f->channels);
1723 rates[f->format] |= f->rates;
1724 }
1725 /* check whether channels and rates match for all formats */
1726 cmaster = rmaster = 0;
1727 for (i = 0; i < MAX_MASK; i++) {
1728 if (cmaster != channels[i] && cmaster && channels[i])
1729 goto __out;
1730 if (rmaster != rates[i] && rmaster && rates[i])
1731 goto __out;
1732 if (channels[i])
1733 cmaster = channels[i];
1734 if (rates[i])
1735 rmaster = rates[i];
1736 }
1737 /* check whether channels match for all distinct rates */
1738 memset(channels, 0, MAX_MASK * sizeof(u32));
1739 list_for_each(p, &subs->fmt_list) {
1740 struct audioformat *f;
1741 f = list_entry(p, struct audioformat, list);
1742 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS)
1743 continue;
1744 for (i = 0; i < 32; i++) {
1745 if (f->rates & (1 << i))
1746 channels[i] |= (1 << f->channels);
1747 }
1748 }
1749 cmaster = 0;
1750 for (i = 0; i < 32; i++) {
1751 if (cmaster != channels[i] && cmaster && channels[i])
1752 goto __out;
1753 if (channels[i])
1754 cmaster = channels[i];
1755 }
1756 err = 0;
1757
1758 __out:
1759 kfree(channels);
1760 kfree(rates);
1761 return err;
1762}
1763
1764
1765/*
1766 * set up the runtime hardware information.
1767 */
1768
Takashi Iwai86e07d32005-11-17 15:08:02 +01001769static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
1771 struct list_head *p;
1772 int err;
1773
1774 runtime->hw.formats = subs->formats;
1775
1776 runtime->hw.rate_min = 0x7fffffff;
1777 runtime->hw.rate_max = 0;
1778 runtime->hw.channels_min = 256;
1779 runtime->hw.channels_max = 0;
1780 runtime->hw.rates = 0;
1781 /* check min/max rates and channels */
1782 list_for_each(p, &subs->fmt_list) {
1783 struct audioformat *fp;
1784 fp = list_entry(p, struct audioformat, list);
1785 runtime->hw.rates |= fp->rates;
1786 if (runtime->hw.rate_min > fp->rate_min)
1787 runtime->hw.rate_min = fp->rate_min;
1788 if (runtime->hw.rate_max < fp->rate_max)
1789 runtime->hw.rate_max = fp->rate_max;
1790 if (runtime->hw.channels_min > fp->channels)
1791 runtime->hw.channels_min = fp->channels;
1792 if (runtime->hw.channels_max < fp->channels)
1793 runtime->hw.channels_max = fp->channels;
1794 if (fp->fmt_type == USB_FORMAT_TYPE_II && fp->frame_size > 0) {
1795 /* FIXME: there might be more than one audio formats... */
1796 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1797 fp->frame_size;
1798 }
1799 }
1800
1801 /* set the period time minimum 1ms */
1802 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1803 1000 * MIN_PACKS_URB,
1804 /*(nrpacks * MAX_URBS) * 1000*/ UINT_MAX);
1805
1806 if (check_hw_params_convention(subs)) {
1807 hwc_debug("setting extra hw constraints...\n");
1808 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1809 hw_rule_rate, subs,
1810 SNDRV_PCM_HW_PARAM_FORMAT,
1811 SNDRV_PCM_HW_PARAM_CHANNELS,
1812 -1)) < 0)
1813 return err;
1814 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1815 hw_rule_channels, subs,
1816 SNDRV_PCM_HW_PARAM_FORMAT,
1817 SNDRV_PCM_HW_PARAM_RATE,
1818 -1)) < 0)
1819 return err;
1820 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1821 hw_rule_format, subs,
1822 SNDRV_PCM_HW_PARAM_RATE,
1823 SNDRV_PCM_HW_PARAM_CHANNELS,
1824 -1)) < 0)
1825 return err;
1826 }
1827 return 0;
1828}
1829
Takashi Iwai86e07d32005-11-17 15:08:02 +01001830static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction,
1831 struct snd_pcm_hardware *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001833 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1834 struct snd_pcm_runtime *runtime = substream->runtime;
1835 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837 subs->interface = -1;
1838 subs->format = 0;
1839 runtime->hw = *hw;
1840 runtime->private_data = subs;
1841 subs->pcm_substream = substream;
1842 return setup_hw_info(runtime, subs);
1843}
1844
Takashi Iwai86e07d32005-11-17 15:08:02 +01001845static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001847 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1848 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 if (subs->interface >= 0) {
1851 usb_set_interface(subs->dev, subs->interface, 0);
1852 subs->interface = -1;
1853 }
1854 subs->pcm_substream = NULL;
1855 return 0;
1856}
1857
Takashi Iwai86e07d32005-11-17 15:08:02 +01001858static int snd_usb_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
1860 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK, &snd_usb_playback);
1861}
1862
Takashi Iwai86e07d32005-11-17 15:08:02 +01001863static int snd_usb_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
1865 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1866}
1867
Takashi Iwai86e07d32005-11-17 15:08:02 +01001868static int snd_usb_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
1870 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE, &snd_usb_capture);
1871}
1872
Takashi Iwai86e07d32005-11-17 15:08:02 +01001873static int snd_usb_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
1875 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1876}
1877
Takashi Iwai86e07d32005-11-17 15:08:02 +01001878static struct snd_pcm_ops snd_usb_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 .open = snd_usb_playback_open,
1880 .close = snd_usb_playback_close,
1881 .ioctl = snd_pcm_lib_ioctl,
1882 .hw_params = snd_usb_hw_params,
1883 .hw_free = snd_usb_hw_free,
1884 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001885 .trigger = snd_usb_pcm_playback_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02001887 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888};
1889
Takashi Iwai86e07d32005-11-17 15:08:02 +01001890static struct snd_pcm_ops snd_usb_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 .open = snd_usb_capture_open,
1892 .close = snd_usb_capture_close,
1893 .ioctl = snd_pcm_lib_ioctl,
1894 .hw_params = snd_usb_hw_params,
1895 .hw_free = snd_usb_hw_free,
1896 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001897 .trigger = snd_usb_pcm_capture_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02001899 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900};
1901
1902
1903
1904/*
1905 * helper functions
1906 */
1907
1908/*
1909 * combine bytes and get an integer value
1910 */
1911unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size)
1912{
1913 switch (size) {
1914 case 1: return *bytes;
1915 case 2: return combine_word(bytes);
1916 case 3: return combine_triple(bytes);
1917 case 4: return combine_quad(bytes);
1918 default: return 0;
1919 }
1920}
1921
1922/*
1923 * parse descriptor buffer and return the pointer starting the given
1924 * descriptor type.
1925 */
1926void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype)
1927{
1928 u8 *p, *end, *next;
1929
1930 p = descstart;
1931 end = p + desclen;
1932 for (; p < end;) {
1933 if (p[0] < 2)
1934 return NULL;
1935 next = p + p[0];
1936 if (next > end)
1937 return NULL;
1938 if (p[1] == dtype && (!after || (void *)p > after)) {
1939 return p;
1940 }
1941 p = next;
1942 }
1943 return NULL;
1944}
1945
1946/*
1947 * find a class-specified interface descriptor with the given subtype.
1948 */
1949void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype)
1950{
1951 unsigned char *p = after;
1952
1953 while ((p = snd_usb_find_desc(buffer, buflen, p,
1954 USB_DT_CS_INTERFACE)) != NULL) {
1955 if (p[0] >= 3 && p[2] == dsubtype)
1956 return p;
1957 }
1958 return NULL;
1959}
1960
1961/*
1962 * Wrapper for usb_control_msg().
1963 * Allocates a temp buffer to prevent dmaing from/to the stack.
1964 */
1965int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
1966 __u8 requesttype, __u16 value, __u16 index, void *data,
1967 __u16 size, int timeout)
1968{
1969 int err;
1970 void *buf = NULL;
1971
1972 if (size > 0) {
1973 buf = kmalloc(size, GFP_KERNEL);
1974 if (!buf)
1975 return -ENOMEM;
1976 memcpy(buf, data, size);
1977 }
1978 err = usb_control_msg(dev, pipe, request, requesttype,
1979 value, index, buf, size, timeout);
1980 if (size > 0) {
1981 memcpy(data, buf, size);
1982 kfree(buf);
1983 }
1984 return err;
1985}
1986
1987
1988/*
1989 * entry point for linux usb interface
1990 */
1991
1992static int usb_audio_probe(struct usb_interface *intf,
1993 const struct usb_device_id *id);
1994static void usb_audio_disconnect(struct usb_interface *intf);
1995
1996static struct usb_device_id usb_audio_ids [] = {
1997#include "usbquirks.h"
1998 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
1999 .bInterfaceClass = USB_CLASS_AUDIO,
2000 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL },
2001 { } /* Terminating entry */
2002};
2003
2004MODULE_DEVICE_TABLE (usb, usb_audio_ids);
2005
2006static struct usb_driver usb_audio_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 .name = "snd-usb-audio",
2008 .probe = usb_audio_probe,
2009 .disconnect = usb_audio_disconnect,
2010 .id_table = usb_audio_ids,
2011};
2012
2013
2014/*
2015 * proc interface for list the supported pcm formats
2016 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002017static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
2019 struct list_head *p;
2020 static char *sync_types[4] = {
2021 "NONE", "ASYNC", "ADAPTIVE", "SYNC"
2022 };
2023
2024 list_for_each(p, &subs->fmt_list) {
2025 struct audioformat *fp;
2026 fp = list_entry(p, struct audioformat, list);
2027 snd_iprintf(buffer, " Interface %d\n", fp->iface);
2028 snd_iprintf(buffer, " Altset %d\n", fp->altsetting);
2029 snd_iprintf(buffer, " Format: %s\n", snd_pcm_format_name(fp->format));
2030 snd_iprintf(buffer, " Channels: %d\n", fp->channels);
2031 snd_iprintf(buffer, " Endpoint: %d %s (%s)\n",
2032 fp->endpoint & USB_ENDPOINT_NUMBER_MASK,
2033 fp->endpoint & USB_DIR_IN ? "IN" : "OUT",
2034 sync_types[(fp->ep_attr & EP_ATTR_MASK) >> 2]);
2035 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) {
2036 snd_iprintf(buffer, " Rates: %d - %d (continuous)\n",
2037 fp->rate_min, fp->rate_max);
2038 } else {
2039 unsigned int i;
2040 snd_iprintf(buffer, " Rates: ");
2041 for (i = 0; i < fp->nr_rates; i++) {
2042 if (i > 0)
2043 snd_iprintf(buffer, ", ");
2044 snd_iprintf(buffer, "%d", fp->rate_table[i]);
2045 }
2046 snd_iprintf(buffer, "\n");
2047 }
2048 // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize);
2049 // snd_iprintf(buffer, " EP Attribute = 0x%x\n", fp->attributes);
2050 }
2051}
2052
Takashi Iwai86e07d32005-11-17 15:08:02 +01002053static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
2055 if (subs->running) {
2056 unsigned int i;
2057 snd_iprintf(buffer, " Status: Running\n");
2058 snd_iprintf(buffer, " Interface = %d\n", subs->interface);
2059 snd_iprintf(buffer, " Altset = %d\n", subs->format);
2060 snd_iprintf(buffer, " URBs = %d [ ", subs->nurbs);
2061 for (i = 0; i < subs->nurbs; i++)
2062 snd_iprintf(buffer, "%d ", subs->dataurb[i].packets);
2063 snd_iprintf(buffer, "]\n");
2064 snd_iprintf(buffer, " Packet Size = %d\n", subs->curpacksize);
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002065 snd_iprintf(buffer, " Momentary freq = %u Hz (%#x.%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 snd_usb_get_speed(subs->dev) == USB_SPEED_FULL
2067 ? get_full_speed_hz(subs->freqm)
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002068 : get_high_speed_hz(subs->freqm),
2069 subs->freqm >> 16, subs->freqm & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 } else {
2071 snd_iprintf(buffer, " Status: Stop\n");
2072 }
2073}
2074
Takashi Iwai86e07d32005-11-17 15:08:02 +01002075static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002077 struct snd_usb_stream *stream = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
2079 snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name);
2080
2081 if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) {
2082 snd_iprintf(buffer, "\nPlayback:\n");
2083 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2084 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2085 }
2086 if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) {
2087 snd_iprintf(buffer, "\nCapture:\n");
2088 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2089 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2090 }
2091}
2092
Takashi Iwai86e07d32005-11-17 15:08:02 +01002093static void proc_pcm_format_add(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002095 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 char name[32];
Takashi Iwai86e07d32005-11-17 15:08:02 +01002097 struct snd_card *card = stream->chip->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 sprintf(name, "stream%d", stream->pcm_index);
2100 if (! snd_card_proc_new(card, name, &entry))
2101 snd_info_set_text_ops(entry, stream, 1024, proc_pcm_format_read);
2102}
2103
2104
2105/*
2106 * initialize the substream instance.
2107 */
2108
Takashi Iwai86e07d32005-11-17 15:08:02 +01002109static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002111 struct snd_usb_substream *subs = &as->substream[stream];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113 INIT_LIST_HEAD(&subs->fmt_list);
2114 spin_lock_init(&subs->lock);
2115
2116 subs->stream = as;
2117 subs->direction = stream;
2118 subs->dev = as->chip->dev;
2119 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
2120 subs->ops = audio_urb_ops[stream];
2121 else
2122 subs->ops = audio_urb_ops_high_speed[stream];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 snd_pcm_set_ops(as->pcm, stream,
2124 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2125 &snd_usb_playback_ops : &snd_usb_capture_ops);
2126
2127 list_add_tail(&fp->list, &subs->fmt_list);
2128 subs->formats |= 1ULL << fp->format;
2129 subs->endpoint = fp->endpoint;
2130 subs->num_formats++;
2131 subs->fmt_type = fp->fmt_type;
2132}
2133
2134
2135/*
2136 * free a substream
2137 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002138static void free_substream(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
2140 struct list_head *p, *n;
2141
2142 if (! subs->num_formats)
2143 return; /* not initialized */
2144 list_for_each_safe(p, n, &subs->fmt_list) {
2145 struct audioformat *fp = list_entry(p, struct audioformat, list);
2146 kfree(fp->rate_table);
2147 kfree(fp);
2148 }
2149}
2150
2151
2152/*
2153 * free a usb stream instance
2154 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002155static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 free_substream(&stream->substream[0]);
2158 free_substream(&stream->substream[1]);
2159 list_del(&stream->list);
2160 kfree(stream);
2161}
2162
Takashi Iwai86e07d32005-11-17 15:08:02 +01002163static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002165 struct snd_usb_stream *stream = pcm->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (stream) {
2167 stream->pcm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 snd_usb_audio_stream_free(stream);
2169 }
2170}
2171
2172
2173/*
2174 * add this endpoint to the chip instance.
2175 * if a stream with the same endpoint already exists, append to it.
2176 * if not, create a new pcm stream.
2177 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002178static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
2180 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002181 struct snd_usb_stream *as;
2182 struct snd_usb_substream *subs;
2183 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 int err;
2185
2186 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002187 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 if (as->fmt_type != fp->fmt_type)
2189 continue;
2190 subs = &as->substream[stream];
2191 if (! subs->endpoint)
2192 continue;
2193 if (subs->endpoint == fp->endpoint) {
2194 list_add_tail(&fp->list, &subs->fmt_list);
2195 subs->num_formats++;
2196 subs->formats |= 1ULL << fp->format;
2197 return 0;
2198 }
2199 }
2200 /* look for an empty stream */
2201 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002202 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 if (as->fmt_type != fp->fmt_type)
2204 continue;
2205 subs = &as->substream[stream];
2206 if (subs->endpoint)
2207 continue;
2208 err = snd_pcm_new_stream(as->pcm, stream, 1);
2209 if (err < 0)
2210 return err;
2211 init_substream(as, stream, fp);
2212 return 0;
2213 }
2214
2215 /* create a new pcm */
2216 as = kmalloc(sizeof(*as), GFP_KERNEL);
2217 if (! as)
2218 return -ENOMEM;
2219 memset(as, 0, sizeof(*as));
2220 as->pcm_index = chip->pcm_devs;
2221 as->chip = chip;
2222 as->fmt_type = fp->fmt_type;
2223 err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
2224 stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
2225 stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
2226 &pcm);
2227 if (err < 0) {
2228 kfree(as);
2229 return err;
2230 }
2231 as->pcm = pcm;
2232 pcm->private_data = as;
2233 pcm->private_free = snd_usb_audio_pcm_free;
2234 pcm->info_flags = 0;
2235 if (chip->pcm_devs > 0)
2236 sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
2237 else
2238 strcpy(pcm->name, "USB Audio");
2239
2240 init_substream(as, stream, fp);
2241
2242 list_add(&as->list, &chip->pcm_list);
2243 chip->pcm_devs++;
2244
2245 proc_pcm_format_add(as);
2246
2247 return 0;
2248}
2249
2250
2251/*
2252 * check if the device uses big-endian samples
2253 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002254static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002256 switch (chip->usb_id) {
2257 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
2258 if (fp->endpoint & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 return 1;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002260 break;
2261 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2262 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 }
2264 return 0;
2265}
2266
2267/*
2268 * parse the audio format type I descriptor
2269 * and returns the corresponding pcm format
2270 *
2271 * @dev: usb device
2272 * @fp: audioformat record
2273 * @format: the format tag (wFormatTag)
2274 * @fmt: the format type descriptor
2275 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002276static int parse_audio_format_i_type(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 int format, unsigned char *fmt)
2278{
2279 int pcm_format;
2280 int sample_width, sample_bytes;
2281
2282 /* FIXME: correct endianess and sign? */
2283 pcm_format = -1;
2284 sample_width = fmt[6];
2285 sample_bytes = fmt[5];
2286 switch (format) {
2287 case 0: /* some devices don't define this correctly... */
2288 snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002289 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 /* fall-through */
2291 case USB_AUDIO_FORMAT_PCM:
2292 if (sample_width > sample_bytes * 8) {
2293 snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002294 chip->dev->devnum, fp->iface, fp->altsetting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 sample_width, sample_bytes);
2296 }
2297 /* check the format byte size */
2298 switch (fmt[5]) {
2299 case 1:
2300 pcm_format = SNDRV_PCM_FORMAT_S8;
2301 break;
2302 case 2:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002303 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 pcm_format = SNDRV_PCM_FORMAT_S16_BE; /* grrr, big endian!! */
2305 else
2306 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2307 break;
2308 case 3:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002309 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */
2311 else
2312 pcm_format = SNDRV_PCM_FORMAT_S24_3LE;
2313 break;
2314 case 4:
2315 pcm_format = SNDRV_PCM_FORMAT_S32_LE;
2316 break;
2317 default:
2318 snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002319 chip->dev->devnum, fp->iface,
2320 fp->altsetting, sample_width, sample_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 break;
2322 }
2323 break;
2324 case USB_AUDIO_FORMAT_PCM8:
2325 /* Dallas DS4201 workaround */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002326 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 pcm_format = SNDRV_PCM_FORMAT_S8;
2328 else
2329 pcm_format = SNDRV_PCM_FORMAT_U8;
2330 break;
2331 case USB_AUDIO_FORMAT_IEEE_FLOAT:
2332 pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE;
2333 break;
2334 case USB_AUDIO_FORMAT_ALAW:
2335 pcm_format = SNDRV_PCM_FORMAT_A_LAW;
2336 break;
2337 case USB_AUDIO_FORMAT_MU_LAW:
2338 pcm_format = SNDRV_PCM_FORMAT_MU_LAW;
2339 break;
2340 default:
2341 snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002342 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 break;
2344 }
2345 return pcm_format;
2346}
2347
2348
2349/*
2350 * parse the format descriptor and stores the possible sample rates
2351 * on the audioformat table.
2352 *
2353 * @dev: usb device
2354 * @fp: audioformat record
2355 * @fmt: the format descriptor
2356 * @offset: the start offset of descriptor pointing the rate type
2357 * (7 for type I and II, 8 for type II)
2358 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002359static int parse_audio_format_rates(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 unsigned char *fmt, int offset)
2361{
2362 int nr_rates = fmt[offset];
2363 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
2364 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002365 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 return -1;
2367 }
2368
2369 if (nr_rates) {
2370 /*
2371 * build the rate table and bitmap flags
2372 */
2373 int r, idx, c;
2374 /* this table corresponds to the SNDRV_PCM_RATE_XXX bit */
2375 static unsigned int conv_rates[] = {
2376 5512, 8000, 11025, 16000, 22050, 32000, 44100, 48000,
2377 64000, 88200, 96000, 176400, 192000
2378 };
2379 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
2380 if (fp->rate_table == NULL) {
2381 snd_printk(KERN_ERR "cannot malloc\n");
2382 return -1;
2383 }
2384
2385 fp->nr_rates = nr_rates;
2386 fp->rate_min = fp->rate_max = combine_triple(&fmt[8]);
2387 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
2388 unsigned int rate = fp->rate_table[r] = combine_triple(&fmt[idx]);
2389 if (rate < fp->rate_min)
2390 fp->rate_min = rate;
2391 else if (rate > fp->rate_max)
2392 fp->rate_max = rate;
2393 for (c = 0; c < (int)ARRAY_SIZE(conv_rates); c++) {
2394 if (rate == conv_rates[c]) {
2395 fp->rates |= (1 << c);
2396 break;
2397 }
2398 }
2399 }
2400 } else {
2401 /* continuous rates */
2402 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
2403 fp->rate_min = combine_triple(&fmt[offset + 1]);
2404 fp->rate_max = combine_triple(&fmt[offset + 4]);
2405 }
2406 return 0;
2407}
2408
2409/*
2410 * parse the format type I and III descriptors
2411 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002412static int parse_audio_format_i(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 int format, unsigned char *fmt)
2414{
2415 int pcm_format;
2416
2417 if (fmt[3] == USB_FORMAT_TYPE_III) {
2418 /* FIXME: the format type is really IECxxx
2419 * but we give normal PCM format to get the existing
2420 * apps working...
2421 */
2422 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2423 } else {
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002424 pcm_format = parse_audio_format_i_type(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (pcm_format < 0)
2426 return -1;
2427 }
2428 fp->format = pcm_format;
2429 fp->channels = fmt[4];
2430 if (fp->channels < 1) {
2431 snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002432 chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 return -1;
2434 }
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002435 return parse_audio_format_rates(chip, fp, fmt, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436}
2437
2438/*
2439 * prase the format type II descriptor
2440 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002441static int parse_audio_format_ii(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 int format, unsigned char *fmt)
2443{
2444 int brate, framesize;
2445 switch (format) {
2446 case USB_AUDIO_FORMAT_AC3:
2447 /* FIXME: there is no AC3 format defined yet */
2448 // fp->format = SNDRV_PCM_FORMAT_AC3;
2449 fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */
2450 break;
2451 case USB_AUDIO_FORMAT_MPEG:
2452 fp->format = SNDRV_PCM_FORMAT_MPEG;
2453 break;
2454 default:
2455 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 +02002456 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 fp->format = SNDRV_PCM_FORMAT_MPEG;
2458 break;
2459 }
2460 fp->channels = 1;
2461 brate = combine_word(&fmt[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */
2462 framesize = combine_word(&fmt[6]); /* fmt[6,7]: wSamplesPerFrame */
2463 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
2464 fp->frame_size = framesize;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002465 return parse_audio_format_rates(chip, fp, fmt, 8); /* fmt[8..] sample rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467
Takashi Iwai86e07d32005-11-17 15:08:02 +01002468static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 int format, unsigned char *fmt, int stream)
2470{
2471 int err;
2472
2473 switch (fmt[3]) {
2474 case USB_FORMAT_TYPE_I:
2475 case USB_FORMAT_TYPE_III:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002476 err = parse_audio_format_i(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 break;
2478 case USB_FORMAT_TYPE_II:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002479 err = parse_audio_format_ii(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 break;
2481 default:
2482 snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002483 chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 return -1;
2485 }
2486 fp->fmt_type = fmt[3];
2487 if (err < 0)
2488 return err;
2489#if 1
Clemens Ladisch33159372006-01-13 08:11:22 +01002490 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 /* extigy apparently supports sample rates other than 48k
2492 * but not in ordinary way. so we enable only 48k atm.
2493 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002494 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
Clemens Ladisch33159372006-01-13 08:11:22 +01002495 chip->usb_id == USB_ID(0x041e, 0x3020) ||
2496 chip->usb_id == USB_ID(0x041e, 0x3061)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 if (fmt[3] == USB_FORMAT_TYPE_I &&
Clemens Ladisch8c1872d2005-04-28 09:31:53 +02002498 fp->rates != SNDRV_PCM_RATE_48000 &&
2499 fp->rates != SNDRV_PCM_RATE_96000)
Clemens Ladischb4d3f9d2005-06-27 08:18:27 +02002500 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 }
2502#endif
2503 return 0;
2504}
2505
Takashi Iwai86e07d32005-11-17 15:08:02 +01002506static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
2508 struct usb_device *dev;
2509 struct usb_interface *iface;
2510 struct usb_host_interface *alts;
2511 struct usb_interface_descriptor *altsd;
2512 int i, altno, err, stream;
2513 int format;
2514 struct audioformat *fp;
2515 unsigned char *fmt, *csep;
2516
2517 dev = chip->dev;
2518
2519 /* parse the interface's altsettings */
2520 iface = usb_ifnum_to_if(dev, iface_no);
2521 for (i = 0; i < iface->num_altsetting; i++) {
2522 alts = &iface->altsetting[i];
2523 altsd = get_iface_desc(alts);
2524 /* skip invalid one */
2525 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2526 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2527 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING &&
2528 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
2529 altsd->bNumEndpoints < 1 ||
2530 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
2531 continue;
2532 /* must be isochronous */
2533 if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
2534 USB_ENDPOINT_XFER_ISOC)
2535 continue;
2536 /* check direction */
2537 stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
2538 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2539 altno = altsd->bAlternateSetting;
2540
2541 /* get audio formats */
2542 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, AS_GENERAL);
2543 if (!fmt) {
2544 snd_printk(KERN_ERR "%d:%u:%d : AS_GENERAL descriptor not found\n",
2545 dev->devnum, iface_no, altno);
2546 continue;
2547 }
2548
2549 if (fmt[0] < 7) {
2550 snd_printk(KERN_ERR "%d:%u:%d : invalid AS_GENERAL desc\n",
2551 dev->devnum, iface_no, altno);
2552 continue;
2553 }
2554
2555 format = (fmt[6] << 8) | fmt[5]; /* remember the format value */
2556
2557 /* get format type */
2558 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, FORMAT_TYPE);
2559 if (!fmt) {
2560 snd_printk(KERN_ERR "%d:%u:%d : no FORMAT_TYPE desc\n",
2561 dev->devnum, iface_no, altno);
2562 continue;
2563 }
2564 if (fmt[0] < 8) {
2565 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
2566 dev->devnum, iface_no, altno);
2567 continue;
2568 }
2569
2570 csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
2571 /* Creamware Noah has this descriptor after the 2nd endpoint */
2572 if (!csep && altsd->bNumEndpoints >= 2)
2573 csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
2574 if (!csep || csep[0] < 7 || csep[2] != EP_GENERAL) {
2575 snd_printk(KERN_ERR "%d:%u:%d : no or invalid class specific endpoint descriptor\n",
2576 dev->devnum, iface_no, altno);
2577 continue;
2578 }
2579
2580 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
2581 if (! fp) {
2582 snd_printk(KERN_ERR "cannot malloc\n");
2583 return -ENOMEM;
2584 }
2585
2586 memset(fp, 0, sizeof(*fp));
2587 fp->iface = iface_no;
2588 fp->altsetting = altno;
2589 fp->altset_idx = i;
2590 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2591 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Clemens Ladisch573567e2005-06-27 08:17:30 +02002593 if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
2594 fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
2595 * (fp->maxpacksize & 0x7ff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 fp->attributes = csep[3];
2597
2598 /* some quirks for attributes here */
2599
Clemens Ladischc3f93292005-05-04 14:56:04 +02002600 switch (chip->usb_id) {
2601 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 /* Optoplay sets the sample rate attribute although
2603 * it seems not supporting it in fact.
2604 */
2605 fp->attributes &= ~EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002606 break;
2607 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
2608 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 /* doesn't set the sample rate attribute, but supports it */
2610 fp->attributes |= EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002611 break;
2612 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
2613 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
2614 an older model 77d:223) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 /*
2616 * plantronics headset and Griffin iMic have set adaptive-in
2617 * although it's really not...
2618 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 fp->ep_attr &= ~EP_ATTR_MASK;
2620 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2621 fp->ep_attr |= EP_ATTR_ADAPTIVE;
2622 else
2623 fp->ep_attr |= EP_ATTR_SYNC;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002624 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 }
2626
2627 /* ok, let's parse further... */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002628 if (parse_audio_format(chip, fp, format, fmt, stream) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 kfree(fp->rate_table);
2630 kfree(fp);
2631 continue;
2632 }
2633
2634 snd_printdd(KERN_INFO "%d:%u:%d: add audio endpoint 0x%x\n", dev->devnum, iface_no, i, fp->endpoint);
2635 err = add_audio_endpoint(chip, stream, fp);
2636 if (err < 0) {
2637 kfree(fp->rate_table);
2638 kfree(fp);
2639 return err;
2640 }
2641 /* try to set the interface... */
2642 usb_set_interface(chip->dev, iface_no, altno);
2643 init_usb_pitch(chip->dev, iface_no, alts, fp);
2644 init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max);
2645 }
2646 return 0;
2647}
2648
2649
2650/*
2651 * disconnect streams
2652 * called from snd_usb_audio_disconnect()
2653 */
Clemens Ladischee733392005-04-25 10:34:13 +02002654static void snd_usb_stream_disconnect(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655{
2656 int idx;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002657 struct snd_usb_stream *as;
2658 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Takashi Iwai86e07d32005-11-17 15:08:02 +01002660 as = list_entry(head, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 for (idx = 0; idx < 2; idx++) {
2662 subs = &as->substream[idx];
2663 if (!subs->num_formats)
2664 return;
2665 release_substream_urbs(subs, 1);
2666 subs->interface = -1;
2667 }
2668}
2669
2670/*
2671 * parse audio control descriptor and create pcm/midi streams
2672 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002673static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674{
2675 struct usb_device *dev = chip->dev;
2676 struct usb_host_interface *host_iface;
2677 struct usb_interface *iface;
2678 unsigned char *p1;
2679 int i, j;
2680
2681 /* find audiocontrol interface */
2682 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
2683 if (!(p1 = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen, NULL, HEADER))) {
2684 snd_printk(KERN_ERR "cannot find HEADER\n");
2685 return -EINVAL;
2686 }
2687 if (! p1[7] || p1[0] < 8 + p1[7]) {
2688 snd_printk(KERN_ERR "invalid HEADER\n");
2689 return -EINVAL;
2690 }
2691
2692 /*
2693 * parse all USB audio streaming interfaces
2694 */
2695 for (i = 0; i < p1[7]; i++) {
2696 struct usb_host_interface *alts;
2697 struct usb_interface_descriptor *altsd;
2698 j = p1[8 + i];
2699 iface = usb_ifnum_to_if(dev, j);
2700 if (!iface) {
2701 snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
2702 dev->devnum, ctrlif, j);
2703 continue;
2704 }
2705 if (usb_interface_claimed(iface)) {
2706 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n", dev->devnum, ctrlif, j);
2707 continue;
2708 }
2709 alts = &iface->altsetting[0];
2710 altsd = get_iface_desc(alts);
2711 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
2712 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
2713 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDI_STREAMING) {
2714 if (snd_usb_create_midi_interface(chip, iface, NULL) < 0) {
2715 snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n", dev->devnum, ctrlif, j);
2716 continue;
2717 }
2718 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2719 continue;
2720 }
2721 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2722 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2723 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING) {
2724 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n", dev->devnum, ctrlif, j, altsd->bInterfaceClass);
2725 /* skip non-supported classes */
2726 continue;
2727 }
2728 if (! parse_audio_endpoints(chip, j)) {
2729 usb_set_interface(dev, j, 0); /* reset the current interface */
2730 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2731 }
2732 }
2733
2734 return 0;
2735}
2736
2737/*
2738 * create a stream for an endpoint/altsetting without proper descriptors
2739 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002740static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002742 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
2744 struct audioformat *fp;
2745 struct usb_host_interface *alts;
2746 int stream, err;
2747 int *rate_table = NULL;
2748
2749 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
2750 if (! fp) {
2751 snd_printk(KERN_ERR "cannot malloc\n");
2752 return -ENOMEM;
2753 }
2754 memcpy(fp, quirk->data, sizeof(*fp));
2755 if (fp->nr_rates > 0) {
2756 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
2757 if (!rate_table) {
2758 kfree(fp);
2759 return -ENOMEM;
2760 }
2761 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
2762 fp->rate_table = rate_table;
2763 }
2764
2765 stream = (fp->endpoint & USB_DIR_IN)
2766 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2767 err = add_audio_endpoint(chip, stream, fp);
2768 if (err < 0) {
2769 kfree(fp);
2770 kfree(rate_table);
2771 return err;
2772 }
2773 if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
2774 fp->altset_idx >= iface->num_altsetting) {
2775 kfree(fp);
2776 kfree(rate_table);
2777 return -EINVAL;
2778 }
2779 alts = &iface->altsetting[fp->altset_idx];
2780 usb_set_interface(chip->dev, fp->iface, 0);
2781 init_usb_pitch(chip->dev, fp->iface, alts, fp);
2782 init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max);
2783 return 0;
2784}
2785
2786/*
2787 * create a stream for an interface with proper descriptors
2788 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002789static int create_standard_audio_quirk(struct snd_usb_audio *chip,
Clemens Ladischd1bda042005-09-14 08:36:03 +02002790 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002791 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792{
2793 struct usb_host_interface *alts;
2794 struct usb_interface_descriptor *altsd;
2795 int err;
2796
2797 alts = &iface->altsetting[0];
2798 altsd = get_iface_desc(alts);
Clemens Ladischd1bda042005-09-14 08:36:03 +02002799 err = parse_audio_endpoints(chip, altsd->bInterfaceNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 if (err < 0) {
2801 snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
2802 altsd->bInterfaceNumber, err);
2803 return err;
2804 }
Clemens Ladischd1bda042005-09-14 08:36:03 +02002805 /* reset the current interface */
2806 usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 return 0;
2808}
2809
2810/*
2811 * Create a stream for an Edirol UA-700/UA-25 interface. The only way
2812 * to detect the sample rate is by looking at wMaxPacketSize.
2813 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002814static int create_ua700_ua25_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02002815 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002816 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817{
2818 static const struct audioformat ua_format = {
2819 .format = SNDRV_PCM_FORMAT_S24_3LE,
2820 .channels = 2,
2821 .fmt_type = USB_FORMAT_TYPE_I,
2822 .altsetting = 1,
2823 .altset_idx = 1,
2824 .rates = SNDRV_PCM_RATE_CONTINUOUS,
2825 };
2826 struct usb_host_interface *alts;
2827 struct usb_interface_descriptor *altsd;
2828 struct audioformat *fp;
2829 int stream, err;
2830
2831 /* both PCM and MIDI interfaces have 2 altsettings */
2832 if (iface->num_altsetting != 2)
2833 return -ENXIO;
2834 alts = &iface->altsetting[1];
2835 altsd = get_iface_desc(alts);
2836
2837 if (altsd->bNumEndpoints == 2) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002838 static const struct snd_usb_midi_endpoint_info ua700_ep = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 .out_cables = 0x0003,
2840 .in_cables = 0x0003
2841 };
Takashi Iwai86e07d32005-11-17 15:08:02 +01002842 static const struct snd_usb_audio_quirk ua700_quirk = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2844 .data = &ua700_ep
2845 };
Takashi Iwai86e07d32005-11-17 15:08:02 +01002846 static const struct snd_usb_midi_endpoint_info ua25_ep = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 .out_cables = 0x0001,
2848 .in_cables = 0x0001
2849 };
Takashi Iwai86e07d32005-11-17 15:08:02 +01002850 static const struct snd_usb_audio_quirk ua25_quirk = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2852 .data = &ua25_ep
2853 };
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002854 if (chip->usb_id == USB_ID(0x0582, 0x002b))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 return snd_usb_create_midi_interface(chip, iface,
2856 &ua700_quirk);
2857 else
2858 return snd_usb_create_midi_interface(chip, iface,
2859 &ua25_quirk);
2860 }
2861
2862 if (altsd->bNumEndpoints != 1)
2863 return -ENXIO;
2864
2865 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
2866 if (!fp)
2867 return -ENOMEM;
2868 memcpy(fp, &ua_format, sizeof(*fp));
2869
2870 fp->iface = altsd->bInterfaceNumber;
2871 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2872 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
2873 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
2874
2875 switch (fp->maxpacksize) {
2876 case 0x120:
2877 fp->rate_max = fp->rate_min = 44100;
2878 break;
2879 case 0x138:
2880 case 0x140:
2881 fp->rate_max = fp->rate_min = 48000;
2882 break;
2883 case 0x258:
2884 case 0x260:
2885 fp->rate_max = fp->rate_min = 96000;
2886 break;
2887 default:
2888 snd_printk(KERN_ERR "unknown sample rate\n");
2889 kfree(fp);
2890 return -ENXIO;
2891 }
2892
2893 stream = (fp->endpoint & USB_DIR_IN)
2894 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2895 err = add_audio_endpoint(chip, stream, fp);
2896 if (err < 0) {
2897 kfree(fp);
2898 return err;
2899 }
2900 usb_set_interface(chip->dev, fp->iface, 0);
2901 return 0;
2902}
2903
2904/*
2905 * Create a stream for an Edirol UA-1000 interface.
2906 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002907static int create_ua1000_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02002908 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002909 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910{
2911 static const struct audioformat ua1000_format = {
2912 .format = SNDRV_PCM_FORMAT_S32_LE,
2913 .fmt_type = USB_FORMAT_TYPE_I,
2914 .altsetting = 1,
2915 .altset_idx = 1,
2916 .attributes = 0,
2917 .rates = SNDRV_PCM_RATE_CONTINUOUS,
2918 };
2919 struct usb_host_interface *alts;
2920 struct usb_interface_descriptor *altsd;
2921 struct audioformat *fp;
2922 int stream, err;
2923
2924 if (iface->num_altsetting != 2)
2925 return -ENXIO;
2926 alts = &iface->altsetting[1];
2927 altsd = get_iface_desc(alts);
2928 if (alts->extralen != 11 || alts->extra[1] != CS_AUDIO_INTERFACE ||
2929 altsd->bNumEndpoints != 1)
2930 return -ENXIO;
2931
2932 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
2933 if (!fp)
2934 return -ENOMEM;
2935 memcpy(fp, &ua1000_format, sizeof(*fp));
2936
2937 fp->channels = alts->extra[4];
2938 fp->iface = altsd->bInterfaceNumber;
2939 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2940 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
2941 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
2942 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[8]);
2943
2944 stream = (fp->endpoint & USB_DIR_IN)
2945 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2946 err = add_audio_endpoint(chip, stream, fp);
2947 if (err < 0) {
2948 kfree(fp);
2949 return err;
2950 }
2951 /* FIXME: playback must be synchronized to capture */
2952 usb_set_interface(chip->dev, fp->iface, 0);
2953 return 0;
2954}
2955
Takashi Iwai86e07d32005-11-17 15:08:02 +01002956static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002958 const struct snd_usb_audio_quirk *quirk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960/*
2961 * handle the quirks for the contained interfaces
2962 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002963static int create_composite_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002965 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
2967 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
2968 int err;
2969
2970 for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
2971 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
2972 if (!iface)
2973 continue;
2974 if (quirk->ifnum != probed_ifnum &&
2975 usb_interface_claimed(iface))
2976 continue;
2977 err = snd_usb_create_quirk(chip, iface, quirk);
2978 if (err < 0)
2979 return err;
2980 if (quirk->ifnum != probed_ifnum)
2981 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2982 }
2983 return 0;
2984}
2985
Takashi Iwai86e07d32005-11-17 15:08:02 +01002986static int ignore_interface_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)
Clemens Ladisch854af952005-07-25 16:19:10 +02002989{
2990 return 0;
2991}
2992
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
2994/*
2995 * boot quirks
2996 */
2997
2998#define EXTIGY_FIRMWARE_SIZE_OLD 794
2999#define EXTIGY_FIRMWARE_SIZE_NEW 483
3000
3001static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
3002{
3003 struct usb_host_config *config = dev->actconfig;
3004 int err;
3005
3006 if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
3007 le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
3008 snd_printdd("sending Extigy boot sequence...\n");
3009 /* Send message to force it to reconnect with full interface. */
3010 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
3011 0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000);
3012 if (err < 0) snd_printdd("error sending boot message: %d\n", err);
3013 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
3014 &dev->descriptor, sizeof(dev->descriptor));
3015 config = dev->actconfig;
3016 if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
3017 err = usb_reset_configuration(dev);
3018 if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
3019 snd_printdd("extigy_boot: new boot length = %d\n",
3020 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
3021 return -ENODEV; /* quit this anyway */
3022 }
3023 return 0;
3024}
3025
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003026static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
3027{
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003028 u8 buf = 1;
3029
3030 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
3031 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3032 0, 0, &buf, 1, 1000);
3033 if (buf == 0) {
3034 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
3035 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3036 1, 2000, NULL, 0, 1000);
3037 return -ENODEV;
3038 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003039 return 0;
3040}
3041
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
3043/*
3044 * audio-interface quirks
3045 *
3046 * returns zero if no standard audio/MIDI parsing is needed.
3047 * returns a postive value if standard audio/midi interfaces are parsed
3048 * after this.
3049 * returns a negative value at error.
3050 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003051static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003053 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003055 typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *,
3056 const struct snd_usb_audio_quirk *);
Clemens Ladisch854af952005-07-25 16:19:10 +02003057 static const quirk_func_t quirk_funcs[] = {
3058 [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
3059 [QUIRK_COMPOSITE] = create_composite_quirk,
3060 [QUIRK_MIDI_STANDARD_INTERFACE] = snd_usb_create_midi_interface,
3061 [QUIRK_MIDI_FIXED_ENDPOINT] = snd_usb_create_midi_interface,
3062 [QUIRK_MIDI_YAMAHA] = snd_usb_create_midi_interface,
3063 [QUIRK_MIDI_MIDIMAN] = snd_usb_create_midi_interface,
3064 [QUIRK_MIDI_NOVATION] = snd_usb_create_midi_interface,
3065 [QUIRK_MIDI_RAW] = snd_usb_create_midi_interface,
3066 [QUIRK_MIDI_EMAGIC] = snd_usb_create_midi_interface,
3067 [QUIRK_MIDI_MIDITECH] = snd_usb_create_midi_interface,
Clemens Ladischd1bda042005-09-14 08:36:03 +02003068 [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003069 [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
3070 [QUIRK_AUDIO_EDIROL_UA700_UA25] = create_ua700_ua25_quirk,
3071 [QUIRK_AUDIO_EDIROL_UA1000] = create_ua1000_quirk,
3072 };
3073
3074 if (quirk->type < QUIRK_TYPE_COUNT) {
3075 return quirk_funcs[quirk->type](chip, iface, quirk);
3076 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
3078 return -ENXIO;
3079 }
3080}
3081
3082
3083/*
3084 * common proc files to show the usb device info
3085 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003086static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003088 struct snd_usb_audio *chip = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 if (! chip->shutdown)
3090 snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum);
3091}
3092
Takashi Iwai86e07d32005-11-17 15:08:02 +01003093static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003095 struct snd_usb_audio *chip = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 if (! chip->shutdown)
3097 snd_iprintf(buffer, "%04x:%04x\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003098 USB_ID_VENDOR(chip->usb_id),
3099 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100}
3101
Takashi Iwai86e07d32005-11-17 15:08:02 +01003102static void snd_usb_audio_create_proc(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003104 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 if (! snd_card_proc_new(chip->card, "usbbus", &entry))
3106 snd_info_set_text_ops(entry, chip, 1024, proc_audio_usbbus_read);
3107 if (! snd_card_proc_new(chip->card, "usbid", &entry))
3108 snd_info_set_text_ops(entry, chip, 1024, proc_audio_usbid_read);
3109}
3110
3111/*
3112 * free the chip instance
3113 *
3114 * here we have to do not much, since pcm and controls are already freed
3115 *
3116 */
3117
Takashi Iwai86e07d32005-11-17 15:08:02 +01003118static int snd_usb_audio_free(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119{
3120 kfree(chip);
3121 return 0;
3122}
3123
Takashi Iwai86e07d32005-11-17 15:08:02 +01003124static int snd_usb_audio_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003126 struct snd_usb_audio *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 return snd_usb_audio_free(chip);
3128}
3129
3130
3131/*
3132 * create a chip instance and set its names.
3133 */
3134static int snd_usb_audio_create(struct usb_device *dev, int idx,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003135 const struct snd_usb_audio_quirk *quirk,
3136 struct snd_usb_audio **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003138 struct snd_card *card;
3139 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 int err, len;
3141 char component[14];
Takashi Iwai86e07d32005-11-17 15:08:02 +01003142 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 .dev_free = snd_usb_audio_dev_free,
3144 };
3145
3146 *rchip = NULL;
3147
3148 if (snd_usb_get_speed(dev) != USB_SPEED_FULL &&
3149 snd_usb_get_speed(dev) != USB_SPEED_HIGH) {
3150 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
3151 return -ENXIO;
3152 }
3153
3154 card = snd_card_new(index[idx], id[idx], THIS_MODULE, 0);
3155 if (card == NULL) {
3156 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
3157 return -ENOMEM;
3158 }
3159
Takashi Iwai561b2202005-09-09 14:22:34 +02003160 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 if (! chip) {
3162 snd_card_free(card);
3163 return -ENOMEM;
3164 }
3165
3166 chip->index = idx;
3167 chip->dev = dev;
3168 chip->card = card;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003169 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3170 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 INIT_LIST_HEAD(&chip->pcm_list);
3172 INIT_LIST_HEAD(&chip->midi_list);
Clemens Ladisch84957a82005-04-29 16:23:13 +02003173 INIT_LIST_HEAD(&chip->mixer_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
3176 snd_usb_audio_free(chip);
3177 snd_card_free(card);
3178 return err;
3179 }
3180
3181 strcpy(card->driver, "USB-Audio");
3182 sprintf(component, "USB%04x:%04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003183 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 snd_component_add(card, component);
3185
3186 /* retrieve the device string as shortname */
3187 if (quirk && quirk->product_name) {
3188 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
3189 } else {
3190 if (!dev->descriptor.iProduct ||
3191 usb_string(dev, dev->descriptor.iProduct,
3192 card->shortname, sizeof(card->shortname)) <= 0) {
3193 /* no name available from anywhere, so use ID */
3194 sprintf(card->shortname, "USB Device %#04x:%#04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003195 USB_ID_VENDOR(chip->usb_id),
3196 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 }
3198 }
3199
3200 /* retrieve the vendor and device strings as longname */
3201 if (quirk && quirk->vendor_name) {
3202 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
3203 } else {
3204 if (dev->descriptor.iManufacturer)
3205 len = usb_string(dev, dev->descriptor.iManufacturer,
3206 card->longname, sizeof(card->longname));
3207 else
3208 len = 0;
3209 /* we don't really care if there isn't any vendor string */
3210 }
3211 if (len > 0)
3212 strlcat(card->longname, " ", sizeof(card->longname));
3213
3214 strlcat(card->longname, card->shortname, sizeof(card->longname));
3215
3216 len = strlcat(card->longname, " at ", sizeof(card->longname));
3217
3218 if (len < sizeof(card->longname))
3219 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
3220
3221 strlcat(card->longname,
3222 snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" : ", high speed",
3223 sizeof(card->longname));
3224
3225 snd_usb_audio_create_proc(chip);
3226
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 *rchip = chip;
3228 return 0;
3229}
3230
3231
3232/*
3233 * probe the active usb device
3234 *
3235 * note that this can be called multiple times per a device, when it
3236 * includes multiple audio control interfaces.
3237 *
3238 * thus we check the usb device pointer and creates the card instance
3239 * only at the first time. the successive calls of this function will
3240 * append the pcm interface to the corresponding card.
3241 */
3242static void *snd_usb_audio_probe(struct usb_device *dev,
3243 struct usb_interface *intf,
3244 const struct usb_device_id *usb_id)
3245{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003246 const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 int i, err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01003248 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 struct usb_host_interface *alts;
3250 int ifnum;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003251 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
3253 alts = &intf->altsetting[0];
3254 ifnum = get_iface_desc(alts)->bInterfaceNumber;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003255 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3256 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
3258 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
3259 goto __err_val;
3260
3261 /* SB Extigy needs special boot-up sequence */
3262 /* if more models come, this will go to the quirk list. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003263 if (id == USB_ID(0x041e, 0x3000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 if (snd_usb_extigy_boot_quirk(dev, intf) < 0)
3265 goto __err_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003267 /* SB Audigy 2 NX needs its own boot-up magic, too */
3268 if (id == USB_ID(0x041e, 0x3020)) {
3269 if (snd_usb_audigy2nx_boot_quirk(dev) < 0)
3270 goto __err_val;
3271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
3273 /*
3274 * found a config. now register to ALSA
3275 */
3276
3277 /* check whether it's already registered */
3278 chip = NULL;
3279 down(&register_mutex);
3280 for (i = 0; i < SNDRV_CARDS; i++) {
3281 if (usb_chip[i] && usb_chip[i]->dev == dev) {
3282 if (usb_chip[i]->shutdown) {
3283 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
3284 goto __error;
3285 }
3286 chip = usb_chip[i];
3287 break;
3288 }
3289 }
3290 if (! chip) {
3291 /* it's a fresh one.
3292 * now look for an empty slot and create a new card instance
3293 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 for (i = 0; i < SNDRV_CARDS; i++)
3295 if (enable[i] && ! usb_chip[i] &&
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003296 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
3297 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
3299 goto __error;
3300 }
Clemens Ladisch1dcd3ec2005-05-10 14:51:40 +02003301 snd_card_set_dev(chip->card, &intf->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 break;
3303 }
3304 if (! chip) {
3305 snd_printk(KERN_ERR "no available usb audio device\n");
3306 goto __error;
3307 }
3308 }
3309
3310 err = 1; /* continue */
3311 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
3312 /* need some special handlings */
3313 if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0)
3314 goto __error;
3315 }
3316
3317 if (err > 0) {
3318 /* create normal USB audio interfaces */
3319 if (snd_usb_create_streams(chip, ifnum) < 0 ||
3320 snd_usb_create_mixer(chip, ifnum) < 0) {
3321 goto __error;
3322 }
3323 }
3324
3325 /* we are allowed to call snd_card_register() many times */
3326 if (snd_card_register(chip->card) < 0) {
3327 goto __error;
3328 }
3329
3330 usb_chip[chip->index] = chip;
3331 chip->num_interfaces++;
3332 up(&register_mutex);
3333 return chip;
3334
3335 __error:
3336 if (chip && !chip->num_interfaces)
3337 snd_card_free(chip->card);
3338 up(&register_mutex);
3339 __err_val:
3340 return NULL;
3341}
3342
3343/*
3344 * we need to take care of counter, since disconnection can be called also
3345 * many times as well as usb_audio_probe().
3346 */
3347static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr)
3348{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003349 struct snd_usb_audio *chip;
3350 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 struct list_head *p;
3352
3353 if (ptr == (void *)-1L)
3354 return;
3355
3356 chip = ptr;
3357 card = chip->card;
3358 down(&register_mutex);
3359 chip->shutdown = 1;
3360 chip->num_interfaces--;
3361 if (chip->num_interfaces <= 0) {
3362 snd_card_disconnect(card);
3363 /* release the pcm resources */
3364 list_for_each(p, &chip->pcm_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003365 snd_usb_stream_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 }
3367 /* release the midi resources */
3368 list_for_each(p, &chip->midi_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003369 snd_usbmidi_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02003371 /* release mixer resources */
3372 list_for_each(p, &chip->mixer_list) {
3373 snd_usb_mixer_disconnect(p);
3374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 usb_chip[chip->index] = NULL;
3376 up(&register_mutex);
Karsten Wiese230cd5e2005-04-20 10:12:35 +02003377 snd_card_free(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 } else {
3379 up(&register_mutex);
3380 }
3381}
3382
3383/*
3384 * new 2.5 USB kernel API
3385 */
3386static int usb_audio_probe(struct usb_interface *intf,
3387 const struct usb_device_id *id)
3388{
3389 void *chip;
3390 chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
3391 if (chip) {
3392 dev_set_drvdata(&intf->dev, chip);
3393 return 0;
3394 } else
3395 return -EIO;
3396}
3397
3398static void usb_audio_disconnect(struct usb_interface *intf)
3399{
3400 snd_usb_audio_disconnect(interface_to_usbdev(intf),
3401 dev_get_drvdata(&intf->dev));
3402}
3403
3404
3405static int __init snd_usb_audio_init(void)
3406{
3407 if (nrpacks < MIN_PACKS_URB || nrpacks > MAX_PACKS) {
3408 printk(KERN_WARNING "invalid nrpacks value.\n");
3409 return -EINVAL;
3410 }
3411 usb_register(&usb_audio_driver);
3412 return 0;
3413}
3414
3415
3416static void __exit snd_usb_audio_cleanup(void)
3417{
3418 usb_deregister(&usb_audio_driver);
3419}
3420
3421module_init(snd_usb_audio_init);
3422module_exit(snd_usb_audio_cleanup);