usbaudio.c 113.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
/*
 *   (Tentative) USB Audio Driver for ALSA
 *
 *   Main and PCM part
 *
 *   Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
 *
 *   Many codes borrowed from audio.c by
 *	    Alan Cox (alan@lxorguk.ukuu.org.uk)
 *	    Thomas Sailer (sailer@ife.ee.ethz.ch)
 *
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 *
 *  NOTES:
 *
 *   - async unlink should be used for avoiding the sleep inside lock.
 *     2.4.22 usb-uhci seems buggy for async unlinking and results in
 *     oops.  in such a cse, pass async_unlink=0 option.
 *   - the linked URBs would be preferred but not used so far because of
 *     the instability of unlinking.
 *   - type II is not supported properly.  there is no device which supports
 *     this type *correctly*.  SB extigy looks as if it supports, but it's
 *     indeed an AC3 stream packed in SPDIF frames (i.e. no real AC3 stream).
 */


#include <linux/bitops.h>
#include <linux/init.h>
#include <linux/list.h>
#include <linux/slab.h>
#include <linux/string.h>
#include <linux/usb.h>
#include <linux/moduleparam.h>
48
#include <linux/mutex.h>
49
#include <linux/usb/audio.h>
50
#include <linux/usb/ch9.h>
51

L
Linus Torvalds 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
#include <sound/core.h>
#include <sound/info.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/initval.h>

#include "usbaudio.h"


MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
MODULE_DESCRIPTION("USB Audio");
MODULE_LICENSE("GPL");
MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");


static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;	/* Index 0-MAX */
static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;	/* ID for this card */
69 70 71 72
static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
/* Vendor/product IDs for this card */
static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
73
static int nrpacks = 8;		/* max. number of packets per urb */
L
Linus Torvalds 已提交
74
static int async_unlink = 1;
75
static int device_setup[SNDRV_CARDS]; /* device parameter for this card*/
76
static int ignore_ctl_error;
L
Linus Torvalds 已提交
77 78 79 80 81 82 83 84 85 86 87

module_param_array(index, int, NULL, 0444);
MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
module_param_array(id, charp, NULL, 0444);
MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
module_param_array(enable, bool, NULL, 0444);
MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
module_param_array(vid, int, NULL, 0444);
MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
module_param_array(pid, int, NULL, 0444);
MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
88
module_param(nrpacks, int, 0644);
L
Linus Torvalds 已提交
89 90 91
MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB.");
module_param(async_unlink, bool, 0444);
MODULE_PARM_DESC(async_unlink, "Use async unlink mode.");
92 93
module_param_array(device_setup, int, NULL, 0444);
MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
94 95 96
module_param(ignore_ctl_error, bool, 0444);
MODULE_PARM_DESC(ignore_ctl_error,
		 "Ignore errors from USB controller for mixer interfaces.");
L
Linus Torvalds 已提交
97 98 99 100 101 102 103 104 105 106 107

/*
 * debug the h/w constraints
 */
/* #define HW_CONST_DEBUG */


/*
 *
 */

108
#define MAX_PACKS	20
L
Linus Torvalds 已提交
109
#define MAX_PACKS_HS	(MAX_PACKS * 8)	/* in high speed mode */
110
#define MAX_URBS	8
111
#define SYNC_URBS	4	/* always four urbs for sync */
112
#define MAX_QUEUE	24	/* try not to exceed this queue length, in ms */
L
Linus Torvalds 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125

struct audioformat {
	struct list_head list;
	snd_pcm_format_t format;	/* format type */
	unsigned int channels;		/* # channels */
	unsigned int fmt_type;		/* USB audio format type (1-3) */
	unsigned int frame_size;	/* samples per frame for non-audio */
	int iface;			/* interface number */
	unsigned char altsetting;	/* corresponding alternate setting */
	unsigned char altset_idx;	/* array index of altenate setting */
	unsigned char attributes;	/* corresponding attributes of cs endpoint */
	unsigned char endpoint;		/* endpoint */
	unsigned char ep_attr;		/* endpoint attributes */
126
	unsigned char datainterval;	/* log_2 of data packet interval */
L
Linus Torvalds 已提交
127 128 129 130 131 132 133
	unsigned int maxpacksize;	/* max. packet size */
	unsigned int rates;		/* rate bitmasks */
	unsigned int rate_min, rate_max;	/* min/max rates */
	unsigned int nr_rates;		/* number of rate table entries */
	unsigned int *rate_table;	/* rate table */
};

134 135
struct snd_usb_substream;

L
Linus Torvalds 已提交
136 137
struct snd_urb_ctx {
	struct urb *urb;
138
	unsigned int buffer_size;	/* size of data buffer, if data URB */
139
	struct snd_usb_substream *subs;
L
Linus Torvalds 已提交
140 141 142 143 144
	int index;	/* index for urb array */
	int packets;	/* number of packets per urb */
};

struct snd_urb_ops {
145 146 147 148
	int (*prepare)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
	int (*retire)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
	int (*prepare_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
	int (*retire_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u);
L
Linus Torvalds 已提交
149 150 151
};

struct snd_usb_substream {
152
	struct snd_usb_stream *stream;
L
Linus Torvalds 已提交
153
	struct usb_device *dev;
154
	struct snd_pcm_substream *pcm_substream;
L
Linus Torvalds 已提交
155 156 157 158 159 160 161 162 163
	int direction;	/* playback or capture */
	int interface;	/* current interface */
	int endpoint;	/* assigned endpoint */
	struct audioformat *cur_audiofmt;	/* current audioformat pointer (for hw_params callback) */
	unsigned int cur_rate;		/* current rate (for hw_params callback) */
	unsigned int period_bytes;	/* current period bytes (for hw_params callback) */
	unsigned int format;     /* USB data format */
	unsigned int datapipe;   /* the data i/o pipe */
	unsigned int syncpipe;   /* 1 - async out or adaptive in */
164
	unsigned int datainterval;	/* log_2 of data packet interval */
L
Linus Torvalds 已提交
165 166 167 168 169 170 171 172 173 174
	unsigned int syncinterval;  /* P for adaptive mode, 0 otherwise */
	unsigned int freqn;      /* nominal sampling rate in fs/fps in Q16.16 format */
	unsigned int freqm;      /* momentary sampling rate in fs/fps in Q16.16 format */
	unsigned int freqmax;    /* maximum sampling rate, used for buffer management */
	unsigned int phase;      /* phase accumulator */
	unsigned int maxpacksize;	/* max packet size in bytes */
	unsigned int maxframesize;	/* max packet size in frames */
	unsigned int curpacksize;	/* current packet size in bytes (for capture) */
	unsigned int curframesize;	/* current packet size in frames (for capture) */
	unsigned int fill_max: 1;	/* fill max packet size always */
175
	unsigned int txfr_quirk:1;	/* allow sub-frame alignment */
L
Linus Torvalds 已提交
176 177 178 179
	unsigned int fmt_type;		/* USB audio format type (1-3) */

	unsigned int running: 1;	/* running status */

180
	unsigned int hwptr_done;	/* processed byte position in the buffer */
L
Linus Torvalds 已提交
181 182 183 184 185
	unsigned int transfer_done;		/* processed frames since last period update */
	unsigned long active_mask;	/* bitmask of active urbs */
	unsigned long unlink_mask;	/* bitmask of unlinked urbs */

	unsigned int nurbs;			/* # urbs */
186 187
	struct snd_urb_ctx dataurb[MAX_URBS];	/* data urb table */
	struct snd_urb_ctx syncurb[SYNC_URBS];	/* sync urb table */
188 189
	char *syncbuf;				/* sync buffer for all sync URBs */
	dma_addr_t sync_dma;			/* DMA address of syncbuf */
L
Linus Torvalds 已提交
190 191 192 193

	u64 formats;			/* format bitmasks (all or'ed) */
	unsigned int num_formats;		/* number of supported audio formats (list) */
	struct list_head fmt_list;	/* format list */
194
	struct snd_pcm_hw_constraint_list rate_list;	/* limited rates */
L
Linus Torvalds 已提交
195 196 197 198 199 200 201
	spinlock_t lock;

	struct snd_urb_ops ops;		/* callbacks (must be filled at init) */
};


struct snd_usb_stream {
202 203
	struct snd_usb_audio *chip;
	struct snd_pcm *pcm;
L
Linus Torvalds 已提交
204 205
	int pcm_index;
	unsigned int fmt_type;		/* USB audio format type (1-3) */
206
	struct snd_usb_substream substream[2];
L
Linus Torvalds 已提交
207 208 209 210 211 212 213 214 215
	struct list_head list;
};


/*
 * we keep the snd_usb_audio_t instances by ourselves for merging
 * the all interfaces on the same card as one sound device.
 */

216
static DEFINE_MUTEX(register_mutex);
217
static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
L
Linus Torvalds 已提交
218 219 220 221 222 223


/*
 * convert a sampling rate into our full speed format (fs/1000 in Q16.16)
 * this will overflow at approx 524 kHz
 */
224
static inline unsigned get_usb_full_speed_rate(unsigned int rate)
L
Linus Torvalds 已提交
225 226 227 228 229 230 231 232
{
	return ((rate << 13) + 62) / 125;
}

/*
 * convert a sampling rate into USB high speed format (fs/8000 in Q16.16)
 * this will overflow at approx 4 MHz
 */
233
static inline unsigned get_usb_high_speed_rate(unsigned int rate)
L
Linus Torvalds 已提交
234 235 236 237 238
{
	return ((rate << 10) + 62) / 125;
}

/* convert our full speed USB rate into sampling rate in Hz */
239
static inline unsigned get_full_speed_hz(unsigned int usb_rate)
L
Linus Torvalds 已提交
240 241 242 243 244
{
	return (usb_rate * 125 + (1 << 12)) >> 13;
}

/* convert our high speed USB rate into sampling rate in Hz */
245
static inline unsigned get_high_speed_hz(unsigned int usb_rate)
L
Linus Torvalds 已提交
246 247 248 249 250 251 252 253 254 255 256
{
	return (usb_rate * 125 + (1 << 9)) >> 10;
}


/*
 * prepare urb for full speed capture sync pipe
 *
 * fill the length and offset of each urb descriptor.
 * the fixed 10.14 frequency is passed through the pipe.
 */
257 258
static int prepare_capture_sync_urb(struct snd_usb_substream *subs,
				    struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
259 260 261
				    struct urb *urb)
{
	unsigned char *cp = urb->transfer_buffer;
262
	struct snd_urb_ctx *ctx = urb->context;
L
Linus Torvalds 已提交
263 264

	urb->dev = ctx->subs->dev; /* we need to set this at each time */
265 266 267 268 269
	urb->iso_frame_desc[0].length = 3;
	urb->iso_frame_desc[0].offset = 0;
	cp[0] = subs->freqn >> 2;
	cp[1] = subs->freqn >> 10;
	cp[2] = subs->freqn >> 18;
L
Linus Torvalds 已提交
270 271 272 273 274 275 276 277 278
	return 0;
}

/*
 * prepare urb for high speed capture sync pipe
 *
 * fill the length and offset of each urb descriptor.
 * the fixed 12.13 frequency is passed as 16.16 through the pipe.
 */
279 280
static int prepare_capture_sync_urb_hs(struct snd_usb_substream *subs,
				       struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
281 282 283
				       struct urb *urb)
{
	unsigned char *cp = urb->transfer_buffer;
284
	struct snd_urb_ctx *ctx = urb->context;
L
Linus Torvalds 已提交
285 286

	urb->dev = ctx->subs->dev; /* we need to set this at each time */
287 288 289 290 291 292
	urb->iso_frame_desc[0].length = 4;
	urb->iso_frame_desc[0].offset = 0;
	cp[0] = subs->freqn;
	cp[1] = subs->freqn >> 8;
	cp[2] = subs->freqn >> 16;
	cp[3] = subs->freqn >> 24;
L
Linus Torvalds 已提交
293 294 295 296 297 298 299
	return 0;
}

/*
 * process after capture sync complete
 * - nothing to do
 */
300 301
static int retire_capture_sync_urb(struct snd_usb_substream *subs,
				   struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
				   struct urb *urb)
{
	return 0;
}

/*
 * prepare urb for capture data pipe
 *
 * fill the offset and length of each descriptor.
 *
 * we use a temporary buffer to write the captured data.
 * since the length of written data is determined by host, we cannot
 * write onto the pcm buffer directly...  the data is thus copied
 * later at complete callback to the global buffer.
 */
317 318
static int prepare_capture_urb(struct snd_usb_substream *subs,
			       struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
319 320 321
			       struct urb *urb)
{
	int i, offs;
322
	struct snd_urb_ctx *ctx = urb->context;
L
Linus Torvalds 已提交
323 324 325 326 327 328 329 330 331

	offs = 0;
	urb->dev = ctx->subs->dev; /* we need to set this at each time */
	for (i = 0; i < ctx->packets; i++) {
		urb->iso_frame_desc[i].offset = offs;
		urb->iso_frame_desc[i].length = subs->curpacksize;
		offs += subs->curpacksize;
	}
	urb->transfer_buffer_length = offs;
332
	urb->number_of_packets = ctx->packets;
L
Linus Torvalds 已提交
333 334 335 336 337 338 339 340 341
	return 0;
}

/*
 * process after capture complete
 *
 * copy the data from each desctiptor to the pcm buffer, and
 * update the current position.
 */
342 343
static int retire_capture_urb(struct snd_usb_substream *subs,
			      struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
344 345 346 347 348
			      struct urb *urb)
{
	unsigned long flags;
	unsigned char *cp;
	int i;
349
	unsigned int stride, frames, bytes, oldptr;
350
	int period_elapsed = 0;
L
Linus Torvalds 已提交
351 352 353 354 355 356 357 358 359

	stride = runtime->frame_bits >> 3;

	for (i = 0; i < urb->number_of_packets; i++) {
		cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset;
		if (urb->iso_frame_desc[i].status) {
			snd_printd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status);
			// continue;
		}
360 361 362 363 364 365 366 367 368 369 370 371
		bytes = urb->iso_frame_desc[i].actual_length;
		frames = bytes / stride;
		if (!subs->txfr_quirk)
			bytes = frames * stride;
		if (bytes % (runtime->sample_bits >> 3) != 0) {
#ifdef CONFIG_SND_DEBUG_VERBOSE
			int oldbytes = bytes;
#endif
			bytes = frames * stride;
			snd_printdd(KERN_ERR "Corrected urb data len. %d->%d\n",
							oldbytes, bytes);
		}
L
Linus Torvalds 已提交
372 373 374
		/* update the current pointer */
		spin_lock_irqsave(&subs->lock, flags);
		oldptr = subs->hwptr_done;
375 376 377
		subs->hwptr_done += bytes;
		if (subs->hwptr_done >= runtime->buffer_size * stride)
			subs->hwptr_done -= runtime->buffer_size * stride;
378
		frames = (bytes + (oldptr % stride)) / stride;
379
		subs->transfer_done += frames;
380 381 382 383
		if (subs->transfer_done >= runtime->period_size) {
			subs->transfer_done -= runtime->period_size;
			period_elapsed = 1;
		}
L
Linus Torvalds 已提交
384 385
		spin_unlock_irqrestore(&subs->lock, flags);
		/* copy a data chunk */
386 387 388 389 390
		if (oldptr + bytes > runtime->buffer_size * stride) {
			unsigned int bytes1 =
					runtime->buffer_size * stride - oldptr;
			memcpy(runtime->dma_area + oldptr, cp, bytes1);
			memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
L
Linus Torvalds 已提交
391
		} else {
392
			memcpy(runtime->dma_area + oldptr, cp, bytes);
L
Linus Torvalds 已提交
393 394
		}
	}
395 396
	if (period_elapsed)
		snd_pcm_period_elapsed(subs->pcm_substream);
L
Linus Torvalds 已提交
397 398 399
	return 0;
}

400 401 402 403 404 405 406 407 408 409
/*
 * Process after capture complete when paused.  Nothing to do.
 */
static int retire_paused_capture_urb(struct snd_usb_substream *subs,
				     struct snd_pcm_runtime *runtime,
				     struct urb *urb)
{
	return 0;
}

L
Linus Torvalds 已提交
410 411 412 413 414 415 416

/*
 * prepare urb for full speed playback sync pipe
 *
 * set up the offset and length to receive the current frequency.
 */

417 418
static int prepare_playback_sync_urb(struct snd_usb_substream *subs,
				     struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
419 420
				     struct urb *urb)
{
421
	struct snd_urb_ctx *ctx = urb->context;
L
Linus Torvalds 已提交
422 423

	urb->dev = ctx->subs->dev; /* we need to set this at each time */
424 425
	urb->iso_frame_desc[0].length = 3;
	urb->iso_frame_desc[0].offset = 0;
L
Linus Torvalds 已提交
426 427 428 429 430 431 432 433 434
	return 0;
}

/*
 * prepare urb for high speed playback sync pipe
 *
 * set up the offset and length to receive the current frequency.
 */

435 436
static int prepare_playback_sync_urb_hs(struct snd_usb_substream *subs,
					struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
437 438
					struct urb *urb)
{
439
	struct snd_urb_ctx *ctx = urb->context;
L
Linus Torvalds 已提交
440 441

	urb->dev = ctx->subs->dev; /* we need to set this at each time */
442 443
	urb->iso_frame_desc[0].length = 4;
	urb->iso_frame_desc[0].offset = 0;
L
Linus Torvalds 已提交
444 445 446 447 448 449 450 451 452
	return 0;
}

/*
 * process after full speed playback sync complete
 *
 * retrieve the current 10.14 frequency from pipe, and set it.
 * the value is referred in prepare_playback_urb().
 */
453 454
static int retire_playback_sync_urb(struct snd_usb_substream *subs,
				    struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
455 456
				    struct urb *urb)
{
457
	unsigned int f;
L
Linus Torvalds 已提交
458 459
	unsigned long flags;

460 461 462
	if (urb->iso_frame_desc[0].status == 0 &&
	    urb->iso_frame_desc[0].actual_length == 3) {
		f = combine_triple((u8*)urb->transfer_buffer) << 2;
463 464 465 466
		if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
			spin_lock_irqsave(&subs->lock, flags);
			subs->freqm = f;
			spin_unlock_irqrestore(&subs->lock, flags);
L
Linus Torvalds 已提交
467 468 469 470 471 472 473 474 475 476 477 478
		}
	}

	return 0;
}

/*
 * process after high speed playback sync complete
 *
 * retrieve the current 12.13 frequency from pipe, and set it.
 * the value is referred in prepare_playback_urb().
 */
479 480
static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs,
				       struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
481 482
				       struct urb *urb)
{
483
	unsigned int f;
L
Linus Torvalds 已提交
484 485
	unsigned long flags;

486 487 488
	if (urb->iso_frame_desc[0].status == 0 &&
	    urb->iso_frame_desc[0].actual_length == 4) {
		f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
489 490 491 492 493
		if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
			spin_lock_irqsave(&subs->lock, flags);
			subs->freqm = f;
			spin_unlock_irqrestore(&subs->lock, flags);
		}
L
Linus Torvalds 已提交
494 495 496 497 498
	}

	return 0;
}

499
/*
500
 * process after E-Mu 0202/0404/Tracker Pre high speed playback sync complete
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
 *
 * These devices return the number of samples per packet instead of the number
 * of samples per microframe.
 */
static int retire_playback_sync_urb_hs_emu(struct snd_usb_substream *subs,
					   struct snd_pcm_runtime *runtime,
					   struct urb *urb)
{
	unsigned int f;
	unsigned long flags;

	if (urb->iso_frame_desc[0].status == 0 &&
	    urb->iso_frame_desc[0].actual_length == 4) {
		f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff;
		f >>= subs->datainterval;
		if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) {
			spin_lock_irqsave(&subs->lock, flags);
			subs->freqm = f;
			spin_unlock_irqrestore(&subs->lock, flags);
		}
	}

	return 0;
}

526 527 528 529 530 531 532 533 534 535 536 537
/* determine the number of frames in the next packet */
static int snd_usb_audio_next_packet_size(struct snd_usb_substream *subs)
{
	if (subs->fill_max)
		return subs->maxframesize;
	else {
		subs->phase = (subs->phase & 0xffff)
			+ (subs->freqm << subs->datainterval);
		return min(subs->phase >> 16, subs->maxframesize);
	}
}

538
/*
539
 * Prepare urb for streaming before playback starts or when paused.
540
 *
541
 * We don't have any data, so we send silence.
542
 */
543 544 545
static int prepare_nodata_playback_urb(struct snd_usb_substream *subs,
				       struct snd_pcm_runtime *runtime,
				       struct urb *urb)
546
{
547
	unsigned int i, offs, counts;
548
	struct snd_urb_ctx *ctx = urb->context;
549
	int stride = runtime->frame_bits >> 3;
550

551
	offs = 0;
552
	urb->dev = ctx->subs->dev;
553
	for (i = 0; i < ctx->packets; ++i) {
554
		counts = snd_usb_audio_next_packet_size(subs);
555 556 557
		urb->iso_frame_desc[i].offset = offs * stride;
		urb->iso_frame_desc[i].length = counts * stride;
		offs += counts;
558
	}
559
	urb->number_of_packets = ctx->packets;
560 561 562 563
	urb->transfer_buffer_length = offs * stride;
	memset(urb->transfer_buffer,
	       subs->cur_audiofmt->format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0,
	       offs * stride);
564 565 566
	return 0;
}

L
Linus Torvalds 已提交
567 568 569
/*
 * prepare urb for playback data pipe
 *
570 571 572 573
 * Since a URB can handle only a single linear buffer, we must use double
 * buffering when the data to be transferred overflows the buffer boundary.
 * To avoid inconsistencies when updating hwptr_done, we use double buffering
 * for all URBs.
L
Linus Torvalds 已提交
574
 */
575 576
static int prepare_playback_urb(struct snd_usb_substream *subs,
				struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
577 578
				struct urb *urb)
{
579 580
	int i, stride;
	unsigned int counts, frames, bytes;
L
Linus Torvalds 已提交
581
	unsigned long flags;
582
	int period_elapsed = 0;
583
	struct snd_urb_ctx *ctx = urb->context;
L
Linus Torvalds 已提交
584 585 586

	stride = runtime->frame_bits >> 3;

587
	frames = 0;
L
Linus Torvalds 已提交
588 589 590 591
	urb->dev = ctx->subs->dev; /* we need to set this at each time */
	urb->number_of_packets = 0;
	spin_lock_irqsave(&subs->lock, flags);
	for (i = 0; i < ctx->packets; i++) {
592
		counts = snd_usb_audio_next_packet_size(subs);
L
Linus Torvalds 已提交
593
		/* set up descriptor */
594
		urb->iso_frame_desc[i].offset = frames * stride;
L
Linus Torvalds 已提交
595
		urb->iso_frame_desc[i].length = counts * stride;
596
		frames += counts;
L
Linus Torvalds 已提交
597
		urb->number_of_packets++;
598 599 600 601
		subs->transfer_done += counts;
		if (subs->transfer_done >= runtime->period_size) {
			subs->transfer_done -= runtime->period_size;
			period_elapsed = 1;
602
			if (subs->fmt_type == UAC_FORMAT_TYPE_II) {
603 604 605
				if (subs->transfer_done > 0) {
					/* FIXME: fill-max mode is not
					 * supported yet */
606
					frames -= subs->transfer_done;
607 608 609 610
					counts -= subs->transfer_done;
					urb->iso_frame_desc[i].length =
						counts * stride;
					subs->transfer_done = 0;
L
Linus Torvalds 已提交
611 612 613 614
				}
				i++;
				if (i < ctx->packets) {
					/* add a transfer delimiter */
615
					urb->iso_frame_desc[i].offset =
616
						frames * stride;
L
Linus Torvalds 已提交
617 618 619
					urb->iso_frame_desc[i].length = 0;
					urb->number_of_packets++;
				}
620
				break;
L
Linus Torvalds 已提交
621 622
			}
 		}
623
		if (period_elapsed) /* finish at the period boundary */
624
			break;
L
Linus Torvalds 已提交
625
	}
626 627
	bytes = frames * stride;
	if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
628
		/* err, the transferred area goes over buffer boundary. */
629 630
		unsigned int bytes1 =
			runtime->buffer_size * stride - subs->hwptr_done;
631
		memcpy(urb->transfer_buffer,
632 633 634
		       runtime->dma_area + subs->hwptr_done, bytes1);
		memcpy(urb->transfer_buffer + bytes1,
		       runtime->dma_area, bytes - bytes1);
L
Linus Torvalds 已提交
635
	} else {
636
		memcpy(urb->transfer_buffer,
637
		       runtime->dma_area + subs->hwptr_done, bytes);
L
Linus Torvalds 已提交
638
	}
639 640 641 642
	subs->hwptr_done += bytes;
	if (subs->hwptr_done >= runtime->buffer_size * stride)
		subs->hwptr_done -= runtime->buffer_size * stride;
	runtime->delay += frames;
L
Linus Torvalds 已提交
643
	spin_unlock_irqrestore(&subs->lock, flags);
644
	urb->transfer_buffer_length = bytes;
645 646
	if (period_elapsed)
		snd_pcm_period_elapsed(subs->pcm_substream);
L
Linus Torvalds 已提交
647 648 649 650 651
	return 0;
}

/*
 * process after playback data complete
652
 * - decrease the delay count again
L
Linus Torvalds 已提交
653
 */
654 655
static int retire_playback_urb(struct snd_usb_substream *subs,
			       struct snd_pcm_runtime *runtime,
L
Linus Torvalds 已提交
656 657
			       struct urb *urb)
{
658 659 660 661 662 663 664 665 666 667
	unsigned long flags;
	int stride = runtime->frame_bits >> 3;
	int processed = urb->transfer_buffer_length / stride;

	spin_lock_irqsave(&subs->lock, flags);
	if (processed > runtime->delay)
		runtime->delay = 0;
	else
		runtime->delay -= processed;
	spin_unlock_irqrestore(&subs->lock, flags);
L
Linus Torvalds 已提交
668 669 670 671 672 673 674 675
	return 0;
}


/*
 */
static struct snd_urb_ops audio_urb_ops[2] = {
	{
676
		.prepare =	prepare_nodata_playback_urb,
L
Linus Torvalds 已提交
677 678 679 680 681 682 683 684 685 686 687 688 689 690
		.retire =	retire_playback_urb,
		.prepare_sync =	prepare_playback_sync_urb,
		.retire_sync =	retire_playback_sync_urb,
	},
	{
		.prepare =	prepare_capture_urb,
		.retire =	retire_capture_urb,
		.prepare_sync =	prepare_capture_sync_urb,
		.retire_sync =	retire_capture_sync_urb,
	},
};

static struct snd_urb_ops audio_urb_ops_high_speed[2] = {
	{
691
		.prepare =	prepare_nodata_playback_urb,
L
Linus Torvalds 已提交
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
		.retire =	retire_playback_urb,
		.prepare_sync =	prepare_playback_sync_urb_hs,
		.retire_sync =	retire_playback_sync_urb_hs,
	},
	{
		.prepare =	prepare_capture_urb,
		.retire =	retire_capture_urb,
		.prepare_sync =	prepare_capture_sync_urb_hs,
		.retire_sync =	retire_capture_sync_urb,
	},
};

/*
 * complete callback from data urb
 */
707
static void snd_complete_urb(struct urb *urb)
L
Linus Torvalds 已提交
708
{
709
	struct snd_urb_ctx *ctx = urb->context;
710 711
	struct snd_usb_substream *subs = ctx->subs;
	struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
L
Linus Torvalds 已提交
712 713 714
	int err = 0;

	if ((subs->running && subs->ops.retire(subs, substream->runtime, urb)) ||
715
	    !subs->running || /* can be stopped during retire callback */
L
Linus Torvalds 已提交
716 717 718 719 720 721 722 723 724 725 726 727 728 729
	    (err = subs->ops.prepare(subs, substream->runtime, urb)) < 0 ||
	    (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
		clear_bit(ctx->index, &subs->active_mask);
		if (err < 0) {
			snd_printd(KERN_ERR "cannot submit urb (err = %d)\n", err);
			snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
		}
	}
}


/*
 * complete callback from sync urb
 */
730
static void snd_complete_sync_urb(struct urb *urb)
L
Linus Torvalds 已提交
731
{
732
	struct snd_urb_ctx *ctx = urb->context;
733 734
	struct snd_usb_substream *subs = ctx->subs;
	struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
L
Linus Torvalds 已提交
735 736 737
	int err = 0;

	if ((subs->running && subs->ops.retire_sync(subs, substream->runtime, urb)) ||
738
	    !subs->running || /* can be stopped during retire callback */
L
Linus Torvalds 已提交
739 740 741 742 743 744 745 746 747 748 749 750 751 752
	    (err = subs->ops.prepare_sync(subs, substream->runtime, urb)) < 0 ||
	    (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
		clear_bit(ctx->index + 16, &subs->active_mask);
		if (err < 0) {
			snd_printd(KERN_ERR "cannot submit sync urb (err = %d)\n", err);
			snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
		}
	}
}


/*
 * unlink active urbs.
 */
753
static int deactivate_urbs(struct snd_usb_substream *subs, int force, int can_sleep)
L
Linus Torvalds 已提交
754 755 756 757 758 759 760 761 762 763 764
{
	unsigned int i;
	int async;

	subs->running = 0;

	if (!force && subs->stream->chip->shutdown) /* to be sure... */
		return -EBADFD;

	async = !can_sleep && async_unlink;

765
	if (!async && in_interrupt())
L
Linus Torvalds 已提交
766 767 768 769
		return 0;

	for (i = 0; i < subs->nurbs; i++) {
		if (test_bit(i, &subs->active_mask)) {
770
			if (!test_and_set_bit(i, &subs->unlink_mask)) {
L
Linus Torvalds 已提交
771
				struct urb *u = subs->dataurb[i].urb;
772
				if (async)
L
Linus Torvalds 已提交
773
					usb_unlink_urb(u);
774
				else
L
Linus Torvalds 已提交
775 776 777 778 779 780 781
					usb_kill_urb(u);
			}
		}
	}
	if (subs->syncpipe) {
		for (i = 0; i < SYNC_URBS; i++) {
			if (test_bit(i+16, &subs->active_mask)) {
782
				if (!test_and_set_bit(i+16, &subs->unlink_mask)) {
L
Linus Torvalds 已提交
783
					struct urb *u = subs->syncurb[i].urb;
784
					if (async)
L
Linus Torvalds 已提交
785
						usb_unlink_urb(u);
786
					else
L
Linus Torvalds 已提交
787 788 789 790 791 792 793 794 795
						usb_kill_urb(u);
				}
			}
		}
	}
	return 0;
}


796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
static const char *usb_error_string(int err)
{
	switch (err) {
	case -ENODEV:
		return "no device";
	case -ENOENT:
		return "endpoint not enabled";
	case -EPIPE:
		return "endpoint stalled";
	case -ENOSPC:
		return "not enough bandwidth";
	case -ESHUTDOWN:
		return "device disabled";
	case -EHOSTUNREACH:
		return "device suspended";
	case -EINVAL:
	case -EAGAIN:
	case -EFBIG:
	case -EMSGSIZE:
		return "internal error";
	default:
		return "unknown error";
	}
}

L
Linus Torvalds 已提交
821 822 823
/*
 * set up and start data/sync urbs
 */
824
static int start_urbs(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime)
L
Linus Torvalds 已提交
825 826 827 828 829 830 831 832
{
	unsigned int i;
	int err;

	if (subs->stream->chip->shutdown)
		return -EBADFD;

	for (i = 0; i < subs->nurbs; i++) {
833 834
		if (snd_BUG_ON(!subs->dataurb[i].urb))
			return -EINVAL;
L
Linus Torvalds 已提交
835 836 837 838 839 840 841
		if (subs->ops.prepare(subs, runtime, subs->dataurb[i].urb) < 0) {
			snd_printk(KERN_ERR "cannot prepare datapipe for urb %d\n", i);
			goto __error;
		}
	}
	if (subs->syncpipe) {
		for (i = 0; i < SYNC_URBS; i++) {
842 843
			if (snd_BUG_ON(!subs->syncurb[i].urb))
				return -EINVAL;
L
Linus Torvalds 已提交
844 845 846 847 848 849 850 851 852 853 854
			if (subs->ops.prepare_sync(subs, runtime, subs->syncurb[i].urb) < 0) {
				snd_printk(KERN_ERR "cannot prepare syncpipe for urb %d\n", i);
				goto __error;
			}
		}
	}

	subs->active_mask = 0;
	subs->unlink_mask = 0;
	subs->running = 1;
	for (i = 0; i < subs->nurbs; i++) {
855 856 857 858 859
		err = usb_submit_urb(subs->dataurb[i].urb, GFP_ATOMIC);
		if (err < 0) {
			snd_printk(KERN_ERR "cannot submit datapipe "
				   "for urb %d, error %d: %s\n",
				   i, err, usb_error_string(err));
L
Linus Torvalds 已提交
860 861 862 863 864 865
			goto __error;
		}
		set_bit(i, &subs->active_mask);
	}
	if (subs->syncpipe) {
		for (i = 0; i < SYNC_URBS; i++) {
866 867 868 869 870
			err = usb_submit_urb(subs->syncurb[i].urb, GFP_ATOMIC);
			if (err < 0) {
				snd_printk(KERN_ERR "cannot submit syncpipe "
					   "for urb %d, error %d: %s\n",
					   i, err, usb_error_string(err));
L
Linus Torvalds 已提交
871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887
				goto __error;
			}
			set_bit(i + 16, &subs->active_mask);
		}
	}
	return 0;

 __error:
	// snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
	deactivate_urbs(subs, 0, 0);
	return -EPIPE;
}


/*
 *  wait until all urbs are processed.
 */
888
static int wait_clear_urbs(struct snd_usb_substream *subs)
L
Linus Torvalds 已提交
889
{
890
	unsigned long end_time = jiffies + msecs_to_jiffies(1000);
L
Linus Torvalds 已提交
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
	unsigned int i;
	int alive;

	do {
		alive = 0;
		for (i = 0; i < subs->nurbs; i++) {
			if (test_bit(i, &subs->active_mask))
				alive++;
		}
		if (subs->syncpipe) {
			for (i = 0; i < SYNC_URBS; i++) {
				if (test_bit(i + 16, &subs->active_mask))
					alive++;
			}
		}
		if (! alive)
			break;
908
		schedule_timeout_uninterruptible(1);
909
	} while (time_before(jiffies, end_time));
L
Linus Torvalds 已提交
910 911 912 913 914 915 916
	if (alive)
		snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
	return 0;
}


/*
917
 * return the current pcm pointer.  just based on the hwptr_done value.
L
Linus Torvalds 已提交
918
 */
919
static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
920
{
921
	struct snd_usb_substream *subs;
922
	unsigned int hwptr_done;
923
	
924
	subs = (struct snd_usb_substream *)substream->runtime->private_data;
925 926 927
	spin_lock(&subs->lock);
	hwptr_done = subs->hwptr_done;
	spin_unlock(&subs->lock);
928
	return hwptr_done / (substream->runtime->frame_bits >> 3);
L
Linus Torvalds 已提交
929 930 931 932
}


/*
933
 * start/stop playback substream
L
Linus Torvalds 已提交
934
 */
935
static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream *substream,
936
					int cmd)
L
Linus Torvalds 已提交
937
{
938
	struct snd_usb_substream *subs = substream->runtime->private_data;
939 940 941

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
942
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
943 944 945 946
		subs->ops.prepare = prepare_playback_urb;
		return 0;
	case SNDRV_PCM_TRIGGER_STOP:
		return deactivate_urbs(subs, 0, 0);
947 948 949
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
		subs->ops.prepare = prepare_nodata_playback_urb;
		return 0;
950 951 952 953 954 955 956 957
	default:
		return -EINVAL;
	}
}

/*
 * start/stop capture substream
 */
958
static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream *substream,
959 960
				       int cmd)
{
961
	struct snd_usb_substream *subs = substream->runtime->private_data;
L
Linus Torvalds 已提交
962 963 964

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
965
		subs->ops.retire = retire_capture_urb;
966
		return start_urbs(subs, substream->runtime);
L
Linus Torvalds 已提交
967
	case SNDRV_PCM_TRIGGER_STOP:
968
		return deactivate_urbs(subs, 0, 0);
969 970 971 972 973 974
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
		subs->ops.retire = retire_paused_capture_urb;
		return 0;
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
		subs->ops.retire = retire_capture_urb;
		return 0;
L
Linus Torvalds 已提交
975
	default:
976
		return -EINVAL;
L
Linus Torvalds 已提交
977 978 979 980 981 982 983
	}
}


/*
 * release a urb data
 */
984
static void release_urb_ctx(struct snd_urb_ctx *u)
L
Linus Torvalds 已提交
985 986
{
	if (u->urb) {
987 988 989 990
		if (u->buffer_size)
			usb_buffer_free(u->subs->dev, u->buffer_size,
					u->urb->transfer_buffer,
					u->urb->transfer_dma);
L
Linus Torvalds 已提交
991 992 993 994 995 996 997 998
		usb_free_urb(u->urb);
		u->urb = NULL;
	}
}

/*
 * release a substream
 */
999
static void release_substream_urbs(struct snd_usb_substream *subs, int force)
L
Linus Torvalds 已提交
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
{
	int i;

	/* stop urbs (to be sure) */
	deactivate_urbs(subs, force, 1);
	wait_clear_urbs(subs);

	for (i = 0; i < MAX_URBS; i++)
		release_urb_ctx(&subs->dataurb[i]);
	for (i = 0; i < SYNC_URBS; i++)
		release_urb_ctx(&subs->syncurb[i]);
1011 1012 1013
	usb_buffer_free(subs->dev, SYNC_URBS * 4,
			subs->syncbuf, subs->sync_dma);
	subs->syncbuf = NULL;
L
Linus Torvalds 已提交
1014 1015 1016 1017 1018 1019
	subs->nurbs = 0;
}

/*
 * initialize a substream for plaback/capture
 */
1020
static int init_substream_urbs(struct snd_usb_substream *subs, unsigned int period_bytes,
L
Linus Torvalds 已提交
1021 1022
			       unsigned int rate, unsigned int frame_bits)
{
1023
	unsigned int maxsize, i;
L
Linus Torvalds 已提交
1024
	int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
1025
	unsigned int urb_packs, total_packs, packs_per_ms;
L
Linus Torvalds 已提交
1026 1027 1028 1029 1030 1031 1032

	/* calculate the frequency in 16.16 format */
	if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
		subs->freqn = get_usb_full_speed_rate(rate);
	else
		subs->freqn = get_usb_high_speed_rate(rate);
	subs->freqm = subs->freqn;
1033 1034 1035
	/* calculate max. frequency */
	if (subs->maxpacksize) {
		/* whatever fits into a max. size packet */
L
Linus Torvalds 已提交
1036
		maxsize = subs->maxpacksize;
1037 1038 1039 1040 1041 1042 1043
		subs->freqmax = (maxsize / (frame_bits >> 3))
				<< (16 - subs->datainterval);
	} else {
		/* no max. packet size: just take 25% higher than nominal */
		subs->freqmax = subs->freqn + (subs->freqn >> 2);
		maxsize = ((subs->freqmax + 0xffff) * (frame_bits >> 3))
				>> (16 - subs->datainterval);
L
Linus Torvalds 已提交
1044
	}
1045
	subs->phase = 0;
L
Linus Torvalds 已提交
1046 1047 1048 1049 1050 1051

	if (subs->fill_max)
		subs->curpacksize = subs->maxpacksize;
	else
		subs->curpacksize = maxsize;

1052 1053 1054 1055 1056
	if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
		packs_per_ms = 8 >> subs->datainterval;
	else
		packs_per_ms = 1;

1057
	if (is_playback) {
1058
		urb_packs = max(nrpacks, 1);
1059 1060
		urb_packs = min(urb_packs, (unsigned int)MAX_PACKS);
	} else
1061
		urb_packs = 1;
1062
	urb_packs *= packs_per_ms;
1063
	if (subs->syncpipe)
1064
		urb_packs = min(urb_packs, 1U << subs->syncinterval);
L
Linus Torvalds 已提交
1065 1066

	/* decide how many packets to be used */
1067
	if (is_playback) {
1068
		unsigned int minsize, maxpacks;
1069 1070 1071
		/* determine how small a packet can be */
		minsize = (subs->freqn >> (16 - subs->datainterval))
			  * (frame_bits >> 3);
1072
		/* with sync from device, assume it can be 12% lower */
1073
		if (subs->syncpipe)
1074
			minsize -= minsize >> 3;
1075 1076
		minsize = max(minsize, 1u);
		total_packs = (period_bytes + minsize - 1) / minsize;
1077
		/* we need at least two URBs for queueing */
1078 1079
		if (total_packs < 2) {
			total_packs = 2;
1080
		} else {
1081
			/* and we don't want too long a queue either */
1082 1083
			maxpacks = max(MAX_QUEUE * packs_per_ms, urb_packs * 2);
			total_packs = min(total_packs, maxpacks);
1084
		}
1085
	} else {
1086 1087
		while (urb_packs > 1 && urb_packs * maxsize >= period_bytes)
			urb_packs >>= 1;
1088 1089
		total_packs = MAX_URBS * urb_packs;
	}
L
Linus Torvalds 已提交
1090 1091 1092 1093 1094
	subs->nurbs = (total_packs + urb_packs - 1) / urb_packs;
	if (subs->nurbs > MAX_URBS) {
		/* too much... */
		subs->nurbs = MAX_URBS;
		total_packs = MAX_URBS * urb_packs;
1095
	} else if (subs->nurbs < 2) {
L
Linus Torvalds 已提交
1096 1097 1098 1099 1100 1101 1102 1103
		/* too little - we need at least two packets
		 * to ensure contiguous playback/capture
		 */
		subs->nurbs = 2;
	}

	/* allocate and initialize data urbs */
	for (i = 0; i < subs->nurbs; i++) {
1104
		struct snd_urb_ctx *u = &subs->dataurb[i];
L
Linus Torvalds 已提交
1105 1106
		u->index = i;
		u->subs = subs;
1107 1108
		u->packets = (i + 1) * total_packs / subs->nurbs
			- i * total_packs / subs->nurbs;
1109
		u->buffer_size = maxsize * u->packets;
1110
		if (subs->fmt_type == UAC_FORMAT_TYPE_II)
L
Linus Torvalds 已提交
1111 1112
			u->packets++; /* for transfer delimiter */
		u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
1113
		if (!u->urb)
1114 1115 1116 1117
			goto out_of_memory;
		u->urb->transfer_buffer =
			usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL,
					 &u->urb->transfer_dma);
1118
		if (!u->urb->transfer_buffer)
1119
			goto out_of_memory;
L
Linus Torvalds 已提交
1120
		u->urb->pipe = subs->datapipe;
1121
		u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
1122
		u->urb->interval = 1 << subs->datainterval;
L
Linus Torvalds 已提交
1123
		u->urb->context = u;
1124
		u->urb->complete = snd_complete_urb;
L
Linus Torvalds 已提交
1125 1126 1127 1128
	}

	if (subs->syncpipe) {
		/* allocate and initialize sync urbs */
1129 1130
		subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4,
						 GFP_KERNEL, &subs->sync_dma);
1131
		if (!subs->syncbuf)
1132
			goto out_of_memory;
L
Linus Torvalds 已提交
1133
		for (i = 0; i < SYNC_URBS; i++) {
1134
			struct snd_urb_ctx *u = &subs->syncurb[i];
L
Linus Torvalds 已提交
1135 1136
			u->index = i;
			u->subs = subs;
1137 1138
			u->packets = 1;
			u->urb = usb_alloc_urb(1, GFP_KERNEL);
1139
			if (!u->urb)
1140
				goto out_of_memory;
1141
			u->urb->transfer_buffer = subs->syncbuf + i * 4;
1142
			u->urb->transfer_dma = subs->sync_dma + i * 4;
1143
			u->urb->transfer_buffer_length = 4;
L
Linus Torvalds 已提交
1144
			u->urb->pipe = subs->syncpipe;
1145 1146
			u->urb->transfer_flags = URB_ISO_ASAP |
						 URB_NO_TRANSFER_DMA_MAP;
1147
			u->urb->number_of_packets = 1;
1148
			u->urb->interval = 1 << subs->syncinterval;
L
Linus Torvalds 已提交
1149
			u->urb->context = u;
1150
			u->urb->complete = snd_complete_sync_urb;
L
Linus Torvalds 已提交
1151 1152 1153
		}
	}
	return 0;
1154 1155 1156 1157

out_of_memory:
	release_substream_urbs(subs, 0);
	return -ENOMEM;
L
Linus Torvalds 已提交
1158 1159 1160 1161 1162 1163
}


/*
 * find a matching audio format
 */
1164
static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format,
L
Linus Torvalds 已提交
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
				       unsigned int rate, unsigned int channels)
{
	struct list_head *p;
	struct audioformat *found = NULL;
	int cur_attr = 0, attr;

	list_for_each(p, &subs->fmt_list) {
		struct audioformat *fp;
		fp = list_entry(p, struct audioformat, list);
		if (fp->format != format || fp->channels != channels)
			continue;
		if (rate < fp->rate_min || rate > fp->rate_max)
			continue;
		if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
			unsigned int i;
			for (i = 0; i < fp->nr_rates; i++)
				if (fp->rate_table[i] == rate)
					break;
			if (i >= fp->nr_rates)
				continue;
		}
1186
		attr = fp->ep_attr & USB_ENDPOINT_SYNCTYPE;
L
Linus Torvalds 已提交
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
		if (! found) {
			found = fp;
			cur_attr = attr;
			continue;
		}
		/* avoid async out and adaptive in if the other method
		 * supports the same format.
		 * this is a workaround for the case like
		 * M-audio audiophile USB.
		 */
		if (attr != cur_attr) {
1198
			if ((attr == USB_ENDPOINT_SYNC_ASYNC &&
L
Linus Torvalds 已提交
1199
			     subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1200
			    (attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
L
Linus Torvalds 已提交
1201 1202
			     subs->direction == SNDRV_PCM_STREAM_CAPTURE))
				continue;
1203
			if ((cur_attr == USB_ENDPOINT_SYNC_ASYNC &&
L
Linus Torvalds 已提交
1204
			     subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
1205
			    (cur_attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
L
Linus Torvalds 已提交
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
			     subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
				found = fp;
				cur_attr = attr;
				continue;
			}
		}
		/* find the format with the largest max. packet size */
		if (fp->maxpacksize > found->maxpacksize) {
			found = fp;
			cur_attr = attr;
		}
	}
	return found;
}


/*
 * initialize the picth control and sample rate
 */
static int init_usb_pitch(struct usb_device *dev, int iface,
			  struct usb_host_interface *alts,
			  struct audioformat *fmt)
{
	unsigned int ep;
	unsigned char data[1];
	int err;

	ep = get_endpoint(alts, 0)->bEndpointAddress;
	/* if endpoint has pitch control, enable it */
1235
	if (fmt->attributes & UAC_EP_CS_ATTR_PITCH_CONTROL) {
L
Linus Torvalds 已提交
1236
		data[0] = 1;
1237
		if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC_SET_CUR,
L
Linus Torvalds 已提交
1238
					   USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1239
					   UAC_EP_CS_ATTR_PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) {
L
Linus Torvalds 已提交
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
			snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
				   dev->devnum, iface, ep);
			return err;
		}
	}
	return 0;
}

static int init_usb_sample_rate(struct usb_device *dev, int iface,
				struct usb_host_interface *alts,
				struct audioformat *fmt, int rate)
{
	unsigned int ep;
	unsigned char data[3];
	int err;

	ep = get_endpoint(alts, 0)->bEndpointAddress;
	/* if endpoint has sampling rate control, set it */
1258
	if (fmt->attributes & UAC_EP_CS_ATTR_SAMPLE_RATE) {
L
Linus Torvalds 已提交
1259 1260 1261 1262
		int crate;
		data[0] = rate;
		data[1] = rate >> 8;
		data[2] = rate >> 16;
1263
		if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC_SET_CUR,
L
Linus Torvalds 已提交
1264
					   USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
1265
					   UAC_EP_CS_ATTR_SAMPLE_RATE << 8, ep, data, 3, 1000)) < 0) {
1266
			snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep %#x\n",
L
Linus Torvalds 已提交
1267 1268 1269
				   dev->devnum, iface, fmt->altsetting, rate, ep);
			return err;
		}
1270
		if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC_GET_CUR,
L
Linus Torvalds 已提交
1271
					   USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN,
1272
					   UAC_EP_CS_ATTR_SAMPLE_RATE << 8, ep, data, 3, 1000)) < 0) {
1273
			snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep %#x\n",
L
Linus Torvalds 已提交
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
				   dev->devnum, iface, fmt->altsetting, ep);
			return 0; /* some devices don't support reading */
		}
		crate = data[0] | (data[1] << 8) | (data[2] << 16);
		if (crate != rate) {
			snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate);
			// runtime->rate = crate;
		}
	}
	return 0;
}

1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
/*
 * For E-Mu 0404USB/0202USB/TrackerPre sample rate should be set for device,
 * not for interface.
 */
static void set_format_emu_quirk(struct snd_usb_substream *subs,
				 struct audioformat *fmt)
{
	unsigned char emu_samplerate_id = 0;

	/* When capture is active
	 * sample rate shouldn't be changed
	 * by playback substream
	 */
	if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
		if (subs->stream->substream[SNDRV_PCM_STREAM_CAPTURE].interface != -1)
			return;
	}

	switch (fmt->rate_min) {
	case 48000:
		emu_samplerate_id = EMU_QUIRK_SR_48000HZ;
		break;
	case 88200:
		emu_samplerate_id = EMU_QUIRK_SR_88200HZ;
		break;
	case 96000:
		emu_samplerate_id = EMU_QUIRK_SR_96000HZ;
		break;
	case 176400:
		emu_samplerate_id = EMU_QUIRK_SR_176400HZ;
		break;
	case 192000:
		emu_samplerate_id = EMU_QUIRK_SR_192000HZ;
		break;
	default:
		emu_samplerate_id = EMU_QUIRK_SR_44100HZ;
		break;
	}
	snd_emuusb_set_samplerate(subs->stream->chip, emu_samplerate_id);
}

L
Linus Torvalds 已提交
1327 1328 1329
/*
 * find a matching format and set up the interface
 */
1330
static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
L
Linus Torvalds 已提交
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
{
	struct usb_device *dev = subs->dev;
	struct usb_host_interface *alts;
	struct usb_interface_descriptor *altsd;
	struct usb_interface *iface;
	unsigned int ep, attr;
	int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
	int err;

	iface = usb_ifnum_to_if(dev, fmt->iface);
1341 1342
	if (WARN_ON(!iface))
		return -EINVAL;
L
Linus Torvalds 已提交
1343 1344
	alts = &iface->altsetting[fmt->altset_idx];
	altsd = get_iface_desc(alts);
1345 1346
	if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
		return -EINVAL;
L
Linus Torvalds 已提交
1347 1348 1349 1350 1351 1352

	if (fmt == subs->cur_audiofmt)
		return 0;

	/* close the old interface */
	if (subs->interface >= 0 && subs->interface != fmt->iface) {
1353 1354 1355 1356 1357
		if (usb_set_interface(subs->dev, subs->interface, 0) < 0) {
			snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed\n",
				dev->devnum, fmt->iface, fmt->altsetting);
			return -EIO;
		}
L
Linus Torvalds 已提交
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379
		subs->interface = -1;
		subs->format = 0;
	}

	/* set interface */
	if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) {
		if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) {
			snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n",
				   dev->devnum, fmt->iface, fmt->altsetting);
			return -EIO;
		}
		snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting);
		subs->interface = fmt->iface;
		subs->format = fmt->altset_idx;
	}

	/* create a data pipe */
	ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK;
	if (is_playback)
		subs->datapipe = usb_sndisocpipe(dev, ep);
	else
		subs->datapipe = usb_rcvisocpipe(dev, ep);
1380
	subs->datainterval = fmt->datainterval;
L
Linus Torvalds 已提交
1381 1382 1383 1384 1385 1386 1387 1388 1389
	subs->syncpipe = subs->syncinterval = 0;
	subs->maxpacksize = fmt->maxpacksize;
	subs->fill_max = 0;

	/* we need a sync pipe in async OUT or adaptive IN mode */
	/* check the number of EP, since some devices have broken
	 * descriptors which fool us.  if it has only one EP,
	 * assume it as adaptive-out or sync-in.
	 */
1390 1391 1392
	attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
	if (((is_playback && attr == USB_ENDPOINT_SYNC_ASYNC) ||
	     (! is_playback && attr == USB_ENDPOINT_SYNC_ADAPTIVE)) &&
L
Linus Torvalds 已提交
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417
	    altsd->bNumEndpoints >= 2) {
		/* check sync-pipe endpoint */
		/* ... and check descriptor size before accessing bSynchAddress
		   because there is a version of the SB Audigy 2 NX firmware lacking
		   the audio fields in the endpoint descriptors */
		if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
		    (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
		     get_endpoint(alts, 1)->bSynchAddress != 0)) {
			snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
				   dev->devnum, fmt->iface, fmt->altsetting);
			return -EINVAL;
		}
		ep = get_endpoint(alts, 1)->bEndpointAddress;
		if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
		    (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
		     (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
			snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n",
				   dev->devnum, fmt->iface, fmt->altsetting);
			return -EINVAL;
		}
		ep &= USB_ENDPOINT_NUMBER_MASK;
		if (is_playback)
			subs->syncpipe = usb_rcvisocpipe(dev, ep);
		else
			subs->syncpipe = usb_sndisocpipe(dev, ep);
1418 1419 1420 1421
		if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
		    get_endpoint(alts, 1)->bRefresh >= 1 &&
		    get_endpoint(alts, 1)->bRefresh <= 9)
			subs->syncinterval = get_endpoint(alts, 1)->bRefresh;
1422
		else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
1423
			subs->syncinterval = 1;
1424 1425 1426 1427 1428
		else if (get_endpoint(alts, 1)->bInterval >= 1 &&
			 get_endpoint(alts, 1)->bInterval <= 16)
			subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
		else
			subs->syncinterval = 3;
L
Linus Torvalds 已提交
1429 1430 1431
	}

	/* always fill max packet size */
1432
	if (fmt->attributes & UAC_EP_CS_ATTR_FILL_MAX)
L
Linus Torvalds 已提交
1433 1434 1435 1436 1437 1438 1439
		subs->fill_max = 1;

	if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0)
		return err;

	subs->cur_audiofmt = fmt;

1440 1441 1442 1443 1444 1445 1446 1447
	switch (subs->stream->chip->usb_id) {
	case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
	case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
	case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */
		set_format_emu_quirk(subs, fmt);
		break;
	}

L
Linus Torvalds 已提交
1448
#if 0
1449 1450
	printk(KERN_DEBUG
	       "setting done: format = %d, rate = %d..%d, channels = %d\n",
1451
	       fmt->format, fmt->rate_min, fmt->rate_max, fmt->channels);
1452 1453
	printk(KERN_DEBUG
	       "  datapipe = 0x%0x, syncpipe = 0x%0x\n",
L
Linus Torvalds 已提交
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
	       subs->datapipe, subs->syncpipe);
#endif

	return 0;
}

/*
 * hw_params callback
 *
 * allocate a buffer and set the given audio format.
 *
 * so far we use a physically linear buffer although packetize transfer
 * doesn't need a continuous area.
 * if sg buffer is supported on the later version of alsa, we'll follow
 * that.
 */
1470 1471
static int snd_usb_hw_params(struct snd_pcm_substream *substream,
			     struct snd_pcm_hw_params *hw_params)
L
Linus Torvalds 已提交
1472
{
1473
	struct snd_usb_substream *subs = substream->runtime->private_data;
L
Linus Torvalds 已提交
1474 1475 1476 1477
	struct audioformat *fmt;
	unsigned int channels, rate, format;
	int ret, changed;

1478 1479
	ret = snd_pcm_lib_alloc_vmalloc_buffer(substream,
					       params_buffer_bytes(hw_params));
L
Linus Torvalds 已提交
1480 1481 1482 1483 1484 1485 1486
	if (ret < 0)
		return ret;

	format = params_format(hw_params);
	rate = params_rate(hw_params);
	channels = params_channels(hw_params);
	fmt = find_format(subs, format, rate, channels);
1487
	if (!fmt) {
1488
		snd_printd(KERN_DEBUG "cannot set format: format = %#x, rate = %d, channels = %d\n",
1489
			   format, rate, channels);
L
Linus Torvalds 已提交
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
		return -EINVAL;
	}

	changed = subs->cur_audiofmt != fmt ||
		subs->period_bytes != params_period_bytes(hw_params) ||
		subs->cur_rate != rate;
	if ((ret = set_format(subs, fmt)) < 0)
		return ret;

	if (subs->cur_rate != rate) {
		struct usb_host_interface *alts;
		struct usb_interface *iface;
		iface = usb_ifnum_to_if(subs->dev, fmt->iface);
		alts = &iface->altsetting[fmt->altset_idx];
		ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate);
		if (ret < 0)
			return ret;
		subs->cur_rate = rate;
	}

	if (changed) {
		/* format changed */
		release_substream_urbs(subs, 0);
		/* influenced: period_bytes, channels, rate, format, */
		ret = init_substream_urbs(subs, params_period_bytes(hw_params),
					  params_rate(hw_params),
					  snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params));
	}

	return ret;
}

/*
 * hw_free callback
 *
 * reset the audio format and release the buffer
 */
1527
static int snd_usb_hw_free(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1528
{
1529
	struct snd_usb_substream *subs = substream->runtime->private_data;
L
Linus Torvalds 已提交
1530 1531 1532 1533

	subs->cur_audiofmt = NULL;
	subs->cur_rate = 0;
	subs->period_bytes = 0;
1534 1535
	if (!subs->stream->chip->shutdown)
		release_substream_urbs(subs, 0);
1536
	return snd_pcm_lib_free_vmalloc_buffer(substream);
L
Linus Torvalds 已提交
1537 1538 1539 1540 1541 1542 1543
}

/*
 * prepare callback
 *
 * only a few subtle things...
 */
1544
static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1545
{
1546 1547
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_usb_substream *subs = runtime->private_data;
L
Linus Torvalds 已提交
1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561

	if (! subs->cur_audiofmt) {
		snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
		return -ENXIO;
	}

	/* some unit conversions in runtime */
	subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize);
	subs->curframesize = bytes_to_frames(runtime, subs->curpacksize);

	/* reset the pointer */
	subs->hwptr_done = 0;
	subs->transfer_done = 0;
	subs->phase = 0;
1562
	runtime->delay = 0;
L
Linus Torvalds 已提交
1563 1564 1565 1566 1567

	/* clear urbs (to be sure) */
	deactivate_urbs(subs, 0, 1);
	wait_clear_urbs(subs);

1568 1569 1570
	/* for playback, submit the URBs now; otherwise, the first hwptr_done
	 * updates for all URBs would happen at the same time when starting */
	if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
1571
		subs->ops.prepare = prepare_nodata_playback_urb;
1572 1573 1574
		return start_urbs(subs, runtime);
	} else
		return 0;
L
Linus Torvalds 已提交
1575 1576
}

1577
static struct snd_pcm_hardware snd_usb_hardware =
L
Linus Torvalds 已提交
1578
{
1579 1580 1581 1582
	.info =			SNDRV_PCM_INFO_MMAP |
				SNDRV_PCM_INFO_MMAP_VALID |
				SNDRV_PCM_INFO_BATCH |
				SNDRV_PCM_INFO_INTERLEAVED |
1583 1584
				SNDRV_PCM_INFO_BLOCK_TRANSFER |
				SNDRV_PCM_INFO_PAUSE,
1585
	.buffer_bytes_max =	1024 * 1024,
L
Linus Torvalds 已提交
1586
	.period_bytes_min =	64,
1587
	.period_bytes_max =	512 * 1024,
L
Linus Torvalds 已提交
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601
	.periods_min =		2,
	.periods_max =		1024,
};

/*
 * h/w constraints
 */

#ifdef HW_CONST_DEBUG
#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
#else
#define hwc_debug(fmt, args...) /**/
#endif

1602 1603 1604
static int hw_check_valid_format(struct snd_usb_substream *subs,
				 struct snd_pcm_hw_params *params,
				 struct audioformat *fp)
L
Linus Torvalds 已提交
1605
{
1606 1607 1608
	struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
	struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
	struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
1609 1610
	struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
	unsigned int ptime;
L
Linus Torvalds 已提交
1611 1612

	/* check the format */
1613
	if (!snd_mask_test(fmts, fp->format)) {
L
Linus Torvalds 已提交
1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630
		hwc_debug("   > check: no supported format %d\n", fp->format);
		return 0;
	}
	/* check the channels */
	if (fp->channels < ct->min || fp->channels > ct->max) {
		hwc_debug("   > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
		return 0;
	}
	/* check the rate is within the range */
	if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
		hwc_debug("   > check: rate_min %d > max %d\n", fp->rate_min, it->max);
		return 0;
	}
	if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
		hwc_debug("   > check: rate_max %d < min %d\n", fp->rate_max, it->min);
		return 0;
	}
1631 1632 1633 1634 1635 1636 1637 1638
	/* check whether the period time is >= the data packet interval */
	if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH) {
		ptime = 125 * (1 << fp->datainterval);
		if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
			hwc_debug("   > check: ptime %u > max %u\n", ptime, pt->max);
			return 0;
		}
	}
L
Linus Torvalds 已提交
1639 1640 1641
	return 1;
}

1642 1643
static int hw_rule_rate(struct snd_pcm_hw_params *params,
			struct snd_pcm_hw_rule *rule)
L
Linus Torvalds 已提交
1644
{
1645
	struct snd_usb_substream *subs = rule->private;
L
Linus Torvalds 已提交
1646
	struct list_head *p;
1647
	struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
L
Linus Torvalds 已提交
1648 1649 1650 1651 1652 1653 1654 1655 1656
	unsigned int rmin, rmax;
	int changed;

	hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
	changed = 0;
	rmin = rmax = 0;
	list_for_each(p, &subs->fmt_list) {
		struct audioformat *fp;
		fp = list_entry(p, struct audioformat, list);
1657
		if (!hw_check_valid_format(subs, params, fp))
L
Linus Torvalds 已提交
1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669
			continue;
		if (changed++) {
			if (rmin > fp->rate_min)
				rmin = fp->rate_min;
			if (rmax < fp->rate_max)
				rmax = fp->rate_max;
		} else {
			rmin = fp->rate_min;
			rmax = fp->rate_max;
		}
	}

1670
	if (!changed) {
L
Linus Torvalds 已提交
1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
		hwc_debug("  --> get empty\n");
		it->empty = 1;
		return -EINVAL;
	}

	changed = 0;
	if (it->min < rmin) {
		it->min = rmin;
		it->openmin = 0;
		changed = 1;
	}
	if (it->max > rmax) {
		it->max = rmax;
		it->openmax = 0;
		changed = 1;
	}
	if (snd_interval_checkempty(it)) {
		it->empty = 1;
		return -EINVAL;
	}
	hwc_debug("  --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
	return changed;
}


1696 1697
static int hw_rule_channels(struct snd_pcm_hw_params *params,
			    struct snd_pcm_hw_rule *rule)
L
Linus Torvalds 已提交
1698
{
1699
	struct snd_usb_substream *subs = rule->private;
L
Linus Torvalds 已提交
1700
	struct list_head *p;
1701
	struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
L
Linus Torvalds 已提交
1702 1703 1704 1705 1706 1707 1708 1709 1710
	unsigned int rmin, rmax;
	int changed;

	hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
	changed = 0;
	rmin = rmax = 0;
	list_for_each(p, &subs->fmt_list) {
		struct audioformat *fp;
		fp = list_entry(p, struct audioformat, list);
1711
		if (!hw_check_valid_format(subs, params, fp))
L
Linus Torvalds 已提交
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
			continue;
		if (changed++) {
			if (rmin > fp->channels)
				rmin = fp->channels;
			if (rmax < fp->channels)
				rmax = fp->channels;
		} else {
			rmin = fp->channels;
			rmax = fp->channels;
		}
	}

1724
	if (!changed) {
L
Linus Torvalds 已提交
1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748
		hwc_debug("  --> get empty\n");
		it->empty = 1;
		return -EINVAL;
	}

	changed = 0;
	if (it->min < rmin) {
		it->min = rmin;
		it->openmin = 0;
		changed = 1;
	}
	if (it->max > rmax) {
		it->max = rmax;
		it->openmax = 0;
		changed = 1;
	}
	if (snd_interval_checkempty(it)) {
		it->empty = 1;
		return -EINVAL;
	}
	hwc_debug("  --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
	return changed;
}

1749 1750
static int hw_rule_format(struct snd_pcm_hw_params *params,
			  struct snd_pcm_hw_rule *rule)
L
Linus Torvalds 已提交
1751
{
1752
	struct snd_usb_substream *subs = rule->private;
L
Linus Torvalds 已提交
1753
	struct list_head *p;
1754
	struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
L
Linus Torvalds 已提交
1755 1756 1757 1758 1759 1760 1761 1762 1763
	u64 fbits;
	u32 oldbits[2];
	int changed;

	hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
	fbits = 0;
	list_for_each(p, &subs->fmt_list) {
		struct audioformat *fp;
		fp = list_entry(p, struct audioformat, list);
1764
		if (!hw_check_valid_format(subs, params, fp))
L
Linus Torvalds 已提交
1765 1766 1767 1768 1769 1770 1771 1772
			continue;
		fbits |= (1ULL << fp->format);
	}

	oldbits[0] = fmt->bits[0];
	oldbits[1] = fmt->bits[1];
	fmt->bits[0] &= (u32)fbits;
	fmt->bits[1] &= (u32)(fbits >> 32);
1773
	if (!fmt->bits[0] && !fmt->bits[1]) {
L
Linus Torvalds 已提交
1774 1775 1776 1777 1778 1779 1780 1781
		hwc_debug("  --> get empty\n");
		return -EINVAL;
	}
	changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
	hwc_debug("  --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
	return changed;
}

1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819
static int hw_rule_period_time(struct snd_pcm_hw_params *params,
			       struct snd_pcm_hw_rule *rule)
{
	struct snd_usb_substream *subs = rule->private;
	struct audioformat *fp;
	struct snd_interval *it;
	unsigned char min_datainterval;
	unsigned int pmin;
	int changed;

	it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
	hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
	min_datainterval = 0xff;
	list_for_each_entry(fp, &subs->fmt_list, list) {
		if (!hw_check_valid_format(subs, params, fp))
			continue;
		min_datainterval = min(min_datainterval, fp->datainterval);
	}
	if (min_datainterval == 0xff) {
		hwc_debug("  --> get emtpy\n");
		it->empty = 1;
		return -EINVAL;
	}
	pmin = 125 * (1 << min_datainterval);
	changed = 0;
	if (it->min < pmin) {
		it->min = pmin;
		it->openmin = 0;
		changed = 1;
	}
	if (snd_interval_checkempty(it)) {
		it->empty = 1;
		return -EINVAL;
	}
	hwc_debug("  --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
	return changed;
}

1820 1821 1822 1823 1824 1825
/*
 *  If the device supports unusual bit rates, does the request meet these?
 */
static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
				  struct snd_usb_substream *subs)
{
1826 1827
	struct audioformat *fp;
	int count = 0, needs_knot = 0;
1828 1829
	int err;

1830 1831 1832 1833
	list_for_each_entry(fp, &subs->fmt_list, list) {
		if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
			return 0;
		count += fp->nr_rates;
1834
		if (fp->rates & SNDRV_PCM_RATE_KNOT)
1835
			needs_knot = 1;
1836
	}
1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852
	if (!needs_knot)
		return 0;

	subs->rate_list.count = count;
	subs->rate_list.list = kmalloc(sizeof(int) * count, GFP_KERNEL);
	subs->rate_list.mask = 0;
	count = 0;
	list_for_each_entry(fp, &subs->fmt_list, list) {
		int i;
		for (i = 0; i < fp->nr_rates; i++)
			subs->rate_list.list[count++] = fp->rate_table[i];
	}
	err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
					 &subs->rate_list);
	if (err < 0)
		return err;
1853 1854 1855 1856

	return 0;
}

L
Linus Torvalds 已提交
1857 1858 1859 1860 1861

/*
 * set up the runtime hardware information.
 */

1862
static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
L
Linus Torvalds 已提交
1863 1864
{
	struct list_head *p;
1865 1866
	unsigned int pt, ptmin;
	int param_period_time_if_needed;
L
Linus Torvalds 已提交
1867 1868 1869 1870 1871 1872 1873 1874 1875
	int err;

	runtime->hw.formats = subs->formats;

	runtime->hw.rate_min = 0x7fffffff;
	runtime->hw.rate_max = 0;
	runtime->hw.channels_min = 256;
	runtime->hw.channels_max = 0;
	runtime->hw.rates = 0;
1876
	ptmin = UINT_MAX;
L
Linus Torvalds 已提交
1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889
	/* check min/max rates and channels */
	list_for_each(p, &subs->fmt_list) {
		struct audioformat *fp;
		fp = list_entry(p, struct audioformat, list);
		runtime->hw.rates |= fp->rates;
		if (runtime->hw.rate_min > fp->rate_min)
			runtime->hw.rate_min = fp->rate_min;
		if (runtime->hw.rate_max < fp->rate_max)
			runtime->hw.rate_max = fp->rate_max;
		if (runtime->hw.channels_min > fp->channels)
			runtime->hw.channels_min = fp->channels;
		if (runtime->hw.channels_max < fp->channels)
			runtime->hw.channels_max = fp->channels;
1890
		if (fp->fmt_type == UAC_FORMAT_TYPE_II && fp->frame_size > 0) {
L
Linus Torvalds 已提交
1891 1892 1893 1894
			/* FIXME: there might be more than one audio formats... */
			runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
				fp->frame_size;
		}
1895 1896
		pt = 125 * (1 << fp->datainterval);
		ptmin = min(ptmin, pt);
L
Linus Torvalds 已提交
1897 1898
	}

1899 1900 1901 1902 1903 1904 1905
	param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
	if (snd_usb_get_speed(subs->dev) != USB_SPEED_HIGH)
		/* full speed devices have fixed data packet interval */
		ptmin = 1000;
	if (ptmin == 1000)
		/* if period time doesn't go below 1 ms, no rules needed */
		param_period_time_if_needed = -1;
L
Linus Torvalds 已提交
1906
	snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1907
				     ptmin, UINT_MAX);
L
Linus Torvalds 已提交
1908

1909 1910 1911 1912
	if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
				       hw_rule_rate, subs,
				       SNDRV_PCM_HW_PARAM_FORMAT,
				       SNDRV_PCM_HW_PARAM_CHANNELS,
1913
				       param_period_time_if_needed,
1914 1915 1916 1917 1918 1919
				       -1)) < 0)
		return err;
	if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
				       hw_rule_channels, subs,
				       SNDRV_PCM_HW_PARAM_FORMAT,
				       SNDRV_PCM_HW_PARAM_RATE,
1920
				       param_period_time_if_needed,
1921 1922 1923 1924 1925 1926
				       -1)) < 0)
		return err;
	if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
				       hw_rule_format, subs,
				       SNDRV_PCM_HW_PARAM_RATE,
				       SNDRV_PCM_HW_PARAM_CHANNELS,
1927
				       param_period_time_if_needed,
1928 1929
				       -1)) < 0)
		return err;
1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940
	if (param_period_time_if_needed >= 0) {
		err = snd_pcm_hw_rule_add(runtime, 0,
					  SNDRV_PCM_HW_PARAM_PERIOD_TIME,
					  hw_rule_period_time, subs,
					  SNDRV_PCM_HW_PARAM_FORMAT,
					  SNDRV_PCM_HW_PARAM_CHANNELS,
					  SNDRV_PCM_HW_PARAM_RATE,
					  -1);
		if (err < 0)
			return err;
	}
1941
	if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
1942
		return err;
L
Linus Torvalds 已提交
1943 1944 1945
	return 0;
}

1946
static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
L
Linus Torvalds 已提交
1947
{
1948 1949 1950
	struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_usb_substream *subs = &as->substream[direction];
L
Linus Torvalds 已提交
1951 1952 1953

	subs->interface = -1;
	subs->format = 0;
1954
	runtime->hw = snd_usb_hardware;
L
Linus Torvalds 已提交
1955 1956 1957 1958 1959
	runtime->private_data = subs;
	subs->pcm_substream = substream;
	return setup_hw_info(runtime, subs);
}

1960
static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
L
Linus Torvalds 已提交
1961
{
1962 1963
	struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
	struct snd_usb_substream *subs = &as->substream[direction];
L
Linus Torvalds 已提交
1964

1965
	if (!as->chip->shutdown && subs->interface >= 0) {
L
Linus Torvalds 已提交
1966 1967 1968 1969 1970 1971 1972
		usb_set_interface(subs->dev, subs->interface, 0);
		subs->interface = -1;
	}
	subs->pcm_substream = NULL;
	return 0;
}

1973
static int snd_usb_playback_open(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1974
{
1975
	return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
L
Linus Torvalds 已提交
1976 1977
}

1978
static int snd_usb_playback_close(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1979 1980 1981 1982
{
	return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
}

1983
static int snd_usb_capture_open(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1984
{
1985
	return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
L
Linus Torvalds 已提交
1986 1987
}

1988
static int snd_usb_capture_close(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1989 1990 1991 1992
{
	return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
}

1993
static struct snd_pcm_ops snd_usb_playback_ops = {
L
Linus Torvalds 已提交
1994 1995 1996 1997 1998 1999
	.open =		snd_usb_playback_open,
	.close =	snd_usb_playback_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_usb_hw_params,
	.hw_free =	snd_usb_hw_free,
	.prepare =	snd_usb_pcm_prepare,
2000
	.trigger =	snd_usb_pcm_playback_trigger,
L
Linus Torvalds 已提交
2001
	.pointer =	snd_usb_pcm_pointer,
2002
	.page =		snd_pcm_lib_get_vmalloc_page,
2003
	.mmap =		snd_pcm_lib_mmap_vmalloc,
L
Linus Torvalds 已提交
2004 2005
};

2006
static struct snd_pcm_ops snd_usb_capture_ops = {
L
Linus Torvalds 已提交
2007 2008 2009 2010 2011 2012
	.open =		snd_usb_capture_open,
	.close =	snd_usb_capture_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_usb_hw_params,
	.hw_free =	snd_usb_hw_free,
	.prepare =	snd_usb_pcm_prepare,
2013
	.trigger =	snd_usb_pcm_capture_trigger,
L
Linus Torvalds 已提交
2014
	.pointer =	snd_usb_pcm_pointer,
2015
	.page =		snd_pcm_lib_get_vmalloc_page,
2016
	.mmap =		snd_pcm_lib_mmap_vmalloc,
L
Linus Torvalds 已提交
2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089
};



/*
 * helper functions
 */

/*
 * combine bytes and get an integer value
 */
unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size)
{
	switch (size) {
	case 1:  return *bytes;
	case 2:  return combine_word(bytes);
	case 3:  return combine_triple(bytes);
	case 4:  return combine_quad(bytes);
	default: return 0;
	}
}

/*
 * parse descriptor buffer and return the pointer starting the given
 * descriptor type.
 */
void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype)
{
	u8 *p, *end, *next;

	p = descstart;
	end = p + desclen;
	for (; p < end;) {
		if (p[0] < 2)
			return NULL;
		next = p + p[0];
		if (next > end)
			return NULL;
		if (p[1] == dtype && (!after || (void *)p > after)) {
			return p;
		}
		p = next;
	}
	return NULL;
}

/*
 * find a class-specified interface descriptor with the given subtype.
 */
void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype)
{
	unsigned char *p = after;

	while ((p = snd_usb_find_desc(buffer, buflen, p,
				      USB_DT_CS_INTERFACE)) != NULL) {
		if (p[0] >= 3 && p[2] == dsubtype)
			return p;
	}
	return NULL;
}

/*
 * Wrapper for usb_control_msg().
 * Allocates a temp buffer to prevent dmaing from/to the stack.
 */
int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
		    __u8 requesttype, __u16 value, __u16 index, void *data,
		    __u16 size, int timeout)
{
	int err;
	void *buf = NULL;

	if (size > 0) {
A
Alexey Dobriyan 已提交
2090
		buf = kmemdup(data, size, GFP_KERNEL);
L
Linus Torvalds 已提交
2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110
		if (!buf)
			return -ENOMEM;
	}
	err = usb_control_msg(dev, pipe, request, requesttype,
			      value, index, buf, size, timeout);
	if (size > 0) {
		memcpy(data, buf, size);
		kfree(buf);
	}
	return err;
}


/*
 * entry point for linux usb interface
 */

static int usb_audio_probe(struct usb_interface *intf,
			   const struct usb_device_id *id);
static void usb_audio_disconnect(struct usb_interface *intf);
2111 2112

#ifdef CONFIG_PM
O
Oliver Neukum 已提交
2113 2114
static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message);
static int usb_audio_resume(struct usb_interface *intf);
2115 2116 2117 2118
#else
#define usb_audio_suspend NULL
#define usb_audio_resume NULL
#endif
L
Linus Torvalds 已提交
2119 2120 2121 2122 2123

static struct usb_device_id usb_audio_ids [] = {
#include "usbquirks.h"
    { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
      .bInterfaceClass = USB_CLASS_AUDIO,
2124
      .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL },
L
Linus Torvalds 已提交
2125 2126 2127 2128 2129 2130 2131 2132 2133
    { }						/* Terminating entry */
};

MODULE_DEVICE_TABLE (usb, usb_audio_ids);

static struct usb_driver usb_audio_driver = {
	.name =		"snd-usb-audio",
	.probe =	usb_audio_probe,
	.disconnect =	usb_audio_disconnect,
O
Oliver Neukum 已提交
2134 2135
	.suspend =	usb_audio_suspend,
	.resume =	usb_audio_resume,
L
Linus Torvalds 已提交
2136 2137 2138 2139
	.id_table =	usb_audio_ids,
};


2140
#if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS)
2141

L
Linus Torvalds 已提交
2142 2143 2144
/*
 * proc interface for list the supported pcm formats
 */
2145
static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156
{
	struct list_head *p;
	static char *sync_types[4] = {
		"NONE", "ASYNC", "ADAPTIVE", "SYNC"
	};

	list_for_each(p, &subs->fmt_list) {
		struct audioformat *fp;
		fp = list_entry(p, struct audioformat, list);
		snd_iprintf(buffer, "  Interface %d\n", fp->iface);
		snd_iprintf(buffer, "    Altset %d\n", fp->altsetting);
2157 2158
		snd_iprintf(buffer, "    Format: %s\n",
			    snd_pcm_format_name(fp->format));
L
Linus Torvalds 已提交
2159 2160 2161 2162
		snd_iprintf(buffer, "    Channels: %d\n", fp->channels);
		snd_iprintf(buffer, "    Endpoint: %d %s (%s)\n",
			    fp->endpoint & USB_ENDPOINT_NUMBER_MASK,
			    fp->endpoint & USB_DIR_IN ? "IN" : "OUT",
2163
			    sync_types[(fp->ep_attr & USB_ENDPOINT_SYNCTYPE) >> 2]);
L
Linus Torvalds 已提交
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176
		if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) {
			snd_iprintf(buffer, "    Rates: %d - %d (continuous)\n",
				    fp->rate_min, fp->rate_max);
		} else {
			unsigned int i;
			snd_iprintf(buffer, "    Rates: ");
			for (i = 0; i < fp->nr_rates; i++) {
				if (i > 0)
					snd_iprintf(buffer, ", ");
				snd_iprintf(buffer, "%d", fp->rate_table[i]);
			}
			snd_iprintf(buffer, "\n");
		}
2177 2178 2179
		if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH)
			snd_iprintf(buffer, "    Data packet interval: %d us\n",
				    125 * (1 << fp->datainterval));
L
Linus Torvalds 已提交
2180
		// snd_iprintf(buffer, "    Max Packet Size = %d\n", fp->maxpacksize);
2181
		// snd_iprintf(buffer, "    EP Attribute = %#x\n", fp->attributes);
L
Linus Torvalds 已提交
2182 2183 2184
	}
}

2185
static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196
{
	if (subs->running) {
		unsigned int i;
		snd_iprintf(buffer, "  Status: Running\n");
		snd_iprintf(buffer, "    Interface = %d\n", subs->interface);
		snd_iprintf(buffer, "    Altset = %d\n", subs->format);
		snd_iprintf(buffer, "    URBs = %d [ ", subs->nurbs);
		for (i = 0; i < subs->nurbs; i++)
			snd_iprintf(buffer, "%d ", subs->dataurb[i].packets);
		snd_iprintf(buffer, "]\n");
		snd_iprintf(buffer, "    Packet Size = %d\n", subs->curpacksize);
2197
		snd_iprintf(buffer, "    Momentary freq = %u Hz (%#x.%04x)\n",
L
Linus Torvalds 已提交
2198 2199
			    snd_usb_get_speed(subs->dev) == USB_SPEED_FULL
			    ? get_full_speed_hz(subs->freqm)
2200 2201
			    : get_high_speed_hz(subs->freqm),
			    subs->freqm >> 16, subs->freqm & 0xffff);
L
Linus Torvalds 已提交
2202 2203 2204 2205 2206
	} else {
		snd_iprintf(buffer, "  Status: Stop\n");
	}
}

2207
static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
2208
{
2209
	struct snd_usb_stream *stream = entry->private_data;
L
Linus Torvalds 已提交
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224

	snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name);

	if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) {
		snd_iprintf(buffer, "\nPlayback:\n");
		proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
		proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer);
	}
	if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) {
		snd_iprintf(buffer, "\nCapture:\n");
		proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
		proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer);
	}
}

2225
static void proc_pcm_format_add(struct snd_usb_stream *stream)
L
Linus Torvalds 已提交
2226
{
2227
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
2228
	char name[32];
2229
	struct snd_card *card = stream->chip->card;
L
Linus Torvalds 已提交
2230 2231

	sprintf(name, "stream%d", stream->pcm_index);
2232
	if (!snd_card_proc_new(card, name, &entry))
2233
		snd_info_set_text_ops(entry, stream, proc_pcm_format_read);
L
Linus Torvalds 已提交
2234 2235
}

2236 2237 2238 2239 2240 2241 2242
#else

static inline void proc_pcm_format_add(struct snd_usb_stream *stream)
{
}

#endif
L
Linus Torvalds 已提交
2243 2244 2245 2246 2247

/*
 * initialize the substream instance.
 */

2248
static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp)
L
Linus Torvalds 已提交
2249
{
2250
	struct snd_usb_substream *subs = &as->substream[stream];
L
Linus Torvalds 已提交
2251 2252 2253 2254 2255 2256 2257

	INIT_LIST_HEAD(&subs->fmt_list);
	spin_lock_init(&subs->lock);

	subs->stream = as;
	subs->direction = stream;
	subs->dev = as->chip->dev;
2258
	subs->txfr_quirk = as->chip->txfr_quirk;
2259
	if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL) {
L
Linus Torvalds 已提交
2260
		subs->ops = audio_urb_ops[stream];
2261
	} else {
L
Linus Torvalds 已提交
2262
		subs->ops = audio_urb_ops_high_speed[stream];
2263 2264 2265
		switch (as->chip->usb_id) {
		case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
		case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
2266
		case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */
2267 2268 2269 2270
			subs->ops.retire_sync = retire_playback_sync_urb_hs_emu;
			break;
		}
	}
L
Linus Torvalds 已提交
2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285
	snd_pcm_set_ops(as->pcm, stream,
			stream == SNDRV_PCM_STREAM_PLAYBACK ?
			&snd_usb_playback_ops : &snd_usb_capture_ops);

	list_add_tail(&fp->list, &subs->fmt_list);
	subs->formats |= 1ULL << fp->format;
	subs->endpoint = fp->endpoint;
	subs->num_formats++;
	subs->fmt_type = fp->fmt_type;
}


/*
 * free a substream
 */
2286
static void free_substream(struct snd_usb_substream *subs)
L
Linus Torvalds 已提交
2287 2288 2289
{
	struct list_head *p, *n;

2290
	if (!subs->num_formats)
L
Linus Torvalds 已提交
2291 2292 2293 2294 2295 2296
		return; /* not initialized */
	list_for_each_safe(p, n, &subs->fmt_list) {
		struct audioformat *fp = list_entry(p, struct audioformat, list);
		kfree(fp->rate_table);
		kfree(fp);
	}
2297
	kfree(subs->rate_list.list);
L
Linus Torvalds 已提交
2298 2299 2300 2301 2302 2303
}


/*
 * free a usb stream instance
 */
2304
static void snd_usb_audio_stream_free(struct snd_usb_stream *stream)
L
Linus Torvalds 已提交
2305 2306 2307 2308 2309 2310 2311
{
	free_substream(&stream->substream[0]);
	free_substream(&stream->substream[1]);
	list_del(&stream->list);
	kfree(stream);
}

2312
static void snd_usb_audio_pcm_free(struct snd_pcm *pcm)
L
Linus Torvalds 已提交
2313
{
2314
	struct snd_usb_stream *stream = pcm->private_data;
L
Linus Torvalds 已提交
2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326
	if (stream) {
		stream->pcm = NULL;
		snd_usb_audio_stream_free(stream);
	}
}


/*
 * add this endpoint to the chip instance.
 * if a stream with the same endpoint already exists, append to it.
 * if not, create a new pcm stream.
 */
2327
static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp)
L
Linus Torvalds 已提交
2328 2329
{
	struct list_head *p;
2330 2331 2332
	struct snd_usb_stream *as;
	struct snd_usb_substream *subs;
	struct snd_pcm *pcm;
L
Linus Torvalds 已提交
2333 2334 2335
	int err;

	list_for_each(p, &chip->pcm_list) {
2336
		as = list_entry(p, struct snd_usb_stream, list);
L
Linus Torvalds 已提交
2337 2338 2339
		if (as->fmt_type != fp->fmt_type)
			continue;
		subs = &as->substream[stream];
2340
		if (!subs->endpoint)
L
Linus Torvalds 已提交
2341 2342 2343 2344 2345 2346 2347 2348 2349 2350
			continue;
		if (subs->endpoint == fp->endpoint) {
			list_add_tail(&fp->list, &subs->fmt_list);
			subs->num_formats++;
			subs->formats |= 1ULL << fp->format;
			return 0;
		}
	}
	/* look for an empty stream */
	list_for_each(p, &chip->pcm_list) {
2351
		as = list_entry(p, struct snd_usb_stream, list);
L
Linus Torvalds 已提交
2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364
		if (as->fmt_type != fp->fmt_type)
			continue;
		subs = &as->substream[stream];
		if (subs->endpoint)
			continue;
		err = snd_pcm_new_stream(as->pcm, stream, 1);
		if (err < 0)
			return err;
		init_substream(as, stream, fp);
		return 0;
	}

	/* create a new pcm */
2365
	as = kzalloc(sizeof(*as), GFP_KERNEL);
2366
	if (!as)
L
Linus Torvalds 已提交
2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401
		return -ENOMEM;
	as->pcm_index = chip->pcm_devs;
	as->chip = chip;
	as->fmt_type = fp->fmt_type;
	err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs,
			  stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0,
			  stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1,
			  &pcm);
	if (err < 0) {
		kfree(as);
		return err;
	}
	as->pcm = pcm;
	pcm->private_data = as;
	pcm->private_free = snd_usb_audio_pcm_free;
	pcm->info_flags = 0;
	if (chip->pcm_devs > 0)
		sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs);
	else
		strcpy(pcm->name, "USB Audio");

	init_substream(as, stream, fp);

	list_add(&as->list, &chip->pcm_list);
	chip->pcm_devs++;

	proc_pcm_format_add(as);

	return 0;
}


/*
 * check if the device uses big-endian samples
 */
2402
static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
L
Linus Torvalds 已提交
2403
{
2404 2405 2406
	switch (chip->usb_id) {
	case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
		if (fp->endpoint & USB_DIR_IN)
L
Linus Torvalds 已提交
2407
			return 1;
2408 2409
		break;
	case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
2410 2411 2412
		if (device_setup[chip->index] == 0x00 ||
		    fp->altsetting==1 || fp->altsetting==2 || fp->altsetting==3)
			return 1;
L
Linus Torvalds 已提交
2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425
	}
	return 0;
}

/*
 * parse the audio format type I descriptor
 * and returns the corresponding pcm format
 *
 * @dev: usb device
 * @fp: audioformat record
 * @format: the format tag (wFormatTag)
 * @fmt: the format type descriptor
 */
2426 2427 2428 2429
static int parse_audio_format_i_type(struct snd_usb_audio *chip,
				     struct audioformat *fp,
				     int format, void *_fmt,
				     int protocol)
L
Linus Torvalds 已提交
2430
{
2431
	int pcm_format, i;
L
Linus Torvalds 已提交
2432
	int sample_width, sample_bytes;
2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469

	switch (protocol) {
	case UAC_VERSION_1: {
		struct uac_format_type_i_discrete_descriptor *fmt = _fmt;
		sample_width = fmt->bBitResolution;
		sample_bytes = fmt->bSubframeSize;
		break;
	}

	case UAC_VERSION_2: {
		struct uac_format_type_i_ext_descriptor *fmt = _fmt;
		sample_width = fmt->bBitResolution;
		sample_bytes = fmt->bSubslotSize;

		/*
		 * FIXME
		 * USB audio class v2 devices specify a bitmap of possible
		 * audio formats rather than one fix value. For now, we just
		 * pick one of them and report that as the only possible
		 * value for this setting.
		 * The bit allocation map is in fact compatible to the
		 * wFormatTag of the v1 AS streaming descriptors, which is why
		 * we can simply map the matrix.
		 */

		for (i = 0; i < 5; i++)
			if (format & (1UL << i)) {
				format = i + 1;
				break;
			}

		break;
	}

	default:
		return -EINVAL;
	}
L
Linus Torvalds 已提交
2470 2471 2472

	/* FIXME: correct endianess and sign? */
	pcm_format = -1;
2473

L
Linus Torvalds 已提交
2474
	switch (format) {
2475
	case UAC_FORMAT_TYPE_I_UNDEFINED: /* some devices don't define this correctly... */
L
Linus Torvalds 已提交
2476
		snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n",
2477
			    chip->dev->devnum, fp->iface, fp->altsetting);
L
Linus Torvalds 已提交
2478
		/* fall-through */
2479
	case UAC_FORMAT_TYPE_I_PCM:
L
Linus Torvalds 已提交
2480 2481
		if (sample_width > sample_bytes * 8) {
			snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n",
2482
				   chip->dev->devnum, fp->iface, fp->altsetting,
L
Linus Torvalds 已提交
2483 2484 2485
				   sample_width, sample_bytes);
		}
		/* check the format byte size */
2486
		printk(" XXXXX SAMPLE BYTES %d\n", sample_bytes);
2487
		switch (sample_bytes) {
L
Linus Torvalds 已提交
2488 2489 2490 2491
		case 1:
			pcm_format = SNDRV_PCM_FORMAT_S8;
			break;
		case 2:
2492
			if (is_big_endian_format(chip, fp))
L
Linus Torvalds 已提交
2493 2494 2495 2496 2497
				pcm_format = SNDRV_PCM_FORMAT_S16_BE; /* grrr, big endian!! */
			else
				pcm_format = SNDRV_PCM_FORMAT_S16_LE;
			break;
		case 3:
2498
			if (is_big_endian_format(chip, fp))
L
Linus Torvalds 已提交
2499 2500 2501 2502 2503 2504 2505 2506 2507
				pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */
			else
				pcm_format = SNDRV_PCM_FORMAT_S24_3LE;
			break;
		case 4:
			pcm_format = SNDRV_PCM_FORMAT_S32_LE;
			break;
		default:
			snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n",
2508 2509
				   chip->dev->devnum, fp->iface, fp->altsetting,
				   sample_width, sample_bytes);
L
Linus Torvalds 已提交
2510 2511 2512
			break;
		}
		break;
2513
	case UAC_FORMAT_TYPE_I_PCM8:
2514 2515 2516 2517
		pcm_format = SNDRV_PCM_FORMAT_U8;

		/* Dallas DS4201 workaround: it advertises U8 format, but really
		   supports S8. */
2518
		if (chip->usb_id == USB_ID(0x04fa, 0x4201))
L
Linus Torvalds 已提交
2519 2520
			pcm_format = SNDRV_PCM_FORMAT_S8;
		break;
2521
	case UAC_FORMAT_TYPE_I_IEEE_FLOAT:
L
Linus Torvalds 已提交
2522 2523
		pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE;
		break;
2524
	case UAC_FORMAT_TYPE_I_ALAW:
L
Linus Torvalds 已提交
2525 2526
		pcm_format = SNDRV_PCM_FORMAT_A_LAW;
		break;
2527
	case UAC_FORMAT_TYPE_I_MULAW:
L
Linus Torvalds 已提交
2528 2529 2530 2531
		pcm_format = SNDRV_PCM_FORMAT_MU_LAW;
		break;
	default:
		snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n",
2532
			   chip->dev->devnum, fp->iface, fp->altsetting, format);
L
Linus Torvalds 已提交
2533 2534 2535 2536 2537 2538 2539 2540
		break;
	}
	return pcm_format;
}


/*
 * parse the format descriptor and stores the possible sample rates
2541
 * on the audioformat table (audio class v1).
L
Linus Torvalds 已提交
2542 2543 2544 2545 2546 2547 2548
 *
 * @dev: usb device
 * @fp: audioformat record
 * @fmt: the format descriptor
 * @offset: the start offset of descriptor pointing the rate type
 *          (7 for type I and II, 8 for type II)
 */
2549 2550
static int parse_audio_format_rates_v1(struct snd_usb_audio *chip, struct audioformat *fp,
				       unsigned char *fmt, int offset)
L
Linus Torvalds 已提交
2551 2552
{
	int nr_rates = fmt[offset];
2553

L
Linus Torvalds 已提交
2554
	if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) {
2555
		snd_printk(KERN_ERR "%d:%u:%d : invalid UAC_FORMAT_TYPE desc\n",
2556
				   chip->dev->devnum, fp->iface, fp->altsetting);
L
Linus Torvalds 已提交
2557 2558 2559 2560 2561 2562 2563
		return -1;
	}

	if (nr_rates) {
		/*
		 * build the rate table and bitmap flags
		 */
2564 2565
		int r, idx;

L
Linus Torvalds 已提交
2566 2567 2568 2569 2570 2571
		fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
		if (fp->rate_table == NULL) {
			snd_printk(KERN_ERR "cannot malloc\n");
			return -1;
		}

2572 2573
		fp->nr_rates = 0;
		fp->rate_min = fp->rate_max = 0;
L
Linus Torvalds 已提交
2574
		for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) {
2575
			unsigned int rate = combine_triple(&fmt[idx]);
2576 2577
			if (!rate)
				continue;
2578 2579
			/* C-Media CM6501 mislabels its 96 kHz altsetting */
			if (rate == 48000 && nr_rates == 1 &&
2580 2581
			    (chip->usb_id == USB_ID(0x0d8c, 0x0201) ||
			     chip->usb_id == USB_ID(0x0d8c, 0x0102)) &&
2582 2583
			    fp->altsetting == 5 && fp->maxpacksize == 392)
				rate = 96000;
2584 2585 2586
			/* Creative VF0470 Live Cam reports 16 kHz instead of 8kHz */
			if (rate == 16000 && chip->usb_id == USB_ID(0x041e, 0x4068))
				rate = 8000;
2587 2588
			fp->rate_table[fp->nr_rates] = rate;
			if (!fp->rate_min || rate < fp->rate_min)
L
Linus Torvalds 已提交
2589
				fp->rate_min = rate;
2590
			if (!fp->rate_max || rate > fp->rate_max)
L
Linus Torvalds 已提交
2591
				fp->rate_max = rate;
2592
			fp->rates |= snd_pcm_rate_to_rate_bit(rate);
2593
			fp->nr_rates++;
L
Linus Torvalds 已提交
2594
		}
2595
		if (!fp->nr_rates) {
2596 2597 2598
			hwc_debug("All rates were zero. Skipping format!\n");
			return -1;
		}
L
Linus Torvalds 已提交
2599 2600 2601 2602 2603 2604 2605 2606 2607
	} else {
		/* continuous rates */
		fp->rates = SNDRV_PCM_RATE_CONTINUOUS;
		fp->rate_min = combine_triple(&fmt[offset + 1]);
		fp->rate_max = combine_triple(&fmt[offset + 4]);
	}
	return 0;
}

2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620
/*
 * parse the format descriptor and stores the possible sample rates
 * on the audioformat table (audio class v2).
 */
static int parse_audio_format_rates_v2(struct snd_usb_audio *chip,
				       struct audioformat *fp,
				       struct usb_host_interface *iface)
{
	struct usb_device *dev = chip->dev;
	unsigned char tmp[2], *data;
	int i, nr_rates, data_size, ret = 0;

	/* get the number of sample rates first by only fetching 2 bytes */
2621
	ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_RANGE,
2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638
			       USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
			       0x0100, chip->clock_id << 8, tmp, sizeof(tmp), 1000);

	if (ret < 0) {
		snd_printk(KERN_ERR "unable to retrieve number of sample rates\n");
		goto err;
	}

	nr_rates = (tmp[1] << 8) | tmp[0];
	data_size = 2 + 12 * nr_rates;
	data = kzalloc(data_size, GFP_KERNEL);
	if (!data) {
		ret = -ENOMEM;
		goto err;
	}

	/* now get the full information */
2639
	ret = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_RANGE,
2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675
			       USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
			       0x0100, chip->clock_id << 8, data, data_size, 1000);

	if (ret < 0) {
		snd_printk(KERN_ERR "unable to retrieve sample rate range\n");
		ret = -EINVAL;
		goto err_free;
	}

	fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
	if (!fp->rate_table) {
		ret = -ENOMEM;
		goto err_free;
	}

	fp->nr_rates = 0;
	fp->rate_min = fp->rate_max = 0;

	for (i = 0; i < nr_rates; i++) {
		int rate = combine_quad(&data[2 + 12 * i]);

		fp->rate_table[fp->nr_rates] = rate;
		if (!fp->rate_min || rate < fp->rate_min)
			fp->rate_min = rate;
		if (!fp->rate_max || rate > fp->rate_max)
			fp->rate_max = rate;
		fp->rates |= snd_pcm_rate_to_rate_bit(rate);
		fp->nr_rates++;
	}

err_free:
	kfree(data);
err:
	return ret;
}

L
Linus Torvalds 已提交
2676 2677 2678
/*
 * parse the format type I and III descriptors
 */
2679 2680 2681 2682
static int parse_audio_format_i(struct snd_usb_audio *chip,
				struct audioformat *fp,
				int format, void *_fmt,
				struct usb_host_interface *iface)
L
Linus Torvalds 已提交
2683
{
2684 2685 2686 2687
	struct usb_interface_descriptor *altsd = get_iface_desc(iface);
	struct uac_format_type_i_discrete_descriptor *fmt = _fmt;
	int protocol = altsd->bInterfaceProtocol;
	int pcm_format, ret;
L
Linus Torvalds 已提交
2688

2689
	if (fmt->bFormatType == UAC_FORMAT_TYPE_III) {
L
Linus Torvalds 已提交
2690 2691 2692 2693
		/* FIXME: the format type is really IECxxx
		 *        but we give normal PCM format to get the existing
		 *        apps working...
		 */
2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705
		switch (chip->usb_id) {

		case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
			if (device_setup[chip->index] == 0x00 && 
			    fp->altsetting == 6)
				pcm_format = SNDRV_PCM_FORMAT_S16_BE;
			else
				pcm_format = SNDRV_PCM_FORMAT_S16_LE;
			break;
		default:
			pcm_format = SNDRV_PCM_FORMAT_S16_LE;
		}
L
Linus Torvalds 已提交
2706
	} else {
2707
		pcm_format = parse_audio_format_i_type(chip, fp, format, fmt, protocol);
L
Linus Torvalds 已提交
2708 2709 2710
		if (pcm_format < 0)
			return -1;
	}
2711

L
Linus Torvalds 已提交
2712
	fp->format = pcm_format;
2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728

	/* gather possible sample rates */
	/* audio class v1 reports possible sample rates as part of the
	 * proprietary class specific descriptor.
	 * audio class v2 uses class specific EP0 range requests for that.
	 */
	switch (protocol) {
	case UAC_VERSION_1:
		fp->channels = fmt->bNrChannels;
		ret = parse_audio_format_rates_v1(chip, fp, _fmt, 7);
		break;
	case UAC_VERSION_2:
		/* fp->channels is already set in this case */
		ret = parse_audio_format_rates_v2(chip, fp, iface);
		break;
	}
2729

L
Linus Torvalds 已提交
2730 2731
	if (fp->channels < 1) {
		snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n",
2732
			   chip->dev->devnum, fp->iface, fp->altsetting, fp->channels);
L
Linus Torvalds 已提交
2733 2734
		return -1;
	}
2735 2736

	return ret;
L
Linus Torvalds 已提交
2737 2738 2739
}

/*
2740
 * parse the format type II descriptor
L
Linus Torvalds 已提交
2741
 */
2742 2743 2744 2745
static int parse_audio_format_ii(struct snd_usb_audio *chip,
				 struct audioformat *fp,
				 int format, void *_fmt,
				 struct usb_host_interface *iface)
L
Linus Torvalds 已提交
2746
{
2747 2748 2749
	int brate, framesize, ret;
	struct usb_interface_descriptor *altsd = get_iface_desc(iface);
	int protocol = altsd->bInterfaceProtocol;
2750

L
Linus Torvalds 已提交
2751
	switch (format) {
2752
	case UAC_FORMAT_TYPE_II_AC3:
L
Linus Torvalds 已提交
2753 2754 2755 2756
		/* FIXME: there is no AC3 format defined yet */
		// fp->format = SNDRV_PCM_FORMAT_AC3;
		fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */
		break;
2757
	case UAC_FORMAT_TYPE_II_MPEG:
L
Linus Torvalds 已提交
2758 2759 2760
		fp->format = SNDRV_PCM_FORMAT_MPEG;
		break;
	default:
2761
		snd_printd(KERN_INFO "%d:%u:%d : unknown format tag %#x is detected.  processed as MPEG.\n",
2762
			   chip->dev->devnum, fp->iface, fp->altsetting, format);
L
Linus Torvalds 已提交
2763 2764 2765
		fp->format = SNDRV_PCM_FORMAT_MPEG;
		break;
	}
2766

L
Linus Torvalds 已提交
2767
	fp->channels = 1;
2768

2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790
	switch (protocol) {
	case UAC_VERSION_1: {
		struct uac_format_type_ii_discrete_descriptor *fmt = _fmt;
		brate = le16_to_cpu(fmt->wMaxBitRate);
		framesize = le16_to_cpu(fmt->wSamplesPerFrame);
		snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
		fp->frame_size = framesize;
		ret = parse_audio_format_rates_v1(chip, fp, _fmt, 8); /* fmt[8..] sample rates */
		break;
	}
	case UAC_VERSION_2: {
		struct uac_format_type_ii_ext_descriptor *fmt = _fmt;
		brate = le16_to_cpu(fmt->wMaxBitRate);
		framesize = le16_to_cpu(fmt->wSamplesPerFrame);
		snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize);
		fp->frame_size = framesize;
		ret = parse_audio_format_rates_v2(chip, fp, iface);
		break;
	}
	}

	return ret;
L
Linus Torvalds 已提交
2791 2792
}

2793
static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp,
2794 2795
			      int format, unsigned char *fmt, int stream,
			      struct usb_host_interface *iface)
L
Linus Torvalds 已提交
2796 2797 2798
{
	int err;

2799
	switch (fmt[3]) {
2800 2801
	case UAC_FORMAT_TYPE_I:
	case UAC_FORMAT_TYPE_III:
2802
		err = parse_audio_format_i(chip, fp, format, fmt, iface);
L
Linus Torvalds 已提交
2803
		break;
2804
	case UAC_FORMAT_TYPE_II:
2805
		err = parse_audio_format_ii(chip, fp, format, fmt, iface);
L
Linus Torvalds 已提交
2806 2807 2808
		break;
	default:
		snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n",
2809
			   chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]);
L
Linus Torvalds 已提交
2810 2811
		return -1;
	}
2812
	fp->fmt_type = fmt[3];
L
Linus Torvalds 已提交
2813 2814 2815
	if (err < 0)
		return err;
#if 1
2816
	/* FIXME: temporary hack for extigy/audigy 2 nx/zs */
L
Linus Torvalds 已提交
2817 2818 2819
	/* extigy apparently supports sample rates other than 48k
	 * but not in ordinary way.  so we enable only 48k atm.
	 */
2820
	if (chip->usb_id == USB_ID(0x041e, 0x3000) ||
2821 2822
	    chip->usb_id == USB_ID(0x041e, 0x3020) ||
	    chip->usb_id == USB_ID(0x041e, 0x3061)) {
2823
		if (fmt[3] == UAC_FORMAT_TYPE_I &&
2824 2825
		    fp->rates != SNDRV_PCM_RATE_48000 &&
		    fp->rates != SNDRV_PCM_RATE_96000)
2826
			return -1;
L
Linus Torvalds 已提交
2827 2828 2829 2830 2831
	}
#endif
	return 0;
}

2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842
static unsigned char parse_datainterval(struct snd_usb_audio *chip,
					struct usb_host_interface *alts)
{
	if (snd_usb_get_speed(chip->dev) == USB_SPEED_HIGH &&
	    get_endpoint(alts, 0)->bInterval >= 1 &&
	    get_endpoint(alts, 0)->bInterval <= 4)
		return get_endpoint(alts, 0)->bInterval - 1;
	else
		return 0;
}

2843 2844
static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
					 int iface, int altno);
2845
static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
L
Linus Torvalds 已提交
2846 2847 2848 2849 2850 2851
{
	struct usb_device *dev;
	struct usb_interface *iface;
	struct usb_host_interface *alts;
	struct usb_interface_descriptor *altsd;
	int i, altno, err, stream;
2852
	int format = 0, num_channels = 0;
2853
	struct audioformat *fp = NULL;
L
Linus Torvalds 已提交
2854
	unsigned char *fmt, *csep;
2855
	int num, protocol;
L
Linus Torvalds 已提交
2856 2857 2858 2859 2860

	dev = chip->dev;

	/* parse the interface's altsettings */
	iface = usb_ifnum_to_if(dev, iface_no);
2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871

	num = iface->num_altsetting;

	/*
	 * Dallas DS4201 workaround: It presents 5 altsettings, but the last
	 * one misses syncpipe, and does not produce any sound.
	 */
	if (chip->usb_id == USB_ID(0x04fa, 0x4201))
		num = 4;

	for (i = 0; i < num; i++) {
L
Linus Torvalds 已提交
2872 2873
		alts = &iface->altsetting[i];
		altsd = get_iface_desc(alts);
2874
		protocol = altsd->bInterfaceProtocol;
L
Linus Torvalds 已提交
2875 2876 2877
		/* skip invalid one */
		if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
		     altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
2878
		    (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING &&
L
Linus Torvalds 已提交
2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890
		     altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) ||
		    altsd->bNumEndpoints < 1 ||
		    le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0)
			continue;
		/* must be isochronous */
		if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
		    USB_ENDPOINT_XFER_ISOC)
			continue;
		/* check direction */
		stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ?
			SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
		altno = altsd->bAlternateSetting;
2891
	
2892 2893 2894 2895 2896
		/* audiophile usb: skip altsets incompatible with device_setup
		 */
		if (chip->usb_id == USB_ID(0x0763, 0x2003) && 
		    audiophile_skip_setting_quirk(chip, iface_no, altno))
			continue;
L
Linus Torvalds 已提交
2897 2898

		/* get audio formats */
2899 2900 2901
		switch (protocol) {
		case UAC_VERSION_1: {
			struct uac_as_header_descriptor_v1 *as =
2902
				snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, UAC_AS_GENERAL);
2903 2904

			if (!as) {
2905
				snd_printk(KERN_ERR "%d:%u:%d : UAC_AS_GENERAL descriptor not found\n",
2906 2907 2908
					   dev->devnum, iface_no, altno);
				continue;
			}
2909

2910
			if (as->bLength < sizeof(*as)) {
2911
				snd_printk(KERN_ERR "%d:%u:%d : invalid UAC_AS_GENERAL desc\n",
2912 2913 2914 2915 2916 2917
					   dev->devnum, iface_no, altno);
				continue;
			}

			format = le16_to_cpu(as->wFormatTag); /* remember the format value */
			break;
L
Linus Torvalds 已提交
2918 2919
		}

2920 2921
		case UAC_VERSION_2: {
			struct uac_as_header_descriptor_v2 *as =
2922
				snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, UAC_AS_GENERAL);
2923 2924

			if (!as) {
2925
				snd_printk(KERN_ERR "%d:%u:%d : UAC_AS_GENERAL descriptor not found\n",
2926 2927 2928 2929 2930
					   dev->devnum, iface_no, altno);
				continue;
			}

			if (as->bLength < sizeof(*as)) {
2931
				snd_printk(KERN_ERR "%d:%u:%d : invalid UAC_AS_GENERAL desc\n",
2932 2933 2934 2935 2936 2937 2938 2939
					   dev->devnum, iface_no, altno);
				continue;
			}

			num_channels = as->bNrChannels;
			format = le32_to_cpu(as->bmFormats);

			break;
L
Linus Torvalds 已提交
2940 2941
		}

2942 2943 2944 2945 2946
		default:
			snd_printk(KERN_ERR "%d:%u:%d : unknown interface protocol %04x\n",
				   dev->devnum, iface_no, altno, protocol);
			continue;
		}
L
Linus Torvalds 已提交
2947 2948

		/* get format type */
2949
		fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, UAC_FORMAT_TYPE);
L
Linus Torvalds 已提交
2950
		if (!fmt) {
2951
			snd_printk(KERN_ERR "%d:%u:%d : no UAC_FORMAT_TYPE desc\n",
L
Linus Torvalds 已提交
2952 2953 2954
				   dev->devnum, iface_no, altno);
			continue;
		}
2955 2956
		if (((protocol == UAC_VERSION_1) && (fmt[0] < 8)) ||
		    ((protocol == UAC_VERSION_2) && (fmt[0] != 6))) {
2957
			snd_printk(KERN_ERR "%d:%u:%d : invalid UAC_FORMAT_TYPE desc\n",
L
Linus Torvalds 已提交
2958 2959 2960 2961
				   dev->devnum, iface_no, altno);
			continue;
		}

2962 2963 2964 2965 2966 2967 2968 2969
		/*
		 * Blue Microphones workaround: The last altsetting is identical
		 * with the previous one, except for a larger packet size, but
		 * is actually a mislabeled two-channel setting; ignore it.
		 */
		if (fmt[4] == 1 && fmt[5] == 2 && altno == 2 && num == 3 &&
		    fp && fp->altsetting == 1 && fp->channels == 1 &&
		    fp->format == SNDRV_PCM_FORMAT_S16_LE &&
2970
		    protocol == UAC_VERSION_1 &&
2971 2972 2973 2974
		    le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) ==
							fp->maxpacksize * 2)
			continue;

L
Linus Torvalds 已提交
2975 2976 2977 2978
		csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT);
		/* Creamware Noah has this descriptor after the 2nd endpoint */
		if (!csep && altsd->bNumEndpoints >= 2)
			csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT);
2979
		if (!csep || csep[0] < 7 || csep[2] != UAC_EP_GENERAL) {
T
Takashi Iwai 已提交
2980
			snd_printk(KERN_WARNING "%d:%u:%d : no or invalid"
2981
				   " class specific endpoint descriptor\n",
L
Linus Torvalds 已提交
2982
				   dev->devnum, iface_no, altno);
2983
			csep = NULL;
L
Linus Torvalds 已提交
2984 2985
		}

2986
		fp = kzalloc(sizeof(*fp), GFP_KERNEL);
L
Linus Torvalds 已提交
2987 2988 2989 2990 2991 2992 2993 2994 2995 2996
		if (! fp) {
			snd_printk(KERN_ERR "cannot malloc\n");
			return -ENOMEM;
		}

		fp->iface = iface_no;
		fp->altsetting = altno;
		fp->altset_idx = i;
		fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
		fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
2997
		fp->datainterval = parse_datainterval(chip, alts);
L
Linus Torvalds 已提交
2998
		fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
2999 3000
		/* num_channels is only set for v2 interfaces */
		fp->channels = num_channels;
3001 3002 3003
		if (snd_usb_get_speed(dev) == USB_SPEED_HIGH)
			fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1)
					* (fp->maxpacksize & 0x7ff);
3004
		fp->attributes = csep ? csep[3] : 0;
L
Linus Torvalds 已提交
3005 3006 3007

		/* some quirks for attributes here */

3008 3009
		switch (chip->usb_id) {
		case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */
L
Linus Torvalds 已提交
3010 3011 3012
			/* Optoplay sets the sample rate attribute although
			 * it seems not supporting it in fact.
			 */
3013
			fp->attributes &= ~UAC_EP_CS_ATTR_SAMPLE_RATE;
3014 3015 3016
			break;
		case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */
		case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
L
Linus Torvalds 已提交
3017
			/* doesn't set the sample rate attribute, but supports it */
3018
			fp->attributes |= UAC_EP_CS_ATTR_SAMPLE_RATE;
3019 3020 3021 3022
			break;
		case USB_ID(0x047f, 0x0ca1): /* plantronics headset */
		case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is
						an older model 77d:223) */
L
Linus Torvalds 已提交
3023 3024 3025 3026
		/*
		 * plantronics headset and Griffin iMic have set adaptive-in
		 * although it's really not...
		 */
3027
			fp->ep_attr &= ~USB_ENDPOINT_SYNCTYPE;
L
Linus Torvalds 已提交
3028
			if (stream == SNDRV_PCM_STREAM_PLAYBACK)
3029
				fp->ep_attr |= USB_ENDPOINT_SYNC_ADAPTIVE;
L
Linus Torvalds 已提交
3030
			else
3031
				fp->ep_attr |= USB_ENDPOINT_SYNC_SYNC;
3032
			break;
L
Linus Torvalds 已提交
3033 3034 3035
		}

		/* ok, let's parse further... */
3036
		if (parse_audio_format(chip, fp, format, fmt, stream, alts) < 0) {
L
Linus Torvalds 已提交
3037 3038 3039 3040 3041
			kfree(fp->rate_table);
			kfree(fp);
			continue;
		}

3042
		snd_printdd(KERN_INFO "%d:%u:%d: add audio endpoint %#x\n", dev->devnum, iface_no, altno, fp->endpoint);
L
Linus Torvalds 已提交
3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061
		err = add_audio_endpoint(chip, stream, fp);
		if (err < 0) {
			kfree(fp->rate_table);
			kfree(fp);
			return err;
		}
		/* try to set the interface... */
		usb_set_interface(chip->dev, iface_no, altno);
		init_usb_pitch(chip->dev, iface_no, alts, fp);
		init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max);
	}
	return 0;
}


/*
 * disconnect streams
 * called from snd_usb_audio_disconnect()
 */
3062
static void snd_usb_stream_disconnect(struct list_head *head)
L
Linus Torvalds 已提交
3063 3064
{
	int idx;
3065 3066
	struct snd_usb_stream *as;
	struct snd_usb_substream *subs;
L
Linus Torvalds 已提交
3067

3068
	as = list_entry(head, struct snd_usb_stream, list);
L
Linus Torvalds 已提交
3069 3070 3071 3072 3073 3074 3075 3076 3077
	for (idx = 0; idx < 2; idx++) {
		subs = &as->substream[idx];
		if (!subs->num_formats)
			return;
		release_substream_urbs(subs, 1);
		subs->interface = -1;
	}
}

3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100
static int snd_usb_create_stream(struct snd_usb_audio *chip, int ctrlif, int interface)
{
	struct usb_device *dev = chip->dev;
	struct usb_host_interface *alts;
	struct usb_interface_descriptor *altsd;
	struct usb_interface *iface = usb_ifnum_to_if(dev, interface);

	if (!iface) {
		snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
			   dev->devnum, ctrlif, interface);
		return -EINVAL;
	}

	if (usb_interface_claimed(iface)) {
		snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n",
						dev->devnum, ctrlif, interface);
		return -EINVAL;
	}

	alts = &iface->altsetting[0];
	altsd = get_iface_desc(alts);
	if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
	     altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
3101
	    altsd->bInterfaceSubClass == USB_SUBCLASS_MIDISTREAMING) {
3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115
		int err = snd_usbmidi_create(chip->card, iface,
					     &chip->midi_list, NULL);
		if (err < 0) {
			snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n",
						dev->devnum, ctrlif, interface);
			return -EINVAL;
		}
		usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);

		return 0;
	}

	if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
	     altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
3116
	    altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING) {
3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136
		snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n",
					dev->devnum, ctrlif, interface, altsd->bInterfaceClass);
		/* skip non-supported classes */
		return -EINVAL;
	}

	if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
		snd_printk(KERN_ERR "low speed audio streaming not supported\n");
		return -EINVAL;
	}

	if (! parse_audio_endpoints(chip, interface)) {
		usb_set_interface(dev, interface, 0); /* reset the current interface */
		usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
		return -EINVAL;
	}

	return 0;
}

L
Linus Torvalds 已提交
3137 3138 3139
/*
 * parse audio control descriptor and create pcm/midi streams
 */
3140
static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
L
Linus Torvalds 已提交
3141 3142 3143
{
	struct usb_device *dev = chip->dev;
	struct usb_host_interface *host_iface;
3144
	struct usb_interface_descriptor *altsd;
3145
	void *control_header;
3146
	int i, protocol;
L
Linus Torvalds 已提交
3147 3148 3149

	/* find audiocontrol interface */
	host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
3150 3151
	control_header = snd_usb_find_csint_desc(host_iface->extra,
						 host_iface->extralen,
3152
						 NULL, UAC_HEADER);
3153 3154
	altsd = get_iface_desc(host_iface);
	protocol = altsd->bInterfaceProtocol;
3155 3156

	if (!control_header) {
3157
		snd_printk(KERN_ERR "cannot find UAC_HEADER\n");
L
Linus Torvalds 已提交
3158 3159
		return -EINVAL;
	}
3160

3161 3162 3163
	switch (protocol) {
	case UAC_VERSION_1: {
		struct uac_ac_header_descriptor_v1 *h1 = control_header;
3164

3165 3166 3167 3168 3169 3170
		if (!h1->bInCollection) {
			snd_printk(KERN_INFO "skipping empty audio interface (v1)\n");
			return -EINVAL;
		}

		if (h1->bLength < sizeof(*h1) + h1->bInCollection) {
3171
			snd_printk(KERN_ERR "invalid UAC_HEADER (v1)\n");
3172 3173 3174 3175 3176 3177 3178
			return -EINVAL;
		}

		for (i = 0; i < h1->bInCollection; i++)
			snd_usb_create_stream(chip, ctrlif, h1->baInterfaceNr[i]);

		break;
L
Linus Torvalds 已提交
3179 3180
	}

3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196
	case UAC_VERSION_2: {
		struct uac_clock_source_descriptor *cs;
		struct usb_interface_assoc_descriptor *assoc =
			usb_ifnum_to_if(dev, ctrlif)->intf_assoc;

		if (!assoc) {
			snd_printk(KERN_ERR "Audio class v2 interfaces need an interface association\n");
			return -EINVAL;
		}

		/* FIXME: for now, we expect there is at least one clock source
		 * descriptor and we always take the first one.
		 * We should properly support devices with multiple clock sources,
		 * clock selectors and sample rate conversion units. */

		cs = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen,
3197
						NULL, UAC_CLOCK_SOURCE);
3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213

		if (!cs) {
			snd_printk(KERN_ERR "CLOCK_SOURCE descriptor not found\n");
			return -EINVAL;
		}

		chip->clock_id = cs->bClockID;

		for (i = 0; i < assoc->bInterfaceCount; i++) {
			int intf = assoc->bFirstInterface + i;

			if (intf != ctrlif)
				snd_usb_create_stream(chip, ctrlif, intf);
		}

		break;
L
Linus Torvalds 已提交
3214 3215
	}

3216 3217 3218 3219
	default:
		snd_printk(KERN_ERR "unknown protocol version 0x%02x\n", protocol);
		return -EINVAL;
	}
3220

L
Linus Torvalds 已提交
3221 3222 3223 3224 3225 3226
	return 0;
}

/*
 * create a stream for an endpoint/altsetting without proper descriptors
 */
3227
static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
L
Linus Torvalds 已提交
3228
				     struct usb_interface *iface,
3229
				     const struct snd_usb_audio_quirk *quirk)
L
Linus Torvalds 已提交
3230 3231 3232 3233
{
	struct audioformat *fp;
	struct usb_host_interface *alts;
	int stream, err;
A
Al Viro 已提交
3234
	unsigned *rate_table = NULL;
L
Linus Torvalds 已提交
3235

A
Alexey Dobriyan 已提交
3236
	fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
L
Linus Torvalds 已提交
3237
	if (! fp) {
A
Alexey Dobriyan 已提交
3238
		snd_printk(KERN_ERR "cannot memdup\n");
L
Linus Torvalds 已提交
3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265
		return -ENOMEM;
	}
	if (fp->nr_rates > 0) {
		rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL);
		if (!rate_table) {
			kfree(fp);
			return -ENOMEM;
		}
		memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates);
		fp->rate_table = rate_table;
	}

	stream = (fp->endpoint & USB_DIR_IN)
		? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
	err = add_audio_endpoint(chip, stream, fp);
	if (err < 0) {
		kfree(fp);
		kfree(rate_table);
		return err;
	}
	if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
	    fp->altset_idx >= iface->num_altsetting) {
		kfree(fp);
		kfree(rate_table);
		return -EINVAL;
	}
	alts = &iface->altsetting[fp->altset_idx];
3266
	fp->datainterval = parse_datainterval(chip, alts);
3267
	fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
L
Linus Torvalds 已提交
3268 3269 3270 3271 3272 3273 3274 3275 3276
	usb_set_interface(chip->dev, fp->iface, 0);
	init_usb_pitch(chip->dev, fp->iface, alts, fp);
	init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max);
	return 0;
}

/*
 * create a stream for an interface with proper descriptors
 */
3277
static int create_standard_audio_quirk(struct snd_usb_audio *chip,
3278
				       struct usb_interface *iface,
3279
				       const struct snd_usb_audio_quirk *quirk)
L
Linus Torvalds 已提交
3280 3281 3282 3283 3284 3285 3286
{
	struct usb_host_interface *alts;
	struct usb_interface_descriptor *altsd;
	int err;

	alts = &iface->altsetting[0];
	altsd = get_iface_desc(alts);
3287
	err = parse_audio_endpoints(chip, altsd->bInterfaceNumber);
L
Linus Torvalds 已提交
3288 3289 3290 3291 3292
	if (err < 0) {
		snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
			   altsd->bInterfaceNumber, err);
		return err;
	}
3293 3294
	/* reset the current interface */
	usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
L
Linus Torvalds 已提交
3295 3296 3297 3298
	return 0;
}

/*
3299 3300
 * Create a stream for an Edirol UA-700/UA-25/UA-4FX interface.  
 * The only way to detect the sample rate is by looking at wMaxPacketSize.
L
Linus Torvalds 已提交
3301
 */
3302 3303 3304
static int create_uaxx_quirk(struct snd_usb_audio *chip,
			      struct usb_interface *iface,
			      const struct snd_usb_audio_quirk *quirk)
L
Linus Torvalds 已提交
3305 3306 3307 3308
{
	static const struct audioformat ua_format = {
		.format = SNDRV_PCM_FORMAT_S24_3LE,
		.channels = 2,
3309
		.fmt_type = UAC_FORMAT_TYPE_I,
L
Linus Torvalds 已提交
3310 3311 3312 3313 3314 3315 3316 3317 3318
		.altsetting = 1,
		.altset_idx = 1,
		.rates = SNDRV_PCM_RATE_CONTINUOUS,
	};
	struct usb_host_interface *alts;
	struct usb_interface_descriptor *altsd;
	struct audioformat *fp;
	int stream, err;

3319 3320
	/* both PCM and MIDI interfaces have 2 or more altsettings */
	if (iface->num_altsetting < 2)
L
Linus Torvalds 已提交
3321 3322 3323 3324
		return -ENXIO;
	alts = &iface->altsetting[1];
	altsd = get_iface_desc(alts);

3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341
	if (altsd->bNumEndpoints == 2) {
		static const struct snd_usb_midi_endpoint_info ua700_ep = {
			.out_cables = 0x0003,
			.in_cables  = 0x0003
		};
		static const struct snd_usb_audio_quirk ua700_quirk = {
			.type = QUIRK_MIDI_FIXED_ENDPOINT,
			.data = &ua700_ep
		};
		static const struct snd_usb_midi_endpoint_info uaxx_ep = {
			.out_cables = 0x0001,
			.in_cables  = 0x0001
		};
		static const struct snd_usb_audio_quirk uaxx_quirk = {
			.type = QUIRK_MIDI_FIXED_ENDPOINT,
			.data = &uaxx_ep
		};
3342 3343 3344 3345 3346
		const struct snd_usb_audio_quirk *quirk =
			chip->usb_id == USB_ID(0x0582, 0x002b)
			? &ua700_quirk : &uaxx_quirk;
		return snd_usbmidi_create(chip->card, iface,
					  &chip->midi_list, quirk);
3347 3348
	}

L
Linus Torvalds 已提交
3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359
	if (altsd->bNumEndpoints != 1)
		return -ENXIO;

	fp = kmalloc(sizeof(*fp), GFP_KERNEL);
	if (!fp)
		return -ENOMEM;
	memcpy(fp, &ua_format, sizeof(*fp));

	fp->iface = altsd->bInterfaceNumber;
	fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
	fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
3360
	fp->datainterval = 0;
L
Linus Torvalds 已提交
3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391
	fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);

	switch (fp->maxpacksize) {
	case 0x120:
		fp->rate_max = fp->rate_min = 44100;
		break;
	case 0x138:
	case 0x140:
		fp->rate_max = fp->rate_min = 48000;
		break;
	case 0x258:
	case 0x260:
		fp->rate_max = fp->rate_min = 96000;
		break;
	default:
		snd_printk(KERN_ERR "unknown sample rate\n");
		kfree(fp);
		return -ENXIO;
	}

	stream = (fp->endpoint & USB_DIR_IN)
		? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
	err = add_audio_endpoint(chip, stream, fp);
	if (err < 0) {
		kfree(fp);
		return err;
	}
	usb_set_interface(chip->dev, fp->iface, 0);
	return 0;
}

3392
static int snd_usb_create_quirk(struct snd_usb_audio *chip,
L
Linus Torvalds 已提交
3393
				struct usb_interface *iface,
3394
				const struct snd_usb_audio_quirk *quirk);
L
Linus Torvalds 已提交
3395 3396 3397 3398

/*
 * handle the quirks for the contained interfaces
 */
3399
static int create_composite_quirk(struct snd_usb_audio *chip,
L
Linus Torvalds 已提交
3400
				  struct usb_interface *iface,
3401
				  const struct snd_usb_audio_quirk *quirk)
L
Linus Torvalds 已提交
3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421
{
	int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
	int err;

	for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
		iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
		if (!iface)
			continue;
		if (quirk->ifnum != probed_ifnum &&
		    usb_interface_claimed(iface))
			continue;
		err = snd_usb_create_quirk(chip, iface, quirk);
		if (err < 0)
			return err;
		if (quirk->ifnum != probed_ifnum)
			usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
	}
	return 0;
}

3422
static int ignore_interface_quirk(struct snd_usb_audio *chip,
3423
				  struct usb_interface *iface,
3424
				  const struct snd_usb_audio_quirk *quirk)
3425 3426 3427 3428
{
	return 0;
}

3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440
/*
 * Allow alignment on audio sub-slot (channel samples) rather than
 * on audio slots (audio frames)
 */
static int create_align_transfer_quirk(struct snd_usb_audio *chip,
				  struct usb_interface *iface,
				  const struct snd_usb_audio_quirk *quirk)
{
	chip->txfr_quirk = 1;
	return 1;	/* Continue with creating streams and mixer */
}

L
Linus Torvalds 已提交
3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473

/*
 * boot quirks
 */

#define EXTIGY_FIRMWARE_SIZE_OLD 794
#define EXTIGY_FIRMWARE_SIZE_NEW 483

static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
{
	struct usb_host_config *config = dev->actconfig;
	int err;

	if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
	    le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
		snd_printdd("sending Extigy boot sequence...\n");
		/* Send message to force it to reconnect with full interface. */
		err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
				      0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000);
		if (err < 0) snd_printdd("error sending boot message: %d\n", err);
		err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
				&dev->descriptor, sizeof(dev->descriptor));
		config = dev->actconfig;
		if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
		err = usb_reset_configuration(dev);
		if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
		snd_printdd("extigy_boot: new boot length = %d\n",
			    le16_to_cpu(get_cfg_desc(config)->wTotalLength));
		return -ENODEV; /* quit this anyway */
	}
	return 0;
}

3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489
static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
{
	u8 buf = 1;

	snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
			USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
			0, 0, &buf, 1, 1000);
	if (buf == 0) {
		snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
				USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
				1, 2000, NULL, 0, 1000);
		return -ENODEV;
	}
	return 0;
}

3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514
/*
 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
 * documented in the device's data sheet.
 */
static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value)
{
	u8 buf[4];
	buf[0] = 0x20;
	buf[1] = value & 0xff;
	buf[2] = (value >> 8) & 0xff;
	buf[3] = reg;
	return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION,
			       USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT,
			       0, 0, &buf, 4, 1000);
}

static int snd_usb_cm106_boot_quirk(struct usb_device *dev)
{
	/*
	 * Enable line-out driver mode, set headphone source to front
	 * channels, enable stereo mic.
	 */
	return snd_usb_cm106_write_int_reg(dev, 2, 0x8004);
}

3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533
/*
 * C-Media CM6206 is based on CM106 with two additional
 * registers that are not documented in the data sheet.
 * Values here are chosen based on sniffing USB traffic
 * under Windows.
 */
static int snd_usb_cm6206_boot_quirk(struct usb_device *dev)
{
	int err, reg;
	int val[] = {0x200c, 0x3000, 0xf800, 0x143f, 0x0000, 0x3000};

	for (reg = 0; reg < ARRAY_SIZE(val); reg++) {
		err = snd_usb_cm106_write_int_reg(dev, reg, val[reg]);
		if (err < 0)
			return err;
	}

	return err;
}
3534

3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560
/*
 * This call will put the synth in "USB send" mode, i.e it will send MIDI
 * messages through USB (this is disabled at startup). The synth will
 * acknowledge by sending a sysex on endpoint 0x85 and by displaying a USB
 * sign on its LCD. Values here are chosen based on sniffing USB traffic
 * under Windows.
 */
static int snd_usb_accessmusic_boot_quirk(struct usb_device *dev)
{
	int err, actual_length;

	/* "midi send" enable */
	static const u8 seq[] = { 0x4e, 0x73, 0x52, 0x01 };

	void *buf = kmemdup(seq, ARRAY_SIZE(seq), GFP_KERNEL);
	if (!buf)
		return -ENOMEM;
	err = usb_interrupt_msg(dev, usb_sndintpipe(dev, 0x05), buf,
			ARRAY_SIZE(seq), &actual_length, 1000);
	kfree(buf);
	if (err < 0)
		return err;

	return 0;
}

3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577
/*
 * Setup quirks
 */
#define AUDIOPHILE_SET			0x01 /* if set, parse device_setup */
#define AUDIOPHILE_SET_DTS              0x02 /* if set, enable DTS Digital Output */
#define AUDIOPHILE_SET_96K              0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
#define AUDIOPHILE_SET_24B		0x08 /* 24bits sample if set, 16bits otherwise */
#define AUDIOPHILE_SET_DI		0x10 /* if set, enable Digital Input */
#define AUDIOPHILE_SET_MASK		0x1F /* bit mask for setup value */
#define AUDIOPHILE_SET_24B_48K_DI	0x19 /* value for 24bits+48KHz+Digital Input */
#define AUDIOPHILE_SET_24B_48K_NOTDI	0x09 /* value for 24bits+48KHz+No Digital Input */
#define AUDIOPHILE_SET_16B_48K_DI	0x11 /* value for 16bits+48KHz+Digital Input */
#define AUDIOPHILE_SET_16B_48K_NOTDI	0x01 /* value for 16bits+48KHz+No Digital Input */

static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
					 int iface, int altno)
{
3578 3579 3580 3581 3582
	/* Reset ALL ifaces to 0 altsetting.
	 * Call it for every possible altsetting of every interface.
	 */
	usb_set_interface(chip->dev, iface, 0);

3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604
	if (device_setup[chip->index] & AUDIOPHILE_SET) {
		if ((device_setup[chip->index] & AUDIOPHILE_SET_DTS)
		    && altno != 6)
			return 1; /* skip this altsetting */
		if ((device_setup[chip->index] & AUDIOPHILE_SET_96K)
		    && altno != 1)
			return 1; /* skip this altsetting */
		if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
		    AUDIOPHILE_SET_24B_48K_DI && altno != 2)
			return 1; /* skip this altsetting */
		if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
		    AUDIOPHILE_SET_24B_48K_NOTDI && altno != 3)
			return 1; /* skip this altsetting */
		if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
		    AUDIOPHILE_SET_16B_48K_DI && altno != 4)
			return 1; /* skip this altsetting */
		if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) ==
		    AUDIOPHILE_SET_16B_48K_NOTDI && altno != 5)
			return 1; /* skip this altsetting */
	}	
	return 0; /* keep this altsetting */
}
L
Linus Torvalds 已提交
3605

3606 3607 3608 3609 3610 3611 3612
static int create_any_midi_quirk(struct snd_usb_audio *chip,
				 struct usb_interface *intf,
				 const struct snd_usb_audio_quirk *quirk)
{
	return snd_usbmidi_create(chip->card, intf, &chip->midi_list, quirk);
}

L
Linus Torvalds 已提交
3613 3614 3615 3616 3617 3618 3619 3620
/*
 * audio-interface quirks
 *
 * returns zero if no standard audio/MIDI parsing is needed.
 * returns a postive value if standard audio/midi interfaces are parsed
 * after this.
 * returns a negative value at error.
 */
3621
static int snd_usb_create_quirk(struct snd_usb_audio *chip,
L
Linus Torvalds 已提交
3622
				struct usb_interface *iface,
3623
				const struct snd_usb_audio_quirk *quirk)
L
Linus Torvalds 已提交
3624
{
3625 3626
	typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *,
				    const struct snd_usb_audio_quirk *);
3627 3628 3629
	static const quirk_func_t quirk_funcs[] = {
		[QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
		[QUIRK_COMPOSITE] = create_composite_quirk,
3630 3631 3632 3633 3634 3635 3636 3637
		[QUIRK_MIDI_STANDARD_INTERFACE] = create_any_midi_quirk,
		[QUIRK_MIDI_FIXED_ENDPOINT] = create_any_midi_quirk,
		[QUIRK_MIDI_YAMAHA] = create_any_midi_quirk,
		[QUIRK_MIDI_MIDIMAN] = create_any_midi_quirk,
		[QUIRK_MIDI_NOVATION] = create_any_midi_quirk,
		[QUIRK_MIDI_FASTLANE] = create_any_midi_quirk,
		[QUIRK_MIDI_EMAGIC] = create_any_midi_quirk,
		[QUIRK_MIDI_CME] = create_any_midi_quirk,
3638
		[QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
3639
		[QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
3640 3641
		[QUIRK_AUDIO_EDIROL_UAXX] = create_uaxx_quirk,
		[QUIRK_AUDIO_ALIGN_TRANSFER] = create_align_transfer_quirk
3642 3643 3644 3645 3646
	};

	if (quirk->type < QUIRK_TYPE_COUNT) {
		return quirk_funcs[quirk->type](chip, iface, quirk);
	} else {
L
Linus Torvalds 已提交
3647 3648 3649 3650 3651 3652 3653 3654 3655
		snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
		return -ENXIO;
	}
}


/*
 * common proc files to show the usb device info
 */
3656
static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
3657
{
3658
	struct snd_usb_audio *chip = entry->private_data;
3659
	if (!chip->shutdown)
L
Linus Torvalds 已提交
3660 3661 3662
		snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum);
}

3663
static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
3664
{
3665
	struct snd_usb_audio *chip = entry->private_data;
3666
	if (!chip->shutdown)
L
Linus Torvalds 已提交
3667
		snd_iprintf(buffer, "%04x:%04x\n", 
3668 3669
			    USB_ID_VENDOR(chip->usb_id),
			    USB_ID_PRODUCT(chip->usb_id));
L
Linus Torvalds 已提交
3670 3671
}

3672
static void snd_usb_audio_create_proc(struct snd_usb_audio *chip)
L
Linus Torvalds 已提交
3673
{
3674
	struct snd_info_entry *entry;
3675
	if (!snd_card_proc_new(chip->card, "usbbus", &entry))
3676
		snd_info_set_text_ops(entry, chip, proc_audio_usbbus_read);
3677
	if (!snd_card_proc_new(chip->card, "usbid", &entry))
3678
		snd_info_set_text_ops(entry, chip, proc_audio_usbid_read);
L
Linus Torvalds 已提交
3679 3680 3681 3682 3683 3684 3685 3686 3687
}

/*
 * free the chip instance
 *
 * here we have to do not much, since pcm and controls are already freed
 *
 */

3688
static int snd_usb_audio_free(struct snd_usb_audio *chip)
L
Linus Torvalds 已提交
3689 3690 3691 3692 3693
{
	kfree(chip);
	return 0;
}

3694
static int snd_usb_audio_dev_free(struct snd_device *device)
L
Linus Torvalds 已提交
3695
{
3696
	struct snd_usb_audio *chip = device->device_data;
L
Linus Torvalds 已提交
3697 3698 3699 3700 3701 3702 3703 3704
	return snd_usb_audio_free(chip);
}


/*
 * create a chip instance and set its names.
 */
static int snd_usb_audio_create(struct usb_device *dev, int idx,
3705 3706
				const struct snd_usb_audio_quirk *quirk,
				struct snd_usb_audio **rchip)
L
Linus Torvalds 已提交
3707
{
3708 3709
	struct snd_card *card;
	struct snd_usb_audio *chip;
L
Linus Torvalds 已提交
3710 3711
	int err, len;
	char component[14];
3712
	static struct snd_device_ops ops = {
L
Linus Torvalds 已提交
3713 3714 3715 3716 3717
		.dev_free =	snd_usb_audio_dev_free,
	};

	*rchip = NULL;

3718 3719
	if (snd_usb_get_speed(dev) != USB_SPEED_LOW &&
	    snd_usb_get_speed(dev) != USB_SPEED_FULL &&
L
Linus Torvalds 已提交
3720 3721 3722 3723 3724
	    snd_usb_get_speed(dev) != USB_SPEED_HIGH) {
		snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
		return -ENXIO;
	}

3725 3726
	err = snd_card_create(index[idx], id[idx], THIS_MODULE, 0, &card);
	if (err < 0) {
L
Linus Torvalds 已提交
3727
		snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
3728
		return err;
L
Linus Torvalds 已提交
3729 3730
	}

3731
	chip = kzalloc(sizeof(*chip), GFP_KERNEL);
L
Linus Torvalds 已提交
3732 3733 3734 3735 3736 3737 3738 3739
	if (! chip) {
		snd_card_free(card);
		return -ENOMEM;
	}

	chip->index = idx;
	chip->dev = dev;
	chip->card = card;
3740 3741
	chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
			      le16_to_cpu(dev->descriptor.idProduct));
L
Linus Torvalds 已提交
3742 3743
	INIT_LIST_HEAD(&chip->pcm_list);
	INIT_LIST_HEAD(&chip->midi_list);
3744
	INIT_LIST_HEAD(&chip->mixer_list);
L
Linus Torvalds 已提交
3745 3746 3747 3748 3749 3750 3751 3752 3753

	if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
		snd_usb_audio_free(chip);
		snd_card_free(card);
		return err;
	}

	strcpy(card->driver, "USB-Audio");
	sprintf(component, "USB%04x:%04x",
3754
		USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
L
Linus Torvalds 已提交
3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765
	snd_component_add(card, component);

	/* retrieve the device string as shortname */
 	if (quirk && quirk->product_name) {
		strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
	} else {
		if (!dev->descriptor.iProduct ||
		    usb_string(dev, dev->descriptor.iProduct,
      			       card->shortname, sizeof(card->shortname)) <= 0) {
			/* no name available from anywhere, so use ID */
			sprintf(card->shortname, "USB Device %#04x:%#04x",
3766 3767
				USB_ID_VENDOR(chip->usb_id),
				USB_ID_PRODUCT(chip->usb_id));
L
Linus Torvalds 已提交
3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792
		}
	}

	/* retrieve the vendor and device strings as longname */
	if (quirk && quirk->vendor_name) {
		len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
	} else {
		if (dev->descriptor.iManufacturer)
			len = usb_string(dev, dev->descriptor.iManufacturer,
					 card->longname, sizeof(card->longname));
		else
			len = 0;
		/* we don't really care if there isn't any vendor string */
	}
	if (len > 0)
		strlcat(card->longname, " ", sizeof(card->longname));

	strlcat(card->longname, card->shortname, sizeof(card->longname));

	len = strlcat(card->longname, " at ", sizeof(card->longname));

	if (len < sizeof(card->longname))
		usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);

	strlcat(card->longname,
3793 3794 3795
		snd_usb_get_speed(dev) == USB_SPEED_LOW ? ", low speed" :
		snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" :
		", high speed",
L
Linus Torvalds 已提交
3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818
		sizeof(card->longname));

	snd_usb_audio_create_proc(chip);

	*rchip = chip;
	return 0;
}


/*
 * probe the active usb device
 *
 * note that this can be called multiple times per a device, when it
 * includes multiple audio control interfaces.
 *
 * thus we check the usb device pointer and creates the card instance
 * only at the first time.  the successive calls of this function will
 * append the pcm interface to the corresponding card.
 */
static void *snd_usb_audio_probe(struct usb_device *dev,
				 struct usb_interface *intf,
				 const struct usb_device_id *usb_id)
{
3819
	const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
L
Linus Torvalds 已提交
3820
	int i, err;
3821
	struct snd_usb_audio *chip;
L
Linus Torvalds 已提交
3822 3823
	struct usb_host_interface *alts;
	int ifnum;
3824
	u32 id;
L
Linus Torvalds 已提交
3825 3826 3827

	alts = &intf->altsetting[0];
	ifnum = get_iface_desc(alts)->bInterfaceNumber;
3828 3829
	id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
		    le16_to_cpu(dev->descriptor.idProduct));
L
Linus Torvalds 已提交
3830 3831 3832 3833 3834
	if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
		goto __err_val;

	/* SB Extigy needs special boot-up sequence */
	/* if more models come, this will go to the quirk list. */
3835
	if (id == USB_ID(0x041e, 0x3000)) {
L
Linus Torvalds 已提交
3836 3837 3838
		if (snd_usb_extigy_boot_quirk(dev, intf) < 0)
			goto __err_val;
	}
3839 3840 3841 3842 3843
	/* SB Audigy 2 NX needs its own boot-up magic, too */
	if (id == USB_ID(0x041e, 0x3020)) {
		if (snd_usb_audigy2nx_boot_quirk(dev) < 0)
			goto __err_val;
	}
L
Linus Torvalds 已提交
3844

3845 3846 3847 3848 3849 3850
	/* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
	if (id == USB_ID(0x10f5, 0x0200)) {
		if (snd_usb_cm106_boot_quirk(dev) < 0)
			goto __err_val;
	}

3851 3852 3853 3854 3855 3856
	/* C-Media CM6206 / CM106-Like Sound Device */
	if (id == USB_ID(0x0d8c, 0x0102)) {
		if (snd_usb_cm6206_boot_quirk(dev) < 0)
			goto __err_val;
	}

3857 3858 3859 3860 3861 3862
	/* Access Music VirusTI Desktop */
	if (id == USB_ID(0x133e, 0x0815)) {
		if (snd_usb_accessmusic_boot_quirk(dev) < 0)
			goto __err_val;
	}

L
Linus Torvalds 已提交
3863 3864 3865 3866 3867 3868
	/*
	 * found a config.  now register to ALSA
	 */

	/* check whether it's already registered */
	chip = NULL;
3869
	mutex_lock(&register_mutex);
L
Linus Torvalds 已提交
3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885
	for (i = 0; i < SNDRV_CARDS; i++) {
		if (usb_chip[i] && usb_chip[i]->dev == dev) {
			if (usb_chip[i]->shutdown) {
				snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
				goto __error;
			}
			chip = usb_chip[i];
			break;
		}
	}
	if (! chip) {
		/* it's a fresh one.
		 * now look for an empty slot and create a new card instance
		 */
		for (i = 0; i < SNDRV_CARDS; i++)
			if (enable[i] && ! usb_chip[i] &&
3886 3887
			    (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
			    (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
L
Linus Torvalds 已提交
3888 3889 3890
				if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
					goto __error;
				}
3891
				snd_card_set_dev(chip->card, &intf->dev);
L
Linus Torvalds 已提交
3892 3893
				break;
			}
3894 3895
		if (!chip) {
			printk(KERN_ERR "no available usb audio device\n");
L
Linus Torvalds 已提交
3896 3897 3898 3899
			goto __error;
		}
	}

3900
	chip->txfr_quirk = 0;
L
Linus Torvalds 已提交
3901 3902 3903 3904 3905 3906 3907 3908 3909 3910
	err = 1; /* continue */
	if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
		/* need some special handlings */
		if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0)
			goto __error;
	}

	if (err > 0) {
		/* create normal USB audio interfaces */
		if (snd_usb_create_streams(chip, ifnum) < 0 ||
3911
		    snd_usb_create_mixer(chip, ifnum, ignore_ctl_error) < 0) {
L
Linus Torvalds 已提交
3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922
			goto __error;
		}
	}

	/* we are allowed to call snd_card_register() many times */
	if (snd_card_register(chip->card) < 0) {
		goto __error;
	}

	usb_chip[chip->index] = chip;
	chip->num_interfaces++;
3923
	mutex_unlock(&register_mutex);
L
Linus Torvalds 已提交
3924 3925 3926 3927 3928
	return chip;

 __error:
	if (chip && !chip->num_interfaces)
		snd_card_free(chip->card);
3929
	mutex_unlock(&register_mutex);
L
Linus Torvalds 已提交
3930 3931 3932 3933 3934 3935 3936 3937 3938 3939
 __err_val:
	return NULL;
}

/*
 * we need to take care of counter, since disconnection can be called also
 * many times as well as usb_audio_probe().
 */
static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr)
{
3940 3941
	struct snd_usb_audio *chip;
	struct snd_card *card;
L
Linus Torvalds 已提交
3942 3943 3944 3945 3946 3947 3948
	struct list_head *p;

	if (ptr == (void *)-1L)
		return;

	chip = ptr;
	card = chip->card;
3949
	mutex_lock(&register_mutex);
L
Linus Torvalds 已提交
3950 3951 3952 3953 3954 3955
	chip->shutdown = 1;
	chip->num_interfaces--;
	if (chip->num_interfaces <= 0) {
		snd_card_disconnect(card);
		/* release the pcm resources */
		list_for_each(p, &chip->pcm_list) {
3956
			snd_usb_stream_disconnect(p);
L
Linus Torvalds 已提交
3957 3958 3959
		}
		/* release the midi resources */
		list_for_each(p, &chip->midi_list) {
3960
			snd_usbmidi_disconnect(p);
L
Linus Torvalds 已提交
3961
		}
3962 3963 3964 3965
		/* release mixer resources */
		list_for_each(p, &chip->mixer_list) {
			snd_usb_mixer_disconnect(p);
		}
3966
		usb_chip[chip->index] = NULL;
3967
		mutex_unlock(&register_mutex);
3968
		snd_card_free_when_closed(card);
L
Linus Torvalds 已提交
3969
	} else {
3970
		mutex_unlock(&register_mutex);
L
Linus Torvalds 已提交
3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982
	}
}

/*
 * new 2.5 USB kernel API
 */
static int usb_audio_probe(struct usb_interface *intf,
			   const struct usb_device_id *id)
{
	void *chip;
	chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
	if (chip) {
J
Julia Lawall 已提交
3983
		usb_set_intfdata(intf, chip);
L
Linus Torvalds 已提交
3984 3985 3986 3987 3988 3989 3990 3991
		return 0;
	} else
		return -EIO;
}

static void usb_audio_disconnect(struct usb_interface *intf)
{
	snd_usb_audio_disconnect(interface_to_usbdev(intf),
J
Julia Lawall 已提交
3992
				 usb_get_intfdata(intf));
L
Linus Torvalds 已提交
3993 3994
}

3995
#ifdef CONFIG_PM
O
Oliver Neukum 已提交
3996 3997
static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
{
J
Julia Lawall 已提交
3998
	struct snd_usb_audio *chip = usb_get_intfdata(intf);
O
Oliver Neukum 已提交
3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017
	struct list_head *p;
	struct snd_usb_stream *as;

	if (chip == (void *)-1L)
		return 0;

	snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
	if (!chip->num_suspended_intf++) {
		list_for_each(p, &chip->pcm_list) {
			as = list_entry(p, struct snd_usb_stream, list);
			snd_pcm_suspend_all(as->pcm);
		}
	}

	return 0;
}

static int usb_audio_resume(struct usb_interface *intf)
{
J
Julia Lawall 已提交
4018
	struct snd_usb_audio *chip = usb_get_intfdata(intf);
O
Oliver Neukum 已提交
4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032

	if (chip == (void *)-1L)
		return 0;
	if (--chip->num_suspended_intf)
		return 0;
	/*
	 * ALSA leaves material resumption to user space
	 * we just notify
	 */

	snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);

	return 0;
}
4033
#endif		/* CONFIG_PM */
L
Linus Torvalds 已提交
4034 4035 4036

static int __init snd_usb_audio_init(void)
{
4037
	if (nrpacks < 1 || nrpacks > MAX_PACKS) {
L
Linus Torvalds 已提交
4038 4039 4040
		printk(KERN_WARNING "invalid nrpacks value.\n");
		return -EINVAL;
	}
4041
	return usb_register(&usb_audio_driver);
L
Linus Torvalds 已提交
4042 4043 4044 4045 4046 4047 4048 4049 4050 4051
}


static void __exit snd_usb_audio_cleanup(void)
{
	usb_deregister(&usb_audio_driver);
}

module_init(snd_usb_audio_init);
module_exit(snd_usb_audio_cleanup);