blob: 617515f6ec7ba366a22e2421c98ac49cd9544179 [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>
47#include <linux/moduleparam.h>
Ingo Molnar12aa7572006-01-16 16:36:05 +010048#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <sound/core.h>
50#include <sound/info.h>
51#include <sound/pcm.h>
52#include <sound/pcm_params.h>
53#include <sound/initval.h>
54
55#include "usbaudio.h"
56
57
58MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
59MODULE_DESCRIPTION("USB Audio");
60MODULE_LICENSE("GPL");
61MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
62
63
64static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
65static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Pavel Machek07f51a72008-04-14 13:15:56 +020066static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
67/* Vendor/product IDs for this card */
68static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
69static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
Clemens Ladisch92b9ac72006-09-22 10:57:36 +020070static int nrpacks = 8; /* max. number of packets per urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static int async_unlink = 1;
Thibault LE MEURe3113342006-03-14 11:44:53 +010072static int device_setup[SNDRV_CARDS]; /* device parameter for this card*/
Takashi Iwai7a9b8062008-08-13 15:40:53 +020073static int ignore_ctl_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75module_param_array(index, int, NULL, 0444);
76MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
77module_param_array(id, charp, NULL, 0444);
78MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
79module_param_array(enable, bool, NULL, 0444);
80MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
81module_param_array(vid, int, NULL, 0444);
82MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
83module_param_array(pid, int, NULL, 0444);
84MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
Clemens Ladisch71d848c2005-08-12 15:18:00 +020085module_param(nrpacks, int, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB.");
87module_param(async_unlink, bool, 0444);
88MODULE_PARM_DESC(async_unlink, "Use async unlink mode.");
Thibault LE MEURe3113342006-03-14 11:44:53 +010089module_param_array(device_setup, int, NULL, 0444);
90MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
Takashi Iwai7a9b8062008-08-13 15:40:53 +020091module_param(ignore_ctl_error, bool, 0444);
92MODULE_PARM_DESC(ignore_ctl_error,
93 "Ignore errors from USB controller for mixer interfaces.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95/*
96 * debug the h/w constraints
97 */
98/* #define HW_CONST_DEBUG */
99
100
101/*
102 *
103 */
104
Clemens Ladisch92b9ac72006-09-22 10:57:36 +0200105#define MAX_PACKS 20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define MAX_PACKS_HS (MAX_PACKS * 8) /* in high speed mode */
Clemens Ladisch15a24c02005-08-12 08:25:26 +0200107#define MAX_URBS 8
Clemens Ladisch604cf492005-05-17 09:15:27 +0200108#define SYNC_URBS 4 /* always four urbs for sync */
Clemens Ladisch4d788e02009-01-26 08:09:28 +0100109#define MAX_QUEUE 24 /* try not to exceed this queue length, in ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111struct audioformat {
112 struct list_head list;
113 snd_pcm_format_t format; /* format type */
114 unsigned int channels; /* # channels */
115 unsigned int fmt_type; /* USB audio format type (1-3) */
116 unsigned int frame_size; /* samples per frame for non-audio */
117 int iface; /* interface number */
118 unsigned char altsetting; /* corresponding alternate setting */
119 unsigned char altset_idx; /* array index of altenate setting */
120 unsigned char attributes; /* corresponding attributes of cs endpoint */
121 unsigned char endpoint; /* endpoint */
122 unsigned char ep_attr; /* endpoint attributes */
Clemens Ladisch744b89e2009-04-03 09:45:01 +0200123 unsigned char datainterval; /* log_2 of data packet interval */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 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 */
John S. Gruber98e89f62009-12-27 12:19:58 -0500172 unsigned int txfr_quirk:1; /* allow sub-frame alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 unsigned int fmt_type; /* USB audio format type (1-3) */
174
175 unsigned int running: 1; /* running status */
176
Clemens Ladischadc8d312009-12-27 12:19:57 -0500177 unsigned int hwptr_done; /* processed byte 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;
Clemens Ladischadc8d312009-12-27 12:19:57 -0500346 unsigned int stride, frames, bytes, 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 }
John S. Gruber98e89f62009-12-27 12:19:58 -0500357 bytes = urb->iso_frame_desc[i].actual_length;
358 frames = bytes / stride;
359 if (!subs->txfr_quirk)
360 bytes = frames * stride;
361 if (bytes % (runtime->sample_bits >> 3) != 0) {
362#ifdef CONFIG_SND_DEBUG_VERBOSE
363 int oldbytes = bytes;
364#endif
365 bytes = frames * stride;
366 snd_printdd(KERN_ERR "Corrected urb data len. %d->%d\n",
367 oldbytes, bytes);
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /* update the current pointer */
370 spin_lock_irqsave(&subs->lock, flags);
371 oldptr = subs->hwptr_done;
Clemens Ladischadc8d312009-12-27 12:19:57 -0500372 subs->hwptr_done += bytes;
373 if (subs->hwptr_done >= runtime->buffer_size * stride)
374 subs->hwptr_done -= runtime->buffer_size * stride;
John S. Gruber98e89f62009-12-27 12:19:58 -0500375 frames = (bytes + (oldptr % stride)) / stride;
Clemens Ladischadc8d312009-12-27 12:19:57 -0500376 subs->transfer_done += frames;
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200377 if (subs->transfer_done >= runtime->period_size) {
378 subs->transfer_done -= runtime->period_size;
379 period_elapsed = 1;
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 spin_unlock_irqrestore(&subs->lock, flags);
382 /* copy a data chunk */
Clemens Ladischadc8d312009-12-27 12:19:57 -0500383 if (oldptr + bytes > runtime->buffer_size * stride) {
384 unsigned int bytes1 =
385 runtime->buffer_size * stride - oldptr;
386 memcpy(runtime->dma_area + oldptr, cp, bytes1);
387 memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 } else {
Clemens Ladischadc8d312009-12-27 12:19:57 -0500389 memcpy(runtime->dma_area + oldptr, cp, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
Clemens Ladischb263a9b2005-08-15 08:22:39 +0200392 if (period_elapsed)
393 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return 0;
395}
396
Clemens Ladische4f8e652006-10-04 13:42:57 +0200397/*
398 * Process after capture complete when paused. Nothing to do.
399 */
400static int retire_paused_capture_urb(struct snd_usb_substream *subs,
401 struct snd_pcm_runtime *runtime,
402 struct urb *urb)
403{
404 return 0;
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408/*
409 * prepare urb for full speed playback sync pipe
410 *
411 * set up the offset and length to receive the current frequency.
412 */
413
Takashi Iwai86e07d32005-11-17 15:08:02 +0100414static int prepare_playback_sync_urb(struct snd_usb_substream *subs,
415 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct urb *urb)
417{
John Daiker88518272006-12-28 13:55:05 +0100418 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200421 urb->iso_frame_desc[0].length = 3;
422 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return 0;
424}
425
426/*
427 * prepare urb for high speed playback sync pipe
428 *
429 * set up the offset and length to receive the current frequency.
430 */
431
Takashi Iwai86e07d32005-11-17 15:08:02 +0100432static int prepare_playback_sync_urb_hs(struct snd_usb_substream *subs,
433 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 struct urb *urb)
435{
John Daiker88518272006-12-28 13:55:05 +0100436 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 urb->dev = ctx->subs->dev; /* we need to set this at each time */
Clemens Ladischca810902005-05-02 08:55:54 +0200439 urb->iso_frame_desc[0].length = 4;
440 urb->iso_frame_desc[0].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return 0;
442}
443
444/*
445 * process after full speed playback sync complete
446 *
447 * retrieve the current 10.14 frequency from pipe, and set it.
448 * the value is referred in prepare_playback_urb().
449 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100450static int retire_playback_sync_urb(struct snd_usb_substream *subs,
451 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct urb *urb)
453{
Clemens Ladischca810902005-05-02 08:55:54 +0200454 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 unsigned long flags;
456
Clemens Ladischca810902005-05-02 08:55:54 +0200457 if (urb->iso_frame_desc[0].status == 0 &&
458 urb->iso_frame_desc[0].actual_length == 3) {
459 f = combine_triple((u8*)urb->transfer_buffer) << 2;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200460 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
461 spin_lock_irqsave(&subs->lock, flags);
462 subs->freqm = f;
463 spin_unlock_irqrestore(&subs->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466
467 return 0;
468}
469
470/*
471 * process after high speed playback sync complete
472 *
473 * retrieve the current 12.13 frequency from pipe, and set it.
474 * the value is referred in prepare_playback_urb().
475 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100476static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs,
477 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 struct urb *urb)
479{
Clemens Ladischca810902005-05-02 08:55:54 +0200480 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 unsigned long flags;
482
Clemens Ladischca810902005-05-02 08:55:54 +0200483 if (urb->iso_frame_desc[0].status == 0 &&
484 urb->iso_frame_desc[0].actual_length == 4) {
485 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
Clemens Ladisch50cdbf12005-05-13 07:44:13 +0200486 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
487 spin_lock_irqsave(&subs->lock, flags);
488 subs->freqm = f;
489 spin_unlock_irqrestore(&subs->lock, flags);
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
492
493 return 0;
494}
495
Clemens Ladischd5132022008-02-25 11:01:00 +0100496/*
Eran Tromer97c889a2008-09-26 01:07:03 -0400497 * process after E-Mu 0202/0404/Tracker Pre high speed playback sync complete
Clemens Ladischd5132022008-02-25 11:01:00 +0100498 *
499 * These devices return the number of samples per packet instead of the number
500 * of samples per microframe.
501 */
502static int retire_playback_sync_urb_hs_emu(struct snd_usb_substream *subs,
503 struct snd_pcm_runtime *runtime,
504 struct urb *urb)
505{
506 unsigned int f;
507 unsigned long flags;
508
509 if (urb->iso_frame_desc[0].status == 0 &&
510 urb->iso_frame_desc[0].actual_length == 4) {
511 f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
512 f >>= subs->datainterval;
513 if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
514 spin_lock_irqsave(&subs->lock, flags);
515 subs->freqm = f;
516 spin_unlock_irqrestore(&subs->lock, flags);
517 }
518 }
519
520 return 0;
521}
522
Clemens Ladisch9568f462006-01-12 08:19:21 +0100523/* determine the number of frames in the next packet */
524static int snd_usb_audio_next_packet_size(struct snd_usb_substream *subs)
525{
526 if (subs->fill_max)
527 return subs->maxframesize;
528 else {
529 subs->phase = (subs->phase & 0xffff)
530 + (subs->freqm << subs->datainterval);
531 return min(subs->phase >> 16, subs->maxframesize);
532 }
533}
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535/*
Clemens Ladische4f8e652006-10-04 13:42:57 +0200536 * Prepare urb for streaming before playback starts or when paused.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100537 *
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100538 * We don't have any data, so we send silence.
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100539 */
Clemens Ladische4f8e652006-10-04 13:42:57 +0200540static int prepare_nodata_playback_urb(struct snd_usb_substream *subs,
541 struct snd_pcm_runtime *runtime,
542 struct urb *urb)
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100543{
Clemens Ladisch4b284922006-01-12 08:17:49 +0100544 unsigned int i, offs, counts;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100545 struct snd_urb_ctx *ctx = urb->context;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100546 int stride = runtime->frame_bits >> 3;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100547
Clemens Ladisch4b284922006-01-12 08:17:49 +0100548 offs = 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100549 urb->dev = ctx->subs->dev;
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100550 for (i = 0; i < ctx->packets; ++i) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100551 counts = snd_usb_audio_next_packet_size(subs);
Clemens Ladisch4b284922006-01-12 08:17:49 +0100552 urb->iso_frame_desc[i].offset = offs * stride;
553 urb->iso_frame_desc[i].length = counts * stride;
554 offs += counts;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100555 }
Clemens Ladischb7eb4a02009-01-26 08:08:34 +0100556 urb->number_of_packets = ctx->packets;
Clemens Ladisch4b284922006-01-12 08:17:49 +0100557 urb->transfer_buffer_length = offs * stride;
558 memset(urb->transfer_buffer,
559 subs->cur_audiofmt->format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0,
560 offs * stride);
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100561 return 0;
562}
563
564/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 * prepare urb for playback data pipe
566 *
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200567 * Since a URB can handle only a single linear buffer, we must use double
568 * buffering when the data to be transferred overflows the buffer boundary.
569 * To avoid inconsistencies when updating hwptr_done, we use double buffering
570 * for all URBs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100572static int prepare_playback_urb(struct snd_usb_substream *subs,
573 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 struct urb *urb)
575{
Clemens Ladischadc8d312009-12-27 12:19:57 -0500576 int i, stride;
577 unsigned int counts, frames, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 unsigned long flags;
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200579 int period_elapsed = 0;
John Daiker88518272006-12-28 13:55:05 +0100580 struct snd_urb_ctx *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 stride = runtime->frame_bits >> 3;
583
Clemens Ladischadc8d312009-12-27 12:19:57 -0500584 frames = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 urb->dev = ctx->subs->dev; /* we need to set this at each time */
586 urb->number_of_packets = 0;
587 spin_lock_irqsave(&subs->lock, flags);
588 for (i = 0; i < ctx->packets; i++) {
Clemens Ladisch9568f462006-01-12 08:19:21 +0100589 counts = snd_usb_audio_next_packet_size(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /* set up descriptor */
Clemens Ladischadc8d312009-12-27 12:19:57 -0500591 urb->iso_frame_desc[i].offset = frames * stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 urb->iso_frame_desc[i].length = counts * stride;
Clemens Ladischadc8d312009-12-27 12:19:57 -0500593 frames += counts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 urb->number_of_packets++;
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200595 subs->transfer_done += counts;
596 if (subs->transfer_done >= runtime->period_size) {
597 subs->transfer_done -= runtime->period_size;
598 period_elapsed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (subs->fmt_type == USB_FORMAT_TYPE_II) {
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200600 if (subs->transfer_done > 0) {
601 /* FIXME: fill-max mode is not
602 * supported yet */
Clemens Ladischadc8d312009-12-27 12:19:57 -0500603 frames -= subs->transfer_done;
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200604 counts -= subs->transfer_done;
605 urb->iso_frame_desc[i].length =
606 counts * stride;
607 subs->transfer_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609 i++;
610 if (i < ctx->packets) {
611 /* add a transfer delimiter */
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200612 urb->iso_frame_desc[i].offset =
Clemens Ladischadc8d312009-12-27 12:19:57 -0500613 frames * stride;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 urb->iso_frame_desc[i].length = 0;
615 urb->number_of_packets++;
616 }
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200617 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
Clemens Ladischa7d9c092009-04-03 09:48:26 +0200620 if (period_elapsed) /* finish at the period boundary */
Clemens Ladisch9624ea82005-08-15 08:25:24 +0200621 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
Clemens Ladischadc8d312009-12-27 12:19:57 -0500623 bytes = frames * stride;
624 if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200625 /* err, the transferred area goes over buffer boundary. */
Clemens Ladischadc8d312009-12-27 12:19:57 -0500626 unsigned int bytes1 =
627 runtime->buffer_size * stride - subs->hwptr_done;
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200628 memcpy(urb->transfer_buffer,
Clemens Ladischadc8d312009-12-27 12:19:57 -0500629 runtime->dma_area + subs->hwptr_done, bytes1);
630 memcpy(urb->transfer_buffer + bytes1,
631 runtime->dma_area, bytes - bytes1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 } else {
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +0200633 memcpy(urb->transfer_buffer,
Clemens Ladischadc8d312009-12-27 12:19:57 -0500634 runtime->dma_area + subs->hwptr_done, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
Clemens Ladischadc8d312009-12-27 12:19:57 -0500636 subs->hwptr_done += bytes;
637 if (subs->hwptr_done >= runtime->buffer_size * stride)
638 subs->hwptr_done -= runtime->buffer_size * stride;
639 runtime->delay += frames;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 spin_unlock_irqrestore(&subs->lock, flags);
Clemens Ladischadc8d312009-12-27 12:19:57 -0500641 urb->transfer_buffer_length = bytes;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100642 if (period_elapsed)
643 snd_pcm_period_elapsed(subs->pcm_substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return 0;
645}
646
647/*
648 * process after playback data complete
Takashi Iwaiae1ec5e2008-10-13 03:08:53 +0200649 * - decrease the delay count again
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100651static int retire_playback_urb(struct snd_usb_substream *subs,
652 struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 struct urb *urb)
654{
Takashi Iwaiae1ec5e2008-10-13 03:08:53 +0200655 unsigned long flags;
656 int stride = runtime->frame_bits >> 3;
657 int processed = urb->transfer_buffer_length / stride;
658
659 spin_lock_irqsave(&subs->lock, flags);
660 if (processed > runtime->delay)
661 runtime->delay = 0;
662 else
663 runtime->delay -= processed;
664 spin_unlock_irqrestore(&subs->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return 0;
666}
667
668
669/*
670 */
671static struct snd_urb_ops audio_urb_ops[2] = {
672 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200673 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 .retire = retire_playback_urb,
675 .prepare_sync = prepare_playback_sync_urb,
676 .retire_sync = retire_playback_sync_urb,
677 },
678 {
679 .prepare = prepare_capture_urb,
680 .retire = retire_capture_urb,
681 .prepare_sync = prepare_capture_sync_urb,
682 .retire_sync = retire_capture_sync_urb,
683 },
684};
685
686static struct snd_urb_ops audio_urb_ops_high_speed[2] = {
687 {
Clemens Ladische4f8e652006-10-04 13:42:57 +0200688 .prepare = prepare_nodata_playback_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 .retire = retire_playback_urb,
690 .prepare_sync = prepare_playback_sync_urb_hs,
691 .retire_sync = retire_playback_sync_urb_hs,
692 },
693 {
694 .prepare = prepare_capture_urb,
695 .retire = retire_capture_urb,
696 .prepare_sync = prepare_capture_sync_urb_hs,
697 .retire_sync = retire_capture_sync_urb,
698 },
699};
700
701/*
702 * complete callback from data urb
703 */
David Howells7d12e782006-10-05 14:55:46 +0100704static void snd_complete_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
John Daiker88518272006-12-28 13:55:05 +0100706 struct snd_urb_ctx *ctx = urb->context;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100707 struct snd_usb_substream *subs = ctx->subs;
708 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 int err = 0;
710
711 if ((subs->running && subs->ops.retire(subs, substream->runtime, urb)) ||
Pavel Machek07f51a72008-04-14 13:15:56 +0200712 !subs->running || /* can be stopped during retire callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 (err = subs->ops.prepare(subs, substream->runtime, urb)) < 0 ||
714 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
715 clear_bit(ctx->index, &subs->active_mask);
716 if (err < 0) {
717 snd_printd(KERN_ERR "cannot submit urb (err = %d)\n", err);
718 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
719 }
720 }
721}
722
723
724/*
725 * complete callback from sync urb
726 */
David Howells7d12e782006-10-05 14:55:46 +0100727static void snd_complete_sync_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
John Daiker88518272006-12-28 13:55:05 +0100729 struct snd_urb_ctx *ctx = urb->context;
Takashi Iwai86e07d32005-11-17 15:08:02 +0100730 struct snd_usb_substream *subs = ctx->subs;
731 struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 int err = 0;
733
734 if ((subs->running && subs->ops.retire_sync(subs, substream->runtime, urb)) ||
Pavel Machek07f51a72008-04-14 13:15:56 +0200735 !subs->running || /* can be stopped during retire callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 (err = subs->ops.prepare_sync(subs, substream->runtime, urb)) < 0 ||
737 (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
738 clear_bit(ctx->index + 16, &subs->active_mask);
739 if (err < 0) {
740 snd_printd(KERN_ERR "cannot submit sync urb (err = %d)\n", err);
741 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
742 }
743 }
744}
745
746
747/*
748 * unlink active urbs.
749 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100750static int deactivate_urbs(struct snd_usb_substream *subs, int force, int can_sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 unsigned int i;
753 int async;
754
755 subs->running = 0;
756
757 if (!force && subs->stream->chip->shutdown) /* to be sure... */
758 return -EBADFD;
759
760 async = !can_sleep && async_unlink;
761
Pavel Machek07f51a72008-04-14 13:15:56 +0200762 if (!async && in_interrupt())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return 0;
764
765 for (i = 0; i < subs->nurbs; i++) {
766 if (test_bit(i, &subs->active_mask)) {
Pavel Machek07f51a72008-04-14 13:15:56 +0200767 if (!test_and_set_bit(i, &subs->unlink_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 struct urb *u = subs->dataurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400769 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400771 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 usb_kill_urb(u);
773 }
774 }
775 }
776 if (subs->syncpipe) {
777 for (i = 0; i < SYNC_URBS; i++) {
778 if (test_bit(i+16, &subs->active_mask)) {
Pavel Machek07f51a72008-04-14 13:15:56 +0200779 if (!test_and_set_bit(i+16, &subs->unlink_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 struct urb *u = subs->syncurb[i].urb;
Alan Sternb375a042005-07-29 16:11:07 -0400781 if (async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 usb_unlink_urb(u);
Alan Sternb375a042005-07-29 16:11:07 -0400783 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 usb_kill_urb(u);
785 }
786 }
787 }
788 }
789 return 0;
790}
791
792
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100793static const char *usb_error_string(int err)
794{
795 switch (err) {
796 case -ENODEV:
797 return "no device";
798 case -ENOENT:
799 return "endpoint not enabled";
800 case -EPIPE:
801 return "endpoint stalled";
802 case -ENOSPC:
803 return "not enough bandwidth";
804 case -ESHUTDOWN:
805 return "device disabled";
806 case -EHOSTUNREACH:
807 return "device suspended";
808 case -EINVAL:
809 case -EAGAIN:
810 case -EFBIG:
811 case -EMSGSIZE:
812 return "internal error";
813 default:
814 return "unknown error";
815 }
816}
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818/*
819 * set up and start data/sync urbs
820 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100821static int start_urbs(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
823 unsigned int i;
824 int err;
825
826 if (subs->stream->chip->shutdown)
827 return -EBADFD;
828
829 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai5e246b82008-08-08 17:12:47 +0200830 if (snd_BUG_ON(!subs->dataurb[i].urb))
831 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (subs->ops.prepare(subs, runtime, subs->dataurb[i].urb) < 0) {
833 snd_printk(KERN_ERR "cannot prepare datapipe for urb %d\n", i);
834 goto __error;
835 }
836 }
837 if (subs->syncpipe) {
838 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai5e246b82008-08-08 17:12:47 +0200839 if (snd_BUG_ON(!subs->syncurb[i].urb))
840 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (subs->ops.prepare_sync(subs, runtime, subs->syncurb[i].urb) < 0) {
842 snd_printk(KERN_ERR "cannot prepare syncpipe for urb %d\n", i);
843 goto __error;
844 }
845 }
846 }
847
848 subs->active_mask = 0;
849 subs->unlink_mask = 0;
850 subs->running = 1;
851 for (i = 0; i < subs->nurbs; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100852 err = usb_submit_urb(subs->dataurb[i].urb, GFP_ATOMIC);
853 if (err < 0) {
854 snd_printk(KERN_ERR "cannot submit datapipe "
855 "for urb %d, error %d: %s\n",
856 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 goto __error;
858 }
859 set_bit(i, &subs->active_mask);
860 }
861 if (subs->syncpipe) {
862 for (i = 0; i < SYNC_URBS; i++) {
Clemens Ladisch32e19e82006-03-09 07:58:39 +0100863 err = usb_submit_urb(subs->syncurb[i].urb, GFP_ATOMIC);
864 if (err < 0) {
865 snd_printk(KERN_ERR "cannot submit syncpipe "
866 "for urb %d, error %d: %s\n",
867 i, err, usb_error_string(err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 goto __error;
869 }
870 set_bit(i + 16, &subs->active_mask);
871 }
872 }
873 return 0;
874
875 __error:
876 // snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
877 deactivate_urbs(subs, 0, 0);
878 return -EPIPE;
879}
880
881
882/*
883 * wait until all urbs are processed.
884 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100885static int wait_clear_urbs(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200887 unsigned long end_time = jiffies + msecs_to_jiffies(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 unsigned int i;
889 int alive;
890
891 do {
892 alive = 0;
893 for (i = 0; i < subs->nurbs; i++) {
894 if (test_bit(i, &subs->active_mask))
895 alive++;
896 }
897 if (subs->syncpipe) {
898 for (i = 0; i < SYNC_URBS; i++) {
899 if (test_bit(i + 16, &subs->active_mask))
900 alive++;
901 }
902 }
903 if (! alive)
904 break;
Nishanth Aravamudan8433a502005-10-24 15:02:37 +0200905 schedule_timeout_uninterruptible(1);
Nishanth Aravamudanb27c1872005-07-09 10:54:37 +0200906 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (alive)
908 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
909 return 0;
910}
911
912
913/*
Clemens Ladischadc8d312009-12-27 12:19:57 -0500914 * return the current pcm pointer. just based on the hwptr_done value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100916static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100918 struct snd_usb_substream *subs;
Clemens Ladischadc8d312009-12-27 12:19:57 -0500919 unsigned int hwptr_done;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200920
Takashi Iwai86e07d32005-11-17 15:08:02 +0100921 subs = (struct snd_usb_substream *)substream->runtime->private_data;
Clemens Ladischdaa150e2005-08-15 08:25:50 +0200922 spin_lock(&subs->lock);
923 hwptr_done = subs->hwptr_done;
924 spin_unlock(&subs->lock);
Clemens Ladischadc8d312009-12-27 12:19:57 -0500925 return hwptr_done / (substream->runtime->frame_bits >> 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
928
929/*
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100930 * start/stop playback substream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100932static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100933 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100935 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 switch (cmd) {
938 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200939 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100940 subs->ops.prepare = prepare_playback_urb;
941 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 case SNDRV_PCM_TRIGGER_STOP:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100943 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200944 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
945 subs->ops.prepare = prepare_nodata_playback_urb;
946 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 default:
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100948 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100950}
951
952/*
953 * start/stop capture substream
954 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100955static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream *substream,
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100956 int cmd)
957{
Takashi Iwai86e07d32005-11-17 15:08:02 +0100958 struct snd_usb_substream *subs = substream->runtime->private_data;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100959
960 switch (cmd) {
961 case SNDRV_PCM_TRIGGER_START:
Clemens Ladische4f8e652006-10-04 13:42:57 +0200962 subs->ops.retire = retire_capture_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100963 return start_urbs(subs, substream->runtime);
964 case SNDRV_PCM_TRIGGER_STOP:
965 return deactivate_urbs(subs, 0, 0);
Clemens Ladische4f8e652006-10-04 13:42:57 +0200966 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
967 subs->ops.retire = retire_paused_capture_urb;
968 return 0;
969 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
970 subs->ops.retire = retire_capture_urb;
971 return 0;
Clemens Ladischb55bbf02005-11-02 11:32:52 +0100972 default:
973 return -EINVAL;
974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
977
978/*
979 * release a urb data
980 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100981static void release_urb_ctx(struct snd_urb_ctx *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 if (u->urb) {
Clemens Ladisch55851f72005-08-15 08:34:16 +0200984 if (u->buffer_size)
985 usb_buffer_free(u->subs->dev, u->buffer_size,
986 u->urb->transfer_buffer,
987 u->urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 usb_free_urb(u->urb);
989 u->urb = NULL;
990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
993/*
994 * release a substream
995 */
Takashi Iwai86e07d32005-11-17 15:08:02 +0100996static void release_substream_urbs(struct snd_usb_substream *subs, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
998 int i;
999
1000 /* stop urbs (to be sure) */
1001 deactivate_urbs(subs, force, 1);
1002 wait_clear_urbs(subs);
1003
1004 for (i = 0; i < MAX_URBS; i++)
1005 release_urb_ctx(&subs->dataurb[i]);
1006 for (i = 0; i < SYNC_URBS; i++)
1007 release_urb_ctx(&subs->syncurb[i]);
Clemens Ladisch55851f72005-08-15 08:34:16 +02001008 usb_buffer_free(subs->dev, SYNC_URBS * 4,
1009 subs->syncbuf, subs->sync_dma);
1010 subs->syncbuf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 subs->nurbs = 0;
1012}
1013
1014/*
1015 * initialize a substream for plaback/capture
1016 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001017static int init_substream_urbs(struct snd_usb_substream *subs, unsigned int period_bytes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 unsigned int rate, unsigned int frame_bits)
1019{
Clemens Ladisch160389c2009-01-26 08:10:19 +01001020 unsigned int maxsize, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001022 unsigned int urb_packs, total_packs, packs_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 /* calculate the frequency in 16.16 format */
1025 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
1026 subs->freqn = get_usb_full_speed_rate(rate);
1027 else
1028 subs->freqn = get_usb_high_speed_rate(rate);
1029 subs->freqm = subs->freqn;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001030 /* calculate max. frequency */
1031 if (subs->maxpacksize) {
1032 /* whatever fits into a max. size packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 maxsize = subs->maxpacksize;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001034 subs->freqmax = (maxsize / (frame_bits >> 3))
1035 << (16 - subs->datainterval);
1036 } else {
1037 /* no max. packet size: just take 25% higher than nominal */
1038 subs->freqmax = subs->freqn + (subs->freqn >> 2);
1039 maxsize = ((subs->freqmax + 0xffff) * (frame_bits >> 3))
1040 >> (16 - subs->datainterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
Clemens Ladisch573567e2005-06-27 08:17:30 +02001042 subs->phase = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 if (subs->fill_max)
1045 subs->curpacksize = subs->maxpacksize;
1046 else
1047 subs->curpacksize = maxsize;
1048
Clemens Ladischa93bf992005-08-12 15:19:39 +02001049 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
1050 packs_per_ms = 8 >> subs->datainterval;
1051 else
1052 packs_per_ms = 1;
1053
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001054 if (is_playback) {
Clemens Ladischf3990e62009-02-20 09:32:40 +01001055 urb_packs = max(nrpacks, 1);
Clemens Ladisch71d848c2005-08-12 15:18:00 +02001056 urb_packs = min(urb_packs, (unsigned int)MAX_PACKS);
1057 } else
Clemens Ladisch15a24c02005-08-12 08:25:26 +02001058 urb_packs = 1;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001059 urb_packs *= packs_per_ms;
Clemens Ladisch765e8db2009-08-10 10:07:35 +02001060 if (subs->syncpipe)
Takashi Iwaif1e6d3c2009-08-11 08:15:04 +02001061 urb_packs = min(urb_packs, 1U << subs->syncinterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 /* decide how many packets to be used */
Clemens Ladisch15a24c02005-08-12 08:25:26 +02001064 if (is_playback) {
Clemens Ladisch4d788e02009-01-26 08:09:28 +01001065 unsigned int minsize, maxpacks;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001066 /* determine how small a packet can be */
1067 minsize = (subs->freqn >> (16 - subs->datainterval))
1068 * (frame_bits >> 3);
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +02001069 /* with sync from device, assume it can be 12% lower */
Clemens Ladischd6db3922005-08-12 08:28:27 +02001070 if (subs->syncpipe)
Clemens Ladisch7efd8bc2005-08-15 08:24:44 +02001071 minsize -= minsize >> 3;
Clemens Ladischd6db3922005-08-12 08:28:27 +02001072 minsize = max(minsize, 1u);
1073 total_packs = (period_bytes + minsize - 1) / minsize;
Clemens Ladischa93bf992005-08-12 15:19:39 +02001074 /* we need at least two URBs for queueing */
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001075 if (total_packs < 2) {
1076 total_packs = 2;
Clemens Ladischf3990e62009-02-20 09:32:40 +01001077 } else {
Clemens Ladisch4d788e02009-01-26 08:09:28 +01001078 /* and we don't want too long a queue either */
Clemens Ladischb1c86bb2009-03-02 12:06:28 +01001079 maxpacks = max(MAX_QUEUE * packs_per_ms, urb_packs * 2);
1080 total_packs = min(total_packs, maxpacks);
Clemens Ladisch4d788e02009-01-26 08:09:28 +01001081 }
Clemens Ladisch15a24c02005-08-12 08:25:26 +02001082 } else {
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001083 while (urb_packs > 1 && urb_packs * maxsize >= period_bytes)
1084 urb_packs >>= 1;
Clemens Ladisch15a24c02005-08-12 08:25:26 +02001085 total_packs = MAX_URBS * urb_packs;
1086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 subs->nurbs = (total_packs + urb_packs - 1) / urb_packs;
1088 if (subs->nurbs > MAX_URBS) {
1089 /* too much... */
1090 subs->nurbs = MAX_URBS;
1091 total_packs = MAX_URBS * urb_packs;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001092 } else if (subs->nurbs < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 /* too little - we need at least two packets
1094 * to ensure contiguous playback/capture
1095 */
1096 subs->nurbs = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098
1099 /* allocate and initialize data urbs */
1100 for (i = 0; i < subs->nurbs; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001101 struct snd_urb_ctx *u = &subs->dataurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 u->index = i;
1103 u->subs = subs;
Clemens Ladisch160389c2009-01-26 08:10:19 +01001104 u->packets = (i + 1) * total_packs / subs->nurbs
1105 - i * total_packs / subs->nurbs;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001106 u->buffer_size = maxsize * u->packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (subs->fmt_type == USB_FORMAT_TYPE_II)
1108 u->packets++; /* for transfer delimiter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02001110 if (!u->urb)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001111 goto out_of_memory;
1112 u->urb->transfer_buffer =
1113 usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL,
1114 &u->urb->transfer_dma);
Pavel Machek07f51a72008-04-14 13:15:56 +02001115 if (!u->urb->transfer_buffer)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001116 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 u->urb->pipe = subs->datapipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001118 u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
Clemens Ladisch573567e2005-06-27 08:17:30 +02001119 u->urb->interval = 1 << subs->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001121 u->urb->complete = snd_complete_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
1123
1124 if (subs->syncpipe) {
1125 /* allocate and initialize sync urbs */
Clemens Ladisch55851f72005-08-15 08:34:16 +02001126 subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4,
1127 GFP_KERNEL, &subs->sync_dma);
Pavel Machek07f51a72008-04-14 13:15:56 +02001128 if (!subs->syncbuf)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001129 goto out_of_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 for (i = 0; i < SYNC_URBS; i++) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01001131 struct snd_urb_ctx *u = &subs->syncurb[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 u->index = i;
1133 u->subs = subs;
Clemens Ladischca810902005-05-02 08:55:54 +02001134 u->packets = 1;
1135 u->urb = usb_alloc_urb(1, GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02001136 if (!u->urb)
Clemens Ladisch55851f72005-08-15 08:34:16 +02001137 goto out_of_memory;
Clemens Ladischca810902005-05-02 08:55:54 +02001138 u->urb->transfer_buffer = subs->syncbuf + i * 4;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001139 u->urb->transfer_dma = subs->sync_dma + i * 4;
Clemens Ladischca810902005-05-02 08:55:54 +02001140 u->urb->transfer_buffer_length = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 u->urb->pipe = subs->syncpipe;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001142 u->urb->transfer_flags = URB_ISO_ASAP |
1143 URB_NO_TRANSFER_DMA_MAP;
Clemens Ladischca810902005-05-02 08:55:54 +02001144 u->urb->number_of_packets = 1;
Clemens Ladisch1149a642005-05-02 08:53:46 +02001145 u->urb->interval = 1 << subs->syncinterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 u->urb->context = u;
Clemens Ladisch3527a002005-09-26 10:03:09 +02001147 u->urb->complete = snd_complete_sync_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149 }
1150 return 0;
Clemens Ladisch55851f72005-08-15 08:34:16 +02001151
1152out_of_memory:
1153 release_substream_urbs(subs, 0);
1154 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
1157
1158/*
1159 * find a matching audio format
1160 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001161static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 unsigned int rate, unsigned int channels)
1163{
1164 struct list_head *p;
1165 struct audioformat *found = NULL;
1166 int cur_attr = 0, attr;
1167
1168 list_for_each(p, &subs->fmt_list) {
1169 struct audioformat *fp;
1170 fp = list_entry(p, struct audioformat, list);
1171 if (fp->format != format || fp->channels != channels)
1172 continue;
1173 if (rate < fp->rate_min || rate > fp->rate_max)
1174 continue;
1175 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
1176 unsigned int i;
1177 for (i = 0; i < fp->nr_rates; i++)
1178 if (fp->rate_table[i] == rate)
1179 break;
1180 if (i >= fp->nr_rates)
1181 continue;
1182 }
1183 attr = fp->ep_attr & EP_ATTR_MASK;
1184 if (! found) {
1185 found = fp;
1186 cur_attr = attr;
1187 continue;
1188 }
1189 /* avoid async out and adaptive in if the other method
1190 * supports the same format.
1191 * this is a workaround for the case like
1192 * M-audio audiophile USB.
1193 */
1194 if (attr != cur_attr) {
1195 if ((attr == EP_ATTR_ASYNC &&
1196 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1197 (attr == EP_ATTR_ADAPTIVE &&
1198 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
1199 continue;
1200 if ((cur_attr == EP_ATTR_ASYNC &&
1201 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1202 (cur_attr == EP_ATTR_ADAPTIVE &&
1203 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
1204 found = fp;
1205 cur_attr = attr;
1206 continue;
1207 }
1208 }
1209 /* find the format with the largest max. packet size */
1210 if (fp->maxpacksize > found->maxpacksize) {
1211 found = fp;
1212 cur_attr = attr;
1213 }
1214 }
1215 return found;
1216}
1217
1218
1219/*
1220 * initialize the picth control and sample rate
1221 */
1222static int init_usb_pitch(struct usb_device *dev, int iface,
1223 struct usb_host_interface *alts,
1224 struct audioformat *fmt)
1225{
1226 unsigned int ep;
1227 unsigned char data[1];
1228 int err;
1229
1230 ep = get_endpoint(alts, 0)->bEndpointAddress;
1231 /* if endpoint has pitch control, enable it */
1232 if (fmt->attributes & EP_CS_ATTR_PITCH_CONTROL) {
1233 data[0] = 1;
1234 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1235 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1236 PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) {
1237 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
1238 dev->devnum, iface, ep);
1239 return err;
1240 }
1241 }
1242 return 0;
1243}
1244
1245static int init_usb_sample_rate(struct usb_device *dev, int iface,
1246 struct usb_host_interface *alts,
1247 struct audioformat *fmt, int rate)
1248{
1249 unsigned int ep;
1250 unsigned char data[3];
1251 int err;
1252
1253 ep = get_endpoint(alts, 0)->bEndpointAddress;
1254 /* if endpoint has sampling rate control, set it */
1255 if (fmt->attributes & EP_CS_ATTR_SAMPLE_RATE) {
1256 int crate;
1257 data[0] = rate;
1258 data[1] = rate >> 8;
1259 data[2] = rate >> 16;
1260 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR,
1261 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1262 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001263 snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 dev->devnum, iface, fmt->altsetting, rate, ep);
1265 return err;
1266 }
1267 if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), GET_CUR,
1268 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN,
1269 SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001270 snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 dev->devnum, iface, fmt->altsetting, ep);
1272 return 0; /* some devices don't support reading */
1273 }
1274 crate = data[0] | (data[1] << 8) | (data[2] << 16);
1275 if (crate != rate) {
1276 snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate);
1277 // runtime->rate = crate;
1278 }
1279 }
1280 return 0;
1281}
1282
1283/*
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001284 * For E-Mu 0404USB/0202USB/TrackerPre sample rate should be set for device,
1285 * not for interface.
1286 */
1287static void set_format_emu_quirk(struct snd_usb_substream *subs,
1288 struct audioformat *fmt)
1289{
1290 unsigned char emu_samplerate_id = 0;
1291
1292 /* When capture is active
1293 * sample rate shouldn't be changed
1294 * by playback substream
1295 */
1296 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
1297 if (subs->stream->substream[SNDRV_PCM_STREAM_CAPTURE].interface != -1)
1298 return;
1299 }
1300
1301 switch (fmt->rate_min) {
1302 case 48000:
1303 emu_samplerate_id = EMU_QUIRK_SR_48000HZ;
1304 break;
1305 case 88200:
1306 emu_samplerate_id = EMU_QUIRK_SR_88200HZ;
1307 break;
1308 case 96000:
1309 emu_samplerate_id = EMU_QUIRK_SR_96000HZ;
1310 break;
1311 case 176400:
1312 emu_samplerate_id = EMU_QUIRK_SR_176400HZ;
1313 break;
1314 case 192000:
1315 emu_samplerate_id = EMU_QUIRK_SR_192000HZ;
1316 break;
1317 default:
1318 emu_samplerate_id = EMU_QUIRK_SR_44100HZ;
1319 break;
1320 }
1321 snd_emuusb_set_samplerate(subs->stream->chip, emu_samplerate_id);
1322}
1323
1324/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 * find a matching format and set up the interface
1326 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001327static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
1329 struct usb_device *dev = subs->dev;
1330 struct usb_host_interface *alts;
1331 struct usb_interface_descriptor *altsd;
1332 struct usb_interface *iface;
1333 unsigned int ep, attr;
1334 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
1335 int err;
1336
1337 iface = usb_ifnum_to_if(dev, fmt->iface);
Takashi Iwai5e246b82008-08-08 17:12:47 +02001338 if (WARN_ON(!iface))
1339 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 alts = &iface->altsetting[fmt->altset_idx];
1341 altsd = get_iface_desc(alts);
Takashi Iwai5e246b82008-08-08 17:12:47 +02001342 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
1343 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 if (fmt == subs->cur_audiofmt)
1346 return 0;
1347
1348 /* close the old interface */
1349 if (subs->interface >= 0 && subs->interface != fmt->iface) {
Oliver Neukum5149fe22007-08-31 12:15:27 +02001350 if (usb_set_interface(subs->dev, subs->interface, 0) < 0) {
1351 snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed\n",
1352 dev->devnum, fmt->iface, fmt->altsetting);
1353 return -EIO;
1354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 subs->interface = -1;
1356 subs->format = 0;
1357 }
1358
1359 /* set interface */
1360 if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) {
1361 if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) {
1362 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n",
1363 dev->devnum, fmt->iface, fmt->altsetting);
1364 return -EIO;
1365 }
1366 snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting);
1367 subs->interface = fmt->iface;
1368 subs->format = fmt->altset_idx;
1369 }
1370
1371 /* create a data pipe */
1372 ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK;
1373 if (is_playback)
1374 subs->datapipe = usb_sndisocpipe(dev, ep);
1375 else
1376 subs->datapipe = usb_rcvisocpipe(dev, ep);
Clemens Ladisch744b89e2009-04-03 09:45:01 +02001377 subs->datainterval = fmt->datainterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 subs->syncpipe = subs->syncinterval = 0;
1379 subs->maxpacksize = fmt->maxpacksize;
1380 subs->fill_max = 0;
1381
1382 /* we need a sync pipe in async OUT or adaptive IN mode */
1383 /* check the number of EP, since some devices have broken
1384 * descriptors which fool us. if it has only one EP,
1385 * assume it as adaptive-out or sync-in.
1386 */
1387 attr = fmt->ep_attr & EP_ATTR_MASK;
1388 if (((is_playback && attr == EP_ATTR_ASYNC) ||
1389 (! is_playback && attr == EP_ATTR_ADAPTIVE)) &&
1390 altsd->bNumEndpoints >= 2) {
1391 /* check sync-pipe endpoint */
1392 /* ... and check descriptor size before accessing bSynchAddress
1393 because there is a version of the SB Audigy 2 NX firmware lacking
1394 the audio fields in the endpoint descriptors */
1395 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
1396 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1397 get_endpoint(alts, 1)->bSynchAddress != 0)) {
1398 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1399 dev->devnum, fmt->iface, fmt->altsetting);
1400 return -EINVAL;
1401 }
1402 ep = get_endpoint(alts, 1)->bEndpointAddress;
1403 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1404 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
1405 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
1406 snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
1407 dev->devnum, fmt->iface, fmt->altsetting);
1408 return -EINVAL;
1409 }
1410 ep &= USB_ENDPOINT_NUMBER_MASK;
1411 if (is_playback)
1412 subs->syncpipe = usb_rcvisocpipe(dev, ep);
1413 else
1414 subs->syncpipe = usb_sndisocpipe(dev, ep);
Clemens Ladisch1149a642005-05-02 08:53:46 +02001415 if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
1416 get_endpoint(alts, 1)->bRefresh >= 1 &&
1417 get_endpoint(alts, 1)->bRefresh <= 9)
1418 subs->syncinterval = get_endpoint(alts, 1)->bRefresh;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001419 else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
Clemens Ladisch1149a642005-05-02 08:53:46 +02001420 subs->syncinterval = 1;
Clemens Ladisch604cf492005-05-17 09:15:27 +02001421 else if (get_endpoint(alts, 1)->bInterval >= 1 &&
1422 get_endpoint(alts, 1)->bInterval <= 16)
1423 subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
1424 else
1425 subs->syncinterval = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427
1428 /* always fill max packet size */
1429 if (fmt->attributes & EP_CS_ATTR_FILL_MAX)
1430 subs->fill_max = 1;
1431
1432 if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0)
1433 return err;
1434
1435 subs->cur_audiofmt = fmt;
1436
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -08001437 switch (subs->stream->chip->usb_id) {
1438 case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
1439 case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
1440 case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */
1441 set_format_emu_quirk(subs, fmt);
1442 break;
1443 }
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445#if 0
Takashi Iwai54530bd2009-02-05 15:55:18 +01001446 printk(KERN_DEBUG
1447 "setting done: format = %d, rate = %d..%d, channels = %d\n",
Pavel Machek2a56f512008-04-14 13:14:22 +02001448 fmt->format, fmt->rate_min, fmt->rate_max, fmt->channels);
Takashi Iwai54530bd2009-02-05 15:55:18 +01001449 printk(KERN_DEBUG
1450 " datapipe = 0x%0x, syncpipe = 0x%0x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 subs->datapipe, subs->syncpipe);
1452#endif
1453
1454 return 0;
1455}
1456
1457/*
1458 * hw_params callback
1459 *
1460 * allocate a buffer and set the given audio format.
1461 *
1462 * so far we use a physically linear buffer although packetize transfer
1463 * doesn't need a continuous area.
1464 * if sg buffer is supported on the later version of alsa, we'll follow
1465 * that.
1466 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001467static int snd_usb_hw_params(struct snd_pcm_substream *substream,
1468 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
John Daiker88518272006-12-28 13:55:05 +01001470 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 struct audioformat *fmt;
1472 unsigned int channels, rate, format;
1473 int ret, changed;
1474
Clemens Ladischc55675e2009-12-18 09:31:31 +01001475 ret = snd_pcm_lib_alloc_vmalloc_buffer(substream,
1476 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 if (ret < 0)
1478 return ret;
1479
1480 format = params_format(hw_params);
1481 rate = params_rate(hw_params);
1482 channels = params_channels(hw_params);
1483 fmt = find_format(subs, format, rate, channels);
Pavel Machek07f51a72008-04-14 13:15:56 +02001484 if (!fmt) {
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01001485 snd_printd(KERN_DEBUG "cannot set format: format = %#x, rate = %d, channels = %d\n",
Jaroslav Kysela21a34792006-01-13 09:12:11 +01001486 format, rate, channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return -EINVAL;
1488 }
1489
1490 changed = subs->cur_audiofmt != fmt ||
1491 subs->period_bytes != params_period_bytes(hw_params) ||
1492 subs->cur_rate != rate;
1493 if ((ret = set_format(subs, fmt)) < 0)
1494 return ret;
1495
1496 if (subs->cur_rate != rate) {
1497 struct usb_host_interface *alts;
1498 struct usb_interface *iface;
1499 iface = usb_ifnum_to_if(subs->dev, fmt->iface);
1500 alts = &iface->altsetting[fmt->altset_idx];
1501 ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate);
1502 if (ret < 0)
1503 return ret;
1504 subs->cur_rate = rate;
1505 }
1506
1507 if (changed) {
1508 /* format changed */
1509 release_substream_urbs(subs, 0);
1510 /* influenced: period_bytes, channels, rate, format, */
1511 ret = init_substream_urbs(subs, params_period_bytes(hw_params),
1512 params_rate(hw_params),
1513 snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params));
1514 }
1515
1516 return ret;
1517}
1518
1519/*
1520 * hw_free callback
1521 *
1522 * reset the audio format and release the buffer
1523 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001524static int snd_usb_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
John Daiker88518272006-12-28 13:55:05 +01001526 struct snd_usb_substream *subs = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 subs->cur_audiofmt = NULL;
1529 subs->cur_rate = 0;
1530 subs->period_bytes = 0;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001531 if (!subs->stream->chip->shutdown)
1532 release_substream_urbs(subs, 0);
Clemens Ladischc55675e2009-12-18 09:31:31 +01001533 return snd_pcm_lib_free_vmalloc_buffer(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
1536/*
1537 * prepare callback
1538 *
1539 * only a few subtle things...
1540 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01001541static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001543 struct snd_pcm_runtime *runtime = substream->runtime;
1544 struct snd_usb_substream *subs = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 if (! subs->cur_audiofmt) {
1547 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
1548 return -ENXIO;
1549 }
1550
1551 /* some unit conversions in runtime */
1552 subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize);
1553 subs->curframesize = bytes_to_frames(runtime, subs->curpacksize);
1554
1555 /* reset the pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 subs->hwptr_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 subs->transfer_done = 0;
1558 subs->phase = 0;
Takashi Iwaiae1ec5e2008-10-13 03:08:53 +02001559 runtime->delay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 /* clear urbs (to be sure) */
1562 deactivate_urbs(subs, 0, 1);
1563 wait_clear_urbs(subs);
1564
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001565 /* for playback, submit the URBs now; otherwise, the first hwptr_done
1566 * updates for all URBs would happen at the same time when starting */
1567 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
Clemens Ladische4f8e652006-10-04 13:42:57 +02001568 subs->ops.prepare = prepare_nodata_playback_urb;
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001569 return start_urbs(subs, runtime);
1570 } else
1571 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Clemens Ladisch1700f302006-10-04 13:41:25 +02001574static struct snd_pcm_hardware snd_usb_hardware =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Clemens Ladisch49045d32005-09-05 10:31:05 +02001576 .info = SNDRV_PCM_INFO_MMAP |
1577 SNDRV_PCM_INFO_MMAP_VALID |
1578 SNDRV_PCM_INFO_BATCH |
1579 SNDRV_PCM_INFO_INTERLEAVED |
Clemens Ladische4f8e652006-10-04 13:42:57 +02001580 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1581 SNDRV_PCM_INFO_PAUSE,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001582 .buffer_bytes_max = 1024 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 .period_bytes_min = 64,
Clemens Ladischd31cbbf2005-09-26 09:59:57 +02001584 .period_bytes_max = 512 * 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 .periods_min = 2,
1586 .periods_max = 1024,
1587};
1588
1589/*
1590 * h/w constraints
1591 */
1592
1593#ifdef HW_CONST_DEBUG
1594#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
1595#else
1596#define hwc_debug(fmt, args...) /**/
1597#endif
1598
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001599static int hw_check_valid_format(struct snd_usb_substream *subs,
1600 struct snd_pcm_hw_params *params,
1601 struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001603 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1604 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
1605 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001606 struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
1607 unsigned int ptime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 /* check the format */
Pavel Machek07f51a72008-04-14 13:15:56 +02001610 if (!snd_mask_test(fmts, fp->format)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 hwc_debug(" > check: no supported format %d\n", fp->format);
1612 return 0;
1613 }
1614 /* check the channels */
1615 if (fp->channels < ct->min || fp->channels > ct->max) {
1616 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
1617 return 0;
1618 }
1619 /* check the rate is within the range */
1620 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
1621 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
1622 return 0;
1623 }
1624 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
1625 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
1626 return 0;
1627 }
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001628 /* check whether the period time is >= the data packet interval */
1629 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH) {
1630 ptime = 125 * (1 << fp->datainterval);
1631 if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
1632 hwc_debug(" > check: ptime %u > max %u\n", ptime, pt->max);
1633 return 0;
1634 }
1635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 return 1;
1637}
1638
Takashi Iwai86e07d32005-11-17 15:08:02 +01001639static int hw_rule_rate(struct snd_pcm_hw_params *params,
1640 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001642 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001644 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 unsigned int rmin, rmax;
1646 int changed;
1647
1648 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
1649 changed = 0;
1650 rmin = rmax = 0;
1651 list_for_each(p, &subs->fmt_list) {
1652 struct audioformat *fp;
1653 fp = list_entry(p, struct audioformat, list);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001654 if (!hw_check_valid_format(subs, params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 continue;
1656 if (changed++) {
1657 if (rmin > fp->rate_min)
1658 rmin = fp->rate_min;
1659 if (rmax < fp->rate_max)
1660 rmax = fp->rate_max;
1661 } else {
1662 rmin = fp->rate_min;
1663 rmax = fp->rate_max;
1664 }
1665 }
1666
Pavel Machek07f51a72008-04-14 13:15:56 +02001667 if (!changed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 hwc_debug(" --> get empty\n");
1669 it->empty = 1;
1670 return -EINVAL;
1671 }
1672
1673 changed = 0;
1674 if (it->min < rmin) {
1675 it->min = rmin;
1676 it->openmin = 0;
1677 changed = 1;
1678 }
1679 if (it->max > rmax) {
1680 it->max = rmax;
1681 it->openmax = 0;
1682 changed = 1;
1683 }
1684 if (snd_interval_checkempty(it)) {
1685 it->empty = 1;
1686 return -EINVAL;
1687 }
1688 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1689 return changed;
1690}
1691
1692
Takashi Iwai86e07d32005-11-17 15:08:02 +01001693static int hw_rule_channels(struct snd_pcm_hw_params *params,
1694 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001696 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001698 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 unsigned int rmin, rmax;
1700 int changed;
1701
1702 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
1703 changed = 0;
1704 rmin = rmax = 0;
1705 list_for_each(p, &subs->fmt_list) {
1706 struct audioformat *fp;
1707 fp = list_entry(p, struct audioformat, list);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001708 if (!hw_check_valid_format(subs, params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 continue;
1710 if (changed++) {
1711 if (rmin > fp->channels)
1712 rmin = fp->channels;
1713 if (rmax < fp->channels)
1714 rmax = fp->channels;
1715 } else {
1716 rmin = fp->channels;
1717 rmax = fp->channels;
1718 }
1719 }
1720
Pavel Machek07f51a72008-04-14 13:15:56 +02001721 if (!changed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 hwc_debug(" --> get empty\n");
1723 it->empty = 1;
1724 return -EINVAL;
1725 }
1726
1727 changed = 0;
1728 if (it->min < rmin) {
1729 it->min = rmin;
1730 it->openmin = 0;
1731 changed = 1;
1732 }
1733 if (it->max > rmax) {
1734 it->max = rmax;
1735 it->openmax = 0;
1736 changed = 1;
1737 }
1738 if (snd_interval_checkempty(it)) {
1739 it->empty = 1;
1740 return -EINVAL;
1741 }
1742 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1743 return changed;
1744}
1745
Takashi Iwai86e07d32005-11-17 15:08:02 +01001746static int hw_rule_format(struct snd_pcm_hw_params *params,
1747 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001749 struct snd_usb_substream *subs = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01001751 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 u64 fbits;
1753 u32 oldbits[2];
1754 int changed;
1755
1756 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1757 fbits = 0;
1758 list_for_each(p, &subs->fmt_list) {
1759 struct audioformat *fp;
1760 fp = list_entry(p, struct audioformat, list);
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001761 if (!hw_check_valid_format(subs, params, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 continue;
1763 fbits |= (1ULL << fp->format);
1764 }
1765
1766 oldbits[0] = fmt->bits[0];
1767 oldbits[1] = fmt->bits[1];
1768 fmt->bits[0] &= (u32)fbits;
1769 fmt->bits[1] &= (u32)(fbits >> 32);
Pavel Machek07f51a72008-04-14 13:15:56 +02001770 if (!fmt->bits[0] && !fmt->bits[1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 hwc_debug(" --> get empty\n");
1772 return -EINVAL;
1773 }
1774 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1775 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1776 return changed;
1777}
1778
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001779static int hw_rule_period_time(struct snd_pcm_hw_params *params,
1780 struct snd_pcm_hw_rule *rule)
1781{
1782 struct snd_usb_substream *subs = rule->private;
1783 struct audioformat *fp;
1784 struct snd_interval *it;
1785 unsigned char min_datainterval;
1786 unsigned int pmin;
1787 int changed;
1788
1789 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
1790 hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
1791 min_datainterval = 0xff;
1792 list_for_each_entry(fp, &subs->fmt_list, list) {
1793 if (!hw_check_valid_format(subs, params, fp))
1794 continue;
1795 min_datainterval = min(min_datainterval, fp->datainterval);
1796 }
1797 if (min_datainterval == 0xff) {
1798 hwc_debug(" --> get emtpy\n");
1799 it->empty = 1;
1800 return -EINVAL;
1801 }
1802 pmin = 125 * (1 << min_datainterval);
1803 changed = 0;
1804 if (it->min < pmin) {
1805 it->min = pmin;
1806 it->openmin = 0;
1807 changed = 1;
1808 }
1809 if (snd_interval_checkempty(it)) {
1810 it->empty = 1;
1811 return -EINVAL;
1812 }
1813 hwc_debug(" --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
1814 return changed;
1815}
1816
Luke Rossa79eee82006-08-29 10:46:32 +02001817/*
1818 * If the device supports unusual bit rates, does the request meet these?
1819 */
1820static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1821 struct snd_usb_substream *subs)
1822{
Takashi Iwai8fec5602007-02-01 11:50:56 +01001823 struct audioformat *fp;
1824 int count = 0, needs_knot = 0;
Luke Rossa79eee82006-08-29 10:46:32 +02001825 int err;
1826
Takashi Iwai8fec5602007-02-01 11:50:56 +01001827 list_for_each_entry(fp, &subs->fmt_list, list) {
1828 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
1829 return 0;
1830 count += fp->nr_rates;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02001831 if (fp->rates & SNDRV_PCM_RATE_KNOT)
Takashi Iwai8fec5602007-02-01 11:50:56 +01001832 needs_knot = 1;
Luke Rossa79eee82006-08-29 10:46:32 +02001833 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01001834 if (!needs_knot)
1835 return 0;
1836
1837 subs->rate_list.count = count;
1838 subs->rate_list.list = kmalloc(sizeof(int) * count, GFP_KERNEL);
1839 subs->rate_list.mask = 0;
1840 count = 0;
1841 list_for_each_entry(fp, &subs->fmt_list, list) {
1842 int i;
1843 for (i = 0; i < fp->nr_rates; i++)
1844 subs->rate_list.list[count++] = fp->rate_table[i];
1845 }
1846 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1847 &subs->rate_list);
1848 if (err < 0)
1849 return err;
Luke Rossa79eee82006-08-29 10:46:32 +02001850
1851 return 0;
1852}
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855/*
1856 * set up the runtime hardware information.
1857 */
1858
Takashi Iwai86e07d32005-11-17 15:08:02 +01001859static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
1861 struct list_head *p;
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001862 unsigned int pt, ptmin;
1863 int param_period_time_if_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 int err;
1865
1866 runtime->hw.formats = subs->formats;
1867
1868 runtime->hw.rate_min = 0x7fffffff;
1869 runtime->hw.rate_max = 0;
1870 runtime->hw.channels_min = 256;
1871 runtime->hw.channels_max = 0;
1872 runtime->hw.rates = 0;
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001873 ptmin = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 /* check min/max rates and channels */
1875 list_for_each(p, &subs->fmt_list) {
1876 struct audioformat *fp;
1877 fp = list_entry(p, struct audioformat, list);
1878 runtime->hw.rates |= fp->rates;
1879 if (runtime->hw.rate_min > fp->rate_min)
1880 runtime->hw.rate_min = fp->rate_min;
1881 if (runtime->hw.rate_max < fp->rate_max)
1882 runtime->hw.rate_max = fp->rate_max;
1883 if (runtime->hw.channels_min > fp->channels)
1884 runtime->hw.channels_min = fp->channels;
1885 if (runtime->hw.channels_max < fp->channels)
1886 runtime->hw.channels_max = fp->channels;
1887 if (fp->fmt_type == USB_FORMAT_TYPE_II && fp->frame_size > 0) {
1888 /* FIXME: there might be more than one audio formats... */
1889 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1890 fp->frame_size;
1891 }
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001892 pt = 125 * (1 << fp->datainterval);
1893 ptmin = min(ptmin, pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001896 param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
1897 if (snd_usb_get_speed(subs->dev) != USB_SPEED_HIGH)
1898 /* full speed devices have fixed data packet interval */
1899 ptmin = 1000;
1900 if (ptmin == 1000)
1901 /* if period time doesn't go below 1 ms, no rules needed */
1902 param_period_time_if_needed = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001904 ptmin, UINT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001906 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1907 hw_rule_rate, subs,
1908 SNDRV_PCM_HW_PARAM_FORMAT,
1909 SNDRV_PCM_HW_PARAM_CHANNELS,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001910 param_period_time_if_needed,
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001911 -1)) < 0)
Takashi Iwai5a220c82008-03-17 09:59:32 +01001912 return err;
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001913 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1914 hw_rule_channels, subs,
1915 SNDRV_PCM_HW_PARAM_FORMAT,
1916 SNDRV_PCM_HW_PARAM_RATE,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001917 param_period_time_if_needed,
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001918 -1)) < 0)
1919 return err;
1920 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1921 hw_rule_format, subs,
1922 SNDRV_PCM_HW_PARAM_RATE,
1923 SNDRV_PCM_HW_PARAM_CHANNELS,
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001924 param_period_time_if_needed,
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001925 -1)) < 0)
1926 return err;
Clemens Ladischa7d9c092009-04-03 09:48:26 +02001927 if (param_period_time_if_needed >= 0) {
1928 err = snd_pcm_hw_rule_add(runtime, 0,
1929 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1930 hw_rule_period_time, subs,
1931 SNDRV_PCM_HW_PARAM_FORMAT,
1932 SNDRV_PCM_HW_PARAM_CHANNELS,
1933 SNDRV_PCM_HW_PARAM_RATE,
1934 -1);
1935 if (err < 0)
1936 return err;
1937 }
Clemens Ladisch4608eb02009-04-03 09:42:42 +02001938 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
1939 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 return 0;
1941}
1942
Clemens Ladisch1700f302006-10-04 13:41:25 +02001943static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001945 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1946 struct snd_pcm_runtime *runtime = substream->runtime;
1947 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949 subs->interface = -1;
1950 subs->format = 0;
Clemens Ladisch1700f302006-10-04 13:41:25 +02001951 runtime->hw = snd_usb_hardware;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 runtime->private_data = subs;
1953 subs->pcm_substream = substream;
1954 return setup_hw_info(runtime, subs);
1955}
1956
Takashi Iwai86e07d32005-11-17 15:08:02 +01001957static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
Takashi Iwai86e07d32005-11-17 15:08:02 +01001959 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1960 struct snd_usb_substream *subs = &as->substream[direction];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962 if (subs->interface >= 0) {
1963 usb_set_interface(subs->dev, subs->interface, 0);
1964 subs->interface = -1;
1965 }
1966 subs->pcm_substream = NULL;
1967 return 0;
1968}
1969
Takashi Iwai86e07d32005-11-17 15:08:02 +01001970static int snd_usb_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001972 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973}
1974
Takashi Iwai86e07d32005-11-17 15:08:02 +01001975static int snd_usb_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976{
1977 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1978}
1979
Takashi Iwai86e07d32005-11-17 15:08:02 +01001980static int snd_usb_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981{
Clemens Ladisch1700f302006-10-04 13:41:25 +02001982 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983}
1984
Takashi Iwai86e07d32005-11-17 15:08:02 +01001985static int snd_usb_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
1987 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1988}
1989
Takashi Iwai86e07d32005-11-17 15:08:02 +01001990static struct snd_pcm_ops snd_usb_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 .open = snd_usb_playback_open,
1992 .close = snd_usb_playback_close,
1993 .ioctl = snd_pcm_lib_ioctl,
1994 .hw_params = snd_usb_hw_params,
1995 .hw_free = snd_usb_hw_free,
1996 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01001997 .trigger = snd_usb_pcm_playback_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 .pointer = snd_usb_pcm_pointer,
Clemens Ladischc55675e2009-12-18 09:31:31 +01001999 .page = snd_pcm_lib_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000};
2001
Takashi Iwai86e07d32005-11-17 15:08:02 +01002002static struct snd_pcm_ops snd_usb_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 .open = snd_usb_capture_open,
2004 .close = snd_usb_capture_close,
2005 .ioctl = snd_pcm_lib_ioctl,
2006 .hw_params = snd_usb_hw_params,
2007 .hw_free = snd_usb_hw_free,
2008 .prepare = snd_usb_pcm_prepare,
Clemens Ladischb55bbf02005-11-02 11:32:52 +01002009 .trigger = snd_usb_pcm_capture_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 .pointer = snd_usb_pcm_pointer,
Clemens Ladischc55675e2009-12-18 09:31:31 +01002011 .page = snd_pcm_lib_get_vmalloc_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012};
2013
2014
2015
2016/*
2017 * helper functions
2018 */
2019
2020/*
2021 * combine bytes and get an integer value
2022 */
2023unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size)
2024{
2025 switch (size) {
2026 case 1: return *bytes;
2027 case 2: return combine_word(bytes);
2028 case 3: return combine_triple(bytes);
2029 case 4: return combine_quad(bytes);
2030 default: return 0;
2031 }
2032}
2033
2034/*
2035 * parse descriptor buffer and return the pointer starting the given
2036 * descriptor type.
2037 */
2038void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype)
2039{
2040 u8 *p, *end, *next;
2041
2042 p = descstart;
2043 end = p + desclen;
2044 for (; p < end;) {
2045 if (p[0] < 2)
2046 return NULL;
2047 next = p + p[0];
2048 if (next > end)
2049 return NULL;
2050 if (p[1] == dtype && (!after || (void *)p > after)) {
2051 return p;
2052 }
2053 p = next;
2054 }
2055 return NULL;
2056}
2057
2058/*
2059 * find a class-specified interface descriptor with the given subtype.
2060 */
2061void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype)
2062{
2063 unsigned char *p = after;
2064
2065 while ((p = snd_usb_find_desc(buffer, buflen, p,
2066 USB_DT_CS_INTERFACE)) != NULL) {
2067 if (p[0] >= 3 && p[2] == dsubtype)
2068 return p;
2069 }
2070 return NULL;
2071}
2072
2073/*
2074 * Wrapper for usb_control_msg().
2075 * Allocates a temp buffer to prevent dmaing from/to the stack.
2076 */
2077int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
2078 __u8 requesttype, __u16 value, __u16 index, void *data,
2079 __u16 size, int timeout)
2080{
2081 int err;
2082 void *buf = NULL;
2083
2084 if (size > 0) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002085 buf = kmemdup(data, size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 if (!buf)
2087 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 }
2089 err = usb_control_msg(dev, pipe, request, requesttype,
2090 value, index, buf, size, timeout);
2091 if (size > 0) {
2092 memcpy(data, buf, size);
2093 kfree(buf);
2094 }
2095 return err;
2096}
2097
2098
2099/*
2100 * entry point for linux usb interface
2101 */
2102
2103static int usb_audio_probe(struct usb_interface *intf,
2104 const struct usb_device_id *id);
2105static void usb_audio_disconnect(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002106
2107#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01002108static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message);
2109static int usb_audio_resume(struct usb_interface *intf);
Andrew Morton93521d22007-12-24 14:40:56 +01002110#else
2111#define usb_audio_suspend NULL
2112#define usb_audio_resume NULL
2113#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115static struct usb_device_id usb_audio_ids [] = {
2116#include "usbquirks.h"
2117 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
2118 .bInterfaceClass = USB_CLASS_AUDIO,
2119 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL },
2120 { } /* Terminating entry */
2121};
2122
2123MODULE_DEVICE_TABLE (usb, usb_audio_ids);
2124
2125static struct usb_driver usb_audio_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 .name = "snd-usb-audio",
2127 .probe = usb_audio_probe,
2128 .disconnect = usb_audio_disconnect,
Oliver Neukumf85bf292007-12-14 14:42:41 +01002129 .suspend = usb_audio_suspend,
2130 .resume = usb_audio_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 .id_table = usb_audio_ids,
2132};
2133
2134
Takashi Iwai727f3172006-08-04 19:08:03 +02002135#if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS)
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137/*
2138 * proc interface for list the supported pcm formats
2139 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002140static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
2142 struct list_head *p;
2143 static char *sync_types[4] = {
2144 "NONE", "ASYNC", "ADAPTIVE", "SYNC"
2145 };
2146
2147 list_for_each(p, &subs->fmt_list) {
2148 struct audioformat *fp;
2149 fp = list_entry(p, struct audioformat, list);
2150 snd_iprintf(buffer, " Interface %d\n", fp->iface);
2151 snd_iprintf(buffer, " Altset %d\n", fp->altsetting);
Takashi Iwai6e5265e2009-09-08 14:26:51 +02002152 snd_iprintf(buffer, " Format: %s\n",
2153 snd_pcm_format_name(fp->format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 snd_iprintf(buffer, " Channels: %d\n", fp->channels);
2155 snd_iprintf(buffer, " Endpoint: %d %s (%s)\n",
2156 fp->endpoint & USB_ENDPOINT_NUMBER_MASK,
2157 fp->endpoint & USB_DIR_IN ? "IN" : "OUT",
2158 sync_types[(fp->ep_attr & EP_ATTR_MASK) >> 2]);
2159 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) {
2160 snd_iprintf(buffer, " Rates: %d - %d (continuous)\n",
2161 fp->rate_min, fp->rate_max);
2162 } else {
2163 unsigned int i;
2164 snd_iprintf(buffer, " Rates: ");
2165 for (i = 0; i < fp->nr_rates; i++) {
2166 if (i > 0)
2167 snd_iprintf(buffer, ", ");
2168 snd_iprintf(buffer, "%d", fp->rate_table[i]);
2169 }
2170 snd_iprintf(buffer, "\n");
2171 }
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002172 if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
2173 snd_iprintf(buffer, " Data packet interval: %d us\n",
2174 125 * (1 << fp->datainterval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize);
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002176 // snd_iprintf(buffer, " EP Attribute = %#x\n", fp->attributes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 }
2178}
2179
Takashi Iwai86e07d32005-11-17 15:08:02 +01002180static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
2182 if (subs->running) {
2183 unsigned int i;
2184 snd_iprintf(buffer, " Status: Running\n");
2185 snd_iprintf(buffer, " Interface = %d\n", subs->interface);
2186 snd_iprintf(buffer, " Altset = %d\n", subs->format);
2187 snd_iprintf(buffer, " URBs = %d [ ", subs->nurbs);
2188 for (i = 0; i < subs->nurbs; i++)
2189 snd_iprintf(buffer, "%d ", subs->dataurb[i].packets);
2190 snd_iprintf(buffer, "]\n");
2191 snd_iprintf(buffer, " Packet Size = %d\n", subs->curpacksize);
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002192 snd_iprintf(buffer, " Momentary freq = %u Hz (%#x.%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 snd_usb_get_speed(subs->dev) == USB_SPEED_FULL
2194 ? get_full_speed_hz(subs->freqm)
Clemens Ladisch08fe1582005-04-22 15:33:01 +02002195 : get_high_speed_hz(subs->freqm),
2196 subs->freqm >> 16, subs->freqm & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 } else {
2198 snd_iprintf(buffer, " Status: Stop\n");
2199 }
2200}
2201
Takashi Iwai86e07d32005-11-17 15:08:02 +01002202static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002204 struct snd_usb_stream *stream = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name);
2207
2208 if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) {
2209 snd_iprintf(buffer, "\nPlayback:\n");
2210 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2211 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
2212 }
2213 if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) {
2214 snd_iprintf(buffer, "\nCapture:\n");
2215 proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2216 proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
2217 }
2218}
2219
Takashi Iwai86e07d32005-11-17 15:08:02 +01002220static void proc_pcm_format_add(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002222 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 char name[32];
Takashi Iwai86e07d32005-11-17 15:08:02 +01002224 struct snd_card *card = stream->chip->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
2226 sprintf(name, "stream%d", stream->pcm_index);
Pavel Machek07f51a72008-04-14 13:15:56 +02002227 if (!snd_card_proc_new(card, name, &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002228 snd_info_set_text_ops(entry, stream, proc_pcm_format_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
Jaroslav Kysela21a34792006-01-13 09:12:11 +01002231#else
2232
2233static inline void proc_pcm_format_add(struct snd_usb_stream *stream)
2234{
2235}
2236
2237#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
2239/*
2240 * initialize the substream instance.
2241 */
2242
Takashi Iwai86e07d32005-11-17 15:08:02 +01002243static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002245 struct snd_usb_substream *subs = &as->substream[stream];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 INIT_LIST_HEAD(&subs->fmt_list);
2248 spin_lock_init(&subs->lock);
2249
2250 subs->stream = as;
2251 subs->direction = stream;
2252 subs->dev = as->chip->dev;
John S. Gruber98e89f62009-12-27 12:19:58 -05002253 subs->txfr_quirk = as->chip->txfr_quirk;
Clemens Ladischd5132022008-02-25 11:01:00 +01002254 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 subs->ops = audio_urb_ops[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002256 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 subs->ops = audio_urb_ops_high_speed[stream];
Clemens Ladischd5132022008-02-25 11:01:00 +01002258 switch (as->chip->usb_id) {
2259 case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
2260 case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
Eran Tromer97c889a2008-09-26 01:07:03 -04002261 case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */
Clemens Ladischd5132022008-02-25 11:01:00 +01002262 subs->ops.retire_sync = retire_playback_sync_urb_hs_emu;
2263 break;
2264 }
2265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 snd_pcm_set_ops(as->pcm, stream,
2267 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2268 &snd_usb_playback_ops : &snd_usb_capture_ops);
2269
2270 list_add_tail(&fp->list, &subs->fmt_list);
2271 subs->formats |= 1ULL << fp->format;
2272 subs->endpoint = fp->endpoint;
2273 subs->num_formats++;
2274 subs->fmt_type = fp->fmt_type;
2275}
2276
2277
2278/*
2279 * free a substream
2280 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002281static void free_substream(struct snd_usb_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282{
2283 struct list_head *p, *n;
2284
Pavel Machek07f51a72008-04-14 13:15:56 +02002285 if (!subs->num_formats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 return; /* not initialized */
2287 list_for_each_safe(p, n, &subs->fmt_list) {
2288 struct audioformat *fp = list_entry(p, struct audioformat, list);
2289 kfree(fp->rate_table);
2290 kfree(fp);
2291 }
Takashi Iwai8fec5602007-02-01 11:50:56 +01002292 kfree(subs->rate_list.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293}
2294
2295
2296/*
2297 * free a usb stream instance
2298 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002299static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300{
2301 free_substream(&stream->substream[0]);
2302 free_substream(&stream->substream[1]);
2303 list_del(&stream->list);
2304 kfree(stream);
2305}
2306
Takashi Iwai86e07d32005-11-17 15:08:02 +01002307static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
Takashi Iwai86e07d32005-11-17 15:08:02 +01002309 struct snd_usb_stream *stream = pcm->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 if (stream) {
2311 stream->pcm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 snd_usb_audio_stream_free(stream);
2313 }
2314}
2315
2316
2317/*
2318 * add this endpoint to the chip instance.
2319 * if a stream with the same endpoint already exists, append to it.
2320 * if not, create a new pcm stream.
2321 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002322static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323{
2324 struct list_head *p;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002325 struct snd_usb_stream *as;
2326 struct snd_usb_substream *subs;
2327 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 int err;
2329
2330 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002331 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (as->fmt_type != fp->fmt_type)
2333 continue;
2334 subs = &as->substream[stream];
Pavel Machek07f51a72008-04-14 13:15:56 +02002335 if (!subs->endpoint)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 continue;
2337 if (subs->endpoint == fp->endpoint) {
2338 list_add_tail(&fp->list, &subs->fmt_list);
2339 subs->num_formats++;
2340 subs->formats |= 1ULL << fp->format;
2341 return 0;
2342 }
2343 }
2344 /* look for an empty stream */
2345 list_for_each(p, &chip->pcm_list) {
Takashi Iwai86e07d32005-11-17 15:08:02 +01002346 as = list_entry(p, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (as->fmt_type != fp->fmt_type)
2348 continue;
2349 subs = &as->substream[stream];
2350 if (subs->endpoint)
2351 continue;
2352 err = snd_pcm_new_stream(as->pcm, stream, 1);
2353 if (err < 0)
2354 return err;
2355 init_substream(as, stream, fp);
2356 return 0;
2357 }
2358
2359 /* create a new pcm */
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002360 as = kzalloc(sizeof(*as), GFP_KERNEL);
Pavel Machek07f51a72008-04-14 13:15:56 +02002361 if (!as)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 as->pcm_index = chip->pcm_devs;
2364 as->chip = chip;
2365 as->fmt_type = fp->fmt_type;
2366 err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
2367 stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
2368 stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
2369 &pcm);
2370 if (err < 0) {
2371 kfree(as);
2372 return err;
2373 }
2374 as->pcm = pcm;
2375 pcm->private_data = as;
2376 pcm->private_free = snd_usb_audio_pcm_free;
2377 pcm->info_flags = 0;
2378 if (chip->pcm_devs > 0)
2379 sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
2380 else
2381 strcpy(pcm->name, "USB Audio");
2382
2383 init_substream(as, stream, fp);
2384
2385 list_add(&as->list, &chip->pcm_list);
2386 chip->pcm_devs++;
2387
2388 proc_pcm_format_add(as);
2389
2390 return 0;
2391}
2392
2393
2394/*
2395 * check if the device uses big-endian samples
2396 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002397static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002399 switch (chip->usb_id) {
2400 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
2401 if (fp->endpoint & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 return 1;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002403 break;
2404 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02002405 if (device_setup[chip->index] == 0x00 ||
2406 fp->altsetting==1 || fp->altsetting==2 || fp->altsetting==3)
2407 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 }
2409 return 0;
2410}
2411
2412/*
2413 * parse the audio format type I descriptor
2414 * and returns the corresponding pcm format
2415 *
2416 * @dev: usb device
2417 * @fp: audioformat record
2418 * @format: the format tag (wFormatTag)
2419 * @fmt: the format type descriptor
2420 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002421static int parse_audio_format_i_type(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 int format, unsigned char *fmt)
2423{
2424 int pcm_format;
2425 int sample_width, sample_bytes;
2426
2427 /* FIXME: correct endianess and sign? */
2428 pcm_format = -1;
2429 sample_width = fmt[6];
2430 sample_bytes = fmt[5];
2431 switch (format) {
2432 case 0: /* some devices don't define this correctly... */
2433 snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002434 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 /* fall-through */
2436 case USB_AUDIO_FORMAT_PCM:
2437 if (sample_width > sample_bytes * 8) {
2438 snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002439 chip->dev->devnum, fp->iface, fp->altsetting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 sample_width, sample_bytes);
2441 }
2442 /* check the format byte size */
2443 switch (fmt[5]) {
2444 case 1:
2445 pcm_format = SNDRV_PCM_FORMAT_S8;
2446 break;
2447 case 2:
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_S16_BE; /* grrr, big endian!! */
2450 else
2451 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2452 break;
2453 case 3:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002454 if (is_big_endian_format(chip, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */
2456 else
2457 pcm_format = SNDRV_PCM_FORMAT_S24_3LE;
2458 break;
2459 case 4:
2460 pcm_format = SNDRV_PCM_FORMAT_S32_LE;
2461 break;
2462 default:
2463 snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002464 chip->dev->devnum, fp->iface,
2465 fp->altsetting, sample_width, sample_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 break;
2467 }
2468 break;
2469 case USB_AUDIO_FORMAT_PCM8:
Pavel Machek2a56f512008-04-14 13:14:22 +02002470 pcm_format = SNDRV_PCM_FORMAT_U8;
2471
2472 /* Dallas DS4201 workaround: it advertises U8 format, but really
2473 supports S8. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002474 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 pcm_format = SNDRV_PCM_FORMAT_S8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 break;
2477 case USB_AUDIO_FORMAT_IEEE_FLOAT:
2478 pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE;
2479 break;
2480 case USB_AUDIO_FORMAT_ALAW:
2481 pcm_format = SNDRV_PCM_FORMAT_A_LAW;
2482 break;
2483 case USB_AUDIO_FORMAT_MU_LAW:
2484 pcm_format = SNDRV_PCM_FORMAT_MU_LAW;
2485 break;
2486 default:
2487 snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002488 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 break;
2490 }
2491 return pcm_format;
2492}
2493
2494
2495/*
2496 * parse the format descriptor and stores the possible sample rates
2497 * on the audioformat table.
2498 *
2499 * @dev: usb device
2500 * @fp: audioformat record
2501 * @fmt: the format descriptor
2502 * @offset: the start offset of descriptor pointing the rate type
2503 * (7 for type I and II, 8 for type II)
2504 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002505static int parse_audio_format_rates(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 unsigned char *fmt, int offset)
2507{
2508 int nr_rates = fmt[offset];
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002509
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
2511 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002512 chip->dev->devnum, fp->iface, fp->altsetting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 return -1;
2514 }
2515
2516 if (nr_rates) {
2517 /*
2518 * build the rate table and bitmap flags
2519 */
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002520 int r, idx;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
2523 if (fp->rate_table == NULL) {
2524 snd_printk(KERN_ERR "cannot malloc\n");
2525 return -1;
2526 }
2527
Takashi Iwai04125582009-02-16 22:48:12 +01002528 fp->nr_rates = 0;
2529 fp->rate_min = fp->rate_max = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
Clemens Ladisch987411b2006-11-20 14:14:39 +01002531 unsigned int rate = combine_triple(&fmt[idx]);
Takashi Iwai04125582009-02-16 22:48:12 +01002532 if (!rate)
2533 continue;
Clemens Ladisch987411b2006-11-20 14:14:39 +01002534 /* C-Media CM6501 mislabels its 96 kHz altsetting */
2535 if (rate == 48000 && nr_rates == 1 &&
Joris van Rantwijk3b03cc52009-02-16 22:58:23 +01002536 (chip->usb_id == USB_ID(0x0d8c, 0x0201) ||
2537 chip->usb_id == USB_ID(0x0d8c, 0x0102)) &&
Clemens Ladisch987411b2006-11-20 14:14:39 +01002538 fp->altsetting == 5 && fp->maxpacksize == 392)
2539 rate = 96000;
Takashi Iwai04125582009-02-16 22:48:12 +01002540 fp->rate_table[fp->nr_rates] = rate;
2541 if (!fp->rate_min || rate < fp->rate_min)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 fp->rate_min = rate;
Takashi Iwai04125582009-02-16 22:48:12 +01002543 if (!fp->rate_max || rate > fp->rate_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 fp->rate_max = rate;
Clemens Ladisch918f3a02007-08-13 17:40:54 +02002545 fp->rates |= snd_pcm_rate_to_rate_bit(rate);
Takashi Iwai04125582009-02-16 22:48:12 +01002546 fp->nr_rates++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 }
Takashi Iwai04125582009-02-16 22:48:12 +01002548 if (!fp->nr_rates) {
Gregor Jasnybeb60112007-01-31 12:27:39 +01002549 hwc_debug("All rates were zero. Skipping format!\n");
2550 return -1;
2551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 } else {
2553 /* continuous rates */
2554 fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
2555 fp->rate_min = combine_triple(&fmt[offset + 1]);
2556 fp->rate_max = combine_triple(&fmt[offset + 4]);
2557 }
2558 return 0;
2559}
2560
2561/*
2562 * parse the format type I and III descriptors
2563 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002564static int parse_audio_format_i(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 int format, unsigned char *fmt)
2566{
2567 int pcm_format;
2568
2569 if (fmt[3] == USB_FORMAT_TYPE_III) {
2570 /* FIXME: the format type is really IECxxx
2571 * but we give normal PCM format to get the existing
2572 * apps working...
2573 */
Thibault Le Meurcac19c32007-07-13 11:50:23 +02002574 switch (chip->usb_id) {
2575
2576 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2577 if (device_setup[chip->index] == 0x00 &&
2578 fp->altsetting == 6)
2579 pcm_format = SNDRV_PCM_FORMAT_S16_BE;
2580 else
2581 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2582 break;
2583 default:
2584 pcm_format = SNDRV_PCM_FORMAT_S16_LE;
2585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 } else {
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002587 pcm_format = parse_audio_format_i_type(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 if (pcm_format < 0)
2589 return -1;
2590 }
2591 fp->format = pcm_format;
2592 fp->channels = fmt[4];
2593 if (fp->channels < 1) {
2594 snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002595 chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 return -1;
2597 }
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002598 return parse_audio_format_rates(chip, fp, fmt, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599}
2600
2601/*
2602 * prase the format type II descriptor
2603 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002604static int parse_audio_format_ii(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 int format, unsigned char *fmt)
2606{
2607 int brate, framesize;
2608 switch (format) {
2609 case USB_AUDIO_FORMAT_AC3:
2610 /* FIXME: there is no AC3 format defined yet */
2611 // fp->format = SNDRV_PCM_FORMAT_AC3;
2612 fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */
2613 break;
2614 case USB_AUDIO_FORMAT_MPEG:
2615 fp->format = SNDRV_PCM_FORMAT_MPEG;
2616 break;
2617 default:
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002618 snd_printd(KERN_INFO "%d:%u:%d : unknown format tag %#x is detected. processed as MPEG.\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002619 chip->dev->devnum, fp->iface, fp->altsetting, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 fp->format = SNDRV_PCM_FORMAT_MPEG;
2621 break;
2622 }
2623 fp->channels = 1;
2624 brate = combine_word(&fmt[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */
2625 framesize = combine_word(&fmt[6]); /* fmt[6,7]: wSamplesPerFrame */
2626 snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
2627 fp->frame_size = framesize;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002628 return parse_audio_format_rates(chip, fp, fmt, 8); /* fmt[8..] sample rates */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629}
2630
Takashi Iwai86e07d32005-11-17 15:08:02 +01002631static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 int format, unsigned char *fmt, int stream)
2633{
2634 int err;
2635
2636 switch (fmt[3]) {
2637 case USB_FORMAT_TYPE_I:
2638 case USB_FORMAT_TYPE_III:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002639 err = parse_audio_format_i(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 break;
2641 case USB_FORMAT_TYPE_II:
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002642 err = parse_audio_format_ii(chip, fp, format, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 break;
2644 default:
2645 snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002646 chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 return -1;
2648 }
2649 fp->fmt_type = fmt[3];
2650 if (err < 0)
2651 return err;
2652#if 1
Clemens Ladisch33159372006-01-13 08:11:22 +01002653 /* FIXME: temporary hack for extigy/audigy 2 nx/zs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 /* extigy apparently supports sample rates other than 48k
2655 * but not in ordinary way. so we enable only 48k atm.
2656 */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002657 if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
Clemens Ladisch33159372006-01-13 08:11:22 +01002658 chip->usb_id == USB_ID(0x041e, 0x3020) ||
2659 chip->usb_id == USB_ID(0x041e, 0x3061)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 if (fmt[3] == USB_FORMAT_TYPE_I &&
Clemens Ladisch8c1872d2005-04-28 09:31:53 +02002661 fp->rates != SNDRV_PCM_RATE_48000 &&
2662 fp->rates != SNDRV_PCM_RATE_96000)
Clemens Ladischb4d3f9d2005-06-27 08:18:27 +02002663 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 }
2665#endif
2666 return 0;
2667}
2668
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002669static unsigned char parse_datainterval(struct snd_usb_audio *chip,
2670 struct usb_host_interface *alts)
2671{
2672 if (snd_usb_get_speed(chip->dev) == USB_SPEED_HIGH &&
2673 get_endpoint(alts, 0)->bInterval >= 1 &&
2674 get_endpoint(alts, 0)->bInterval <= 4)
2675 return get_endpoint(alts, 0)->bInterval - 1;
2676 else
2677 return 0;
2678}
2679
Thibault LE MEURe3113342006-03-14 11:44:53 +01002680static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
2681 int iface, int altno);
Takashi Iwai86e07d32005-11-17 15:08:02 +01002682static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683{
2684 struct usb_device *dev;
2685 struct usb_interface *iface;
2686 struct usb_host_interface *alts;
2687 struct usb_interface_descriptor *altsd;
2688 int i, altno, err, stream;
2689 int format;
Clemens Ladisch8886f332009-07-13 13:21:58 +02002690 struct audioformat *fp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 unsigned char *fmt, *csep;
Pavel Machekb9d43bc2008-04-14 13:12:47 +02002692 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
2694 dev = chip->dev;
2695
2696 /* parse the interface's altsettings */
2697 iface = usb_ifnum_to_if(dev, iface_no);
Pavel Machekb9d43bc2008-04-14 13:12:47 +02002698
2699 num = iface->num_altsetting;
2700
2701 /*
2702 * Dallas DS4201 workaround: It presents 5 altsettings, but the last
2703 * one misses syncpipe, and does not produce any sound.
2704 */
2705 if (chip->usb_id == USB_ID(0x04fa, 0x4201))
2706 num = 4;
2707
2708 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 alts = &iface->altsetting[i];
2710 altsd = get_iface_desc(alts);
2711 /* skip invalid one */
2712 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2713 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2714 (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING &&
2715 altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
2716 altsd->bNumEndpoints < 1 ||
2717 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
2718 continue;
2719 /* must be isochronous */
2720 if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
2721 USB_ENDPOINT_XFER_ISOC)
2722 continue;
2723 /* check direction */
2724 stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
2725 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2726 altno = altsd->bAlternateSetting;
Thibault LE MEURe3113342006-03-14 11:44:53 +01002727
2728 /* audiophile usb: skip altsets incompatible with device_setup
2729 */
2730 if (chip->usb_id == USB_ID(0x0763, 0x2003) &&
2731 audiophile_skip_setting_quirk(chip, iface_no, altno))
2732 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
2734 /* get audio formats */
2735 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, AS_GENERAL);
2736 if (!fmt) {
2737 snd_printk(KERN_ERR "%d:%u:%d : AS_GENERAL descriptor not found\n",
2738 dev->devnum, iface_no, altno);
2739 continue;
2740 }
2741
2742 if (fmt[0] < 7) {
2743 snd_printk(KERN_ERR "%d:%u:%d : invalid AS_GENERAL desc\n",
2744 dev->devnum, iface_no, altno);
2745 continue;
2746 }
2747
2748 format = (fmt[6] << 8) | fmt[5]; /* remember the format value */
2749
2750 /* get format type */
2751 fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, FORMAT_TYPE);
2752 if (!fmt) {
2753 snd_printk(KERN_ERR "%d:%u:%d : no FORMAT_TYPE desc\n",
2754 dev->devnum, iface_no, altno);
2755 continue;
2756 }
2757 if (fmt[0] < 8) {
2758 snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n",
2759 dev->devnum, iface_no, altno);
2760 continue;
2761 }
2762
Clemens Ladisch8886f332009-07-13 13:21:58 +02002763 /*
2764 * Blue Microphones workaround: The last altsetting is identical
2765 * with the previous one, except for a larger packet size, but
2766 * is actually a mislabeled two-channel setting; ignore it.
2767 */
2768 if (fmt[4] == 1 && fmt[5] == 2 && altno == 2 && num == 3 &&
2769 fp && fp->altsetting == 1 && fp->channels == 1 &&
2770 fp->format == SNDRV_PCM_FORMAT_S16_LE &&
2771 le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) ==
2772 fp->maxpacksize * 2)
2773 continue;
2774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
2776 /* Creamware Noah has this descriptor after the 2nd endpoint */
2777 if (!csep && altsd->bNumEndpoints >= 2)
2778 csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
2779 if (!csep || csep[0] < 7 || csep[2] != EP_GENERAL) {
Takashi Iwaif8c75792006-05-18 14:47:03 +02002780 snd_printk(KERN_WARNING "%d:%u:%d : no or invalid"
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002781 " class specific endpoint descriptor\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 dev->devnum, iface_no, altno);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002783 csep = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 }
2785
Panagiotis Issaris59feddb2006-07-25 15:28:03 +02002786 fp = kzalloc(sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (! fp) {
2788 snd_printk(KERN_ERR "cannot malloc\n");
2789 return -ENOMEM;
2790 }
2791
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 fp->iface = iface_no;
2793 fp->altsetting = altno;
2794 fp->altset_idx = i;
2795 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
2796 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002797 fp->datainterval = parse_datainterval(chip, alts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Clemens Ladisch573567e2005-06-27 08:17:30 +02002799 if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
2800 fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
2801 * (fp->maxpacksize & 0x7ff);
Clemens Ladischfaf8d112006-05-18 09:35:15 +02002802 fp->attributes = csep ? csep[3] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
2804 /* some quirks for attributes here */
2805
Clemens Ladischc3f93292005-05-04 14:56:04 +02002806 switch (chip->usb_id) {
2807 case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 /* Optoplay sets the sample rate attribute although
2809 * it seems not supporting it in fact.
2810 */
2811 fp->attributes &= ~EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002812 break;
2813 case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
2814 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 /* doesn't set the sample rate attribute, but supports it */
2816 fp->attributes |= EP_CS_ATTR_SAMPLE_RATE;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002817 break;
2818 case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
2819 case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
2820 an older model 77d:223) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 /*
2822 * plantronics headset and Griffin iMic have set adaptive-in
2823 * although it's really not...
2824 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 fp->ep_attr &= ~EP_ATTR_MASK;
2826 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2827 fp->ep_attr |= EP_ATTR_ADAPTIVE;
2828 else
2829 fp->ep_attr |= EP_ATTR_SYNC;
Clemens Ladischc3f93292005-05-04 14:56:04 +02002830 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 }
2832
2833 /* ok, let's parse further... */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02002834 if (parse_audio_format(chip, fp, format, fmt, stream) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 kfree(fp->rate_table);
2836 kfree(fp);
2837 continue;
2838 }
2839
Andreas Bergmeierb9d710b2009-01-24 12:15:14 +01002840 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 -07002841 err = add_audio_endpoint(chip, stream, fp);
2842 if (err < 0) {
2843 kfree(fp->rate_table);
2844 kfree(fp);
2845 return err;
2846 }
2847 /* try to set the interface... */
2848 usb_set_interface(chip->dev, iface_no, altno);
2849 init_usb_pitch(chip->dev, iface_no, alts, fp);
2850 init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max);
2851 }
2852 return 0;
2853}
2854
2855
2856/*
2857 * disconnect streams
2858 * called from snd_usb_audio_disconnect()
2859 */
Clemens Ladischee733392005-04-25 10:34:13 +02002860static void snd_usb_stream_disconnect(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861{
2862 int idx;
Takashi Iwai86e07d32005-11-17 15:08:02 +01002863 struct snd_usb_stream *as;
2864 struct snd_usb_substream *subs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
Takashi Iwai86e07d32005-11-17 15:08:02 +01002866 as = list_entry(head, struct snd_usb_stream, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 for (idx = 0; idx < 2; idx++) {
2868 subs = &as->substream[idx];
2869 if (!subs->num_formats)
2870 return;
2871 release_substream_urbs(subs, 1);
2872 subs->interface = -1;
2873 }
2874}
2875
2876/*
2877 * parse audio control descriptor and create pcm/midi streams
2878 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002879static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
2881 struct usb_device *dev = chip->dev;
2882 struct usb_host_interface *host_iface;
2883 struct usb_interface *iface;
2884 unsigned char *p1;
2885 int i, j;
2886
2887 /* find audiocontrol interface */
2888 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
2889 if (!(p1 = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen, NULL, HEADER))) {
2890 snd_printk(KERN_ERR "cannot find HEADER\n");
2891 return -EINVAL;
2892 }
2893 if (! p1[7] || p1[0] < 8 + p1[7]) {
2894 snd_printk(KERN_ERR "invalid HEADER\n");
2895 return -EINVAL;
2896 }
2897
2898 /*
2899 * parse all USB audio streaming interfaces
2900 */
2901 for (i = 0; i < p1[7]; i++) {
2902 struct usb_host_interface *alts;
2903 struct usb_interface_descriptor *altsd;
2904 j = p1[8 + i];
2905 iface = usb_ifnum_to_if(dev, j);
2906 if (!iface) {
2907 snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
2908 dev->devnum, ctrlif, j);
2909 continue;
2910 }
2911 if (usb_interface_claimed(iface)) {
2912 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n", dev->devnum, ctrlif, j);
2913 continue;
2914 }
2915 alts = &iface->altsetting[0];
2916 altsd = get_iface_desc(alts);
2917 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
2918 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
2919 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDI_STREAMING) {
Clemens Ladischd82af9f2009-11-16 12:23:46 +01002920 int err = snd_usbmidi_create(chip->card, iface,
2921 &chip->midi_list, NULL);
2922 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n", dev->devnum, ctrlif, j);
2924 continue;
2925 }
2926 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2927 continue;
2928 }
2929 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
2930 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2931 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING) {
2932 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n", dev->devnum, ctrlif, j, altsd->bInterfaceClass);
2933 /* skip non-supported classes */
2934 continue;
2935 }
Clemens Ladisch076639f2007-08-21 08:56:54 +02002936 if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
2937 snd_printk(KERN_ERR "low speed audio streaming not supported\n");
2938 continue;
2939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 if (! parse_audio_endpoints(chip, j)) {
2941 usb_set_interface(dev, j, 0); /* reset the current interface */
2942 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
2943 }
2944 }
2945
2946 return 0;
2947}
2948
2949/*
2950 * create a stream for an endpoint/altsetting without proper descriptors
2951 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01002952static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002954 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955{
2956 struct audioformat *fp;
2957 struct usb_host_interface *alts;
2958 int stream, err;
Al Virob4482a42007-10-14 19:35:40 +01002959 unsigned *rate_table = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002961 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 if (! fp) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -07002963 snd_printk(KERN_ERR "cannot memdup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 return -ENOMEM;
2965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (fp->nr_rates > 0) {
2967 rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
2968 if (!rate_table) {
2969 kfree(fp);
2970 return -ENOMEM;
2971 }
2972 memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
2973 fp->rate_table = rate_table;
2974 }
2975
2976 stream = (fp->endpoint & USB_DIR_IN)
2977 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2978 err = add_audio_endpoint(chip, stream, fp);
2979 if (err < 0) {
2980 kfree(fp);
2981 kfree(rate_table);
2982 return err;
2983 }
2984 if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
2985 fp->altset_idx >= iface->num_altsetting) {
2986 kfree(fp);
2987 kfree(rate_table);
2988 return -EINVAL;
2989 }
2990 alts = &iface->altsetting[fp->altset_idx];
Clemens Ladisch744b89e2009-04-03 09:45:01 +02002991 fp->datainterval = parse_datainterval(chip, alts);
Clemens Ladisch894dcd72009-02-06 08:13:07 +01002992 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 usb_set_interface(chip->dev, fp->iface, 0);
2994 init_usb_pitch(chip->dev, fp->iface, alts, fp);
2995 init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max);
2996 return 0;
2997}
2998
2999/*
3000 * create a stream for an interface with proper descriptors
3001 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003002static int create_standard_audio_quirk(struct snd_usb_audio *chip,
Clemens Ladischd1bda042005-09-14 08:36:03 +02003003 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003004 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005{
3006 struct usb_host_interface *alts;
3007 struct usb_interface_descriptor *altsd;
3008 int err;
3009
3010 alts = &iface->altsetting[0];
3011 altsd = get_iface_desc(alts);
Clemens Ladischd1bda042005-09-14 08:36:03 +02003012 err = parse_audio_endpoints(chip, altsd->bInterfaceNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 if (err < 0) {
3014 snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
3015 altsd->bInterfaceNumber, err);
3016 return err;
3017 }
Clemens Ladischd1bda042005-09-14 08:36:03 +02003018 /* reset the current interface */
3019 usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 return 0;
3021}
3022
3023/*
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003024 * Create a stream for an Edirol UA-700/UA-25/UA-4FX interface.
3025 * The only way to detect the sample rate is by looking at wMaxPacketSize.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 */
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003027static int create_uaxx_quirk(struct snd_usb_audio *chip,
3028 struct usb_interface *iface,
3029 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030{
3031 static const struct audioformat ua_format = {
3032 .format = SNDRV_PCM_FORMAT_S24_3LE,
3033 .channels = 2,
3034 .fmt_type = USB_FORMAT_TYPE_I,
3035 .altsetting = 1,
3036 .altset_idx = 1,
3037 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3038 };
3039 struct usb_host_interface *alts;
3040 struct usb_interface_descriptor *altsd;
3041 struct audioformat *fp;
3042 int stream, err;
3043
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003044 /* both PCM and MIDI interfaces have 2 or more altsettings */
3045 if (iface->num_altsetting < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 return -ENXIO;
3047 alts = &iface->altsetting[1];
3048 altsd = get_iface_desc(alts);
3049
Pedro Lopez-Cabanillas59b3db62008-10-07 20:54:18 +02003050 if (altsd->bNumEndpoints == 2) {
3051 static const struct snd_usb_midi_endpoint_info ua700_ep = {
3052 .out_cables = 0x0003,
3053 .in_cables = 0x0003
3054 };
3055 static const struct snd_usb_audio_quirk ua700_quirk = {
3056 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3057 .data = &ua700_ep
3058 };
3059 static const struct snd_usb_midi_endpoint_info uaxx_ep = {
3060 .out_cables = 0x0001,
3061 .in_cables = 0x0001
3062 };
3063 static const struct snd_usb_audio_quirk uaxx_quirk = {
3064 .type = QUIRK_MIDI_FIXED_ENDPOINT,
3065 .data = &uaxx_ep
3066 };
Clemens Ladischd82af9f2009-11-16 12:23:46 +01003067 const struct snd_usb_audio_quirk *quirk =
3068 chip->usb_id == USB_ID(0x0582, 0x002b)
3069 ? &ua700_quirk : &uaxx_quirk;
3070 return snd_usbmidi_create(chip->card, iface,
3071 &chip->midi_list, quirk);
Pedro Lopez-Cabanillas59b3db62008-10-07 20:54:18 +02003072 }
3073
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 if (altsd->bNumEndpoints != 1)
3075 return -ENXIO;
3076
3077 fp = kmalloc(sizeof(*fp), GFP_KERNEL);
3078 if (!fp)
3079 return -ENOMEM;
3080 memcpy(fp, &ua_format, sizeof(*fp));
3081
3082 fp->iface = altsd->bInterfaceNumber;
3083 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3084 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02003085 fp->datainterval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3087
3088 switch (fp->maxpacksize) {
3089 case 0x120:
3090 fp->rate_max = fp->rate_min = 44100;
3091 break;
3092 case 0x138:
3093 case 0x140:
3094 fp->rate_max = fp->rate_min = 48000;
3095 break;
3096 case 0x258:
3097 case 0x260:
3098 fp->rate_max = fp->rate_min = 96000;
3099 break;
3100 default:
3101 snd_printk(KERN_ERR "unknown sample rate\n");
3102 kfree(fp);
3103 return -ENXIO;
3104 }
3105
3106 stream = (fp->endpoint & USB_DIR_IN)
3107 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3108 err = add_audio_endpoint(chip, stream, fp);
3109 if (err < 0) {
3110 kfree(fp);
3111 return err;
3112 }
3113 usb_set_interface(chip->dev, fp->iface, 0);
3114 return 0;
3115}
3116
3117/*
3118 * Create a stream for an Edirol UA-1000 interface.
3119 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003120static int create_ua1000_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003121 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003122 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123{
3124 static const struct audioformat ua1000_format = {
3125 .format = SNDRV_PCM_FORMAT_S32_LE,
3126 .fmt_type = USB_FORMAT_TYPE_I,
3127 .altsetting = 1,
3128 .altset_idx = 1,
3129 .attributes = 0,
3130 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3131 };
3132 struct usb_host_interface *alts;
3133 struct usb_interface_descriptor *altsd;
3134 struct audioformat *fp;
3135 int stream, err;
3136
3137 if (iface->num_altsetting != 2)
3138 return -ENXIO;
3139 alts = &iface->altsetting[1];
3140 altsd = get_iface_desc(alts);
Ben Williamsonc4a87ef2006-06-19 17:20:09 +02003141 if (alts->extralen != 11 || alts->extra[1] != USB_DT_CS_INTERFACE ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 altsd->bNumEndpoints != 1)
3143 return -ENXIO;
3144
Alexey Dobriyan52978be2006-09-30 23:27:21 -07003145 fp = kmemdup(&ua1000_format, sizeof(*fp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 if (!fp)
3147 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
3149 fp->channels = alts->extra[4];
3150 fp->iface = altsd->bInterfaceNumber;
3151 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
3152 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
Clemens Ladisch744b89e2009-04-03 09:45:01 +02003153 fp->datainterval = parse_datainterval(chip, alts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
3155 fp->rate_max = fp->rate_min = combine_triple(&alts->extra[8]);
3156
3157 stream = (fp->endpoint & USB_DIR_IN)
3158 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
3159 err = add_audio_endpoint(chip, stream, fp);
3160 if (err < 0) {
3161 kfree(fp);
3162 return err;
3163 }
3164 /* FIXME: playback must be synchronized to capture */
3165 usb_set_interface(chip->dev, fp->iface, 0);
3166 return 0;
3167}
3168
Takashi Iwai86e07d32005-11-17 15:08:02 +01003169static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003171 const struct snd_usb_audio_quirk *quirk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
3173/*
3174 * handle the quirks for the contained interfaces
3175 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003176static int create_composite_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003178 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179{
3180 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
3181 int err;
3182
3183 for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
3184 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
3185 if (!iface)
3186 continue;
3187 if (quirk->ifnum != probed_ifnum &&
3188 usb_interface_claimed(iface))
3189 continue;
3190 err = snd_usb_create_quirk(chip, iface, quirk);
3191 if (err < 0)
3192 return err;
3193 if (quirk->ifnum != probed_ifnum)
3194 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
3195 }
3196 return 0;
3197}
3198
Takashi Iwai86e07d32005-11-17 15:08:02 +01003199static int ignore_interface_quirk(struct snd_usb_audio *chip,
Clemens Ladisch854af952005-07-25 16:19:10 +02003200 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003201 const struct snd_usb_audio_quirk *quirk)
Clemens Ladisch854af952005-07-25 16:19:10 +02003202{
3203 return 0;
3204}
3205
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
3207/*
3208 * boot quirks
3209 */
3210
3211#define EXTIGY_FIRMWARE_SIZE_OLD 794
3212#define EXTIGY_FIRMWARE_SIZE_NEW 483
3213
3214static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
3215{
3216 struct usb_host_config *config = dev->actconfig;
3217 int err;
3218
3219 if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
3220 le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
3221 snd_printdd("sending Extigy boot sequence...\n");
3222 /* Send message to force it to reconnect with full interface. */
3223 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
3224 0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000);
3225 if (err < 0) snd_printdd("error sending boot message: %d\n", err);
3226 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
3227 &dev->descriptor, sizeof(dev->descriptor));
3228 config = dev->actconfig;
3229 if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
3230 err = usb_reset_configuration(dev);
3231 if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
3232 snd_printdd("extigy_boot: new boot length = %d\n",
3233 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
3234 return -ENODEV; /* quit this anyway */
3235 }
3236 return 0;
3237}
3238
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003239static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
3240{
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003241 u8 buf = 1;
3242
3243 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
3244 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3245 0, 0, &buf, 1, 1000);
3246 if (buf == 0) {
3247 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
3248 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
3249 1, 2000, NULL, 0, 1000);
3250 return -ENODEV;
3251 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003252 return 0;
3253}
3254
Thibault LE MEURe3113342006-03-14 11:44:53 +01003255/*
Sam Revitche217e302006-06-23 15:10:18 +02003256 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
3257 * documented in the device's data sheet.
3258 */
3259static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value)
3260{
3261 u8 buf[4];
3262 buf[0] = 0x20;
3263 buf[1] = value & 0xff;
3264 buf[2] = (value >> 8) & 0xff;
3265 buf[3] = reg;
3266 return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION,
3267 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT,
3268 0, 0, &buf, 4, 1000);
3269}
3270
3271static int snd_usb_cm106_boot_quirk(struct usb_device *dev)
3272{
3273 /*
3274 * Enable line-out driver mode, set headphone source to front
3275 * channels, enable stereo mic.
3276 */
3277 return snd_usb_cm106_write_int_reg(dev, 2, 0x8004);
3278}
3279
Dan Allongo92a43792009-06-08 11:21:52 -04003280/*
3281 * C-Media CM6206 is based on CM106 with two additional
3282 * registers that are not documented in the data sheet.
3283 * Values here are chosen based on sniffing USB traffic
3284 * under Windows.
3285 */
3286static int snd_usb_cm6206_boot_quirk(struct usb_device *dev)
3287{
3288 int err, reg;
3289 int val[] = {0x200c, 0x3000, 0xf800, 0x143f, 0x0000, 0x3000};
3290
3291 for (reg = 0; reg < ARRAY_SIZE(val); reg++) {
3292 err = snd_usb_cm106_write_int_reg(dev, reg, val[reg]);
3293 if (err < 0)
3294 return err;
3295 }
3296
3297 return err;
3298}
Sam Revitche217e302006-06-23 15:10:18 +02003299
3300/*
Thibault LE MEURe3113342006-03-14 11:44:53 +01003301 * Setup quirks
3302 */
3303#define AUDIOPHILE_SET 0x01 /* if set, parse device_setup */
3304#define AUDIOPHILE_SET_DTS 0x02 /* if set, enable DTS Digital Output */
3305#define AUDIOPHILE_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
3306#define AUDIOPHILE_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */
3307#define AUDIOPHILE_SET_DI 0x10 /* if set, enable Digital Input */
3308#define AUDIOPHILE_SET_MASK 0x1F /* bit mask for setup value */
3309#define AUDIOPHILE_SET_24B_48K_DI 0x19 /* value for 24bits+48KHz+Digital Input */
3310#define AUDIOPHILE_SET_24B_48K_NOTDI 0x09 /* value for 24bits+48KHz+No Digital Input */
3311#define AUDIOPHILE_SET_16B_48K_DI 0x11 /* value for 16bits+48KHz+Digital Input */
3312#define AUDIOPHILE_SET_16B_48K_NOTDI 0x01 /* value for 16bits+48KHz+No Digital Input */
3313
3314static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
3315 int iface, int altno)
3316{
Thibault Le Meurf8c78b82007-07-12 11:26:35 +02003317 /* Reset ALL ifaces to 0 altsetting.
3318 * Call it for every possible altsetting of every interface.
3319 */
3320 usb_set_interface(chip->dev, iface, 0);
3321
Thibault LE MEURe3113342006-03-14 11:44:53 +01003322 if (device_setup[chip->index] & AUDIOPHILE_SET) {
3323 if ((device_setup[chip->index] & AUDIOPHILE_SET_DTS)
3324 && altno != 6)
3325 return 1; /* skip this altsetting */
3326 if ((device_setup[chip->index] & AUDIOPHILE_SET_96K)
3327 && altno != 1)
3328 return 1; /* skip this altsetting */
3329 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3330 AUDIOPHILE_SET_24B_48K_DI && altno != 2)
3331 return 1; /* skip this altsetting */
3332 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3333 AUDIOPHILE_SET_24B_48K_NOTDI && altno != 3)
3334 return 1; /* skip this altsetting */
3335 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3336 AUDIOPHILE_SET_16B_48K_DI && altno != 4)
3337 return 1; /* skip this altsetting */
3338 if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
3339 AUDIOPHILE_SET_16B_48K_NOTDI && altno != 5)
3340 return 1; /* skip this altsetting */
3341 }
3342 return 0; /* keep this altsetting */
3343}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
Clemens Ladischd82af9f2009-11-16 12:23:46 +01003345static int create_any_midi_quirk(struct snd_usb_audio *chip,
3346 struct usb_interface *intf,
3347 const struct snd_usb_audio_quirk *quirk)
3348{
3349 return snd_usbmidi_create(chip->card, intf, &chip->midi_list, quirk);
3350}
3351
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352/*
3353 * audio-interface quirks
3354 *
3355 * returns zero if no standard audio/MIDI parsing is needed.
3356 * returns a postive value if standard audio/midi interfaces are parsed
3357 * after this.
3358 * returns a negative value at error.
3359 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003360static int snd_usb_create_quirk(struct snd_usb_audio *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 struct usb_interface *iface,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003362 const struct snd_usb_audio_quirk *quirk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003364 typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *,
3365 const struct snd_usb_audio_quirk *);
Clemens Ladisch854af952005-07-25 16:19:10 +02003366 static const quirk_func_t quirk_funcs[] = {
3367 [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
3368 [QUIRK_COMPOSITE] = create_composite_quirk,
Clemens Ladischd82af9f2009-11-16 12:23:46 +01003369 [QUIRK_MIDI_STANDARD_INTERFACE] = create_any_midi_quirk,
3370 [QUIRK_MIDI_FIXED_ENDPOINT] = create_any_midi_quirk,
3371 [QUIRK_MIDI_YAMAHA] = create_any_midi_quirk,
3372 [QUIRK_MIDI_MIDIMAN] = create_any_midi_quirk,
3373 [QUIRK_MIDI_NOVATION] = create_any_midi_quirk,
3374 [QUIRK_MIDI_FASTLANE] = create_any_midi_quirk,
3375 [QUIRK_MIDI_EMAGIC] = create_any_midi_quirk,
3376 [QUIRK_MIDI_CME] = create_any_midi_quirk,
Clemens Ladischd1bda042005-09-14 08:36:03 +02003377 [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003378 [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
Clemens Ladisch854af952005-07-25 16:19:10 +02003379 [QUIRK_AUDIO_EDIROL_UA1000] = create_ua1000_quirk,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02003380 [QUIRK_AUDIO_EDIROL_UAXX] = create_uaxx_quirk
Clemens Ladisch854af952005-07-25 16:19:10 +02003381 };
3382
3383 if (quirk->type < QUIRK_TYPE_COUNT) {
3384 return quirk_funcs[quirk->type](chip, iface, quirk);
3385 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
3387 return -ENXIO;
3388 }
3389}
3390
3391
3392/*
3393 * common proc files to show the usb device info
3394 */
Takashi Iwai86e07d32005-11-17 15:08:02 +01003395static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003397 struct snd_usb_audio *chip = entry->private_data;
Pavel Machek07f51a72008-04-14 13:15:56 +02003398 if (!chip->shutdown)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum);
3400}
3401
Takashi Iwai86e07d32005-11-17 15:08:02 +01003402static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003404 struct snd_usb_audio *chip = entry->private_data;
Pavel Machek07f51a72008-04-14 13:15:56 +02003405 if (!chip->shutdown)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 snd_iprintf(buffer, "%04x:%04x\n",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003407 USB_ID_VENDOR(chip->usb_id),
3408 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409}
3410
Takashi Iwai86e07d32005-11-17 15:08:02 +01003411static void snd_usb_audio_create_proc(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003413 struct snd_info_entry *entry;
Pavel Machek07f51a72008-04-14 13:15:56 +02003414 if (!snd_card_proc_new(chip->card, "usbbus", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003415 snd_info_set_text_ops(entry, chip, proc_audio_usbbus_read);
Pavel Machek07f51a72008-04-14 13:15:56 +02003416 if (!snd_card_proc_new(chip->card, "usbid", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02003417 snd_info_set_text_ops(entry, chip, proc_audio_usbid_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418}
3419
3420/*
3421 * free the chip instance
3422 *
3423 * here we have to do not much, since pcm and controls are already freed
3424 *
3425 */
3426
Takashi Iwai86e07d32005-11-17 15:08:02 +01003427static int snd_usb_audio_free(struct snd_usb_audio *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428{
3429 kfree(chip);
3430 return 0;
3431}
3432
Takashi Iwai86e07d32005-11-17 15:08:02 +01003433static int snd_usb_audio_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003435 struct snd_usb_audio *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 return snd_usb_audio_free(chip);
3437}
3438
3439
3440/*
3441 * create a chip instance and set its names.
3442 */
3443static int snd_usb_audio_create(struct usb_device *dev, int idx,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003444 const struct snd_usb_audio_quirk *quirk,
3445 struct snd_usb_audio **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003447 struct snd_card *card;
3448 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 int err, len;
3450 char component[14];
Takashi Iwai86e07d32005-11-17 15:08:02 +01003451 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 .dev_free = snd_usb_audio_dev_free,
3453 };
3454
3455 *rchip = NULL;
3456
Clemens Ladisch076639f2007-08-21 08:56:54 +02003457 if (snd_usb_get_speed(dev) != USB_SPEED_LOW &&
3458 snd_usb_get_speed(dev) != USB_SPEED_FULL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 snd_usb_get_speed(dev) != USB_SPEED_HIGH) {
3460 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
3461 return -ENXIO;
3462 }
3463
Takashi Iwaibd7dd772008-12-28 16:45:02 +01003464 err = snd_card_create(index[idx], id[idx], THIS_MODULE, 0, &card);
3465 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01003467 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 }
3469
Takashi Iwai561b2202005-09-09 14:22:34 +02003470 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 if (! chip) {
3472 snd_card_free(card);
3473 return -ENOMEM;
3474 }
3475
3476 chip->index = idx;
3477 chip->dev = dev;
3478 chip->card = card;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003479 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3480 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 INIT_LIST_HEAD(&chip->pcm_list);
3482 INIT_LIST_HEAD(&chip->midi_list);
Clemens Ladisch84957a82005-04-29 16:23:13 +02003483 INIT_LIST_HEAD(&chip->mixer_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
3485 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
3486 snd_usb_audio_free(chip);
3487 snd_card_free(card);
3488 return err;
3489 }
3490
3491 strcpy(card->driver, "USB-Audio");
3492 sprintf(component, "USB%04x:%04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003493 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 snd_component_add(card, component);
3495
3496 /* retrieve the device string as shortname */
3497 if (quirk && quirk->product_name) {
3498 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
3499 } else {
3500 if (!dev->descriptor.iProduct ||
3501 usb_string(dev, dev->descriptor.iProduct,
3502 card->shortname, sizeof(card->shortname)) <= 0) {
3503 /* no name available from anywhere, so use ID */
3504 sprintf(card->shortname, "USB Device %#04x:%#04x",
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003505 USB_ID_VENDOR(chip->usb_id),
3506 USB_ID_PRODUCT(chip->usb_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 }
3508 }
3509
3510 /* retrieve the vendor and device strings as longname */
3511 if (quirk && quirk->vendor_name) {
3512 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
3513 } else {
3514 if (dev->descriptor.iManufacturer)
3515 len = usb_string(dev, dev->descriptor.iManufacturer,
3516 card->longname, sizeof(card->longname));
3517 else
3518 len = 0;
3519 /* we don't really care if there isn't any vendor string */
3520 }
3521 if (len > 0)
3522 strlcat(card->longname, " ", sizeof(card->longname));
3523
3524 strlcat(card->longname, card->shortname, sizeof(card->longname));
3525
3526 len = strlcat(card->longname, " at ", sizeof(card->longname));
3527
3528 if (len < sizeof(card->longname))
3529 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
3530
3531 strlcat(card->longname,
Clemens Ladisch076639f2007-08-21 08:56:54 +02003532 snd_usb_get_speed(dev) == USB_SPEED_LOW ? ", low speed" :
3533 snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" :
3534 ", high speed",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 sizeof(card->longname));
3536
3537 snd_usb_audio_create_proc(chip);
3538
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 *rchip = chip;
3540 return 0;
3541}
3542
3543
3544/*
3545 * probe the active usb device
3546 *
3547 * note that this can be called multiple times per a device, when it
3548 * includes multiple audio control interfaces.
3549 *
3550 * thus we check the usb device pointer and creates the card instance
3551 * only at the first time. the successive calls of this function will
3552 * append the pcm interface to the corresponding card.
3553 */
3554static void *snd_usb_audio_probe(struct usb_device *dev,
3555 struct usb_interface *intf,
3556 const struct usb_device_id *usb_id)
3557{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003558 const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 int i, err;
Takashi Iwai86e07d32005-11-17 15:08:02 +01003560 struct snd_usb_audio *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 struct usb_host_interface *alts;
3562 int ifnum;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003563 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564
3565 alts = &intf->altsetting[0];
3566 ifnum = get_iface_desc(alts)->bInterfaceNumber;
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003567 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
3568 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
3570 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
3571 goto __err_val;
3572
3573 /* SB Extigy needs special boot-up sequence */
3574 /* if more models come, this will go to the quirk list. */
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003575 if (id == USB_ID(0x041e, 0x3000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 if (snd_usb_extigy_boot_quirk(dev, intf) < 0)
3577 goto __err_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 }
Clemens Ladisch3a2f0852005-05-09 09:20:31 +02003579 /* SB Audigy 2 NX needs its own boot-up magic, too */
3580 if (id == USB_ID(0x041e, 0x3020)) {
3581 if (snd_usb_audigy2nx_boot_quirk(dev) < 0)
3582 goto __err_val;
3583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Sam Revitche217e302006-06-23 15:10:18 +02003585 /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
3586 if (id == USB_ID(0x10f5, 0x0200)) {
3587 if (snd_usb_cm106_boot_quirk(dev) < 0)
3588 goto __err_val;
3589 }
3590
Dan Allongo92a43792009-06-08 11:21:52 -04003591 /* C-Media CM6206 / CM106-Like Sound Device */
3592 if (id == USB_ID(0x0d8c, 0x0102)) {
3593 if (snd_usb_cm6206_boot_quirk(dev) < 0)
3594 goto __err_val;
3595 }
3596
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 /*
3598 * found a config. now register to ALSA
3599 */
3600
3601 /* check whether it's already registered */
3602 chip = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003603 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 for (i = 0; i < SNDRV_CARDS; i++) {
3605 if (usb_chip[i] && usb_chip[i]->dev == dev) {
3606 if (usb_chip[i]->shutdown) {
3607 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
3608 goto __error;
3609 }
3610 chip = usb_chip[i];
3611 break;
3612 }
3613 }
3614 if (! chip) {
3615 /* it's a fresh one.
3616 * now look for an empty slot and create a new card instance
3617 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 for (i = 0; i < SNDRV_CARDS; i++)
3619 if (enable[i] && ! usb_chip[i] &&
Clemens Ladisch27d10f52005-05-02 08:51:26 +02003620 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
3621 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
3623 goto __error;
3624 }
Clemens Ladisch1dcd3ec2005-05-10 14:51:40 +02003625 snd_card_set_dev(chip->card, &intf->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 break;
3627 }
Pavel Machek07f51a72008-04-14 13:15:56 +02003628 if (!chip) {
3629 printk(KERN_ERR "no available usb audio device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 goto __error;
3631 }
3632 }
3633
John S. Gruber98e89f62009-12-27 12:19:58 -05003634 switch (chip->usb_id) {
3635 case USB_ID(0x2040, 0x7200): /* Hauppage hvr950Q */
3636 case USB_ID(0x2040, 0x7221): /* Hauppage hvr950Q */
3637 case USB_ID(0x2040, 0x7222): /* Hauppage hvr950Q */
3638 case USB_ID(0x2040, 0x7223): /* Hauppage hvr950Q */
3639 case USB_ID(0x2040, 0x7224): /* Hauppage hvr950Q */
3640 case USB_ID(0x2040, 0x7225): /* Hauppage hvr950Q */
3641 case USB_ID(0x2040, 0x7230): /* Hauppage hvr850 */
3642 case USB_ID(0x2040, 0x7250): /* Hauppage hvr950Q */
3643 chip->txfr_quirk = 1;
3644 break;
3645 default:
3646 chip->txfr_quirk = 0;
3647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 err = 1; /* continue */
3649 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
3650 /* need some special handlings */
3651 if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0)
3652 goto __error;
3653 }
3654
3655 if (err > 0) {
3656 /* create normal USB audio interfaces */
3657 if (snd_usb_create_streams(chip, ifnum) < 0 ||
Takashi Iwai7a9b8062008-08-13 15:40:53 +02003658 snd_usb_create_mixer(chip, ifnum, ignore_ctl_error) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 goto __error;
3660 }
3661 }
3662
3663 /* we are allowed to call snd_card_register() many times */
3664 if (snd_card_register(chip->card) < 0) {
3665 goto __error;
3666 }
3667
3668 usb_chip[chip->index] = chip;
3669 chip->num_interfaces++;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003670 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 return chip;
3672
3673 __error:
3674 if (chip && !chip->num_interfaces)
3675 snd_card_free(chip->card);
Ingo Molnar12aa7572006-01-16 16:36:05 +01003676 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 __err_val:
3678 return NULL;
3679}
3680
3681/*
3682 * we need to take care of counter, since disconnection can be called also
3683 * many times as well as usb_audio_probe().
3684 */
3685static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr)
3686{
Takashi Iwai86e07d32005-11-17 15:08:02 +01003687 struct snd_usb_audio *chip;
3688 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 struct list_head *p;
3690
3691 if (ptr == (void *)-1L)
3692 return;
3693
3694 chip = ptr;
3695 card = chip->card;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003696 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 chip->shutdown = 1;
3698 chip->num_interfaces--;
3699 if (chip->num_interfaces <= 0) {
3700 snd_card_disconnect(card);
3701 /* release the pcm resources */
3702 list_for_each(p, &chip->pcm_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003703 snd_usb_stream_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 }
3705 /* release the midi resources */
3706 list_for_each(p, &chip->midi_list) {
Clemens Ladischee733392005-04-25 10:34:13 +02003707 snd_usbmidi_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 }
Clemens Ladisch84957a82005-04-29 16:23:13 +02003709 /* release mixer resources */
3710 list_for_each(p, &chip->mixer_list) {
3711 snd_usb_mixer_disconnect(p);
3712 }
Takashi Iwai9eb70e62008-04-17 12:53:26 +02003713 usb_chip[chip->index] = NULL;
Ingo Molnar12aa7572006-01-16 16:36:05 +01003714 mutex_unlock(&register_mutex);
Takashi Iwaic4614822006-06-23 14:38:23 +02003715 snd_card_free_when_closed(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 } else {
Ingo Molnar12aa7572006-01-16 16:36:05 +01003717 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 }
3719}
3720
3721/*
3722 * new 2.5 USB kernel API
3723 */
3724static int usb_audio_probe(struct usb_interface *intf,
3725 const struct usb_device_id *id)
3726{
3727 void *chip;
3728 chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
3729 if (chip) {
Julia Lawallf4e97492009-01-01 18:14:35 +01003730 usb_set_intfdata(intf, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 return 0;
3732 } else
3733 return -EIO;
3734}
3735
3736static void usb_audio_disconnect(struct usb_interface *intf)
3737{
3738 snd_usb_audio_disconnect(interface_to_usbdev(intf),
Julia Lawallf4e97492009-01-01 18:14:35 +01003739 usb_get_intfdata(intf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740}
3741
Andrew Morton93521d22007-12-24 14:40:56 +01003742#ifdef CONFIG_PM
Oliver Neukumf85bf292007-12-14 14:42:41 +01003743static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
3744{
Julia Lawallf4e97492009-01-01 18:14:35 +01003745 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumf85bf292007-12-14 14:42:41 +01003746 struct list_head *p;
3747 struct snd_usb_stream *as;
3748
3749 if (chip == (void *)-1L)
3750 return 0;
3751
3752 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
3753 if (!chip->num_suspended_intf++) {
3754 list_for_each(p, &chip->pcm_list) {
3755 as = list_entry(p, struct snd_usb_stream, list);
3756 snd_pcm_suspend_all(as->pcm);
3757 }
3758 }
3759
3760 return 0;
3761}
3762
3763static int usb_audio_resume(struct usb_interface *intf)
3764{
Julia Lawallf4e97492009-01-01 18:14:35 +01003765 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumf85bf292007-12-14 14:42:41 +01003766
3767 if (chip == (void *)-1L)
3768 return 0;
3769 if (--chip->num_suspended_intf)
3770 return 0;
3771 /*
3772 * ALSA leaves material resumption to user space
3773 * we just notify
3774 */
3775
3776 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
3777
3778 return 0;
3779}
Andrew Morton93521d22007-12-24 14:40:56 +01003780#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781
3782static int __init snd_usb_audio_init(void)
3783{
Clemens Ladischf3990e62009-02-20 09:32:40 +01003784 if (nrpacks < 1 || nrpacks > MAX_PACKS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 printk(KERN_WARNING "invalid nrpacks value.\n");
3786 return -EINVAL;
3787 }
Tobias Klausercf78bbc2006-10-04 18:12:43 +02003788 return usb_register(&usb_audio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789}
3790
3791
3792static void __exit snd_usb_audio_cleanup(void)
3793{
3794 usb_deregister(&usb_audio_driver);
3795}
3796
3797module_init(snd_usb_audio_init);
3798module_exit(snd_usb_audio_cleanup);