blob: 8db0374e10d5e23bd47ed08b4c1b6cb0afd60737 [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 */
Clemens Ladisch4d788e042009-01-26 08:09:28 +0100110#define MAX_QUEUE 24 /* try not to exceed this queue length, in ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112struct audioformat {
113 struct list_head list;
114 snd_pcm_format_t format; /* format type */
115 unsigned int channels; /* # channels */
116 unsigned int fmt_type; /* USB audio format type (1-3) */
117 unsigned int frame_size; /* samples per frame for non-audio */
118 int iface; /* interface number */
119 unsigned char altsetting; /* corresponding alternate setting */
120 unsigned char altset_idx; /* array index of altenate setting */
121 unsigned char attributes; /* corresponding attributes of cs endpoint */
122 unsigned char endpoint; /* endpoint */
123 unsigned char ep_attr; /* endpoint attributes */
Clemens Ladisch744b89e2009-04-03 09:45:01 +0200124 unsigned char datainterval; /* log_2 of data packet interval */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 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) */
174
175 unsigned int running: 1; /* running status */
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 unsigned int hwptr_done; /* processed frame position in the buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 unsigned int transfer_done; /* processed frames since last period update */
179 unsigned long active_mask; /* bitmask of active urbs */
180 unsigned long unlink_mask; /* bitmask of unlinked urbs */
181
182 unsigned int nurbs; /* # urbs */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100183 struct snd_urb_ctx dataurb[MAX_URBS]; /* data urb table */
184 struct snd_urb_ctx syncurb[SYNC_URBS]; /* sync urb table */
Clemens Ladisch55851f72005-08-15 08:34:16 +0200185 char *syncbuf; /* sync buffer for all sync URBs */
186 dma_addr_t sync_dma; /* DMA address of syncbuf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 u64 formats; /* format bitmasks (all or'ed) */
189 unsigned int num_formats; /* number of supported audio formats (list) */
190 struct list_head fmt_list; /* format list */
Takashi Iwai8fec5602007-02-01 11:50:56 +0100191 struct snd_pcm_hw_constraint_list rate_list; /* limited rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 spinlock_t lock;
193
194 struct snd_urb_ops ops; /* callbacks (must be filled at init) */
195};
196
197
198struct snd_usb_stream {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100199 struct snd_usb_audio *chip;
200 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 int pcm_index;
202 unsigned int fmt_type; /* USB audio format type (1-3) */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100203 struct snd_usb_substream substream[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 struct list_head list;
205};
206
207
208/*
209 * we keep the snd_usb_audio_t instances by ourselves for merging
210 * the all interfaces on the same card as one sound device.
211 */
212
Ingo Molnar12aa7572006-01-16 16:36:05 +0100213static DEFINE_MUTEX(register_mutex);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100214static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216
217/*
218 * convert a sampling rate into our full speed format (fs/1000 in Q16.16)
219 * this will overflow at approx 524 kHz
220 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700221static inline unsigned get_usb_full_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 return ((rate << 13) + 62) / 125;
224}
225
226/*
227 * convert a sampling rate into USB high speed format (fs/8000 in Q16.16)
228 * this will overflow at approx 4 MHz
229 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700230static inline unsigned get_usb_high_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 return ((rate << 10) + 62) / 125;
233}
234
235/* convert our full speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700236static inline unsigned get_full_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 return (usb_rate * 125 + (1 << 12)) >> 13;
239}
240
241/* convert our high speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700242static inline unsigned get_high_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 return (usb_rate * 125 + (1 << 9)) >> 10;
245}
246
247
248/*
249 * prepare urb for full speed capture sync pipe
250 *
251 * fill the length and offset of each urb descriptor.
252 * the fixed 10.14 frequency is passed through the pipe.
253 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100254static int prepare_capture_sync_urb(struct snd_usb_substream *subs,
255 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 struct urb *urb)
257{
258 unsigned char *cp = urb->transfer_buffer;
John Daiker88518272006-12-28 13:55:05 +0100259 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200262 urb->iso_frame_desc[0].length = 3;
263 urb->iso_frame_desc[0].offset = 0;
264 cp[0] = subs->freqn >> 2;
265 cp[1] = subs->freqn >> 10;
266 cp[2] = subs->freqn >> 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return 0;
268}
269
270/*
271 * prepare urb for high speed capture sync pipe
272 *
273 * fill the length and offset of each urb descriptor.
274 * the fixed 12.13 frequency is passed as 16.16 through the pipe.
275 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100276static int prepare_capture_sync_urb_hs(struct snd_usb_substream *subs,
277 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct urb *urb)
279{
280 unsigned char *cp = urb->transfer_buffer;
John Daiker88518272006-12-28 13:55:05 +0100281 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200284 urb->iso_frame_desc[0].length = 4;
285 urb->iso_frame_desc[0].offset = 0;
286 cp[0] = subs->freqn;
287 cp[1] = subs->freqn >> 8;
288 cp[2] = subs->freqn >> 16;
289 cp[3] = subs->freqn >> 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return 0;
291}
292
293/*
294 * process after capture sync complete
295 * - nothing to do
296 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100297static int retire_capture_sync_urb(struct snd_usb_substream *subs,
298 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 struct urb *urb)
300{
301 return 0;
302}
303
304/*
305 * prepare urb for capture data pipe
306 *
307 * fill the offset and length of each descriptor.
308 *
309 * we use a temporary buffer to write the captured data.
310 * since the length of written data is determined by host, we cannot
311 * write onto the pcm buffer directly... the data is thus copied
312 * later at complete callback to the global buffer.
313 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100314static int prepare_capture_urb(struct snd_usb_substream *subs,
315 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 struct urb *urb)
317{
318 int i, offs;
John Daiker88518272006-12-28 13:55:05 +0100319 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 offs = 0;
322 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 for (i = 0; i < ctx->packets; i++) {
324 urb->iso_frame_desc[i].offset = offs;
325 urb->iso_frame_desc[i].length = subs->curpacksize;
326 offs += subs->curpacksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 urb->transfer_buffer_length = offs;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200329 urb->number_of_packets = ctx->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return 0;
331}
332
333/*
334 * process after capture complete
335 *
336 * copy the data from each desctiptor to the pcm buffer, and
337 * update the current position.
338 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100339static int retire_capture_urb(struct snd_usb_substream *subs,
340 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 struct urb *urb)
342{
343 unsigned long flags;
344 unsigned char *cp;
345 int i;
346 unsigned int stride, len, oldptr;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200347 int period_elapsed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 stride = runtime->frame_bits >> 3;
350
351 for (i = 0; i < urb->number_of_packets; i++) {
352 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset;
353 if (urb->iso_frame_desc[i].status) {
354 snd_printd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status);
355 // continue;
356 }
357 len = urb->iso_frame_desc[i].actual_length / stride;
358 if (! len)
359 continue;
360 /* update the current pointer */
361 spin_lock_irqsave(&subs->lock, flags);
362 oldptr = subs->hwptr_done;
363 subs->hwptr_done += len;
364 if (subs->hwptr_done >= runtime->buffer_size)
365 subs->hwptr_done -= runtime->buffer_size;
366 subs->transfer_done += len;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200367 if (subs->transfer_done >= runtime->period_size) {
368 subs->transfer_done -= runtime->period_size;
369 period_elapsed = 1;
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 spin_unlock_irqrestore(&subs->lock, flags);
372 /* copy a data chunk */
373 if (oldptr + len > runtime->buffer_size) {
374 unsigned int cnt = runtime->buffer_size - oldptr;
375 unsigned int blen = cnt * stride;
376 memcpy(runtime->dma_area + oldptr * stride, cp, blen);
377 memcpy(runtime->dma_area, cp + blen, len * stride - blen);
378 } else {
379 memcpy(runtime->dma_area + oldptr * stride, cp, len * stride);
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200382 if (period_elapsed)
383 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return 0;
385}
386
Clemens Ladische4f8e652006-10-04 13:42:57 +0200387/*
388 * Process after capture complete when paused. Nothing to do.
389 */
390static int retire_paused_capture_urb(struct snd_usb_substream *subs,
391 struct snd_pcm_runtime *runtime,
392 struct urb *urb)
393{
394 return 0;
395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398/*
399 * prepare urb for full speed playback sync pipe
400 *
401 * set up the offset and length to receive the current frequency.
402 */
403
Takashi Iwai86e07d32005-11-17 15:08:02 +0100404static int prepare_playback_sync_urb(struct snd_usb_substream *subs,
405 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 struct urb *urb)
407{
John Daiker88518272006-12-28 13:55:05 +0100408 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200411 urb->iso_frame_desc[0].length = 3;
412 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return 0;
414}
415
416/*
417 * prepare urb for high speed playback sync pipe
418 *
419 * set up the offset and length to receive the current frequency.
420 */
421
Takashi Iwai86e07d32005-11-17 15:08:02 +0100422static int prepare_playback_sync_urb_hs(struct snd_usb_substream *subs,
423 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 struct urb *urb)
425{
John Daiker88518272006-12-28 13:55:05 +0100426 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200429 urb->iso_frame_desc[0].length = 4;
430 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return 0;
432}
433
434/*
435 * process after full speed playback sync complete
436 *
437 * retrieve the current 10.14 frequency from pipe, and set it.
438 * the value is referred in prepare_playback_urb().
439 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100440static int retire_playback_sync_urb(struct snd_usb_substream *subs,
441 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct urb *urb)
443{
Clemens Ladischca810902005-05-02 08:55:54 +0200444 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned long flags;
446
Clemens Ladischca810902005-05-02 08:55:54 +0200447 if (urb->iso_frame_desc[0].status == 0 &&
448 urb->iso_frame_desc[0].actual_length == 3) {
449 f = combine_triple((u8*)urb->transfer_buffer) << 2;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200450 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
451 spin_lock_irqsave(&subs->lock, flags);
452 subs->freqm = f;
453 spin_unlock_irqrestore(&subs->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456
457 return 0;
458}
459
460/*
461 * process after high speed playback sync complete
462 *
463 * retrieve the current 12.13 frequency from pipe, and set it.
464 * the value is referred in prepare_playback_urb().
465 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100466static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs,
467 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct urb *urb)
469{
Clemens Ladischca810902005-05-02 08:55:54 +0200470 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 unsigned long flags;
472
Clemens Ladischca810902005-05-02 08:55:54 +0200473 if (urb->iso_frame_desc[0].status == 0 &&
474 urb->iso_frame_desc[0].actual_length == 4) {
475 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200476 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
477 spin_lock_irqsave(&subs->lock, flags);
478 subs->freqm = f;
479 spin_unlock_irqrestore(&subs->lock, flags);
480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482
483 return 0;
484}
485
Clemens Ladischd5132022008-02-25 11:01:00 +0100486/*
Eran Tromer97c889a2008-09-26 01:07:03 -0400487 * process after E-Mu 0202/0404/Tracker Pre high speed playback sync complete
Clemens Ladischd5132022008-02-25 11:01:00 +0100488 *
489 * These devices return the number of samples per packet instead of the number
490 * of samples per microframe.
491 */
492static int retire_playback_sync_urb_hs_emu(struct snd_usb_substream *subs,
493 struct snd_pcm_runtime *runtime,
494 struct urb *urb)
495{
496 unsigned int f;
497 unsigned long flags;
498
499 if (urb->iso_frame_desc[0].status == 0 &&
500 urb->iso_frame_desc[0].actual_length == 4) {
501 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
502 f >>= subs->datainterval;
503 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
504 spin_lock_irqsave(&subs->lock, flags);
505 subs->freqm = f;
506 spin_unlock_irqrestore(&subs->lock, flags);
507 }
508 }
509
510 return 0;
511}
512
Clemens Ladisch9568f462006-01-12 08:19:21 +0100513/* determine the number of frames in the next packet */
514static int snd_usb_audio_next_packet_size(struct snd_usb_substream *subs)
515{
516 if (subs->fill_max)
517 return subs->maxframesize;
518 else {
519 subs->phase = (subs->phase & 0xffff)
520 + (subs->freqm << subs->datainterval);
521 return min(subs->phase >> 16, subs->maxframesize);
522 }
523}
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/*
Clemens Ladische4f8e652006-10-04 13:42:57 +0200526 * Prepare urb for streaming before playback starts or when paused.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100527 *
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100528 * We don't have any data, so we send silence.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100529 */
Clemens Ladische4f8e652006-10-04 13:42:57 +0200530static int prepare_nodata_playback_urb(struct snd_usb_substream *subs,
531 struct snd_pcm_runtime *runtime,
532 struct urb *urb)
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100533{
Clemens Ladisch4b284922006-01-12 08:17:49 +0100534 unsigned int i, offs, counts;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100535 struct snd_urb_ctx *ctx = urb->context;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100536 int stride = runtime->frame_bits >> 3;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100537
Clemens Ladisch4b284922006-01-12 08:17:49 +0100538 offs = 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100539 urb->dev = ctx->subs->dev;
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100540 for (i = 0; i < ctx->packets; ++i) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100541 counts = snd_usb_audio_next_packet_size(subs);
Clemens Ladisch4b284922006-01-12 08:17:49 +0100542 urb->iso_frame_desc[i].offset = offs * stride;
543 urb->iso_frame_desc[i].length = counts * stride;
544 offs += counts;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100545 }
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100546 urb->number_of_packets = ctx->packets;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100547 urb->transfer_buffer_length = offs * stride;
548 memset(urb->transfer_buffer,
549 subs->cur_audiofmt->format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0,
550 offs * stride);
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100551 return 0;
552}
553
554/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * prepare urb for playback data pipe
556 *
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200557 * Since a URB can handle only a single linear buffer, we must use double
558 * buffering when the data to be transferred overflows the buffer boundary.
559 * To avoid inconsistencies when updating hwptr_done, we use double buffering
560 * for all URBs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100562static int prepare_playback_urb(struct snd_usb_substream *subs,
563 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 struct urb *urb)
565{
566 int i, stride, offs;
567 unsigned int counts;
568 unsigned long flags;
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200569 int period_elapsed = 0;
John Daiker88518272006-12-28 13:55:05 +0100570 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 stride = runtime->frame_bits >> 3;
573
574 offs = 0;
575 urb->dev = ctx->subs->dev; /* we need to set this at each time */
576 urb->number_of_packets = 0;
577 spin_lock_irqsave(&subs->lock, flags);
578 for (i = 0; i < ctx->packets; i++) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100579 counts = snd_usb_audio_next_packet_size(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /* set up descriptor */
581 urb->iso_frame_desc[i].offset = offs * stride;
582 urb->iso_frame_desc[i].length = counts * stride;
583 offs += counts;
584 urb->number_of_packets++;
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200585 subs->transfer_done += counts;
586 if (subs->transfer_done >= runtime->period_size) {
587 subs->transfer_done -= runtime->period_size;
588 period_elapsed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (subs->fmt_type == USB_FORMAT_TYPE_II) {
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200590 if (subs->transfer_done > 0) {
591 /* FIXME: fill-max mode is not
592 * supported yet */
593 offs -= subs->transfer_done;
594 counts -= subs->transfer_done;
595 urb->iso_frame_desc[i].length =
596 counts * stride;
597 subs->transfer_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599 i++;
600 if (i < ctx->packets) {
601 /* add a transfer delimiter */
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200602 urb->iso_frame_desc[i].offset =
603 offs * stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 urb->iso_frame_desc[i].length = 0;
605 urb->number_of_packets++;
606 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200607 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Clemens Ladischa7d9c092009-04-03 09:48:26 +0200610 if (period_elapsed) /* finish at the period boundary */
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200611 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200613 if (subs->hwptr_done + offs > runtime->buffer_size) {
614 /* err, the transferred area goes over buffer boundary. */
615 unsigned int len = runtime->buffer_size - subs->hwptr_done;
616 memcpy(urb->transfer_buffer,
617 runtime->dma_area + subs->hwptr_done * stride,
618 len * stride);
619 memcpy(urb->transfer_buffer + len * stride,
620 runtime->dma_area,
621 (offs - len) * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 } else {
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200623 memcpy(urb->transfer_buffer,
624 runtime->dma_area + subs->hwptr_done * stride,
625 offs * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200627 subs->hwptr_done += offs;
628 if (subs->hwptr_done >= runtime->buffer_size)
629 subs->hwptr_done -= runtime->buffer_size;
Takashi Iwaiae1ec5e2008-10-13 03:08:53 +0200630 runtime->delay += offs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 spin_unlock_irqrestore(&subs->lock, flags);
632 urb->transfer_buffer_length = offs * stride;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100633 if (period_elapsed)
634 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return 0;
636}
637
638/*
639 * process after playback data complete
Takashi Iwaiae1ec5e2008-10-13 03:08:53 +0200640 * - decrease the delay count again
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100642static int retire_playback_urb(struct snd_usb_substream *subs,
643 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 struct urb *urb)
645{
Takashi Iwaiae1ec5e2008-10-13 03:08:53 +0200646 unsigned long flags;
647 int stride = runtime->frame_bits >> 3;
648 int processed = urb->transfer_buffer_length / stride;
649
650 spin_lock_irqsave(&subs->lock, flags);
651 if (processed > runtime->delay)
652 runtime->delay = 0;
653 else
654 runtime->delay -= processed;
655 spin_unlock_irqrestore(&subs->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return 0;
657}
658
659
660/*
661 */
662static struct snd_urb_ops audio_urb_ops[2] = {
663 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200664 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 .retire = retire_playback_urb,
666 .prepare_sync = prepare_playback_sync_urb,
667 .retire_sync = retire_playback_sync_urb,
668 },
669 {
670 .prepare = prepare_capture_urb,
671 .retire = retire_capture_urb,
672 .prepare_sync = prepare_capture_sync_urb,
673 .retire_sync = retire_capture_sync_urb,
674 },
675};
676
677static struct snd_urb_ops audio_urb_ops_high_speed[2] = {
678 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200679 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 .retire = retire_playback_urb,
681 .prepare_sync = prepare_playback_sync_urb_hs,
682 .retire_sync = retire_playback_sync_urb_hs,
683 },
684 {
685 .prepare = prepare_capture_urb,
686 .retire = retire_capture_urb,
687 .prepare_sync = prepare_capture_sync_urb_hs,
688 .retire_sync = retire_capture_sync_urb,
689 },
690};
691
692/*
693 * complete callback from data urb
694 */
David Howells7d12e782006-10-05 14:55:46 +0100695static void snd_complete_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
John Daiker88518272006-12-28 13:55:05 +0100697 struct snd_urb_ctx *ctx = urb->context;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100698 struct snd_usb_substream *subs = ctx->subs;
699 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 int err = 0;
701
702 if ((subs->running && subs->ops.retire(subs, substream->runtime, urb)) ||
Pavel Machek07f51a72008-04-14 13:15:56 +0200703 !subs->running || /* can be stopped during retire callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 (err = subs->ops.prepare(subs, substream->runtime, urb)) < 0 ||
705 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
706 clear_bit(ctx->index, &subs->active_mask);
707 if (err < 0) {
708 snd_printd(KERN_ERR "cannot submit urb (err = %d)\n", err);
709 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
710 }
711 }
712}
713
714
715/*
716 * complete callback from sync urb
717 */
David Howells7d12e782006-10-05 14:55:46 +0100718static void snd_complete_sync_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
John Daiker88518272006-12-28 13:55:05 +0100720 struct snd_urb_ctx *ctx = urb->context;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100721 struct snd_usb_substream *subs = ctx->subs;
722 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 int err = 0;
724
725 if ((subs->running && subs->ops.retire_sync(subs, substream->runtime, urb)) ||
Pavel Machek07f51a72008-04-14 13:15:56 +0200726 !subs->running || /* can be stopped during retire callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 (err = subs->ops.prepare_sync(subs, substream->runtime, urb)) < 0 ||
728 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
729 clear_bit(ctx->index + 16, &subs->active_mask);
730 if (err < 0) {
731 snd_printd(KERN_ERR "cannot submit sync urb (err = %d)\n", err);
732 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
733 }
734 }
735}
736
737
Clemens Ladisch6207e512005-08-15 08:35:25 +0200738/* get the physical page pointer at the given offset */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100739static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
Clemens Ladisch6207e512005-08-15 08:35:25 +0200740 unsigned long offset)
741{
742 void *pageptr = subs->runtime->dma_area + offset;
743 return vmalloc_to_page(pageptr);
744}
745
746/* allocate virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100747static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs, size_t size)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200748{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100749 struct snd_pcm_runtime *runtime = subs->runtime;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200750 if (runtime->dma_area) {
751 if (runtime->dma_bytes >= size)
752 return 0; /* already large enough */
Takashi Iwaib1d57762005-10-10 11:56:31 +0200753 vfree(runtime->dma_area);
Clemens Ladisch6207e512005-08-15 08:35:25 +0200754 }
Takashi Iwaib1d57762005-10-10 11:56:31 +0200755 runtime->dma_area = vmalloc(size);
Pavel Machek07f51a72008-04-14 13:15:56 +0200756 if (!runtime->dma_area)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200757 return -ENOMEM;
758 runtime->dma_bytes = size;
759 return 0;
760}
761
762/* free virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100763static int snd_pcm_free_vmalloc_buffer(struct snd_pcm_substream *subs)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200764{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100765 struct snd_pcm_runtime *runtime = subs->runtime;
Jesper Juhl9c4be3d2006-02-09 20:04:16 +0100766
767 vfree(runtime->dma_area);
768 runtime->dma_area = NULL;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200769 return 0;
770}
771
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773/*
774 * unlink active urbs.
775 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100776static int deactivate_urbs(struct snd_usb_substream *subs, int force, int can_sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 unsigned int i;
779 int async;
780
781 subs->running = 0;
782
783 if (!force && subs->stream->chip->shutdown) /* to be sure... */
784 return -EBADFD;
785
786 async = !can_sleep && async_unlink;
787
Pavel Machek07f51a72008-04-14 13:15:56 +0200788 if (!async && in_interrupt())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return 0;
790
791 for (i = 0; i < subs->nurbs; i++) {
792 if (test_bit(i, &subs->active_mask)) {
Pavel Machek07f51a72008-04-14 13:15:56 +0200793 if (!test_and_set_bit(i, &subs->unlink_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct urb *u = subs->dataurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400795 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400797 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 usb_kill_urb(u);
799 }
800 }
801 }
802 if (subs->syncpipe) {
803 for (i = 0; i < SYNC_URBS; i++) {
804 if (test_bit(i+16, &subs->active_mask)) {
Pavel Machek07f51a72008-04-14 13:15:56 +0200805 if (!test_and_set_bit(i+16, &subs->unlink_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 struct urb *u = subs->syncurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400807 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400809 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 usb_kill_urb(u);
811 }
812 }
813 }
814 }
815 return 0;
816}
817
818
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100819static const char *usb_error_string(int err)
820{
821 switch (err) {
822 case -ENODEV:
823 return "no device";
824 case -ENOENT:
825 return "endpoint not enabled";
826 case -EPIPE:
827 return "endpoint stalled";
828 case -ENOSPC:
829 return "not enough bandwidth";
830 case -ESHUTDOWN:
831 return "device disabled";
832 case -EHOSTUNREACH:
833 return "device suspended";
834 case -EINVAL:
835 case -EAGAIN:
836 case -EFBIG:
837 case -EMSGSIZE:
838 return "internal error";
839 default:
840 return "unknown error";
841 }
842}
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844/*
845 * set up and start data/sync urbs
846 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100847static int start_urbs(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
849 unsigned int i;
850 int err;
851
852 if (subs->stream->chip->shutdown)
853 return -EBADFD;
854
855 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai5e246b82008-08-08 17:12:47 +0200856 if (snd_BUG_ON(!subs->dataurb[i].urb))
857 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (subs->ops.prepare(subs, runtime, subs->dataurb[i].urb) < 0) {
859 snd_printk(KERN_ERR "cannot prepare datapipe for urb %d\n", i);
860 goto __error;
861 }
862 }
863 if (subs->syncpipe) {
864 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai5e246b82008-08-08 17:12:47 +0200865 if (snd_BUG_ON(!subs->syncurb[i].urb))
866 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (subs->ops.prepare_sync(subs, runtime, subs->syncurb[i].urb) < 0) {
868 snd_printk(KERN_ERR "cannot prepare syncpipe for urb %d\n", i);
869 goto __error;
870 }
871 }
872 }
873
874 subs->active_mask = 0;
875 subs->unlink_mask = 0;
876 subs->running = 1;
877 for (i = 0; i < subs->nurbs; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100878 err = usb_submit_urb(subs->dataurb[i].urb, GFP_ATOMIC);
879 if (err < 0) {
880 snd_printk(KERN_ERR "cannot submit datapipe "
881 "for urb %d, error %d: %s\n",
882 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 goto __error;
884 }
885 set_bit(i, &subs->active_mask);
886 }
887 if (subs->syncpipe) {
888 for (i = 0; i < SYNC_URBS; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100889 err = usb_submit_urb(subs->syncurb[i].urb, GFP_ATOMIC);
890 if (err < 0) {
891 snd_printk(KERN_ERR "cannot submit syncpipe "
892 "for urb %d, error %d: %s\n",
893 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 goto __error;
895 }
896 set_bit(i + 16, &subs->active_mask);
897 }
898 }
899 return 0;
900
901 __error:
902 // snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
903 deactivate_urbs(subs, 0, 0);
904 return -EPIPE;
905}
906
907
908/*
909 * wait until all urbs are processed.
910 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100911static int wait_clear_urbs(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200913 unsigned long end_time = jiffies + msecs_to_jiffies(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 unsigned int i;
915 int alive;
916
917 do {
918 alive = 0;
919 for (i = 0; i < subs->nurbs; i++) {
920 if (test_bit(i, &subs->active_mask))
921 alive++;
922 }
923 if (subs->syncpipe) {
924 for (i = 0; i < SYNC_URBS; i++) {
925 if (test_bit(i + 16, &subs->active_mask))
926 alive++;
927 }
928 }
929 if (! alive)
930 break;
Nishanth Aravamudan8433a502005-10-24 15:02:37 +0200931 schedule_timeout_uninterruptible(1);
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200932 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (alive)
934 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
935 return 0;
936}
937
938
939/*
940 * return the current pcm pointer. just return the hwptr_done value.
941 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100942static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100944 struct snd_usb_substream *subs;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200945 snd_pcm_uframes_t hwptr_done;
946
Takashi Iwai86e07d32005-11-17 15:08:02 +0100947 subs = (struct snd_usb_substream *)substream->runtime->private_data;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200948 spin_lock(&subs->lock);
949 hwptr_done = subs->hwptr_done;
950 spin_unlock(&subs->lock);
951 return hwptr_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
954
955/*
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100956 * start/stop playback substream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100958static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100959 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100961 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 switch (cmd) {
964 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200965 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100966 subs->ops.prepare = prepare_playback_urb;
967 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 case SNDRV_PCM_TRIGGER_STOP:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100969 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200970 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
971 subs->ops.prepare = prepare_nodata_playback_urb;
972 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 default:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100974 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100976}
977
978/*
979 * start/stop capture substream
980 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100981static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100982 int cmd)
983{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100984 struct snd_usb_substream *subs = substream->runtime->private_data;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100985
986 switch (cmd) {
987 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200988 subs->ops.retire = retire_capture_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100989 return start_urbs(subs, substream->runtime);
990 case SNDRV_PCM_TRIGGER_STOP:
991 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200992 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
993 subs->ops.retire = retire_paused_capture_urb;
994 return 0;
995 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
996 subs->ops.retire = retire_capture_urb;
997 return 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100998 default:
999 return -EINVAL;
1000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
1003
1004/*
1005 * release a urb data
1006 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001007static void release_urb_ctx(struct snd_urb_ctx *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 if (u->urb) {
Clemens Ladisch55851f72005-08-15 08:34:16 +02001010 if (u->buffer_size)
1011 usb_buffer_free(u->subs->dev, u->buffer_size,
1012 u->urb->transfer_buffer,
1013 u->urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 usb_free_urb(u->urb);
1015 u->urb = NULL;
1016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
1019/*
1020 * release a substream
1021 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001022static void release_substream_urbs(struct snd_usb_substream *subs, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
1024 int i;
1025
1026 /* stop urbs (to be sure) */
1027 deactivate_urbs(subs, force, 1);
1028 wait_clear_urbs(subs);
1029
1030 for (i = 0; i < MAX_URBS; i++)
1031 release_urb_ctx(&subs->dataurb[i]);
1032 for (i = 0; i < SYNC_URBS; i++)
1033 release_urb_ctx(&subs->syncurb[i]);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001034 usb_buffer_free(subs->dev, SYNC_URBS * 4,
1035 subs->syncbuf, subs->sync_dma);
1036 subs->syncbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 subs->nurbs = 0;
1038}
1039
1040/*
1041 * initialize a substream for plaback/capture
1042 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001043static int init_substream_urbs(struct snd_usb_substream *subs, unsigned int period_bytes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 unsigned int rate, unsigned int frame_bits)
1045{
Clemens Ladisch160389c2009-01-26 08:10:19 +01001046 unsigned int maxsize, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001048 unsigned int urb_packs, total_packs, packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 /* calculate the frequency in 16.16 format */
1051 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
1052 subs->freqn = get_usb_full_speed_rate(rate);
1053 else
1054 subs->freqn = get_usb_high_speed_rate(rate);
1055 subs->freqm = subs->freqn;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001056 /* calculate max. frequency */
1057 if (subs->maxpacksize) {
1058 /* whatever fits into a max. size packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 maxsize = subs->maxpacksize;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001060 subs->freqmax = (maxsize / (frame_bits >> 3))
1061 << (16 - subs->datainterval);
1062 } else {
1063 /* no max. packet size: just take 25% higher than nominal */
1064 subs->freqmax = subs->freqn + (subs->freqn >> 2);
1065 maxsize = ((subs->freqmax + 0xffff) * (frame_bits >> 3))
1066 >> (16 - subs->datainterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
Clemens Ladisch573567e2005-06-27 08:17:30 +02001068 subs->phase = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 if (subs->fill_max)
1071 subs->curpacksize = subs->maxpacksize;
1072 else
1073 subs->curpacksize = maxsize;
1074
Clemens Ladischa93bf992005-08-12 15:19:39 +02001075 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
1076 packs_per_ms = 8 >> subs->datainterval;
1077 else
1078 packs_per_ms = 1;
1079
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001080 if (is_playback) {
Clemens Ladischf3990e62009-02-20 09:32:40 +01001081 urb_packs = max(nrpacks, 1);
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001082 urb_packs = min(urb_packs, (unsigned int)MAX_PACKS);
1083 } else
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001084 urb_packs = 1;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001085 urb_packs *= packs_per_ms;
Clemens Ladisch765e8db2009-08-10 10:07:35 +02001086 if (subs->syncpipe)
Takashi Iwaif1e6d3c2009-08-11 08:15:04 +02001087 urb_packs = min(urb_packs, 1U << subs->syncinterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 /* decide how many packets to be used */
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001090 if (is_playback) {
Clemens Ladisch4d788e042009-01-26 08:09:28 +01001091 unsigned int minsize, maxpacks;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001092 /* determine how small a packet can be */
1093 minsize = (subs->freqn >> (16 - subs->datainterval))
1094 * (frame_bits >> 3);
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +02001095 /* with sync from device, assume it can be 12% lower */
Clemens Ladischd6db3922005-08-12 08:28:27 +02001096 if (subs->syncpipe)
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +02001097 minsize -= minsize >> 3;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001098 minsize = max(minsize, 1u);
1099 total_packs = (period_bytes + minsize - 1) / minsize;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001100 /* we need at least two URBs for queueing */
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001101 if (total_packs < 2) {
1102 total_packs = 2;
Clemens Ladischf3990e62009-02-20 09:32:40 +01001103 } else {
Clemens Ladisch4d788e042009-01-26 08:09:28 +01001104 /* and we don't want too long a queue either */
Clemens Ladischb1c86bb2009-03-02 12:06:28 +01001105 maxpacks = max(MAX_QUEUE * packs_per_ms, urb_packs * 2);
1106 total_packs = min(total_packs, maxpacks);
Clemens Ladisch4d788e042009-01-26 08:09:28 +01001107 }
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001108 } else {
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001109 while (urb_packs > 1 && urb_packs * maxsize >= period_bytes)
1110 urb_packs >>= 1;
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001111 total_packs = MAX_URBS * urb_packs;
1112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 subs->nurbs = (total_packs + urb_packs - 1) / urb_packs;
1114 if (subs->nurbs > MAX_URBS) {
1115 /* too much... */
1116 subs->nurbs = MAX_URBS;
1117 total_packs = MAX_URBS * urb_packs;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001118 } else if (subs->nurbs < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 /* too little - we need at least two packets
1120 * to ensure contiguous playback/capture
1121 */
1122 subs->nurbs = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124
1125 /* allocate and initialize data urbs */
1126 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001127 struct snd_urb_ctx *u = &subs->dataurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 u->index = i;
1129 u->subs = subs;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001130 u->packets = (i + 1) * total_packs / subs->nurbs
1131 - i * total_packs / subs->nurbs;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001132 u->buffer_size = maxsize * u->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (subs->fmt_type == USB_FORMAT_TYPE_II)
1134 u->packets++; /* for transfer delimiter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02001136 if (!u->urb)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001137 goto out_of_memory;
1138 u->urb->transfer_buffer =
1139 usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL,
1140 &u->urb->transfer_dma);
Pavel Machek07f51a72008-04-14 13:15:56 +02001141 if (!u->urb->transfer_buffer)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001142 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 u->urb->pipe = subs->datapipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001144 u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001145 u->urb->interval = 1 << subs->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001147 u->urb->complete = snd_complete_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149
1150 if (subs->syncpipe) {
1151 /* allocate and initialize sync urbs */
Clemens Ladisch55851f72005-08-15 08:34:16 +02001152 subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4,
1153 GFP_KERNEL, &subs->sync_dma);
Pavel Machek07f51a72008-04-14 13:15:56 +02001154 if (!subs->syncbuf)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001155 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001157 struct snd_urb_ctx *u = &subs->syncurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 u->index = i;
1159 u->subs = subs;
Clemens Ladischca810902005-05-02 08:55:54 +02001160 u->packets = 1;
1161 u->urb = usb_alloc_urb(1, GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02001162 if (!u->urb)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001163 goto out_of_memory;
Clemens Ladischca810902005-05-02 08:55:54 +02001164 u->urb->transfer_buffer = subs->syncbuf + i * 4;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001165 u->urb->transfer_dma = subs->sync_dma + i * 4;
Clemens Ladischca810902005-05-02 08:55:54 +02001166 u->urb->transfer_buffer_length = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 u->urb->pipe = subs->syncpipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001168 u->urb->transfer_flags = URB_ISO_ASAP |
1169 URB_NO_TRANSFER_DMA_MAP;
Clemens Ladischca810902005-05-02 08:55:54 +02001170 u->urb->number_of_packets = 1;
Clemens Ladisch1149a642005-05-02 08:53:46 +02001171 u->urb->interval = 1 << subs->syncinterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001173 u->urb->complete = snd_complete_sync_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175 }
1176 return 0;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001177
1178out_of_memory:
1179 release_substream_urbs(subs, 0);
1180 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
1183
1184/*
1185 * find a matching audio format
1186 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001187static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 unsigned int rate, unsigned int channels)
1189{
1190 struct list_head *p;
1191 struct audioformat *found = NULL;
1192 int cur_attr = 0, attr;
1193
1194 list_for_each(p, &subs->fmt_list) {
1195 struct audioformat *fp;
1196 fp = list_entry(p, struct audioformat, list);
1197 if (fp->format != format || fp->channels != channels)
1198 continue;
1199 if (rate < fp->rate_min || rate > fp->rate_max)
1200 continue;
1201 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
1202 unsigned int i;
1203 for (i = 0; i < fp->nr_rates; i++)
1204 if (fp->rate_table[i] == rate)
1205 break;
1206 if (i >= fp->nr_rates)
1207 continue;
1208 }
1209 attr = fp->ep_attr & EP_ATTR_MASK;
1210 if (! found) {
1211 found = fp;
1212 cur_attr = attr;
1213 continue;
1214 }
1215 /* avoid async out and adaptive in if the other method
1216 * supports the same format.
1217 * this is a workaround for the case like
1218 * M-audio audiophile USB.
1219 */
1220 if (attr != cur_attr) {
1221 if ((attr == EP_ATTR_ASYNC &&
1222 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1223 (attr == EP_ATTR_ADAPTIVE &&
1224 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
1225 continue;
1226 if ((cur_attr == EP_ATTR_ASYNC &&
1227 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1228 (cur_attr == EP_ATTR_ADAPTIVE &&
1229 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
1230 found = fp;
1231 cur_attr = attr;
1232 continue;
1233 }
1234 }
1235 /* find the format with the largest max. packet size */
1236 if (fp->maxpacksize > found->maxpacksize) {
1237 found = fp;
1238 cur_attr = attr;
1239 }
1240 }
1241 return found;
1242}
1243
1244
1245/*
1246 * initialize the picth control and sample rate
1247 */
1248static int init_usb_pitch(struct usb_device *dev, int iface,
1249 struct usb_host_interface *alts,
1250 struct audioformat *fmt)
1251{
1252 unsigned int ep;
1253 unsigned char data[1];
1254 int err;
1255
1256 ep = get_endpoint(alts, 0)->bEndpointAddress;
1257 /* if endpoint has pitch control, enable it */
1258 if (fmt->attributes & EP_CS_ATTR_PITCH_CONTROL) {
1259 data[0] = 1;
1260 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1261 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1262 PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) {
1263 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
1264 dev->devnum, iface, ep);
1265 return err;
1266 }
1267 }
1268 return 0;
1269}
1270
1271static int init_usb_sample_rate(struct usb_device *dev, int iface,
1272 struct usb_host_interface *alts,
1273 struct audioformat *fmt, int rate)
1274{
1275 unsigned int ep;
1276 unsigned char data[3];
1277 int err;
1278
1279 ep = get_endpoint(alts, 0)->bEndpointAddress;
1280 /* if endpoint has sampling rate control, set it */
1281 if (fmt->attributes & EP_CS_ATTR_SAMPLE_RATE) {
1282 int crate;
1283 data[0] = rate;
1284 data[1] = rate >> 8;
1285 data[2] = rate >> 16;
1286 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1287 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1288 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001289 snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 dev->devnum, iface, fmt->altsetting, rate, ep);
1291 return err;
1292 }
1293 if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), GET_CUR,
1294 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN,
1295 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001296 snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 dev->devnum, iface, fmt->altsetting, ep);
1298 return 0; /* some devices don't support reading */
1299 }
1300 crate = data[0] | (data[1] << 8) | (data[2] << 16);
1301 if (crate != rate) {
1302 snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate);
1303 // runtime->rate = crate;
1304 }
1305 }
1306 return 0;
1307}
1308
1309/*
1310 * find a matching format and set up the interface
1311 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001312static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
1314 struct usb_device *dev = subs->dev;
1315 struct usb_host_interface *alts;
1316 struct usb_interface_descriptor *altsd;
1317 struct usb_interface *iface;
1318 unsigned int ep, attr;
1319 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
1320 int err;
1321
1322 iface = usb_ifnum_to_if(dev, fmt->iface);
Takashi Iwai5e246b82008-08-08 17:12:47 +02001323 if (WARN_ON(!iface))
1324 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 alts = &iface->altsetting[fmt->altset_idx];
1326 altsd = get_iface_desc(alts);
Takashi Iwai5e246b82008-08-08 17:12:47 +02001327 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
1328 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 if (fmt == subs->cur_audiofmt)
1331 return 0;
1332
1333 /* close the old interface */
1334 if (subs->interface >= 0 && subs->interface != fmt->iface) {
Oliver Neukum5149fe2c2007-08-31 12:15:27 +02001335 if (usb_set_interface(subs->dev, subs->interface, 0) < 0) {
1336 snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed\n",
1337 dev->devnum, fmt->iface, fmt->altsetting);
1338 return -EIO;
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 subs->interface = -1;
1341 subs->format = 0;
1342 }
1343
1344 /* set interface */
1345 if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) {
1346 if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) {
1347 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n",
1348 dev->devnum, fmt->iface, fmt->altsetting);
1349 return -EIO;
1350 }
1351 snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting);
1352 subs->interface = fmt->iface;
1353 subs->format = fmt->altset_idx;
1354 }
1355
1356 /* create a data pipe */
1357 ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK;
1358 if (is_playback)
1359 subs->datapipe = usb_sndisocpipe(dev, ep);
1360 else
1361 subs->datapipe = usb_rcvisocpipe(dev, ep);
Clemens Ladisch744b89e2009-04-03 09:45:01 +02001362 subs->datainterval = fmt->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 subs->syncpipe = subs->syncinterval = 0;
1364 subs->maxpacksize = fmt->maxpacksize;
1365 subs->fill_max = 0;
1366
1367 /* we need a sync pipe in async OUT or adaptive IN mode */
1368 /* check the number of EP, since some devices have broken
1369 * descriptors which fool us. if it has only one EP,
1370 * assume it as adaptive-out or sync-in.
1371 */
1372 attr = fmt->ep_attr & EP_ATTR_MASK;
1373 if (((is_playback && attr == EP_ATTR_ASYNC) ||
1374 (! is_playback && attr == EP_ATTR_ADAPTIVE)) &&
1375 altsd->bNumEndpoints >= 2) {
1376 /* check sync-pipe endpoint */
1377 /* ... and check descriptor size before accessing bSynchAddress
1378 because there is a version of the SB Audigy 2 NX firmware lacking
1379 the audio fields in the endpoint descriptors */
1380 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
1381 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1382 get_endpoint(alts, 1)->bSynchAddress != 0)) {
1383 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1384 dev->devnum, fmt->iface, fmt->altsetting);
1385 return -EINVAL;
1386 }
1387 ep = get_endpoint(alts, 1)->bEndpointAddress;
1388 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1389 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
1390 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
1391 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1392 dev->devnum, fmt->iface, fmt->altsetting);
1393 return -EINVAL;
1394 }
1395 ep &= USB_ENDPOINT_NUMBER_MASK;
1396 if (is_playback)
1397 subs->syncpipe = usb_rcvisocpipe(dev, ep);
1398 else
1399 subs->syncpipe = usb_sndisocpipe(dev, ep);
Clemens Ladisch1149a642005-05-02 08:53:46 +02001400 if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1401 get_endpoint(alts, 1)->bRefresh >= 1 &&
1402 get_endpoint(alts, 1)->bRefresh <= 9)
1403 subs->syncinterval = get_endpoint(alts, 1)->bRefresh;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001404 else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
Clemens Ladisch1149a642005-05-02 08:53:46 +02001405 subs->syncinterval = 1;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001406 else if (get_endpoint(alts, 1)->bInterval >= 1 &&
1407 get_endpoint(alts, 1)->bInterval <= 16)
1408 subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
1409 else
1410 subs->syncinterval = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
1412
1413 /* always fill max packet size */
1414 if (fmt->attributes & EP_CS_ATTR_FILL_MAX)
1415 subs->fill_max = 1;
1416
1417 if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0)
1418 return err;
1419
1420 subs->cur_audiofmt = fmt;
1421
1422#if 0
Takashi Iwai54530bd2009-02-05 15:55:18 +01001423 printk(KERN_DEBUG
1424 "setting done: format = %d, rate = %d..%d, channels = %d\n",
Pavel Machek2a56f512008-04-14 13:14:22 +02001425 fmt->format, fmt->rate_min, fmt->rate_max, fmt->channels);
Takashi Iwai54530bd2009-02-05 15:55:18 +01001426 printk(KERN_DEBUG
1427 " datapipe = 0x%0x, syncpipe = 0x%0x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 subs->datapipe, subs->syncpipe);
1429#endif
1430
1431 return 0;
1432}
1433
1434/*
1435 * hw_params callback
1436 *
1437 * allocate a buffer and set the given audio format.
1438 *
1439 * so far we use a physically linear buffer although packetize transfer
1440 * doesn't need a continuous area.
1441 * if sg buffer is supported on the later version of alsa, we'll follow
1442 * that.
1443 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001444static int snd_usb_hw_params(struct snd_pcm_substream *substream,
1445 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
John Daiker88518272006-12-28 13:55:05 +01001447 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 struct audioformat *fmt;
1449 unsigned int channels, rate, format;
1450 int ret, changed;
1451
Clemens Ladisch6207e512005-08-15 08:35:25 +02001452 ret = snd_pcm_alloc_vmalloc_buffer(substream,
1453 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (ret < 0)
1455 return ret;
1456
1457 format = params_format(hw_params);
1458 rate = params_rate(hw_params);
1459 channels = params_channels(hw_params);
1460 fmt = find_format(subs, format, rate, channels);
Pavel Machek07f51a72008-04-14 13:15:56 +02001461 if (!fmt) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001462 snd_printd(KERN_DEBUG "cannot set format: format = %#x, rate = %d, channels = %d\n",
Jaroslav Kysela21a34792006-01-13 09:12:11 +01001463 format, rate, channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 return -EINVAL;
1465 }
1466
1467 changed = subs->cur_audiofmt != fmt ||
1468 subs->period_bytes != params_period_bytes(hw_params) ||
1469 subs->cur_rate != rate;
1470 if ((ret = set_format(subs, fmt)) < 0)
1471 return ret;
1472
1473 if (subs->cur_rate != rate) {
1474 struct usb_host_interface *alts;
1475 struct usb_interface *iface;
1476 iface = usb_ifnum_to_if(subs->dev, fmt->iface);
1477 alts = &iface->altsetting[fmt->altset_idx];
1478 ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate);
1479 if (ret < 0)
1480 return ret;
1481 subs->cur_rate = rate;
1482 }
1483
1484 if (changed) {
1485 /* format changed */
1486 release_substream_urbs(subs, 0);
1487 /* influenced: period_bytes, channels, rate, format, */
1488 ret = init_substream_urbs(subs, params_period_bytes(hw_params),
1489 params_rate(hw_params),
1490 snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params));
1491 }
1492
1493 return ret;
1494}
1495
1496/*
1497 * hw_free callback
1498 *
1499 * reset the audio format and release the buffer
1500 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001501static int snd_usb_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502{
John Daiker88518272006-12-28 13:55:05 +01001503 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 subs->cur_audiofmt = NULL;
1506 subs->cur_rate = 0;
1507 subs->period_bytes = 0;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001508 if (!subs->stream->chip->shutdown)
1509 release_substream_urbs(subs, 0);
Clemens Ladisch6207e512005-08-15 08:35:25 +02001510 return snd_pcm_free_vmalloc_buffer(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
1512
1513/*
1514 * prepare callback
1515 *
1516 * only a few subtle things...
1517 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001518static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001520 struct snd_pcm_runtime *runtime = substream->runtime;
1521 struct snd_usb_substream *subs = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 if (! subs->cur_audiofmt) {
1524 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
1525 return -ENXIO;
1526 }
1527
1528 /* some unit conversions in runtime */
1529 subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize);
1530 subs->curframesize = bytes_to_frames(runtime, subs->curpacksize);
1531
1532 /* reset the pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 subs->hwptr_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 subs->transfer_done = 0;
1535 subs->phase = 0;
Takashi Iwaiae1ec5e2008-10-13 03:08:53 +02001536 runtime->delay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 /* clear urbs (to be sure) */
1539 deactivate_urbs(subs, 0, 1);
1540 wait_clear_urbs(subs);
1541
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001542 /* for playback, submit the URBs now; otherwise, the first hwptr_done
1543 * updates for all URBs would happen at the same time when starting */
1544 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
Clemens Ladische4f8e652006-10-04 13:42:57 +02001545 subs->ops.prepare = prepare_nodata_playback_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001546 return start_urbs(subs, runtime);
1547 } else
1548 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
1550
Clemens Ladisch1700f302006-10-04 13:41:25 +02001551static struct snd_pcm_hardware snd_usb_hardware =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Clemens Ladisch49045d32005-09-05 10:31:05 +02001553 .info = SNDRV_PCM_INFO_MMAP |
1554 SNDRV_PCM_INFO_MMAP_VALID |
1555 SNDRV_PCM_INFO_BATCH |
1556 SNDRV_PCM_INFO_INTERLEAVED |
Clemens Ladische4f8e652006-10-04 13:42:57 +02001557 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1558 SNDRV_PCM_INFO_PAUSE,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001559 .buffer_bytes_max = 1024 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 .period_bytes_min = 64,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001561 .period_bytes_max = 512 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 .periods_min = 2,
1563 .periods_max = 1024,
1564};
1565
1566/*
1567 * h/w constraints
1568 */
1569
1570#ifdef HW_CONST_DEBUG
1571#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
1572#else
1573#define hwc_debug(fmt, args...) /**/
1574#endif
1575
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001576static int hw_check_valid_format(struct snd_usb_substream *subs,
1577 struct snd_pcm_hw_params *params,
1578 struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001580 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1581 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
1582 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001583 struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
1584 unsigned int ptime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 /* check the format */
Pavel Machek07f51a72008-04-14 13:15:56 +02001587 if (!snd_mask_test(fmts, fp->format)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 hwc_debug(" > check: no supported format %d\n", fp->format);
1589 return 0;
1590 }
1591 /* check the channels */
1592 if (fp->channels < ct->min || fp->channels > ct->max) {
1593 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
1594 return 0;
1595 }
1596 /* check the rate is within the range */
1597 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
1598 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
1599 return 0;
1600 }
1601 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
1602 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
1603 return 0;
1604 }
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001605 /* check whether the period time is >= the data packet interval */
1606 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH) {
1607 ptime = 125 * (1 << fp->datainterval);
1608 if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
1609 hwc_debug(" > check: ptime %u > max %u\n", ptime, pt->max);
1610 return 0;
1611 }
1612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return 1;
1614}
1615
Takashi Iwai86e07d32005-11-17 15:08:02 +01001616static int hw_rule_rate(struct snd_pcm_hw_params *params,
1617 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001619 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001621 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 unsigned int rmin, rmax;
1623 int changed;
1624
1625 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
1626 changed = 0;
1627 rmin = rmax = 0;
1628 list_for_each(p, &subs->fmt_list) {
1629 struct audioformat *fp;
1630 fp = list_entry(p, struct audioformat, list);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001631 if (!hw_check_valid_format(subs, params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 continue;
1633 if (changed++) {
1634 if (rmin > fp->rate_min)
1635 rmin = fp->rate_min;
1636 if (rmax < fp->rate_max)
1637 rmax = fp->rate_max;
1638 } else {
1639 rmin = fp->rate_min;
1640 rmax = fp->rate_max;
1641 }
1642 }
1643
Pavel Machek07f51a72008-04-14 13:15:56 +02001644 if (!changed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 hwc_debug(" --> get empty\n");
1646 it->empty = 1;
1647 return -EINVAL;
1648 }
1649
1650 changed = 0;
1651 if (it->min < rmin) {
1652 it->min = rmin;
1653 it->openmin = 0;
1654 changed = 1;
1655 }
1656 if (it->max > rmax) {
1657 it->max = rmax;
1658 it->openmax = 0;
1659 changed = 1;
1660 }
1661 if (snd_interval_checkempty(it)) {
1662 it->empty = 1;
1663 return -EINVAL;
1664 }
1665 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1666 return changed;
1667}
1668
1669
Takashi Iwai86e07d32005-11-17 15:08:02 +01001670static int hw_rule_channels(struct snd_pcm_hw_params *params,
1671 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001673 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001675 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 unsigned int rmin, rmax;
1677 int changed;
1678
1679 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
1680 changed = 0;
1681 rmin = rmax = 0;
1682 list_for_each(p, &subs->fmt_list) {
1683 struct audioformat *fp;
1684 fp = list_entry(p, struct audioformat, list);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001685 if (!hw_check_valid_format(subs, params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 continue;
1687 if (changed++) {
1688 if (rmin > fp->channels)
1689 rmin = fp->channels;
1690 if (rmax < fp->channels)
1691 rmax = fp->channels;
1692 } else {
1693 rmin = fp->channels;
1694 rmax = fp->channels;
1695 }
1696 }
1697
Pavel Machek07f51a72008-04-14 13:15:56 +02001698 if (!changed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 hwc_debug(" --> get empty\n");
1700 it->empty = 1;
1701 return -EINVAL;
1702 }
1703
1704 changed = 0;
1705 if (it->min < rmin) {
1706 it->min = rmin;
1707 it->openmin = 0;
1708 changed = 1;
1709 }
1710 if (it->max > rmax) {
1711 it->max = rmax;
1712 it->openmax = 0;
1713 changed = 1;
1714 }
1715 if (snd_interval_checkempty(it)) {
1716 it->empty = 1;
1717 return -EINVAL;
1718 }
1719 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1720 return changed;
1721}
1722
Takashi Iwai86e07d32005-11-17 15:08:02 +01001723static int hw_rule_format(struct snd_pcm_hw_params *params,
1724 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001726 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001728 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 u64 fbits;
1730 u32 oldbits[2];
1731 int changed;
1732
1733 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1734 fbits = 0;
1735 list_for_each(p, &subs->fmt_list) {
1736 struct audioformat *fp;
1737 fp = list_entry(p, struct audioformat, list);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001738 if (!hw_check_valid_format(subs, params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 continue;
1740 fbits |= (1ULL << fp->format);
1741 }
1742
1743 oldbits[0] = fmt->bits[0];
1744 oldbits[1] = fmt->bits[1];
1745 fmt->bits[0] &= (u32)fbits;
1746 fmt->bits[1] &= (u32)(fbits >> 32);
Pavel Machek07f51a72008-04-14 13:15:56 +02001747 if (!fmt->bits[0] && !fmt->bits[1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 hwc_debug(" --> get empty\n");
1749 return -EINVAL;
1750 }
1751 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1752 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1753 return changed;
1754}
1755
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001756static int hw_rule_period_time(struct snd_pcm_hw_params *params,
1757 struct snd_pcm_hw_rule *rule)
1758{
1759 struct snd_usb_substream *subs = rule->private;
1760 struct audioformat *fp;
1761 struct snd_interval *it;
1762 unsigned char min_datainterval;
1763 unsigned int pmin;
1764 int changed;
1765
1766 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
1767 hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
1768 min_datainterval = 0xff;
1769 list_for_each_entry(fp, &subs->fmt_list, list) {
1770 if (!hw_check_valid_format(subs, params, fp))
1771 continue;
1772 min_datainterval = min(min_datainterval, fp->datainterval);
1773 }
1774 if (min_datainterval == 0xff) {
1775 hwc_debug(" --> get emtpy\n");
1776 it->empty = 1;
1777 return -EINVAL;
1778 }
1779 pmin = 125 * (1 << min_datainterval);
1780 changed = 0;
1781 if (it->min < pmin) {
1782 it->min = pmin;
1783 it->openmin = 0;
1784 changed = 1;
1785 }
1786 if (snd_interval_checkempty(it)) {
1787 it->empty = 1;
1788 return -EINVAL;
1789 }
1790 hwc_debug(" --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
1791 return changed;
1792}
1793
Luke Rossa79eee82006-08-29 10:46:32 +02001794/*
1795 * If the device supports unusual bit rates, does the request meet these?
1796 */
1797static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1798 struct snd_usb_substream *subs)
1799{
Takashi Iwai8fec5602007-02-01 11:50:56 +01001800 struct audioformat *fp;
1801 int count = 0, needs_knot = 0;
Luke Rossa79eee82006-08-29 10:46:32 +02001802 int err;
1803
Takashi Iwai8fec5602007-02-01 11:50:56 +01001804 list_for_each_entry(fp, &subs->fmt_list, list) {
1805 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
1806 return 0;
1807 count += fp->nr_rates;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02001808 if (fp->rates & SNDRV_PCM_RATE_KNOT)
Takashi Iwai8fec5602007-02-01 11:50:56 +01001809 needs_knot = 1;
Luke Rossa79eee82006-08-29 10:46:32 +02001810 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01001811 if (!needs_knot)
1812 return 0;
1813
1814 subs->rate_list.count = count;
1815 subs->rate_list.list = kmalloc(sizeof(int) * count, GFP_KERNEL);
1816 subs->rate_list.mask = 0;
1817 count = 0;
1818 list_for_each_entry(fp, &subs->fmt_list, list) {
1819 int i;
1820 for (i = 0; i < fp->nr_rates; i++)
1821 subs->rate_list.list[count++] = fp->rate_table[i];
1822 }
1823 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1824 &subs->rate_list);
1825 if (err < 0)
1826 return err;
Luke Rossa79eee82006-08-29 10:46:32 +02001827
1828 return 0;
1829}
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832/*
1833 * set up the runtime hardware information.
1834 */
1835
Takashi Iwai86e07d32005-11-17 15:08:02 +01001836static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 struct list_head *p;
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001839 unsigned int pt, ptmin;
1840 int param_period_time_if_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 int err;
1842
1843 runtime->hw.formats = subs->formats;
1844
1845 runtime->hw.rate_min = 0x7fffffff;
1846 runtime->hw.rate_max = 0;
1847 runtime->hw.channels_min = 256;
1848 runtime->hw.channels_max = 0;
1849 runtime->hw.rates = 0;
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001850 ptmin = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 /* check min/max rates and channels */
1852 list_for_each(p, &subs->fmt_list) {
1853 struct audioformat *fp;
1854 fp = list_entry(p, struct audioformat, list);
1855 runtime->hw.rates |= fp->rates;
1856 if (runtime->hw.rate_min > fp->rate_min)
1857 runtime->hw.rate_min = fp->rate_min;
1858 if (runtime->hw.rate_max < fp->rate_max)
1859 runtime->hw.rate_max = fp->rate_max;
1860 if (runtime->hw.channels_min > fp->channels)
1861 runtime->hw.channels_min = fp->channels;
1862 if (runtime->hw.channels_max < fp->channels)
1863 runtime->hw.channels_max = fp->channels;
1864 if (fp->fmt_type == USB_FORMAT_TYPE_II && fp->frame_size > 0) {
1865 /* FIXME: there might be more than one audio formats... */
1866 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1867 fp->frame_size;
1868 }
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001869 pt = 125 * (1 << fp->datainterval);
1870 ptmin = min(ptmin, pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001873 param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
1874 if (snd_usb_get_speed(subs->dev) != USB_SPEED_HIGH)
1875 /* full speed devices have fixed data packet interval */
1876 ptmin = 1000;
1877 if (ptmin == 1000)
1878 /* if period time doesn't go below 1 ms, no rules needed */
1879 param_period_time_if_needed = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001881 ptmin, UINT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001883 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1884 hw_rule_rate, subs,
1885 SNDRV_PCM_HW_PARAM_FORMAT,
1886 SNDRV_PCM_HW_PARAM_CHANNELS,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001887 param_period_time_if_needed,
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001888 -1)) < 0)
Takashi Iwai5a220c82008-03-17 09:59:32 +01001889 return err;
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001890 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1891 hw_rule_channels, subs,
1892 SNDRV_PCM_HW_PARAM_FORMAT,
1893 SNDRV_PCM_HW_PARAM_RATE,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001894 param_period_time_if_needed,
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001895 -1)) < 0)
1896 return err;
1897 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1898 hw_rule_format, subs,
1899 SNDRV_PCM_HW_PARAM_RATE,
1900 SNDRV_PCM_HW_PARAM_CHANNELS,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001901 param_period_time_if_needed,
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001902 -1)) < 0)
1903 return err;
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001904 if (param_period_time_if_needed >= 0) {
1905 err = snd_pcm_hw_rule_add(runtime, 0,
1906 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1907 hw_rule_period_time, subs,
1908 SNDRV_PCM_HW_PARAM_FORMAT,
1909 SNDRV_PCM_HW_PARAM_CHANNELS,
1910 SNDRV_PCM_HW_PARAM_RATE,
1911 -1);
1912 if (err < 0)
1913 return err;
1914 }
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001915 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
1916 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 return 0;
1918}
1919
Clemens Ladisch1700f302006-10-04 13:41:25 +02001920static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001922 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1923 struct snd_pcm_runtime *runtime = substream->runtime;
1924 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 subs->interface = -1;
1927 subs->format = 0;
Clemens Ladisch1700f302006-10-04 13:41:25 +02001928 runtime->hw = snd_usb_hardware;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 runtime->private_data = subs;
1930 subs->pcm_substream = substream;
1931 return setup_hw_info(runtime, subs);
1932}
1933
Takashi Iwai86e07d32005-11-17 15:08:02 +01001934static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001936 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1937 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 if (subs->interface >= 0) {
1940 usb_set_interface(subs->dev, subs->interface, 0);
1941 subs->interface = -1;
1942 }
1943 subs->pcm_substream = NULL;
1944 return 0;
1945}
1946
Takashi Iwai86e07d32005-11-17 15:08:02 +01001947static int snd_usb_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001949 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950}
1951
Takashi Iwai86e07d32005-11-17 15:08:02 +01001952static int snd_usb_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
1954 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1955}
1956
Takashi Iwai86e07d32005-11-17 15:08:02 +01001957static int snd_usb_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001959 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960}
1961
Takashi Iwai86e07d32005-11-17 15:08:02 +01001962static int snd_usb_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
1964 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1965}
1966
Takashi Iwai86e07d32005-11-17 15:08:02 +01001967static struct snd_pcm_ops snd_usb_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 .open = snd_usb_playback_open,
1969 .close = snd_usb_playback_close,
1970 .ioctl = snd_pcm_lib_ioctl,
1971 .hw_params = snd_usb_hw_params,
1972 .hw_free = snd_usb_hw_free,
1973 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001974 .trigger = snd_usb_pcm_playback_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02001976 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977};
1978
Takashi Iwai86e07d32005-11-17 15:08:02 +01001979static struct snd_pcm_ops snd_usb_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 .open = snd_usb_capture_open,
1981 .close = snd_usb_capture_close,
1982 .ioctl = snd_pcm_lib_ioctl,
1983 .hw_params = snd_usb_hw_params,
1984 .hw_free = snd_usb_hw_free,
1985 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001986 .trigger = snd_usb_pcm_capture_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02001988 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989};
1990
1991
1992
1993/*
1994 * helper functions
1995 */
1996
1997/*
1998 * combine bytes and get an integer value
1999 */
2000unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size)
2001{
2002 switch (size) {
2003 case 1: return *bytes;
2004 case 2: return combine_word(bytes);
2005 case 3: return combine_triple(bytes);
2006 case 4: return combine_quad(bytes);
2007 default: return 0;
2008 }
2009}
2010
2011/*
2012 * parse descriptor buffer and return the pointer starting the given
2013 * descriptor type.
2014 */
2015void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype)
2016{
2017 u8 *p, *end, *next;
2018
2019 p = descstart;
2020 end = p + desclen;
2021 for (; p < end;) {
2022 if (p[0] < 2)
2023 return NULL;
2024 next = p + p[0];
2025 if (next > end)
2026 return NULL;
2027 if (p[1] == dtype && (!after || (void *)p > after)) {
2028 return p;
2029 }
2030 p = next;
2031 }
2032 return NULL;
2033}
2034
2035/*
2036 * find a class-specified interface descriptor with the given subtype.
2037 */
2038void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype)
2039{
2040 unsigned char *p = after;
2041
2042 while ((p = snd_usb_find_desc(buffer, buflen, p,
2043 USB_DT_CS_INTERFACE)) != NULL) {
2044 if (p[0] >= 3 && p[2] == dsubtype)
2045 return p;
2046 }
2047 return NULL;
2048}
2049
2050/*
2051 * Wrapper for usb_control_msg().
2052 * Allocates a temp buffer to prevent dmaing from/to the stack.
2053 */
2054int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
2055 __u8 requesttype, __u16 value, __u16 index, void *data,
2056 __u16 size, int timeout)
2057{
2058 int err;
2059 void *buf = NULL;
2060
2061 if (size > 0) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002062 buf = kmemdup(data, size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if (!buf)
2064 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 }
2066 err = usb_control_msg(dev, pipe, request, requesttype,
2067 value, index, buf, size, timeout);
2068 if (size > 0) {
2069 memcpy(data, buf, size);
2070 kfree(buf);
2071 }
2072 return err;
2073}
2074
2075
2076/*
2077 * entry point for linux usb interface
2078 */
2079
2080static int usb_audio_probe(struct usb_interface *intf,
2081 const struct usb_device_id *id);
2082static void usb_audio_disconnect(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002083
2084#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01002085static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message);
2086static int usb_audio_resume(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002087#else
2088#define usb_audio_suspend NULL
2089#define usb_audio_resume NULL
2090#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092static struct usb_device_id usb_audio_ids [] = {
2093#include "usbquirks.h"
2094 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
2095 .bInterfaceClass = USB_CLASS_AUDIO,
2096 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL },
2097 { } /* Terminating entry */
2098};
2099
2100MODULE_DEVICE_TABLE (usb, usb_audio_ids);
2101
2102static struct usb_driver usb_audio_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 .name = "snd-usb-audio",
2104 .probe = usb_audio_probe,
2105 .disconnect = usb_audio_disconnect,
Oliver Neukumf85bf292007-12-14 14:42:41 +01002106 .suspend = usb_audio_suspend,
2107 .resume = usb_audio_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 .id_table = usb_audio_ids,
2109};
2110
2111
Takashi Iwai727f3172006-08-04 19:08:03 +02002112#if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS)
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114/*
2115 * proc interface for list the supported pcm formats
2116 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002117static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
2119 struct list_head *p;
2120 static char *sync_types[4] = {
2121 "NONE", "ASYNC", "ADAPTIVE", "SYNC"
2122 };
2123
2124 list_for_each(p, &subs->fmt_list) {
2125 struct audioformat *fp;
2126 fp = list_entry(p, struct audioformat, list);
2127 snd_iprintf(buffer, " Interface %d\n", fp->iface);
2128 snd_iprintf(buffer, " Altset %d\n", fp->altsetting);
Takashi Iwai6e5265e2009-09-08 14:26:51 +02002129 snd_iprintf(buffer, " Format: %s\n",
2130 snd_pcm_format_name(fp->format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 snd_iprintf(buffer, " Channels: %d\n", fp->channels);
2132 snd_iprintf(buffer, " Endpoint: %d %s (%s)\n",
2133 fp->endpoint & USB_ENDPOINT_NUMBER_MASK,
2134 fp->endpoint & USB_DIR_IN ? "IN" : "OUT",
2135 sync_types[(fp->ep_attr & EP_ATTR_MASK) >> 2]);
2136 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) {
2137 snd_iprintf(buffer, " Rates: %d - %d (continuous)\n",
2138 fp->rate_min, fp->rate_max);
2139 } else {
2140 unsigned int i;
2141 snd_iprintf(buffer, " Rates: ");
2142 for (i = 0; i < fp->nr_rates; i++) {
2143 if (i > 0)
2144 snd_iprintf(buffer, ", ");
2145 snd_iprintf(buffer, "%d", fp->rate_table[i]);
2146 }
2147 snd_iprintf(buffer, "\n");
2148 }
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002149 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
2150 snd_iprintf(buffer, " Data packet interval: %d us\n",
2151 125 * (1 << fp->datainterval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize);
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002153 // snd_iprintf(buffer, " EP Attribute = %#x\n", fp->attributes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 }
2155}
2156
Takashi Iwai86e07d32005-11-17 15:08:02 +01002157static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
2159 if (subs->running) {
2160 unsigned int i;
2161 snd_iprintf(buffer, " Status: Running\n");
2162 snd_iprintf(buffer, " Interface = %d\n", subs->interface);
2163 snd_iprintf(buffer, " Altset = %d\n", subs->format);
2164 snd_iprintf(buffer, " URBs = %d [ ", subs->nurbs);
2165 for (i = 0; i < subs->nurbs; i++)
2166 snd_iprintf(buffer, "%d ", subs->dataurb[i].packets);
2167 snd_iprintf(buffer, "]\n");
2168 snd_iprintf(buffer, " Packet Size = %d\n", subs->curpacksize);
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002169 snd_iprintf(buffer, " Momentary freq = %u Hz (%#x.%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 snd_usb_get_speed(subs->dev) == USB_SPEED_FULL
2171 ? get_full_speed_hz(subs->freqm)
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002172 : get_high_speed_hz(subs->freqm),
2173 subs->freqm >> 16, subs->freqm & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 } else {
2175 snd_iprintf(buffer, " Status: Stop\n");
2176 }
2177}
2178
Takashi Iwai86e07d32005-11-17 15:08:02 +01002179static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002181 struct snd_usb_stream *stream = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
2183 snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name);
2184
2185 if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) {
2186 snd_iprintf(buffer, "\nPlayback:\n");
2187 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2188 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2189 }
2190 if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) {
2191 snd_iprintf(buffer, "\nCapture:\n");
2192 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2193 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2194 }
2195}
2196
Takashi Iwai86e07d32005-11-17 15:08:02 +01002197static void proc_pcm_format_add(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002199 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 char name[32];
Takashi Iwai86e07d32005-11-17 15:08:02 +01002201 struct snd_card *card = stream->chip->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203 sprintf(name, "stream%d", stream->pcm_index);
Pavel Machek07f51a72008-04-14 13:15:56 +02002204 if (!snd_card_proc_new(card, name, &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002205 snd_info_set_text_ops(entry, stream, proc_pcm_format_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
2207
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002208#else
2209
2210static inline void proc_pcm_format_add(struct snd_usb_stream *stream)
2211{
2212}
2213
2214#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216/*
2217 * initialize the substream instance.
2218 */
2219
Takashi Iwai86e07d32005-11-17 15:08:02 +01002220static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002222 struct snd_usb_substream *subs = &as->substream[stream];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224 INIT_LIST_HEAD(&subs->fmt_list);
2225 spin_lock_init(&subs->lock);
2226
2227 subs->stream = as;
2228 subs->direction = stream;
2229 subs->dev = as->chip->dev;
Clemens Ladischd5132022008-02-25 11:01:00 +01002230 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 subs->ops = audio_urb_ops[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002232 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 subs->ops = audio_urb_ops_high_speed[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002234 switch (as->chip->usb_id) {
2235 case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
2236 case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
Eran Tromer97c889a2008-09-26 01:07:03 -04002237 case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */
Clemens Ladischd5132022008-02-25 11:01:00 +01002238 subs->ops.retire_sync = retire_playback_sync_urb_hs_emu;
2239 break;
2240 }
2241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 snd_pcm_set_ops(as->pcm, stream,
2243 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2244 &snd_usb_playback_ops : &snd_usb_capture_ops);
2245
2246 list_add_tail(&fp->list, &subs->fmt_list);
2247 subs->formats |= 1ULL << fp->format;
2248 subs->endpoint = fp->endpoint;
2249 subs->num_formats++;
2250 subs->fmt_type = fp->fmt_type;
2251}
2252
2253
2254/*
2255 * free a substream
2256 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002257static void free_substream(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
2259 struct list_head *p, *n;
2260
Pavel Machek07f51a72008-04-14 13:15:56 +02002261 if (!subs->num_formats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 return; /* not initialized */
2263 list_for_each_safe(p, n, &subs->fmt_list) {
2264 struct audioformat *fp = list_entry(p, struct audioformat, list);
2265 kfree(fp->rate_table);
2266 kfree(fp);
2267 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01002268 kfree(subs->rate_list.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269}
2270
2271
2272/*
2273 * free a usb stream instance
2274 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002275static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
2277 free_substream(&stream->substream[0]);
2278 free_substream(&stream->substream[1]);
2279 list_del(&stream->list);
2280 kfree(stream);
2281}
2282
Takashi Iwai86e07d32005-11-17 15:08:02 +01002283static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002285 struct snd_usb_stream *stream = pcm->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (stream) {
2287 stream->pcm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 snd_usb_audio_stream_free(stream);
2289 }
2290}
2291
2292
2293/*
2294 * add this endpoint to the chip instance.
2295 * if a stream with the same endpoint already exists, append to it.
2296 * if not, create a new pcm stream.
2297 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002298static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299{
2300 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002301 struct snd_usb_stream *as;
2302 struct snd_usb_substream *subs;
2303 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 int err;
2305
2306 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002307 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 if (as->fmt_type != fp->fmt_type)
2309 continue;
2310 subs = &as->substream[stream];
Pavel Machek07f51a72008-04-14 13:15:56 +02002311 if (!subs->endpoint)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 continue;
2313 if (subs->endpoint == fp->endpoint) {
2314 list_add_tail(&fp->list, &subs->fmt_list);
2315 subs->num_formats++;
2316 subs->formats |= 1ULL << fp->format;
2317 return 0;
2318 }
2319 }
2320 /* look for an empty stream */
2321 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002322 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 if (as->fmt_type != fp->fmt_type)
2324 continue;
2325 subs = &as->substream[stream];
2326 if (subs->endpoint)
2327 continue;
2328 err = snd_pcm_new_stream(as->pcm, stream, 1);
2329 if (err < 0)
2330 return err;
2331 init_substream(as, stream, fp);
2332 return 0;
2333 }
2334
2335 /* create a new pcm */
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002336 as = kzalloc(sizeof(*as), GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02002337 if (!as)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 as->pcm_index = chip->pcm_devs;
2340 as->chip = chip;
2341 as->fmt_type = fp->fmt_type;
2342 err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
2343 stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
2344 stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
2345 &pcm);
2346 if (err < 0) {
2347 kfree(as);
2348 return err;
2349 }
2350 as->pcm = pcm;
2351 pcm->private_data = as;
2352 pcm->private_free = snd_usb_audio_pcm_free;
2353 pcm->info_flags = 0;
2354 if (chip->pcm_devs > 0)
2355 sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
2356 else
2357 strcpy(pcm->name, "USB Audio");
2358
2359 init_substream(as, stream, fp);
2360
2361 list_add(&as->list, &chip->pcm_list);
2362 chip->pcm_devs++;
2363
2364 proc_pcm_format_add(as);
2365
2366 return 0;
2367}
2368
2369
2370/*
2371 * check if the device uses big-endian samples
2372 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002373static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374{
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002375 switch (chip->usb_id) {
2376 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
2377 if (fp->endpoint & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 return 1;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002379 break;
2380 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02002381 if (device_setup[chip->index] == 0x00 ||
2382 fp->altsetting==1 || fp->altsetting==2 || fp->altsetting==3)
2383 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 }
2385 return 0;
2386}
2387
2388/*
2389 * parse the audio format type I descriptor
2390 * and returns the corresponding pcm format
2391 *
2392 * @dev: usb device
2393 * @fp: audioformat record
2394 * @format: the format tag (wFormatTag)
2395 * @fmt: the format type descriptor
2396 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002397static int parse_audio_format_i_type(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 int format, unsigned char *fmt)
2399{
2400 int pcm_format;
2401 int sample_width, sample_bytes;
2402
2403 /* FIXME: correct endianess and sign? */
2404 pcm_format = -1;
2405 sample_width = fmt[6];
2406 sample_bytes = fmt[5];
2407 switch (format) {
2408 case 0: /* some devices don't define this correctly... */
2409 snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002410 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 /* fall-through */
2412 case USB_AUDIO_FORMAT_PCM:
2413 if (sample_width > sample_bytes * 8) {
2414 snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002415 chip->dev->devnum, fp->iface, fp->altsetting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 sample_width, sample_bytes);
2417 }
2418 /* check the format byte size */
2419 switch (fmt[5]) {
2420 case 1:
2421 pcm_format = SNDRV_PCM_FORMAT_S8;
2422 break;
2423 case 2:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002424 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 pcm_format = SNDRV_PCM_FORMAT_S16_BE; /* grrr, big endian!! */
2426 else
2427 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2428 break;
2429 case 3:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002430 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */
2432 else
2433 pcm_format = SNDRV_PCM_FORMAT_S24_3LE;
2434 break;
2435 case 4:
2436 pcm_format = SNDRV_PCM_FORMAT_S32_LE;
2437 break;
2438 default:
2439 snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002440 chip->dev->devnum, fp->iface,
2441 fp->altsetting, sample_width, sample_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 break;
2443 }
2444 break;
2445 case USB_AUDIO_FORMAT_PCM8:
Pavel Machek2a56f512008-04-14 13:14:22 +02002446 pcm_format = SNDRV_PCM_FORMAT_U8;
2447
2448 /* Dallas DS4201 workaround: it advertises U8 format, but really
2449 supports S8. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002450 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 pcm_format = SNDRV_PCM_FORMAT_S8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 break;
2453 case USB_AUDIO_FORMAT_IEEE_FLOAT:
2454 pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE;
2455 break;
2456 case USB_AUDIO_FORMAT_ALAW:
2457 pcm_format = SNDRV_PCM_FORMAT_A_LAW;
2458 break;
2459 case USB_AUDIO_FORMAT_MU_LAW:
2460 pcm_format = SNDRV_PCM_FORMAT_MU_LAW;
2461 break;
2462 default:
2463 snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002464 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 break;
2466 }
2467 return pcm_format;
2468}
2469
2470
2471/*
2472 * parse the format descriptor and stores the possible sample rates
2473 * on the audioformat table.
2474 *
2475 * @dev: usb device
2476 * @fp: audioformat record
2477 * @fmt: the format descriptor
2478 * @offset: the start offset of descriptor pointing the rate type
2479 * (7 for type I and II, 8 for type II)
2480 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002481static int parse_audio_format_rates(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 unsigned char *fmt, int offset)
2483{
2484 int nr_rates = fmt[offset];
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
2487 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002488 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 return -1;
2490 }
2491
2492 if (nr_rates) {
2493 /*
2494 * build the rate table and bitmap flags
2495 */
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002496 int r, idx;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002497
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
2499 if (fp->rate_table == NULL) {
2500 snd_printk(KERN_ERR "cannot malloc\n");
2501 return -1;
2502 }
2503
Takashi Iwai04125582009-02-16 22:48:12 +01002504 fp->nr_rates = 0;
2505 fp->rate_min = fp->rate_max = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
Clemens Ladisch987411b2006-11-20 14:14:39 +01002507 unsigned int rate = combine_triple(&fmt[idx]);
Takashi Iwai04125582009-02-16 22:48:12 +01002508 if (!rate)
2509 continue;
Clemens Ladisch987411b2006-11-20 14:14:39 +01002510 /* C-Media CM6501 mislabels its 96 kHz altsetting */
2511 if (rate == 48000 && nr_rates == 1 &&
Joris van Rantwijk3b03cc52009-02-16 22:58:23 +01002512 (chip->usb_id == USB_ID(0x0d8c, 0x0201) ||
2513 chip->usb_id == USB_ID(0x0d8c, 0x0102)) &&
Clemens Ladisch987411b2006-11-20 14:14:39 +01002514 fp->altsetting == 5 && fp->maxpacksize == 392)
2515 rate = 96000;
Takashi Iwai04125582009-02-16 22:48:12 +01002516 fp->rate_table[fp->nr_rates] = rate;
2517 if (!fp->rate_min || rate < fp->rate_min)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 fp->rate_min = rate;
Takashi Iwai04125582009-02-16 22:48:12 +01002519 if (!fp->rate_max || rate > fp->rate_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 fp->rate_max = rate;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002521 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
Takashi Iwai04125582009-02-16 22:48:12 +01002522 fp->nr_rates++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 }
Takashi Iwai04125582009-02-16 22:48:12 +01002524 if (!fp->nr_rates) {
Gregor Jasnybeb60112007-01-31 12:27:39 +01002525 hwc_debug("All rates were zero. Skipping format!\n");
2526 return -1;
2527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 } else {
2529 /* continuous rates */
2530 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
2531 fp->rate_min = combine_triple(&fmt[offset + 1]);
2532 fp->rate_max = combine_triple(&fmt[offset + 4]);
2533 }
2534 return 0;
2535}
2536
2537/*
2538 * parse the format type I and III descriptors
2539 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002540static int parse_audio_format_i(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 int format, unsigned char *fmt)
2542{
2543 int pcm_format;
2544
2545 if (fmt[3] == USB_FORMAT_TYPE_III) {
2546 /* FIXME: the format type is really IECxxx
2547 * but we give normal PCM format to get the existing
2548 * apps working...
2549 */
Thibault Le Meurcac19c32007-07-13 11:50:23 +02002550 switch (chip->usb_id) {
2551
2552 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2553 if (device_setup[chip->index] == 0x00 &&
2554 fp->altsetting == 6)
2555 pcm_format = SNDRV_PCM_FORMAT_S16_BE;
2556 else
2557 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2558 break;
2559 default:
2560 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 } else {
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002563 pcm_format = parse_audio_format_i_type(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 if (pcm_format < 0)
2565 return -1;
2566 }
2567 fp->format = pcm_format;
2568 fp->channels = fmt[4];
2569 if (fp->channels < 1) {
2570 snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002571 chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 return -1;
2573 }
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002574 return parse_audio_format_rates(chip, fp, fmt, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575}
2576
2577/*
2578 * prase the format type II descriptor
2579 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002580static int parse_audio_format_ii(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 int format, unsigned char *fmt)
2582{
2583 int brate, framesize;
2584 switch (format) {
2585 case USB_AUDIO_FORMAT_AC3:
2586 /* FIXME: there is no AC3 format defined yet */
2587 // fp->format = SNDRV_PCM_FORMAT_AC3;
2588 fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */
2589 break;
2590 case USB_AUDIO_FORMAT_MPEG:
2591 fp->format = SNDRV_PCM_FORMAT_MPEG;
2592 break;
2593 default:
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002594 snd_printd(KERN_INFO "%d:%u:%d : unknown format tag %#x is detected. processed as MPEG.\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002595 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 fp->format = SNDRV_PCM_FORMAT_MPEG;
2597 break;
2598 }
2599 fp->channels = 1;
2600 brate = combine_word(&fmt[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */
2601 framesize = combine_word(&fmt[6]); /* fmt[6,7]: wSamplesPerFrame */
2602 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
2603 fp->frame_size = framesize;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002604 return parse_audio_format_rates(chip, fp, fmt, 8); /* fmt[8..] sample rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605}
2606
Takashi Iwai86e07d32005-11-17 15:08:02 +01002607static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 int format, unsigned char *fmt, int stream)
2609{
2610 int err;
2611
2612 switch (fmt[3]) {
2613 case USB_FORMAT_TYPE_I:
2614 case USB_FORMAT_TYPE_III:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002615 err = parse_audio_format_i(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 break;
2617 case USB_FORMAT_TYPE_II:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002618 err = parse_audio_format_ii(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 break;
2620 default:
2621 snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002622 chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 return -1;
2624 }
2625 fp->fmt_type = fmt[3];
2626 if (err < 0)
2627 return err;
2628#if 1
Clemens Ladisch33159372006-01-13 08:11:22 +01002629 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 /* extigy apparently supports sample rates other than 48k
2631 * but not in ordinary way. so we enable only 48k atm.
2632 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002633 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
Clemens Ladisch33159372006-01-13 08:11:22 +01002634 chip->usb_id == USB_ID(0x041e, 0x3020) ||
2635 chip->usb_id == USB_ID(0x041e, 0x3061)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 if (fmt[3] == USB_FORMAT_TYPE_I &&
Clemens Ladisch8c1872d2005-04-28 09:31:53 +02002637 fp->rates != SNDRV_PCM_RATE_48000 &&
2638 fp->rates != SNDRV_PCM_RATE_96000)
Clemens Ladischb4d3f9d2005-06-27 08:18:27 +02002639 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 }
2641#endif
2642 return 0;
2643}
2644
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002645static unsigned char parse_datainterval(struct snd_usb_audio *chip,
2646 struct usb_host_interface *alts)
2647{
2648 if (snd_usb_get_speed(chip->dev) == USB_SPEED_HIGH &&
2649 get_endpoint(alts, 0)->bInterval >= 1 &&
2650 get_endpoint(alts, 0)->bInterval <= 4)
2651 return get_endpoint(alts, 0)->bInterval - 1;
2652 else
2653 return 0;
2654}
2655
Thibault LE MEURe3113342006-03-14 11:44:53 +01002656static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
2657 int iface, int altno);
Takashi Iwai86e07d32005-11-17 15:08:02 +01002658static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659{
2660 struct usb_device *dev;
2661 struct usb_interface *iface;
2662 struct usb_host_interface *alts;
2663 struct usb_interface_descriptor *altsd;
2664 int i, altno, err, stream;
2665 int format;
Clemens Ladisch8886f332009-07-13 13:21:58 +02002666 struct audioformat *fp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 unsigned char *fmt, *csep;
Pavel Machekb9d43bc2008-04-14 13:12:47 +02002668 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670 dev = chip->dev;
2671
2672 /* parse the interface's altsettings */
2673 iface = usb_ifnum_to_if(dev, iface_no);
Pavel Machekb9d43bc2008-04-14 13:12:47 +02002674
2675 num = iface->num_altsetting;
2676
2677 /*
2678 * Dallas DS4201 workaround: It presents 5 altsettings, but the last
2679 * one misses syncpipe, and does not produce any sound.
2680 */
2681 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
2682 num = 4;
2683
2684 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 alts = &iface->altsetting[i];
2686 altsd = get_iface_desc(alts);
2687 /* skip invalid one */
2688 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2689 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2690 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING &&
2691 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
2692 altsd->bNumEndpoints < 1 ||
2693 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
2694 continue;
2695 /* must be isochronous */
2696 if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
2697 USB_ENDPOINT_XFER_ISOC)
2698 continue;
2699 /* check direction */
2700 stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
2701 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2702 altno = altsd->bAlternateSetting;
Thibault LE MEURe3113342006-03-14 11:44:53 +01002703
2704 /* audiophile usb: skip altsets incompatible with device_setup
2705 */
2706 if (chip->usb_id == USB_ID(0x0763, 0x2003) &&
2707 audiophile_skip_setting_quirk(chip, iface_no, altno))
2708 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
2710 /* get audio formats */
2711 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, AS_GENERAL);
2712 if (!fmt) {
2713 snd_printk(KERN_ERR "%d:%u:%d : AS_GENERAL descriptor not found\n",
2714 dev->devnum, iface_no, altno);
2715 continue;
2716 }
2717
2718 if (fmt[0] < 7) {
2719 snd_printk(KERN_ERR "%d:%u:%d : invalid AS_GENERAL desc\n",
2720 dev->devnum, iface_no, altno);
2721 continue;
2722 }
2723
2724 format = (fmt[6] << 8) | fmt[5]; /* remember the format value */
2725
2726 /* get format type */
2727 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, FORMAT_TYPE);
2728 if (!fmt) {
2729 snd_printk(KERN_ERR "%d:%u:%d : no FORMAT_TYPE desc\n",
2730 dev->devnum, iface_no, altno);
2731 continue;
2732 }
2733 if (fmt[0] < 8) {
2734 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
2735 dev->devnum, iface_no, altno);
2736 continue;
2737 }
2738
Clemens Ladisch8886f332009-07-13 13:21:58 +02002739 /*
2740 * Blue Microphones workaround: The last altsetting is identical
2741 * with the previous one, except for a larger packet size, but
2742 * is actually a mislabeled two-channel setting; ignore it.
2743 */
2744 if (fmt[4] == 1 && fmt[5] == 2 && altno == 2 && num == 3 &&
2745 fp && fp->altsetting == 1 && fp->channels == 1 &&
2746 fp->format == SNDRV_PCM_FORMAT_S16_LE &&
2747 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) ==
2748 fp->maxpacksize * 2)
2749 continue;
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
2752 /* Creamware Noah has this descriptor after the 2nd endpoint */
2753 if (!csep && altsd->bNumEndpoints >= 2)
2754 csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
2755 if (!csep || csep[0] < 7 || csep[2] != EP_GENERAL) {
Takashi Iwaif8c75792006-05-18 14:47:03 +02002756 snd_printk(KERN_WARNING "%d:%u:%d : no or invalid"
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002757 " class specific endpoint descriptor\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 dev->devnum, iface_no, altno);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002759 csep = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 }
2761
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002762 fp = kzalloc(sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 if (! fp) {
2764 snd_printk(KERN_ERR "cannot malloc\n");
2765 return -ENOMEM;
2766 }
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 fp->iface = iface_no;
2769 fp->altsetting = altno;
2770 fp->altset_idx = i;
2771 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2772 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002773 fp->datainterval = parse_datainterval(chip, alts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Clemens Ladisch573567e2005-06-27 08:17:30 +02002775 if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
2776 fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
2777 * (fp->maxpacksize & 0x7ff);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002778 fp->attributes = csep ? csep[3] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
2780 /* some quirks for attributes here */
2781
Clemens Ladischc3f93292005-05-04 14:56:04 +02002782 switch (chip->usb_id) {
2783 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 /* Optoplay sets the sample rate attribute although
2785 * it seems not supporting it in fact.
2786 */
2787 fp->attributes &= ~EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002788 break;
2789 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
2790 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 /* doesn't set the sample rate attribute, but supports it */
2792 fp->attributes |= EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002793 break;
2794 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
2795 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
2796 an older model 77d:223) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 /*
2798 * plantronics headset and Griffin iMic have set adaptive-in
2799 * although it's really not...
2800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 fp->ep_attr &= ~EP_ATTR_MASK;
2802 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2803 fp->ep_attr |= EP_ATTR_ADAPTIVE;
2804 else
2805 fp->ep_attr |= EP_ATTR_SYNC;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002806 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 }
2808
2809 /* ok, let's parse further... */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002810 if (parse_audio_format(chip, fp, format, fmt, stream) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 kfree(fp->rate_table);
2812 kfree(fp);
2813 continue;
2814 }
2815
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002816 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 -07002817 err = add_audio_endpoint(chip, stream, fp);
2818 if (err < 0) {
2819 kfree(fp->rate_table);
2820 kfree(fp);
2821 return err;
2822 }
2823 /* try to set the interface... */
2824 usb_set_interface(chip->dev, iface_no, altno);
2825 init_usb_pitch(chip->dev, iface_no, alts, fp);
2826 init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max);
2827 }
2828 return 0;
2829}
2830
2831
2832/*
2833 * disconnect streams
2834 * called from snd_usb_audio_disconnect()
2835 */
Clemens Ladischee733392005-04-25 10:34:13 +02002836static void snd_usb_stream_disconnect(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837{
2838 int idx;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002839 struct snd_usb_stream *as;
2840 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
Takashi Iwai86e07d32005-11-17 15:08:02 +01002842 as = list_entry(head, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 for (idx = 0; idx < 2; idx++) {
2844 subs = &as->substream[idx];
2845 if (!subs->num_formats)
2846 return;
2847 release_substream_urbs(subs, 1);
2848 subs->interface = -1;
2849 }
2850}
2851
2852/*
2853 * parse audio control descriptor and create pcm/midi streams
2854 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002855static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856{
2857 struct usb_device *dev = chip->dev;
2858 struct usb_host_interface *host_iface;
2859 struct usb_interface *iface;
2860 unsigned char *p1;
2861 int i, j;
2862
2863 /* find audiocontrol interface */
2864 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
2865 if (!(p1 = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen, NULL, HEADER))) {
2866 snd_printk(KERN_ERR "cannot find HEADER\n");
2867 return -EINVAL;
2868 }
2869 if (! p1[7] || p1[0] < 8 + p1[7]) {
2870 snd_printk(KERN_ERR "invalid HEADER\n");
2871 return -EINVAL;
2872 }
2873
2874 /*
2875 * parse all USB audio streaming interfaces
2876 */
2877 for (i = 0; i < p1[7]; i++) {
2878 struct usb_host_interface *alts;
2879 struct usb_interface_descriptor *altsd;
2880 j = p1[8 + i];
2881 iface = usb_ifnum_to_if(dev, j);
2882 if (!iface) {
2883 snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
2884 dev->devnum, ctrlif, j);
2885 continue;
2886 }
2887 if (usb_interface_claimed(iface)) {
2888 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n", dev->devnum, ctrlif, j);
2889 continue;
2890 }
2891 alts = &iface->altsetting[0];
2892 altsd = get_iface_desc(alts);
2893 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
2894 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
2895 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDI_STREAMING) {
2896 if (snd_usb_create_midi_interface(chip, iface, NULL) < 0) {
2897 snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n", dev->devnum, ctrlif, j);
2898 continue;
2899 }
2900 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2901 continue;
2902 }
2903 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2904 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2905 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING) {
2906 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n", dev->devnum, ctrlif, j, altsd->bInterfaceClass);
2907 /* skip non-supported classes */
2908 continue;
2909 }
Clemens Ladisch076639f2007-08-21 08:56:54 +02002910 if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
2911 snd_printk(KERN_ERR "low speed audio streaming not supported\n");
2912 continue;
2913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 if (! parse_audio_endpoints(chip, j)) {
2915 usb_set_interface(dev, j, 0); /* reset the current interface */
2916 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2917 }
2918 }
2919
2920 return 0;
2921}
2922
2923/*
2924 * create a stream for an endpoint/altsetting without proper descriptors
2925 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002926static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002928 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929{
2930 struct audioformat *fp;
2931 struct usb_host_interface *alts;
2932 int stream, err;
Al Virob4482a42007-10-14 19:35:40 +01002933 unsigned *rate_table = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002935 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 if (! fp) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002937 snd_printk(KERN_ERR "cannot memdup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 return -ENOMEM;
2939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 if (fp->nr_rates > 0) {
2941 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
2942 if (!rate_table) {
2943 kfree(fp);
2944 return -ENOMEM;
2945 }
2946 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
2947 fp->rate_table = rate_table;
2948 }
2949
2950 stream = (fp->endpoint & USB_DIR_IN)
2951 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2952 err = add_audio_endpoint(chip, stream, fp);
2953 if (err < 0) {
2954 kfree(fp);
2955 kfree(rate_table);
2956 return err;
2957 }
2958 if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
2959 fp->altset_idx >= iface->num_altsetting) {
2960 kfree(fp);
2961 kfree(rate_table);
2962 return -EINVAL;
2963 }
2964 alts = &iface->altsetting[fp->altset_idx];
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002965 fp->datainterval = parse_datainterval(chip, alts);
Clemens Ladisch894dcd72009-02-06 08:13:07 +01002966 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 usb_set_interface(chip->dev, fp->iface, 0);
2968 init_usb_pitch(chip->dev, fp->iface, alts, fp);
2969 init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max);
2970 return 0;
2971}
2972
2973/*
2974 * create a stream for an interface with proper descriptors
2975 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002976static int create_standard_audio_quirk(struct snd_usb_audio *chip,
Clemens Ladischd1bda042005-09-14 08:36:03 +02002977 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002978 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979{
2980 struct usb_host_interface *alts;
2981 struct usb_interface_descriptor *altsd;
2982 int err;
2983
2984 alts = &iface->altsetting[0];
2985 altsd = get_iface_desc(alts);
Clemens Ladischd1bda042005-09-14 08:36:03 +02002986 err = parse_audio_endpoints(chip, altsd->bInterfaceNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 if (err < 0) {
2988 snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
2989 altsd->bInterfaceNumber, err);
2990 return err;
2991 }
Clemens Ladischd1bda042005-09-14 08:36:03 +02002992 /* reset the current interface */
2993 usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 return 0;
2995}
2996
2997/*
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02002998 * Create a stream for an Edirol UA-700/UA-25/UA-4FX interface.
2999 * The only way to detect the sample rate is by looking at wMaxPacketSize.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 */
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003001static int create_uaxx_quirk(struct snd_usb_audio *chip,
3002 struct usb_interface *iface,
3003 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004{
3005 static const struct audioformat ua_format = {
3006 .format = SNDRV_PCM_FORMAT_S24_3LE,
3007 .channels = 2,
3008 .fmt_type = USB_FORMAT_TYPE_I,
3009 .altsetting = 1,
3010 .altset_idx = 1,
3011 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3012 };
3013 struct usb_host_interface *alts;
3014 struct usb_interface_descriptor *altsd;
3015 struct audioformat *fp;
3016 int stream, err;
3017
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003018 /* both PCM and MIDI interfaces have 2 or more altsettings */
3019 if (iface->num_altsetting < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 return -ENXIO;
3021 alts = &iface->altsetting[1];
3022 altsd = get_iface_desc(alts);
3023
Pedro Lopez-Cabanillas59b3db62008-10-07 20:54:18 +02003024 if (altsd->bNumEndpoints == 2) {
3025 static const struct snd_usb_midi_endpoint_info ua700_ep = {
3026 .out_cables = 0x0003,
3027 .in_cables = 0x0003
3028 };
3029 static const struct snd_usb_audio_quirk ua700_quirk = {
3030 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3031 .data = &ua700_ep
3032 };
3033 static const struct snd_usb_midi_endpoint_info uaxx_ep = {
3034 .out_cables = 0x0001,
3035 .in_cables = 0x0001
3036 };
3037 static const struct snd_usb_audio_quirk uaxx_quirk = {
3038 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3039 .data = &uaxx_ep
3040 };
3041 if (chip->usb_id == USB_ID(0x0582, 0x002b))
3042 return snd_usb_create_midi_interface(chip, iface,
3043 &ua700_quirk);
3044 else
3045 return snd_usb_create_midi_interface(chip, iface,
3046 &uaxx_quirk);
3047 }
3048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 if (altsd->bNumEndpoints != 1)
3050 return -ENXIO;
3051
3052 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
3053 if (!fp)
3054 return -ENOMEM;
3055 memcpy(fp, &ua_format, sizeof(*fp));
3056
3057 fp->iface = altsd->bInterfaceNumber;
3058 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3059 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02003060 fp->datainterval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3062
3063 switch (fp->maxpacksize) {
3064 case 0x120:
3065 fp->rate_max = fp->rate_min = 44100;
3066 break;
3067 case 0x138:
3068 case 0x140:
3069 fp->rate_max = fp->rate_min = 48000;
3070 break;
3071 case 0x258:
3072 case 0x260:
3073 fp->rate_max = fp->rate_min = 96000;
3074 break;
3075 default:
3076 snd_printk(KERN_ERR "unknown sample rate\n");
3077 kfree(fp);
3078 return -ENXIO;
3079 }
3080
3081 stream = (fp->endpoint & USB_DIR_IN)
3082 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3083 err = add_audio_endpoint(chip, stream, fp);
3084 if (err < 0) {
3085 kfree(fp);
3086 return err;
3087 }
3088 usb_set_interface(chip->dev, fp->iface, 0);
3089 return 0;
3090}
3091
3092/*
3093 * Create a stream for an Edirol UA-1000 interface.
3094 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003095static int create_ua1000_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003096 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003097 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
3099 static const struct audioformat ua1000_format = {
3100 .format = SNDRV_PCM_FORMAT_S32_LE,
3101 .fmt_type = USB_FORMAT_TYPE_I,
3102 .altsetting = 1,
3103 .altset_idx = 1,
3104 .attributes = 0,
3105 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3106 };
3107 struct usb_host_interface *alts;
3108 struct usb_interface_descriptor *altsd;
3109 struct audioformat *fp;
3110 int stream, err;
3111
3112 if (iface->num_altsetting != 2)
3113 return -ENXIO;
3114 alts = &iface->altsetting[1];
3115 altsd = get_iface_desc(alts);
Ben Williamsonc4a87ef2006-06-19 17:20:09 +02003116 if (alts->extralen != 11 || alts->extra[1] != USB_DT_CS_INTERFACE ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 altsd->bNumEndpoints != 1)
3118 return -ENXIO;
3119
Alexey Dobriyan52978be2006-09-30 23:27:21 -07003120 fp = kmemdup(&ua1000_format, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 if (!fp)
3122 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
3124 fp->channels = alts->extra[4];
3125 fp->iface = altsd->bInterfaceNumber;
3126 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3127 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02003128 fp->datainterval = parse_datainterval(chip, alts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3130 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[8]);
3131
3132 stream = (fp->endpoint & USB_DIR_IN)
3133 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3134 err = add_audio_endpoint(chip, stream, fp);
3135 if (err < 0) {
3136 kfree(fp);
3137 return err;
3138 }
3139 /* FIXME: playback must be synchronized to capture */
3140 usb_set_interface(chip->dev, fp->iface, 0);
3141 return 0;
3142}
3143
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003144/*
3145 * Create a stream for an Edirol UA-101 interface.
3146 * Copy, paste and modify from Edirol UA-1000
3147 */
3148static int create_ua101_quirk(struct snd_usb_audio *chip,
3149 struct usb_interface *iface,
3150 const struct snd_usb_audio_quirk *quirk)
3151{
3152 static const struct audioformat ua101_format = {
3153 .format = SNDRV_PCM_FORMAT_S32_LE,
3154 .fmt_type = USB_FORMAT_TYPE_I,
3155 .altsetting = 1,
3156 .altset_idx = 1,
3157 .attributes = 0,
3158 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3159 };
3160 struct usb_host_interface *alts;
3161 struct usb_interface_descriptor *altsd;
3162 struct audioformat *fp;
3163 int stream, err;
3164
3165 if (iface->num_altsetting != 2)
3166 return -ENXIO;
3167 alts = &iface->altsetting[1];
3168 altsd = get_iface_desc(alts);
3169 if (alts->extralen != 18 || alts->extra[1] != USB_DT_CS_INTERFACE ||
3170 altsd->bNumEndpoints != 1)
3171 return -ENXIO;
3172
3173 fp = kmemdup(&ua101_format, sizeof(*fp), GFP_KERNEL);
3174 if (!fp)
3175 return -ENOMEM;
3176
3177 fp->channels = alts->extra[11];
3178 fp->iface = altsd->bInterfaceNumber;
3179 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3180 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02003181 fp->datainterval = parse_datainterval(chip, alts);
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003182 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3183 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[15]);
3184
3185 stream = (fp->endpoint & USB_DIR_IN)
3186 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3187 err = add_audio_endpoint(chip, stream, fp);
3188 if (err < 0) {
3189 kfree(fp);
3190 return err;
3191 }
3192 /* FIXME: playback must be synchronized to capture */
3193 usb_set_interface(chip->dev, fp->iface, 0);
3194 return 0;
3195}
3196
Takashi Iwai86e07d32005-11-17 15:08:02 +01003197static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003199 const struct snd_usb_audio_quirk *quirk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
3201/*
3202 * handle the quirks for the contained interfaces
3203 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003204static int create_composite_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003206 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207{
3208 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
3209 int err;
3210
3211 for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
3212 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
3213 if (!iface)
3214 continue;
3215 if (quirk->ifnum != probed_ifnum &&
3216 usb_interface_claimed(iface))
3217 continue;
3218 err = snd_usb_create_quirk(chip, iface, quirk);
3219 if (err < 0)
3220 return err;
3221 if (quirk->ifnum != probed_ifnum)
3222 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
3223 }
3224 return 0;
3225}
3226
Takashi Iwai86e07d32005-11-17 15:08:02 +01003227static int ignore_interface_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003228 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003229 const struct snd_usb_audio_quirk *quirk)
Clemens Ladisch854af952005-07-25 16:19:10 +02003230{
3231 return 0;
3232}
3233
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
3235/*
3236 * boot quirks
3237 */
3238
3239#define EXTIGY_FIRMWARE_SIZE_OLD 794
3240#define EXTIGY_FIRMWARE_SIZE_NEW 483
3241
3242static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
3243{
3244 struct usb_host_config *config = dev->actconfig;
3245 int err;
3246
3247 if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
3248 le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
3249 snd_printdd("sending Extigy boot sequence...\n");
3250 /* Send message to force it to reconnect with full interface. */
3251 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
3252 0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000);
3253 if (err < 0) snd_printdd("error sending boot message: %d\n", err);
3254 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
3255 &dev->descriptor, sizeof(dev->descriptor));
3256 config = dev->actconfig;
3257 if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
3258 err = usb_reset_configuration(dev);
3259 if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
3260 snd_printdd("extigy_boot: new boot length = %d\n",
3261 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
3262 return -ENODEV; /* quit this anyway */
3263 }
3264 return 0;
3265}
3266
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003267static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
3268{
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003269 u8 buf = 1;
3270
3271 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
3272 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3273 0, 0, &buf, 1, 1000);
3274 if (buf == 0) {
3275 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
3276 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3277 1, 2000, NULL, 0, 1000);
3278 return -ENODEV;
3279 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003280 return 0;
3281}
3282
Thibault LE MEURe3113342006-03-14 11:44:53 +01003283/*
Sam Revitche217e302006-06-23 15:10:18 +02003284 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
3285 * documented in the device's data sheet.
3286 */
3287static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value)
3288{
3289 u8 buf[4];
3290 buf[0] = 0x20;
3291 buf[1] = value & 0xff;
3292 buf[2] = (value >> 8) & 0xff;
3293 buf[3] = reg;
3294 return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION,
3295 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT,
3296 0, 0, &buf, 4, 1000);
3297}
3298
3299static int snd_usb_cm106_boot_quirk(struct usb_device *dev)
3300{
3301 /*
3302 * Enable line-out driver mode, set headphone source to front
3303 * channels, enable stereo mic.
3304 */
3305 return snd_usb_cm106_write_int_reg(dev, 2, 0x8004);
3306}
3307
Dan Allongo92a43792009-06-08 11:21:52 -04003308/*
3309 * C-Media CM6206 is based on CM106 with two additional
3310 * registers that are not documented in the data sheet.
3311 * Values here are chosen based on sniffing USB traffic
3312 * under Windows.
3313 */
3314static int snd_usb_cm6206_boot_quirk(struct usb_device *dev)
3315{
3316 int err, reg;
3317 int val[] = {0x200c, 0x3000, 0xf800, 0x143f, 0x0000, 0x3000};
3318
3319 for (reg = 0; reg < ARRAY_SIZE(val); reg++) {
3320 err = snd_usb_cm106_write_int_reg(dev, reg, val[reg]);
3321 if (err < 0)
3322 return err;
3323 }
3324
3325 return err;
3326}
Sam Revitche217e302006-06-23 15:10:18 +02003327
3328/*
Thibault LE MEURe3113342006-03-14 11:44:53 +01003329 * Setup quirks
3330 */
3331#define AUDIOPHILE_SET 0x01 /* if set, parse device_setup */
3332#define AUDIOPHILE_SET_DTS 0x02 /* if set, enable DTS Digital Output */
3333#define AUDIOPHILE_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
3334#define AUDIOPHILE_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */
3335#define AUDIOPHILE_SET_DI 0x10 /* if set, enable Digital Input */
3336#define AUDIOPHILE_SET_MASK 0x1F /* bit mask for setup value */
3337#define AUDIOPHILE_SET_24B_48K_DI 0x19 /* value for 24bits+48KHz+Digital Input */
3338#define AUDIOPHILE_SET_24B_48K_NOTDI 0x09 /* value for 24bits+48KHz+No Digital Input */
3339#define AUDIOPHILE_SET_16B_48K_DI 0x11 /* value for 16bits+48KHz+Digital Input */
3340#define AUDIOPHILE_SET_16B_48K_NOTDI 0x01 /* value for 16bits+48KHz+No Digital Input */
3341
3342static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
3343 int iface, int altno)
3344{
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02003345 /* Reset ALL ifaces to 0 altsetting.
3346 * Call it for every possible altsetting of every interface.
3347 */
3348 usb_set_interface(chip->dev, iface, 0);
3349
Thibault LE MEURe3113342006-03-14 11:44:53 +01003350 if (device_setup[chip->index] & AUDIOPHILE_SET) {
3351 if ((device_setup[chip->index] & AUDIOPHILE_SET_DTS)
3352 && altno != 6)
3353 return 1; /* skip this altsetting */
3354 if ((device_setup[chip->index] & AUDIOPHILE_SET_96K)
3355 && altno != 1)
3356 return 1; /* skip this altsetting */
3357 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3358 AUDIOPHILE_SET_24B_48K_DI && altno != 2)
3359 return 1; /* skip this altsetting */
3360 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3361 AUDIOPHILE_SET_24B_48K_NOTDI && altno != 3)
3362 return 1; /* skip this altsetting */
3363 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3364 AUDIOPHILE_SET_16B_48K_DI && altno != 4)
3365 return 1; /* skip this altsetting */
3366 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3367 AUDIOPHILE_SET_16B_48K_NOTDI && altno != 5)
3368 return 1; /* skip this altsetting */
3369 }
3370 return 0; /* keep this altsetting */
3371}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
3373/*
3374 * audio-interface quirks
3375 *
3376 * returns zero if no standard audio/MIDI parsing is needed.
3377 * returns a postive value if standard audio/midi interfaces are parsed
3378 * after this.
3379 * returns a negative value at error.
3380 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003381static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003383 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003385 typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *,
3386 const struct snd_usb_audio_quirk *);
Clemens Ladisch854af952005-07-25 16:19:10 +02003387 static const quirk_func_t quirk_funcs[] = {
3388 [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
3389 [QUIRK_COMPOSITE] = create_composite_quirk,
3390 [QUIRK_MIDI_STANDARD_INTERFACE] = snd_usb_create_midi_interface,
3391 [QUIRK_MIDI_FIXED_ENDPOINT] = snd_usb_create_midi_interface,
3392 [QUIRK_MIDI_YAMAHA] = snd_usb_create_midi_interface,
3393 [QUIRK_MIDI_MIDIMAN] = snd_usb_create_midi_interface,
3394 [QUIRK_MIDI_NOVATION] = snd_usb_create_midi_interface,
Clemens Ladisch55de5ef2009-05-27 10:49:30 +02003395 [QUIRK_MIDI_FASTLANE] = snd_usb_create_midi_interface,
Clemens Ladisch854af952005-07-25 16:19:10 +02003396 [QUIRK_MIDI_EMAGIC] = snd_usb_create_midi_interface,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01003397 [QUIRK_MIDI_CME] = snd_usb_create_midi_interface,
Clemens Ladischd1bda042005-09-14 08:36:03 +02003398 [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003399 [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003400 [QUIRK_AUDIO_EDIROL_UA1000] = create_ua1000_quirk,
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003401 [QUIRK_AUDIO_EDIROL_UA101] = create_ua101_quirk,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003402 [QUIRK_AUDIO_EDIROL_UAXX] = create_uaxx_quirk
Clemens Ladisch854af952005-07-25 16:19:10 +02003403 };
3404
3405 if (quirk->type < QUIRK_TYPE_COUNT) {
3406 return quirk_funcs[quirk->type](chip, iface, quirk);
3407 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
3409 return -ENXIO;
3410 }
3411}
3412
3413
3414/*
3415 * common proc files to show the usb device info
3416 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003417static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003419 struct snd_usb_audio *chip = entry->private_data;
Pavel Machek07f51a72008-04-14 13:15:56 +02003420 if (!chip->shutdown)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum);
3422}
3423
Takashi Iwai86e07d32005-11-17 15:08:02 +01003424static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003426 struct snd_usb_audio *chip = entry->private_data;
Pavel Machek07f51a72008-04-14 13:15:56 +02003427 if (!chip->shutdown)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 snd_iprintf(buffer, "%04x:%04x\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003429 USB_ID_VENDOR(chip->usb_id),
3430 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431}
3432
Takashi Iwai86e07d32005-11-17 15:08:02 +01003433static void snd_usb_audio_create_proc(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003435 struct snd_info_entry *entry;
Pavel Machek07f51a72008-04-14 13:15:56 +02003436 if (!snd_card_proc_new(chip->card, "usbbus", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003437 snd_info_set_text_ops(entry, chip, proc_audio_usbbus_read);
Pavel Machek07f51a72008-04-14 13:15:56 +02003438 if (!snd_card_proc_new(chip->card, "usbid", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003439 snd_info_set_text_ops(entry, chip, proc_audio_usbid_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440}
3441
3442/*
3443 * free the chip instance
3444 *
3445 * here we have to do not much, since pcm and controls are already freed
3446 *
3447 */
3448
Takashi Iwai86e07d32005-11-17 15:08:02 +01003449static int snd_usb_audio_free(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450{
3451 kfree(chip);
3452 return 0;
3453}
3454
Takashi Iwai86e07d32005-11-17 15:08:02 +01003455static int snd_usb_audio_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003457 struct snd_usb_audio *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 return snd_usb_audio_free(chip);
3459}
3460
3461
3462/*
3463 * create a chip instance and set its names.
3464 */
3465static int snd_usb_audio_create(struct usb_device *dev, int idx,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003466 const struct snd_usb_audio_quirk *quirk,
3467 struct snd_usb_audio **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003469 struct snd_card *card;
3470 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 int err, len;
3472 char component[14];
Takashi Iwai86e07d32005-11-17 15:08:02 +01003473 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 .dev_free = snd_usb_audio_dev_free,
3475 };
3476
3477 *rchip = NULL;
3478
Clemens Ladisch076639f2007-08-21 08:56:54 +02003479 if (snd_usb_get_speed(dev) != USB_SPEED_LOW &&
3480 snd_usb_get_speed(dev) != USB_SPEED_FULL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 snd_usb_get_speed(dev) != USB_SPEED_HIGH) {
3482 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
3483 return -ENXIO;
3484 }
3485
Takashi Iwaibd7dd772008-12-28 16:45:02 +01003486 err = snd_card_create(index[idx], id[idx], THIS_MODULE, 0, &card);
3487 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01003489 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 }
3491
Takashi Iwai561b2202005-09-09 14:22:34 +02003492 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 if (! chip) {
3494 snd_card_free(card);
3495 return -ENOMEM;
3496 }
3497
3498 chip->index = idx;
3499 chip->dev = dev;
3500 chip->card = card;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003501 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3502 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 INIT_LIST_HEAD(&chip->pcm_list);
3504 INIT_LIST_HEAD(&chip->midi_list);
Clemens Ladisch84957a82005-04-29 16:23:13 +02003505 INIT_LIST_HEAD(&chip->mixer_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
3507 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
3508 snd_usb_audio_free(chip);
3509 snd_card_free(card);
3510 return err;
3511 }
3512
3513 strcpy(card->driver, "USB-Audio");
3514 sprintf(component, "USB%04x:%04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003515 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 snd_component_add(card, component);
3517
3518 /* retrieve the device string as shortname */
3519 if (quirk && quirk->product_name) {
3520 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
3521 } else {
3522 if (!dev->descriptor.iProduct ||
3523 usb_string(dev, dev->descriptor.iProduct,
3524 card->shortname, sizeof(card->shortname)) <= 0) {
3525 /* no name available from anywhere, so use ID */
3526 sprintf(card->shortname, "USB Device %#04x:%#04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003527 USB_ID_VENDOR(chip->usb_id),
3528 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 }
3530 }
3531
3532 /* retrieve the vendor and device strings as longname */
3533 if (quirk && quirk->vendor_name) {
3534 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
3535 } else {
3536 if (dev->descriptor.iManufacturer)
3537 len = usb_string(dev, dev->descriptor.iManufacturer,
3538 card->longname, sizeof(card->longname));
3539 else
3540 len = 0;
3541 /* we don't really care if there isn't any vendor string */
3542 }
3543 if (len > 0)
3544 strlcat(card->longname, " ", sizeof(card->longname));
3545
3546 strlcat(card->longname, card->shortname, sizeof(card->longname));
3547
3548 len = strlcat(card->longname, " at ", sizeof(card->longname));
3549
3550 if (len < sizeof(card->longname))
3551 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
3552
3553 strlcat(card->longname,
Clemens Ladisch076639f2007-08-21 08:56:54 +02003554 snd_usb_get_speed(dev) == USB_SPEED_LOW ? ", low speed" :
3555 snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" :
3556 ", high speed",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 sizeof(card->longname));
3558
3559 snd_usb_audio_create_proc(chip);
3560
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 *rchip = chip;
3562 return 0;
3563}
3564
3565
3566/*
3567 * probe the active usb device
3568 *
3569 * note that this can be called multiple times per a device, when it
3570 * includes multiple audio control interfaces.
3571 *
3572 * thus we check the usb device pointer and creates the card instance
3573 * only at the first time. the successive calls of this function will
3574 * append the pcm interface to the corresponding card.
3575 */
3576static void *snd_usb_audio_probe(struct usb_device *dev,
3577 struct usb_interface *intf,
3578 const struct usb_device_id *usb_id)
3579{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003580 const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 int i, err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01003582 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 struct usb_host_interface *alts;
3584 int ifnum;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003585 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
3587 alts = &intf->altsetting[0];
3588 ifnum = get_iface_desc(alts)->bInterfaceNumber;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003589 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3590 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591
3592 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
3593 goto __err_val;
3594
3595 /* SB Extigy needs special boot-up sequence */
3596 /* if more models come, this will go to the quirk list. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003597 if (id == USB_ID(0x041e, 0x3000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 if (snd_usb_extigy_boot_quirk(dev, intf) < 0)
3599 goto __err_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003601 /* SB Audigy 2 NX needs its own boot-up magic, too */
3602 if (id == USB_ID(0x041e, 0x3020)) {
3603 if (snd_usb_audigy2nx_boot_quirk(dev) < 0)
3604 goto __err_val;
3605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606
Sam Revitche217e302006-06-23 15:10:18 +02003607 /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
3608 if (id == USB_ID(0x10f5, 0x0200)) {
3609 if (snd_usb_cm106_boot_quirk(dev) < 0)
3610 goto __err_val;
3611 }
3612
Dan Allongo92a43792009-06-08 11:21:52 -04003613 /* C-Media CM6206 / CM106-Like Sound Device */
3614 if (id == USB_ID(0x0d8c, 0x0102)) {
3615 if (snd_usb_cm6206_boot_quirk(dev) < 0)
3616 goto __err_val;
3617 }
3618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 /*
3620 * found a config. now register to ALSA
3621 */
3622
3623 /* check whether it's already registered */
3624 chip = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003625 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 for (i = 0; i < SNDRV_CARDS; i++) {
3627 if (usb_chip[i] && usb_chip[i]->dev == dev) {
3628 if (usb_chip[i]->shutdown) {
3629 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
3630 goto __error;
3631 }
3632 chip = usb_chip[i];
3633 break;
3634 }
3635 }
3636 if (! chip) {
3637 /* it's a fresh one.
3638 * now look for an empty slot and create a new card instance
3639 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 for (i = 0; i < SNDRV_CARDS; i++)
3641 if (enable[i] && ! usb_chip[i] &&
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003642 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
3643 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
3645 goto __error;
3646 }
Clemens Ladisch1dcd3ec2005-05-10 14:51:40 +02003647 snd_card_set_dev(chip->card, &intf->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 break;
3649 }
Pavel Machek07f51a72008-04-14 13:15:56 +02003650 if (!chip) {
3651 printk(KERN_ERR "no available usb audio device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 goto __error;
3653 }
3654 }
3655
3656 err = 1; /* continue */
3657 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
3658 /* need some special handlings */
3659 if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0)
3660 goto __error;
3661 }
3662
3663 if (err > 0) {
3664 /* create normal USB audio interfaces */
3665 if (snd_usb_create_streams(chip, ifnum) < 0 ||
Takashi Iwai7a9b8062008-08-13 15:40:53 +02003666 snd_usb_create_mixer(chip, ifnum, ignore_ctl_error) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 goto __error;
3668 }
3669 }
3670
3671 /* we are allowed to call snd_card_register() many times */
3672 if (snd_card_register(chip->card) < 0) {
3673 goto __error;
3674 }
3675
3676 usb_chip[chip->index] = chip;
3677 chip->num_interfaces++;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003678 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 return chip;
3680
3681 __error:
3682 if (chip && !chip->num_interfaces)
3683 snd_card_free(chip->card);
Ingo Molnar12aa7572006-01-16 16:36:05 +01003684 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 __err_val:
3686 return NULL;
3687}
3688
3689/*
3690 * we need to take care of counter, since disconnection can be called also
3691 * many times as well as usb_audio_probe().
3692 */
3693static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr)
3694{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003695 struct snd_usb_audio *chip;
3696 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 struct list_head *p;
3698
3699 if (ptr == (void *)-1L)
3700 return;
3701
3702 chip = ptr;
3703 card = chip->card;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003704 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 chip->shutdown = 1;
3706 chip->num_interfaces--;
3707 if (chip->num_interfaces <= 0) {
3708 snd_card_disconnect(card);
3709 /* release the pcm resources */
3710 list_for_each(p, &chip->pcm_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003711 snd_usb_stream_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 }
3713 /* release the midi resources */
3714 list_for_each(p, &chip->midi_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003715 snd_usbmidi_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02003717 /* release mixer resources */
3718 list_for_each(p, &chip->mixer_list) {
3719 snd_usb_mixer_disconnect(p);
3720 }
Takashi Iwai9eb70e62008-04-17 12:53:26 +02003721 usb_chip[chip->index] = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003722 mutex_unlock(&register_mutex);
Takashi Iwaic4614822006-06-23 14:38:23 +02003723 snd_card_free_when_closed(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 } else {
Ingo Molnar12aa7572006-01-16 16:36:05 +01003725 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 }
3727}
3728
3729/*
3730 * new 2.5 USB kernel API
3731 */
3732static int usb_audio_probe(struct usb_interface *intf,
3733 const struct usb_device_id *id)
3734{
3735 void *chip;
3736 chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
3737 if (chip) {
Julia Lawallf4e97492009-01-01 18:14:35 +01003738 usb_set_intfdata(intf, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 return 0;
3740 } else
3741 return -EIO;
3742}
3743
3744static void usb_audio_disconnect(struct usb_interface *intf)
3745{
3746 snd_usb_audio_disconnect(interface_to_usbdev(intf),
Julia Lawallf4e97492009-01-01 18:14:35 +01003747 usb_get_intfdata(intf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748}
3749
Andrew Morton93521d22007-12-24 14:40:56 +01003750#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01003751static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
3752{
Julia Lawallf4e97492009-01-01 18:14:35 +01003753 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumf85bf292007-12-14 14:42:41 +01003754 struct list_head *p;
3755 struct snd_usb_stream *as;
3756
3757 if (chip == (void *)-1L)
3758 return 0;
3759
3760 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
3761 if (!chip->num_suspended_intf++) {
3762 list_for_each(p, &chip->pcm_list) {
3763 as = list_entry(p, struct snd_usb_stream, list);
3764 snd_pcm_suspend_all(as->pcm);
3765 }
3766 }
3767
3768 return 0;
3769}
3770
3771static int usb_audio_resume(struct usb_interface *intf)
3772{
Julia Lawallf4e97492009-01-01 18:14:35 +01003773 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumf85bf292007-12-14 14:42:41 +01003774
3775 if (chip == (void *)-1L)
3776 return 0;
3777 if (--chip->num_suspended_intf)
3778 return 0;
3779 /*
3780 * ALSA leaves material resumption to user space
3781 * we just notify
3782 */
3783
3784 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
3785
3786 return 0;
3787}
Andrew Morton93521d22007-12-24 14:40:56 +01003788#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
3790static int __init snd_usb_audio_init(void)
3791{
Clemens Ladischf3990e62009-02-20 09:32:40 +01003792 if (nrpacks < 1 || nrpacks > MAX_PACKS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 printk(KERN_WARNING "invalid nrpacks value.\n");
3794 return -EINVAL;
3795 }
Tobias Klausercf78bbc2006-10-04 18:12:43 +02003796 return usb_register(&usb_audio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797}
3798
3799
3800static void __exit snd_usb_audio_cleanup(void)
3801{
3802 usb_deregister(&usb_audio_driver);
3803}
3804
3805module_init(snd_usb_audio_init);
3806module_exit(snd_usb_audio_cleanup);