blob: c69cc6e4f5490f3a9f9d20fad2be0e97ec94a988 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Main and PCM part
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
11 *
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 *
28 * NOTES:
29 *
30 * - async unlink should be used for avoiding the sleep inside lock.
31 * 2.4.22 usb-uhci seems buggy for async unlinking and results in
32 * oops. in such a cse, pass async_unlink=0 option.
33 * - the linked URBs would be preferred but not used so far because of
34 * the instability of unlinking.
35 * - type II is not supported properly. there is no device which supports
36 * this type *correctly*. SB extigy looks as if it supports, but it's
37 * indeed an AC3 stream packed in SPDIF frames (i.e. no real AC3 stream).
38 */
39
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/bitops.h>
42#include <linux/init.h>
43#include <linux/list.h>
44#include <linux/slab.h>
45#include <linux/string.h>
46#include <linux/usb.h>
Clemens Ladisch6207e512005-08-15 08:35:25 +020047#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/moduleparam.h>
Ingo Molnar12aa7572006-01-16 16:36:05 +010049#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <sound/core.h>
51#include <sound/info.h>
52#include <sound/pcm.h>
53#include <sound/pcm_params.h>
54#include <sound/initval.h>
55
56#include "usbaudio.h"
57
58
59MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
60MODULE_DESCRIPTION("USB Audio");
61MODULE_LICENSE("GPL");
62MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
63
64
65static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
66static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Pavel Machek07f51a72008-04-14 13:15:56 +020067static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
68/* Vendor/product IDs for this card */
69static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
70static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
Clemens Ladisch92b9ac72006-09-22 10:57:36 +020071static int nrpacks = 8; /* max. number of packets per urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static int async_unlink = 1;
Thibault LE MEURe3113342006-03-14 11:44:53 +010073static int device_setup[SNDRV_CARDS]; /* device parameter for this card*/
Takashi Iwai7a9b8062008-08-13 15:40:53 +020074static int ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76module_param_array(index, int, NULL, 0444);
77MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
78module_param_array(id, charp, NULL, 0444);
79MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
80module_param_array(enable, bool, NULL, 0444);
81MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
82module_param_array(vid, int, NULL, 0444);
83MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
84module_param_array(pid, int, NULL, 0444);
85MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
Clemens Ladisch71d848c2005-08-12 15:18:00 +020086module_param(nrpacks, int, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB.");
88module_param(async_unlink, bool, 0444);
89MODULE_PARM_DESC(async_unlink, "Use async unlink mode.");
Thibault LE MEURe3113342006-03-14 11:44:53 +010090module_param_array(device_setup, int, NULL, 0444);
91MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
Takashi Iwai7a9b8062008-08-13 15:40:53 +020092module_param(ignore_ctl_error, bool, 0444);
93MODULE_PARM_DESC(ignore_ctl_error,
94 "Ignore errors from USB controller for mixer interfaces.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/*
97 * debug the h/w constraints
98 */
99/* #define HW_CONST_DEBUG */
100
101
102/*
103 *
104 */
105
Clemens Ladisch92b9ac72006-09-22 10:57:36 +0200106#define MAX_PACKS 20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define MAX_PACKS_HS (MAX_PACKS * 8) /* in high speed mode */
Clemens Ladisch15a24c072005-08-12 08:25:26 +0200108#define MAX_URBS 8
Clemens Ladisch604cf492005-05-17 09:15:27 +0200109#define SYNC_URBS 4 /* always four urbs for sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#define MIN_PACKS_URB 1 /* minimum 1 packet per urb */
Clemens Ladisch4d788e042009-01-26 08:09:28 +0100111#define MAX_QUEUE 24 /* try not to exceed this queue length, in ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113struct audioformat {
114 struct list_head list;
115 snd_pcm_format_t format; /* format type */
116 unsigned int channels; /* # channels */
117 unsigned int fmt_type; /* USB audio format type (1-3) */
118 unsigned int frame_size; /* samples per frame for non-audio */
119 int iface; /* interface number */
120 unsigned char altsetting; /* corresponding alternate setting */
121 unsigned char altset_idx; /* array index of altenate setting */
122 unsigned char attributes; /* corresponding attributes of cs endpoint */
123 unsigned char endpoint; /* endpoint */
124 unsigned char ep_attr; /* endpoint attributes */
125 unsigned int maxpacksize; /* max. packet size */
126 unsigned int rates; /* rate bitmasks */
127 unsigned int rate_min, rate_max; /* min/max rates */
128 unsigned int nr_rates; /* number of rate table entries */
129 unsigned int *rate_table; /* rate table */
130};
131
Takashi Iwai86e07d32005-11-17 15:08:02 +0100132struct snd_usb_substream;
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134struct snd_urb_ctx {
135 struct urb *urb;
Clemens Ladisch55851f72005-08-15 08:34:16 +0200136 unsigned int buffer_size; /* size of data buffer, if data URB */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100137 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 int index; /* index for urb array */
139 int packets; /* number of packets per urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
142struct snd_urb_ops {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100143 int (*prepare)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
144 int (*retire)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
145 int (*prepare_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
146 int (*retire_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
149struct snd_usb_substream {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100150 struct snd_usb_stream *stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct usb_device *dev;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100152 struct snd_pcm_substream *pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 int direction; /* playback or capture */
154 int interface; /* current interface */
155 int endpoint; /* assigned endpoint */
156 struct audioformat *cur_audiofmt; /* current audioformat pointer (for hw_params callback) */
157 unsigned int cur_rate; /* current rate (for hw_params callback) */
158 unsigned int period_bytes; /* current period bytes (for hw_params callback) */
159 unsigned int format; /* USB data format */
160 unsigned int datapipe; /* the data i/o pipe */
161 unsigned int syncpipe; /* 1 - async out or adaptive in */
Clemens Ladisch573567e2005-06-27 08:17:30 +0200162 unsigned int datainterval; /* log_2 of data packet interval */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 unsigned int syncinterval; /* P for adaptive mode, 0 otherwise */
164 unsigned int freqn; /* nominal sampling rate in fs/fps in Q16.16 format */
165 unsigned int freqm; /* momentary sampling rate in fs/fps in Q16.16 format */
166 unsigned int freqmax; /* maximum sampling rate, used for buffer management */
167 unsigned int phase; /* phase accumulator */
168 unsigned int maxpacksize; /* max packet size in bytes */
169 unsigned int maxframesize; /* max packet size in frames */
170 unsigned int curpacksize; /* current packet size in bytes (for capture) */
171 unsigned int curframesize; /* current packet size in frames (for capture) */
172 unsigned int fill_max: 1; /* fill max packet size always */
173 unsigned int fmt_type; /* USB audio format type (1-3) */
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200174 unsigned int packs_per_ms; /* packets per millisecond (for playback) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 unsigned int running: 1; /* running status */
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 unsigned int hwptr_done; /* processed frame position in the buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 unsigned int transfer_done; /* processed frames since last period update */
180 unsigned long active_mask; /* bitmask of active urbs */
181 unsigned long unlink_mask; /* bitmask of unlinked urbs */
182
183 unsigned int nurbs; /* # urbs */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100184 struct snd_urb_ctx dataurb[MAX_URBS]; /* data urb table */
185 struct snd_urb_ctx syncurb[SYNC_URBS]; /* sync urb table */
Clemens Ladisch55851f72005-08-15 08:34:16 +0200186 char *syncbuf; /* sync buffer for all sync URBs */
187 dma_addr_t sync_dma; /* DMA address of syncbuf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 u64 formats; /* format bitmasks (all or'ed) */
190 unsigned int num_formats; /* number of supported audio formats (list) */
191 struct list_head fmt_list; /* format list */
Takashi Iwai8fec5602007-02-01 11:50:56 +0100192 struct snd_pcm_hw_constraint_list rate_list; /* limited rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 spinlock_t lock;
194
195 struct snd_urb_ops ops; /* callbacks (must be filled at init) */
196};
197
198
199struct snd_usb_stream {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100200 struct snd_usb_audio *chip;
201 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 int pcm_index;
203 unsigned int fmt_type; /* USB audio format type (1-3) */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100204 struct snd_usb_substream substream[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 struct list_head list;
206};
207
208
209/*
210 * we keep the snd_usb_audio_t instances by ourselves for merging
211 * the all interfaces on the same card as one sound device.
212 */
213
Ingo Molnar12aa7572006-01-16 16:36:05 +0100214static DEFINE_MUTEX(register_mutex);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100215static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217
218/*
219 * convert a sampling rate into our full speed format (fs/1000 in Q16.16)
220 * this will overflow at approx 524 kHz
221 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700222static inline unsigned get_usb_full_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 return ((rate << 13) + 62) / 125;
225}
226
227/*
228 * convert a sampling rate into USB high speed format (fs/8000 in Q16.16)
229 * this will overflow at approx 4 MHz
230 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700231static inline unsigned get_usb_high_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 return ((rate << 10) + 62) / 125;
234}
235
236/* convert our full speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700237static inline unsigned get_full_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 return (usb_rate * 125 + (1 << 12)) >> 13;
240}
241
242/* convert our high speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700243static inline unsigned get_high_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 return (usb_rate * 125 + (1 << 9)) >> 10;
246}
247
248
249/*
250 * prepare urb for full speed capture sync pipe
251 *
252 * fill the length and offset of each urb descriptor.
253 * the fixed 10.14 frequency is passed through the pipe.
254 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100255static int prepare_capture_sync_urb(struct snd_usb_substream *subs,
256 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 struct urb *urb)
258{
259 unsigned char *cp = urb->transfer_buffer;
John Daiker88518272006-12-28 13:55:05 +0100260 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200263 urb->iso_frame_desc[0].length = 3;
264 urb->iso_frame_desc[0].offset = 0;
265 cp[0] = subs->freqn >> 2;
266 cp[1] = subs->freqn >> 10;
267 cp[2] = subs->freqn >> 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return 0;
269}
270
271/*
272 * prepare urb for high speed capture sync pipe
273 *
274 * fill the length and offset of each urb descriptor.
275 * the fixed 12.13 frequency is passed as 16.16 through the pipe.
276 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100277static int prepare_capture_sync_urb_hs(struct snd_usb_substream *subs,
278 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct urb *urb)
280{
281 unsigned char *cp = urb->transfer_buffer;
John Daiker88518272006-12-28 13:55:05 +0100282 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200285 urb->iso_frame_desc[0].length = 4;
286 urb->iso_frame_desc[0].offset = 0;
287 cp[0] = subs->freqn;
288 cp[1] = subs->freqn >> 8;
289 cp[2] = subs->freqn >> 16;
290 cp[3] = subs->freqn >> 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return 0;
292}
293
294/*
295 * process after capture sync complete
296 * - nothing to do
297 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100298static int retire_capture_sync_urb(struct snd_usb_substream *subs,
299 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 struct urb *urb)
301{
302 return 0;
303}
304
305/*
306 * prepare urb for capture data pipe
307 *
308 * fill the offset and length of each descriptor.
309 *
310 * we use a temporary buffer to write the captured data.
311 * since the length of written data is determined by host, we cannot
312 * write onto the pcm buffer directly... the data is thus copied
313 * later at complete callback to the global buffer.
314 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100315static int prepare_capture_urb(struct snd_usb_substream *subs,
316 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct urb *urb)
318{
319 int i, offs;
John Daiker88518272006-12-28 13:55:05 +0100320 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 offs = 0;
323 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 for (i = 0; i < ctx->packets; i++) {
325 urb->iso_frame_desc[i].offset = offs;
326 urb->iso_frame_desc[i].length = subs->curpacksize;
327 offs += subs->curpacksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 urb->transfer_buffer_length = offs;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200330 urb->number_of_packets = ctx->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return 0;
332}
333
334/*
335 * process after capture complete
336 *
337 * copy the data from each desctiptor to the pcm buffer, and
338 * update the current position.
339 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100340static int retire_capture_urb(struct snd_usb_substream *subs,
341 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct urb *urb)
343{
344 unsigned long flags;
345 unsigned char *cp;
346 int i;
347 unsigned int stride, len, oldptr;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200348 int period_elapsed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 stride = runtime->frame_bits >> 3;
351
352 for (i = 0; i < urb->number_of_packets; i++) {
353 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset;
354 if (urb->iso_frame_desc[i].status) {
355 snd_printd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status);
356 // continue;
357 }
358 len = urb->iso_frame_desc[i].actual_length / stride;
359 if (! len)
360 continue;
361 /* update the current pointer */
362 spin_lock_irqsave(&subs->lock, flags);
363 oldptr = subs->hwptr_done;
364 subs->hwptr_done += len;
365 if (subs->hwptr_done >= runtime->buffer_size)
366 subs->hwptr_done -= runtime->buffer_size;
367 subs->transfer_done += len;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200368 if (subs->transfer_done >= runtime->period_size) {
369 subs->transfer_done -= runtime->period_size;
370 period_elapsed = 1;
371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 spin_unlock_irqrestore(&subs->lock, flags);
373 /* copy a data chunk */
374 if (oldptr + len > runtime->buffer_size) {
375 unsigned int cnt = runtime->buffer_size - oldptr;
376 unsigned int blen = cnt * stride;
377 memcpy(runtime->dma_area + oldptr * stride, cp, blen);
378 memcpy(runtime->dma_area, cp + blen, len * stride - blen);
379 } else {
380 memcpy(runtime->dma_area + oldptr * stride, cp, len * stride);
381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200383 if (period_elapsed)
384 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return 0;
386}
387
Clemens Ladische4f8e652006-10-04 13:42:57 +0200388/*
389 * Process after capture complete when paused. Nothing to do.
390 */
391static int retire_paused_capture_urb(struct snd_usb_substream *subs,
392 struct snd_pcm_runtime *runtime,
393 struct urb *urb)
394{
395 return 0;
396}
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399/*
400 * prepare urb for full speed playback sync pipe
401 *
402 * set up the offset and length to receive the current frequency.
403 */
404
Takashi Iwai86e07d32005-11-17 15:08:02 +0100405static int prepare_playback_sync_urb(struct snd_usb_substream *subs,
406 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 struct urb *urb)
408{
John Daiker88518272006-12-28 13:55:05 +0100409 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200412 urb->iso_frame_desc[0].length = 3;
413 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return 0;
415}
416
417/*
418 * prepare urb for high speed playback sync pipe
419 *
420 * set up the offset and length to receive the current frequency.
421 */
422
Takashi Iwai86e07d32005-11-17 15:08:02 +0100423static int prepare_playback_sync_urb_hs(struct snd_usb_substream *subs,
424 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct urb *urb)
426{
John Daiker88518272006-12-28 13:55:05 +0100427 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200430 urb->iso_frame_desc[0].length = 4;
431 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return 0;
433}
434
435/*
436 * process after full speed playback sync complete
437 *
438 * retrieve the current 10.14 frequency from pipe, and set it.
439 * the value is referred in prepare_playback_urb().
440 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100441static int retire_playback_sync_urb(struct snd_usb_substream *subs,
442 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 struct urb *urb)
444{
Clemens Ladischca810902005-05-02 08:55:54 +0200445 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 unsigned long flags;
447
Clemens Ladischca810902005-05-02 08:55:54 +0200448 if (urb->iso_frame_desc[0].status == 0 &&
449 urb->iso_frame_desc[0].actual_length == 3) {
450 f = combine_triple((u8*)urb->transfer_buffer) << 2;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200451 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
452 spin_lock_irqsave(&subs->lock, flags);
453 subs->freqm = f;
454 spin_unlock_irqrestore(&subs->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
458 return 0;
459}
460
461/*
462 * process after high speed playback sync complete
463 *
464 * retrieve the current 12.13 frequency from pipe, and set it.
465 * the value is referred in prepare_playback_urb().
466 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100467static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs,
468 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 struct urb *urb)
470{
Clemens Ladischca810902005-05-02 08:55:54 +0200471 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 unsigned long flags;
473
Clemens Ladischca810902005-05-02 08:55:54 +0200474 if (urb->iso_frame_desc[0].status == 0 &&
475 urb->iso_frame_desc[0].actual_length == 4) {
476 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200477 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
478 spin_lock_irqsave(&subs->lock, flags);
479 subs->freqm = f;
480 spin_unlock_irqrestore(&subs->lock, flags);
481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483
484 return 0;
485}
486
Clemens Ladischd5132022008-02-25 11:01:00 +0100487/*
Eran Tromer97c889a2008-09-26 01:07:03 -0400488 * process after E-Mu 0202/0404/Tracker Pre high speed playback sync complete
Clemens Ladischd5132022008-02-25 11:01:00 +0100489 *
490 * These devices return the number of samples per packet instead of the number
491 * of samples per microframe.
492 */
493static int retire_playback_sync_urb_hs_emu(struct snd_usb_substream *subs,
494 struct snd_pcm_runtime *runtime,
495 struct urb *urb)
496{
497 unsigned int f;
498 unsigned long flags;
499
500 if (urb->iso_frame_desc[0].status == 0 &&
501 urb->iso_frame_desc[0].actual_length == 4) {
502 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
503 f >>= subs->datainterval;
504 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
505 spin_lock_irqsave(&subs->lock, flags);
506 subs->freqm = f;
507 spin_unlock_irqrestore(&subs->lock, flags);
508 }
509 }
510
511 return 0;
512}
513
Clemens Ladisch9568f462006-01-12 08:19:21 +0100514/* determine the number of frames in the next packet */
515static int snd_usb_audio_next_packet_size(struct snd_usb_substream *subs)
516{
517 if (subs->fill_max)
518 return subs->maxframesize;
519 else {
520 subs->phase = (subs->phase & 0xffff)
521 + (subs->freqm << subs->datainterval);
522 return min(subs->phase >> 16, subs->maxframesize);
523 }
524}
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526/*
Clemens Ladische4f8e652006-10-04 13:42:57 +0200527 * Prepare urb for streaming before playback starts or when paused.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100528 *
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100529 * We don't have any data, so we send silence.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100530 */
Clemens Ladische4f8e652006-10-04 13:42:57 +0200531static int prepare_nodata_playback_urb(struct snd_usb_substream *subs,
532 struct snd_pcm_runtime *runtime,
533 struct urb *urb)
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100534{
Clemens Ladisch4b284922006-01-12 08:17:49 +0100535 unsigned int i, offs, counts;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100536 struct snd_urb_ctx *ctx = urb->context;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100537 int stride = runtime->frame_bits >> 3;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100538
Clemens Ladisch4b284922006-01-12 08:17:49 +0100539 offs = 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100540 urb->dev = ctx->subs->dev;
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100541 for (i = 0; i < ctx->packets; ++i) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100542 counts = snd_usb_audio_next_packet_size(subs);
Clemens Ladisch4b284922006-01-12 08:17:49 +0100543 urb->iso_frame_desc[i].offset = offs * stride;
544 urb->iso_frame_desc[i].length = counts * stride;
545 offs += counts;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100546 }
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100547 urb->number_of_packets = ctx->packets;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100548 urb->transfer_buffer_length = offs * stride;
549 memset(urb->transfer_buffer,
550 subs->cur_audiofmt->format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0,
551 offs * stride);
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100552 return 0;
553}
554
555/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 * prepare urb for playback data pipe
557 *
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200558 * Since a URB can handle only a single linear buffer, we must use double
559 * buffering when the data to be transferred overflows the buffer boundary.
560 * To avoid inconsistencies when updating hwptr_done, we use double buffering
561 * for all URBs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100563static int prepare_playback_urb(struct snd_usb_substream *subs,
564 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 struct urb *urb)
566{
567 int i, stride, offs;
568 unsigned int counts;
569 unsigned long flags;
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200570 int period_elapsed = 0;
John Daiker88518272006-12-28 13:55:05 +0100571 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 stride = runtime->frame_bits >> 3;
574
575 offs = 0;
576 urb->dev = ctx->subs->dev; /* we need to set this at each time */
577 urb->number_of_packets = 0;
578 spin_lock_irqsave(&subs->lock, flags);
579 for (i = 0; i < ctx->packets; i++) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100580 counts = snd_usb_audio_next_packet_size(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /* set up descriptor */
582 urb->iso_frame_desc[i].offset = offs * stride;
583 urb->iso_frame_desc[i].length = counts * stride;
584 offs += counts;
585 urb->number_of_packets++;
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200586 subs->transfer_done += counts;
587 if (subs->transfer_done >= runtime->period_size) {
588 subs->transfer_done -= runtime->period_size;
589 period_elapsed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (subs->fmt_type == USB_FORMAT_TYPE_II) {
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200591 if (subs->transfer_done > 0) {
592 /* FIXME: fill-max mode is not
593 * supported yet */
594 offs -= subs->transfer_done;
595 counts -= subs->transfer_done;
596 urb->iso_frame_desc[i].length =
597 counts * stride;
598 subs->transfer_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600 i++;
601 if (i < ctx->packets) {
602 /* add a transfer delimiter */
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200603 urb->iso_frame_desc[i].offset =
604 offs * stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 urb->iso_frame_desc[i].length = 0;
606 urb->number_of_packets++;
607 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200608 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200611 /* finish at the frame boundary at/after the period boundary */
612 if (period_elapsed &&
613 (i & (subs->packs_per_ms - 1)) == subs->packs_per_ms - 1)
614 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200616 if (subs->hwptr_done + offs > runtime->buffer_size) {
617 /* err, the transferred area goes over buffer boundary. */
618 unsigned int len = runtime->buffer_size - subs->hwptr_done;
619 memcpy(urb->transfer_buffer,
620 runtime->dma_area + subs->hwptr_done * stride,
621 len * stride);
622 memcpy(urb->transfer_buffer + len * stride,
623 runtime->dma_area,
624 (offs - len) * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 } else {
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200626 memcpy(urb->transfer_buffer,
627 runtime->dma_area + subs->hwptr_done * stride,
628 offs * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200630 subs->hwptr_done += offs;
631 if (subs->hwptr_done >= runtime->buffer_size)
632 subs->hwptr_done -= runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 spin_unlock_irqrestore(&subs->lock, flags);
634 urb->transfer_buffer_length = offs * stride;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100635 if (period_elapsed)
636 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 0;
638}
639
640/*
641 * process after playback data complete
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200642 * - nothing to do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100644static int retire_playback_urb(struct snd_usb_substream *subs,
645 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 struct urb *urb)
647{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return 0;
649}
650
651
652/*
653 */
654static struct snd_urb_ops audio_urb_ops[2] = {
655 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200656 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 .retire = retire_playback_urb,
658 .prepare_sync = prepare_playback_sync_urb,
659 .retire_sync = retire_playback_sync_urb,
660 },
661 {
662 .prepare = prepare_capture_urb,
663 .retire = retire_capture_urb,
664 .prepare_sync = prepare_capture_sync_urb,
665 .retire_sync = retire_capture_sync_urb,
666 },
667};
668
669static struct snd_urb_ops audio_urb_ops_high_speed[2] = {
670 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200671 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 .retire = retire_playback_urb,
673 .prepare_sync = prepare_playback_sync_urb_hs,
674 .retire_sync = retire_playback_sync_urb_hs,
675 },
676 {
677 .prepare = prepare_capture_urb,
678 .retire = retire_capture_urb,
679 .prepare_sync = prepare_capture_sync_urb_hs,
680 .retire_sync = retire_capture_sync_urb,
681 },
682};
683
684/*
685 * complete callback from data urb
686 */
David Howells7d12e782006-10-05 14:55:46 +0100687static void snd_complete_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
John Daiker88518272006-12-28 13:55:05 +0100689 struct snd_urb_ctx *ctx = urb->context;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100690 struct snd_usb_substream *subs = ctx->subs;
691 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 int err = 0;
693
694 if ((subs->running && subs->ops.retire(subs, substream->runtime, urb)) ||
Pavel Machek07f51a72008-04-14 13:15:56 +0200695 !subs->running || /* can be stopped during retire callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 (err = subs->ops.prepare(subs, substream->runtime, urb)) < 0 ||
697 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
698 clear_bit(ctx->index, &subs->active_mask);
699 if (err < 0) {
700 snd_printd(KERN_ERR "cannot submit urb (err = %d)\n", err);
701 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
702 }
703 }
704}
705
706
707/*
708 * complete callback from sync urb
709 */
David Howells7d12e782006-10-05 14:55:46 +0100710static void snd_complete_sync_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
John Daiker88518272006-12-28 13:55:05 +0100712 struct snd_urb_ctx *ctx = urb->context;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100713 struct snd_usb_substream *subs = ctx->subs;
714 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 int err = 0;
716
717 if ((subs->running && subs->ops.retire_sync(subs, substream->runtime, urb)) ||
Pavel Machek07f51a72008-04-14 13:15:56 +0200718 !subs->running || /* can be stopped during retire callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 (err = subs->ops.prepare_sync(subs, substream->runtime, urb)) < 0 ||
720 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
721 clear_bit(ctx->index + 16, &subs->active_mask);
722 if (err < 0) {
723 snd_printd(KERN_ERR "cannot submit sync urb (err = %d)\n", err);
724 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
725 }
726 }
727}
728
729
Clemens Ladisch6207e512005-08-15 08:35:25 +0200730/* get the physical page pointer at the given offset */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100731static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
Clemens Ladisch6207e512005-08-15 08:35:25 +0200732 unsigned long offset)
733{
734 void *pageptr = subs->runtime->dma_area + offset;
735 return vmalloc_to_page(pageptr);
736}
737
738/* allocate virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100739static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs, size_t size)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200740{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100741 struct snd_pcm_runtime *runtime = subs->runtime;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200742 if (runtime->dma_area) {
743 if (runtime->dma_bytes >= size)
744 return 0; /* already large enough */
Takashi Iwaib1d57762005-10-10 11:56:31 +0200745 vfree(runtime->dma_area);
Clemens Ladisch6207e512005-08-15 08:35:25 +0200746 }
Takashi Iwaib1d57762005-10-10 11:56:31 +0200747 runtime->dma_area = vmalloc(size);
Pavel Machek07f51a72008-04-14 13:15:56 +0200748 if (!runtime->dma_area)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200749 return -ENOMEM;
750 runtime->dma_bytes = size;
751 return 0;
752}
753
754/* free virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100755static int snd_pcm_free_vmalloc_buffer(struct snd_pcm_substream *subs)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200756{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100757 struct snd_pcm_runtime *runtime = subs->runtime;
Jesper Juhl9c4be3d2006-02-09 20:04:16 +0100758
759 vfree(runtime->dma_area);
760 runtime->dma_area = NULL;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200761 return 0;
762}
763
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765/*
766 * unlink active urbs.
767 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100768static int deactivate_urbs(struct snd_usb_substream *subs, int force, int can_sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
770 unsigned int i;
771 int async;
772
773 subs->running = 0;
774
775 if (!force && subs->stream->chip->shutdown) /* to be sure... */
776 return -EBADFD;
777
778 async = !can_sleep && async_unlink;
779
Pavel Machek07f51a72008-04-14 13:15:56 +0200780 if (!async && in_interrupt())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return 0;
782
783 for (i = 0; i < subs->nurbs; i++) {
784 if (test_bit(i, &subs->active_mask)) {
Pavel Machek07f51a72008-04-14 13:15:56 +0200785 if (!test_and_set_bit(i, &subs->unlink_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 struct urb *u = subs->dataurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400787 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400789 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 usb_kill_urb(u);
791 }
792 }
793 }
794 if (subs->syncpipe) {
795 for (i = 0; i < SYNC_URBS; i++) {
796 if (test_bit(i+16, &subs->active_mask)) {
Pavel Machek07f51a72008-04-14 13:15:56 +0200797 if (!test_and_set_bit(i+16, &subs->unlink_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 struct urb *u = subs->syncurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400799 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400801 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 usb_kill_urb(u);
803 }
804 }
805 }
806 }
807 return 0;
808}
809
810
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100811static const char *usb_error_string(int err)
812{
813 switch (err) {
814 case -ENODEV:
815 return "no device";
816 case -ENOENT:
817 return "endpoint not enabled";
818 case -EPIPE:
819 return "endpoint stalled";
820 case -ENOSPC:
821 return "not enough bandwidth";
822 case -ESHUTDOWN:
823 return "device disabled";
824 case -EHOSTUNREACH:
825 return "device suspended";
826 case -EINVAL:
827 case -EAGAIN:
828 case -EFBIG:
829 case -EMSGSIZE:
830 return "internal error";
831 default:
832 return "unknown error";
833 }
834}
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836/*
837 * set up and start data/sync urbs
838 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100839static int start_urbs(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841 unsigned int i;
842 int err;
843
844 if (subs->stream->chip->shutdown)
845 return -EBADFD;
846
847 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai5e246b82008-08-08 17:12:47 +0200848 if (snd_BUG_ON(!subs->dataurb[i].urb))
849 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (subs->ops.prepare(subs, runtime, subs->dataurb[i].urb) < 0) {
851 snd_printk(KERN_ERR "cannot prepare datapipe for urb %d\n", i);
852 goto __error;
853 }
854 }
855 if (subs->syncpipe) {
856 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai5e246b82008-08-08 17:12:47 +0200857 if (snd_BUG_ON(!subs->syncurb[i].urb))
858 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (subs->ops.prepare_sync(subs, runtime, subs->syncurb[i].urb) < 0) {
860 snd_printk(KERN_ERR "cannot prepare syncpipe for urb %d\n", i);
861 goto __error;
862 }
863 }
864 }
865
866 subs->active_mask = 0;
867 subs->unlink_mask = 0;
868 subs->running = 1;
869 for (i = 0; i < subs->nurbs; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100870 err = usb_submit_urb(subs->dataurb[i].urb, GFP_ATOMIC);
871 if (err < 0) {
872 snd_printk(KERN_ERR "cannot submit datapipe "
873 "for urb %d, error %d: %s\n",
874 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 goto __error;
876 }
877 set_bit(i, &subs->active_mask);
878 }
879 if (subs->syncpipe) {
880 for (i = 0; i < SYNC_URBS; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100881 err = usb_submit_urb(subs->syncurb[i].urb, GFP_ATOMIC);
882 if (err < 0) {
883 snd_printk(KERN_ERR "cannot submit syncpipe "
884 "for urb %d, error %d: %s\n",
885 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto __error;
887 }
888 set_bit(i + 16, &subs->active_mask);
889 }
890 }
891 return 0;
892
893 __error:
894 // snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
895 deactivate_urbs(subs, 0, 0);
896 return -EPIPE;
897}
898
899
900/*
901 * wait until all urbs are processed.
902 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100903static int wait_clear_urbs(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200905 unsigned long end_time = jiffies + msecs_to_jiffies(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 unsigned int i;
907 int alive;
908
909 do {
910 alive = 0;
911 for (i = 0; i < subs->nurbs; i++) {
912 if (test_bit(i, &subs->active_mask))
913 alive++;
914 }
915 if (subs->syncpipe) {
916 for (i = 0; i < SYNC_URBS; i++) {
917 if (test_bit(i + 16, &subs->active_mask))
918 alive++;
919 }
920 }
921 if (! alive)
922 break;
Nishanth Aravamudan8433a502005-10-24 15:02:37 +0200923 schedule_timeout_uninterruptible(1);
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200924 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (alive)
926 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
927 return 0;
928}
929
930
931/*
932 * return the current pcm pointer. just return the hwptr_done value.
933 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100934static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100936 struct snd_usb_substream *subs;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200937 snd_pcm_uframes_t hwptr_done;
938
Takashi Iwai86e07d32005-11-17 15:08:02 +0100939 subs = (struct snd_usb_substream *)substream->runtime->private_data;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200940 spin_lock(&subs->lock);
941 hwptr_done = subs->hwptr_done;
942 spin_unlock(&subs->lock);
943 return hwptr_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
946
947/*
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100948 * start/stop playback substream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100950static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100951 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100953 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 switch (cmd) {
956 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200957 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100958 subs->ops.prepare = prepare_playback_urb;
959 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 case SNDRV_PCM_TRIGGER_STOP:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100961 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200962 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
963 subs->ops.prepare = prepare_nodata_playback_urb;
964 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 default:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100966 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100968}
969
970/*
971 * start/stop capture substream
972 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100973static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100974 int cmd)
975{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100976 struct snd_usb_substream *subs = substream->runtime->private_data;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100977
978 switch (cmd) {
979 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200980 subs->ops.retire = retire_capture_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100981 return start_urbs(subs, substream->runtime);
982 case SNDRV_PCM_TRIGGER_STOP:
983 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200984 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
985 subs->ops.retire = retire_paused_capture_urb;
986 return 0;
987 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
988 subs->ops.retire = retire_capture_urb;
989 return 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100990 default:
991 return -EINVAL;
992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
995
996/*
997 * release a urb data
998 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100999static void release_urb_ctx(struct snd_urb_ctx *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001 if (u->urb) {
Clemens Ladisch55851f72005-08-15 08:34:16 +02001002 if (u->buffer_size)
1003 usb_buffer_free(u->subs->dev, u->buffer_size,
1004 u->urb->transfer_buffer,
1005 u->urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 usb_free_urb(u->urb);
1007 u->urb = NULL;
1008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
1011/*
1012 * release a substream
1013 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001014static void release_substream_urbs(struct snd_usb_substream *subs, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
1016 int i;
1017
1018 /* stop urbs (to be sure) */
1019 deactivate_urbs(subs, force, 1);
1020 wait_clear_urbs(subs);
1021
1022 for (i = 0; i < MAX_URBS; i++)
1023 release_urb_ctx(&subs->dataurb[i]);
1024 for (i = 0; i < SYNC_URBS; i++)
1025 release_urb_ctx(&subs->syncurb[i]);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001026 usb_buffer_free(subs->dev, SYNC_URBS * 4,
1027 subs->syncbuf, subs->sync_dma);
1028 subs->syncbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 subs->nurbs = 0;
1030}
1031
1032/*
1033 * initialize a substream for plaback/capture
1034 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001035static int init_substream_urbs(struct snd_usb_substream *subs, unsigned int period_bytes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 unsigned int rate, unsigned int frame_bits)
1037{
Clemens Ladisch160389c2009-01-26 08:10:19 +01001038 unsigned int maxsize, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001040 unsigned int urb_packs, total_packs, packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 /* calculate the frequency in 16.16 format */
1043 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
1044 subs->freqn = get_usb_full_speed_rate(rate);
1045 else
1046 subs->freqn = get_usb_high_speed_rate(rate);
1047 subs->freqm = subs->freqn;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001048 /* calculate max. frequency */
1049 if (subs->maxpacksize) {
1050 /* whatever fits into a max. size packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 maxsize = subs->maxpacksize;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001052 subs->freqmax = (maxsize / (frame_bits >> 3))
1053 << (16 - subs->datainterval);
1054 } else {
1055 /* no max. packet size: just take 25% higher than nominal */
1056 subs->freqmax = subs->freqn + (subs->freqn >> 2);
1057 maxsize = ((subs->freqmax + 0xffff) * (frame_bits >> 3))
1058 >> (16 - subs->datainterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
Clemens Ladisch573567e2005-06-27 08:17:30 +02001060 subs->phase = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 if (subs->fill_max)
1063 subs->curpacksize = subs->maxpacksize;
1064 else
1065 subs->curpacksize = maxsize;
1066
Clemens Ladischa93bf992005-08-12 15:19:39 +02001067 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
1068 packs_per_ms = 8 >> subs->datainterval;
1069 else
1070 packs_per_ms = 1;
Clemens Ladisch9624ea82005-08-15 08:25:24 +02001071 subs->packs_per_ms = packs_per_ms;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001072
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001073 if (is_playback) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 urb_packs = nrpacks;
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001075 urb_packs = max(urb_packs, (unsigned int)MIN_PACKS_URB);
1076 urb_packs = min(urb_packs, (unsigned int)MAX_PACKS);
1077 } else
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001078 urb_packs = 1;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001079 urb_packs *= packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 /* decide how many packets to be used */
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001082 if (is_playback) {
Clemens Ladisch4d788e042009-01-26 08:09:28 +01001083 unsigned int minsize, maxpacks;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001084 /* determine how small a packet can be */
1085 minsize = (subs->freqn >> (16 - subs->datainterval))
1086 * (frame_bits >> 3);
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +02001087 /* with sync from device, assume it can be 12% lower */
Clemens Ladischd6db3922005-08-12 08:28:27 +02001088 if (subs->syncpipe)
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +02001089 minsize -= minsize >> 3;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001090 minsize = max(minsize, 1u);
1091 total_packs = (period_bytes + minsize - 1) / minsize;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001092 /* round up to multiple of packs_per_ms */
1093 total_packs = (total_packs + packs_per_ms - 1)
1094 & ~(packs_per_ms - 1);
1095 /* we need at least two URBs for queueing */
1096 if (total_packs < 2 * MIN_PACKS_URB * packs_per_ms)
1097 total_packs = 2 * MIN_PACKS_URB * packs_per_ms;
Clemens Ladisch4d788e042009-01-26 08:09:28 +01001098 else {
1099 /* and we don't want too long a queue either */
1100 maxpacks = max((unsigned int)MAX_QUEUE, urb_packs * 2);
1101 if (total_packs > maxpacks * packs_per_ms)
1102 total_packs = maxpacks * packs_per_ms;
1103 }
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001104 } else {
1105 total_packs = MAX_URBS * urb_packs;
1106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 subs->nurbs = (total_packs + urb_packs - 1) / urb_packs;
1108 if (subs->nurbs > MAX_URBS) {
1109 /* too much... */
1110 subs->nurbs = MAX_URBS;
1111 total_packs = MAX_URBS * urb_packs;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001112 } else if (subs->nurbs < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 /* too little - we need at least two packets
1114 * to ensure contiguous playback/capture
1115 */
1116 subs->nurbs = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118
1119 /* allocate and initialize data urbs */
1120 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001121 struct snd_urb_ctx *u = &subs->dataurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 u->index = i;
1123 u->subs = subs;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001124 u->packets = (i + 1) * total_packs / subs->nurbs
1125 - i * total_packs / subs->nurbs;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001126 u->buffer_size = maxsize * u->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (subs->fmt_type == USB_FORMAT_TYPE_II)
1128 u->packets++; /* for transfer delimiter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02001130 if (!u->urb)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001131 goto out_of_memory;
1132 u->urb->transfer_buffer =
1133 usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL,
1134 &u->urb->transfer_dma);
Pavel Machek07f51a72008-04-14 13:15:56 +02001135 if (!u->urb->transfer_buffer)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001136 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 u->urb->pipe = subs->datapipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001138 u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001139 u->urb->interval = 1 << subs->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001141 u->urb->complete = snd_complete_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
1143
1144 if (subs->syncpipe) {
1145 /* allocate and initialize sync urbs */
Clemens Ladisch55851f72005-08-15 08:34:16 +02001146 subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4,
1147 GFP_KERNEL, &subs->sync_dma);
Pavel Machek07f51a72008-04-14 13:15:56 +02001148 if (!subs->syncbuf)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001149 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001151 struct snd_urb_ctx *u = &subs->syncurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 u->index = i;
1153 u->subs = subs;
Clemens Ladischca810902005-05-02 08:55:54 +02001154 u->packets = 1;
1155 u->urb = usb_alloc_urb(1, GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02001156 if (!u->urb)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001157 goto out_of_memory;
Clemens Ladischca810902005-05-02 08:55:54 +02001158 u->urb->transfer_buffer = subs->syncbuf + i * 4;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001159 u->urb->transfer_dma = subs->sync_dma + i * 4;
Clemens Ladischca810902005-05-02 08:55:54 +02001160 u->urb->transfer_buffer_length = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 u->urb->pipe = subs->syncpipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001162 u->urb->transfer_flags = URB_ISO_ASAP |
1163 URB_NO_TRANSFER_DMA_MAP;
Clemens Ladischca810902005-05-02 08:55:54 +02001164 u->urb->number_of_packets = 1;
Clemens Ladisch1149a642005-05-02 08:53:46 +02001165 u->urb->interval = 1 << subs->syncinterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001167 u->urb->complete = snd_complete_sync_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
1169 }
1170 return 0;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001171
1172out_of_memory:
1173 release_substream_urbs(subs, 0);
1174 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
1177
1178/*
1179 * find a matching audio format
1180 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001181static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 unsigned int rate, unsigned int channels)
1183{
1184 struct list_head *p;
1185 struct audioformat *found = NULL;
1186 int cur_attr = 0, attr;
1187
1188 list_for_each(p, &subs->fmt_list) {
1189 struct audioformat *fp;
1190 fp = list_entry(p, struct audioformat, list);
1191 if (fp->format != format || fp->channels != channels)
1192 continue;
1193 if (rate < fp->rate_min || rate > fp->rate_max)
1194 continue;
1195 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
1196 unsigned int i;
1197 for (i = 0; i < fp->nr_rates; i++)
1198 if (fp->rate_table[i] == rate)
1199 break;
1200 if (i >= fp->nr_rates)
1201 continue;
1202 }
1203 attr = fp->ep_attr & EP_ATTR_MASK;
1204 if (! found) {
1205 found = fp;
1206 cur_attr = attr;
1207 continue;
1208 }
1209 /* avoid async out and adaptive in if the other method
1210 * supports the same format.
1211 * this is a workaround for the case like
1212 * M-audio audiophile USB.
1213 */
1214 if (attr != cur_attr) {
1215 if ((attr == EP_ATTR_ASYNC &&
1216 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1217 (attr == EP_ATTR_ADAPTIVE &&
1218 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
1219 continue;
1220 if ((cur_attr == EP_ATTR_ASYNC &&
1221 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1222 (cur_attr == EP_ATTR_ADAPTIVE &&
1223 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
1224 found = fp;
1225 cur_attr = attr;
1226 continue;
1227 }
1228 }
1229 /* find the format with the largest max. packet size */
1230 if (fp->maxpacksize > found->maxpacksize) {
1231 found = fp;
1232 cur_attr = attr;
1233 }
1234 }
1235 return found;
1236}
1237
1238
1239/*
1240 * initialize the picth control and sample rate
1241 */
1242static int init_usb_pitch(struct usb_device *dev, int iface,
1243 struct usb_host_interface *alts,
1244 struct audioformat *fmt)
1245{
1246 unsigned int ep;
1247 unsigned char data[1];
1248 int err;
1249
1250 ep = get_endpoint(alts, 0)->bEndpointAddress;
1251 /* if endpoint has pitch control, enable it */
1252 if (fmt->attributes & EP_CS_ATTR_PITCH_CONTROL) {
1253 data[0] = 1;
1254 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1255 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1256 PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) {
1257 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
1258 dev->devnum, iface, ep);
1259 return err;
1260 }
1261 }
1262 return 0;
1263}
1264
1265static int init_usb_sample_rate(struct usb_device *dev, int iface,
1266 struct usb_host_interface *alts,
1267 struct audioformat *fmt, int rate)
1268{
1269 unsigned int ep;
1270 unsigned char data[3];
1271 int err;
1272
1273 ep = get_endpoint(alts, 0)->bEndpointAddress;
1274 /* if endpoint has sampling rate control, set it */
1275 if (fmt->attributes & EP_CS_ATTR_SAMPLE_RATE) {
1276 int crate;
1277 data[0] = rate;
1278 data[1] = rate >> 8;
1279 data[2] = rate >> 16;
1280 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1281 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1282 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001283 snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 dev->devnum, iface, fmt->altsetting, rate, ep);
1285 return err;
1286 }
1287 if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), GET_CUR,
1288 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN,
1289 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001290 snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 dev->devnum, iface, fmt->altsetting, ep);
1292 return 0; /* some devices don't support reading */
1293 }
1294 crate = data[0] | (data[1] << 8) | (data[2] << 16);
1295 if (crate != rate) {
1296 snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate);
1297 // runtime->rate = crate;
1298 }
1299 }
1300 return 0;
1301}
1302
1303/*
1304 * find a matching format and set up the interface
1305 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001306static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
1308 struct usb_device *dev = subs->dev;
1309 struct usb_host_interface *alts;
1310 struct usb_interface_descriptor *altsd;
1311 struct usb_interface *iface;
1312 unsigned int ep, attr;
1313 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
1314 int err;
1315
1316 iface = usb_ifnum_to_if(dev, fmt->iface);
Takashi Iwai5e246b82008-08-08 17:12:47 +02001317 if (WARN_ON(!iface))
1318 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 alts = &iface->altsetting[fmt->altset_idx];
1320 altsd = get_iface_desc(alts);
Takashi Iwai5e246b82008-08-08 17:12:47 +02001321 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
1322 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 if (fmt == subs->cur_audiofmt)
1325 return 0;
1326
1327 /* close the old interface */
1328 if (subs->interface >= 0 && subs->interface != fmt->iface) {
Oliver Neukum5149fe2c2007-08-31 12:15:27 +02001329 if (usb_set_interface(subs->dev, subs->interface, 0) < 0) {
1330 snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed\n",
1331 dev->devnum, fmt->iface, fmt->altsetting);
1332 return -EIO;
1333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 subs->interface = -1;
1335 subs->format = 0;
1336 }
1337
1338 /* set interface */
1339 if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) {
1340 if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) {
1341 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n",
1342 dev->devnum, fmt->iface, fmt->altsetting);
1343 return -EIO;
1344 }
1345 snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting);
1346 subs->interface = fmt->iface;
1347 subs->format = fmt->altset_idx;
1348 }
1349
1350 /* create a data pipe */
1351 ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK;
1352 if (is_playback)
1353 subs->datapipe = usb_sndisocpipe(dev, ep);
1354 else
1355 subs->datapipe = usb_rcvisocpipe(dev, ep);
Clemens Ladisch573567e2005-06-27 08:17:30 +02001356 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH &&
1357 get_endpoint(alts, 0)->bInterval >= 1 &&
1358 get_endpoint(alts, 0)->bInterval <= 4)
1359 subs->datainterval = get_endpoint(alts, 0)->bInterval - 1;
1360 else
1361 subs->datainterval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 subs->syncpipe = subs->syncinterval = 0;
1363 subs->maxpacksize = fmt->maxpacksize;
1364 subs->fill_max = 0;
1365
1366 /* we need a sync pipe in async OUT or adaptive IN mode */
1367 /* check the number of EP, since some devices have broken
1368 * descriptors which fool us. if it has only one EP,
1369 * assume it as adaptive-out or sync-in.
1370 */
1371 attr = fmt->ep_attr & EP_ATTR_MASK;
1372 if (((is_playback && attr == EP_ATTR_ASYNC) ||
1373 (! is_playback && attr == EP_ATTR_ADAPTIVE)) &&
1374 altsd->bNumEndpoints >= 2) {
1375 /* check sync-pipe endpoint */
1376 /* ... and check descriptor size before accessing bSynchAddress
1377 because there is a version of the SB Audigy 2 NX firmware lacking
1378 the audio fields in the endpoint descriptors */
1379 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
1380 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1381 get_endpoint(alts, 1)->bSynchAddress != 0)) {
1382 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1383 dev->devnum, fmt->iface, fmt->altsetting);
1384 return -EINVAL;
1385 }
1386 ep = get_endpoint(alts, 1)->bEndpointAddress;
1387 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1388 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
1389 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
1390 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1391 dev->devnum, fmt->iface, fmt->altsetting);
1392 return -EINVAL;
1393 }
1394 ep &= USB_ENDPOINT_NUMBER_MASK;
1395 if (is_playback)
1396 subs->syncpipe = usb_rcvisocpipe(dev, ep);
1397 else
1398 subs->syncpipe = usb_sndisocpipe(dev, ep);
Clemens Ladisch1149a642005-05-02 08:53:46 +02001399 if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1400 get_endpoint(alts, 1)->bRefresh >= 1 &&
1401 get_endpoint(alts, 1)->bRefresh <= 9)
1402 subs->syncinterval = get_endpoint(alts, 1)->bRefresh;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001403 else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
Clemens Ladisch1149a642005-05-02 08:53:46 +02001404 subs->syncinterval = 1;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001405 else if (get_endpoint(alts, 1)->bInterval >= 1 &&
1406 get_endpoint(alts, 1)->bInterval <= 16)
1407 subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
1408 else
1409 subs->syncinterval = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 }
1411
1412 /* always fill max packet size */
1413 if (fmt->attributes & EP_CS_ATTR_FILL_MAX)
1414 subs->fill_max = 1;
1415
1416 if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0)
1417 return err;
1418
1419 subs->cur_audiofmt = fmt;
1420
1421#if 0
Takashi Iwai54530bd2009-02-05 15:55:18 +01001422 printk(KERN_DEBUG
1423 "setting done: format = %d, rate = %d..%d, channels = %d\n",
Pavel Machek2a56f512008-04-14 13:14:22 +02001424 fmt->format, fmt->rate_min, fmt->rate_max, fmt->channels);
Takashi Iwai54530bd2009-02-05 15:55:18 +01001425 printk(KERN_DEBUG
1426 " datapipe = 0x%0x, syncpipe = 0x%0x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 subs->datapipe, subs->syncpipe);
1428#endif
1429
1430 return 0;
1431}
1432
1433/*
1434 * hw_params callback
1435 *
1436 * allocate a buffer and set the given audio format.
1437 *
1438 * so far we use a physically linear buffer although packetize transfer
1439 * doesn't need a continuous area.
1440 * if sg buffer is supported on the later version of alsa, we'll follow
1441 * that.
1442 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001443static int snd_usb_hw_params(struct snd_pcm_substream *substream,
1444 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
John Daiker88518272006-12-28 13:55:05 +01001446 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 struct audioformat *fmt;
1448 unsigned int channels, rate, format;
1449 int ret, changed;
1450
Clemens Ladisch6207e512005-08-15 08:35:25 +02001451 ret = snd_pcm_alloc_vmalloc_buffer(substream,
1452 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (ret < 0)
1454 return ret;
1455
1456 format = params_format(hw_params);
1457 rate = params_rate(hw_params);
1458 channels = params_channels(hw_params);
1459 fmt = find_format(subs, format, rate, channels);
Pavel Machek07f51a72008-04-14 13:15:56 +02001460 if (!fmt) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001461 snd_printd(KERN_DEBUG "cannot set format: format = %#x, rate = %d, channels = %d\n",
Jaroslav Kysela21a34792006-01-13 09:12:11 +01001462 format, rate, channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return -EINVAL;
1464 }
1465
1466 changed = subs->cur_audiofmt != fmt ||
1467 subs->period_bytes != params_period_bytes(hw_params) ||
1468 subs->cur_rate != rate;
1469 if ((ret = set_format(subs, fmt)) < 0)
1470 return ret;
1471
1472 if (subs->cur_rate != rate) {
1473 struct usb_host_interface *alts;
1474 struct usb_interface *iface;
1475 iface = usb_ifnum_to_if(subs->dev, fmt->iface);
1476 alts = &iface->altsetting[fmt->altset_idx];
1477 ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate);
1478 if (ret < 0)
1479 return ret;
1480 subs->cur_rate = rate;
1481 }
1482
1483 if (changed) {
1484 /* format changed */
1485 release_substream_urbs(subs, 0);
1486 /* influenced: period_bytes, channels, rate, format, */
1487 ret = init_substream_urbs(subs, params_period_bytes(hw_params),
1488 params_rate(hw_params),
1489 snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params));
1490 }
1491
1492 return ret;
1493}
1494
1495/*
1496 * hw_free callback
1497 *
1498 * reset the audio format and release the buffer
1499 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001500static int snd_usb_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
John Daiker88518272006-12-28 13:55:05 +01001502 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 subs->cur_audiofmt = NULL;
1505 subs->cur_rate = 0;
1506 subs->period_bytes = 0;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001507 if (!subs->stream->chip->shutdown)
1508 release_substream_urbs(subs, 0);
Clemens Ladisch6207e512005-08-15 08:35:25 +02001509 return snd_pcm_free_vmalloc_buffer(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
1512/*
1513 * prepare callback
1514 *
1515 * only a few subtle things...
1516 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001517static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001519 struct snd_pcm_runtime *runtime = substream->runtime;
1520 struct snd_usb_substream *subs = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522 if (! subs->cur_audiofmt) {
1523 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
1524 return -ENXIO;
1525 }
1526
1527 /* some unit conversions in runtime */
1528 subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize);
1529 subs->curframesize = bytes_to_frames(runtime, subs->curpacksize);
1530
1531 /* reset the pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 subs->hwptr_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 subs->transfer_done = 0;
1534 subs->phase = 0;
1535
1536 /* clear urbs (to be sure) */
1537 deactivate_urbs(subs, 0, 1);
1538 wait_clear_urbs(subs);
1539
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001540 /* for playback, submit the URBs now; otherwise, the first hwptr_done
1541 * updates for all URBs would happen at the same time when starting */
1542 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
Clemens Ladische4f8e652006-10-04 13:42:57 +02001543 subs->ops.prepare = prepare_nodata_playback_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001544 return start_urbs(subs, runtime);
1545 } else
1546 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547}
1548
Clemens Ladisch1700f302006-10-04 13:41:25 +02001549static struct snd_pcm_hardware snd_usb_hardware =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Clemens Ladisch49045d32005-09-05 10:31:05 +02001551 .info = SNDRV_PCM_INFO_MMAP |
1552 SNDRV_PCM_INFO_MMAP_VALID |
1553 SNDRV_PCM_INFO_BATCH |
1554 SNDRV_PCM_INFO_INTERLEAVED |
Clemens Ladische4f8e652006-10-04 13:42:57 +02001555 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1556 SNDRV_PCM_INFO_PAUSE,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001557 .buffer_bytes_max = 1024 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 .period_bytes_min = 64,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001559 .period_bytes_max = 512 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 .periods_min = 2,
1561 .periods_max = 1024,
1562};
1563
1564/*
1565 * h/w constraints
1566 */
1567
1568#ifdef HW_CONST_DEBUG
1569#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
1570#else
1571#define hwc_debug(fmt, args...) /**/
1572#endif
1573
Takashi Iwai86e07d32005-11-17 15:08:02 +01001574static int hw_check_valid_format(struct snd_pcm_hw_params *params, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001576 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1577 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
1578 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 /* check the format */
Pavel Machek07f51a72008-04-14 13:15:56 +02001581 if (!snd_mask_test(fmts, fp->format)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 hwc_debug(" > check: no supported format %d\n", fp->format);
1583 return 0;
1584 }
1585 /* check the channels */
1586 if (fp->channels < ct->min || fp->channels > ct->max) {
1587 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
1588 return 0;
1589 }
1590 /* check the rate is within the range */
1591 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
1592 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
1593 return 0;
1594 }
1595 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
1596 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
1597 return 0;
1598 }
1599 return 1;
1600}
1601
Takashi Iwai86e07d32005-11-17 15:08:02 +01001602static int hw_rule_rate(struct snd_pcm_hw_params *params,
1603 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001605 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001607 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 unsigned int rmin, rmax;
1609 int changed;
1610
1611 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
1612 changed = 0;
1613 rmin = rmax = 0;
1614 list_for_each(p, &subs->fmt_list) {
1615 struct audioformat *fp;
1616 fp = list_entry(p, struct audioformat, list);
Pavel Machek07f51a72008-04-14 13:15:56 +02001617 if (!hw_check_valid_format(params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 continue;
1619 if (changed++) {
1620 if (rmin > fp->rate_min)
1621 rmin = fp->rate_min;
1622 if (rmax < fp->rate_max)
1623 rmax = fp->rate_max;
1624 } else {
1625 rmin = fp->rate_min;
1626 rmax = fp->rate_max;
1627 }
1628 }
1629
Pavel Machek07f51a72008-04-14 13:15:56 +02001630 if (!changed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 hwc_debug(" --> get empty\n");
1632 it->empty = 1;
1633 return -EINVAL;
1634 }
1635
1636 changed = 0;
1637 if (it->min < rmin) {
1638 it->min = rmin;
1639 it->openmin = 0;
1640 changed = 1;
1641 }
1642 if (it->max > rmax) {
1643 it->max = rmax;
1644 it->openmax = 0;
1645 changed = 1;
1646 }
1647 if (snd_interval_checkempty(it)) {
1648 it->empty = 1;
1649 return -EINVAL;
1650 }
1651 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1652 return changed;
1653}
1654
1655
Takashi Iwai86e07d32005-11-17 15:08:02 +01001656static int hw_rule_channels(struct snd_pcm_hw_params *params,
1657 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001659 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001661 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 unsigned int rmin, rmax;
1663 int changed;
1664
1665 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
1666 changed = 0;
1667 rmin = rmax = 0;
1668 list_for_each(p, &subs->fmt_list) {
1669 struct audioformat *fp;
1670 fp = list_entry(p, struct audioformat, list);
Pavel Machek07f51a72008-04-14 13:15:56 +02001671 if (!hw_check_valid_format(params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 continue;
1673 if (changed++) {
1674 if (rmin > fp->channels)
1675 rmin = fp->channels;
1676 if (rmax < fp->channels)
1677 rmax = fp->channels;
1678 } else {
1679 rmin = fp->channels;
1680 rmax = fp->channels;
1681 }
1682 }
1683
Pavel Machek07f51a72008-04-14 13:15:56 +02001684 if (!changed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 hwc_debug(" --> get empty\n");
1686 it->empty = 1;
1687 return -EINVAL;
1688 }
1689
1690 changed = 0;
1691 if (it->min < rmin) {
1692 it->min = rmin;
1693 it->openmin = 0;
1694 changed = 1;
1695 }
1696 if (it->max > rmax) {
1697 it->max = rmax;
1698 it->openmax = 0;
1699 changed = 1;
1700 }
1701 if (snd_interval_checkempty(it)) {
1702 it->empty = 1;
1703 return -EINVAL;
1704 }
1705 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1706 return changed;
1707}
1708
Takashi Iwai86e07d32005-11-17 15:08:02 +01001709static int hw_rule_format(struct snd_pcm_hw_params *params,
1710 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001712 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001714 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 u64 fbits;
1716 u32 oldbits[2];
1717 int changed;
1718
1719 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1720 fbits = 0;
1721 list_for_each(p, &subs->fmt_list) {
1722 struct audioformat *fp;
1723 fp = list_entry(p, struct audioformat, list);
Pavel Machek07f51a72008-04-14 13:15:56 +02001724 if (!hw_check_valid_format(params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 continue;
1726 fbits |= (1ULL << fp->format);
1727 }
1728
1729 oldbits[0] = fmt->bits[0];
1730 oldbits[1] = fmt->bits[1];
1731 fmt->bits[0] &= (u32)fbits;
1732 fmt->bits[1] &= (u32)(fbits >> 32);
Pavel Machek07f51a72008-04-14 13:15:56 +02001733 if (!fmt->bits[0] && !fmt->bits[1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 hwc_debug(" --> get empty\n");
1735 return -EINVAL;
1736 }
1737 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1738 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1739 return changed;
1740}
1741
1742#define MAX_MASK 64
1743
1744/*
1745 * check whether the registered audio formats need special hw-constraints
1746 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001747static int check_hw_params_convention(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
1749 int i;
1750 u32 *channels;
1751 u32 *rates;
1752 u32 cmaster, rmaster;
1753 u32 rate_min = 0, rate_max = 0;
1754 struct list_head *p;
1755 int err = 1;
1756
1757 channels = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
1758 rates = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
Takashi Iwai5a220c82008-03-17 09:59:32 +01001759 if (!channels || !rates) {
1760 err = -ENOMEM;
Jim Meyeringff17e952008-03-04 15:25:11 -08001761 goto __out;
Takashi Iwai5a220c82008-03-17 09:59:32 +01001762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
1764 list_for_each(p, &subs->fmt_list) {
1765 struct audioformat *f;
1766 f = list_entry(p, struct audioformat, list);
1767 /* unconventional channels? */
1768 if (f->channels > 32)
1769 goto __out;
1770 /* continuous rate min/max matches? */
1771 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1772 if (rate_min && f->rate_min != rate_min)
1773 goto __out;
1774 if (rate_max && f->rate_max != rate_max)
1775 goto __out;
1776 rate_min = f->rate_min;
1777 rate_max = f->rate_max;
1778 }
1779 /* combination of continuous rates and fixed rates? */
1780 if (rates[f->format] & SNDRV_PCM_RATE_CONTINUOUS) {
1781 if (f->rates != rates[f->format])
1782 goto __out;
1783 }
1784 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1785 if (rates[f->format] && rates[f->format] != f->rates)
1786 goto __out;
1787 }
1788 channels[f->format] |= (1 << f->channels);
1789 rates[f->format] |= f->rates;
Luke Rossa79eee82006-08-29 10:46:32 +02001790 /* needs knot? */
Clemens Ladisch918f3a02007-08-13 17:40:54 +02001791 if (f->rates & SNDRV_PCM_RATE_KNOT)
Luke Rossa79eee82006-08-29 10:46:32 +02001792 goto __out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
1794 /* check whether channels and rates match for all formats */
1795 cmaster = rmaster = 0;
1796 for (i = 0; i < MAX_MASK; i++) {
1797 if (cmaster != channels[i] && cmaster && channels[i])
1798 goto __out;
1799 if (rmaster != rates[i] && rmaster && rates[i])
1800 goto __out;
1801 if (channels[i])
1802 cmaster = channels[i];
1803 if (rates[i])
1804 rmaster = rates[i];
1805 }
1806 /* check whether channels match for all distinct rates */
1807 memset(channels, 0, MAX_MASK * sizeof(u32));
1808 list_for_each(p, &subs->fmt_list) {
1809 struct audioformat *f;
1810 f = list_entry(p, struct audioformat, list);
1811 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS)
1812 continue;
1813 for (i = 0; i < 32; i++) {
1814 if (f->rates & (1 << i))
1815 channels[i] |= (1 << f->channels);
1816 }
1817 }
1818 cmaster = 0;
1819 for (i = 0; i < 32; i++) {
1820 if (cmaster != channels[i] && cmaster && channels[i])
1821 goto __out;
1822 if (channels[i])
1823 cmaster = channels[i];
1824 }
1825 err = 0;
1826
1827 __out:
1828 kfree(channels);
1829 kfree(rates);
1830 return err;
1831}
1832
Luke Rossa79eee82006-08-29 10:46:32 +02001833/*
1834 * If the device supports unusual bit rates, does the request meet these?
1835 */
1836static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1837 struct snd_usb_substream *subs)
1838{
Takashi Iwai8fec5602007-02-01 11:50:56 +01001839 struct audioformat *fp;
1840 int count = 0, needs_knot = 0;
Luke Rossa79eee82006-08-29 10:46:32 +02001841 int err;
1842
Takashi Iwai8fec5602007-02-01 11:50:56 +01001843 list_for_each_entry(fp, &subs->fmt_list, list) {
1844 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
1845 return 0;
1846 count += fp->nr_rates;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02001847 if (fp->rates & SNDRV_PCM_RATE_KNOT)
Takashi Iwai8fec5602007-02-01 11:50:56 +01001848 needs_knot = 1;
Luke Rossa79eee82006-08-29 10:46:32 +02001849 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01001850 if (!needs_knot)
1851 return 0;
1852
1853 subs->rate_list.count = count;
1854 subs->rate_list.list = kmalloc(sizeof(int) * count, GFP_KERNEL);
1855 subs->rate_list.mask = 0;
1856 count = 0;
1857 list_for_each_entry(fp, &subs->fmt_list, list) {
1858 int i;
1859 for (i = 0; i < fp->nr_rates; i++)
1860 subs->rate_list.list[count++] = fp->rate_table[i];
1861 }
1862 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1863 &subs->rate_list);
1864 if (err < 0)
1865 return err;
Luke Rossa79eee82006-08-29 10:46:32 +02001866
1867 return 0;
1868}
1869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
1871/*
1872 * set up the runtime hardware information.
1873 */
1874
Takashi Iwai86e07d32005-11-17 15:08:02 +01001875static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
1877 struct list_head *p;
1878 int err;
1879
1880 runtime->hw.formats = subs->formats;
1881
1882 runtime->hw.rate_min = 0x7fffffff;
1883 runtime->hw.rate_max = 0;
1884 runtime->hw.channels_min = 256;
1885 runtime->hw.channels_max = 0;
1886 runtime->hw.rates = 0;
1887 /* check min/max rates and channels */
1888 list_for_each(p, &subs->fmt_list) {
1889 struct audioformat *fp;
1890 fp = list_entry(p, struct audioformat, list);
1891 runtime->hw.rates |= fp->rates;
1892 if (runtime->hw.rate_min > fp->rate_min)
1893 runtime->hw.rate_min = fp->rate_min;
1894 if (runtime->hw.rate_max < fp->rate_max)
1895 runtime->hw.rate_max = fp->rate_max;
1896 if (runtime->hw.channels_min > fp->channels)
1897 runtime->hw.channels_min = fp->channels;
1898 if (runtime->hw.channels_max < fp->channels)
1899 runtime->hw.channels_max = fp->channels;
1900 if (fp->fmt_type == USB_FORMAT_TYPE_II && fp->frame_size > 0) {
1901 /* FIXME: there might be more than one audio formats... */
1902 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1903 fp->frame_size;
1904 }
1905 }
1906
1907 /* set the period time minimum 1ms */
Takashi Iwai81c48992007-05-03 12:26:14 +02001908 /* FIXME: high-speed mode allows 125us minimum period, but many parts
1909 * in the current code assume the 1ms period.
1910 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
Takashi Iwai81c48992007-05-03 12:26:14 +02001912 1000 * MIN_PACKS_URB,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 /*(nrpacks * MAX_URBS) * 1000*/ UINT_MAX);
1914
Takashi Iwai5a220c82008-03-17 09:59:32 +01001915 err = check_hw_params_convention(subs);
1916 if (err < 0)
1917 return err;
1918 else if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 hwc_debug("setting extra hw constraints...\n");
1920 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1921 hw_rule_rate, subs,
1922 SNDRV_PCM_HW_PARAM_FORMAT,
1923 SNDRV_PCM_HW_PARAM_CHANNELS,
1924 -1)) < 0)
1925 return err;
1926 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1927 hw_rule_channels, subs,
1928 SNDRV_PCM_HW_PARAM_FORMAT,
1929 SNDRV_PCM_HW_PARAM_RATE,
1930 -1)) < 0)
1931 return err;
1932 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1933 hw_rule_format, subs,
1934 SNDRV_PCM_HW_PARAM_RATE,
1935 SNDRV_PCM_HW_PARAM_CHANNELS,
1936 -1)) < 0)
1937 return err;
Luke Rossa79eee82006-08-29 10:46:32 +02001938 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
1939 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 }
1941 return 0;
1942}
1943
Clemens Ladisch1700f302006-10-04 13:41:25 +02001944static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001946 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1947 struct snd_pcm_runtime *runtime = substream->runtime;
1948 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 subs->interface = -1;
1951 subs->format = 0;
Clemens Ladisch1700f302006-10-04 13:41:25 +02001952 runtime->hw = snd_usb_hardware;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 runtime->private_data = subs;
1954 subs->pcm_substream = substream;
1955 return setup_hw_info(runtime, subs);
1956}
1957
Takashi Iwai86e07d32005-11-17 15:08:02 +01001958static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001960 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1961 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 if (subs->interface >= 0) {
1964 usb_set_interface(subs->dev, subs->interface, 0);
1965 subs->interface = -1;
1966 }
1967 subs->pcm_substream = NULL;
1968 return 0;
1969}
1970
Takashi Iwai86e07d32005-11-17 15:08:02 +01001971static int snd_usb_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001973 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974}
1975
Takashi Iwai86e07d32005-11-17 15:08:02 +01001976static int snd_usb_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
1978 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1979}
1980
Takashi Iwai86e07d32005-11-17 15:08:02 +01001981static int snd_usb_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001983 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
1985
Takashi Iwai86e07d32005-11-17 15:08:02 +01001986static int snd_usb_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987{
1988 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1989}
1990
Takashi Iwai86e07d32005-11-17 15:08:02 +01001991static struct snd_pcm_ops snd_usb_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 .open = snd_usb_playback_open,
1993 .close = snd_usb_playback_close,
1994 .ioctl = snd_pcm_lib_ioctl,
1995 .hw_params = snd_usb_hw_params,
1996 .hw_free = snd_usb_hw_free,
1997 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001998 .trigger = snd_usb_pcm_playback_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02002000 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001};
2002
Takashi Iwai86e07d32005-11-17 15:08:02 +01002003static struct snd_pcm_ops snd_usb_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 .open = snd_usb_capture_open,
2005 .close = snd_usb_capture_close,
2006 .ioctl = snd_pcm_lib_ioctl,
2007 .hw_params = snd_usb_hw_params,
2008 .hw_free = snd_usb_hw_free,
2009 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01002010 .trigger = snd_usb_pcm_capture_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02002012 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013};
2014
2015
2016
2017/*
2018 * helper functions
2019 */
2020
2021/*
2022 * combine bytes and get an integer value
2023 */
2024unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size)
2025{
2026 switch (size) {
2027 case 1: return *bytes;
2028 case 2: return combine_word(bytes);
2029 case 3: return combine_triple(bytes);
2030 case 4: return combine_quad(bytes);
2031 default: return 0;
2032 }
2033}
2034
2035/*
2036 * parse descriptor buffer and return the pointer starting the given
2037 * descriptor type.
2038 */
2039void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype)
2040{
2041 u8 *p, *end, *next;
2042
2043 p = descstart;
2044 end = p + desclen;
2045 for (; p < end;) {
2046 if (p[0] < 2)
2047 return NULL;
2048 next = p + p[0];
2049 if (next > end)
2050 return NULL;
2051 if (p[1] == dtype && (!after || (void *)p > after)) {
2052 return p;
2053 }
2054 p = next;
2055 }
2056 return NULL;
2057}
2058
2059/*
2060 * find a class-specified interface descriptor with the given subtype.
2061 */
2062void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype)
2063{
2064 unsigned char *p = after;
2065
2066 while ((p = snd_usb_find_desc(buffer, buflen, p,
2067 USB_DT_CS_INTERFACE)) != NULL) {
2068 if (p[0] >= 3 && p[2] == dsubtype)
2069 return p;
2070 }
2071 return NULL;
2072}
2073
2074/*
2075 * Wrapper for usb_control_msg().
2076 * Allocates a temp buffer to prevent dmaing from/to the stack.
2077 */
2078int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
2079 __u8 requesttype, __u16 value, __u16 index, void *data,
2080 __u16 size, int timeout)
2081{
2082 int err;
2083 void *buf = NULL;
2084
2085 if (size > 0) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002086 buf = kmemdup(data, size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 if (!buf)
2088 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090 err = usb_control_msg(dev, pipe, request, requesttype,
2091 value, index, buf, size, timeout);
2092 if (size > 0) {
2093 memcpy(data, buf, size);
2094 kfree(buf);
2095 }
2096 return err;
2097}
2098
2099
2100/*
2101 * entry point for linux usb interface
2102 */
2103
2104static int usb_audio_probe(struct usb_interface *intf,
2105 const struct usb_device_id *id);
2106static void usb_audio_disconnect(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002107
2108#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01002109static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message);
2110static int usb_audio_resume(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002111#else
2112#define usb_audio_suspend NULL
2113#define usb_audio_resume NULL
2114#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
2116static struct usb_device_id usb_audio_ids [] = {
2117#include "usbquirks.h"
2118 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
2119 .bInterfaceClass = USB_CLASS_AUDIO,
2120 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL },
2121 { } /* Terminating entry */
2122};
2123
2124MODULE_DEVICE_TABLE (usb, usb_audio_ids);
2125
2126static struct usb_driver usb_audio_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 .name = "snd-usb-audio",
2128 .probe = usb_audio_probe,
2129 .disconnect = usb_audio_disconnect,
Oliver Neukumf85bf292007-12-14 14:42:41 +01002130 .suspend = usb_audio_suspend,
2131 .resume = usb_audio_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 .id_table = usb_audio_ids,
2133};
2134
2135
Takashi Iwai727f3172006-08-04 19:08:03 +02002136#if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS)
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138/*
2139 * proc interface for list the supported pcm formats
2140 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002141static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
2143 struct list_head *p;
2144 static char *sync_types[4] = {
2145 "NONE", "ASYNC", "ADAPTIVE", "SYNC"
2146 };
2147
2148 list_for_each(p, &subs->fmt_list) {
2149 struct audioformat *fp;
2150 fp = list_entry(p, struct audioformat, list);
2151 snd_iprintf(buffer, " Interface %d\n", fp->iface);
2152 snd_iprintf(buffer, " Altset %d\n", fp->altsetting);
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002153 snd_iprintf(buffer, " Format: %#x\n", fp->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 snd_iprintf(buffer, " Channels: %d\n", fp->channels);
2155 snd_iprintf(buffer, " Endpoint: %d %s (%s)\n",
2156 fp->endpoint & USB_ENDPOINT_NUMBER_MASK,
2157 fp->endpoint & USB_DIR_IN ? "IN" : "OUT",
2158 sync_types[(fp->ep_attr & EP_ATTR_MASK) >> 2]);
2159 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) {
2160 snd_iprintf(buffer, " Rates: %d - %d (continuous)\n",
2161 fp->rate_min, fp->rate_max);
2162 } else {
2163 unsigned int i;
2164 snd_iprintf(buffer, " Rates: ");
2165 for (i = 0; i < fp->nr_rates; i++) {
2166 if (i > 0)
2167 snd_iprintf(buffer, ", ");
2168 snd_iprintf(buffer, "%d", fp->rate_table[i]);
2169 }
2170 snd_iprintf(buffer, "\n");
2171 }
2172 // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize);
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002173 // snd_iprintf(buffer, " EP Attribute = %#x\n", fp->attributes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
2175}
2176
Takashi Iwai86e07d32005-11-17 15:08:02 +01002177static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
2179 if (subs->running) {
2180 unsigned int i;
2181 snd_iprintf(buffer, " Status: Running\n");
2182 snd_iprintf(buffer, " Interface = %d\n", subs->interface);
2183 snd_iprintf(buffer, " Altset = %d\n", subs->format);
2184 snd_iprintf(buffer, " URBs = %d [ ", subs->nurbs);
2185 for (i = 0; i < subs->nurbs; i++)
2186 snd_iprintf(buffer, "%d ", subs->dataurb[i].packets);
2187 snd_iprintf(buffer, "]\n");
2188 snd_iprintf(buffer, " Packet Size = %d\n", subs->curpacksize);
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002189 snd_iprintf(buffer, " Momentary freq = %u Hz (%#x.%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 snd_usb_get_speed(subs->dev) == USB_SPEED_FULL
2191 ? get_full_speed_hz(subs->freqm)
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002192 : get_high_speed_hz(subs->freqm),
2193 subs->freqm >> 16, subs->freqm & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 } else {
2195 snd_iprintf(buffer, " Status: Stop\n");
2196 }
2197}
2198
Takashi Iwai86e07d32005-11-17 15:08:02 +01002199static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002201 struct snd_usb_stream *stream = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203 snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name);
2204
2205 if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) {
2206 snd_iprintf(buffer, "\nPlayback:\n");
2207 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2208 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2209 }
2210 if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) {
2211 snd_iprintf(buffer, "\nCapture:\n");
2212 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2213 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2214 }
2215}
2216
Takashi Iwai86e07d32005-11-17 15:08:02 +01002217static void proc_pcm_format_add(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002219 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 char name[32];
Takashi Iwai86e07d32005-11-17 15:08:02 +01002221 struct snd_card *card = stream->chip->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 sprintf(name, "stream%d", stream->pcm_index);
Pavel Machek07f51a72008-04-14 13:15:56 +02002224 if (!snd_card_proc_new(card, name, &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002225 snd_info_set_text_ops(entry, stream, proc_pcm_format_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226}
2227
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002228#else
2229
2230static inline void proc_pcm_format_add(struct snd_usb_stream *stream)
2231{
2232}
2233
2234#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
2236/*
2237 * initialize the substream instance.
2238 */
2239
Takashi Iwai86e07d32005-11-17 15:08:02 +01002240static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002242 struct snd_usb_substream *subs = &as->substream[stream];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 INIT_LIST_HEAD(&subs->fmt_list);
2245 spin_lock_init(&subs->lock);
2246
2247 subs->stream = as;
2248 subs->direction = stream;
2249 subs->dev = as->chip->dev;
Clemens Ladischd5132022008-02-25 11:01:00 +01002250 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 subs->ops = audio_urb_ops[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002252 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 subs->ops = audio_urb_ops_high_speed[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002254 switch (as->chip->usb_id) {
2255 case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
2256 case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
Eran Tromer97c889a2008-09-26 01:07:03 -04002257 case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */
Clemens Ladischd5132022008-02-25 11:01:00 +01002258 subs->ops.retire_sync = retire_playback_sync_urb_hs_emu;
2259 break;
2260 }
2261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 snd_pcm_set_ops(as->pcm, stream,
2263 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2264 &snd_usb_playback_ops : &snd_usb_capture_ops);
2265
2266 list_add_tail(&fp->list, &subs->fmt_list);
2267 subs->formats |= 1ULL << fp->format;
2268 subs->endpoint = fp->endpoint;
2269 subs->num_formats++;
2270 subs->fmt_type = fp->fmt_type;
2271}
2272
2273
2274/*
2275 * free a substream
2276 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002277static void free_substream(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
2279 struct list_head *p, *n;
2280
Pavel Machek07f51a72008-04-14 13:15:56 +02002281 if (!subs->num_formats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 return; /* not initialized */
2283 list_for_each_safe(p, n, &subs->fmt_list) {
2284 struct audioformat *fp = list_entry(p, struct audioformat, list);
2285 kfree(fp->rate_table);
2286 kfree(fp);
2287 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01002288 kfree(subs->rate_list.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
2291
2292/*
2293 * free a usb stream instance
2294 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002295static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
2297 free_substream(&stream->substream[0]);
2298 free_substream(&stream->substream[1]);
2299 list_del(&stream->list);
2300 kfree(stream);
2301}
2302
Takashi Iwai86e07d32005-11-17 15:08:02 +01002303static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002305 struct snd_usb_stream *stream = pcm->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (stream) {
2307 stream->pcm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 snd_usb_audio_stream_free(stream);
2309 }
2310}
2311
2312
2313/*
2314 * add this endpoint to the chip instance.
2315 * if a stream with the same endpoint already exists, append to it.
2316 * if not, create a new pcm stream.
2317 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002318static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319{
2320 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002321 struct snd_usb_stream *as;
2322 struct snd_usb_substream *subs;
2323 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 int err;
2325
2326 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002327 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 if (as->fmt_type != fp->fmt_type)
2329 continue;
2330 subs = &as->substream[stream];
Pavel Machek07f51a72008-04-14 13:15:56 +02002331 if (!subs->endpoint)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 continue;
2333 if (subs->endpoint == fp->endpoint) {
2334 list_add_tail(&fp->list, &subs->fmt_list);
2335 subs->num_formats++;
2336 subs->formats |= 1ULL << fp->format;
2337 return 0;
2338 }
2339 }
2340 /* look for an empty stream */
2341 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002342 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 if (as->fmt_type != fp->fmt_type)
2344 continue;
2345 subs = &as->substream[stream];
2346 if (subs->endpoint)
2347 continue;
2348 err = snd_pcm_new_stream(as->pcm, stream, 1);
2349 if (err < 0)
2350 return err;
2351 init_substream(as, stream, fp);
2352 return 0;
2353 }
2354
2355 /* create a new pcm */
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002356 as = kzalloc(sizeof(*as), GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02002357 if (!as)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 as->pcm_index = chip->pcm_devs;
2360 as->chip = chip;
2361 as->fmt_type = fp->fmt_type;
2362 err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
2363 stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
2364 stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
2365 &pcm);
2366 if (err < 0) {
2367 kfree(as);
2368 return err;
2369 }
2370 as->pcm = pcm;
2371 pcm->private_data = as;
2372 pcm->private_free = snd_usb_audio_pcm_free;
2373 pcm->info_flags = 0;
2374 if (chip->pcm_devs > 0)
2375 sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
2376 else
2377 strcpy(pcm->name, "USB Audio");
2378
2379 init_substream(as, stream, fp);
2380
2381 list_add(&as->list, &chip->pcm_list);
2382 chip->pcm_devs++;
2383
2384 proc_pcm_format_add(as);
2385
2386 return 0;
2387}
2388
2389
2390/*
2391 * check if the device uses big-endian samples
2392 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002393static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394{
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002395 switch (chip->usb_id) {
2396 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
2397 if (fp->endpoint & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return 1;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002399 break;
2400 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02002401 if (device_setup[chip->index] == 0x00 ||
2402 fp->altsetting==1 || fp->altsetting==2 || fp->altsetting==3)
2403 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 }
2405 return 0;
2406}
2407
2408/*
2409 * parse the audio format type I descriptor
2410 * and returns the corresponding pcm format
2411 *
2412 * @dev: usb device
2413 * @fp: audioformat record
2414 * @format: the format tag (wFormatTag)
2415 * @fmt: the format type descriptor
2416 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002417static int parse_audio_format_i_type(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 int format, unsigned char *fmt)
2419{
2420 int pcm_format;
2421 int sample_width, sample_bytes;
2422
2423 /* FIXME: correct endianess and sign? */
2424 pcm_format = -1;
2425 sample_width = fmt[6];
2426 sample_bytes = fmt[5];
2427 switch (format) {
2428 case 0: /* some devices don't define this correctly... */
2429 snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002430 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 /* fall-through */
2432 case USB_AUDIO_FORMAT_PCM:
2433 if (sample_width > sample_bytes * 8) {
2434 snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002435 chip->dev->devnum, fp->iface, fp->altsetting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 sample_width, sample_bytes);
2437 }
2438 /* check the format byte size */
2439 switch (fmt[5]) {
2440 case 1:
2441 pcm_format = SNDRV_PCM_FORMAT_S8;
2442 break;
2443 case 2:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002444 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 pcm_format = SNDRV_PCM_FORMAT_S16_BE; /* grrr, big endian!! */
2446 else
2447 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2448 break;
2449 case 3:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002450 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */
2452 else
2453 pcm_format = SNDRV_PCM_FORMAT_S24_3LE;
2454 break;
2455 case 4:
2456 pcm_format = SNDRV_PCM_FORMAT_S32_LE;
2457 break;
2458 default:
2459 snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002460 chip->dev->devnum, fp->iface,
2461 fp->altsetting, sample_width, sample_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 break;
2463 }
2464 break;
2465 case USB_AUDIO_FORMAT_PCM8:
Pavel Machek2a56f512008-04-14 13:14:22 +02002466 pcm_format = SNDRV_PCM_FORMAT_U8;
2467
2468 /* Dallas DS4201 workaround: it advertises U8 format, but really
2469 supports S8. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002470 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 pcm_format = SNDRV_PCM_FORMAT_S8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 break;
2473 case USB_AUDIO_FORMAT_IEEE_FLOAT:
2474 pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE;
2475 break;
2476 case USB_AUDIO_FORMAT_ALAW:
2477 pcm_format = SNDRV_PCM_FORMAT_A_LAW;
2478 break;
2479 case USB_AUDIO_FORMAT_MU_LAW:
2480 pcm_format = SNDRV_PCM_FORMAT_MU_LAW;
2481 break;
2482 default:
2483 snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002484 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 break;
2486 }
2487 return pcm_format;
2488}
2489
2490
2491/*
2492 * parse the format descriptor and stores the possible sample rates
2493 * on the audioformat table.
2494 *
2495 * @dev: usb device
2496 * @fp: audioformat record
2497 * @fmt: the format descriptor
2498 * @offset: the start offset of descriptor pointing the rate type
2499 * (7 for type I and II, 8 for type II)
2500 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002501static int parse_audio_format_rates(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 unsigned char *fmt, int offset)
2503{
2504 int nr_rates = fmt[offset];
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
2507 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002508 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 return -1;
2510 }
2511
2512 if (nr_rates) {
2513 /*
2514 * build the rate table and bitmap flags
2515 */
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002516 int r, idx;
Gregor Jasnybeb60112007-01-31 12:27:39 +01002517 unsigned int nonzero_rates = 0;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
2520 if (fp->rate_table == NULL) {
2521 snd_printk(KERN_ERR "cannot malloc\n");
2522 return -1;
2523 }
2524
2525 fp->nr_rates = nr_rates;
2526 fp->rate_min = fp->rate_max = combine_triple(&fmt[8]);
2527 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
Clemens Ladisch987411b2006-11-20 14:14:39 +01002528 unsigned int rate = combine_triple(&fmt[idx]);
2529 /* C-Media CM6501 mislabels its 96 kHz altsetting */
2530 if (rate == 48000 && nr_rates == 1 &&
2531 chip->usb_id == USB_ID(0x0d8c, 0x0201) &&
2532 fp->altsetting == 5 && fp->maxpacksize == 392)
2533 rate = 96000;
2534 fp->rate_table[r] = rate;
Gregor Jasnybeb60112007-01-31 12:27:39 +01002535 nonzero_rates |= rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 if (rate < fp->rate_min)
2537 fp->rate_min = rate;
2538 else if (rate > fp->rate_max)
2539 fp->rate_max = rate;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002540 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 }
Gregor Jasnybeb60112007-01-31 12:27:39 +01002542 if (!nonzero_rates) {
2543 hwc_debug("All rates were zero. Skipping format!\n");
2544 return -1;
2545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 } else {
2547 /* continuous rates */
2548 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
2549 fp->rate_min = combine_triple(&fmt[offset + 1]);
2550 fp->rate_max = combine_triple(&fmt[offset + 4]);
2551 }
2552 return 0;
2553}
2554
2555/*
2556 * parse the format type I and III descriptors
2557 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002558static int parse_audio_format_i(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 int format, unsigned char *fmt)
2560{
2561 int pcm_format;
2562
2563 if (fmt[3] == USB_FORMAT_TYPE_III) {
2564 /* FIXME: the format type is really IECxxx
2565 * but we give normal PCM format to get the existing
2566 * apps working...
2567 */
Thibault Le Meurcac19c32007-07-13 11:50:23 +02002568 switch (chip->usb_id) {
2569
2570 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2571 if (device_setup[chip->index] == 0x00 &&
2572 fp->altsetting == 6)
2573 pcm_format = SNDRV_PCM_FORMAT_S16_BE;
2574 else
2575 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2576 break;
2577 default:
2578 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 } else {
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002581 pcm_format = parse_audio_format_i_type(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 if (pcm_format < 0)
2583 return -1;
2584 }
2585 fp->format = pcm_format;
2586 fp->channels = fmt[4];
2587 if (fp->channels < 1) {
2588 snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002589 chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 return -1;
2591 }
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002592 return parse_audio_format_rates(chip, fp, fmt, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593}
2594
2595/*
2596 * prase the format type II descriptor
2597 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002598static int parse_audio_format_ii(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 int format, unsigned char *fmt)
2600{
2601 int brate, framesize;
2602 switch (format) {
2603 case USB_AUDIO_FORMAT_AC3:
2604 /* FIXME: there is no AC3 format defined yet */
2605 // fp->format = SNDRV_PCM_FORMAT_AC3;
2606 fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */
2607 break;
2608 case USB_AUDIO_FORMAT_MPEG:
2609 fp->format = SNDRV_PCM_FORMAT_MPEG;
2610 break;
2611 default:
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002612 snd_printd(KERN_INFO "%d:%u:%d : unknown format tag %#x is detected. processed as MPEG.\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002613 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 fp->format = SNDRV_PCM_FORMAT_MPEG;
2615 break;
2616 }
2617 fp->channels = 1;
2618 brate = combine_word(&fmt[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */
2619 framesize = combine_word(&fmt[6]); /* fmt[6,7]: wSamplesPerFrame */
2620 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
2621 fp->frame_size = framesize;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002622 return parse_audio_format_rates(chip, fp, fmt, 8); /* fmt[8..] sample rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623}
2624
Takashi Iwai86e07d32005-11-17 15:08:02 +01002625static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 int format, unsigned char *fmt, int stream)
2627{
2628 int err;
2629
2630 switch (fmt[3]) {
2631 case USB_FORMAT_TYPE_I:
2632 case USB_FORMAT_TYPE_III:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002633 err = parse_audio_format_i(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 break;
2635 case USB_FORMAT_TYPE_II:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002636 err = parse_audio_format_ii(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 break;
2638 default:
2639 snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002640 chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 return -1;
2642 }
2643 fp->fmt_type = fmt[3];
2644 if (err < 0)
2645 return err;
2646#if 1
Clemens Ladisch33159372006-01-13 08:11:22 +01002647 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 /* extigy apparently supports sample rates other than 48k
2649 * but not in ordinary way. so we enable only 48k atm.
2650 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002651 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
Clemens Ladisch33159372006-01-13 08:11:22 +01002652 chip->usb_id == USB_ID(0x041e, 0x3020) ||
2653 chip->usb_id == USB_ID(0x041e, 0x3061)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 if (fmt[3] == USB_FORMAT_TYPE_I &&
Clemens Ladisch8c1872d2005-04-28 09:31:53 +02002655 fp->rates != SNDRV_PCM_RATE_48000 &&
2656 fp->rates != SNDRV_PCM_RATE_96000)
Clemens Ladischb4d3f9d2005-06-27 08:18:27 +02002657 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 }
2659#endif
2660 return 0;
2661}
2662
Thibault LE MEURe3113342006-03-14 11:44:53 +01002663static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
2664 int iface, int altno);
Takashi Iwai86e07d32005-11-17 15:08:02 +01002665static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
2667 struct usb_device *dev;
2668 struct usb_interface *iface;
2669 struct usb_host_interface *alts;
2670 struct usb_interface_descriptor *altsd;
2671 int i, altno, err, stream;
2672 int format;
2673 struct audioformat *fp;
2674 unsigned char *fmt, *csep;
Pavel Machekb9d43bc2008-04-14 13:12:47 +02002675 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 dev = chip->dev;
2678
2679 /* parse the interface's altsettings */
2680 iface = usb_ifnum_to_if(dev, iface_no);
Pavel Machekb9d43bc2008-04-14 13:12:47 +02002681
2682 num = iface->num_altsetting;
2683
2684 /*
2685 * Dallas DS4201 workaround: It presents 5 altsettings, but the last
2686 * one misses syncpipe, and does not produce any sound.
2687 */
2688 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
2689 num = 4;
2690
2691 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 alts = &iface->altsetting[i];
2693 altsd = get_iface_desc(alts);
2694 /* skip invalid one */
2695 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2696 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2697 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING &&
2698 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
2699 altsd->bNumEndpoints < 1 ||
2700 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
2701 continue;
2702 /* must be isochronous */
2703 if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
2704 USB_ENDPOINT_XFER_ISOC)
2705 continue;
2706 /* check direction */
2707 stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
2708 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2709 altno = altsd->bAlternateSetting;
Thibault LE MEURe3113342006-03-14 11:44:53 +01002710
2711 /* audiophile usb: skip altsets incompatible with device_setup
2712 */
2713 if (chip->usb_id == USB_ID(0x0763, 0x2003) &&
2714 audiophile_skip_setting_quirk(chip, iface_no, altno))
2715 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
2717 /* get audio formats */
2718 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, AS_GENERAL);
2719 if (!fmt) {
2720 snd_printk(KERN_ERR "%d:%u:%d : AS_GENERAL descriptor not found\n",
2721 dev->devnum, iface_no, altno);
2722 continue;
2723 }
2724
2725 if (fmt[0] < 7) {
2726 snd_printk(KERN_ERR "%d:%u:%d : invalid AS_GENERAL desc\n",
2727 dev->devnum, iface_no, altno);
2728 continue;
2729 }
2730
2731 format = (fmt[6] << 8) | fmt[5]; /* remember the format value */
2732
2733 /* get format type */
2734 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, FORMAT_TYPE);
2735 if (!fmt) {
2736 snd_printk(KERN_ERR "%d:%u:%d : no FORMAT_TYPE desc\n",
2737 dev->devnum, iface_no, altno);
2738 continue;
2739 }
2740 if (fmt[0] < 8) {
2741 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
2742 dev->devnum, iface_no, altno);
2743 continue;
2744 }
2745
2746 csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
2747 /* Creamware Noah has this descriptor after the 2nd endpoint */
2748 if (!csep && altsd->bNumEndpoints >= 2)
2749 csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
2750 if (!csep || csep[0] < 7 || csep[2] != EP_GENERAL) {
Takashi Iwaif8c75792006-05-18 14:47:03 +02002751 snd_printk(KERN_WARNING "%d:%u:%d : no or invalid"
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002752 " class specific endpoint descriptor\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 dev->devnum, iface_no, altno);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002754 csep = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 }
2756
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002757 fp = kzalloc(sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 if (! fp) {
2759 snd_printk(KERN_ERR "cannot malloc\n");
2760 return -ENOMEM;
2761 }
2762
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 fp->iface = iface_no;
2764 fp->altsetting = altno;
2765 fp->altset_idx = i;
2766 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2767 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Clemens Ladisch573567e2005-06-27 08:17:30 +02002769 if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
2770 fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
2771 * (fp->maxpacksize & 0x7ff);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002772 fp->attributes = csep ? csep[3] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774 /* some quirks for attributes here */
2775
Clemens Ladischc3f93292005-05-04 14:56:04 +02002776 switch (chip->usb_id) {
2777 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 /* Optoplay sets the sample rate attribute although
2779 * it seems not supporting it in fact.
2780 */
2781 fp->attributes &= ~EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002782 break;
2783 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
2784 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 /* doesn't set the sample rate attribute, but supports it */
2786 fp->attributes |= EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002787 break;
2788 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
2789 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
2790 an older model 77d:223) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 /*
2792 * plantronics headset and Griffin iMic have set adaptive-in
2793 * although it's really not...
2794 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 fp->ep_attr &= ~EP_ATTR_MASK;
2796 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2797 fp->ep_attr |= EP_ATTR_ADAPTIVE;
2798 else
2799 fp->ep_attr |= EP_ATTR_SYNC;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002800 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 }
2802
2803 /* ok, let's parse further... */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002804 if (parse_audio_format(chip, fp, format, fmt, stream) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 kfree(fp->rate_table);
2806 kfree(fp);
2807 continue;
2808 }
2809
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002810 snd_printdd(KERN_INFO "%d:%u:%d: add audio endpoint %#x\n", dev->devnum, iface_no, altno, fp->endpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 err = add_audio_endpoint(chip, stream, fp);
2812 if (err < 0) {
2813 kfree(fp->rate_table);
2814 kfree(fp);
2815 return err;
2816 }
2817 /* try to set the interface... */
2818 usb_set_interface(chip->dev, iface_no, altno);
2819 init_usb_pitch(chip->dev, iface_no, alts, fp);
2820 init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max);
2821 }
2822 return 0;
2823}
2824
2825
2826/*
2827 * disconnect streams
2828 * called from snd_usb_audio_disconnect()
2829 */
Clemens Ladischee733392005-04-25 10:34:13 +02002830static void snd_usb_stream_disconnect(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831{
2832 int idx;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002833 struct snd_usb_stream *as;
2834 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Takashi Iwai86e07d32005-11-17 15:08:02 +01002836 as = list_entry(head, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 for (idx = 0; idx < 2; idx++) {
2838 subs = &as->substream[idx];
2839 if (!subs->num_formats)
2840 return;
2841 release_substream_urbs(subs, 1);
2842 subs->interface = -1;
2843 }
2844}
2845
2846/*
2847 * parse audio control descriptor and create pcm/midi streams
2848 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002849static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850{
2851 struct usb_device *dev = chip->dev;
2852 struct usb_host_interface *host_iface;
2853 struct usb_interface *iface;
2854 unsigned char *p1;
2855 int i, j;
2856
2857 /* find audiocontrol interface */
2858 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
2859 if (!(p1 = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen, NULL, HEADER))) {
2860 snd_printk(KERN_ERR "cannot find HEADER\n");
2861 return -EINVAL;
2862 }
2863 if (! p1[7] || p1[0] < 8 + p1[7]) {
2864 snd_printk(KERN_ERR "invalid HEADER\n");
2865 return -EINVAL;
2866 }
2867
2868 /*
2869 * parse all USB audio streaming interfaces
2870 */
2871 for (i = 0; i < p1[7]; i++) {
2872 struct usb_host_interface *alts;
2873 struct usb_interface_descriptor *altsd;
2874 j = p1[8 + i];
2875 iface = usb_ifnum_to_if(dev, j);
2876 if (!iface) {
2877 snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
2878 dev->devnum, ctrlif, j);
2879 continue;
2880 }
2881 if (usb_interface_claimed(iface)) {
2882 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n", dev->devnum, ctrlif, j);
2883 continue;
2884 }
2885 alts = &iface->altsetting[0];
2886 altsd = get_iface_desc(alts);
2887 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
2888 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
2889 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDI_STREAMING) {
2890 if (snd_usb_create_midi_interface(chip, iface, NULL) < 0) {
2891 snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n", dev->devnum, ctrlif, j);
2892 continue;
2893 }
2894 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2895 continue;
2896 }
2897 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2898 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2899 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING) {
2900 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n", dev->devnum, ctrlif, j, altsd->bInterfaceClass);
2901 /* skip non-supported classes */
2902 continue;
2903 }
Clemens Ladisch076639f2007-08-21 08:56:54 +02002904 if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
2905 snd_printk(KERN_ERR "low speed audio streaming not supported\n");
2906 continue;
2907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 if (! parse_audio_endpoints(chip, j)) {
2909 usb_set_interface(dev, j, 0); /* reset the current interface */
2910 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2911 }
2912 }
2913
2914 return 0;
2915}
2916
2917/*
2918 * create a stream for an endpoint/altsetting without proper descriptors
2919 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002920static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002922 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923{
2924 struct audioformat *fp;
2925 struct usb_host_interface *alts;
2926 int stream, err;
Al Virob4482a42007-10-14 19:35:40 +01002927 unsigned *rate_table = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002929 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 if (! fp) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002931 snd_printk(KERN_ERR "cannot memdup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 return -ENOMEM;
2933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 if (fp->nr_rates > 0) {
2935 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
2936 if (!rate_table) {
2937 kfree(fp);
2938 return -ENOMEM;
2939 }
2940 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
2941 fp->rate_table = rate_table;
2942 }
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 kfree(rate_table);
2950 return err;
2951 }
2952 if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
2953 fp->altset_idx >= iface->num_altsetting) {
2954 kfree(fp);
2955 kfree(rate_table);
2956 return -EINVAL;
2957 }
2958 alts = &iface->altsetting[fp->altset_idx];
2959 usb_set_interface(chip->dev, fp->iface, 0);
2960 init_usb_pitch(chip->dev, fp->iface, alts, fp);
2961 init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max);
2962 return 0;
2963}
2964
2965/*
2966 * create a stream for an interface with proper descriptors
2967 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002968static int create_standard_audio_quirk(struct snd_usb_audio *chip,
Clemens Ladischd1bda042005-09-14 08:36:03 +02002969 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002970 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
2972 struct usb_host_interface *alts;
2973 struct usb_interface_descriptor *altsd;
2974 int err;
2975
2976 alts = &iface->altsetting[0];
2977 altsd = get_iface_desc(alts);
Clemens Ladischd1bda042005-09-14 08:36:03 +02002978 err = parse_audio_endpoints(chip, altsd->bInterfaceNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 if (err < 0) {
2980 snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
2981 altsd->bInterfaceNumber, err);
2982 return err;
2983 }
Clemens Ladischd1bda042005-09-14 08:36:03 +02002984 /* reset the current interface */
2985 usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 return 0;
2987}
2988
2989/*
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02002990 * Create a stream for an Edirol UA-700/UA-25/UA-4FX interface.
2991 * The only way to detect the sample rate is by looking at wMaxPacketSize.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 */
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02002993static int create_uaxx_quirk(struct snd_usb_audio *chip,
2994 struct usb_interface *iface,
2995 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996{
2997 static const struct audioformat ua_format = {
2998 .format = SNDRV_PCM_FORMAT_S24_3LE,
2999 .channels = 2,
3000 .fmt_type = USB_FORMAT_TYPE_I,
3001 .altsetting = 1,
3002 .altset_idx = 1,
3003 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3004 };
3005 struct usb_host_interface *alts;
3006 struct usb_interface_descriptor *altsd;
3007 struct audioformat *fp;
3008 int stream, err;
3009
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003010 /* both PCM and MIDI interfaces have 2 or more altsettings */
3011 if (iface->num_altsetting < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 return -ENXIO;
3013 alts = &iface->altsetting[1];
3014 altsd = get_iface_desc(alts);
3015
Pedro Lopez-Cabanillas59b3db62008-10-07 20:54:18 +02003016 if (altsd->bNumEndpoints == 2) {
3017 static const struct snd_usb_midi_endpoint_info ua700_ep = {
3018 .out_cables = 0x0003,
3019 .in_cables = 0x0003
3020 };
3021 static const struct snd_usb_audio_quirk ua700_quirk = {
3022 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3023 .data = &ua700_ep
3024 };
3025 static const struct snd_usb_midi_endpoint_info uaxx_ep = {
3026 .out_cables = 0x0001,
3027 .in_cables = 0x0001
3028 };
3029 static const struct snd_usb_audio_quirk uaxx_quirk = {
3030 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3031 .data = &uaxx_ep
3032 };
3033 if (chip->usb_id == USB_ID(0x0582, 0x002b))
3034 return snd_usb_create_midi_interface(chip, iface,
3035 &ua700_quirk);
3036 else
3037 return snd_usb_create_midi_interface(chip, iface,
3038 &uaxx_quirk);
3039 }
3040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 if (altsd->bNumEndpoints != 1)
3042 return -ENXIO;
3043
3044 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
3045 if (!fp)
3046 return -ENOMEM;
3047 memcpy(fp, &ua_format, sizeof(*fp));
3048
3049 fp->iface = altsd->bInterfaceNumber;
3050 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3051 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3052 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3053
3054 switch (fp->maxpacksize) {
3055 case 0x120:
3056 fp->rate_max = fp->rate_min = 44100;
3057 break;
3058 case 0x138:
3059 case 0x140:
3060 fp->rate_max = fp->rate_min = 48000;
3061 break;
3062 case 0x258:
3063 case 0x260:
3064 fp->rate_max = fp->rate_min = 96000;
3065 break;
3066 default:
3067 snd_printk(KERN_ERR "unknown sample rate\n");
3068 kfree(fp);
3069 return -ENXIO;
3070 }
3071
3072 stream = (fp->endpoint & USB_DIR_IN)
3073 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3074 err = add_audio_endpoint(chip, stream, fp);
3075 if (err < 0) {
3076 kfree(fp);
3077 return err;
3078 }
3079 usb_set_interface(chip->dev, fp->iface, 0);
3080 return 0;
3081}
3082
3083/*
3084 * Create a stream for an Edirol UA-1000 interface.
3085 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003086static int create_ua1000_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003087 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003088 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089{
3090 static const struct audioformat ua1000_format = {
3091 .format = SNDRV_PCM_FORMAT_S32_LE,
3092 .fmt_type = USB_FORMAT_TYPE_I,
3093 .altsetting = 1,
3094 .altset_idx = 1,
3095 .attributes = 0,
3096 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3097 };
3098 struct usb_host_interface *alts;
3099 struct usb_interface_descriptor *altsd;
3100 struct audioformat *fp;
3101 int stream, err;
3102
3103 if (iface->num_altsetting != 2)
3104 return -ENXIO;
3105 alts = &iface->altsetting[1];
3106 altsd = get_iface_desc(alts);
Ben Williamsonc4a87ef2006-06-19 17:20:09 +02003107 if (alts->extralen != 11 || alts->extra[1] != USB_DT_CS_INTERFACE ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 altsd->bNumEndpoints != 1)
3109 return -ENXIO;
3110
Alexey Dobriyan52978be2006-09-30 23:27:21 -07003111 fp = kmemdup(&ua1000_format, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 if (!fp)
3113 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
3115 fp->channels = alts->extra[4];
3116 fp->iface = altsd->bInterfaceNumber;
3117 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3118 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3119 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3120 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[8]);
3121
3122 stream = (fp->endpoint & USB_DIR_IN)
3123 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3124 err = add_audio_endpoint(chip, stream, fp);
3125 if (err < 0) {
3126 kfree(fp);
3127 return err;
3128 }
3129 /* FIXME: playback must be synchronized to capture */
3130 usb_set_interface(chip->dev, fp->iface, 0);
3131 return 0;
3132}
3133
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003134/*
3135 * Create a stream for an Edirol UA-101 interface.
3136 * Copy, paste and modify from Edirol UA-1000
3137 */
3138static int create_ua101_quirk(struct snd_usb_audio *chip,
3139 struct usb_interface *iface,
3140 const struct snd_usb_audio_quirk *quirk)
3141{
3142 static const struct audioformat ua101_format = {
3143 .format = SNDRV_PCM_FORMAT_S32_LE,
3144 .fmt_type = USB_FORMAT_TYPE_I,
3145 .altsetting = 1,
3146 .altset_idx = 1,
3147 .attributes = 0,
3148 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3149 };
3150 struct usb_host_interface *alts;
3151 struct usb_interface_descriptor *altsd;
3152 struct audioformat *fp;
3153 int stream, err;
3154
3155 if (iface->num_altsetting != 2)
3156 return -ENXIO;
3157 alts = &iface->altsetting[1];
3158 altsd = get_iface_desc(alts);
3159 if (alts->extralen != 18 || alts->extra[1] != USB_DT_CS_INTERFACE ||
3160 altsd->bNumEndpoints != 1)
3161 return -ENXIO;
3162
3163 fp = kmemdup(&ua101_format, sizeof(*fp), GFP_KERNEL);
3164 if (!fp)
3165 return -ENOMEM;
3166
3167 fp->channels = alts->extra[11];
3168 fp->iface = altsd->bInterfaceNumber;
3169 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3170 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3171 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3172 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[15]);
3173
3174 stream = (fp->endpoint & USB_DIR_IN)
3175 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3176 err = add_audio_endpoint(chip, stream, fp);
3177 if (err < 0) {
3178 kfree(fp);
3179 return err;
3180 }
3181 /* FIXME: playback must be synchronized to capture */
3182 usb_set_interface(chip->dev, fp->iface, 0);
3183 return 0;
3184}
3185
Takashi Iwai86e07d32005-11-17 15:08:02 +01003186static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003188 const struct snd_usb_audio_quirk *quirk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
3190/*
3191 * handle the quirks for the contained interfaces
3192 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003193static int create_composite_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003195 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196{
3197 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
3198 int err;
3199
3200 for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
3201 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
3202 if (!iface)
3203 continue;
3204 if (quirk->ifnum != probed_ifnum &&
3205 usb_interface_claimed(iface))
3206 continue;
3207 err = snd_usb_create_quirk(chip, iface, quirk);
3208 if (err < 0)
3209 return err;
3210 if (quirk->ifnum != probed_ifnum)
3211 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
3212 }
3213 return 0;
3214}
3215
Takashi Iwai86e07d32005-11-17 15:08:02 +01003216static int ignore_interface_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003217 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003218 const struct snd_usb_audio_quirk *quirk)
Clemens Ladisch854af952005-07-25 16:19:10 +02003219{
3220 return 0;
3221}
3222
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
3224/*
3225 * boot quirks
3226 */
3227
3228#define EXTIGY_FIRMWARE_SIZE_OLD 794
3229#define EXTIGY_FIRMWARE_SIZE_NEW 483
3230
3231static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
3232{
3233 struct usb_host_config *config = dev->actconfig;
3234 int err;
3235
3236 if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
3237 le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
3238 snd_printdd("sending Extigy boot sequence...\n");
3239 /* Send message to force it to reconnect with full interface. */
3240 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
3241 0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000);
3242 if (err < 0) snd_printdd("error sending boot message: %d\n", err);
3243 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
3244 &dev->descriptor, sizeof(dev->descriptor));
3245 config = dev->actconfig;
3246 if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
3247 err = usb_reset_configuration(dev);
3248 if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
3249 snd_printdd("extigy_boot: new boot length = %d\n",
3250 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
3251 return -ENODEV; /* quit this anyway */
3252 }
3253 return 0;
3254}
3255
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003256static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
3257{
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003258 u8 buf = 1;
3259
3260 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
3261 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3262 0, 0, &buf, 1, 1000);
3263 if (buf == 0) {
3264 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
3265 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3266 1, 2000, NULL, 0, 1000);
3267 return -ENODEV;
3268 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003269 return 0;
3270}
3271
Thibault LE MEURe3113342006-03-14 11:44:53 +01003272/*
Sam Revitche217e302006-06-23 15:10:18 +02003273 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
3274 * documented in the device's data sheet.
3275 */
3276static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value)
3277{
3278 u8 buf[4];
3279 buf[0] = 0x20;
3280 buf[1] = value & 0xff;
3281 buf[2] = (value >> 8) & 0xff;
3282 buf[3] = reg;
3283 return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION,
3284 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT,
3285 0, 0, &buf, 4, 1000);
3286}
3287
3288static int snd_usb_cm106_boot_quirk(struct usb_device *dev)
3289{
3290 /*
3291 * Enable line-out driver mode, set headphone source to front
3292 * channels, enable stereo mic.
3293 */
3294 return snd_usb_cm106_write_int_reg(dev, 2, 0x8004);
3295}
3296
3297
3298/*
Thibault LE MEURe3113342006-03-14 11:44:53 +01003299 * Setup quirks
3300 */
3301#define AUDIOPHILE_SET 0x01 /* if set, parse device_setup */
3302#define AUDIOPHILE_SET_DTS 0x02 /* if set, enable DTS Digital Output */
3303#define AUDIOPHILE_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
3304#define AUDIOPHILE_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */
3305#define AUDIOPHILE_SET_DI 0x10 /* if set, enable Digital Input */
3306#define AUDIOPHILE_SET_MASK 0x1F /* bit mask for setup value */
3307#define AUDIOPHILE_SET_24B_48K_DI 0x19 /* value for 24bits+48KHz+Digital Input */
3308#define AUDIOPHILE_SET_24B_48K_NOTDI 0x09 /* value for 24bits+48KHz+No Digital Input */
3309#define AUDIOPHILE_SET_16B_48K_DI 0x11 /* value for 16bits+48KHz+Digital Input */
3310#define AUDIOPHILE_SET_16B_48K_NOTDI 0x01 /* value for 16bits+48KHz+No Digital Input */
3311
3312static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
3313 int iface, int altno)
3314{
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02003315 /* Reset ALL ifaces to 0 altsetting.
3316 * Call it for every possible altsetting of every interface.
3317 */
3318 usb_set_interface(chip->dev, iface, 0);
3319
Thibault LE MEURe3113342006-03-14 11:44:53 +01003320 if (device_setup[chip->index] & AUDIOPHILE_SET) {
3321 if ((device_setup[chip->index] & AUDIOPHILE_SET_DTS)
3322 && altno != 6)
3323 return 1; /* skip this altsetting */
3324 if ((device_setup[chip->index] & AUDIOPHILE_SET_96K)
3325 && altno != 1)
3326 return 1; /* skip this altsetting */
3327 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3328 AUDIOPHILE_SET_24B_48K_DI && altno != 2)
3329 return 1; /* skip this altsetting */
3330 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3331 AUDIOPHILE_SET_24B_48K_NOTDI && altno != 3)
3332 return 1; /* skip this altsetting */
3333 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3334 AUDIOPHILE_SET_16B_48K_DI && altno != 4)
3335 return 1; /* skip this altsetting */
3336 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3337 AUDIOPHILE_SET_16B_48K_NOTDI && altno != 5)
3338 return 1; /* skip this altsetting */
3339 }
3340 return 0; /* keep this altsetting */
3341}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
3343/*
3344 * audio-interface quirks
3345 *
3346 * returns zero if no standard audio/MIDI parsing is needed.
3347 * returns a postive value if standard audio/midi interfaces are parsed
3348 * after this.
3349 * returns a negative value at error.
3350 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003351static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003353 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003355 typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *,
3356 const struct snd_usb_audio_quirk *);
Clemens Ladisch854af952005-07-25 16:19:10 +02003357 static const quirk_func_t quirk_funcs[] = {
3358 [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
3359 [QUIRK_COMPOSITE] = create_composite_quirk,
3360 [QUIRK_MIDI_STANDARD_INTERFACE] = snd_usb_create_midi_interface,
3361 [QUIRK_MIDI_FIXED_ENDPOINT] = snd_usb_create_midi_interface,
3362 [QUIRK_MIDI_YAMAHA] = snd_usb_create_midi_interface,
3363 [QUIRK_MIDI_MIDIMAN] = snd_usb_create_midi_interface,
3364 [QUIRK_MIDI_NOVATION] = snd_usb_create_midi_interface,
3365 [QUIRK_MIDI_RAW] = snd_usb_create_midi_interface,
3366 [QUIRK_MIDI_EMAGIC] = snd_usb_create_midi_interface,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01003367 [QUIRK_MIDI_CME] = snd_usb_create_midi_interface,
Clemens Ladischd1bda042005-09-14 08:36:03 +02003368 [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003369 [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003370 [QUIRK_AUDIO_EDIROL_UA1000] = create_ua1000_quirk,
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003371 [QUIRK_AUDIO_EDIROL_UA101] = create_ua101_quirk,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003372 [QUIRK_AUDIO_EDIROL_UAXX] = create_uaxx_quirk
Clemens Ladisch854af952005-07-25 16:19:10 +02003373 };
3374
3375 if (quirk->type < QUIRK_TYPE_COUNT) {
3376 return quirk_funcs[quirk->type](chip, iface, quirk);
3377 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
3379 return -ENXIO;
3380 }
3381}
3382
3383
3384/*
3385 * common proc files to show the usb device info
3386 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003387static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003389 struct snd_usb_audio *chip = entry->private_data;
Pavel Machek07f51a72008-04-14 13:15:56 +02003390 if (!chip->shutdown)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum);
3392}
3393
Takashi Iwai86e07d32005-11-17 15:08:02 +01003394static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003396 struct snd_usb_audio *chip = entry->private_data;
Pavel Machek07f51a72008-04-14 13:15:56 +02003397 if (!chip->shutdown)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 snd_iprintf(buffer, "%04x:%04x\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003399 USB_ID_VENDOR(chip->usb_id),
3400 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401}
3402
Takashi Iwai86e07d32005-11-17 15:08:02 +01003403static void snd_usb_audio_create_proc(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003405 struct snd_info_entry *entry;
Pavel Machek07f51a72008-04-14 13:15:56 +02003406 if (!snd_card_proc_new(chip->card, "usbbus", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003407 snd_info_set_text_ops(entry, chip, proc_audio_usbbus_read);
Pavel Machek07f51a72008-04-14 13:15:56 +02003408 if (!snd_card_proc_new(chip->card, "usbid", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003409 snd_info_set_text_ops(entry, chip, proc_audio_usbid_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410}
3411
3412/*
3413 * free the chip instance
3414 *
3415 * here we have to do not much, since pcm and controls are already freed
3416 *
3417 */
3418
Takashi Iwai86e07d32005-11-17 15:08:02 +01003419static int snd_usb_audio_free(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420{
3421 kfree(chip);
3422 return 0;
3423}
3424
Takashi Iwai86e07d32005-11-17 15:08:02 +01003425static int snd_usb_audio_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003427 struct snd_usb_audio *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 return snd_usb_audio_free(chip);
3429}
3430
3431
3432/*
3433 * create a chip instance and set its names.
3434 */
3435static int snd_usb_audio_create(struct usb_device *dev, int idx,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003436 const struct snd_usb_audio_quirk *quirk,
3437 struct snd_usb_audio **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003439 struct snd_card *card;
3440 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 int err, len;
3442 char component[14];
Takashi Iwai86e07d32005-11-17 15:08:02 +01003443 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 .dev_free = snd_usb_audio_dev_free,
3445 };
3446
3447 *rchip = NULL;
3448
Clemens Ladisch076639f2007-08-21 08:56:54 +02003449 if (snd_usb_get_speed(dev) != USB_SPEED_LOW &&
3450 snd_usb_get_speed(dev) != USB_SPEED_FULL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 snd_usb_get_speed(dev) != USB_SPEED_HIGH) {
3452 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
3453 return -ENXIO;
3454 }
3455
3456 card = snd_card_new(index[idx], id[idx], THIS_MODULE, 0);
3457 if (card == NULL) {
3458 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
3459 return -ENOMEM;
3460 }
3461
Takashi Iwai561b2202005-09-09 14:22:34 +02003462 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 if (! chip) {
3464 snd_card_free(card);
3465 return -ENOMEM;
3466 }
3467
3468 chip->index = idx;
3469 chip->dev = dev;
3470 chip->card = card;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003471 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3472 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 INIT_LIST_HEAD(&chip->pcm_list);
3474 INIT_LIST_HEAD(&chip->midi_list);
Clemens Ladisch84957a82005-04-29 16:23:13 +02003475 INIT_LIST_HEAD(&chip->mixer_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
3477 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
3478 snd_usb_audio_free(chip);
3479 snd_card_free(card);
3480 return err;
3481 }
3482
3483 strcpy(card->driver, "USB-Audio");
3484 sprintf(component, "USB%04x:%04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003485 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 snd_component_add(card, component);
3487
3488 /* retrieve the device string as shortname */
3489 if (quirk && quirk->product_name) {
3490 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
3491 } else {
3492 if (!dev->descriptor.iProduct ||
3493 usb_string(dev, dev->descriptor.iProduct,
3494 card->shortname, sizeof(card->shortname)) <= 0) {
3495 /* no name available from anywhere, so use ID */
3496 sprintf(card->shortname, "USB Device %#04x:%#04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003497 USB_ID_VENDOR(chip->usb_id),
3498 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 }
3500 }
3501
3502 /* retrieve the vendor and device strings as longname */
3503 if (quirk && quirk->vendor_name) {
3504 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
3505 } else {
3506 if (dev->descriptor.iManufacturer)
3507 len = usb_string(dev, dev->descriptor.iManufacturer,
3508 card->longname, sizeof(card->longname));
3509 else
3510 len = 0;
3511 /* we don't really care if there isn't any vendor string */
3512 }
3513 if (len > 0)
3514 strlcat(card->longname, " ", sizeof(card->longname));
3515
3516 strlcat(card->longname, card->shortname, sizeof(card->longname));
3517
3518 len = strlcat(card->longname, " at ", sizeof(card->longname));
3519
3520 if (len < sizeof(card->longname))
3521 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
3522
3523 strlcat(card->longname,
Clemens Ladisch076639f2007-08-21 08:56:54 +02003524 snd_usb_get_speed(dev) == USB_SPEED_LOW ? ", low speed" :
3525 snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" :
3526 ", high speed",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 sizeof(card->longname));
3528
3529 snd_usb_audio_create_proc(chip);
3530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 *rchip = chip;
3532 return 0;
3533}
3534
3535
3536/*
3537 * probe the active usb device
3538 *
3539 * note that this can be called multiple times per a device, when it
3540 * includes multiple audio control interfaces.
3541 *
3542 * thus we check the usb device pointer and creates the card instance
3543 * only at the first time. the successive calls of this function will
3544 * append the pcm interface to the corresponding card.
3545 */
3546static void *snd_usb_audio_probe(struct usb_device *dev,
3547 struct usb_interface *intf,
3548 const struct usb_device_id *usb_id)
3549{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003550 const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 int i, err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01003552 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 struct usb_host_interface *alts;
3554 int ifnum;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003555 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556
3557 alts = &intf->altsetting[0];
3558 ifnum = get_iface_desc(alts)->bInterfaceNumber;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003559 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3560 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561
3562 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
3563 goto __err_val;
3564
3565 /* SB Extigy needs special boot-up sequence */
3566 /* if more models come, this will go to the quirk list. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003567 if (id == USB_ID(0x041e, 0x3000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 if (snd_usb_extigy_boot_quirk(dev, intf) < 0)
3569 goto __err_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003571 /* SB Audigy 2 NX needs its own boot-up magic, too */
3572 if (id == USB_ID(0x041e, 0x3020)) {
3573 if (snd_usb_audigy2nx_boot_quirk(dev) < 0)
3574 goto __err_val;
3575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
Sam Revitche217e302006-06-23 15:10:18 +02003577 /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
3578 if (id == USB_ID(0x10f5, 0x0200)) {
3579 if (snd_usb_cm106_boot_quirk(dev) < 0)
3580 goto __err_val;
3581 }
3582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 /*
3584 * found a config. now register to ALSA
3585 */
3586
3587 /* check whether it's already registered */
3588 chip = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003589 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 for (i = 0; i < SNDRV_CARDS; i++) {
3591 if (usb_chip[i] && usb_chip[i]->dev == dev) {
3592 if (usb_chip[i]->shutdown) {
3593 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
3594 goto __error;
3595 }
3596 chip = usb_chip[i];
3597 break;
3598 }
3599 }
3600 if (! chip) {
3601 /* it's a fresh one.
3602 * now look for an empty slot and create a new card instance
3603 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 for (i = 0; i < SNDRV_CARDS; i++)
3605 if (enable[i] && ! usb_chip[i] &&
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003606 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
3607 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
3609 goto __error;
3610 }
Clemens Ladisch1dcd3ec2005-05-10 14:51:40 +02003611 snd_card_set_dev(chip->card, &intf->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 break;
3613 }
Pavel Machek07f51a72008-04-14 13:15:56 +02003614 if (!chip) {
3615 printk(KERN_ERR "no available usb audio device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 goto __error;
3617 }
3618 }
3619
3620 err = 1; /* continue */
3621 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
3622 /* need some special handlings */
3623 if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0)
3624 goto __error;
3625 }
3626
3627 if (err > 0) {
3628 /* create normal USB audio interfaces */
3629 if (snd_usb_create_streams(chip, ifnum) < 0 ||
Takashi Iwai7a9b8062008-08-13 15:40:53 +02003630 snd_usb_create_mixer(chip, ifnum, ignore_ctl_error) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 goto __error;
3632 }
3633 }
3634
3635 /* we are allowed to call snd_card_register() many times */
3636 if (snd_card_register(chip->card) < 0) {
3637 goto __error;
3638 }
3639
3640 usb_chip[chip->index] = chip;
3641 chip->num_interfaces++;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003642 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 return chip;
3644
3645 __error:
3646 if (chip && !chip->num_interfaces)
3647 snd_card_free(chip->card);
Ingo Molnar12aa7572006-01-16 16:36:05 +01003648 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 __err_val:
3650 return NULL;
3651}
3652
3653/*
3654 * we need to take care of counter, since disconnection can be called also
3655 * many times as well as usb_audio_probe().
3656 */
3657static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr)
3658{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003659 struct snd_usb_audio *chip;
3660 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 struct list_head *p;
3662
3663 if (ptr == (void *)-1L)
3664 return;
3665
3666 chip = ptr;
3667 card = chip->card;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003668 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 chip->shutdown = 1;
3670 chip->num_interfaces--;
3671 if (chip->num_interfaces <= 0) {
3672 snd_card_disconnect(card);
3673 /* release the pcm resources */
3674 list_for_each(p, &chip->pcm_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003675 snd_usb_stream_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 }
3677 /* release the midi resources */
3678 list_for_each(p, &chip->midi_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003679 snd_usbmidi_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02003681 /* release mixer resources */
3682 list_for_each(p, &chip->mixer_list) {
3683 snd_usb_mixer_disconnect(p);
3684 }
Takashi Iwai9eb70e62008-04-17 12:53:26 +02003685 usb_chip[chip->index] = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003686 mutex_unlock(&register_mutex);
Takashi Iwaic4614822006-06-23 14:38:23 +02003687 snd_card_free_when_closed(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 } else {
Ingo Molnar12aa7572006-01-16 16:36:05 +01003689 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 }
3691}
3692
3693/*
3694 * new 2.5 USB kernel API
3695 */
3696static int usb_audio_probe(struct usb_interface *intf,
3697 const struct usb_device_id *id)
3698{
3699 void *chip;
3700 chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
3701 if (chip) {
Julia Lawallf4e97492009-01-01 18:14:35 +01003702 usb_set_intfdata(intf, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 return 0;
3704 } else
3705 return -EIO;
3706}
3707
3708static void usb_audio_disconnect(struct usb_interface *intf)
3709{
3710 snd_usb_audio_disconnect(interface_to_usbdev(intf),
Julia Lawallf4e97492009-01-01 18:14:35 +01003711 usb_get_intfdata(intf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712}
3713
Andrew Morton93521d22007-12-24 14:40:56 +01003714#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01003715static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
3716{
Julia Lawallf4e97492009-01-01 18:14:35 +01003717 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumf85bf292007-12-14 14:42:41 +01003718 struct list_head *p;
3719 struct snd_usb_stream *as;
3720
3721 if (chip == (void *)-1L)
3722 return 0;
3723
3724 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
3725 if (!chip->num_suspended_intf++) {
3726 list_for_each(p, &chip->pcm_list) {
3727 as = list_entry(p, struct snd_usb_stream, list);
3728 snd_pcm_suspend_all(as->pcm);
3729 }
3730 }
3731
3732 return 0;
3733}
3734
3735static int usb_audio_resume(struct usb_interface *intf)
3736{
Julia Lawallf4e97492009-01-01 18:14:35 +01003737 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumf85bf292007-12-14 14:42:41 +01003738
3739 if (chip == (void *)-1L)
3740 return 0;
3741 if (--chip->num_suspended_intf)
3742 return 0;
3743 /*
3744 * ALSA leaves material resumption to user space
3745 * we just notify
3746 */
3747
3748 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
3749
3750 return 0;
3751}
Andrew Morton93521d22007-12-24 14:40:56 +01003752#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
3754static int __init snd_usb_audio_init(void)
3755{
3756 if (nrpacks < MIN_PACKS_URB || nrpacks > MAX_PACKS) {
3757 printk(KERN_WARNING "invalid nrpacks value.\n");
3758 return -EINVAL;
3759 }
Tobias Klausercf78bbc2006-10-04 18:12:43 +02003760 return usb_register(&usb_audio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761}
3762
3763
3764static void __exit snd_usb_audio_cleanup(void)
3765{
3766 usb_deregister(&usb_audio_driver);
3767}
3768
3769module_init(snd_usb_audio_init);
3770module_exit(snd_usb_audio_cleanup);