blob: f853b627cf434eef82c446019426d606fa3d858c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Main and PCM part
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
11 *
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 *
28 * NOTES:
29 *
30 * - async unlink should be used for avoiding the sleep inside lock.
31 * 2.4.22 usb-uhci seems buggy for async unlinking and results in
32 * oops. in such a cse, pass async_unlink=0 option.
33 * - the linked URBs would be preferred but not used so far because of
34 * the instability of unlinking.
35 * - type II is not supported properly. there is no device which supports
36 * this type *correctly*. SB extigy looks as if it supports, but it's
37 * indeed an AC3 stream packed in SPDIF frames (i.e. no real AC3 stream).
38 */
39
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/bitops.h>
42#include <linux/init.h>
43#include <linux/list.h>
44#include <linux/slab.h>
45#include <linux/string.h>
46#include <linux/usb.h>
Clemens Ladisch6207e512005-08-15 08:35:25 +020047#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/moduleparam.h>
Ingo Molnar12aa7572006-01-16 16:36:05 +010049#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <sound/core.h>
51#include <sound/info.h>
52#include <sound/pcm.h>
53#include <sound/pcm_params.h>
54#include <sound/initval.h>
55
56#include "usbaudio.h"
57
58
59MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
60MODULE_DESCRIPTION("USB Audio");
61MODULE_LICENSE("GPL");
62MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
63
64
65static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
66static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Pavel Machek07f51a72008-04-14 13:15:56 +020067static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
68/* Vendor/product IDs for this card */
69static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
70static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
Clemens Ladisch92b9ac72006-09-22 10:57:36 +020071static int nrpacks = 8; /* max. number of packets per urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static int async_unlink = 1;
Thibault LE MEURe3113342006-03-14 11:44:53 +010073static int device_setup[SNDRV_CARDS]; /* device parameter for this card*/
Takashi Iwai7a9b8062008-08-13 15:40:53 +020074static int ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76module_param_array(index, int, NULL, 0444);
77MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
78module_param_array(id, charp, NULL, 0444);
79MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
80module_param_array(enable, bool, NULL, 0444);
81MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
82module_param_array(vid, int, NULL, 0444);
83MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
84module_param_array(pid, int, NULL, 0444);
85MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
Clemens Ladisch71d848c2005-08-12 15:18:00 +020086module_param(nrpacks, int, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB.");
88module_param(async_unlink, bool, 0444);
89MODULE_PARM_DESC(async_unlink, "Use async unlink mode.");
Thibault LE MEURe3113342006-03-14 11:44:53 +010090module_param_array(device_setup, int, NULL, 0444);
91MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
Takashi Iwai7a9b8062008-08-13 15:40:53 +020092module_param(ignore_ctl_error, bool, 0444);
93MODULE_PARM_DESC(ignore_ctl_error,
94 "Ignore errors from USB controller for mixer interfaces.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/*
97 * debug the h/w constraints
98 */
99/* #define HW_CONST_DEBUG */
100
101
102/*
103 *
104 */
105
Clemens Ladisch92b9ac72006-09-22 10:57:36 +0200106#define MAX_PACKS 20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define MAX_PACKS_HS (MAX_PACKS * 8) /* in high speed mode */
Clemens Ladisch15a24c072005-08-12 08:25:26 +0200108#define MAX_URBS 8
Clemens Ladisch604cf492005-05-17 09:15:27 +0200109#define SYNC_URBS 4 /* always four urbs for sync */
Clemens Ladisch4d788e042009-01-26 08:09:28 +0100110#define MAX_QUEUE 24 /* try not to exceed this queue length, in ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112struct audioformat {
113 struct list_head list;
114 snd_pcm_format_t format; /* format type */
115 unsigned int channels; /* # channels */
116 unsigned int fmt_type; /* USB audio format type (1-3) */
117 unsigned int frame_size; /* samples per frame for non-audio */
118 int iface; /* interface number */
119 unsigned char altsetting; /* corresponding alternate setting */
120 unsigned char altset_idx; /* array index of altenate setting */
121 unsigned char attributes; /* corresponding attributes of cs endpoint */
122 unsigned char endpoint; /* endpoint */
123 unsigned char ep_attr; /* endpoint attributes */
124 unsigned int maxpacksize; /* max. packet size */
125 unsigned int rates; /* rate bitmasks */
126 unsigned int rate_min, rate_max; /* min/max rates */
127 unsigned int nr_rates; /* number of rate table entries */
128 unsigned int *rate_table; /* rate table */
129};
130
Takashi Iwai86e07d32005-11-17 15:08:02 +0100131struct snd_usb_substream;
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133struct snd_urb_ctx {
134 struct urb *urb;
Clemens Ladisch55851f72005-08-15 08:34:16 +0200135 unsigned int buffer_size; /* size of data buffer, if data URB */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100136 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int index; /* index for urb array */
138 int packets; /* number of packets per urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139};
140
141struct snd_urb_ops {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100142 int (*prepare)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
143 int (*retire)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
144 int (*prepare_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
145 int (*retire_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148struct snd_usb_substream {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100149 struct snd_usb_stream *stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 struct usb_device *dev;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100151 struct snd_pcm_substream *pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int direction; /* playback or capture */
153 int interface; /* current interface */
154 int endpoint; /* assigned endpoint */
155 struct audioformat *cur_audiofmt; /* current audioformat pointer (for hw_params callback) */
156 unsigned int cur_rate; /* current rate (for hw_params callback) */
157 unsigned int period_bytes; /* current period bytes (for hw_params callback) */
158 unsigned int format; /* USB data format */
159 unsigned int datapipe; /* the data i/o pipe */
160 unsigned int syncpipe; /* 1 - async out or adaptive in */
Clemens Ladisch573567e2005-06-27 08:17:30 +0200161 unsigned int datainterval; /* log_2 of data packet interval */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 unsigned int syncinterval; /* P for adaptive mode, 0 otherwise */
163 unsigned int freqn; /* nominal sampling rate in fs/fps in Q16.16 format */
164 unsigned int freqm; /* momentary sampling rate in fs/fps in Q16.16 format */
165 unsigned int freqmax; /* maximum sampling rate, used for buffer management */
166 unsigned int phase; /* phase accumulator */
167 unsigned int maxpacksize; /* max packet size in bytes */
168 unsigned int maxframesize; /* max packet size in frames */
169 unsigned int curpacksize; /* current packet size in bytes (for capture) */
170 unsigned int curframesize; /* current packet size in frames (for capture) */
171 unsigned int fill_max: 1; /* fill max packet size always */
172 unsigned int fmt_type; /* USB audio format type (1-3) */
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200173 unsigned int packs_per_ms; /* packets per millisecond (for playback) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 unsigned int running: 1; /* running status */
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 unsigned int hwptr_done; /* processed frame position in the buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 unsigned int transfer_done; /* processed frames since last period update */
179 unsigned long active_mask; /* bitmask of active urbs */
180 unsigned long unlink_mask; /* bitmask of unlinked urbs */
181
182 unsigned int nurbs; /* # urbs */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100183 struct snd_urb_ctx dataurb[MAX_URBS]; /* data urb table */
184 struct snd_urb_ctx syncurb[SYNC_URBS]; /* sync urb table */
Clemens Ladisch55851f72005-08-15 08:34:16 +0200185 char *syncbuf; /* sync buffer for all sync URBs */
186 dma_addr_t sync_dma; /* DMA address of syncbuf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 u64 formats; /* format bitmasks (all or'ed) */
189 unsigned int num_formats; /* number of supported audio formats (list) */
190 struct list_head fmt_list; /* format list */
Takashi Iwai8fec5602007-02-01 11:50:56 +0100191 struct snd_pcm_hw_constraint_list rate_list; /* limited rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 spinlock_t lock;
193
194 struct snd_urb_ops ops; /* callbacks (must be filled at init) */
195};
196
197
198struct snd_usb_stream {
Takashi Iwai86e07d32005-11-17 15:08:02 +0100199 struct snd_usb_audio *chip;
200 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 int pcm_index;
202 unsigned int fmt_type; /* USB audio format type (1-3) */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100203 struct snd_usb_substream substream[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 struct list_head list;
205};
206
207
208/*
209 * we keep the snd_usb_audio_t instances by ourselves for merging
210 * the all interfaces on the same card as one sound device.
211 */
212
Ingo Molnar12aa7572006-01-16 16:36:05 +0100213static DEFINE_MUTEX(register_mutex);
Takashi Iwai86e07d32005-11-17 15:08:02 +0100214static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216
217/*
218 * convert a sampling rate into our full speed format (fs/1000 in Q16.16)
219 * this will overflow at approx 524 kHz
220 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700221static inline unsigned get_usb_full_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 return ((rate << 13) + 62) / 125;
224}
225
226/*
227 * convert a sampling rate into USB high speed format (fs/8000 in Q16.16)
228 * this will overflow at approx 4 MHz
229 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700230static inline unsigned get_usb_high_speed_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 return ((rate << 10) + 62) / 125;
233}
234
235/* convert our full speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700236static inline unsigned get_full_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 return (usb_rate * 125 + (1 << 12)) >> 13;
239}
240
241/* convert our high speed USB rate into sampling rate in Hz */
Jesper Juhl77933d72005-07-27 11:46:09 -0700242static inline unsigned get_high_speed_hz(unsigned int usb_rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 return (usb_rate * 125 + (1 << 9)) >> 10;
245}
246
247
248/*
249 * prepare urb for full speed capture sync pipe
250 *
251 * fill the length and offset of each urb descriptor.
252 * the fixed 10.14 frequency is passed through the pipe.
253 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100254static int prepare_capture_sync_urb(struct snd_usb_substream *subs,
255 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 struct urb *urb)
257{
258 unsigned char *cp = urb->transfer_buffer;
John Daiker88518272006-12-28 13:55:05 +0100259 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200262 urb->iso_frame_desc[0].length = 3;
263 urb->iso_frame_desc[0].offset = 0;
264 cp[0] = subs->freqn >> 2;
265 cp[1] = subs->freqn >> 10;
266 cp[2] = subs->freqn >> 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return 0;
268}
269
270/*
271 * prepare urb for high speed capture sync pipe
272 *
273 * fill the length and offset of each urb descriptor.
274 * the fixed 12.13 frequency is passed as 16.16 through the pipe.
275 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100276static int prepare_capture_sync_urb_hs(struct snd_usb_substream *subs,
277 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct urb *urb)
279{
280 unsigned char *cp = urb->transfer_buffer;
John Daiker88518272006-12-28 13:55:05 +0100281 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200284 urb->iso_frame_desc[0].length = 4;
285 urb->iso_frame_desc[0].offset = 0;
286 cp[0] = subs->freqn;
287 cp[1] = subs->freqn >> 8;
288 cp[2] = subs->freqn >> 16;
289 cp[3] = subs->freqn >> 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return 0;
291}
292
293/*
294 * process after capture sync complete
295 * - nothing to do
296 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100297static int retire_capture_sync_urb(struct snd_usb_substream *subs,
298 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 struct urb *urb)
300{
301 return 0;
302}
303
304/*
305 * prepare urb for capture data pipe
306 *
307 * fill the offset and length of each descriptor.
308 *
309 * we use a temporary buffer to write the captured data.
310 * since the length of written data is determined by host, we cannot
311 * write onto the pcm buffer directly... the data is thus copied
312 * later at complete callback to the global buffer.
313 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100314static int prepare_capture_urb(struct snd_usb_substream *subs,
315 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 struct urb *urb)
317{
318 int i, offs;
John Daiker88518272006-12-28 13:55:05 +0100319 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 offs = 0;
322 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 for (i = 0; i < ctx->packets; i++) {
324 urb->iso_frame_desc[i].offset = offs;
325 urb->iso_frame_desc[i].length = subs->curpacksize;
326 offs += subs->curpacksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 urb->transfer_buffer_length = offs;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200329 urb->number_of_packets = ctx->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return 0;
331}
332
333/*
334 * process after capture complete
335 *
336 * copy the data from each desctiptor to the pcm buffer, and
337 * update the current position.
338 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100339static int retire_capture_urb(struct snd_usb_substream *subs,
340 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 struct urb *urb)
342{
343 unsigned long flags;
344 unsigned char *cp;
345 int i;
346 unsigned int stride, len, oldptr;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200347 int period_elapsed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 stride = runtime->frame_bits >> 3;
350
351 for (i = 0; i < urb->number_of_packets; i++) {
352 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset;
353 if (urb->iso_frame_desc[i].status) {
354 snd_printd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status);
355 // continue;
356 }
357 len = urb->iso_frame_desc[i].actual_length / stride;
358 if (! len)
359 continue;
360 /* update the current pointer */
361 spin_lock_irqsave(&subs->lock, flags);
362 oldptr = subs->hwptr_done;
363 subs->hwptr_done += len;
364 if (subs->hwptr_done >= runtime->buffer_size)
365 subs->hwptr_done -= runtime->buffer_size;
366 subs->transfer_done += len;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200367 if (subs->transfer_done >= runtime->period_size) {
368 subs->transfer_done -= runtime->period_size;
369 period_elapsed = 1;
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 spin_unlock_irqrestore(&subs->lock, flags);
372 /* copy a data chunk */
373 if (oldptr + len > runtime->buffer_size) {
374 unsigned int cnt = runtime->buffer_size - oldptr;
375 unsigned int blen = cnt * stride;
376 memcpy(runtime->dma_area + oldptr * stride, cp, blen);
377 memcpy(runtime->dma_area, cp + blen, len * stride - blen);
378 } else {
379 memcpy(runtime->dma_area + oldptr * stride, cp, len * stride);
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200382 if (period_elapsed)
383 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return 0;
385}
386
Clemens Ladische4f8e652006-10-04 13:42:57 +0200387/*
388 * Process after capture complete when paused. Nothing to do.
389 */
390static int retire_paused_capture_urb(struct snd_usb_substream *subs,
391 struct snd_pcm_runtime *runtime,
392 struct urb *urb)
393{
394 return 0;
395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398/*
399 * prepare urb for full speed playback sync pipe
400 *
401 * set up the offset and length to receive the current frequency.
402 */
403
Takashi Iwai86e07d32005-11-17 15:08:02 +0100404static int prepare_playback_sync_urb(struct snd_usb_substream *subs,
405 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 struct urb *urb)
407{
John Daiker88518272006-12-28 13:55:05 +0100408 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200411 urb->iso_frame_desc[0].length = 3;
412 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return 0;
414}
415
416/*
417 * prepare urb for high speed playback sync pipe
418 *
419 * set up the offset and length to receive the current frequency.
420 */
421
Takashi Iwai86e07d32005-11-17 15:08:02 +0100422static int prepare_playback_sync_urb_hs(struct snd_usb_substream *subs,
423 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 struct urb *urb)
425{
John Daiker88518272006-12-28 13:55:05 +0100426 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200429 urb->iso_frame_desc[0].length = 4;
430 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return 0;
432}
433
434/*
435 * process after full speed playback sync complete
436 *
437 * retrieve the current 10.14 frequency from pipe, and set it.
438 * the value is referred in prepare_playback_urb().
439 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100440static int retire_playback_sync_urb(struct snd_usb_substream *subs,
441 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct urb *urb)
443{
Clemens Ladischca810902005-05-02 08:55:54 +0200444 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned long flags;
446
Clemens Ladischca810902005-05-02 08:55:54 +0200447 if (urb->iso_frame_desc[0].status == 0 &&
448 urb->iso_frame_desc[0].actual_length == 3) {
449 f = combine_triple((u8*)urb->transfer_buffer) << 2;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200450 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
451 spin_lock_irqsave(&subs->lock, flags);
452 subs->freqm = f;
453 spin_unlock_irqrestore(&subs->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456
457 return 0;
458}
459
460/*
461 * process after high speed playback sync complete
462 *
463 * retrieve the current 12.13 frequency from pipe, and set it.
464 * the value is referred in prepare_playback_urb().
465 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100466static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs,
467 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct urb *urb)
469{
Clemens Ladischca810902005-05-02 08:55:54 +0200470 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 unsigned long flags;
472
Clemens Ladischca810902005-05-02 08:55:54 +0200473 if (urb->iso_frame_desc[0].status == 0 &&
474 urb->iso_frame_desc[0].actual_length == 4) {
475 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200476 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
477 spin_lock_irqsave(&subs->lock, flags);
478 subs->freqm = f;
479 spin_unlock_irqrestore(&subs->lock, flags);
480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482
483 return 0;
484}
485
Clemens Ladischd5132022008-02-25 11:01:00 +0100486/*
Eran Tromer97c889a2008-09-26 01:07:03 -0400487 * process after E-Mu 0202/0404/Tracker Pre high speed playback sync complete
Clemens Ladischd5132022008-02-25 11:01:00 +0100488 *
489 * These devices return the number of samples per packet instead of the number
490 * of samples per microframe.
491 */
492static int retire_playback_sync_urb_hs_emu(struct snd_usb_substream *subs,
493 struct snd_pcm_runtime *runtime,
494 struct urb *urb)
495{
496 unsigned int f;
497 unsigned long flags;
498
499 if (urb->iso_frame_desc[0].status == 0 &&
500 urb->iso_frame_desc[0].actual_length == 4) {
501 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
502 f >>= subs->datainterval;
503 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
504 spin_lock_irqsave(&subs->lock, flags);
505 subs->freqm = f;
506 spin_unlock_irqrestore(&subs->lock, flags);
507 }
508 }
509
510 return 0;
511}
512
Clemens Ladisch9568f462006-01-12 08:19:21 +0100513/* determine the number of frames in the next packet */
514static int snd_usb_audio_next_packet_size(struct snd_usb_substream *subs)
515{
516 if (subs->fill_max)
517 return subs->maxframesize;
518 else {
519 subs->phase = (subs->phase & 0xffff)
520 + (subs->freqm << subs->datainterval);
521 return min(subs->phase >> 16, subs->maxframesize);
522 }
523}
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/*
Clemens Ladische4f8e652006-10-04 13:42:57 +0200526 * Prepare urb for streaming before playback starts or when paused.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100527 *
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100528 * We don't have any data, so we send silence.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100529 */
Clemens Ladische4f8e652006-10-04 13:42:57 +0200530static int prepare_nodata_playback_urb(struct snd_usb_substream *subs,
531 struct snd_pcm_runtime *runtime,
532 struct urb *urb)
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100533{
Clemens Ladisch4b284922006-01-12 08:17:49 +0100534 unsigned int i, offs, counts;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100535 struct snd_urb_ctx *ctx = urb->context;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100536 int stride = runtime->frame_bits >> 3;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100537
Clemens Ladisch4b284922006-01-12 08:17:49 +0100538 offs = 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100539 urb->dev = ctx->subs->dev;
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100540 for (i = 0; i < ctx->packets; ++i) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100541 counts = snd_usb_audio_next_packet_size(subs);
Clemens Ladisch4b284922006-01-12 08:17:49 +0100542 urb->iso_frame_desc[i].offset = offs * stride;
543 urb->iso_frame_desc[i].length = counts * stride;
544 offs += counts;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100545 }
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100546 urb->number_of_packets = ctx->packets;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100547 urb->transfer_buffer_length = offs * stride;
548 memset(urb->transfer_buffer,
549 subs->cur_audiofmt->format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0,
550 offs * stride);
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100551 return 0;
552}
553
554/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * prepare urb for playback data pipe
556 *
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200557 * Since a URB can handle only a single linear buffer, we must use double
558 * buffering when the data to be transferred overflows the buffer boundary.
559 * To avoid inconsistencies when updating hwptr_done, we use double buffering
560 * for all URBs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100562static int prepare_playback_urb(struct snd_usb_substream *subs,
563 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 struct urb *urb)
565{
566 int i, stride, offs;
567 unsigned int counts;
568 unsigned long flags;
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200569 int period_elapsed = 0;
John Daiker88518272006-12-28 13:55:05 +0100570 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 stride = runtime->frame_bits >> 3;
573
574 offs = 0;
575 urb->dev = ctx->subs->dev; /* we need to set this at each time */
576 urb->number_of_packets = 0;
577 spin_lock_irqsave(&subs->lock, flags);
578 for (i = 0; i < ctx->packets; i++) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100579 counts = snd_usb_audio_next_packet_size(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /* set up descriptor */
581 urb->iso_frame_desc[i].offset = offs * stride;
582 urb->iso_frame_desc[i].length = counts * stride;
583 offs += counts;
584 urb->number_of_packets++;
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200585 subs->transfer_done += counts;
586 if (subs->transfer_done >= runtime->period_size) {
587 subs->transfer_done -= runtime->period_size;
588 period_elapsed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (subs->fmt_type == USB_FORMAT_TYPE_II) {
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200590 if (subs->transfer_done > 0) {
591 /* FIXME: fill-max mode is not
592 * supported yet */
593 offs -= subs->transfer_done;
594 counts -= subs->transfer_done;
595 urb->iso_frame_desc[i].length =
596 counts * stride;
597 subs->transfer_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599 i++;
600 if (i < ctx->packets) {
601 /* add a transfer delimiter */
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200602 urb->iso_frame_desc[i].offset =
603 offs * stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 urb->iso_frame_desc[i].length = 0;
605 urb->number_of_packets++;
606 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200607 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200610 /* finish at the frame boundary at/after the period boundary */
611 if (period_elapsed &&
612 (i & (subs->packs_per_ms - 1)) == subs->packs_per_ms - 1)
613 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200615 if (subs->hwptr_done + offs > runtime->buffer_size) {
616 /* err, the transferred area goes over buffer boundary. */
617 unsigned int len = runtime->buffer_size - subs->hwptr_done;
618 memcpy(urb->transfer_buffer,
619 runtime->dma_area + subs->hwptr_done * stride,
620 len * stride);
621 memcpy(urb->transfer_buffer + len * stride,
622 runtime->dma_area,
623 (offs - len) * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 } else {
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200625 memcpy(urb->transfer_buffer,
626 runtime->dma_area + subs->hwptr_done * stride,
627 offs * stride);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200629 subs->hwptr_done += offs;
630 if (subs->hwptr_done >= runtime->buffer_size)
631 subs->hwptr_done -= runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 spin_unlock_irqrestore(&subs->lock, flags);
633 urb->transfer_buffer_length = offs * stride;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100634 if (period_elapsed)
635 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 0;
637}
638
639/*
640 * process after playback data complete
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +0200641 * - nothing to do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100643static int retire_playback_urb(struct snd_usb_substream *subs,
644 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 struct urb *urb)
646{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return 0;
648}
649
650
651/*
652 */
653static struct snd_urb_ops audio_urb_ops[2] = {
654 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200655 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 .retire = retire_playback_urb,
657 .prepare_sync = prepare_playback_sync_urb,
658 .retire_sync = retire_playback_sync_urb,
659 },
660 {
661 .prepare = prepare_capture_urb,
662 .retire = retire_capture_urb,
663 .prepare_sync = prepare_capture_sync_urb,
664 .retire_sync = retire_capture_sync_urb,
665 },
666};
667
668static struct snd_urb_ops audio_urb_ops_high_speed[2] = {
669 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200670 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 .retire = retire_playback_urb,
672 .prepare_sync = prepare_playback_sync_urb_hs,
673 .retire_sync = retire_playback_sync_urb_hs,
674 },
675 {
676 .prepare = prepare_capture_urb,
677 .retire = retire_capture_urb,
678 .prepare_sync = prepare_capture_sync_urb_hs,
679 .retire_sync = retire_capture_sync_urb,
680 },
681};
682
683/*
684 * complete callback from data urb
685 */
David Howells7d12e782006-10-05 14:55:46 +0100686static void snd_complete_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
John Daiker88518272006-12-28 13:55:05 +0100688 struct snd_urb_ctx *ctx = urb->context;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100689 struct snd_usb_substream *subs = ctx->subs;
690 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 int err = 0;
692
693 if ((subs->running && subs->ops.retire(subs, substream->runtime, urb)) ||
Pavel Machek07f51a72008-04-14 13:15:56 +0200694 !subs->running || /* can be stopped during retire callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 (err = subs->ops.prepare(subs, substream->runtime, urb)) < 0 ||
696 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
697 clear_bit(ctx->index, &subs->active_mask);
698 if (err < 0) {
699 snd_printd(KERN_ERR "cannot submit urb (err = %d)\n", err);
700 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
701 }
702 }
703}
704
705
706/*
707 * complete callback from sync urb
708 */
David Howells7d12e782006-10-05 14:55:46 +0100709static void snd_complete_sync_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
John Daiker88518272006-12-28 13:55:05 +0100711 struct snd_urb_ctx *ctx = urb->context;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100712 struct snd_usb_substream *subs = ctx->subs;
713 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int err = 0;
715
716 if ((subs->running && subs->ops.retire_sync(subs, substream->runtime, urb)) ||
Pavel Machek07f51a72008-04-14 13:15:56 +0200717 !subs->running || /* can be stopped during retire callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 (err = subs->ops.prepare_sync(subs, substream->runtime, urb)) < 0 ||
719 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
720 clear_bit(ctx->index + 16, &subs->active_mask);
721 if (err < 0) {
722 snd_printd(KERN_ERR "cannot submit sync urb (err = %d)\n", err);
723 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
724 }
725 }
726}
727
728
Clemens Ladisch6207e512005-08-15 08:35:25 +0200729/* get the physical page pointer at the given offset */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100730static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
Clemens Ladisch6207e512005-08-15 08:35:25 +0200731 unsigned long offset)
732{
733 void *pageptr = subs->runtime->dma_area + offset;
734 return vmalloc_to_page(pageptr);
735}
736
737/* allocate virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100738static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs, size_t size)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200739{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100740 struct snd_pcm_runtime *runtime = subs->runtime;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200741 if (runtime->dma_area) {
742 if (runtime->dma_bytes >= size)
743 return 0; /* already large enough */
Takashi Iwaib1d57762005-10-10 11:56:31 +0200744 vfree(runtime->dma_area);
Clemens Ladisch6207e512005-08-15 08:35:25 +0200745 }
Takashi Iwaib1d57762005-10-10 11:56:31 +0200746 runtime->dma_area = vmalloc(size);
Pavel Machek07f51a72008-04-14 13:15:56 +0200747 if (!runtime->dma_area)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200748 return -ENOMEM;
749 runtime->dma_bytes = size;
750 return 0;
751}
752
753/* free virtual buffer; may be called more than once */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100754static int snd_pcm_free_vmalloc_buffer(struct snd_pcm_substream *subs)
Clemens Ladisch6207e512005-08-15 08:35:25 +0200755{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100756 struct snd_pcm_runtime *runtime = subs->runtime;
Jesper Juhl9c4be3d2006-02-09 20:04:16 +0100757
758 vfree(runtime->dma_area);
759 runtime->dma_area = NULL;
Clemens Ladisch6207e512005-08-15 08:35:25 +0200760 return 0;
761}
762
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764/*
765 * unlink active urbs.
766 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100767static int deactivate_urbs(struct snd_usb_substream *subs, int force, int can_sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 unsigned int i;
770 int async;
771
772 subs->running = 0;
773
774 if (!force && subs->stream->chip->shutdown) /* to be sure... */
775 return -EBADFD;
776
777 async = !can_sleep && async_unlink;
778
Pavel Machek07f51a72008-04-14 13:15:56 +0200779 if (!async && in_interrupt())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return 0;
781
782 for (i = 0; i < subs->nurbs; i++) {
783 if (test_bit(i, &subs->active_mask)) {
Pavel Machek07f51a72008-04-14 13:15:56 +0200784 if (!test_and_set_bit(i, &subs->unlink_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 struct urb *u = subs->dataurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400786 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400788 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 usb_kill_urb(u);
790 }
791 }
792 }
793 if (subs->syncpipe) {
794 for (i = 0; i < SYNC_URBS; i++) {
795 if (test_bit(i+16, &subs->active_mask)) {
Pavel Machek07f51a72008-04-14 13:15:56 +0200796 if (!test_and_set_bit(i+16, &subs->unlink_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 struct urb *u = subs->syncurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400798 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400800 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 usb_kill_urb(u);
802 }
803 }
804 }
805 }
806 return 0;
807}
808
809
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100810static const char *usb_error_string(int err)
811{
812 switch (err) {
813 case -ENODEV:
814 return "no device";
815 case -ENOENT:
816 return "endpoint not enabled";
817 case -EPIPE:
818 return "endpoint stalled";
819 case -ENOSPC:
820 return "not enough bandwidth";
821 case -ESHUTDOWN:
822 return "device disabled";
823 case -EHOSTUNREACH:
824 return "device suspended";
825 case -EINVAL:
826 case -EAGAIN:
827 case -EFBIG:
828 case -EMSGSIZE:
829 return "internal error";
830 default:
831 return "unknown error";
832 }
833}
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835/*
836 * set up and start data/sync urbs
837 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100838static int start_urbs(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 unsigned int i;
841 int err;
842
843 if (subs->stream->chip->shutdown)
844 return -EBADFD;
845
846 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai5e246b82008-08-08 17:12:47 +0200847 if (snd_BUG_ON(!subs->dataurb[i].urb))
848 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (subs->ops.prepare(subs, runtime, subs->dataurb[i].urb) < 0) {
850 snd_printk(KERN_ERR "cannot prepare datapipe for urb %d\n", i);
851 goto __error;
852 }
853 }
854 if (subs->syncpipe) {
855 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai5e246b82008-08-08 17:12:47 +0200856 if (snd_BUG_ON(!subs->syncurb[i].urb))
857 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (subs->ops.prepare_sync(subs, runtime, subs->syncurb[i].urb) < 0) {
859 snd_printk(KERN_ERR "cannot prepare syncpipe for urb %d\n", i);
860 goto __error;
861 }
862 }
863 }
864
865 subs->active_mask = 0;
866 subs->unlink_mask = 0;
867 subs->running = 1;
868 for (i = 0; i < subs->nurbs; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100869 err = usb_submit_urb(subs->dataurb[i].urb, GFP_ATOMIC);
870 if (err < 0) {
871 snd_printk(KERN_ERR "cannot submit datapipe "
872 "for urb %d, error %d: %s\n",
873 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 goto __error;
875 }
876 set_bit(i, &subs->active_mask);
877 }
878 if (subs->syncpipe) {
879 for (i = 0; i < SYNC_URBS; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100880 err = usb_submit_urb(subs->syncurb[i].urb, GFP_ATOMIC);
881 if (err < 0) {
882 snd_printk(KERN_ERR "cannot submit syncpipe "
883 "for urb %d, error %d: %s\n",
884 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 goto __error;
886 }
887 set_bit(i + 16, &subs->active_mask);
888 }
889 }
890 return 0;
891
892 __error:
893 // snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
894 deactivate_urbs(subs, 0, 0);
895 return -EPIPE;
896}
897
898
899/*
900 * wait until all urbs are processed.
901 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100902static int wait_clear_urbs(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200904 unsigned long end_time = jiffies + msecs_to_jiffies(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 unsigned int i;
906 int alive;
907
908 do {
909 alive = 0;
910 for (i = 0; i < subs->nurbs; i++) {
911 if (test_bit(i, &subs->active_mask))
912 alive++;
913 }
914 if (subs->syncpipe) {
915 for (i = 0; i < SYNC_URBS; i++) {
916 if (test_bit(i + 16, &subs->active_mask))
917 alive++;
918 }
919 }
920 if (! alive)
921 break;
Nishanth Aravamudan8433a502005-10-24 15:02:37 +0200922 schedule_timeout_uninterruptible(1);
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200923 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if (alive)
925 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
926 return 0;
927}
928
929
930/*
931 * return the current pcm pointer. just return the hwptr_done value.
932 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100933static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100935 struct snd_usb_substream *subs;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200936 snd_pcm_uframes_t hwptr_done;
937
Takashi Iwai86e07d32005-11-17 15:08:02 +0100938 subs = (struct snd_usb_substream *)substream->runtime->private_data;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200939 spin_lock(&subs->lock);
940 hwptr_done = subs->hwptr_done;
941 spin_unlock(&subs->lock);
942 return hwptr_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
945
946/*
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100947 * start/stop playback substream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100949static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100950 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100952 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 switch (cmd) {
955 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200956 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100957 subs->ops.prepare = prepare_playback_urb;
958 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 case SNDRV_PCM_TRIGGER_STOP:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100960 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200961 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
962 subs->ops.prepare = prepare_nodata_playback_urb;
963 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 default:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100965 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100967}
968
969/*
970 * start/stop capture substream
971 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100972static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100973 int cmd)
974{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100975 struct snd_usb_substream *subs = substream->runtime->private_data;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100976
977 switch (cmd) {
978 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200979 subs->ops.retire = retire_capture_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100980 return start_urbs(subs, substream->runtime);
981 case SNDRV_PCM_TRIGGER_STOP:
982 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200983 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
984 subs->ops.retire = retire_paused_capture_urb;
985 return 0;
986 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
987 subs->ops.retire = retire_capture_urb;
988 return 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100989 default:
990 return -EINVAL;
991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
994
995/*
996 * release a urb data
997 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100998static void release_urb_ctx(struct snd_urb_ctx *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 if (u->urb) {
Clemens Ladisch55851f72005-08-15 08:34:16 +02001001 if (u->buffer_size)
1002 usb_buffer_free(u->subs->dev, u->buffer_size,
1003 u->urb->transfer_buffer,
1004 u->urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 usb_free_urb(u->urb);
1006 u->urb = NULL;
1007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
1010/*
1011 * release a substream
1012 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001013static void release_substream_urbs(struct snd_usb_substream *subs, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
1015 int i;
1016
1017 /* stop urbs (to be sure) */
1018 deactivate_urbs(subs, force, 1);
1019 wait_clear_urbs(subs);
1020
1021 for (i = 0; i < MAX_URBS; i++)
1022 release_urb_ctx(&subs->dataurb[i]);
1023 for (i = 0; i < SYNC_URBS; i++)
1024 release_urb_ctx(&subs->syncurb[i]);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001025 usb_buffer_free(subs->dev, SYNC_URBS * 4,
1026 subs->syncbuf, subs->sync_dma);
1027 subs->syncbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 subs->nurbs = 0;
1029}
1030
1031/*
1032 * initialize a substream for plaback/capture
1033 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001034static int init_substream_urbs(struct snd_usb_substream *subs, unsigned int period_bytes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 unsigned int rate, unsigned int frame_bits)
1036{
Clemens Ladisch160389c2009-01-26 08:10:19 +01001037 unsigned int maxsize, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001039 unsigned int urb_packs, total_packs, packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 /* calculate the frequency in 16.16 format */
1042 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
1043 subs->freqn = get_usb_full_speed_rate(rate);
1044 else
1045 subs->freqn = get_usb_high_speed_rate(rate);
1046 subs->freqm = subs->freqn;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001047 /* calculate max. frequency */
1048 if (subs->maxpacksize) {
1049 /* whatever fits into a max. size packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 maxsize = subs->maxpacksize;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001051 subs->freqmax = (maxsize / (frame_bits >> 3))
1052 << (16 - subs->datainterval);
1053 } else {
1054 /* no max. packet size: just take 25% higher than nominal */
1055 subs->freqmax = subs->freqn + (subs->freqn >> 2);
1056 maxsize = ((subs->freqmax + 0xffff) * (frame_bits >> 3))
1057 >> (16 - subs->datainterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
Clemens Ladisch573567e2005-06-27 08:17:30 +02001059 subs->phase = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 if (subs->fill_max)
1062 subs->curpacksize = subs->maxpacksize;
1063 else
1064 subs->curpacksize = maxsize;
1065
Clemens Ladischa93bf992005-08-12 15:19:39 +02001066 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
1067 packs_per_ms = 8 >> subs->datainterval;
1068 else
1069 packs_per_ms = 1;
Clemens Ladisch9624ea82005-08-15 08:25:24 +02001070 subs->packs_per_ms = packs_per_ms;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001071
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001072 if (is_playback) {
Clemens Ladischf3990e62009-02-20 09:32:40 +01001073 urb_packs = max(nrpacks, 1);
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001074 urb_packs = min(urb_packs, (unsigned int)MAX_PACKS);
1075 } else
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001076 urb_packs = 1;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001077 urb_packs *= packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 /* decide how many packets to be used */
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001080 if (is_playback) {
Clemens Ladisch4d788e042009-01-26 08:09:28 +01001081 unsigned int minsize, maxpacks;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001082 /* determine how small a packet can be */
1083 minsize = (subs->freqn >> (16 - subs->datainterval))
1084 * (frame_bits >> 3);
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +02001085 /* with sync from device, assume it can be 12% lower */
Clemens Ladischd6db3922005-08-12 08:28:27 +02001086 if (subs->syncpipe)
Clemens Ladisch7efd8bc82005-08-15 08:24:44 +02001087 minsize -= minsize >> 3;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001088 minsize = max(minsize, 1u);
1089 total_packs = (period_bytes + minsize - 1) / minsize;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001090 /* round up to multiple of packs_per_ms */
1091 total_packs = (total_packs + packs_per_ms - 1)
1092 & ~(packs_per_ms - 1);
1093 /* we need at least two URBs for queueing */
Clemens Ladischf3990e62009-02-20 09:32:40 +01001094 if (total_packs < 2 * packs_per_ms) {
1095 total_packs = 2 * packs_per_ms;
1096 } else {
Clemens Ladisch4d788e042009-01-26 08:09:28 +01001097 /* and we don't want too long a queue either */
1098 maxpacks = max((unsigned int)MAX_QUEUE, urb_packs * 2);
1099 if (total_packs > maxpacks * packs_per_ms)
1100 total_packs = maxpacks * packs_per_ms;
1101 }
Clemens Ladisch15a24c072005-08-12 08:25:26 +02001102 } else {
1103 total_packs = MAX_URBS * urb_packs;
1104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 subs->nurbs = (total_packs + urb_packs - 1) / urb_packs;
1106 if (subs->nurbs > MAX_URBS) {
1107 /* too much... */
1108 subs->nurbs = MAX_URBS;
1109 total_packs = MAX_URBS * urb_packs;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001110 } else if (subs->nurbs < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 /* too little - we need at least two packets
1112 * to ensure contiguous playback/capture
1113 */
1114 subs->nurbs = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116
1117 /* allocate and initialize data urbs */
1118 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001119 struct snd_urb_ctx *u = &subs->dataurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 u->index = i;
1121 u->subs = subs;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001122 u->packets = (i + 1) * total_packs / subs->nurbs
1123 - i * total_packs / subs->nurbs;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001124 u->buffer_size = maxsize * u->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (subs->fmt_type == USB_FORMAT_TYPE_II)
1126 u->packets++; /* for transfer delimiter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02001128 if (!u->urb)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001129 goto out_of_memory;
1130 u->urb->transfer_buffer =
1131 usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL,
1132 &u->urb->transfer_dma);
Pavel Machek07f51a72008-04-14 13:15:56 +02001133 if (!u->urb->transfer_buffer)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001134 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 u->urb->pipe = subs->datapipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001136 u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001137 u->urb->interval = 1 << subs->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001139 u->urb->complete = snd_complete_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
1141
1142 if (subs->syncpipe) {
1143 /* allocate and initialize sync urbs */
Clemens Ladisch55851f72005-08-15 08:34:16 +02001144 subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4,
1145 GFP_KERNEL, &subs->sync_dma);
Pavel Machek07f51a72008-04-14 13:15:56 +02001146 if (!subs->syncbuf)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001147 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001149 struct snd_urb_ctx *u = &subs->syncurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 u->index = i;
1151 u->subs = subs;
Clemens Ladischca810902005-05-02 08:55:54 +02001152 u->packets = 1;
1153 u->urb = usb_alloc_urb(1, GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02001154 if (!u->urb)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001155 goto out_of_memory;
Clemens Ladischca810902005-05-02 08:55:54 +02001156 u->urb->transfer_buffer = subs->syncbuf + i * 4;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001157 u->urb->transfer_dma = subs->sync_dma + i * 4;
Clemens Ladischca810902005-05-02 08:55:54 +02001158 u->urb->transfer_buffer_length = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 u->urb->pipe = subs->syncpipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001160 u->urb->transfer_flags = URB_ISO_ASAP |
1161 URB_NO_TRANSFER_DMA_MAP;
Clemens Ladischca810902005-05-02 08:55:54 +02001162 u->urb->number_of_packets = 1;
Clemens Ladisch1149a642005-05-02 08:53:46 +02001163 u->urb->interval = 1 << subs->syncinterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001165 u->urb->complete = snd_complete_sync_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
1167 }
1168 return 0;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001169
1170out_of_memory:
1171 release_substream_urbs(subs, 0);
1172 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
1175
1176/*
1177 * find a matching audio format
1178 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001179static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 unsigned int rate, unsigned int channels)
1181{
1182 struct list_head *p;
1183 struct audioformat *found = NULL;
1184 int cur_attr = 0, attr;
1185
1186 list_for_each(p, &subs->fmt_list) {
1187 struct audioformat *fp;
1188 fp = list_entry(p, struct audioformat, list);
1189 if (fp->format != format || fp->channels != channels)
1190 continue;
1191 if (rate < fp->rate_min || rate > fp->rate_max)
1192 continue;
1193 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
1194 unsigned int i;
1195 for (i = 0; i < fp->nr_rates; i++)
1196 if (fp->rate_table[i] == rate)
1197 break;
1198 if (i >= fp->nr_rates)
1199 continue;
1200 }
1201 attr = fp->ep_attr & EP_ATTR_MASK;
1202 if (! found) {
1203 found = fp;
1204 cur_attr = attr;
1205 continue;
1206 }
1207 /* avoid async out and adaptive in if the other method
1208 * supports the same format.
1209 * this is a workaround for the case like
1210 * M-audio audiophile USB.
1211 */
1212 if (attr != cur_attr) {
1213 if ((attr == EP_ATTR_ASYNC &&
1214 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1215 (attr == EP_ATTR_ADAPTIVE &&
1216 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
1217 continue;
1218 if ((cur_attr == EP_ATTR_ASYNC &&
1219 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1220 (cur_attr == EP_ATTR_ADAPTIVE &&
1221 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
1222 found = fp;
1223 cur_attr = attr;
1224 continue;
1225 }
1226 }
1227 /* find the format with the largest max. packet size */
1228 if (fp->maxpacksize > found->maxpacksize) {
1229 found = fp;
1230 cur_attr = attr;
1231 }
1232 }
1233 return found;
1234}
1235
1236
1237/*
1238 * initialize the picth control and sample rate
1239 */
1240static int init_usb_pitch(struct usb_device *dev, int iface,
1241 struct usb_host_interface *alts,
1242 struct audioformat *fmt)
1243{
1244 unsigned int ep;
1245 unsigned char data[1];
1246 int err;
1247
1248 ep = get_endpoint(alts, 0)->bEndpointAddress;
1249 /* if endpoint has pitch control, enable it */
1250 if (fmt->attributes & EP_CS_ATTR_PITCH_CONTROL) {
1251 data[0] = 1;
1252 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1253 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1254 PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) {
1255 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
1256 dev->devnum, iface, ep);
1257 return err;
1258 }
1259 }
1260 return 0;
1261}
1262
1263static int init_usb_sample_rate(struct usb_device *dev, int iface,
1264 struct usb_host_interface *alts,
1265 struct audioformat *fmt, int rate)
1266{
1267 unsigned int ep;
1268 unsigned char data[3];
1269 int err;
1270
1271 ep = get_endpoint(alts, 0)->bEndpointAddress;
1272 /* if endpoint has sampling rate control, set it */
1273 if (fmt->attributes & EP_CS_ATTR_SAMPLE_RATE) {
1274 int crate;
1275 data[0] = rate;
1276 data[1] = rate >> 8;
1277 data[2] = rate >> 16;
1278 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1279 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1280 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001281 snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 dev->devnum, iface, fmt->altsetting, rate, ep);
1283 return err;
1284 }
1285 if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), GET_CUR,
1286 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN,
1287 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001288 snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 dev->devnum, iface, fmt->altsetting, ep);
1290 return 0; /* some devices don't support reading */
1291 }
1292 crate = data[0] | (data[1] << 8) | (data[2] << 16);
1293 if (crate != rate) {
1294 snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate);
1295 // runtime->rate = crate;
1296 }
1297 }
1298 return 0;
1299}
1300
1301/*
1302 * find a matching format and set up the interface
1303 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001304static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
1306 struct usb_device *dev = subs->dev;
1307 struct usb_host_interface *alts;
1308 struct usb_interface_descriptor *altsd;
1309 struct usb_interface *iface;
1310 unsigned int ep, attr;
1311 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
1312 int err;
1313
1314 iface = usb_ifnum_to_if(dev, fmt->iface);
Takashi Iwai5e246b82008-08-08 17:12:47 +02001315 if (WARN_ON(!iface))
1316 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 alts = &iface->altsetting[fmt->altset_idx];
1318 altsd = get_iface_desc(alts);
Takashi Iwai5e246b82008-08-08 17:12:47 +02001319 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
1320 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 if (fmt == subs->cur_audiofmt)
1323 return 0;
1324
1325 /* close the old interface */
1326 if (subs->interface >= 0 && subs->interface != fmt->iface) {
Oliver Neukum5149fe2c2007-08-31 12:15:27 +02001327 if (usb_set_interface(subs->dev, subs->interface, 0) < 0) {
1328 snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed\n",
1329 dev->devnum, fmt->iface, fmt->altsetting);
1330 return -EIO;
1331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 subs->interface = -1;
1333 subs->format = 0;
1334 }
1335
1336 /* set interface */
1337 if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) {
1338 if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) {
1339 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n",
1340 dev->devnum, fmt->iface, fmt->altsetting);
1341 return -EIO;
1342 }
1343 snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting);
1344 subs->interface = fmt->iface;
1345 subs->format = fmt->altset_idx;
1346 }
1347
1348 /* create a data pipe */
1349 ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK;
1350 if (is_playback)
1351 subs->datapipe = usb_sndisocpipe(dev, ep);
1352 else
1353 subs->datapipe = usb_rcvisocpipe(dev, ep);
Clemens Ladisch573567e2005-06-27 08:17:30 +02001354 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH &&
1355 get_endpoint(alts, 0)->bInterval >= 1 &&
1356 get_endpoint(alts, 0)->bInterval <= 4)
1357 subs->datainterval = get_endpoint(alts, 0)->bInterval - 1;
1358 else
1359 subs->datainterval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 subs->syncpipe = subs->syncinterval = 0;
1361 subs->maxpacksize = fmt->maxpacksize;
1362 subs->fill_max = 0;
1363
1364 /* we need a sync pipe in async OUT or adaptive IN mode */
1365 /* check the number of EP, since some devices have broken
1366 * descriptors which fool us. if it has only one EP,
1367 * assume it as adaptive-out or sync-in.
1368 */
1369 attr = fmt->ep_attr & EP_ATTR_MASK;
1370 if (((is_playback && attr == EP_ATTR_ASYNC) ||
1371 (! is_playback && attr == EP_ATTR_ADAPTIVE)) &&
1372 altsd->bNumEndpoints >= 2) {
1373 /* check sync-pipe endpoint */
1374 /* ... and check descriptor size before accessing bSynchAddress
1375 because there is a version of the SB Audigy 2 NX firmware lacking
1376 the audio fields in the endpoint descriptors */
1377 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
1378 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1379 get_endpoint(alts, 1)->bSynchAddress != 0)) {
1380 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1381 dev->devnum, fmt->iface, fmt->altsetting);
1382 return -EINVAL;
1383 }
1384 ep = get_endpoint(alts, 1)->bEndpointAddress;
1385 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1386 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
1387 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
1388 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1389 dev->devnum, fmt->iface, fmt->altsetting);
1390 return -EINVAL;
1391 }
1392 ep &= USB_ENDPOINT_NUMBER_MASK;
1393 if (is_playback)
1394 subs->syncpipe = usb_rcvisocpipe(dev, ep);
1395 else
1396 subs->syncpipe = usb_sndisocpipe(dev, ep);
Clemens Ladisch1149a642005-05-02 08:53:46 +02001397 if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1398 get_endpoint(alts, 1)->bRefresh >= 1 &&
1399 get_endpoint(alts, 1)->bRefresh <= 9)
1400 subs->syncinterval = get_endpoint(alts, 1)->bRefresh;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001401 else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
Clemens Ladisch1149a642005-05-02 08:53:46 +02001402 subs->syncinterval = 1;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001403 else if (get_endpoint(alts, 1)->bInterval >= 1 &&
1404 get_endpoint(alts, 1)->bInterval <= 16)
1405 subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
1406 else
1407 subs->syncinterval = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409
1410 /* always fill max packet size */
1411 if (fmt->attributes & EP_CS_ATTR_FILL_MAX)
1412 subs->fill_max = 1;
1413
1414 if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0)
1415 return err;
1416
1417 subs->cur_audiofmt = fmt;
1418
1419#if 0
Takashi Iwai54530bd2009-02-05 15:55:18 +01001420 printk(KERN_DEBUG
1421 "setting done: format = %d, rate = %d..%d, channels = %d\n",
Pavel Machek2a56f512008-04-14 13:14:22 +02001422 fmt->format, fmt->rate_min, fmt->rate_max, fmt->channels);
Takashi Iwai54530bd2009-02-05 15:55:18 +01001423 printk(KERN_DEBUG
1424 " datapipe = 0x%0x, syncpipe = 0x%0x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 subs->datapipe, subs->syncpipe);
1426#endif
1427
1428 return 0;
1429}
1430
1431/*
1432 * hw_params callback
1433 *
1434 * allocate a buffer and set the given audio format.
1435 *
1436 * so far we use a physically linear buffer although packetize transfer
1437 * doesn't need a continuous area.
1438 * if sg buffer is supported on the later version of alsa, we'll follow
1439 * that.
1440 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001441static int snd_usb_hw_params(struct snd_pcm_substream *substream,
1442 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
John Daiker88518272006-12-28 13:55:05 +01001444 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 struct audioformat *fmt;
1446 unsigned int channels, rate, format;
1447 int ret, changed;
1448
Clemens Ladisch6207e512005-08-15 08:35:25 +02001449 ret = snd_pcm_alloc_vmalloc_buffer(substream,
1450 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (ret < 0)
1452 return ret;
1453
1454 format = params_format(hw_params);
1455 rate = params_rate(hw_params);
1456 channels = params_channels(hw_params);
1457 fmt = find_format(subs, format, rate, channels);
Pavel Machek07f51a72008-04-14 13:15:56 +02001458 if (!fmt) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001459 snd_printd(KERN_DEBUG "cannot set format: format = %#x, rate = %d, channels = %d\n",
Jaroslav Kysela21a34792006-01-13 09:12:11 +01001460 format, rate, channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return -EINVAL;
1462 }
1463
1464 changed = subs->cur_audiofmt != fmt ||
1465 subs->period_bytes != params_period_bytes(hw_params) ||
1466 subs->cur_rate != rate;
1467 if ((ret = set_format(subs, fmt)) < 0)
1468 return ret;
1469
1470 if (subs->cur_rate != rate) {
1471 struct usb_host_interface *alts;
1472 struct usb_interface *iface;
1473 iface = usb_ifnum_to_if(subs->dev, fmt->iface);
1474 alts = &iface->altsetting[fmt->altset_idx];
1475 ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate);
1476 if (ret < 0)
1477 return ret;
1478 subs->cur_rate = rate;
1479 }
1480
1481 if (changed) {
1482 /* format changed */
1483 release_substream_urbs(subs, 0);
1484 /* influenced: period_bytes, channels, rate, format, */
1485 ret = init_substream_urbs(subs, params_period_bytes(hw_params),
1486 params_rate(hw_params),
1487 snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params));
1488 }
1489
1490 return ret;
1491}
1492
1493/*
1494 * hw_free callback
1495 *
1496 * reset the audio format and release the buffer
1497 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001498static int snd_usb_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
John Daiker88518272006-12-28 13:55:05 +01001500 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 subs->cur_audiofmt = NULL;
1503 subs->cur_rate = 0;
1504 subs->period_bytes = 0;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001505 if (!subs->stream->chip->shutdown)
1506 release_substream_urbs(subs, 0);
Clemens Ladisch6207e512005-08-15 08:35:25 +02001507 return snd_pcm_free_vmalloc_buffer(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
1510/*
1511 * prepare callback
1512 *
1513 * only a few subtle things...
1514 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001515static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001517 struct snd_pcm_runtime *runtime = substream->runtime;
1518 struct snd_usb_substream *subs = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520 if (! subs->cur_audiofmt) {
1521 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
1522 return -ENXIO;
1523 }
1524
1525 /* some unit conversions in runtime */
1526 subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize);
1527 subs->curframesize = bytes_to_frames(runtime, subs->curpacksize);
1528
1529 /* reset the pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 subs->hwptr_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 subs->transfer_done = 0;
1532 subs->phase = 0;
1533
1534 /* clear urbs (to be sure) */
1535 deactivate_urbs(subs, 0, 1);
1536 wait_clear_urbs(subs);
1537
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001538 /* for playback, submit the URBs now; otherwise, the first hwptr_done
1539 * updates for all URBs would happen at the same time when starting */
1540 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
Clemens Ladische4f8e652006-10-04 13:42:57 +02001541 subs->ops.prepare = prepare_nodata_playback_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001542 return start_urbs(subs, runtime);
1543 } else
1544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
Clemens Ladisch1700f302006-10-04 13:41:25 +02001547static struct snd_pcm_hardware snd_usb_hardware =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Clemens Ladisch49045d32005-09-05 10:31:05 +02001549 .info = SNDRV_PCM_INFO_MMAP |
1550 SNDRV_PCM_INFO_MMAP_VALID |
1551 SNDRV_PCM_INFO_BATCH |
1552 SNDRV_PCM_INFO_INTERLEAVED |
Clemens Ladische4f8e652006-10-04 13:42:57 +02001553 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1554 SNDRV_PCM_INFO_PAUSE,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001555 .buffer_bytes_max = 1024 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 .period_bytes_min = 64,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001557 .period_bytes_max = 512 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 .periods_min = 2,
1559 .periods_max = 1024,
1560};
1561
1562/*
1563 * h/w constraints
1564 */
1565
1566#ifdef HW_CONST_DEBUG
1567#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
1568#else
1569#define hwc_debug(fmt, args...) /**/
1570#endif
1571
Takashi Iwai86e07d32005-11-17 15:08:02 +01001572static int hw_check_valid_format(struct snd_pcm_hw_params *params, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001574 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1575 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
1576 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /* check the format */
Pavel Machek07f51a72008-04-14 13:15:56 +02001579 if (!snd_mask_test(fmts, fp->format)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 hwc_debug(" > check: no supported format %d\n", fp->format);
1581 return 0;
1582 }
1583 /* check the channels */
1584 if (fp->channels < ct->min || fp->channels > ct->max) {
1585 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
1586 return 0;
1587 }
1588 /* check the rate is within the range */
1589 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
1590 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
1591 return 0;
1592 }
1593 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
1594 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
1595 return 0;
1596 }
1597 return 1;
1598}
1599
Takashi Iwai86e07d32005-11-17 15:08:02 +01001600static int hw_rule_rate(struct snd_pcm_hw_params *params,
1601 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001603 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001605 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 unsigned int rmin, rmax;
1607 int changed;
1608
1609 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
1610 changed = 0;
1611 rmin = rmax = 0;
1612 list_for_each(p, &subs->fmt_list) {
1613 struct audioformat *fp;
1614 fp = list_entry(p, struct audioformat, list);
Pavel Machek07f51a72008-04-14 13:15:56 +02001615 if (!hw_check_valid_format(params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 continue;
1617 if (changed++) {
1618 if (rmin > fp->rate_min)
1619 rmin = fp->rate_min;
1620 if (rmax < fp->rate_max)
1621 rmax = fp->rate_max;
1622 } else {
1623 rmin = fp->rate_min;
1624 rmax = fp->rate_max;
1625 }
1626 }
1627
Pavel Machek07f51a72008-04-14 13:15:56 +02001628 if (!changed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 hwc_debug(" --> get empty\n");
1630 it->empty = 1;
1631 return -EINVAL;
1632 }
1633
1634 changed = 0;
1635 if (it->min < rmin) {
1636 it->min = rmin;
1637 it->openmin = 0;
1638 changed = 1;
1639 }
1640 if (it->max > rmax) {
1641 it->max = rmax;
1642 it->openmax = 0;
1643 changed = 1;
1644 }
1645 if (snd_interval_checkempty(it)) {
1646 it->empty = 1;
1647 return -EINVAL;
1648 }
1649 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1650 return changed;
1651}
1652
1653
Takashi Iwai86e07d32005-11-17 15:08:02 +01001654static int hw_rule_channels(struct snd_pcm_hw_params *params,
1655 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001657 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001659 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 unsigned int rmin, rmax;
1661 int changed;
1662
1663 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
1664 changed = 0;
1665 rmin = rmax = 0;
1666 list_for_each(p, &subs->fmt_list) {
1667 struct audioformat *fp;
1668 fp = list_entry(p, struct audioformat, list);
Pavel Machek07f51a72008-04-14 13:15:56 +02001669 if (!hw_check_valid_format(params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 continue;
1671 if (changed++) {
1672 if (rmin > fp->channels)
1673 rmin = fp->channels;
1674 if (rmax < fp->channels)
1675 rmax = fp->channels;
1676 } else {
1677 rmin = fp->channels;
1678 rmax = fp->channels;
1679 }
1680 }
1681
Pavel Machek07f51a72008-04-14 13:15:56 +02001682 if (!changed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 hwc_debug(" --> get empty\n");
1684 it->empty = 1;
1685 return -EINVAL;
1686 }
1687
1688 changed = 0;
1689 if (it->min < rmin) {
1690 it->min = rmin;
1691 it->openmin = 0;
1692 changed = 1;
1693 }
1694 if (it->max > rmax) {
1695 it->max = rmax;
1696 it->openmax = 0;
1697 changed = 1;
1698 }
1699 if (snd_interval_checkempty(it)) {
1700 it->empty = 1;
1701 return -EINVAL;
1702 }
1703 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1704 return changed;
1705}
1706
Takashi Iwai86e07d32005-11-17 15:08:02 +01001707static int hw_rule_format(struct snd_pcm_hw_params *params,
1708 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001710 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001712 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 u64 fbits;
1714 u32 oldbits[2];
1715 int changed;
1716
1717 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1718 fbits = 0;
1719 list_for_each(p, &subs->fmt_list) {
1720 struct audioformat *fp;
1721 fp = list_entry(p, struct audioformat, list);
Pavel Machek07f51a72008-04-14 13:15:56 +02001722 if (!hw_check_valid_format(params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 continue;
1724 fbits |= (1ULL << fp->format);
1725 }
1726
1727 oldbits[0] = fmt->bits[0];
1728 oldbits[1] = fmt->bits[1];
1729 fmt->bits[0] &= (u32)fbits;
1730 fmt->bits[1] &= (u32)(fbits >> 32);
Pavel Machek07f51a72008-04-14 13:15:56 +02001731 if (!fmt->bits[0] && !fmt->bits[1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 hwc_debug(" --> get empty\n");
1733 return -EINVAL;
1734 }
1735 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1736 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1737 return changed;
1738}
1739
1740#define MAX_MASK 64
1741
1742/*
1743 * check whether the registered audio formats need special hw-constraints
1744 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001745static int check_hw_params_convention(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
1747 int i;
1748 u32 *channels;
1749 u32 *rates;
1750 u32 cmaster, rmaster;
1751 u32 rate_min = 0, rate_max = 0;
1752 struct list_head *p;
1753 int err = 1;
1754
1755 channels = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
1756 rates = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
Takashi Iwai5a220c82008-03-17 09:59:32 +01001757 if (!channels || !rates) {
1758 err = -ENOMEM;
Jim Meyeringff17e952008-03-04 15:25:11 -08001759 goto __out;
Takashi Iwai5a220c82008-03-17 09:59:32 +01001760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 list_for_each(p, &subs->fmt_list) {
1763 struct audioformat *f;
1764 f = list_entry(p, struct audioformat, list);
1765 /* unconventional channels? */
1766 if (f->channels > 32)
1767 goto __out;
1768 /* continuous rate min/max matches? */
1769 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1770 if (rate_min && f->rate_min != rate_min)
1771 goto __out;
1772 if (rate_max && f->rate_max != rate_max)
1773 goto __out;
1774 rate_min = f->rate_min;
1775 rate_max = f->rate_max;
1776 }
1777 /* combination of continuous rates and fixed rates? */
1778 if (rates[f->format] & SNDRV_PCM_RATE_CONTINUOUS) {
1779 if (f->rates != rates[f->format])
1780 goto __out;
1781 }
1782 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS) {
1783 if (rates[f->format] && rates[f->format] != f->rates)
1784 goto __out;
1785 }
Clemens Ladischeab2b552009-03-02 11:45:50 +01001786 channels[f->format] |= 1 << (f->channels - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 rates[f->format] |= f->rates;
Luke Rossa79eee82006-08-29 10:46:32 +02001788 /* needs knot? */
Clemens Ladisch918f3a02007-08-13 17:40:54 +02001789 if (f->rates & SNDRV_PCM_RATE_KNOT)
Luke Rossa79eee82006-08-29 10:46:32 +02001790 goto __out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
1792 /* check whether channels and rates match for all formats */
1793 cmaster = rmaster = 0;
1794 for (i = 0; i < MAX_MASK; i++) {
1795 if (cmaster != channels[i] && cmaster && channels[i])
1796 goto __out;
1797 if (rmaster != rates[i] && rmaster && rates[i])
1798 goto __out;
1799 if (channels[i])
1800 cmaster = channels[i];
1801 if (rates[i])
1802 rmaster = rates[i];
1803 }
1804 /* check whether channels match for all distinct rates */
1805 memset(channels, 0, MAX_MASK * sizeof(u32));
1806 list_for_each(p, &subs->fmt_list) {
1807 struct audioformat *f;
1808 f = list_entry(p, struct audioformat, list);
1809 if (f->rates & SNDRV_PCM_RATE_CONTINUOUS)
1810 continue;
1811 for (i = 0; i < 32; i++) {
1812 if (f->rates & (1 << i))
Clemens Ladischeab2b552009-03-02 11:45:50 +01001813 channels[i] |= 1 << (f->channels - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815 }
1816 cmaster = 0;
1817 for (i = 0; i < 32; i++) {
1818 if (cmaster != channels[i] && cmaster && channels[i])
1819 goto __out;
1820 if (channels[i])
1821 cmaster = channels[i];
1822 }
1823 err = 0;
1824
1825 __out:
1826 kfree(channels);
1827 kfree(rates);
1828 return err;
1829}
1830
Luke Rossa79eee82006-08-29 10:46:32 +02001831/*
1832 * If the device supports unusual bit rates, does the request meet these?
1833 */
1834static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1835 struct snd_usb_substream *subs)
1836{
Takashi Iwai8fec5602007-02-01 11:50:56 +01001837 struct audioformat *fp;
1838 int count = 0, needs_knot = 0;
Luke Rossa79eee82006-08-29 10:46:32 +02001839 int err;
1840
Takashi Iwai8fec5602007-02-01 11:50:56 +01001841 list_for_each_entry(fp, &subs->fmt_list, list) {
1842 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
1843 return 0;
1844 count += fp->nr_rates;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02001845 if (fp->rates & SNDRV_PCM_RATE_KNOT)
Takashi Iwai8fec5602007-02-01 11:50:56 +01001846 needs_knot = 1;
Luke Rossa79eee82006-08-29 10:46:32 +02001847 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01001848 if (!needs_knot)
1849 return 0;
1850
1851 subs->rate_list.count = count;
1852 subs->rate_list.list = kmalloc(sizeof(int) * count, GFP_KERNEL);
1853 subs->rate_list.mask = 0;
1854 count = 0;
1855 list_for_each_entry(fp, &subs->fmt_list, list) {
1856 int i;
1857 for (i = 0; i < fp->nr_rates; i++)
1858 subs->rate_list.list[count++] = fp->rate_table[i];
1859 }
1860 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1861 &subs->rate_list);
1862 if (err < 0)
1863 return err;
Luke Rossa79eee82006-08-29 10:46:32 +02001864
1865 return 0;
1866}
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869/*
1870 * set up the runtime hardware information.
1871 */
1872
Takashi Iwai86e07d32005-11-17 15:08:02 +01001873static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
1875 struct list_head *p;
1876 int err;
1877
1878 runtime->hw.formats = subs->formats;
1879
1880 runtime->hw.rate_min = 0x7fffffff;
1881 runtime->hw.rate_max = 0;
1882 runtime->hw.channels_min = 256;
1883 runtime->hw.channels_max = 0;
1884 runtime->hw.rates = 0;
1885 /* check min/max rates and channels */
1886 list_for_each(p, &subs->fmt_list) {
1887 struct audioformat *fp;
1888 fp = list_entry(p, struct audioformat, list);
1889 runtime->hw.rates |= fp->rates;
1890 if (runtime->hw.rate_min > fp->rate_min)
1891 runtime->hw.rate_min = fp->rate_min;
1892 if (runtime->hw.rate_max < fp->rate_max)
1893 runtime->hw.rate_max = fp->rate_max;
1894 if (runtime->hw.channels_min > fp->channels)
1895 runtime->hw.channels_min = fp->channels;
1896 if (runtime->hw.channels_max < fp->channels)
1897 runtime->hw.channels_max = fp->channels;
1898 if (fp->fmt_type == USB_FORMAT_TYPE_II && fp->frame_size > 0) {
1899 /* FIXME: there might be more than one audio formats... */
1900 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1901 fp->frame_size;
1902 }
1903 }
1904
1905 /* set the period time minimum 1ms */
Takashi Iwai81c48992007-05-03 12:26:14 +02001906 /* FIXME: high-speed mode allows 125us minimum period, but many parts
1907 * in the current code assume the 1ms period.
1908 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
Clemens Ladischf3990e62009-02-20 09:32:40 +01001910 1000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 /*(nrpacks * MAX_URBS) * 1000*/ UINT_MAX);
1912
Takashi Iwai5a220c82008-03-17 09:59:32 +01001913 err = check_hw_params_convention(subs);
1914 if (err < 0)
1915 return err;
1916 else if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 hwc_debug("setting extra hw constraints...\n");
1918 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1919 hw_rule_rate, subs,
1920 SNDRV_PCM_HW_PARAM_FORMAT,
1921 SNDRV_PCM_HW_PARAM_CHANNELS,
1922 -1)) < 0)
1923 return err;
1924 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1925 hw_rule_channels, subs,
1926 SNDRV_PCM_HW_PARAM_FORMAT,
1927 SNDRV_PCM_HW_PARAM_RATE,
1928 -1)) < 0)
1929 return err;
1930 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1931 hw_rule_format, subs,
1932 SNDRV_PCM_HW_PARAM_RATE,
1933 SNDRV_PCM_HW_PARAM_CHANNELS,
1934 -1)) < 0)
1935 return err;
Luke Rossa79eee82006-08-29 10:46:32 +02001936 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
1937 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
1939 return 0;
1940}
1941
Clemens Ladisch1700f302006-10-04 13:41:25 +02001942static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001944 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1945 struct snd_pcm_runtime *runtime = substream->runtime;
1946 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948 subs->interface = -1;
1949 subs->format = 0;
Clemens Ladisch1700f302006-10-04 13:41:25 +02001950 runtime->hw = snd_usb_hardware;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 runtime->private_data = subs;
1952 subs->pcm_substream = substream;
1953 return setup_hw_info(runtime, subs);
1954}
1955
Takashi Iwai86e07d32005-11-17 15:08:02 +01001956static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001958 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1959 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 if (subs->interface >= 0) {
1962 usb_set_interface(subs->dev, subs->interface, 0);
1963 subs->interface = -1;
1964 }
1965 subs->pcm_substream = NULL;
1966 return 0;
1967}
1968
Takashi Iwai86e07d32005-11-17 15:08:02 +01001969static int snd_usb_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001971 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
Takashi Iwai86e07d32005-11-17 15:08:02 +01001974static int snd_usb_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
1976 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1977}
1978
Takashi Iwai86e07d32005-11-17 15:08:02 +01001979static int snd_usb_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001981 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982}
1983
Takashi Iwai86e07d32005-11-17 15:08:02 +01001984static int snd_usb_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1987}
1988
Takashi Iwai86e07d32005-11-17 15:08:02 +01001989static struct snd_pcm_ops snd_usb_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 .open = snd_usb_playback_open,
1991 .close = snd_usb_playback_close,
1992 .ioctl = snd_pcm_lib_ioctl,
1993 .hw_params = snd_usb_hw_params,
1994 .hw_free = snd_usb_hw_free,
1995 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001996 .trigger = snd_usb_pcm_playback_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02001998 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999};
2000
Takashi Iwai86e07d32005-11-17 15:08:02 +01002001static struct snd_pcm_ops snd_usb_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 .open = snd_usb_capture_open,
2003 .close = snd_usb_capture_close,
2004 .ioctl = snd_pcm_lib_ioctl,
2005 .hw_params = snd_usb_hw_params,
2006 .hw_free = snd_usb_hw_free,
2007 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01002008 .trigger = snd_usb_pcm_capture_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 .pointer = snd_usb_pcm_pointer,
Clemens Ladisch6207e512005-08-15 08:35:25 +02002010 .page = snd_pcm_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011};
2012
2013
2014
2015/*
2016 * helper functions
2017 */
2018
2019/*
2020 * combine bytes and get an integer value
2021 */
2022unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size)
2023{
2024 switch (size) {
2025 case 1: return *bytes;
2026 case 2: return combine_word(bytes);
2027 case 3: return combine_triple(bytes);
2028 case 4: return combine_quad(bytes);
2029 default: return 0;
2030 }
2031}
2032
2033/*
2034 * parse descriptor buffer and return the pointer starting the given
2035 * descriptor type.
2036 */
2037void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype)
2038{
2039 u8 *p, *end, *next;
2040
2041 p = descstart;
2042 end = p + desclen;
2043 for (; p < end;) {
2044 if (p[0] < 2)
2045 return NULL;
2046 next = p + p[0];
2047 if (next > end)
2048 return NULL;
2049 if (p[1] == dtype && (!after || (void *)p > after)) {
2050 return p;
2051 }
2052 p = next;
2053 }
2054 return NULL;
2055}
2056
2057/*
2058 * find a class-specified interface descriptor with the given subtype.
2059 */
2060void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype)
2061{
2062 unsigned char *p = after;
2063
2064 while ((p = snd_usb_find_desc(buffer, buflen, p,
2065 USB_DT_CS_INTERFACE)) != NULL) {
2066 if (p[0] >= 3 && p[2] == dsubtype)
2067 return p;
2068 }
2069 return NULL;
2070}
2071
2072/*
2073 * Wrapper for usb_control_msg().
2074 * Allocates a temp buffer to prevent dmaing from/to the stack.
2075 */
2076int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
2077 __u8 requesttype, __u16 value, __u16 index, void *data,
2078 __u16 size, int timeout)
2079{
2080 int err;
2081 void *buf = NULL;
2082
2083 if (size > 0) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002084 buf = kmemdup(data, size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 if (!buf)
2086 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
2088 err = usb_control_msg(dev, pipe, request, requesttype,
2089 value, index, buf, size, timeout);
2090 if (size > 0) {
2091 memcpy(data, buf, size);
2092 kfree(buf);
2093 }
2094 return err;
2095}
2096
2097
2098/*
2099 * entry point for linux usb interface
2100 */
2101
2102static int usb_audio_probe(struct usb_interface *intf,
2103 const struct usb_device_id *id);
2104static void usb_audio_disconnect(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002105
2106#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01002107static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message);
2108static int usb_audio_resume(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002109#else
2110#define usb_audio_suspend NULL
2111#define usb_audio_resume NULL
2112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114static struct usb_device_id usb_audio_ids [] = {
2115#include "usbquirks.h"
2116 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
2117 .bInterfaceClass = USB_CLASS_AUDIO,
2118 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL },
2119 { } /* Terminating entry */
2120};
2121
2122MODULE_DEVICE_TABLE (usb, usb_audio_ids);
2123
2124static struct usb_driver usb_audio_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 .name = "snd-usb-audio",
2126 .probe = usb_audio_probe,
2127 .disconnect = usb_audio_disconnect,
Oliver Neukumf85bf292007-12-14 14:42:41 +01002128 .suspend = usb_audio_suspend,
2129 .resume = usb_audio_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 .id_table = usb_audio_ids,
2131};
2132
2133
Takashi Iwai727f3172006-08-04 19:08:03 +02002134#if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS)
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136/*
2137 * proc interface for list the supported pcm formats
2138 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002139static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
2141 struct list_head *p;
2142 static char *sync_types[4] = {
2143 "NONE", "ASYNC", "ADAPTIVE", "SYNC"
2144 };
2145
2146 list_for_each(p, &subs->fmt_list) {
2147 struct audioformat *fp;
2148 fp = list_entry(p, struct audioformat, list);
2149 snd_iprintf(buffer, " Interface %d\n", fp->iface);
2150 snd_iprintf(buffer, " Altset %d\n", fp->altsetting);
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002151 snd_iprintf(buffer, " Format: %#x\n", fp->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 snd_iprintf(buffer, " Channels: %d\n", fp->channels);
2153 snd_iprintf(buffer, " Endpoint: %d %s (%s)\n",
2154 fp->endpoint & USB_ENDPOINT_NUMBER_MASK,
2155 fp->endpoint & USB_DIR_IN ? "IN" : "OUT",
2156 sync_types[(fp->ep_attr & EP_ATTR_MASK) >> 2]);
2157 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) {
2158 snd_iprintf(buffer, " Rates: %d - %d (continuous)\n",
2159 fp->rate_min, fp->rate_max);
2160 } else {
2161 unsigned int i;
2162 snd_iprintf(buffer, " Rates: ");
2163 for (i = 0; i < fp->nr_rates; i++) {
2164 if (i > 0)
2165 snd_iprintf(buffer, ", ");
2166 snd_iprintf(buffer, "%d", fp->rate_table[i]);
2167 }
2168 snd_iprintf(buffer, "\n");
2169 }
2170 // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize);
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002171 // snd_iprintf(buffer, " EP Attribute = %#x\n", fp->attributes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 }
2173}
2174
Takashi Iwai86e07d32005-11-17 15:08:02 +01002175static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176{
2177 if (subs->running) {
2178 unsigned int i;
2179 snd_iprintf(buffer, " Status: Running\n");
2180 snd_iprintf(buffer, " Interface = %d\n", subs->interface);
2181 snd_iprintf(buffer, " Altset = %d\n", subs->format);
2182 snd_iprintf(buffer, " URBs = %d [ ", subs->nurbs);
2183 for (i = 0; i < subs->nurbs; i++)
2184 snd_iprintf(buffer, "%d ", subs->dataurb[i].packets);
2185 snd_iprintf(buffer, "]\n");
2186 snd_iprintf(buffer, " Packet Size = %d\n", subs->curpacksize);
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002187 snd_iprintf(buffer, " Momentary freq = %u Hz (%#x.%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 snd_usb_get_speed(subs->dev) == USB_SPEED_FULL
2189 ? get_full_speed_hz(subs->freqm)
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002190 : get_high_speed_hz(subs->freqm),
2191 subs->freqm >> 16, subs->freqm & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 } else {
2193 snd_iprintf(buffer, " Status: Stop\n");
2194 }
2195}
2196
Takashi Iwai86e07d32005-11-17 15:08:02 +01002197static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002199 struct snd_usb_stream *stream = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
2201 snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name);
2202
2203 if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) {
2204 snd_iprintf(buffer, "\nPlayback:\n");
2205 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2206 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2207 }
2208 if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) {
2209 snd_iprintf(buffer, "\nCapture:\n");
2210 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2211 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2212 }
2213}
2214
Takashi Iwai86e07d32005-11-17 15:08:02 +01002215static void proc_pcm_format_add(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002217 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 char name[32];
Takashi Iwai86e07d32005-11-17 15:08:02 +01002219 struct snd_card *card = stream->chip->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
2221 sprintf(name, "stream%d", stream->pcm_index);
Pavel Machek07f51a72008-04-14 13:15:56 +02002222 if (!snd_card_proc_new(card, name, &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002223 snd_info_set_text_ops(entry, stream, proc_pcm_format_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224}
2225
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002226#else
2227
2228static inline void proc_pcm_format_add(struct snd_usb_stream *stream)
2229{
2230}
2231
2232#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234/*
2235 * initialize the substream instance.
2236 */
2237
Takashi Iwai86e07d32005-11-17 15:08:02 +01002238static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002240 struct snd_usb_substream *subs = &as->substream[stream];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242 INIT_LIST_HEAD(&subs->fmt_list);
2243 spin_lock_init(&subs->lock);
2244
2245 subs->stream = as;
2246 subs->direction = stream;
2247 subs->dev = as->chip->dev;
Clemens Ladischd5132022008-02-25 11:01:00 +01002248 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 subs->ops = audio_urb_ops[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002250 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 subs->ops = audio_urb_ops_high_speed[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002252 switch (as->chip->usb_id) {
2253 case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
2254 case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
Eran Tromer97c889a2008-09-26 01:07:03 -04002255 case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */
Clemens Ladischd5132022008-02-25 11:01:00 +01002256 subs->ops.retire_sync = retire_playback_sync_urb_hs_emu;
2257 break;
2258 }
2259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 snd_pcm_set_ops(as->pcm, stream,
2261 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2262 &snd_usb_playback_ops : &snd_usb_capture_ops);
2263
2264 list_add_tail(&fp->list, &subs->fmt_list);
2265 subs->formats |= 1ULL << fp->format;
2266 subs->endpoint = fp->endpoint;
2267 subs->num_formats++;
2268 subs->fmt_type = fp->fmt_type;
2269}
2270
2271
2272/*
2273 * free a substream
2274 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002275static void free_substream(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
2277 struct list_head *p, *n;
2278
Pavel Machek07f51a72008-04-14 13:15:56 +02002279 if (!subs->num_formats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 return; /* not initialized */
2281 list_for_each_safe(p, n, &subs->fmt_list) {
2282 struct audioformat *fp = list_entry(p, struct audioformat, list);
2283 kfree(fp->rate_table);
2284 kfree(fp);
2285 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01002286 kfree(subs->rate_list.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287}
2288
2289
2290/*
2291 * free a usb stream instance
2292 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002293static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294{
2295 free_substream(&stream->substream[0]);
2296 free_substream(&stream->substream[1]);
2297 list_del(&stream->list);
2298 kfree(stream);
2299}
2300
Takashi Iwai86e07d32005-11-17 15:08:02 +01002301static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002303 struct snd_usb_stream *stream = pcm->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 if (stream) {
2305 stream->pcm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 snd_usb_audio_stream_free(stream);
2307 }
2308}
2309
2310
2311/*
2312 * add this endpoint to the chip instance.
2313 * if a stream with the same endpoint already exists, append to it.
2314 * if not, create a new pcm stream.
2315 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002316static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
2318 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002319 struct snd_usb_stream *as;
2320 struct snd_usb_substream *subs;
2321 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 int err;
2323
2324 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002325 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (as->fmt_type != fp->fmt_type)
2327 continue;
2328 subs = &as->substream[stream];
Pavel Machek07f51a72008-04-14 13:15:56 +02002329 if (!subs->endpoint)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 continue;
2331 if (subs->endpoint == fp->endpoint) {
2332 list_add_tail(&fp->list, &subs->fmt_list);
2333 subs->num_formats++;
2334 subs->formats |= 1ULL << fp->format;
2335 return 0;
2336 }
2337 }
2338 /* look for an empty stream */
2339 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002340 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 if (as->fmt_type != fp->fmt_type)
2342 continue;
2343 subs = &as->substream[stream];
2344 if (subs->endpoint)
2345 continue;
2346 err = snd_pcm_new_stream(as->pcm, stream, 1);
2347 if (err < 0)
2348 return err;
2349 init_substream(as, stream, fp);
2350 return 0;
2351 }
2352
2353 /* create a new pcm */
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002354 as = kzalloc(sizeof(*as), GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02002355 if (!as)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 as->pcm_index = chip->pcm_devs;
2358 as->chip = chip;
2359 as->fmt_type = fp->fmt_type;
2360 err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
2361 stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
2362 stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
2363 &pcm);
2364 if (err < 0) {
2365 kfree(as);
2366 return err;
2367 }
2368 as->pcm = pcm;
2369 pcm->private_data = as;
2370 pcm->private_free = snd_usb_audio_pcm_free;
2371 pcm->info_flags = 0;
2372 if (chip->pcm_devs > 0)
2373 sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
2374 else
2375 strcpy(pcm->name, "USB Audio");
2376
2377 init_substream(as, stream, fp);
2378
2379 list_add(&as->list, &chip->pcm_list);
2380 chip->pcm_devs++;
2381
2382 proc_pcm_format_add(as);
2383
2384 return 0;
2385}
2386
2387
2388/*
2389 * check if the device uses big-endian samples
2390 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002391static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392{
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002393 switch (chip->usb_id) {
2394 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
2395 if (fp->endpoint & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 return 1;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002397 break;
2398 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02002399 if (device_setup[chip->index] == 0x00 ||
2400 fp->altsetting==1 || fp->altsetting==2 || fp->altsetting==3)
2401 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 }
2403 return 0;
2404}
2405
2406/*
2407 * parse the audio format type I descriptor
2408 * and returns the corresponding pcm format
2409 *
2410 * @dev: usb device
2411 * @fp: audioformat record
2412 * @format: the format tag (wFormatTag)
2413 * @fmt: the format type descriptor
2414 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002415static int parse_audio_format_i_type(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 int format, unsigned char *fmt)
2417{
2418 int pcm_format;
2419 int sample_width, sample_bytes;
2420
2421 /* FIXME: correct endianess and sign? */
2422 pcm_format = -1;
2423 sample_width = fmt[6];
2424 sample_bytes = fmt[5];
2425 switch (format) {
2426 case 0: /* some devices don't define this correctly... */
2427 snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002428 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 /* fall-through */
2430 case USB_AUDIO_FORMAT_PCM:
2431 if (sample_width > sample_bytes * 8) {
2432 snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002433 chip->dev->devnum, fp->iface, fp->altsetting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 sample_width, sample_bytes);
2435 }
2436 /* check the format byte size */
2437 switch (fmt[5]) {
2438 case 1:
2439 pcm_format = SNDRV_PCM_FORMAT_S8;
2440 break;
2441 case 2:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002442 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 pcm_format = SNDRV_PCM_FORMAT_S16_BE; /* grrr, big endian!! */
2444 else
2445 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2446 break;
2447 case 3:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002448 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */
2450 else
2451 pcm_format = SNDRV_PCM_FORMAT_S24_3LE;
2452 break;
2453 case 4:
2454 pcm_format = SNDRV_PCM_FORMAT_S32_LE;
2455 break;
2456 default:
2457 snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002458 chip->dev->devnum, fp->iface,
2459 fp->altsetting, sample_width, sample_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 break;
2461 }
2462 break;
2463 case USB_AUDIO_FORMAT_PCM8:
Pavel Machek2a56f512008-04-14 13:14:22 +02002464 pcm_format = SNDRV_PCM_FORMAT_U8;
2465
2466 /* Dallas DS4201 workaround: it advertises U8 format, but really
2467 supports S8. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002468 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 pcm_format = SNDRV_PCM_FORMAT_S8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 break;
2471 case USB_AUDIO_FORMAT_IEEE_FLOAT:
2472 pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE;
2473 break;
2474 case USB_AUDIO_FORMAT_ALAW:
2475 pcm_format = SNDRV_PCM_FORMAT_A_LAW;
2476 break;
2477 case USB_AUDIO_FORMAT_MU_LAW:
2478 pcm_format = SNDRV_PCM_FORMAT_MU_LAW;
2479 break;
2480 default:
2481 snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002482 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 break;
2484 }
2485 return pcm_format;
2486}
2487
2488
2489/*
2490 * parse the format descriptor and stores the possible sample rates
2491 * on the audioformat table.
2492 *
2493 * @dev: usb device
2494 * @fp: audioformat record
2495 * @fmt: the format descriptor
2496 * @offset: the start offset of descriptor pointing the rate type
2497 * (7 for type I and II, 8 for type II)
2498 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002499static int parse_audio_format_rates(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 unsigned char *fmt, int offset)
2501{
2502 int nr_rates = fmt[offset];
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002503
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
2505 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002506 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 return -1;
2508 }
2509
2510 if (nr_rates) {
2511 /*
2512 * build the rate table and bitmap flags
2513 */
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002514 int r, idx;
Gregor Jasnybeb60112007-01-31 12:27:39 +01002515 unsigned int nonzero_rates = 0;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002516
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
2518 if (fp->rate_table == NULL) {
2519 snd_printk(KERN_ERR "cannot malloc\n");
2520 return -1;
2521 }
2522
2523 fp->nr_rates = nr_rates;
2524 fp->rate_min = fp->rate_max = combine_triple(&fmt[8]);
2525 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
Clemens Ladisch987411b2006-11-20 14:14:39 +01002526 unsigned int rate = combine_triple(&fmt[idx]);
2527 /* C-Media CM6501 mislabels its 96 kHz altsetting */
2528 if (rate == 48000 && nr_rates == 1 &&
2529 chip->usb_id == USB_ID(0x0d8c, 0x0201) &&
2530 fp->altsetting == 5 && fp->maxpacksize == 392)
2531 rate = 96000;
2532 fp->rate_table[r] = rate;
Gregor Jasnybeb60112007-01-31 12:27:39 +01002533 nonzero_rates |= rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 if (rate < fp->rate_min)
2535 fp->rate_min = rate;
2536 else if (rate > fp->rate_max)
2537 fp->rate_max = rate;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002538 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
Gregor Jasnybeb60112007-01-31 12:27:39 +01002540 if (!nonzero_rates) {
2541 hwc_debug("All rates were zero. Skipping format!\n");
2542 return -1;
2543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 } else {
2545 /* continuous rates */
2546 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
2547 fp->rate_min = combine_triple(&fmt[offset + 1]);
2548 fp->rate_max = combine_triple(&fmt[offset + 4]);
2549 }
2550 return 0;
2551}
2552
2553/*
2554 * parse the format type I and III descriptors
2555 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002556static int parse_audio_format_i(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 int format, unsigned char *fmt)
2558{
2559 int pcm_format;
2560
2561 if (fmt[3] == USB_FORMAT_TYPE_III) {
2562 /* FIXME: the format type is really IECxxx
2563 * but we give normal PCM format to get the existing
2564 * apps working...
2565 */
Thibault Le Meurcac19c32007-07-13 11:50:23 +02002566 switch (chip->usb_id) {
2567
2568 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2569 if (device_setup[chip->index] == 0x00 &&
2570 fp->altsetting == 6)
2571 pcm_format = SNDRV_PCM_FORMAT_S16_BE;
2572 else
2573 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2574 break;
2575 default:
2576 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 } else {
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002579 pcm_format = parse_audio_format_i_type(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 if (pcm_format < 0)
2581 return -1;
2582 }
2583 fp->format = pcm_format;
2584 fp->channels = fmt[4];
2585 if (fp->channels < 1) {
2586 snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002587 chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 return -1;
2589 }
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002590 return parse_audio_format_rates(chip, fp, fmt, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591}
2592
2593/*
2594 * prase the format type II descriptor
2595 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002596static int parse_audio_format_ii(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 int format, unsigned char *fmt)
2598{
2599 int brate, framesize;
2600 switch (format) {
2601 case USB_AUDIO_FORMAT_AC3:
2602 /* FIXME: there is no AC3 format defined yet */
2603 // fp->format = SNDRV_PCM_FORMAT_AC3;
2604 fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */
2605 break;
2606 case USB_AUDIO_FORMAT_MPEG:
2607 fp->format = SNDRV_PCM_FORMAT_MPEG;
2608 break;
2609 default:
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002610 snd_printd(KERN_INFO "%d:%u:%d : unknown format tag %#x is detected. processed as MPEG.\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002611 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 fp->format = SNDRV_PCM_FORMAT_MPEG;
2613 break;
2614 }
2615 fp->channels = 1;
2616 brate = combine_word(&fmt[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */
2617 framesize = combine_word(&fmt[6]); /* fmt[6,7]: wSamplesPerFrame */
2618 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
2619 fp->frame_size = framesize;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002620 return parse_audio_format_rates(chip, fp, fmt, 8); /* fmt[8..] sample rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621}
2622
Takashi Iwai86e07d32005-11-17 15:08:02 +01002623static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 int format, unsigned char *fmt, int stream)
2625{
2626 int err;
2627
2628 switch (fmt[3]) {
2629 case USB_FORMAT_TYPE_I:
2630 case USB_FORMAT_TYPE_III:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002631 err = parse_audio_format_i(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 break;
2633 case USB_FORMAT_TYPE_II:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002634 err = parse_audio_format_ii(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 break;
2636 default:
2637 snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002638 chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 return -1;
2640 }
2641 fp->fmt_type = fmt[3];
2642 if (err < 0)
2643 return err;
2644#if 1
Clemens Ladisch33159372006-01-13 08:11:22 +01002645 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 /* extigy apparently supports sample rates other than 48k
2647 * but not in ordinary way. so we enable only 48k atm.
2648 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002649 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
Clemens Ladisch33159372006-01-13 08:11:22 +01002650 chip->usb_id == USB_ID(0x041e, 0x3020) ||
2651 chip->usb_id == USB_ID(0x041e, 0x3061)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 if (fmt[3] == USB_FORMAT_TYPE_I &&
Clemens Ladisch8c1872d2005-04-28 09:31:53 +02002653 fp->rates != SNDRV_PCM_RATE_48000 &&
2654 fp->rates != SNDRV_PCM_RATE_96000)
Clemens Ladischb4d3f9d2005-06-27 08:18:27 +02002655 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 }
2657#endif
2658 return 0;
2659}
2660
Thibault LE MEURe3113342006-03-14 11:44:53 +01002661static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
2662 int iface, int altno);
Takashi Iwai86e07d32005-11-17 15:08:02 +01002663static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664{
2665 struct usb_device *dev;
2666 struct usb_interface *iface;
2667 struct usb_host_interface *alts;
2668 struct usb_interface_descriptor *altsd;
2669 int i, altno, err, stream;
2670 int format;
2671 struct audioformat *fp;
2672 unsigned char *fmt, *csep;
Pavel Machekb9d43bc2008-04-14 13:12:47 +02002673 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
2675 dev = chip->dev;
2676
2677 /* parse the interface's altsettings */
2678 iface = usb_ifnum_to_if(dev, iface_no);
Pavel Machekb9d43bc2008-04-14 13:12:47 +02002679
2680 num = iface->num_altsetting;
2681
2682 /*
2683 * Dallas DS4201 workaround: It presents 5 altsettings, but the last
2684 * one misses syncpipe, and does not produce any sound.
2685 */
2686 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
2687 num = 4;
2688
2689 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 alts = &iface->altsetting[i];
2691 altsd = get_iface_desc(alts);
2692 /* skip invalid one */
2693 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2694 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2695 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING &&
2696 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
2697 altsd->bNumEndpoints < 1 ||
2698 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
2699 continue;
2700 /* must be isochronous */
2701 if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
2702 USB_ENDPOINT_XFER_ISOC)
2703 continue;
2704 /* check direction */
2705 stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
2706 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2707 altno = altsd->bAlternateSetting;
Thibault LE MEURe3113342006-03-14 11:44:53 +01002708
2709 /* audiophile usb: skip altsets incompatible with device_setup
2710 */
2711 if (chip->usb_id == USB_ID(0x0763, 0x2003) &&
2712 audiophile_skip_setting_quirk(chip, iface_no, altno))
2713 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715 /* get audio formats */
2716 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, AS_GENERAL);
2717 if (!fmt) {
2718 snd_printk(KERN_ERR "%d:%u:%d : AS_GENERAL descriptor not found\n",
2719 dev->devnum, iface_no, altno);
2720 continue;
2721 }
2722
2723 if (fmt[0] < 7) {
2724 snd_printk(KERN_ERR "%d:%u:%d : invalid AS_GENERAL desc\n",
2725 dev->devnum, iface_no, altno);
2726 continue;
2727 }
2728
2729 format = (fmt[6] << 8) | fmt[5]; /* remember the format value */
2730
2731 /* get format type */
2732 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, FORMAT_TYPE);
2733 if (!fmt) {
2734 snd_printk(KERN_ERR "%d:%u:%d : no FORMAT_TYPE desc\n",
2735 dev->devnum, iface_no, altno);
2736 continue;
2737 }
2738 if (fmt[0] < 8) {
2739 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
2740 dev->devnum, iface_no, altno);
2741 continue;
2742 }
2743
2744 csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
2745 /* Creamware Noah has this descriptor after the 2nd endpoint */
2746 if (!csep && altsd->bNumEndpoints >= 2)
2747 csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
2748 if (!csep || csep[0] < 7 || csep[2] != EP_GENERAL) {
Takashi Iwaif8c75792006-05-18 14:47:03 +02002749 snd_printk(KERN_WARNING "%d:%u:%d : no or invalid"
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002750 " class specific endpoint descriptor\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 dev->devnum, iface_no, altno);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002752 csep = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
2754
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002755 fp = kzalloc(sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (! fp) {
2757 snd_printk(KERN_ERR "cannot malloc\n");
2758 return -ENOMEM;
2759 }
2760
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 fp->iface = iface_no;
2762 fp->altsetting = altno;
2763 fp->altset_idx = i;
2764 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2765 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Clemens Ladisch573567e2005-06-27 08:17:30 +02002767 if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
2768 fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
2769 * (fp->maxpacksize & 0x7ff);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002770 fp->attributes = csep ? csep[3] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
2772 /* some quirks for attributes here */
2773
Clemens Ladischc3f93292005-05-04 14:56:04 +02002774 switch (chip->usb_id) {
2775 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 /* Optoplay sets the sample rate attribute although
2777 * it seems not supporting it in fact.
2778 */
2779 fp->attributes &= ~EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002780 break;
2781 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
2782 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 /* doesn't set the sample rate attribute, but supports it */
2784 fp->attributes |= EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002785 break;
2786 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
2787 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
2788 an older model 77d:223) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 /*
2790 * plantronics headset and Griffin iMic have set adaptive-in
2791 * although it's really not...
2792 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 fp->ep_attr &= ~EP_ATTR_MASK;
2794 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2795 fp->ep_attr |= EP_ATTR_ADAPTIVE;
2796 else
2797 fp->ep_attr |= EP_ATTR_SYNC;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002798 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 }
2800
2801 /* ok, let's parse further... */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002802 if (parse_audio_format(chip, fp, format, fmt, stream) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 kfree(fp->rate_table);
2804 kfree(fp);
2805 continue;
2806 }
2807
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002808 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 -07002809 err = add_audio_endpoint(chip, stream, fp);
2810 if (err < 0) {
2811 kfree(fp->rate_table);
2812 kfree(fp);
2813 return err;
2814 }
2815 /* try to set the interface... */
2816 usb_set_interface(chip->dev, iface_no, altno);
2817 init_usb_pitch(chip->dev, iface_no, alts, fp);
2818 init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max);
2819 }
2820 return 0;
2821}
2822
2823
2824/*
2825 * disconnect streams
2826 * called from snd_usb_audio_disconnect()
2827 */
Clemens Ladischee733392005-04-25 10:34:13 +02002828static void snd_usb_stream_disconnect(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829{
2830 int idx;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002831 struct snd_usb_stream *as;
2832 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Takashi Iwai86e07d32005-11-17 15:08:02 +01002834 as = list_entry(head, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 for (idx = 0; idx < 2; idx++) {
2836 subs = &as->substream[idx];
2837 if (!subs->num_formats)
2838 return;
2839 release_substream_urbs(subs, 1);
2840 subs->interface = -1;
2841 }
2842}
2843
2844/*
2845 * parse audio control descriptor and create pcm/midi streams
2846 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002847static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848{
2849 struct usb_device *dev = chip->dev;
2850 struct usb_host_interface *host_iface;
2851 struct usb_interface *iface;
2852 unsigned char *p1;
2853 int i, j;
2854
2855 /* find audiocontrol interface */
2856 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
2857 if (!(p1 = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen, NULL, HEADER))) {
2858 snd_printk(KERN_ERR "cannot find HEADER\n");
2859 return -EINVAL;
2860 }
2861 if (! p1[7] || p1[0] < 8 + p1[7]) {
2862 snd_printk(KERN_ERR "invalid HEADER\n");
2863 return -EINVAL;
2864 }
2865
2866 /*
2867 * parse all USB audio streaming interfaces
2868 */
2869 for (i = 0; i < p1[7]; i++) {
2870 struct usb_host_interface *alts;
2871 struct usb_interface_descriptor *altsd;
2872 j = p1[8 + i];
2873 iface = usb_ifnum_to_if(dev, j);
2874 if (!iface) {
2875 snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
2876 dev->devnum, ctrlif, j);
2877 continue;
2878 }
2879 if (usb_interface_claimed(iface)) {
2880 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n", dev->devnum, ctrlif, j);
2881 continue;
2882 }
2883 alts = &iface->altsetting[0];
2884 altsd = get_iface_desc(alts);
2885 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
2886 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
2887 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDI_STREAMING) {
2888 if (snd_usb_create_midi_interface(chip, iface, NULL) < 0) {
2889 snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n", dev->devnum, ctrlif, j);
2890 continue;
2891 }
2892 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2893 continue;
2894 }
2895 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2896 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2897 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING) {
2898 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n", dev->devnum, ctrlif, j, altsd->bInterfaceClass);
2899 /* skip non-supported classes */
2900 continue;
2901 }
Clemens Ladisch076639f2007-08-21 08:56:54 +02002902 if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
2903 snd_printk(KERN_ERR "low speed audio streaming not supported\n");
2904 continue;
2905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 if (! parse_audio_endpoints(chip, j)) {
2907 usb_set_interface(dev, j, 0); /* reset the current interface */
2908 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2909 }
2910 }
2911
2912 return 0;
2913}
2914
2915/*
2916 * create a stream for an endpoint/altsetting without proper descriptors
2917 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002918static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002920 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921{
2922 struct audioformat *fp;
2923 struct usb_host_interface *alts;
2924 int stream, err;
Al Virob4482a42007-10-14 19:35:40 +01002925 unsigned *rate_table = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002927 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 if (! fp) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002929 snd_printk(KERN_ERR "cannot memdup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 return -ENOMEM;
2931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 if (fp->nr_rates > 0) {
2933 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
2934 if (!rate_table) {
2935 kfree(fp);
2936 return -ENOMEM;
2937 }
2938 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
2939 fp->rate_table = rate_table;
2940 }
2941
2942 stream = (fp->endpoint & USB_DIR_IN)
2943 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2944 err = add_audio_endpoint(chip, stream, fp);
2945 if (err < 0) {
2946 kfree(fp);
2947 kfree(rate_table);
2948 return err;
2949 }
2950 if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
2951 fp->altset_idx >= iface->num_altsetting) {
2952 kfree(fp);
2953 kfree(rate_table);
2954 return -EINVAL;
2955 }
2956 alts = &iface->altsetting[fp->altset_idx];
2957 usb_set_interface(chip->dev, fp->iface, 0);
2958 init_usb_pitch(chip->dev, fp->iface, alts, fp);
2959 init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max);
2960 return 0;
2961}
2962
2963/*
2964 * create a stream for an interface with proper descriptors
2965 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002966static int create_standard_audio_quirk(struct snd_usb_audio *chip,
Clemens Ladischd1bda042005-09-14 08:36:03 +02002967 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002968 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969{
2970 struct usb_host_interface *alts;
2971 struct usb_interface_descriptor *altsd;
2972 int err;
2973
2974 alts = &iface->altsetting[0];
2975 altsd = get_iface_desc(alts);
Clemens Ladischd1bda042005-09-14 08:36:03 +02002976 err = parse_audio_endpoints(chip, altsd->bInterfaceNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 if (err < 0) {
2978 snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
2979 altsd->bInterfaceNumber, err);
2980 return err;
2981 }
Clemens Ladischd1bda042005-09-14 08:36:03 +02002982 /* reset the current interface */
2983 usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 return 0;
2985}
2986
2987/*
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02002988 * Create a stream for an Edirol UA-700/UA-25/UA-4FX interface.
2989 * The only way to detect the sample rate is by looking at wMaxPacketSize.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 */
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02002991static int create_uaxx_quirk(struct snd_usb_audio *chip,
2992 struct usb_interface *iface,
2993 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
2995 static const struct audioformat ua_format = {
2996 .format = SNDRV_PCM_FORMAT_S24_3LE,
2997 .channels = 2,
2998 .fmt_type = USB_FORMAT_TYPE_I,
2999 .altsetting = 1,
3000 .altset_idx = 1,
3001 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3002 };
3003 struct usb_host_interface *alts;
3004 struct usb_interface_descriptor *altsd;
3005 struct audioformat *fp;
3006 int stream, err;
3007
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003008 /* both PCM and MIDI interfaces have 2 or more altsettings */
3009 if (iface->num_altsetting < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 return -ENXIO;
3011 alts = &iface->altsetting[1];
3012 altsd = get_iface_desc(alts);
3013
Pedro Lopez-Cabanillas59b3db62008-10-07 20:54:18 +02003014 if (altsd->bNumEndpoints == 2) {
3015 static const struct snd_usb_midi_endpoint_info ua700_ep = {
3016 .out_cables = 0x0003,
3017 .in_cables = 0x0003
3018 };
3019 static const struct snd_usb_audio_quirk ua700_quirk = {
3020 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3021 .data = &ua700_ep
3022 };
3023 static const struct snd_usb_midi_endpoint_info uaxx_ep = {
3024 .out_cables = 0x0001,
3025 .in_cables = 0x0001
3026 };
3027 static const struct snd_usb_audio_quirk uaxx_quirk = {
3028 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3029 .data = &uaxx_ep
3030 };
3031 if (chip->usb_id == USB_ID(0x0582, 0x002b))
3032 return snd_usb_create_midi_interface(chip, iface,
3033 &ua700_quirk);
3034 else
3035 return snd_usb_create_midi_interface(chip, iface,
3036 &uaxx_quirk);
3037 }
3038
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 if (altsd->bNumEndpoints != 1)
3040 return -ENXIO;
3041
3042 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
3043 if (!fp)
3044 return -ENOMEM;
3045 memcpy(fp, &ua_format, sizeof(*fp));
3046
3047 fp->iface = altsd->bInterfaceNumber;
3048 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3049 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3050 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3051
3052 switch (fp->maxpacksize) {
3053 case 0x120:
3054 fp->rate_max = fp->rate_min = 44100;
3055 break;
3056 case 0x138:
3057 case 0x140:
3058 fp->rate_max = fp->rate_min = 48000;
3059 break;
3060 case 0x258:
3061 case 0x260:
3062 fp->rate_max = fp->rate_min = 96000;
3063 break;
3064 default:
3065 snd_printk(KERN_ERR "unknown sample rate\n");
3066 kfree(fp);
3067 return -ENXIO;
3068 }
3069
3070 stream = (fp->endpoint & USB_DIR_IN)
3071 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3072 err = add_audio_endpoint(chip, stream, fp);
3073 if (err < 0) {
3074 kfree(fp);
3075 return err;
3076 }
3077 usb_set_interface(chip->dev, fp->iface, 0);
3078 return 0;
3079}
3080
3081/*
3082 * Create a stream for an Edirol UA-1000 interface.
3083 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003084static int create_ua1000_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003085 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003086 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087{
3088 static const struct audioformat ua1000_format = {
3089 .format = SNDRV_PCM_FORMAT_S32_LE,
3090 .fmt_type = USB_FORMAT_TYPE_I,
3091 .altsetting = 1,
3092 .altset_idx = 1,
3093 .attributes = 0,
3094 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3095 };
3096 struct usb_host_interface *alts;
3097 struct usb_interface_descriptor *altsd;
3098 struct audioformat *fp;
3099 int stream, err;
3100
3101 if (iface->num_altsetting != 2)
3102 return -ENXIO;
3103 alts = &iface->altsetting[1];
3104 altsd = get_iface_desc(alts);
Ben Williamsonc4a87ef2006-06-19 17:20:09 +02003105 if (alts->extralen != 11 || alts->extra[1] != USB_DT_CS_INTERFACE ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 altsd->bNumEndpoints != 1)
3107 return -ENXIO;
3108
Alexey Dobriyan52978be2006-09-30 23:27:21 -07003109 fp = kmemdup(&ua1000_format, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 if (!fp)
3111 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
3113 fp->channels = alts->extra[4];
3114 fp->iface = altsd->bInterfaceNumber;
3115 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3116 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3117 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3118 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[8]);
3119
3120 stream = (fp->endpoint & USB_DIR_IN)
3121 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3122 err = add_audio_endpoint(chip, stream, fp);
3123 if (err < 0) {
3124 kfree(fp);
3125 return err;
3126 }
3127 /* FIXME: playback must be synchronized to capture */
3128 usb_set_interface(chip->dev, fp->iface, 0);
3129 return 0;
3130}
3131
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003132/*
3133 * Create a stream for an Edirol UA-101 interface.
3134 * Copy, paste and modify from Edirol UA-1000
3135 */
3136static int create_ua101_quirk(struct snd_usb_audio *chip,
3137 struct usb_interface *iface,
3138 const struct snd_usb_audio_quirk *quirk)
3139{
3140 static const struct audioformat ua101_format = {
3141 .format = SNDRV_PCM_FORMAT_S32_LE,
3142 .fmt_type = USB_FORMAT_TYPE_I,
3143 .altsetting = 1,
3144 .altset_idx = 1,
3145 .attributes = 0,
3146 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3147 };
3148 struct usb_host_interface *alts;
3149 struct usb_interface_descriptor *altsd;
3150 struct audioformat *fp;
3151 int stream, err;
3152
3153 if (iface->num_altsetting != 2)
3154 return -ENXIO;
3155 alts = &iface->altsetting[1];
3156 altsd = get_iface_desc(alts);
3157 if (alts->extralen != 18 || alts->extra[1] != USB_DT_CS_INTERFACE ||
3158 altsd->bNumEndpoints != 1)
3159 return -ENXIO;
3160
3161 fp = kmemdup(&ua101_format, sizeof(*fp), GFP_KERNEL);
3162 if (!fp)
3163 return -ENOMEM;
3164
3165 fp->channels = alts->extra[11];
3166 fp->iface = altsd->bInterfaceNumber;
3167 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3168 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3169 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3170 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[15]);
3171
3172 stream = (fp->endpoint & USB_DIR_IN)
3173 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3174 err = add_audio_endpoint(chip, stream, fp);
3175 if (err < 0) {
3176 kfree(fp);
3177 return err;
3178 }
3179 /* FIXME: playback must be synchronized to capture */
3180 usb_set_interface(chip->dev, fp->iface, 0);
3181 return 0;
3182}
3183
Takashi Iwai86e07d32005-11-17 15:08:02 +01003184static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003186 const struct snd_usb_audio_quirk *quirk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
3188/*
3189 * handle the quirks for the contained interfaces
3190 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003191static int create_composite_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003193 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194{
3195 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
3196 int err;
3197
3198 for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
3199 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
3200 if (!iface)
3201 continue;
3202 if (quirk->ifnum != probed_ifnum &&
3203 usb_interface_claimed(iface))
3204 continue;
3205 err = snd_usb_create_quirk(chip, iface, quirk);
3206 if (err < 0)
3207 return err;
3208 if (quirk->ifnum != probed_ifnum)
3209 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
3210 }
3211 return 0;
3212}
3213
Takashi Iwai86e07d32005-11-17 15:08:02 +01003214static int ignore_interface_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003215 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003216 const struct snd_usb_audio_quirk *quirk)
Clemens Ladisch854af952005-07-25 16:19:10 +02003217{
3218 return 0;
3219}
3220
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
3222/*
3223 * boot quirks
3224 */
3225
3226#define EXTIGY_FIRMWARE_SIZE_OLD 794
3227#define EXTIGY_FIRMWARE_SIZE_NEW 483
3228
3229static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
3230{
3231 struct usb_host_config *config = dev->actconfig;
3232 int err;
3233
3234 if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
3235 le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
3236 snd_printdd("sending Extigy boot sequence...\n");
3237 /* Send message to force it to reconnect with full interface. */
3238 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
3239 0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000);
3240 if (err < 0) snd_printdd("error sending boot message: %d\n", err);
3241 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
3242 &dev->descriptor, sizeof(dev->descriptor));
3243 config = dev->actconfig;
3244 if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
3245 err = usb_reset_configuration(dev);
3246 if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
3247 snd_printdd("extigy_boot: new boot length = %d\n",
3248 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
3249 return -ENODEV; /* quit this anyway */
3250 }
3251 return 0;
3252}
3253
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003254static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
3255{
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003256 u8 buf = 1;
3257
3258 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
3259 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3260 0, 0, &buf, 1, 1000);
3261 if (buf == 0) {
3262 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
3263 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3264 1, 2000, NULL, 0, 1000);
3265 return -ENODEV;
3266 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003267 return 0;
3268}
3269
Thibault LE MEURe3113342006-03-14 11:44:53 +01003270/*
Sam Revitche217e302006-06-23 15:10:18 +02003271 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
3272 * documented in the device's data sheet.
3273 */
3274static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value)
3275{
3276 u8 buf[4];
3277 buf[0] = 0x20;
3278 buf[1] = value & 0xff;
3279 buf[2] = (value >> 8) & 0xff;
3280 buf[3] = reg;
3281 return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION,
3282 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT,
3283 0, 0, &buf, 4, 1000);
3284}
3285
3286static int snd_usb_cm106_boot_quirk(struct usb_device *dev)
3287{
3288 /*
3289 * Enable line-out driver mode, set headphone source to front
3290 * channels, enable stereo mic.
3291 */
3292 return snd_usb_cm106_write_int_reg(dev, 2, 0x8004);
3293}
3294
3295
3296/*
Thibault LE MEURe3113342006-03-14 11:44:53 +01003297 * Setup quirks
3298 */
3299#define AUDIOPHILE_SET 0x01 /* if set, parse device_setup */
3300#define AUDIOPHILE_SET_DTS 0x02 /* if set, enable DTS Digital Output */
3301#define AUDIOPHILE_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
3302#define AUDIOPHILE_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */
3303#define AUDIOPHILE_SET_DI 0x10 /* if set, enable Digital Input */
3304#define AUDIOPHILE_SET_MASK 0x1F /* bit mask for setup value */
3305#define AUDIOPHILE_SET_24B_48K_DI 0x19 /* value for 24bits+48KHz+Digital Input */
3306#define AUDIOPHILE_SET_24B_48K_NOTDI 0x09 /* value for 24bits+48KHz+No Digital Input */
3307#define AUDIOPHILE_SET_16B_48K_DI 0x11 /* value for 16bits+48KHz+Digital Input */
3308#define AUDIOPHILE_SET_16B_48K_NOTDI 0x01 /* value for 16bits+48KHz+No Digital Input */
3309
3310static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
3311 int iface, int altno)
3312{
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02003313 /* Reset ALL ifaces to 0 altsetting.
3314 * Call it for every possible altsetting of every interface.
3315 */
3316 usb_set_interface(chip->dev, iface, 0);
3317
Thibault LE MEURe3113342006-03-14 11:44:53 +01003318 if (device_setup[chip->index] & AUDIOPHILE_SET) {
3319 if ((device_setup[chip->index] & AUDIOPHILE_SET_DTS)
3320 && altno != 6)
3321 return 1; /* skip this altsetting */
3322 if ((device_setup[chip->index] & AUDIOPHILE_SET_96K)
3323 && altno != 1)
3324 return 1; /* skip this altsetting */
3325 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3326 AUDIOPHILE_SET_24B_48K_DI && altno != 2)
3327 return 1; /* skip this altsetting */
3328 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3329 AUDIOPHILE_SET_24B_48K_NOTDI && altno != 3)
3330 return 1; /* skip this altsetting */
3331 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3332 AUDIOPHILE_SET_16B_48K_DI && altno != 4)
3333 return 1; /* skip this altsetting */
3334 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3335 AUDIOPHILE_SET_16B_48K_NOTDI && altno != 5)
3336 return 1; /* skip this altsetting */
3337 }
3338 return 0; /* keep this altsetting */
3339}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
3341/*
3342 * audio-interface quirks
3343 *
3344 * returns zero if no standard audio/MIDI parsing is needed.
3345 * returns a postive value if standard audio/midi interfaces are parsed
3346 * after this.
3347 * returns a negative value at error.
3348 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003349static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003351 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003353 typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *,
3354 const struct snd_usb_audio_quirk *);
Clemens Ladisch854af952005-07-25 16:19:10 +02003355 static const quirk_func_t quirk_funcs[] = {
3356 [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
3357 [QUIRK_COMPOSITE] = create_composite_quirk,
3358 [QUIRK_MIDI_STANDARD_INTERFACE] = snd_usb_create_midi_interface,
3359 [QUIRK_MIDI_FIXED_ENDPOINT] = snd_usb_create_midi_interface,
3360 [QUIRK_MIDI_YAMAHA] = snd_usb_create_midi_interface,
3361 [QUIRK_MIDI_MIDIMAN] = snd_usb_create_midi_interface,
3362 [QUIRK_MIDI_NOVATION] = snd_usb_create_midi_interface,
3363 [QUIRK_MIDI_RAW] = snd_usb_create_midi_interface,
3364 [QUIRK_MIDI_EMAGIC] = snd_usb_create_midi_interface,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01003365 [QUIRK_MIDI_CME] = snd_usb_create_midi_interface,
Clemens Ladischd1bda042005-09-14 08:36:03 +02003366 [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003367 [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003368 [QUIRK_AUDIO_EDIROL_UA1000] = create_ua1000_quirk,
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01003369 [QUIRK_AUDIO_EDIROL_UA101] = create_ua101_quirk,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003370 [QUIRK_AUDIO_EDIROL_UAXX] = create_uaxx_quirk
Clemens Ladisch854af952005-07-25 16:19:10 +02003371 };
3372
3373 if (quirk->type < QUIRK_TYPE_COUNT) {
3374 return quirk_funcs[quirk->type](chip, iface, quirk);
3375 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
3377 return -ENXIO;
3378 }
3379}
3380
3381
3382/*
3383 * common proc files to show the usb device info
3384 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003385static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003387 struct snd_usb_audio *chip = entry->private_data;
Pavel Machek07f51a72008-04-14 13:15:56 +02003388 if (!chip->shutdown)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum);
3390}
3391
Takashi Iwai86e07d32005-11-17 15:08:02 +01003392static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003394 struct snd_usb_audio *chip = entry->private_data;
Pavel Machek07f51a72008-04-14 13:15:56 +02003395 if (!chip->shutdown)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 snd_iprintf(buffer, "%04x:%04x\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003397 USB_ID_VENDOR(chip->usb_id),
3398 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399}
3400
Takashi Iwai86e07d32005-11-17 15:08:02 +01003401static void snd_usb_audio_create_proc(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003403 struct snd_info_entry *entry;
Pavel Machek07f51a72008-04-14 13:15:56 +02003404 if (!snd_card_proc_new(chip->card, "usbbus", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003405 snd_info_set_text_ops(entry, chip, proc_audio_usbbus_read);
Pavel Machek07f51a72008-04-14 13:15:56 +02003406 if (!snd_card_proc_new(chip->card, "usbid", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003407 snd_info_set_text_ops(entry, chip, proc_audio_usbid_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408}
3409
3410/*
3411 * free the chip instance
3412 *
3413 * here we have to do not much, since pcm and controls are already freed
3414 *
3415 */
3416
Takashi Iwai86e07d32005-11-17 15:08:02 +01003417static int snd_usb_audio_free(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418{
3419 kfree(chip);
3420 return 0;
3421}
3422
Takashi Iwai86e07d32005-11-17 15:08:02 +01003423static int snd_usb_audio_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003425 struct snd_usb_audio *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 return snd_usb_audio_free(chip);
3427}
3428
3429
3430/*
3431 * create a chip instance and set its names.
3432 */
3433static int snd_usb_audio_create(struct usb_device *dev, int idx,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003434 const struct snd_usb_audio_quirk *quirk,
3435 struct snd_usb_audio **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003437 struct snd_card *card;
3438 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 int err, len;
3440 char component[14];
Takashi Iwai86e07d32005-11-17 15:08:02 +01003441 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 .dev_free = snd_usb_audio_dev_free,
3443 };
3444
3445 *rchip = NULL;
3446
Clemens Ladisch076639f2007-08-21 08:56:54 +02003447 if (snd_usb_get_speed(dev) != USB_SPEED_LOW &&
3448 snd_usb_get_speed(dev) != USB_SPEED_FULL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 snd_usb_get_speed(dev) != USB_SPEED_HIGH) {
3450 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
3451 return -ENXIO;
3452 }
3453
3454 card = snd_card_new(index[idx], id[idx], THIS_MODULE, 0);
3455 if (card == NULL) {
3456 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
3457 return -ENOMEM;
3458 }
3459
Takashi Iwai561b2202005-09-09 14:22:34 +02003460 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 if (! chip) {
3462 snd_card_free(card);
3463 return -ENOMEM;
3464 }
3465
3466 chip->index = idx;
3467 chip->dev = dev;
3468 chip->card = card;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003469 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3470 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 INIT_LIST_HEAD(&chip->pcm_list);
3472 INIT_LIST_HEAD(&chip->midi_list);
Clemens Ladisch84957a82005-04-29 16:23:13 +02003473 INIT_LIST_HEAD(&chip->mixer_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
3475 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
3476 snd_usb_audio_free(chip);
3477 snd_card_free(card);
3478 return err;
3479 }
3480
3481 strcpy(card->driver, "USB-Audio");
3482 sprintf(component, "USB%04x:%04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003483 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 snd_component_add(card, component);
3485
3486 /* retrieve the device string as shortname */
3487 if (quirk && quirk->product_name) {
3488 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
3489 } else {
3490 if (!dev->descriptor.iProduct ||
3491 usb_string(dev, dev->descriptor.iProduct,
3492 card->shortname, sizeof(card->shortname)) <= 0) {
3493 /* no name available from anywhere, so use ID */
3494 sprintf(card->shortname, "USB Device %#04x:%#04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003495 USB_ID_VENDOR(chip->usb_id),
3496 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 }
3498 }
3499
3500 /* retrieve the vendor and device strings as longname */
3501 if (quirk && quirk->vendor_name) {
3502 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
3503 } else {
3504 if (dev->descriptor.iManufacturer)
3505 len = usb_string(dev, dev->descriptor.iManufacturer,
3506 card->longname, sizeof(card->longname));
3507 else
3508 len = 0;
3509 /* we don't really care if there isn't any vendor string */
3510 }
3511 if (len > 0)
3512 strlcat(card->longname, " ", sizeof(card->longname));
3513
3514 strlcat(card->longname, card->shortname, sizeof(card->longname));
3515
3516 len = strlcat(card->longname, " at ", sizeof(card->longname));
3517
3518 if (len < sizeof(card->longname))
3519 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
3520
3521 strlcat(card->longname,
Clemens Ladisch076639f2007-08-21 08:56:54 +02003522 snd_usb_get_speed(dev) == USB_SPEED_LOW ? ", low speed" :
3523 snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" :
3524 ", high speed",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 sizeof(card->longname));
3526
3527 snd_usb_audio_create_proc(chip);
3528
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 *rchip = chip;
3530 return 0;
3531}
3532
3533
3534/*
3535 * probe the active usb device
3536 *
3537 * note that this can be called multiple times per a device, when it
3538 * includes multiple audio control interfaces.
3539 *
3540 * thus we check the usb device pointer and creates the card instance
3541 * only at the first time. the successive calls of this function will
3542 * append the pcm interface to the corresponding card.
3543 */
3544static void *snd_usb_audio_probe(struct usb_device *dev,
3545 struct usb_interface *intf,
3546 const struct usb_device_id *usb_id)
3547{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003548 const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 int i, err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01003550 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 struct usb_host_interface *alts;
3552 int ifnum;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003553 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
3555 alts = &intf->altsetting[0];
3556 ifnum = get_iface_desc(alts)->bInterfaceNumber;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003557 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3558 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
3560 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
3561 goto __err_val;
3562
3563 /* SB Extigy needs special boot-up sequence */
3564 /* if more models come, this will go to the quirk list. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003565 if (id == USB_ID(0x041e, 0x3000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 if (snd_usb_extigy_boot_quirk(dev, intf) < 0)
3567 goto __err_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003569 /* SB Audigy 2 NX needs its own boot-up magic, too */
3570 if (id == USB_ID(0x041e, 0x3020)) {
3571 if (snd_usb_audigy2nx_boot_quirk(dev) < 0)
3572 goto __err_val;
3573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Sam Revitche217e302006-06-23 15:10:18 +02003575 /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
3576 if (id == USB_ID(0x10f5, 0x0200)) {
3577 if (snd_usb_cm106_boot_quirk(dev) < 0)
3578 goto __err_val;
3579 }
3580
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 /*
3582 * found a config. now register to ALSA
3583 */
3584
3585 /* check whether it's already registered */
3586 chip = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003587 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 for (i = 0; i < SNDRV_CARDS; i++) {
3589 if (usb_chip[i] && usb_chip[i]->dev == dev) {
3590 if (usb_chip[i]->shutdown) {
3591 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
3592 goto __error;
3593 }
3594 chip = usb_chip[i];
3595 break;
3596 }
3597 }
3598 if (! chip) {
3599 /* it's a fresh one.
3600 * now look for an empty slot and create a new card instance
3601 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 for (i = 0; i < SNDRV_CARDS; i++)
3603 if (enable[i] && ! usb_chip[i] &&
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003604 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
3605 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
3607 goto __error;
3608 }
Clemens Ladisch1dcd3ec2005-05-10 14:51:40 +02003609 snd_card_set_dev(chip->card, &intf->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 break;
3611 }
Pavel Machek07f51a72008-04-14 13:15:56 +02003612 if (!chip) {
3613 printk(KERN_ERR "no available usb audio device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 goto __error;
3615 }
3616 }
3617
3618 err = 1; /* continue */
3619 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
3620 /* need some special handlings */
3621 if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0)
3622 goto __error;
3623 }
3624
3625 if (err > 0) {
3626 /* create normal USB audio interfaces */
3627 if (snd_usb_create_streams(chip, ifnum) < 0 ||
Takashi Iwai7a9b8062008-08-13 15:40:53 +02003628 snd_usb_create_mixer(chip, ifnum, ignore_ctl_error) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 goto __error;
3630 }
3631 }
3632
3633 /* we are allowed to call snd_card_register() many times */
3634 if (snd_card_register(chip->card) < 0) {
3635 goto __error;
3636 }
3637
3638 usb_chip[chip->index] = chip;
3639 chip->num_interfaces++;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003640 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 return chip;
3642
3643 __error:
3644 if (chip && !chip->num_interfaces)
3645 snd_card_free(chip->card);
Ingo Molnar12aa7572006-01-16 16:36:05 +01003646 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 __err_val:
3648 return NULL;
3649}
3650
3651/*
3652 * we need to take care of counter, since disconnection can be called also
3653 * many times as well as usb_audio_probe().
3654 */
3655static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr)
3656{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003657 struct snd_usb_audio *chip;
3658 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 struct list_head *p;
3660
3661 if (ptr == (void *)-1L)
3662 return;
3663
3664 chip = ptr;
3665 card = chip->card;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003666 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 chip->shutdown = 1;
3668 chip->num_interfaces--;
3669 if (chip->num_interfaces <= 0) {
3670 snd_card_disconnect(card);
3671 /* release the pcm resources */
3672 list_for_each(p, &chip->pcm_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003673 snd_usb_stream_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 }
3675 /* release the midi resources */
3676 list_for_each(p, &chip->midi_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003677 snd_usbmidi_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02003679 /* release mixer resources */
3680 list_for_each(p, &chip->mixer_list) {
3681 snd_usb_mixer_disconnect(p);
3682 }
Takashi Iwai9eb70e62008-04-17 12:53:26 +02003683 usb_chip[chip->index] = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003684 mutex_unlock(&register_mutex);
Takashi Iwaic4614822006-06-23 14:38:23 +02003685 snd_card_free_when_closed(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 } else {
Ingo Molnar12aa7572006-01-16 16:36:05 +01003687 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 }
3689}
3690
3691/*
3692 * new 2.5 USB kernel API
3693 */
3694static int usb_audio_probe(struct usb_interface *intf,
3695 const struct usb_device_id *id)
3696{
3697 void *chip;
3698 chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
3699 if (chip) {
Julia Lawallf4e97492009-01-01 18:14:35 +01003700 usb_set_intfdata(intf, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 return 0;
3702 } else
3703 return -EIO;
3704}
3705
3706static void usb_audio_disconnect(struct usb_interface *intf)
3707{
3708 snd_usb_audio_disconnect(interface_to_usbdev(intf),
Julia Lawallf4e97492009-01-01 18:14:35 +01003709 usb_get_intfdata(intf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710}
3711
Andrew Morton93521d22007-12-24 14:40:56 +01003712#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01003713static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
3714{
Julia Lawallf4e97492009-01-01 18:14:35 +01003715 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumf85bf292007-12-14 14:42:41 +01003716 struct list_head *p;
3717 struct snd_usb_stream *as;
3718
3719 if (chip == (void *)-1L)
3720 return 0;
3721
3722 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
3723 if (!chip->num_suspended_intf++) {
3724 list_for_each(p, &chip->pcm_list) {
3725 as = list_entry(p, struct snd_usb_stream, list);
3726 snd_pcm_suspend_all(as->pcm);
3727 }
3728 }
3729
3730 return 0;
3731}
3732
3733static int usb_audio_resume(struct usb_interface *intf)
3734{
Julia Lawallf4e97492009-01-01 18:14:35 +01003735 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumf85bf292007-12-14 14:42:41 +01003736
3737 if (chip == (void *)-1L)
3738 return 0;
3739 if (--chip->num_suspended_intf)
3740 return 0;
3741 /*
3742 * ALSA leaves material resumption to user space
3743 * we just notify
3744 */
3745
3746 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
3747
3748 return 0;
3749}
Andrew Morton93521d22007-12-24 14:40:56 +01003750#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
3752static int __init snd_usb_audio_init(void)
3753{
Clemens Ladischf3990e62009-02-20 09:32:40 +01003754 if (nrpacks < 1 || nrpacks > MAX_PACKS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 printk(KERN_WARNING "invalid nrpacks value.\n");
3756 return -EINVAL;
3757 }
Tobias Klausercf78bbc2006-10-04 18:12:43 +02003758 return usb_register(&usb_audio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759}
3760
3761
3762static void __exit snd_usb_audio_cleanup(void)
3763{
3764 usb_deregister(&usb_audio_driver);
3765}
3766
3767module_init(snd_usb_audio_init);
3768module_exit(snd_usb_audio_cleanup);