blob: c7b902358b7b268a3dd25178639f41009dedf125 [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 Ladisch15a24c02005-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 Ladisch4d788e02009-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 Ladisch7efd8bc2005-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 Ladisch7efd8bc2005-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 Ladisch7efd8bc2005-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 Ladisch7efd8bc2005-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 Ladisch7efd8bc2005-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 Ladisch7efd8bc2005-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 Ladisch7efd8bc2005-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 Ladisch7efd8bc2005-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 Ladisch15a24c02005-08-12 08:25:26 +02001084 urb_packs = 1;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001085 urb_packs *= packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 /* decide how many packets to be used */
Clemens Ladisch15a24c02005-08-12 08:25:26 +02001088 if (is_playback) {
Clemens Ladisch4d788e02009-01-26 08:09:28 +01001089 unsigned int minsize, maxpacks;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001090 /* determine how small a packet can be */
1091 minsize = (subs->freqn >> (16 - subs->datainterval))
1092 * (frame_bits >> 3);
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +02001093 /* with sync from device, assume it can be 12% lower */
Clemens Ladischd6db3922005-08-12 08:28:27 +02001094 if (subs->syncpipe)
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +02001095 minsize -= minsize >> 3;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001096 minsize = max(minsize, 1u);
1097 total_packs = (period_bytes + minsize - 1) / minsize;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001098 /* we need at least two URBs for queueing */
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001099 if (total_packs < 2) {
1100 total_packs = 2;
Clemens Ladischf3990e62009-02-20 09:32:40 +01001101 } else {
Clemens Ladisch4d788e02009-01-26 08:09:28 +01001102 /* and we don't want too long a queue either */
Clemens Ladischb1c86bb2009-03-02 12:06:28 +01001103 maxpacks = max(MAX_QUEUE * packs_per_ms, urb_packs * 2);
1104 total_packs = min(total_packs, maxpacks);
Clemens Ladisch4d788e02009-01-26 08:09:28 +01001105 }
Clemens Ladisch15a24c02005-08-12 08:25:26 +02001106 } else {
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001107 while (urb_packs > 1 && urb_packs * maxsize >= period_bytes)
1108 urb_packs >>= 1;
Clemens Ladisch15a24c02005-08-12 08:25:26 +02001109 total_packs = MAX_URBS * urb_packs;
1110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 subs->nurbs = (total_packs + urb_packs - 1) / urb_packs;
1112 if (subs->nurbs > MAX_URBS) {
1113 /* too much... */
1114 subs->nurbs = MAX_URBS;
1115 total_packs = MAX_URBS * urb_packs;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001116 } else if (subs->nurbs < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 /* too little - we need at least two packets
1118 * to ensure contiguous playback/capture
1119 */
1120 subs->nurbs = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
1122
1123 /* allocate and initialize data urbs */
1124 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001125 struct snd_urb_ctx *u = &subs->dataurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 u->index = i;
1127 u->subs = subs;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001128 u->packets = (i + 1) * total_packs / subs->nurbs
1129 - i * total_packs / subs->nurbs;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001130 u->buffer_size = maxsize * u->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (subs->fmt_type == USB_FORMAT_TYPE_II)
1132 u->packets++; /* for transfer delimiter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02001134 if (!u->urb)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001135 goto out_of_memory;
1136 u->urb->transfer_buffer =
1137 usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL,
1138 &u->urb->transfer_dma);
Pavel Machek07f51a72008-04-14 13:15:56 +02001139 if (!u->urb->transfer_buffer)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001140 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 u->urb->pipe = subs->datapipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001142 u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001143 u->urb->interval = 1 << subs->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001145 u->urb->complete = snd_complete_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147
1148 if (subs->syncpipe) {
1149 /* allocate and initialize sync urbs */
Clemens Ladisch55851f72005-08-15 08:34:16 +02001150 subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4,
1151 GFP_KERNEL, &subs->sync_dma);
Pavel Machek07f51a72008-04-14 13:15:56 +02001152 if (!subs->syncbuf)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001153 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001155 struct snd_urb_ctx *u = &subs->syncurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 u->index = i;
1157 u->subs = subs;
Clemens Ladischca810902005-05-02 08:55:54 +02001158 u->packets = 1;
1159 u->urb = usb_alloc_urb(1, GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02001160 if (!u->urb)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001161 goto out_of_memory;
Clemens Ladischca810902005-05-02 08:55:54 +02001162 u->urb->transfer_buffer = subs->syncbuf + i * 4;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001163 u->urb->transfer_dma = subs->sync_dma + i * 4;
Clemens Ladischca810902005-05-02 08:55:54 +02001164 u->urb->transfer_buffer_length = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 u->urb->pipe = subs->syncpipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001166 u->urb->transfer_flags = URB_ISO_ASAP |
1167 URB_NO_TRANSFER_DMA_MAP;
Clemens Ladischca810902005-05-02 08:55:54 +02001168 u->urb->number_of_packets = 1;
Clemens Ladisch1149a642005-05-02 08:53:46 +02001169 u->urb->interval = 1 << subs->syncinterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001171 u->urb->complete = snd_complete_sync_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
1173 }
1174 return 0;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001175
1176out_of_memory:
1177 release_substream_urbs(subs, 0);
1178 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181
1182/*
1183 * find a matching audio format
1184 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001185static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 unsigned int rate, unsigned int channels)
1187{
1188 struct list_head *p;
1189 struct audioformat *found = NULL;
1190 int cur_attr = 0, attr;
1191
1192 list_for_each(p, &subs->fmt_list) {
1193 struct audioformat *fp;
1194 fp = list_entry(p, struct audioformat, list);
1195 if (fp->format != format || fp->channels != channels)
1196 continue;
1197 if (rate < fp->rate_min || rate > fp->rate_max)
1198 continue;
1199 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
1200 unsigned int i;
1201 for (i = 0; i < fp->nr_rates; i++)
1202 if (fp->rate_table[i] == rate)
1203 break;
1204 if (i >= fp->nr_rates)
1205 continue;
1206 }
1207 attr = fp->ep_attr & EP_ATTR_MASK;
1208 if (! found) {
1209 found = fp;
1210 cur_attr = attr;
1211 continue;
1212 }
1213 /* avoid async out and adaptive in if the other method
1214 * supports the same format.
1215 * this is a workaround for the case like
1216 * M-audio audiophile USB.
1217 */
1218 if (attr != cur_attr) {
1219 if ((attr == EP_ATTR_ASYNC &&
1220 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1221 (attr == EP_ATTR_ADAPTIVE &&
1222 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
1223 continue;
1224 if ((cur_attr == EP_ATTR_ASYNC &&
1225 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1226 (cur_attr == EP_ATTR_ADAPTIVE &&
1227 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
1228 found = fp;
1229 cur_attr = attr;
1230 continue;
1231 }
1232 }
1233 /* find the format with the largest max. packet size */
1234 if (fp->maxpacksize > found->maxpacksize) {
1235 found = fp;
1236 cur_attr = attr;
1237 }
1238 }
1239 return found;
1240}
1241
1242
1243/*
1244 * initialize the picth control and sample rate
1245 */
1246static int init_usb_pitch(struct usb_device *dev, int iface,
1247 struct usb_host_interface *alts,
1248 struct audioformat *fmt)
1249{
1250 unsigned int ep;
1251 unsigned char data[1];
1252 int err;
1253
1254 ep = get_endpoint(alts, 0)->bEndpointAddress;
1255 /* if endpoint has pitch control, enable it */
1256 if (fmt->attributes & EP_CS_ATTR_PITCH_CONTROL) {
1257 data[0] = 1;
1258 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1259 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1260 PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) {
1261 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
1262 dev->devnum, iface, ep);
1263 return err;
1264 }
1265 }
1266 return 0;
1267}
1268
1269static int init_usb_sample_rate(struct usb_device *dev, int iface,
1270 struct usb_host_interface *alts,
1271 struct audioformat *fmt, int rate)
1272{
1273 unsigned int ep;
1274 unsigned char data[3];
1275 int err;
1276
1277 ep = get_endpoint(alts, 0)->bEndpointAddress;
1278 /* if endpoint has sampling rate control, set it */
1279 if (fmt->attributes & EP_CS_ATTR_SAMPLE_RATE) {
1280 int crate;
1281 data[0] = rate;
1282 data[1] = rate >> 8;
1283 data[2] = rate >> 16;
1284 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1285 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1286 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001287 snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 dev->devnum, iface, fmt->altsetting, rate, ep);
1289 return err;
1290 }
1291 if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), GET_CUR,
1292 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN,
1293 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001294 snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 dev->devnum, iface, fmt->altsetting, ep);
1296 return 0; /* some devices don't support reading */
1297 }
1298 crate = data[0] | (data[1] << 8) | (data[2] << 16);
1299 if (crate != rate) {
1300 snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate);
1301 // runtime->rate = crate;
1302 }
1303 }
1304 return 0;
1305}
1306
1307/*
1308 * find a matching format and set up the interface
1309 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001310static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
1312 struct usb_device *dev = subs->dev;
1313 struct usb_host_interface *alts;
1314 struct usb_interface_descriptor *altsd;
1315 struct usb_interface *iface;
1316 unsigned int ep, attr;
1317 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
1318 int err;
1319
1320 iface = usb_ifnum_to_if(dev, fmt->iface);
Takashi Iwai5e246b82008-08-08 17:12:47 +02001321 if (WARN_ON(!iface))
1322 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 alts = &iface->altsetting[fmt->altset_idx];
1324 altsd = get_iface_desc(alts);
Takashi Iwai5e246b82008-08-08 17:12:47 +02001325 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
1326 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328 if (fmt == subs->cur_audiofmt)
1329 return 0;
1330
1331 /* close the old interface */
1332 if (subs->interface >= 0 && subs->interface != fmt->iface) {
Oliver Neukum5149fe22007-08-31 12:15:27 +02001333 if (usb_set_interface(subs->dev, subs->interface, 0) < 0) {
1334 snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed\n",
1335 dev->devnum, fmt->iface, fmt->altsetting);
1336 return -EIO;
1337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 subs->interface = -1;
1339 subs->format = 0;
1340 }
1341
1342 /* set interface */
1343 if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) {
1344 if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) {
1345 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n",
1346 dev->devnum, fmt->iface, fmt->altsetting);
1347 return -EIO;
1348 }
1349 snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting);
1350 subs->interface = fmt->iface;
1351 subs->format = fmt->altset_idx;
1352 }
1353
1354 /* create a data pipe */
1355 ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK;
1356 if (is_playback)
1357 subs->datapipe = usb_sndisocpipe(dev, ep);
1358 else
1359 subs->datapipe = usb_rcvisocpipe(dev, ep);
Clemens Ladisch744b89e2009-04-03 09:45:01 +02001360 subs->datainterval = fmt->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 subs->syncpipe = subs->syncinterval = 0;
1362 subs->maxpacksize = fmt->maxpacksize;
1363 subs->fill_max = 0;
1364
1365 /* we need a sync pipe in async OUT or adaptive IN mode */
1366 /* check the number of EP, since some devices have broken
1367 * descriptors which fool us. if it has only one EP,
1368 * assume it as adaptive-out or sync-in.
1369 */
1370 attr = fmt->ep_attr & EP_ATTR_MASK;
1371 if (((is_playback && attr == EP_ATTR_ASYNC) ||
1372 (! is_playback && attr == EP_ATTR_ADAPTIVE)) &&
1373 altsd->bNumEndpoints >= 2) {
1374 /* check sync-pipe endpoint */
1375 /* ... and check descriptor size before accessing bSynchAddress
1376 because there is a version of the SB Audigy 2 NX firmware lacking
1377 the audio fields in the endpoint descriptors */
1378 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
1379 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1380 get_endpoint(alts, 1)->bSynchAddress != 0)) {
1381 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1382 dev->devnum, fmt->iface, fmt->altsetting);
1383 return -EINVAL;
1384 }
1385 ep = get_endpoint(alts, 1)->bEndpointAddress;
1386 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1387 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
1388 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
1389 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1390 dev->devnum, fmt->iface, fmt->altsetting);
1391 return -EINVAL;
1392 }
1393 ep &= USB_ENDPOINT_NUMBER_MASK;
1394 if (is_playback)
1395 subs->syncpipe = usb_rcvisocpipe(dev, ep);
1396 else
1397 subs->syncpipe = usb_sndisocpipe(dev, ep);
Clemens Ladisch1149a642005-05-02 08:53:46 +02001398 if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1399 get_endpoint(alts, 1)->bRefresh >= 1 &&
1400 get_endpoint(alts, 1)->bRefresh <= 9)
1401 subs->syncinterval = get_endpoint(alts, 1)->bRefresh;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001402 else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
Clemens Ladisch1149a642005-05-02 08:53:46 +02001403 subs->syncinterval = 1;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001404 else if (get_endpoint(alts, 1)->bInterval >= 1 &&
1405 get_endpoint(alts, 1)->bInterval <= 16)
1406 subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
1407 else
1408 subs->syncinterval = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
1410
1411 /* always fill max packet size */
1412 if (fmt->attributes & EP_CS_ATTR_FILL_MAX)
1413 subs->fill_max = 1;
1414
1415 if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0)
1416 return err;
1417
1418 subs->cur_audiofmt = fmt;
1419
1420#if 0
Takashi Iwai54530bd2009-02-05 15:55:18 +01001421 printk(KERN_DEBUG
1422 "setting done: format = %d, rate = %d..%d, channels = %d\n",
Pavel Machek2a56f512008-04-14 13:14:22 +02001423 fmt->format, fmt->rate_min, fmt->rate_max, fmt->channels);
Takashi Iwai54530bd2009-02-05 15:55:18 +01001424 printk(KERN_DEBUG
1425 " datapipe = 0x%0x, syncpipe = 0x%0x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 subs->datapipe, subs->syncpipe);
1427#endif
1428
1429 return 0;
1430}
1431
1432/*
1433 * hw_params callback
1434 *
1435 * allocate a buffer and set the given audio format.
1436 *
1437 * so far we use a physically linear buffer although packetize transfer
1438 * doesn't need a continuous area.
1439 * if sg buffer is supported on the later version of alsa, we'll follow
1440 * that.
1441 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001442static int snd_usb_hw_params(struct snd_pcm_substream *substream,
1443 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
John Daiker88518272006-12-28 13:55:05 +01001445 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 struct audioformat *fmt;
1447 unsigned int channels, rate, format;
1448 int ret, changed;
1449
Clemens Ladisch6207e512005-08-15 08:35:25 +02001450 ret = snd_pcm_alloc_vmalloc_buffer(substream,
1451 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (ret < 0)
1453 return ret;
1454
1455 format = params_format(hw_params);
1456 rate = params_rate(hw_params);
1457 channels = params_channels(hw_params);
1458 fmt = find_format(subs, format, rate, channels);
Pavel Machek07f51a72008-04-14 13:15:56 +02001459 if (!fmt) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001460 snd_printd(KERN_DEBUG "cannot set format: format = %#x, rate = %d, channels = %d\n",
Jaroslav Kysela21a34792006-01-13 09:12:11 +01001461 format, rate, channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 return -EINVAL;
1463 }
1464
1465 changed = subs->cur_audiofmt != fmt ||
1466 subs->period_bytes != params_period_bytes(hw_params) ||
1467 subs->cur_rate != rate;
1468 if ((ret = set_format(subs, fmt)) < 0)
1469 return ret;
1470
1471 if (subs->cur_rate != rate) {
1472 struct usb_host_interface *alts;
1473 struct usb_interface *iface;
1474 iface = usb_ifnum_to_if(subs->dev, fmt->iface);
1475 alts = &iface->altsetting[fmt->altset_idx];
1476 ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate);
1477 if (ret < 0)
1478 return ret;
1479 subs->cur_rate = rate;
1480 }
1481
1482 if (changed) {
1483 /* format changed */
1484 release_substream_urbs(subs, 0);
1485 /* influenced: period_bytes, channels, rate, format, */
1486 ret = init_substream_urbs(subs, params_period_bytes(hw_params),
1487 params_rate(hw_params),
1488 snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params));
1489 }
1490
1491 return ret;
1492}
1493
1494/*
1495 * hw_free callback
1496 *
1497 * reset the audio format and release the buffer
1498 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001499static int snd_usb_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
John Daiker88518272006-12-28 13:55:05 +01001501 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 subs->cur_audiofmt = NULL;
1504 subs->cur_rate = 0;
1505 subs->period_bytes = 0;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001506 if (!subs->stream->chip->shutdown)
1507 release_substream_urbs(subs, 0);
Clemens Ladisch6207e512005-08-15 08:35:25 +02001508 return snd_pcm_free_vmalloc_buffer(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
1511/*
1512 * prepare callback
1513 *
1514 * only a few subtle things...
1515 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001516static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001518 struct snd_pcm_runtime *runtime = substream->runtime;
1519 struct snd_usb_substream *subs = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 if (! subs->cur_audiofmt) {
1522 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
1523 return -ENXIO;
1524 }
1525
1526 /* some unit conversions in runtime */
1527 subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize);
1528 subs->curframesize = bytes_to_frames(runtime, subs->curpacksize);
1529
1530 /* reset the pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 subs->hwptr_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 subs->transfer_done = 0;
1533 subs->phase = 0;
Takashi Iwaiae1ec5e2008-10-13 03:08:53 +02001534 runtime->delay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 /* clear urbs (to be sure) */
1537 deactivate_urbs(subs, 0, 1);
1538 wait_clear_urbs(subs);
1539
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001540 /* for playback, submit the URBs now; otherwise, the first hwptr_done
1541 * updates for all URBs would happen at the same time when starting */
1542 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
Clemens Ladische4f8e652006-10-04 13:42:57 +02001543 subs->ops.prepare = prepare_nodata_playback_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001544 return start_urbs(subs, runtime);
1545 } else
1546 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547}
1548
Clemens Ladisch1700f302006-10-04 13:41:25 +02001549static struct snd_pcm_hardware snd_usb_hardware =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Clemens Ladisch49045d32005-09-05 10:31:05 +02001551 .info = SNDRV_PCM_INFO_MMAP |
1552 SNDRV_PCM_INFO_MMAP_VALID |
1553 SNDRV_PCM_INFO_BATCH |
1554 SNDRV_PCM_INFO_INTERLEAVED |
Clemens Ladische4f8e652006-10-04 13:42:57 +02001555 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1556 SNDRV_PCM_INFO_PAUSE,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001557 .buffer_bytes_max = 1024 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 .period_bytes_min = 64,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001559 .period_bytes_max = 512 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 .periods_min = 2,
1561 .periods_max = 1024,
1562};
1563
1564/*
1565 * h/w constraints
1566 */
1567
1568#ifdef HW_CONST_DEBUG
1569#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
1570#else
1571#define hwc_debug(fmt, args...) /**/
1572#endif
1573
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001574static int hw_check_valid_format(struct snd_usb_substream *subs,
1575 struct snd_pcm_hw_params *params,
1576 struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001578 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1579 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
1580 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001581 struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
1582 unsigned int ptime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 /* check the format */
Pavel Machek07f51a72008-04-14 13:15:56 +02001585 if (!snd_mask_test(fmts, fp->format)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 hwc_debug(" > check: no supported format %d\n", fp->format);
1587 return 0;
1588 }
1589 /* check the channels */
1590 if (fp->channels < ct->min || fp->channels > ct->max) {
1591 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
1592 return 0;
1593 }
1594 /* check the rate is within the range */
1595 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
1596 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
1597 return 0;
1598 }
1599 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
1600 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
1601 return 0;
1602 }
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001603 /* check whether the period time is >= the data packet interval */
1604 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH) {
1605 ptime = 125 * (1 << fp->datainterval);
1606 if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
1607 hwc_debug(" > check: ptime %u > max %u\n", ptime, pt->max);
1608 return 0;
1609 }
1610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return 1;
1612}
1613
Takashi Iwai86e07d32005-11-17 15:08:02 +01001614static int hw_rule_rate(struct snd_pcm_hw_params *params,
1615 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001617 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001619 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 unsigned int rmin, rmax;
1621 int changed;
1622
1623 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
1624 changed = 0;
1625 rmin = rmax = 0;
1626 list_for_each(p, &subs->fmt_list) {
1627 struct audioformat *fp;
1628 fp = list_entry(p, struct audioformat, list);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001629 if (!hw_check_valid_format(subs, params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 continue;
1631 if (changed++) {
1632 if (rmin > fp->rate_min)
1633 rmin = fp->rate_min;
1634 if (rmax < fp->rate_max)
1635 rmax = fp->rate_max;
1636 } else {
1637 rmin = fp->rate_min;
1638 rmax = fp->rate_max;
1639 }
1640 }
1641
Pavel Machek07f51a72008-04-14 13:15:56 +02001642 if (!changed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 hwc_debug(" --> get empty\n");
1644 it->empty = 1;
1645 return -EINVAL;
1646 }
1647
1648 changed = 0;
1649 if (it->min < rmin) {
1650 it->min = rmin;
1651 it->openmin = 0;
1652 changed = 1;
1653 }
1654 if (it->max > rmax) {
1655 it->max = rmax;
1656 it->openmax = 0;
1657 changed = 1;
1658 }
1659 if (snd_interval_checkempty(it)) {
1660 it->empty = 1;
1661 return -EINVAL;
1662 }
1663 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1664 return changed;
1665}
1666
1667
Takashi Iwai86e07d32005-11-17 15:08:02 +01001668static int hw_rule_channels(struct snd_pcm_hw_params *params,
1669 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001671 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001673 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 unsigned int rmin, rmax;
1675 int changed;
1676
1677 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
1678 changed = 0;
1679 rmin = rmax = 0;
1680 list_for_each(p, &subs->fmt_list) {
1681 struct audioformat *fp;
1682 fp = list_entry(p, struct audioformat, list);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001683 if (!hw_check_valid_format(subs, params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 continue;
1685 if (changed++) {
1686 if (rmin > fp->channels)
1687 rmin = fp->channels;
1688 if (rmax < fp->channels)
1689 rmax = fp->channels;
1690 } else {
1691 rmin = fp->channels;
1692 rmax = fp->channels;
1693 }
1694 }
1695
Pavel Machek07f51a72008-04-14 13:15:56 +02001696 if (!changed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 hwc_debug(" --> get empty\n");
1698 it->empty = 1;
1699 return -EINVAL;
1700 }
1701
1702 changed = 0;
1703 if (it->min < rmin) {
1704 it->min = rmin;
1705 it->openmin = 0;
1706 changed = 1;
1707 }
1708 if (it->max > rmax) {
1709 it->max = rmax;
1710 it->openmax = 0;
1711 changed = 1;
1712 }
1713 if (snd_interval_checkempty(it)) {
1714 it->empty = 1;
1715 return -EINVAL;
1716 }
1717 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1718 return changed;
1719}
1720
Takashi Iwai86e07d32005-11-17 15:08:02 +01001721static int hw_rule_format(struct snd_pcm_hw_params *params,
1722 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001724 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001726 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 u64 fbits;
1728 u32 oldbits[2];
1729 int changed;
1730
1731 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1732 fbits = 0;
1733 list_for_each(p, &subs->fmt_list) {
1734 struct audioformat *fp;
1735 fp = list_entry(p, struct audioformat, list);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001736 if (!hw_check_valid_format(subs, params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 continue;
1738 fbits |= (1ULL << fp->format);
1739 }
1740
1741 oldbits[0] = fmt->bits[0];
1742 oldbits[1] = fmt->bits[1];
1743 fmt->bits[0] &= (u32)fbits;
1744 fmt->bits[1] &= (u32)(fbits >> 32);
Pavel Machek07f51a72008-04-14 13:15:56 +02001745 if (!fmt->bits[0] && !fmt->bits[1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 hwc_debug(" --> get empty\n");
1747 return -EINVAL;
1748 }
1749 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1750 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1751 return changed;
1752}
1753
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001754static int hw_rule_period_time(struct snd_pcm_hw_params *params,
1755 struct snd_pcm_hw_rule *rule)
1756{
1757 struct snd_usb_substream *subs = rule->private;
1758 struct audioformat *fp;
1759 struct snd_interval *it;
1760 unsigned char min_datainterval;
1761 unsigned int pmin;
1762 int changed;
1763
1764 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
1765 hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
1766 min_datainterval = 0xff;
1767 list_for_each_entry(fp, &subs->fmt_list, list) {
1768 if (!hw_check_valid_format(subs, params, fp))
1769 continue;
1770 min_datainterval = min(min_datainterval, fp->datainterval);
1771 }
1772 if (min_datainterval == 0xff) {
1773 hwc_debug(" --> get emtpy\n");
1774 it->empty = 1;
1775 return -EINVAL;
1776 }
1777 pmin = 125 * (1 << min_datainterval);
1778 changed = 0;
1779 if (it->min < pmin) {
1780 it->min = pmin;
1781 it->openmin = 0;
1782 changed = 1;
1783 }
1784 if (snd_interval_checkempty(it)) {
1785 it->empty = 1;
1786 return -EINVAL;
1787 }
1788 hwc_debug(" --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
1789 return changed;
1790}
1791
Luke Rossa79eee82006-08-29 10:46:32 +02001792/*
1793 * If the device supports unusual bit rates, does the request meet these?
1794 */
1795static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1796 struct snd_usb_substream *subs)
1797{
Takashi Iwai8fec5602007-02-01 11:50:56 +01001798 struct audioformat *fp;
1799 int count = 0, needs_knot = 0;
Luke Rossa79eee82006-08-29 10:46:32 +02001800 int err;
1801
Takashi Iwai8fec5602007-02-01 11:50:56 +01001802 list_for_each_entry(fp, &subs->fmt_list, list) {
1803 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
1804 return 0;
1805 count += fp->nr_rates;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02001806 if (fp->rates & SNDRV_PCM_RATE_KNOT)
Takashi Iwai8fec5602007-02-01 11:50:56 +01001807 needs_knot = 1;
Luke Rossa79eee82006-08-29 10:46:32 +02001808 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01001809 if (!needs_knot)
1810 return 0;
1811
1812 subs->rate_list.count = count;
1813 subs->rate_list.list = kmalloc(sizeof(int) * count, GFP_KERNEL);
1814 subs->rate_list.mask = 0;
1815 count = 0;
1816 list_for_each_entry(fp, &subs->fmt_list, list) {
1817 int i;
1818 for (i = 0; i < fp->nr_rates; i++)
1819 subs->rate_list.list[count++] = fp->rate_table[i];
1820 }
1821 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1822 &subs->rate_list);
1823 if (err < 0)
1824 return err;
Luke Rossa79eee82006-08-29 10:46:32 +02001825
1826 return 0;
1827}
1828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830/*
1831 * set up the runtime hardware information.
1832 */
1833
Takashi Iwai86e07d32005-11-17 15:08:02 +01001834static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
1836 struct list_head *p;
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001837 unsigned int pt, ptmin;
1838 int param_period_time_if_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 int err;
1840
1841 runtime->hw.formats = subs->formats;
1842
1843 runtime->hw.rate_min = 0x7fffffff;
1844 runtime->hw.rate_max = 0;
1845 runtime->hw.channels_min = 256;
1846 runtime->hw.channels_max = 0;
1847 runtime->hw.rates = 0;
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001848 ptmin = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 /* check min/max rates and channels */
1850 list_for_each(p, &subs->fmt_list) {
1851 struct audioformat *fp;
1852 fp = list_entry(p, struct audioformat, list);
1853 runtime->hw.rates |= fp->rates;
1854 if (runtime->hw.rate_min > fp->rate_min)
1855 runtime->hw.rate_min = fp->rate_min;
1856 if (runtime->hw.rate_max < fp->rate_max)
1857 runtime->hw.rate_max = fp->rate_max;
1858 if (runtime->hw.channels_min > fp->channels)
1859 runtime->hw.channels_min = fp->channels;
1860 if (runtime->hw.channels_max < fp->channels)
1861 runtime->hw.channels_max = fp->channels;
1862 if (fp->fmt_type == USB_FORMAT_TYPE_II && fp->frame_size > 0) {
1863 /* FIXME: there might be more than one audio formats... */
1864 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1865 fp->frame_size;
1866 }
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001867 pt = 125 * (1 << fp->datainterval);
1868 ptmin = min(ptmin, pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
1870
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001871 param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
1872 if (snd_usb_get_speed(subs->dev) != USB_SPEED_HIGH)
1873 /* full speed devices have fixed data packet interval */
1874 ptmin = 1000;
1875 if (ptmin == 1000)
1876 /* if period time doesn't go below 1 ms, no rules needed */
1877 param_period_time_if_needed = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001879 ptmin, UINT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001881 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1882 hw_rule_rate, subs,
1883 SNDRV_PCM_HW_PARAM_FORMAT,
1884 SNDRV_PCM_HW_PARAM_CHANNELS,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001885 param_period_time_if_needed,
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001886 -1)) < 0)
Takashi Iwai5a220c82008-03-17 09:59:32 +01001887 return err;
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001888 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1889 hw_rule_channels, subs,
1890 SNDRV_PCM_HW_PARAM_FORMAT,
1891 SNDRV_PCM_HW_PARAM_RATE,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001892 param_period_time_if_needed,
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001893 -1)) < 0)
1894 return err;
1895 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1896 hw_rule_format, subs,
1897 SNDRV_PCM_HW_PARAM_RATE,
1898 SNDRV_PCM_HW_PARAM_CHANNELS,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001899 param_period_time_if_needed,
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001900 -1)) < 0)
1901 return err;
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001902 if (param_period_time_if_needed >= 0) {
1903 err = snd_pcm_hw_rule_add(runtime, 0,
1904 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1905 hw_rule_period_time, subs,
1906 SNDRV_PCM_HW_PARAM_FORMAT,
1907 SNDRV_PCM_HW_PARAM_CHANNELS,
1908 SNDRV_PCM_HW_PARAM_RATE,
1909 -1);
1910 if (err < 0)
1911 return err;
1912 }
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001913 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
1914 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 return 0;
1916}
1917
Clemens Ladisch1700f302006-10-04 13:41:25 +02001918static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001920 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1921 struct snd_pcm_runtime *runtime = substream->runtime;
1922 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924 subs->interface = -1;
1925 subs->format = 0;
Clemens Ladisch1700f302006-10-04 13:41:25 +02001926 runtime->hw = snd_usb_hardware;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 runtime->private_data = subs;
1928 subs->pcm_substream = substream;
1929 return setup_hw_info(runtime, subs);
1930}
1931
Takashi Iwai86e07d32005-11-17 15:08:02 +01001932static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001934 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1935 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 if (subs->interface >= 0) {
1938 usb_set_interface(subs->dev, subs->interface, 0);
1939 subs->interface = -1;
1940 }
1941 subs->pcm_substream = NULL;
1942 return 0;
1943}
1944
Takashi Iwai86e07d32005-11-17 15:08:02 +01001945static int snd_usb_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001947 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
Takashi Iwai86e07d32005-11-17 15:08:02 +01001950static int snd_usb_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
1952 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1953}
1954
Takashi Iwai86e07d32005-11-17 15:08:02 +01001955static int snd_usb_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001957 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
Takashi Iwai86e07d32005-11-17 15:08:02 +01001960static int snd_usb_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961{
1962 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1963}
1964
Takashi Iwai86e07d32005-11-17 15:08:02 +01001965static struct snd_pcm_ops snd_usb_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 .open = snd_usb_playback_open,
1967 .close = snd_usb_playback_close,
1968 .ioctl = snd_pcm_lib_ioctl,
1969 .hw_params = snd_usb_hw_params,
1970 .hw_free = snd_usb_hw_free,
1971 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001972 .trigger = snd_usb_pcm_playback_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02001974 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975};
1976
Takashi Iwai86e07d32005-11-17 15:08:02 +01001977static struct snd_pcm_ops snd_usb_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 .open = snd_usb_capture_open,
1979 .close = snd_usb_capture_close,
1980 .ioctl = snd_pcm_lib_ioctl,
1981 .hw_params = snd_usb_hw_params,
1982 .hw_free = snd_usb_hw_free,
1983 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001984 .trigger = snd_usb_pcm_capture_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02001986 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987};
1988
1989
1990
1991/*
1992 * helper functions
1993 */
1994
1995/*
1996 * combine bytes and get an integer value
1997 */
1998unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size)
1999{
2000 switch (size) {
2001 case 1: return *bytes;
2002 case 2: return combine_word(bytes);
2003 case 3: return combine_triple(bytes);
2004 case 4: return combine_quad(bytes);
2005 default: return 0;
2006 }
2007}
2008
2009/*
2010 * parse descriptor buffer and return the pointer starting the given
2011 * descriptor type.
2012 */
2013void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype)
2014{
2015 u8 *p, *end, *next;
2016
2017 p = descstart;
2018 end = p + desclen;
2019 for (; p < end;) {
2020 if (p[0] < 2)
2021 return NULL;
2022 next = p + p[0];
2023 if (next > end)
2024 return NULL;
2025 if (p[1] == dtype && (!after || (void *)p > after)) {
2026 return p;
2027 }
2028 p = next;
2029 }
2030 return NULL;
2031}
2032
2033/*
2034 * find a class-specified interface descriptor with the given subtype.
2035 */
2036void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype)
2037{
2038 unsigned char *p = after;
2039
2040 while ((p = snd_usb_find_desc(buffer, buflen, p,
2041 USB_DT_CS_INTERFACE)) != NULL) {
2042 if (p[0] >= 3 && p[2] == dsubtype)
2043 return p;
2044 }
2045 return NULL;
2046}
2047
2048/*
2049 * Wrapper for usb_control_msg().
2050 * Allocates a temp buffer to prevent dmaing from/to the stack.
2051 */
2052int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
2053 __u8 requesttype, __u16 value, __u16 index, void *data,
2054 __u16 size, int timeout)
2055{
2056 int err;
2057 void *buf = NULL;
2058
2059 if (size > 0) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002060 buf = kmemdup(data, size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (!buf)
2062 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
2064 err = usb_control_msg(dev, pipe, request, requesttype,
2065 value, index, buf, size, timeout);
2066 if (size > 0) {
2067 memcpy(data, buf, size);
2068 kfree(buf);
2069 }
2070 return err;
2071}
2072
2073
2074/*
2075 * entry point for linux usb interface
2076 */
2077
2078static int usb_audio_probe(struct usb_interface *intf,
2079 const struct usb_device_id *id);
2080static void usb_audio_disconnect(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002081
2082#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01002083static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message);
2084static int usb_audio_resume(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002085#else
2086#define usb_audio_suspend NULL
2087#define usb_audio_resume NULL
2088#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090static struct usb_device_id usb_audio_ids [] = {
2091#include "usbquirks.h"
2092 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
2093 .bInterfaceClass = USB_CLASS_AUDIO,
2094 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL },
2095 { } /* Terminating entry */
2096};
2097
2098MODULE_DEVICE_TABLE (usb, usb_audio_ids);
2099
2100static struct usb_driver usb_audio_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 .name = "snd-usb-audio",
2102 .probe = usb_audio_probe,
2103 .disconnect = usb_audio_disconnect,
Oliver Neukumf85bf292007-12-14 14:42:41 +01002104 .suspend = usb_audio_suspend,
2105 .resume = usb_audio_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 .id_table = usb_audio_ids,
2107};
2108
2109
Takashi Iwai727f3172006-08-04 19:08:03 +02002110#if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS)
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112/*
2113 * proc interface for list the supported pcm formats
2114 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002115static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
2117 struct list_head *p;
2118 static char *sync_types[4] = {
2119 "NONE", "ASYNC", "ADAPTIVE", "SYNC"
2120 };
2121
2122 list_for_each(p, &subs->fmt_list) {
2123 struct audioformat *fp;
2124 fp = list_entry(p, struct audioformat, list);
2125 snd_iprintf(buffer, " Interface %d\n", fp->iface);
2126 snd_iprintf(buffer, " Altset %d\n", fp->altsetting);
Clemens Ladisch488fe162009-04-03 09:41:40 +02002127 snd_iprintf(buffer, " Format: %#x (%d bits)\n",
2128 fp->format, snd_pcm_format_width(fp->format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 snd_iprintf(buffer, " Channels: %d\n", fp->channels);
2130 snd_iprintf(buffer, " Endpoint: %d %s (%s)\n",
2131 fp->endpoint & USB_ENDPOINT_NUMBER_MASK,
2132 fp->endpoint & USB_DIR_IN ? "IN" : "OUT",
2133 sync_types[(fp->ep_attr & EP_ATTR_MASK) >> 2]);
2134 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) {
2135 snd_iprintf(buffer, " Rates: %d - %d (continuous)\n",
2136 fp->rate_min, fp->rate_max);
2137 } else {
2138 unsigned int i;
2139 snd_iprintf(buffer, " Rates: ");
2140 for (i = 0; i < fp->nr_rates; i++) {
2141 if (i > 0)
2142 snd_iprintf(buffer, ", ");
2143 snd_iprintf(buffer, "%d", fp->rate_table[i]);
2144 }
2145 snd_iprintf(buffer, "\n");
2146 }
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002147 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
2148 snd_iprintf(buffer, " Data packet interval: %d us\n",
2149 125 * (1 << fp->datainterval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize);
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002151 // snd_iprintf(buffer, " EP Attribute = %#x\n", fp->attributes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 }
2153}
2154
Takashi Iwai86e07d32005-11-17 15:08:02 +01002155static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 if (subs->running) {
2158 unsigned int i;
2159 snd_iprintf(buffer, " Status: Running\n");
2160 snd_iprintf(buffer, " Interface = %d\n", subs->interface);
2161 snd_iprintf(buffer, " Altset = %d\n", subs->format);
2162 snd_iprintf(buffer, " URBs = %d [ ", subs->nurbs);
2163 for (i = 0; i < subs->nurbs; i++)
2164 snd_iprintf(buffer, "%d ", subs->dataurb[i].packets);
2165 snd_iprintf(buffer, "]\n");
2166 snd_iprintf(buffer, " Packet Size = %d\n", subs->curpacksize);
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002167 snd_iprintf(buffer, " Momentary freq = %u Hz (%#x.%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 snd_usb_get_speed(subs->dev) == USB_SPEED_FULL
2169 ? get_full_speed_hz(subs->freqm)
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002170 : get_high_speed_hz(subs->freqm),
2171 subs->freqm >> 16, subs->freqm & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 } else {
2173 snd_iprintf(buffer, " Status: Stop\n");
2174 }
2175}
2176
Takashi Iwai86e07d32005-11-17 15:08:02 +01002177static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002179 struct snd_usb_stream *stream = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name);
2182
2183 if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) {
2184 snd_iprintf(buffer, "\nPlayback:\n");
2185 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2186 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2187 }
2188 if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) {
2189 snd_iprintf(buffer, "\nCapture:\n");
2190 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2191 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2192 }
2193}
2194
Takashi Iwai86e07d32005-11-17 15:08:02 +01002195static void proc_pcm_format_add(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002197 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 char name[32];
Takashi Iwai86e07d32005-11-17 15:08:02 +01002199 struct snd_card *card = stream->chip->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
2201 sprintf(name, "stream%d", stream->pcm_index);
Pavel Machek07f51a72008-04-14 13:15:56 +02002202 if (!snd_card_proc_new(card, name, &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002203 snd_info_set_text_ops(entry, stream, proc_pcm_format_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002206#else
2207
2208static inline void proc_pcm_format_add(struct snd_usb_stream *stream)
2209{
2210}
2211
2212#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
2214/*
2215 * initialize the substream instance.
2216 */
2217
Takashi Iwai86e07d32005-11-17 15:08:02 +01002218static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002220 struct snd_usb_substream *subs = &as->substream[stream];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222 INIT_LIST_HEAD(&subs->fmt_list);
2223 spin_lock_init(&subs->lock);
2224
2225 subs->stream = as;
2226 subs->direction = stream;
2227 subs->dev = as->chip->dev;
Clemens Ladischd5132022008-02-25 11:01:00 +01002228 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 subs->ops = audio_urb_ops[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002230 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 subs->ops = audio_urb_ops_high_speed[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002232 switch (as->chip->usb_id) {
2233 case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
2234 case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
Eran Tromer97c889a2008-09-26 01:07:03 -04002235 case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */
Clemens Ladischd5132022008-02-25 11:01:00 +01002236 subs->ops.retire_sync = retire_playback_sync_urb_hs_emu;
2237 break;
2238 }
2239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 snd_pcm_set_ops(as->pcm, stream,
2241 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2242 &snd_usb_playback_ops : &snd_usb_capture_ops);
2243
2244 list_add_tail(&fp->list, &subs->fmt_list);
2245 subs->formats |= 1ULL << fp->format;
2246 subs->endpoint = fp->endpoint;
2247 subs->num_formats++;
2248 subs->fmt_type = fp->fmt_type;
2249}
2250
2251
2252/*
2253 * free a substream
2254 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002255static void free_substream(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
2257 struct list_head *p, *n;
2258
Pavel Machek07f51a72008-04-14 13:15:56 +02002259 if (!subs->num_formats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 return; /* not initialized */
2261 list_for_each_safe(p, n, &subs->fmt_list) {
2262 struct audioformat *fp = list_entry(p, struct audioformat, list);
2263 kfree(fp->rate_table);
2264 kfree(fp);
2265 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01002266 kfree(subs->rate_list.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267}
2268
2269
2270/*
2271 * free a usb stream instance
2272 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002273static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
2275 free_substream(&stream->substream[0]);
2276 free_substream(&stream->substream[1]);
2277 list_del(&stream->list);
2278 kfree(stream);
2279}
2280
Takashi Iwai86e07d32005-11-17 15:08:02 +01002281static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002283 struct snd_usb_stream *stream = pcm->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 if (stream) {
2285 stream->pcm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 snd_usb_audio_stream_free(stream);
2287 }
2288}
2289
2290
2291/*
2292 * add this endpoint to the chip instance.
2293 * if a stream with the same endpoint already exists, append to it.
2294 * if not, create a new pcm stream.
2295 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002296static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
2298 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002299 struct snd_usb_stream *as;
2300 struct snd_usb_substream *subs;
2301 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 int err;
2303
2304 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002305 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (as->fmt_type != fp->fmt_type)
2307 continue;
2308 subs = &as->substream[stream];
Pavel Machek07f51a72008-04-14 13:15:56 +02002309 if (!subs->endpoint)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 continue;
2311 if (subs->endpoint == fp->endpoint) {
2312 list_add_tail(&fp->list, &subs->fmt_list);
2313 subs->num_formats++;
2314 subs->formats |= 1ULL << fp->format;
2315 return 0;
2316 }
2317 }
2318 /* look for an empty stream */
2319 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002320 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 if (as->fmt_type != fp->fmt_type)
2322 continue;
2323 subs = &as->substream[stream];
2324 if (subs->endpoint)
2325 continue;
2326 err = snd_pcm_new_stream(as->pcm, stream, 1);
2327 if (err < 0)
2328 return err;
2329 init_substream(as, stream, fp);
2330 return 0;
2331 }
2332
2333 /* create a new pcm */
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002334 as = kzalloc(sizeof(*as), GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02002335 if (!as)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 as->pcm_index = chip->pcm_devs;
2338 as->chip = chip;
2339 as->fmt_type = fp->fmt_type;
2340 err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
2341 stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
2342 stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
2343 &pcm);
2344 if (err < 0) {
2345 kfree(as);
2346 return err;
2347 }
2348 as->pcm = pcm;
2349 pcm->private_data = as;
2350 pcm->private_free = snd_usb_audio_pcm_free;
2351 pcm->info_flags = 0;
2352 if (chip->pcm_devs > 0)
2353 sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
2354 else
2355 strcpy(pcm->name, "USB Audio");
2356
2357 init_substream(as, stream, fp);
2358
2359 list_add(&as->list, &chip->pcm_list);
2360 chip->pcm_devs++;
2361
2362 proc_pcm_format_add(as);
2363
2364 return 0;
2365}
2366
2367
2368/*
2369 * check if the device uses big-endian samples
2370 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002371static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372{
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002373 switch (chip->usb_id) {
2374 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
2375 if (fp->endpoint & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 return 1;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002377 break;
2378 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02002379 if (device_setup[chip->index] == 0x00 ||
2380 fp->altsetting==1 || fp->altsetting==2 || fp->altsetting==3)
2381 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 }
2383 return 0;
2384}
2385
2386/*
2387 * parse the audio format type I descriptor
2388 * and returns the corresponding pcm format
2389 *
2390 * @dev: usb device
2391 * @fp: audioformat record
2392 * @format: the format tag (wFormatTag)
2393 * @fmt: the format type descriptor
2394 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002395static int parse_audio_format_i_type(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 int format, unsigned char *fmt)
2397{
2398 int pcm_format;
2399 int sample_width, sample_bytes;
2400
2401 /* FIXME: correct endianess and sign? */
2402 pcm_format = -1;
2403 sample_width = fmt[6];
2404 sample_bytes = fmt[5];
2405 switch (format) {
2406 case 0: /* some devices don't define this correctly... */
2407 snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002408 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 /* fall-through */
2410 case USB_AUDIO_FORMAT_PCM:
2411 if (sample_width > sample_bytes * 8) {
2412 snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002413 chip->dev->devnum, fp->iface, fp->altsetting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 sample_width, sample_bytes);
2415 }
2416 /* check the format byte size */
2417 switch (fmt[5]) {
2418 case 1:
2419 pcm_format = SNDRV_PCM_FORMAT_S8;
2420 break;
2421 case 2:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002422 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 pcm_format = SNDRV_PCM_FORMAT_S16_BE; /* grrr, big endian!! */
2424 else
2425 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2426 break;
2427 case 3:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002428 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */
2430 else
2431 pcm_format = SNDRV_PCM_FORMAT_S24_3LE;
2432 break;
2433 case 4:
2434 pcm_format = SNDRV_PCM_FORMAT_S32_LE;
2435 break;
2436 default:
2437 snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002438 chip->dev->devnum, fp->iface,
2439 fp->altsetting, sample_width, sample_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 break;
2441 }
2442 break;
2443 case USB_AUDIO_FORMAT_PCM8:
Pavel Machek2a56f512008-04-14 13:14:22 +02002444 pcm_format = SNDRV_PCM_FORMAT_U8;
2445
2446 /* Dallas DS4201 workaround: it advertises U8 format, but really
2447 supports S8. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002448 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 pcm_format = SNDRV_PCM_FORMAT_S8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 break;
2451 case USB_AUDIO_FORMAT_IEEE_FLOAT:
2452 pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE;
2453 break;
2454 case USB_AUDIO_FORMAT_ALAW:
2455 pcm_format = SNDRV_PCM_FORMAT_A_LAW;
2456 break;
2457 case USB_AUDIO_FORMAT_MU_LAW:
2458 pcm_format = SNDRV_PCM_FORMAT_MU_LAW;
2459 break;
2460 default:
2461 snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002462 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 break;
2464 }
2465 return pcm_format;
2466}
2467
2468
2469/*
2470 * parse the format descriptor and stores the possible sample rates
2471 * on the audioformat table.
2472 *
2473 * @dev: usb device
2474 * @fp: audioformat record
2475 * @fmt: the format descriptor
2476 * @offset: the start offset of descriptor pointing the rate type
2477 * (7 for type I and II, 8 for type II)
2478 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002479static int parse_audio_format_rates(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 unsigned char *fmt, int offset)
2481{
2482 int nr_rates = fmt[offset];
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
2485 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002486 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return -1;
2488 }
2489
2490 if (nr_rates) {
2491 /*
2492 * build the rate table and bitmap flags
2493 */
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002494 int r, idx;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002495
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
2497 if (fp->rate_table == NULL) {
2498 snd_printk(KERN_ERR "cannot malloc\n");
2499 return -1;
2500 }
2501
Takashi Iwai04125582009-02-16 22:48:12 +01002502 fp->nr_rates = 0;
2503 fp->rate_min = fp->rate_max = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
Clemens Ladisch987411b2006-11-20 14:14:39 +01002505 unsigned int rate = combine_triple(&fmt[idx]);
Takashi Iwai04125582009-02-16 22:48:12 +01002506 if (!rate)
2507 continue;
Clemens Ladisch987411b2006-11-20 14:14:39 +01002508 /* C-Media CM6501 mislabels its 96 kHz altsetting */
2509 if (rate == 48000 && nr_rates == 1 &&
Joris van Rantwijk3b03cc52009-02-16 22:58:23 +01002510 (chip->usb_id == USB_ID(0x0d8c, 0x0201) ||
2511 chip->usb_id == USB_ID(0x0d8c, 0x0102)) &&
Clemens Ladisch987411b2006-11-20 14:14:39 +01002512 fp->altsetting == 5 && fp->maxpacksize == 392)
2513 rate = 96000;
Takashi Iwai04125582009-02-16 22:48:12 +01002514 fp->rate_table[fp->nr_rates] = rate;
2515 if (!fp->rate_min || rate < fp->rate_min)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 fp->rate_min = rate;
Takashi Iwai04125582009-02-16 22:48:12 +01002517 if (!fp->rate_max || rate > fp->rate_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 fp->rate_max = rate;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002519 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
Takashi Iwai04125582009-02-16 22:48:12 +01002520 fp->nr_rates++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 }
Takashi Iwai04125582009-02-16 22:48:12 +01002522 if (!fp->nr_rates) {
Gregor Jasnybeb60112007-01-31 12:27:39 +01002523 hwc_debug("All rates were zero. Skipping format!\n");
2524 return -1;
2525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 } else {
2527 /* continuous rates */
2528 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
2529 fp->rate_min = combine_triple(&fmt[offset + 1]);
2530 fp->rate_max = combine_triple(&fmt[offset + 4]);
2531 }
2532 return 0;
2533}
2534
2535/*
2536 * parse the format type I and III descriptors
2537 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002538static int parse_audio_format_i(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 int format, unsigned char *fmt)
2540{
2541 int pcm_format;
2542
2543 if (fmt[3] == USB_FORMAT_TYPE_III) {
2544 /* FIXME: the format type is really IECxxx
2545 * but we give normal PCM format to get the existing
2546 * apps working...
2547 */
Thibault Le Meurcac19c32007-07-13 11:50:23 +02002548 switch (chip->usb_id) {
2549
2550 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2551 if (device_setup[chip->index] == 0x00 &&
2552 fp->altsetting == 6)
2553 pcm_format = SNDRV_PCM_FORMAT_S16_BE;
2554 else
2555 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2556 break;
2557 default:
2558 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 } else {
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002561 pcm_format = parse_audio_format_i_type(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 if (pcm_format < 0)
2563 return -1;
2564 }
2565 fp->format = pcm_format;
2566 fp->channels = fmt[4];
2567 if (fp->channels < 1) {
2568 snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002569 chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 return -1;
2571 }
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002572 return parse_audio_format_rates(chip, fp, fmt, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573}
2574
2575/*
2576 * prase the format type II descriptor
2577 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002578static int parse_audio_format_ii(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 int format, unsigned char *fmt)
2580{
2581 int brate, framesize;
2582 switch (format) {
2583 case USB_AUDIO_FORMAT_AC3:
2584 /* FIXME: there is no AC3 format defined yet */
2585 // fp->format = SNDRV_PCM_FORMAT_AC3;
2586 fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */
2587 break;
2588 case USB_AUDIO_FORMAT_MPEG:
2589 fp->format = SNDRV_PCM_FORMAT_MPEG;
2590 break;
2591 default:
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002592 snd_printd(KERN_INFO "%d:%u:%d : unknown format tag %#x is detected. processed as MPEG.\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002593 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 fp->format = SNDRV_PCM_FORMAT_MPEG;
2595 break;
2596 }
2597 fp->channels = 1;
2598 brate = combine_word(&fmt[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */
2599 framesize = combine_word(&fmt[6]); /* fmt[6,7]: wSamplesPerFrame */
2600 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
2601 fp->frame_size = framesize;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002602 return parse_audio_format_rates(chip, fp, fmt, 8); /* fmt[8..] sample rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603}
2604
Takashi Iwai86e07d32005-11-17 15:08:02 +01002605static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 int format, unsigned char *fmt, int stream)
2607{
2608 int err;
2609
2610 switch (fmt[3]) {
2611 case USB_FORMAT_TYPE_I:
2612 case USB_FORMAT_TYPE_III:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002613 err = parse_audio_format_i(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 break;
2615 case USB_FORMAT_TYPE_II:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002616 err = parse_audio_format_ii(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 break;
2618 default:
2619 snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002620 chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 return -1;
2622 }
2623 fp->fmt_type = fmt[3];
2624 if (err < 0)
2625 return err;
2626#if 1
Clemens Ladisch33159372006-01-13 08:11:22 +01002627 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 /* extigy apparently supports sample rates other than 48k
2629 * but not in ordinary way. so we enable only 48k atm.
2630 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002631 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
Clemens Ladisch33159372006-01-13 08:11:22 +01002632 chip->usb_id == USB_ID(0x041e, 0x3020) ||
2633 chip->usb_id == USB_ID(0x041e, 0x3061)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 if (fmt[3] == USB_FORMAT_TYPE_I &&
Clemens Ladisch8c1872d2005-04-28 09:31:53 +02002635 fp->rates != SNDRV_PCM_RATE_48000 &&
2636 fp->rates != SNDRV_PCM_RATE_96000)
Clemens Ladischb4d3f9d2005-06-27 08:18:27 +02002637 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 }
2639#endif
2640 return 0;
2641}
2642
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002643static unsigned char parse_datainterval(struct snd_usb_audio *chip,
2644 struct usb_host_interface *alts)
2645{
2646 if (snd_usb_get_speed(chip->dev) == USB_SPEED_HIGH &&
2647 get_endpoint(alts, 0)->bInterval >= 1 &&
2648 get_endpoint(alts, 0)->bInterval <= 4)
2649 return get_endpoint(alts, 0)->bInterval - 1;
2650 else
2651 return 0;
2652}
2653
Thibault LE MEURe3113342006-03-14 11:44:53 +01002654static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
2655 int iface, int altno);
Takashi Iwai86e07d32005-11-17 15:08:02 +01002656static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657{
2658 struct usb_device *dev;
2659 struct usb_interface *iface;
2660 struct usb_host_interface *alts;
2661 struct usb_interface_descriptor *altsd;
2662 int i, altno, err, stream;
2663 int format;
2664 struct audioformat *fp;
2665 unsigned char *fmt, *csep;
Pavel Machekb9d43bc2008-04-14 13:12:47 +02002666 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
2668 dev = chip->dev;
2669
2670 /* parse the interface's altsettings */
2671 iface = usb_ifnum_to_if(dev, iface_no);
Pavel Machekb9d43bc2008-04-14 13:12:47 +02002672
2673 num = iface->num_altsetting;
2674
2675 /*
2676 * Dallas DS4201 workaround: It presents 5 altsettings, but the last
2677 * one misses syncpipe, and does not produce any sound.
2678 */
2679 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
2680 num = 4;
2681
2682 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 alts = &iface->altsetting[i];
2684 altsd = get_iface_desc(alts);
2685 /* skip invalid one */
2686 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2687 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2688 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING &&
2689 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
2690 altsd->bNumEndpoints < 1 ||
2691 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
2692 continue;
2693 /* must be isochronous */
2694 if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
2695 USB_ENDPOINT_XFER_ISOC)
2696 continue;
2697 /* check direction */
2698 stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
2699 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2700 altno = altsd->bAlternateSetting;
Thibault LE MEURe3113342006-03-14 11:44:53 +01002701
2702 /* audiophile usb: skip altsets incompatible with device_setup
2703 */
2704 if (chip->usb_id == USB_ID(0x0763, 0x2003) &&
2705 audiophile_skip_setting_quirk(chip, iface_no, altno))
2706 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
2708 /* get audio formats */
2709 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, AS_GENERAL);
2710 if (!fmt) {
2711 snd_printk(KERN_ERR "%d:%u:%d : AS_GENERAL descriptor not found\n",
2712 dev->devnum, iface_no, altno);
2713 continue;
2714 }
2715
2716 if (fmt[0] < 7) {
2717 snd_printk(KERN_ERR "%d:%u:%d : invalid AS_GENERAL desc\n",
2718 dev->devnum, iface_no, altno);
2719 continue;
2720 }
2721
2722 format = (fmt[6] << 8) | fmt[5]; /* remember the format value */
2723
2724 /* get format type */
2725 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, FORMAT_TYPE);
2726 if (!fmt) {
2727 snd_printk(KERN_ERR "%d:%u:%d : no FORMAT_TYPE desc\n",
2728 dev->devnum, iface_no, altno);
2729 continue;
2730 }
2731 if (fmt[0] < 8) {
2732 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
2733 dev->devnum, iface_no, altno);
2734 continue;
2735 }
2736
2737 csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
2738 /* Creamware Noah has this descriptor after the 2nd endpoint */
2739 if (!csep && altsd->bNumEndpoints >= 2)
2740 csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
2741 if (!csep || csep[0] < 7 || csep[2] != EP_GENERAL) {
Takashi Iwaif8c75792006-05-18 14:47:03 +02002742 snd_printk(KERN_WARNING "%d:%u:%d : no or invalid"
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002743 " class specific endpoint descriptor\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 dev->devnum, iface_no, altno);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002745 csep = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 }
2747
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002748 fp = kzalloc(sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 if (! fp) {
2750 snd_printk(KERN_ERR "cannot malloc\n");
2751 return -ENOMEM;
2752 }
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 fp->iface = iface_no;
2755 fp->altsetting = altno;
2756 fp->altset_idx = i;
2757 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2758 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002759 fp->datainterval = parse_datainterval(chip, alts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Clemens Ladisch573567e2005-06-27 08:17:30 +02002761 if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
2762 fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
2763 * (fp->maxpacksize & 0x7ff);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002764 fp->attributes = csep ? csep[3] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766 /* some quirks for attributes here */
2767
Clemens Ladischc3f93292005-05-04 14:56:04 +02002768 switch (chip->usb_id) {
2769 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 /* Optoplay sets the sample rate attribute although
2771 * it seems not supporting it in fact.
2772 */
2773 fp->attributes &= ~EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002774 break;
2775 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
2776 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 /* doesn't set the sample rate attribute, but supports it */
2778 fp->attributes |= EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002779 break;
2780 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
2781 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
2782 an older model 77d:223) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 /*
2784 * plantronics headset and Griffin iMic have set adaptive-in
2785 * although it's really not...
2786 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 fp->ep_attr &= ~EP_ATTR_MASK;
2788 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2789 fp->ep_attr |= EP_ATTR_ADAPTIVE;
2790 else
2791 fp->ep_attr |= EP_ATTR_SYNC;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002792 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 }
2794
2795 /* ok, let's parse further... */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002796 if (parse_audio_format(chip, fp, format, fmt, stream) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 kfree(fp->rate_table);
2798 kfree(fp);
2799 continue;
2800 }
2801
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002802 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 -07002803 err = add_audio_endpoint(chip, stream, fp);
2804 if (err < 0) {
2805 kfree(fp->rate_table);
2806 kfree(fp);
2807 return err;
2808 }
2809 /* try to set the interface... */
2810 usb_set_interface(chip->dev, iface_no, altno);
2811 init_usb_pitch(chip->dev, iface_no, alts, fp);
2812 init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max);
2813 }
2814 return 0;
2815}
2816
2817
2818/*
2819 * disconnect streams
2820 * called from snd_usb_audio_disconnect()
2821 */
Clemens Ladischee733392005-04-25 10:34:13 +02002822static void snd_usb_stream_disconnect(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823{
2824 int idx;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002825 struct snd_usb_stream *as;
2826 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
Takashi Iwai86e07d32005-11-17 15:08:02 +01002828 as = list_entry(head, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 for (idx = 0; idx < 2; idx++) {
2830 subs = &as->substream[idx];
2831 if (!subs->num_formats)
2832 return;
2833 release_substream_urbs(subs, 1);
2834 subs->interface = -1;
2835 }
2836}
2837
2838/*
2839 * parse audio control descriptor and create pcm/midi streams
2840 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002841static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
2843 struct usb_device *dev = chip->dev;
2844 struct usb_host_interface *host_iface;
2845 struct usb_interface *iface;
2846 unsigned char *p1;
2847 int i, j;
2848
2849 /* find audiocontrol interface */
2850 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
2851 if (!(p1 = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen, NULL, HEADER))) {
2852 snd_printk(KERN_ERR "cannot find HEADER\n");
2853 return -EINVAL;
2854 }
2855 if (! p1[7] || p1[0] < 8 + p1[7]) {
2856 snd_printk(KERN_ERR "invalid HEADER\n");
2857 return -EINVAL;
2858 }
2859
2860 /*
2861 * parse all USB audio streaming interfaces
2862 */
2863 for (i = 0; i < p1[7]; i++) {
2864 struct usb_host_interface *alts;
2865 struct usb_interface_descriptor *altsd;
2866 j = p1[8 + i];
2867 iface = usb_ifnum_to_if(dev, j);
2868 if (!iface) {
2869 snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
2870 dev->devnum, ctrlif, j);
2871 continue;
2872 }
2873 if (usb_interface_claimed(iface)) {
2874 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n", dev->devnum, ctrlif, j);
2875 continue;
2876 }
2877 alts = &iface->altsetting[0];
2878 altsd = get_iface_desc(alts);
2879 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
2880 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
2881 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDI_STREAMING) {
2882 if (snd_usb_create_midi_interface(chip, iface, NULL) < 0) {
2883 snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n", dev->devnum, ctrlif, j);
2884 continue;
2885 }
2886 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2887 continue;
2888 }
2889 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2890 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2891 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING) {
2892 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n", dev->devnum, ctrlif, j, altsd->bInterfaceClass);
2893 /* skip non-supported classes */
2894 continue;
2895 }
Clemens Ladisch076639f2007-08-21 08:56:54 +02002896 if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
2897 snd_printk(KERN_ERR "low speed audio streaming not supported\n");
2898 continue;
2899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 if (! parse_audio_endpoints(chip, j)) {
2901 usb_set_interface(dev, j, 0); /* reset the current interface */
2902 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2903 }
2904 }
2905
2906 return 0;
2907}
2908
2909/*
2910 * create a stream for an endpoint/altsetting without proper descriptors
2911 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002912static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002914 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915{
2916 struct audioformat *fp;
2917 struct usb_host_interface *alts;
2918 int stream, err;
Al Virob4482a42007-10-14 19:35:40 +01002919 unsigned *rate_table = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002921 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 if (! fp) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002923 snd_printk(KERN_ERR "cannot memdup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 return -ENOMEM;
2925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 if (fp->nr_rates > 0) {
2927 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
2928 if (!rate_table) {
2929 kfree(fp);
2930 return -ENOMEM;
2931 }
2932 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
2933 fp->rate_table = rate_table;
2934 }
2935
2936 stream = (fp->endpoint & USB_DIR_IN)
2937 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2938 err = add_audio_endpoint(chip, stream, fp);
2939 if (err < 0) {
2940 kfree(fp);
2941 kfree(rate_table);
2942 return err;
2943 }
2944 if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
2945 fp->altset_idx >= iface->num_altsetting) {
2946 kfree(fp);
2947 kfree(rate_table);
2948 return -EINVAL;
2949 }
2950 alts = &iface->altsetting[fp->altset_idx];
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002951 fp->datainterval = parse_datainterval(chip, alts);
Clemens Ladisch894dcd72009-02-06 08:13:07 +01002952 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 usb_set_interface(chip->dev, fp->iface, 0);
2954 init_usb_pitch(chip->dev, fp->iface, alts, fp);
2955 init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max);
2956 return 0;
2957}
2958
2959/*
2960 * create a stream for an interface with proper descriptors
2961 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002962static int create_standard_audio_quirk(struct snd_usb_audio *chip,
Clemens Ladischd1bda042005-09-14 08:36:03 +02002963 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002964 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965{
2966 struct usb_host_interface *alts;
2967 struct usb_interface_descriptor *altsd;
2968 int err;
2969
2970 alts = &iface->altsetting[0];
2971 altsd = get_iface_desc(alts);
Clemens Ladischd1bda042005-09-14 08:36:03 +02002972 err = parse_audio_endpoints(chip, altsd->bInterfaceNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 if (err < 0) {
2974 snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
2975 altsd->bInterfaceNumber, err);
2976 return err;
2977 }
Clemens Ladischd1bda042005-09-14 08:36:03 +02002978 /* reset the current interface */
2979 usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 return 0;
2981}
2982
2983/*
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02002984 * Create a stream for an Edirol UA-700/UA-25/UA-4FX interface.
2985 * The only way to detect the sample rate is by looking at wMaxPacketSize.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 */
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02002987static int create_uaxx_quirk(struct snd_usb_audio *chip,
2988 struct usb_interface *iface,
2989 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990{
2991 static const struct audioformat ua_format = {
2992 .format = SNDRV_PCM_FORMAT_S24_3LE,
2993 .channels = 2,
2994 .fmt_type = USB_FORMAT_TYPE_I,
2995 .altsetting = 1,
2996 .altset_idx = 1,
2997 .rates = SNDRV_PCM_RATE_CONTINUOUS,
2998 };
2999 struct usb_host_interface *alts;
3000 struct usb_interface_descriptor *altsd;
3001 struct audioformat *fp;
3002 int stream, err;
3003
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003004 /* both PCM and MIDI interfaces have 2 or more altsettings */
3005 if (iface->num_altsetting < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 return -ENXIO;
3007 alts = &iface->altsetting[1];
3008 altsd = get_iface_desc(alts);
3009
Pedro Lopez-Cabanillas59b3db62008-10-07 20:54:18 +02003010 if (altsd->bNumEndpoints == 2) {
3011 static const struct snd_usb_midi_endpoint_info ua700_ep = {
3012 .out_cables = 0x0003,
3013 .in_cables = 0x0003
3014 };
3015 static const struct snd_usb_audio_quirk ua700_quirk = {
3016 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3017 .data = &ua700_ep
3018 };
3019 static const struct snd_usb_midi_endpoint_info uaxx_ep = {
3020 .out_cables = 0x0001,
3021 .in_cables = 0x0001
3022 };
3023 static const struct snd_usb_audio_quirk uaxx_quirk = {
3024 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3025 .data = &uaxx_ep
3026 };
3027 if (chip->usb_id == USB_ID(0x0582, 0x002b))
3028 return snd_usb_create_midi_interface(chip, iface,
3029 &ua700_quirk);
3030 else
3031 return snd_usb_create_midi_interface(chip, iface,
3032 &uaxx_quirk);
3033 }
3034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 if (altsd->bNumEndpoints != 1)
3036 return -ENXIO;
3037
3038 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
3039 if (!fp)
3040 return -ENOMEM;
3041 memcpy(fp, &ua_format, sizeof(*fp));
3042
3043 fp->iface = altsd->bInterfaceNumber;
3044 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3045 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02003046 fp->datainterval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3048
3049 switch (fp->maxpacksize) {
3050 case 0x120:
3051 fp->rate_max = fp->rate_min = 44100;
3052 break;
3053 case 0x138:
3054 case 0x140:
3055 fp->rate_max = fp->rate_min = 48000;
3056 break;
3057 case 0x258:
3058 case 0x260:
3059 fp->rate_max = fp->rate_min = 96000;
3060 break;
3061 default:
3062 snd_printk(KERN_ERR "unknown sample rate\n");
3063 kfree(fp);
3064 return -ENXIO;
3065 }
3066
3067 stream = (fp->endpoint & USB_DIR_IN)
3068 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3069 err = add_audio_endpoint(chip, stream, fp);
3070 if (err < 0) {
3071 kfree(fp);
3072 return err;
3073 }
3074 usb_set_interface(chip->dev, fp->iface, 0);
3075 return 0;
3076}
3077
3078/*
3079 * Create a stream for an Edirol UA-1000 interface.
3080 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003081static int create_ua1000_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003082 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003083 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
3085 static const struct audioformat ua1000_format = {
3086 .format = SNDRV_PCM_FORMAT_S32_LE,
3087 .fmt_type = USB_FORMAT_TYPE_I,
3088 .altsetting = 1,
3089 .altset_idx = 1,
3090 .attributes = 0,
3091 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3092 };
3093 struct usb_host_interface *alts;
3094 struct usb_interface_descriptor *altsd;
3095 struct audioformat *fp;
3096 int stream, err;
3097
3098 if (iface->num_altsetting != 2)
3099 return -ENXIO;
3100 alts = &iface->altsetting[1];
3101 altsd = get_iface_desc(alts);
Ben Williamsonc4a87ef2006-06-19 17:20:09 +02003102 if (alts->extralen != 11 || alts->extra[1] != USB_DT_CS_INTERFACE ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 altsd->bNumEndpoints != 1)
3104 return -ENXIO;
3105
Alexey Dobriyan52978be2006-09-30 23:27:21 -07003106 fp = kmemdup(&ua1000_format, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 if (!fp)
3108 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
3110 fp->channels = alts->extra[4];
3111 fp->iface = altsd->bInterfaceNumber;
3112 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3113 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02003114 fp->datainterval = parse_datainterval(chip, alts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3116 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[8]);
3117
3118 stream = (fp->endpoint & USB_DIR_IN)
3119 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3120 err = add_audio_endpoint(chip, stream, fp);
3121 if (err < 0) {
3122 kfree(fp);
3123 return err;
3124 }
3125 /* FIXME: playback must be synchronized to capture */
3126 usb_set_interface(chip->dev, fp->iface, 0);
3127 return 0;
3128}
3129
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003130/*
3131 * Create a stream for an Edirol UA-101 interface.
3132 * Copy, paste and modify from Edirol UA-1000
3133 */
3134static int create_ua101_quirk(struct snd_usb_audio *chip,
3135 struct usb_interface *iface,
3136 const struct snd_usb_audio_quirk *quirk)
3137{
3138 static const struct audioformat ua101_format = {
3139 .format = SNDRV_PCM_FORMAT_S32_LE,
3140 .fmt_type = USB_FORMAT_TYPE_I,
3141 .altsetting = 1,
3142 .altset_idx = 1,
3143 .attributes = 0,
3144 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3145 };
3146 struct usb_host_interface *alts;
3147 struct usb_interface_descriptor *altsd;
3148 struct audioformat *fp;
3149 int stream, err;
3150
3151 if (iface->num_altsetting != 2)
3152 return -ENXIO;
3153 alts = &iface->altsetting[1];
3154 altsd = get_iface_desc(alts);
3155 if (alts->extralen != 18 || alts->extra[1] != USB_DT_CS_INTERFACE ||
3156 altsd->bNumEndpoints != 1)
3157 return -ENXIO;
3158
3159 fp = kmemdup(&ua101_format, sizeof(*fp), GFP_KERNEL);
3160 if (!fp)
3161 return -ENOMEM;
3162
3163 fp->channels = alts->extra[11];
3164 fp->iface = altsd->bInterfaceNumber;
3165 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3166 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02003167 fp->datainterval = parse_datainterval(chip, alts);
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003168 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3169 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[15]);
3170
3171 stream = (fp->endpoint & USB_DIR_IN)
3172 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3173 err = add_audio_endpoint(chip, stream, fp);
3174 if (err < 0) {
3175 kfree(fp);
3176 return err;
3177 }
3178 /* FIXME: playback must be synchronized to capture */
3179 usb_set_interface(chip->dev, fp->iface, 0);
3180 return 0;
3181}
3182
Takashi Iwai86e07d32005-11-17 15:08:02 +01003183static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003185 const struct snd_usb_audio_quirk *quirk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
3187/*
3188 * handle the quirks for the contained interfaces
3189 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003190static int create_composite_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003192 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193{
3194 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
3195 int err;
3196
3197 for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
3198 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
3199 if (!iface)
3200 continue;
3201 if (quirk->ifnum != probed_ifnum &&
3202 usb_interface_claimed(iface))
3203 continue;
3204 err = snd_usb_create_quirk(chip, iface, quirk);
3205 if (err < 0)
3206 return err;
3207 if (quirk->ifnum != probed_ifnum)
3208 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
3209 }
3210 return 0;
3211}
3212
Takashi Iwai86e07d32005-11-17 15:08:02 +01003213static int ignore_interface_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003214 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003215 const struct snd_usb_audio_quirk *quirk)
Clemens Ladisch854af952005-07-25 16:19:10 +02003216{
3217 return 0;
3218}
3219
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
3221/*
3222 * boot quirks
3223 */
3224
3225#define EXTIGY_FIRMWARE_SIZE_OLD 794
3226#define EXTIGY_FIRMWARE_SIZE_NEW 483
3227
3228static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
3229{
3230 struct usb_host_config *config = dev->actconfig;
3231 int err;
3232
3233 if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
3234 le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
3235 snd_printdd("sending Extigy boot sequence...\n");
3236 /* Send message to force it to reconnect with full interface. */
3237 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
3238 0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000);
3239 if (err < 0) snd_printdd("error sending boot message: %d\n", err);
3240 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
3241 &dev->descriptor, sizeof(dev->descriptor));
3242 config = dev->actconfig;
3243 if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
3244 err = usb_reset_configuration(dev);
3245 if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
3246 snd_printdd("extigy_boot: new boot length = %d\n",
3247 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
3248 return -ENODEV; /* quit this anyway */
3249 }
3250 return 0;
3251}
3252
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003253static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
3254{
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003255 u8 buf = 1;
3256
3257 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
3258 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3259 0, 0, &buf, 1, 1000);
3260 if (buf == 0) {
3261 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
3262 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3263 1, 2000, NULL, 0, 1000);
3264 return -ENODEV;
3265 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003266 return 0;
3267}
3268
Thibault LE MEURe3113342006-03-14 11:44:53 +01003269/*
Sam Revitche217e302006-06-23 15:10:18 +02003270 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
3271 * documented in the device's data sheet.
3272 */
3273static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value)
3274{
3275 u8 buf[4];
3276 buf[0] = 0x20;
3277 buf[1] = value & 0xff;
3278 buf[2] = (value >> 8) & 0xff;
3279 buf[3] = reg;
3280 return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION,
3281 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT,
3282 0, 0, &buf, 4, 1000);
3283}
3284
3285static int snd_usb_cm106_boot_quirk(struct usb_device *dev)
3286{
3287 /*
3288 * Enable line-out driver mode, set headphone source to front
3289 * channels, enable stereo mic.
3290 */
3291 return snd_usb_cm106_write_int_reg(dev, 2, 0x8004);
3292}
3293
Dan Allongo92a43792009-06-08 11:21:52 -04003294/*
3295 * C-Media CM6206 is based on CM106 with two additional
3296 * registers that are not documented in the data sheet.
3297 * Values here are chosen based on sniffing USB traffic
3298 * under Windows.
3299 */
3300static int snd_usb_cm6206_boot_quirk(struct usb_device *dev)
3301{
3302 int err, reg;
3303 int val[] = {0x200c, 0x3000, 0xf800, 0x143f, 0x0000, 0x3000};
3304
3305 for (reg = 0; reg < ARRAY_SIZE(val); reg++) {
3306 err = snd_usb_cm106_write_int_reg(dev, reg, val[reg]);
3307 if (err < 0)
3308 return err;
3309 }
3310
3311 return err;
3312}
Sam Revitche217e302006-06-23 15:10:18 +02003313
3314/*
Thibault LE MEURe3113342006-03-14 11:44:53 +01003315 * Setup quirks
3316 */
3317#define AUDIOPHILE_SET 0x01 /* if set, parse device_setup */
3318#define AUDIOPHILE_SET_DTS 0x02 /* if set, enable DTS Digital Output */
3319#define AUDIOPHILE_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
3320#define AUDIOPHILE_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */
3321#define AUDIOPHILE_SET_DI 0x10 /* if set, enable Digital Input */
3322#define AUDIOPHILE_SET_MASK 0x1F /* bit mask for setup value */
3323#define AUDIOPHILE_SET_24B_48K_DI 0x19 /* value for 24bits+48KHz+Digital Input */
3324#define AUDIOPHILE_SET_24B_48K_NOTDI 0x09 /* value for 24bits+48KHz+No Digital Input */
3325#define AUDIOPHILE_SET_16B_48K_DI 0x11 /* value for 16bits+48KHz+Digital Input */
3326#define AUDIOPHILE_SET_16B_48K_NOTDI 0x01 /* value for 16bits+48KHz+No Digital Input */
3327
3328static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
3329 int iface, int altno)
3330{
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02003331 /* Reset ALL ifaces to 0 altsetting.
3332 * Call it for every possible altsetting of every interface.
3333 */
3334 usb_set_interface(chip->dev, iface, 0);
3335
Thibault LE MEURe3113342006-03-14 11:44:53 +01003336 if (device_setup[chip->index] & AUDIOPHILE_SET) {
3337 if ((device_setup[chip->index] & AUDIOPHILE_SET_DTS)
3338 && altno != 6)
3339 return 1; /* skip this altsetting */
3340 if ((device_setup[chip->index] & AUDIOPHILE_SET_96K)
3341 && altno != 1)
3342 return 1; /* skip this altsetting */
3343 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3344 AUDIOPHILE_SET_24B_48K_DI && altno != 2)
3345 return 1; /* skip this altsetting */
3346 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3347 AUDIOPHILE_SET_24B_48K_NOTDI && altno != 3)
3348 return 1; /* skip this altsetting */
3349 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3350 AUDIOPHILE_SET_16B_48K_DI && altno != 4)
3351 return 1; /* skip this altsetting */
3352 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3353 AUDIOPHILE_SET_16B_48K_NOTDI && altno != 5)
3354 return 1; /* skip this altsetting */
3355 }
3356 return 0; /* keep this altsetting */
3357}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358
3359/*
3360 * audio-interface quirks
3361 *
3362 * returns zero if no standard audio/MIDI parsing is needed.
3363 * returns a postive value if standard audio/midi interfaces are parsed
3364 * after this.
3365 * returns a negative value at error.
3366 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003367static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003369 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003371 typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *,
3372 const struct snd_usb_audio_quirk *);
Clemens Ladisch854af952005-07-25 16:19:10 +02003373 static const quirk_func_t quirk_funcs[] = {
3374 [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
3375 [QUIRK_COMPOSITE] = create_composite_quirk,
3376 [QUIRK_MIDI_STANDARD_INTERFACE] = snd_usb_create_midi_interface,
3377 [QUIRK_MIDI_FIXED_ENDPOINT] = snd_usb_create_midi_interface,
3378 [QUIRK_MIDI_YAMAHA] = snd_usb_create_midi_interface,
3379 [QUIRK_MIDI_MIDIMAN] = snd_usb_create_midi_interface,
3380 [QUIRK_MIDI_NOVATION] = snd_usb_create_midi_interface,
Clemens Ladisch55de5ef2009-05-27 10:49:30 +02003381 [QUIRK_MIDI_FASTLANE] = snd_usb_create_midi_interface,
Clemens Ladisch854af952005-07-25 16:19:10 +02003382 [QUIRK_MIDI_EMAGIC] = snd_usb_create_midi_interface,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01003383 [QUIRK_MIDI_CME] = snd_usb_create_midi_interface,
Clemens Ladischd1bda042005-09-14 08:36:03 +02003384 [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003385 [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003386 [QUIRK_AUDIO_EDIROL_UA1000] = create_ua1000_quirk,
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003387 [QUIRK_AUDIO_EDIROL_UA101] = create_ua101_quirk,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003388 [QUIRK_AUDIO_EDIROL_UAXX] = create_uaxx_quirk
Clemens Ladisch854af952005-07-25 16:19:10 +02003389 };
3390
3391 if (quirk->type < QUIRK_TYPE_COUNT) {
3392 return quirk_funcs[quirk->type](chip, iface, quirk);
3393 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
3395 return -ENXIO;
3396 }
3397}
3398
3399
3400/*
3401 * common proc files to show the usb device info
3402 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003403static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003405 struct snd_usb_audio *chip = entry->private_data;
Pavel Machek07f51a72008-04-14 13:15:56 +02003406 if (!chip->shutdown)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum);
3408}
3409
Takashi Iwai86e07d32005-11-17 15:08:02 +01003410static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003412 struct snd_usb_audio *chip = entry->private_data;
Pavel Machek07f51a72008-04-14 13:15:56 +02003413 if (!chip->shutdown)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 snd_iprintf(buffer, "%04x:%04x\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003415 USB_ID_VENDOR(chip->usb_id),
3416 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417}
3418
Takashi Iwai86e07d32005-11-17 15:08:02 +01003419static void snd_usb_audio_create_proc(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003421 struct snd_info_entry *entry;
Pavel Machek07f51a72008-04-14 13:15:56 +02003422 if (!snd_card_proc_new(chip->card, "usbbus", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003423 snd_info_set_text_ops(entry, chip, proc_audio_usbbus_read);
Pavel Machek07f51a72008-04-14 13:15:56 +02003424 if (!snd_card_proc_new(chip->card, "usbid", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003425 snd_info_set_text_ops(entry, chip, proc_audio_usbid_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426}
3427
3428/*
3429 * free the chip instance
3430 *
3431 * here we have to do not much, since pcm and controls are already freed
3432 *
3433 */
3434
Takashi Iwai86e07d32005-11-17 15:08:02 +01003435static int snd_usb_audio_free(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436{
3437 kfree(chip);
3438 return 0;
3439}
3440
Takashi Iwai86e07d32005-11-17 15:08:02 +01003441static int snd_usb_audio_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003443 struct snd_usb_audio *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 return snd_usb_audio_free(chip);
3445}
3446
3447
3448/*
3449 * create a chip instance and set its names.
3450 */
3451static int snd_usb_audio_create(struct usb_device *dev, int idx,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003452 const struct snd_usb_audio_quirk *quirk,
3453 struct snd_usb_audio **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003455 struct snd_card *card;
3456 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 int err, len;
3458 char component[14];
Takashi Iwai86e07d32005-11-17 15:08:02 +01003459 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 .dev_free = snd_usb_audio_dev_free,
3461 };
3462
3463 *rchip = NULL;
3464
Clemens Ladisch076639f2007-08-21 08:56:54 +02003465 if (snd_usb_get_speed(dev) != USB_SPEED_LOW &&
3466 snd_usb_get_speed(dev) != USB_SPEED_FULL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 snd_usb_get_speed(dev) != USB_SPEED_HIGH) {
3468 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
3469 return -ENXIO;
3470 }
3471
Takashi Iwaibd7dd772008-12-28 16:45:02 +01003472 err = snd_card_create(index[idx], id[idx], THIS_MODULE, 0, &card);
3473 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01003475 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 }
3477
Takashi Iwai561b2202005-09-09 14:22:34 +02003478 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 if (! chip) {
3480 snd_card_free(card);
3481 return -ENOMEM;
3482 }
3483
3484 chip->index = idx;
3485 chip->dev = dev;
3486 chip->card = card;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003487 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3488 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 INIT_LIST_HEAD(&chip->pcm_list);
3490 INIT_LIST_HEAD(&chip->midi_list);
Clemens Ladisch84957a82005-04-29 16:23:13 +02003491 INIT_LIST_HEAD(&chip->mixer_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492
3493 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
3494 snd_usb_audio_free(chip);
3495 snd_card_free(card);
3496 return err;
3497 }
3498
3499 strcpy(card->driver, "USB-Audio");
3500 sprintf(component, "USB%04x:%04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003501 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 snd_component_add(card, component);
3503
3504 /* retrieve the device string as shortname */
3505 if (quirk && quirk->product_name) {
3506 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
3507 } else {
3508 if (!dev->descriptor.iProduct ||
3509 usb_string(dev, dev->descriptor.iProduct,
3510 card->shortname, sizeof(card->shortname)) <= 0) {
3511 /* no name available from anywhere, so use ID */
3512 sprintf(card->shortname, "USB Device %#04x:%#04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003513 USB_ID_VENDOR(chip->usb_id),
3514 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 }
3516 }
3517
3518 /* retrieve the vendor and device strings as longname */
3519 if (quirk && quirk->vendor_name) {
3520 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
3521 } else {
3522 if (dev->descriptor.iManufacturer)
3523 len = usb_string(dev, dev->descriptor.iManufacturer,
3524 card->longname, sizeof(card->longname));
3525 else
3526 len = 0;
3527 /* we don't really care if there isn't any vendor string */
3528 }
3529 if (len > 0)
3530 strlcat(card->longname, " ", sizeof(card->longname));
3531
3532 strlcat(card->longname, card->shortname, sizeof(card->longname));
3533
3534 len = strlcat(card->longname, " at ", sizeof(card->longname));
3535
3536 if (len < sizeof(card->longname))
3537 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
3538
3539 strlcat(card->longname,
Clemens Ladisch076639f2007-08-21 08:56:54 +02003540 snd_usb_get_speed(dev) == USB_SPEED_LOW ? ", low speed" :
3541 snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" :
3542 ", high speed",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 sizeof(card->longname));
3544
3545 snd_usb_audio_create_proc(chip);
3546
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 *rchip = chip;
3548 return 0;
3549}
3550
3551
3552/*
3553 * probe the active usb device
3554 *
3555 * note that this can be called multiple times per a device, when it
3556 * includes multiple audio control interfaces.
3557 *
3558 * thus we check the usb device pointer and creates the card instance
3559 * only at the first time. the successive calls of this function will
3560 * append the pcm interface to the corresponding card.
3561 */
3562static void *snd_usb_audio_probe(struct usb_device *dev,
3563 struct usb_interface *intf,
3564 const struct usb_device_id *usb_id)
3565{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003566 const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 int i, err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01003568 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 struct usb_host_interface *alts;
3570 int ifnum;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003571 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
3573 alts = &intf->altsetting[0];
3574 ifnum = get_iface_desc(alts)->bInterfaceNumber;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003575 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3576 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
3578 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
3579 goto __err_val;
3580
3581 /* SB Extigy needs special boot-up sequence */
3582 /* if more models come, this will go to the quirk list. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003583 if (id == USB_ID(0x041e, 0x3000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 if (snd_usb_extigy_boot_quirk(dev, intf) < 0)
3585 goto __err_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003587 /* SB Audigy 2 NX needs its own boot-up magic, too */
3588 if (id == USB_ID(0x041e, 0x3020)) {
3589 if (snd_usb_audigy2nx_boot_quirk(dev) < 0)
3590 goto __err_val;
3591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Sam Revitche217e302006-06-23 15:10:18 +02003593 /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
3594 if (id == USB_ID(0x10f5, 0x0200)) {
3595 if (snd_usb_cm106_boot_quirk(dev) < 0)
3596 goto __err_val;
3597 }
3598
Dan Allongo92a43792009-06-08 11:21:52 -04003599 /* C-Media CM6206 / CM106-Like Sound Device */
3600 if (id == USB_ID(0x0d8c, 0x0102)) {
3601 if (snd_usb_cm6206_boot_quirk(dev) < 0)
3602 goto __err_val;
3603 }
3604
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 /*
3606 * found a config. now register to ALSA
3607 */
3608
3609 /* check whether it's already registered */
3610 chip = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003611 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 for (i = 0; i < SNDRV_CARDS; i++) {
3613 if (usb_chip[i] && usb_chip[i]->dev == dev) {
3614 if (usb_chip[i]->shutdown) {
3615 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
3616 goto __error;
3617 }
3618 chip = usb_chip[i];
3619 break;
3620 }
3621 }
3622 if (! chip) {
3623 /* it's a fresh one.
3624 * now look for an empty slot and create a new card instance
3625 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 for (i = 0; i < SNDRV_CARDS; i++)
3627 if (enable[i] && ! usb_chip[i] &&
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003628 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
3629 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
3631 goto __error;
3632 }
Clemens Ladisch1dcd3ec2005-05-10 14:51:40 +02003633 snd_card_set_dev(chip->card, &intf->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 break;
3635 }
Pavel Machek07f51a72008-04-14 13:15:56 +02003636 if (!chip) {
3637 printk(KERN_ERR "no available usb audio device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 goto __error;
3639 }
3640 }
3641
3642 err = 1; /* continue */
3643 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
3644 /* need some special handlings */
3645 if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0)
3646 goto __error;
3647 }
3648
3649 if (err > 0) {
3650 /* create normal USB audio interfaces */
3651 if (snd_usb_create_streams(chip, ifnum) < 0 ||
Takashi Iwai7a9b8062008-08-13 15:40:53 +02003652 snd_usb_create_mixer(chip, ifnum, ignore_ctl_error) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 goto __error;
3654 }
3655 }
3656
3657 /* we are allowed to call snd_card_register() many times */
3658 if (snd_card_register(chip->card) < 0) {
3659 goto __error;
3660 }
3661
3662 usb_chip[chip->index] = chip;
3663 chip->num_interfaces++;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003664 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 return chip;
3666
3667 __error:
3668 if (chip && !chip->num_interfaces)
3669 snd_card_free(chip->card);
Ingo Molnar12aa7572006-01-16 16:36:05 +01003670 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 __err_val:
3672 return NULL;
3673}
3674
3675/*
3676 * we need to take care of counter, since disconnection can be called also
3677 * many times as well as usb_audio_probe().
3678 */
3679static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr)
3680{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003681 struct snd_usb_audio *chip;
3682 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 struct list_head *p;
3684
3685 if (ptr == (void *)-1L)
3686 return;
3687
3688 chip = ptr;
3689 card = chip->card;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003690 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 chip->shutdown = 1;
3692 chip->num_interfaces--;
3693 if (chip->num_interfaces <= 0) {
3694 snd_card_disconnect(card);
3695 /* release the pcm resources */
3696 list_for_each(p, &chip->pcm_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003697 snd_usb_stream_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 }
3699 /* release the midi resources */
3700 list_for_each(p, &chip->midi_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003701 snd_usbmidi_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02003703 /* release mixer resources */
3704 list_for_each(p, &chip->mixer_list) {
3705 snd_usb_mixer_disconnect(p);
3706 }
Takashi Iwai9eb70e62008-04-17 12:53:26 +02003707 usb_chip[chip->index] = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003708 mutex_unlock(&register_mutex);
Takashi Iwaic4614822006-06-23 14:38:23 +02003709 snd_card_free_when_closed(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 } else {
Ingo Molnar12aa7572006-01-16 16:36:05 +01003711 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 }
3713}
3714
3715/*
3716 * new 2.5 USB kernel API
3717 */
3718static int usb_audio_probe(struct usb_interface *intf,
3719 const struct usb_device_id *id)
3720{
3721 void *chip;
3722 chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
3723 if (chip) {
Julia Lawallf4e97492009-01-01 18:14:35 +01003724 usb_set_intfdata(intf, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 return 0;
3726 } else
3727 return -EIO;
3728}
3729
3730static void usb_audio_disconnect(struct usb_interface *intf)
3731{
3732 snd_usb_audio_disconnect(interface_to_usbdev(intf),
Julia Lawallf4e97492009-01-01 18:14:35 +01003733 usb_get_intfdata(intf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734}
3735
Andrew Morton93521d22007-12-24 14:40:56 +01003736#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01003737static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
3738{
Julia Lawallf4e97492009-01-01 18:14:35 +01003739 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumf85bf292007-12-14 14:42:41 +01003740 struct list_head *p;
3741 struct snd_usb_stream *as;
3742
3743 if (chip == (void *)-1L)
3744 return 0;
3745
3746 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
3747 if (!chip->num_suspended_intf++) {
3748 list_for_each(p, &chip->pcm_list) {
3749 as = list_entry(p, struct snd_usb_stream, list);
3750 snd_pcm_suspend_all(as->pcm);
3751 }
3752 }
3753
3754 return 0;
3755}
3756
3757static int usb_audio_resume(struct usb_interface *intf)
3758{
Julia Lawallf4e97492009-01-01 18:14:35 +01003759 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumf85bf292007-12-14 14:42:41 +01003760
3761 if (chip == (void *)-1L)
3762 return 0;
3763 if (--chip->num_suspended_intf)
3764 return 0;
3765 /*
3766 * ALSA leaves material resumption to user space
3767 * we just notify
3768 */
3769
3770 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
3771
3772 return 0;
3773}
Andrew Morton93521d22007-12-24 14:40:56 +01003774#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775
3776static int __init snd_usb_audio_init(void)
3777{
Clemens Ladischf3990e62009-02-20 09:32:40 +01003778 if (nrpacks < 1 || nrpacks > MAX_PACKS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 printk(KERN_WARNING "invalid nrpacks value.\n");
3780 return -EINVAL;
3781 }
Tobias Klausercf78bbc2006-10-04 18:12:43 +02003782 return usb_register(&usb_audio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783}
3784
3785
3786static void __exit snd_usb_audio_cleanup(void)
3787{
3788 usb_deregister(&usb_audio_driver);
3789}
3790
3791module_init(snd_usb_audio_init);
3792module_exit(snd_usb_audio_cleanup);