audio.c 22.4 KB
Newer Older
1
/*
2
 *   Copyright (c) 2006-2008 Daniel Mack, Karsten Wiese
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 *   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
*/

19
#include <linux/spinlock.h>
20
#include <linux/slab.h>
21 22 23 24 25
#include <linux/init.h>
#include <linux/usb.h>
#include <sound/core.h>
#include <sound/pcm.h>

26 27
#include "device.h"
#include "audio.h"
28 29 30 31 32 33 34 35 36

#define N_URBS			32
#define CLOCK_DRIFT_TOLERANCE	5
#define FRAMES_PER_URB		8
#define BYTES_PER_FRAME		512
#define CHANNELS_PER_STREAM	2
#define BYTES_PER_SAMPLE	3
#define BYTES_PER_SAMPLE_USB	4
#define MAX_BUFFER_SIZE		(128*1024)
37 38
#define MAX_ENDPOINT_SIZE	512

39 40 41
#define ENDPOINT_CAPTURE	2
#define ENDPOINT_PLAYBACK	6

42 43
#define MAKE_CHECKBYTE(cdev,stream,i) \
	(stream << 1) | (~(i / (cdev->n_streams * BYTES_PER_SAMPLE_USB)) & 1)
44 45

static struct snd_pcm_hardware snd_usb_caiaq_pcm_hardware = {
46
	.info 		= (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
47 48
			   SNDRV_PCM_INFO_BLOCK_TRANSFER),
	.formats 	= SNDRV_PCM_FMTBIT_S24_3BE,
49
	.rates 		= (SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |
50 51 52 53 54 55
			   SNDRV_PCM_RATE_96000),
	.rate_min	= 44100,
	.rate_max	= 0, /* will overwrite later */
	.channels_min	= CHANNELS_PER_STREAM,
	.channels_max	= CHANNELS_PER_STREAM,
	.buffer_bytes_max = MAX_BUFFER_SIZE,
56
	.period_bytes_min = 128,
57 58 59 60 61 62
	.period_bytes_max = MAX_BUFFER_SIZE,
	.periods_min	= 1,
	.periods_max	= 1024,
};

static void
63
activate_substream(struct snd_usb_caiaqdev *cdev,
64 65
	           struct snd_pcm_substream *sub)
{
66
	spin_lock(&cdev->spinlock);
67

68
	if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK)
69
		cdev->sub_playback[sub->number] = sub;
70
	else
71
		cdev->sub_capture[sub->number] = sub;
72

73
	spin_unlock(&cdev->spinlock);
74 75
}

76
static void
77
deactivate_substream(struct snd_usb_caiaqdev *cdev,
78 79
		     struct snd_pcm_substream *sub)
{
80
	unsigned long flags;
81
	spin_lock_irqsave(&cdev->spinlock, flags);
82

83
	if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK)
84
		cdev->sub_playback[sub->number] = NULL;
85
	else
86
		cdev->sub_capture[sub->number] = NULL;
87

88
	spin_unlock_irqrestore(&cdev->spinlock, flags);
89 90 91 92 93 94 95 96 97 98 99 100
}

static int
all_substreams_zero(struct snd_pcm_substream **subs)
{
	int i;
	for (i = 0; i < MAX_STREAMS; i++)
		if (subs[i] != NULL)
			return 0;
	return 1;
}

101
static int stream_start(struct snd_usb_caiaqdev *cdev)
102 103 104
{
	int i, ret;

105
	debug("%s(%p)\n", __func__, cdev);
106

107
	if (cdev->streaming)
108 109
		return -EINVAL;

110 111 112 113 114 115 116
	memset(cdev->sub_playback, 0, sizeof(cdev->sub_playback));
	memset(cdev->sub_capture, 0, sizeof(cdev->sub_capture));
	cdev->input_panic = 0;
	cdev->output_panic = 0;
	cdev->first_packet = 4;
	cdev->streaming = 1;
	cdev->warned = 0;
117 118

	for (i = 0; i < N_URBS; i++) {
119
		ret = usb_submit_urb(cdev->data_urbs_in[i], GFP_ATOMIC);
120
		if (ret) {
121
			log("unable to trigger read #%d! (ret %d)\n", i, ret);
122
			cdev->streaming = 0;
123 124 125
			return -EPIPE;
		}
	}
126

127 128 129
	return 0;
}

130
static void stream_stop(struct snd_usb_caiaqdev *cdev)
131 132
{
	int i;
133

134 135
	debug("%s(%p)\n", __func__, cdev);
	if (!cdev->streaming)
136
		return;
137

138
	cdev->streaming = 0;
139

140
	for (i = 0; i < N_URBS; i++) {
141
		usb_kill_urb(cdev->data_urbs_in[i]);
142

143 144
		if (test_bit(i, &cdev->outurb_active_mask))
			usb_kill_urb(cdev->data_urbs_out[i]);
145
	}
146

147
	cdev->outurb_active_mask = 0;
148 149 150 151
}

static int snd_usb_caiaq_substream_open(struct snd_pcm_substream *substream)
{
152
	struct snd_usb_caiaqdev *cdev = snd_pcm_substream_chip(substream);
153
	debug("%s(%p)\n", __func__, substream);
154
	substream->runtime->hw = cdev->pcm_info;
155 156 157 158 159 160
	snd_pcm_limit_hw_rates(substream->runtime);
	return 0;
}

static int snd_usb_caiaq_substream_close(struct snd_pcm_substream *substream)
{
161
	struct snd_usb_caiaqdev *cdev = snd_pcm_substream_chip(substream);
162

163
	debug("%s(%p)\n", __func__, substream);
164 165
	if (all_substreams_zero(cdev->sub_playback) &&
	    all_substreams_zero(cdev->sub_capture)) {
166
		/* when the last client has stopped streaming,
167
		 * all sample rates are allowed again */
168 169
		stream_stop(cdev);
		cdev->pcm_info.rates = cdev->samplerates;
170
	}
171

172 173 174 175
	return 0;
}

static int snd_usb_caiaq_pcm_hw_params(struct snd_pcm_substream *sub,
176
				       struct snd_pcm_hw_params *hw_params)
177
{
178
	debug("%s(%p)\n", __func__, sub);
179 180 181 182 183
	return snd_pcm_lib_malloc_pages(sub, params_buffer_bytes(hw_params));
}

static int snd_usb_caiaq_pcm_hw_free(struct snd_pcm_substream *sub)
{
184
	struct snd_usb_caiaqdev *cdev = snd_pcm_substream_chip(sub);
185
	debug("%s(%p)\n", __func__, sub);
186
	deactivate_substream(cdev, sub);
187 188 189 190 191 192 193 194 195
	return snd_pcm_lib_free_pages(sub);
}

/* this should probably go upstream */
#if SNDRV_PCM_RATE_5512 != 1 << 0 || SNDRV_PCM_RATE_192000 != 1 << 12
#error "Change this table"
#endif

static unsigned int rates[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
196
				48000, 64000, 88200, 96000, 176400, 192000 };
197 198 199 200 201

static int snd_usb_caiaq_pcm_prepare(struct snd_pcm_substream *substream)
{
	int bytes_per_sample, bpp, ret, i;
	int index = substream->number;
202
	struct snd_usb_caiaqdev *cdev = snd_pcm_substream_chip(substream);
203 204
	struct snd_pcm_runtime *runtime = substream->runtime;

205
	debug("%s(%p)\n", __func__, substream);
206

207
	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
208 209
		int out_pos;

210
		switch (cdev->spec.data_alignment) {
211 212 213 214 215 216 217 218 219 220
		case 0:
		case 2:
			out_pos = BYTES_PER_SAMPLE + 1;
			break;
		case 3:
		default:
			out_pos = 0;
			break;
		}

221 222
		cdev->period_out_count[index] = out_pos;
		cdev->audio_out_buf_pos[index] = out_pos;
223
	} else {
224 225
		int in_pos;

226
		switch (cdev->spec.data_alignment) {
227 228 229 230 231 232 233 234 235 236 237 238
		case 0:
			in_pos = BYTES_PER_SAMPLE + 2;
			break;
		case 2:
			in_pos = BYTES_PER_SAMPLE;
			break;
		case 3:
		default:
			in_pos = 0;
			break;
		}

239 240
		cdev->period_in_count[index] = in_pos;
		cdev->audio_in_buf_pos[index] = in_pos;
241 242
	}

243
	if (cdev->streaming)
244
		return 0;
245

246 247 248 249
	/* the first client that opens a stream defines the sample rate
	 * setting for all subsequent calls, until the last client closed. */
	for (i=0; i < ARRAY_SIZE(rates); i++)
		if (runtime->rate == rates[i])
250
			cdev->pcm_info.rates = 1 << i;
251

252 253 254
	snd_pcm_limit_hw_rates(runtime);

	bytes_per_sample = BYTES_PER_SAMPLE;
255
	if (cdev->spec.data_alignment >= 2)
256
		bytes_per_sample++;
257

258
	bpp = ((runtime->rate / 8000) + CLOCK_DRIFT_TOLERANCE)
259
		* bytes_per_sample * CHANNELS_PER_STREAM * cdev->n_streams;
260 261 262 263

	if (bpp > MAX_ENDPOINT_SIZE)
		bpp = MAX_ENDPOINT_SIZE;

264
	ret = snd_usb_caiaq_set_audio_params(cdev, runtime->rate,
265 266 267 268
					     runtime->sample_bits, bpp);
	if (ret)
		return ret;

269
	ret = stream_start(cdev);
270 271
	if (ret)
		return ret;
272

273 274 275 276
	cdev->output_running = 0;
	wait_event_timeout(cdev->prepare_wait_queue, cdev->output_running, HZ);
	if (!cdev->output_running) {
		stream_stop(cdev);
277 278 279 280 281 282 283 284
		return -EPIPE;
	}

	return 0;
}

static int snd_usb_caiaq_pcm_trigger(struct snd_pcm_substream *sub, int cmd)
{
285
	struct snd_usb_caiaqdev *cdev = snd_pcm_substream_chip(sub);
286

287 288
	debug("%s(%p) cmd %d\n", __func__, sub, cmd);

289 290 291
	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
292
		activate_substream(cdev, sub);
293 294 295
		break;
	case SNDRV_PCM_TRIGGER_STOP:
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
296
		deactivate_substream(cdev, sub);
297 298 299 300 301 302 303 304 305 306 307 308
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

static snd_pcm_uframes_t
snd_usb_caiaq_pcm_pointer(struct snd_pcm_substream *sub)
{
	int index = sub->number;
309
	struct snd_usb_caiaqdev *cdev = snd_pcm_substream_chip(sub);
310 311
	snd_pcm_uframes_t ptr;

312
	spin_lock(&cdev->spinlock);
313

314
	if (cdev->input_panic || cdev->output_panic) {
315
		ptr = SNDRV_PCM_POS_XRUN;
316 317
		goto unlock;
	}
318 319

	if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK)
320
		ptr = bytes_to_frames(sub->runtime,
321
					cdev->audio_out_buf_pos[index]);
322
	else
323
		ptr = bytes_to_frames(sub->runtime,
324
					cdev->audio_in_buf_pos[index]);
325

326
unlock:
327
	spin_unlock(&cdev->spinlock);
328
	return ptr;
329 330 331 332 333 334 335 336 337 338 339 340 341
}

/* operators for both playback and capture */
static struct snd_pcm_ops snd_usb_caiaq_ops = {
	.open =		snd_usb_caiaq_substream_open,
	.close =	snd_usb_caiaq_substream_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_usb_caiaq_pcm_hw_params,
	.hw_free =	snd_usb_caiaq_pcm_hw_free,
	.prepare =	snd_usb_caiaq_pcm_prepare,
	.trigger =	snd_usb_caiaq_pcm_trigger,
	.pointer =	snd_usb_caiaq_pcm_pointer
};
342

343
static void check_for_elapsed_periods(struct snd_usb_caiaqdev *cdev,
344 345 346 347 348
				      struct snd_pcm_substream **subs)
{
	int stream, pb, *cnt;
	struct snd_pcm_substream *sub;

349
	for (stream = 0; stream < cdev->n_streams; stream++) {
350 351 352 353
		sub = subs[stream];
		if (!sub)
			continue;

354
		pb = snd_pcm_lib_period_bytes(sub);
355
		cnt = (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
356 357
					&cdev->period_out_count[stream] :
					&cdev->period_in_count[stream];
358 359 360 361 362 363 364 365

		if (*cnt >= pb) {
			snd_pcm_period_elapsed(sub);
			*cnt %= pb;
		}
	}
}

366
static void read_in_urb_mode0(struct snd_usb_caiaqdev *cdev,
367 368 369 370 371 372 373
			      const struct urb *urb,
			      const struct usb_iso_packet_descriptor *iso)
{
	unsigned char *usb_buf = urb->transfer_buffer + iso->offset;
	struct snd_pcm_substream *sub;
	int stream, i;

374
	if (all_substreams_zero(cdev->sub_capture))
375 376 377
		return;

	for (i = 0; i < iso->actual_length;) {
378 379
		for (stream = 0; stream < cdev->n_streams; stream++, i++) {
			sub = cdev->sub_capture[stream];
380 381 382 383
			if (sub) {
				struct snd_pcm_runtime *rt = sub->runtime;
				char *audio_buf = rt->dma_area;
				int sz = frames_to_bytes(rt, rt->buffer_size);
384
				audio_buf[cdev->audio_in_buf_pos[stream]++]
385
					= usb_buf[i];
386 387 388
				cdev->period_in_count[stream]++;
				if (cdev->audio_in_buf_pos[stream] == sz)
					cdev->audio_in_buf_pos[stream] = 0;
389 390 391 392 393
			}
		}
	}
}

394
static void read_in_urb_mode2(struct snd_usb_caiaqdev *cdev,
395 396 397 398 399 400 401 402 403
			      const struct urb *urb,
			      const struct usb_iso_packet_descriptor *iso)
{
	unsigned char *usb_buf = urb->transfer_buffer + iso->offset;
	unsigned char check_byte;
	struct snd_pcm_substream *sub;
	int stream, i;

	for (i = 0; i < iso->actual_length;) {
404
		if (i % (cdev->n_streams * BYTES_PER_SAMPLE_USB) == 0) {
405
			for (stream = 0;
406
			     stream < cdev->n_streams;
407
			     stream++, i++) {
408
				if (cdev->first_packet)
409 410
					continue;

411
				check_byte = MAKE_CHECKBYTE(cdev, stream, i);
412

413
				if ((usb_buf[i] & 0x3f) != check_byte)
414
					cdev->input_panic = 1;
415 416

				if (usb_buf[i] & 0x80)
417
					cdev->output_panic = 1;
418 419
			}
		}
420
		cdev->first_packet = 0;
421

422 423 424
		for (stream = 0; stream < cdev->n_streams; stream++, i++) {
			sub = cdev->sub_capture[stream];
			if (cdev->input_panic)
425 426
				usb_buf[i] = 0;

427 428 429 430
			if (sub) {
				struct snd_pcm_runtime *rt = sub->runtime;
				char *audio_buf = rt->dma_area;
				int sz = frames_to_bytes(rt, rt->buffer_size);
431
				audio_buf[cdev->audio_in_buf_pos[stream]++] =
432
					usb_buf[i];
433 434 435
				cdev->period_in_count[stream]++;
				if (cdev->audio_in_buf_pos[stream] == sz)
					cdev->audio_in_buf_pos[stream] = 0;
436 437 438 439 440
			}
		}
	}
}

441
static void read_in_urb_mode3(struct snd_usb_caiaqdev *cdev,
442 443 444 445 446 447 448 449 450 451 452
			      const struct urb *urb,
			      const struct usb_iso_packet_descriptor *iso)
{
	unsigned char *usb_buf = urb->transfer_buffer + iso->offset;
	int stream, i;

	/* paranoia check */
	if (iso->actual_length % (BYTES_PER_SAMPLE_USB * CHANNELS_PER_STREAM))
		return;

	for (i = 0; i < iso->actual_length;) {
453 454
		for (stream = 0; stream < cdev->n_streams; stream++) {
			struct snd_pcm_substream *sub = cdev->sub_capture[stream];
455 456 457
			char *audio_buf = NULL;
			int c, n, sz = 0;

458
			if (sub && !cdev->input_panic) {
459 460 461 462 463 464 465 466 467
				struct snd_pcm_runtime *rt = sub->runtime;
				audio_buf = rt->dma_area;
				sz = frames_to_bytes(rt, rt->buffer_size);
			}

			for (c = 0; c < CHANNELS_PER_STREAM; c++) {
				/* 3 audio data bytes, followed by 1 check byte */
				if (audio_buf) {
					for (n = 0; n < BYTES_PER_SAMPLE; n++) {
468
						audio_buf[cdev->audio_in_buf_pos[stream]++] = usb_buf[i+n];
469

470 471
						if (cdev->audio_in_buf_pos[stream] == sz)
							cdev->audio_in_buf_pos[stream] = 0;
472 473
					}

474
					cdev->period_in_count[stream] += BYTES_PER_SAMPLE;
475 476 477 478 479
				}

				i += BYTES_PER_SAMPLE;

				if (usb_buf[i] != ((stream << 1) | c) &&
480 481
				    !cdev->first_packet) {
					if (!cdev->input_panic)
482 483
						printk(" EXPECTED: %02x got %02x, c %d, stream %d, i %d\n",
							((stream << 1) | c), usb_buf[i], c, stream, i);
484
					cdev->input_panic = 1;
485 486 487 488 489 490 491
				}

				i++;
			}
		}
	}

492 493
	if (cdev->first_packet > 0)
		cdev->first_packet--;
494 495
}

496
static void read_in_urb(struct snd_usb_caiaqdev *cdev,
497 498 499
			const struct urb *urb,
			const struct usb_iso_packet_descriptor *iso)
{
500
	if (!cdev->streaming)
501 502
		return;

503
	if (iso->actual_length < cdev->bpp)
504 505
		return;

506
	switch (cdev->spec.data_alignment) {
507
	case 0:
508
		read_in_urb_mode0(cdev, urb, iso);
509 510
		break;
	case 2:
511
		read_in_urb_mode2(cdev, urb, iso);
512
		break;
513
	case 3:
514
		read_in_urb_mode3(cdev, urb, iso);
515
		break;
516 517
	}

518
	if ((cdev->input_panic || cdev->output_panic) && !cdev->warned) {
519
		debug("streaming error detected %s %s\n",
520 521 522
				cdev->input_panic ? "(input)" : "",
				cdev->output_panic ? "(output)" : "");
		cdev->warned = 1;
523 524 525
	}
}

526
static void fill_out_urb_mode_0(struct snd_usb_caiaqdev *cdev,
527 528
				struct urb *urb,
				const struct usb_iso_packet_descriptor *iso)
529 530 531 532
{
	unsigned char *usb_buf = urb->transfer_buffer + iso->offset;
	struct snd_pcm_substream *sub;
	int stream, i;
533

534
	for (i = 0; i < iso->length;) {
535 536
		for (stream = 0; stream < cdev->n_streams; stream++, i++) {
			sub = cdev->sub_playback[stream];
537 538 539 540
			if (sub) {
				struct snd_pcm_runtime *rt = sub->runtime;
				char *audio_buf = rt->dma_area;
				int sz = frames_to_bytes(rt, rt->buffer_size);
541
				usb_buf[i] =
542 543 544 545 546
					audio_buf[cdev->audio_out_buf_pos[stream]];
				cdev->period_out_count[stream]++;
				cdev->audio_out_buf_pos[stream]++;
				if (cdev->audio_out_buf_pos[stream] == sz)
					cdev->audio_out_buf_pos[stream] = 0;
547
			} else
548 549
				usb_buf[i] = 0;
		}
550 551

		/* fill in the check bytes */
552 553 554 555 556
		if (cdev->spec.data_alignment == 2 &&
		    i % (cdev->n_streams * BYTES_PER_SAMPLE_USB) ==
		        (cdev->n_streams * CHANNELS_PER_STREAM))
			for (stream = 0; stream < cdev->n_streams; stream++, i++)
				usb_buf[i] = MAKE_CHECKBYTE(cdev, stream, i);
557 558 559
	}
}

560
static void fill_out_urb_mode_3(struct snd_usb_caiaqdev *cdev,
561 562 563 564 565 566 567
				struct urb *urb,
				const struct usb_iso_packet_descriptor *iso)
{
	unsigned char *usb_buf = urb->transfer_buffer + iso->offset;
	int stream, i;

	for (i = 0; i < iso->length;) {
568 569
		for (stream = 0; stream < cdev->n_streams; stream++) {
			struct snd_pcm_substream *sub = cdev->sub_playback[stream];
570 571 572 573 574 575 576 577 578 579 580 581
			char *audio_buf = NULL;
			int c, n, sz = 0;

			if (sub) {
				struct snd_pcm_runtime *rt = sub->runtime;
				audio_buf = rt->dma_area;
				sz = frames_to_bytes(rt, rt->buffer_size);
			}

			for (c = 0; c < CHANNELS_PER_STREAM; c++) {
				for (n = 0; n < BYTES_PER_SAMPLE; n++) {
					if (audio_buf) {
582
						usb_buf[i+n] = audio_buf[cdev->audio_out_buf_pos[stream]++];
583

584 585
						if (cdev->audio_out_buf_pos[stream] == sz)
							cdev->audio_out_buf_pos[stream] = 0;
586 587 588 589 590 591
					} else {
						usb_buf[i+n] = 0;
					}
				}

				if (audio_buf)
592
					cdev->period_out_count[stream] += BYTES_PER_SAMPLE;
593 594 595 596 597 598 599 600 601 602

				i += BYTES_PER_SAMPLE;

				/* fill in the check byte pattern */
				usb_buf[i++] = (stream << 1) | c;
			}
		}
	}
}

603
static inline void fill_out_urb(struct snd_usb_caiaqdev *cdev,
604 605 606
				struct urb *urb,
				const struct usb_iso_packet_descriptor *iso)
{
607
	switch (cdev->spec.data_alignment) {
608 609
	case 0:
	case 2:
610
		fill_out_urb_mode_0(cdev, urb, iso);
611 612
		break;
	case 3:
613
		fill_out_urb_mode_3(cdev, urb, iso);
614
		break;
615 616 617 618 619
	}
}

static void read_completed(struct urb *urb)
{
620
	struct snd_usb_caiaq_cb_info *info = urb->context;
621
	struct snd_usb_caiaqdev *cdev;
622 623
	struct urb *out = NULL;
	int i, frame, len, send_it = 0, outframe = 0;
624
	size_t offset = 0;
625 626 627 628

	if (urb->status || !info)
		return;

629
	cdev = info->cdev;
630

631
	if (!cdev->streaming)
632 633
		return;

634 635
	/* find an unused output urb that is unused */
	for (i = 0; i < N_URBS; i++)
636 637
		if (test_and_set_bit(i, &cdev->outurb_active_mask) == 0) {
			out = cdev->data_urbs_out[i];
638 639 640 641 642 643 644
			break;
		}

	if (!out) {
		log("Unable to find an output urb to use\n");
		goto requeue;
	}
645 646 647 648 649 650 651 652 653 654

	/* read the recently received packet and send back one which has
	 * the same layout */
	for (frame = 0; frame < FRAMES_PER_URB; frame++) {
		if (urb->iso_frame_desc[frame].status)
			continue;

		len = urb->iso_frame_desc[outframe].actual_length;
		out->iso_frame_desc[outframe].length = len;
		out->iso_frame_desc[outframe].actual_length = 0;
655 656
		out->iso_frame_desc[outframe].offset = offset;
		offset += len;
657

658
		if (len > 0) {
659 660 661 662 663 664
			spin_lock(&cdev->spinlock);
			fill_out_urb(cdev, out, &out->iso_frame_desc[outframe]);
			read_in_urb(cdev, urb, &urb->iso_frame_desc[frame]);
			spin_unlock(&cdev->spinlock);
			check_for_elapsed_periods(cdev, cdev->sub_playback);
			check_for_elapsed_periods(cdev, cdev->sub_capture);
665 666 667 668 669 670 671
			send_it = 1;
		}

		outframe++;
	}

	if (send_it) {
672
		out->number_of_packets = outframe;
673 674
		out->transfer_flags = URB_ISO_ASAP;
		usb_submit_urb(out, GFP_ATOMIC);
675 676
	} else {
		struct snd_usb_caiaq_cb_info *oinfo = out->context;
677
		clear_bit(oinfo->index, &cdev->outurb_active_mask);
678
	}
679

680
requeue:
681 682 683 684 685 686
	/* re-submit inbound urb */
	for (frame = 0; frame < FRAMES_PER_URB; frame++) {
		urb->iso_frame_desc[frame].offset = BYTES_PER_FRAME * frame;
		urb->iso_frame_desc[frame].length = BYTES_PER_FRAME;
		urb->iso_frame_desc[frame].actual_length = 0;
	}
687

688 689 690 691 692 693 694 695
	urb->number_of_packets = FRAMES_PER_URB;
	urb->transfer_flags = URB_ISO_ASAP;
	usb_submit_urb(urb, GFP_ATOMIC);
}

static void write_completed(struct urb *urb)
{
	struct snd_usb_caiaq_cb_info *info = urb->context;
696
	struct snd_usb_caiaqdev *cdev = info->cdev;
697

698 699 700
	if (!cdev->output_running) {
		cdev->output_running = 1;
		wake_up(&cdev->prepare_wait_queue);
701
	}
702

703
	clear_bit(info->index, &cdev->outurb_active_mask);
704 705
}

706
static struct urb **alloc_urbs(struct snd_usb_caiaqdev *cdev, int dir, int *ret)
707 708 709
{
	int i, frame;
	struct urb **urbs;
710
	struct usb_device *usb_dev = cdev->chip.dev;
711 712
	unsigned int pipe;

713
	pipe = (dir == SNDRV_PCM_STREAM_PLAYBACK) ?
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
		usb_sndisocpipe(usb_dev, ENDPOINT_PLAYBACK) :
		usb_rcvisocpipe(usb_dev, ENDPOINT_CAPTURE);

	urbs = kmalloc(N_URBS * sizeof(*urbs), GFP_KERNEL);
	if (!urbs) {
		log("unable to kmalloc() urbs, OOM!?\n");
		*ret = -ENOMEM;
		return NULL;
	}

	for (i = 0; i < N_URBS; i++) {
		urbs[i] = usb_alloc_urb(FRAMES_PER_URB, GFP_KERNEL);
		if (!urbs[i]) {
			log("unable to usb_alloc_urb(), OOM!?\n");
			*ret = -ENOMEM;
			return urbs;
		}

732
		urbs[i]->transfer_buffer =
733 734 735 736 737 738
			kmalloc(FRAMES_PER_URB * BYTES_PER_FRAME, GFP_KERNEL);
		if (!urbs[i]->transfer_buffer) {
			log("unable to kmalloc() transfer buffer, OOM!?\n");
			*ret = -ENOMEM;
			return urbs;
		}
739

740
		for (frame = 0; frame < FRAMES_PER_URB; frame++) {
741
			struct usb_iso_packet_descriptor *iso =
742
				&urbs[i]->iso_frame_desc[frame];
743

744 745 746
			iso->offset = BYTES_PER_FRAME * frame;
			iso->length = BYTES_PER_FRAME;
		}
747

748 749
		urbs[i]->dev = usb_dev;
		urbs[i]->pipe = pipe;
750
		urbs[i]->transfer_buffer_length = FRAMES_PER_URB
751
						* BYTES_PER_FRAME;
752
		urbs[i]->context = &cdev->data_cb_info[i];
753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
		urbs[i]->interval = 1;
		urbs[i]->transfer_flags = URB_ISO_ASAP;
		urbs[i]->number_of_packets = FRAMES_PER_URB;
		urbs[i]->complete = (dir == SNDRV_PCM_STREAM_CAPTURE) ?
					read_completed : write_completed;
	}

	*ret = 0;
	return urbs;
}

static void free_urbs(struct urb **urbs)
{
	int i;

	if (!urbs)
		return;

	for (i = 0; i < N_URBS; i++) {
		if (!urbs[i])
			continue;
774

775 776 777 778 779 780 781 782
		usb_kill_urb(urbs[i]);
		kfree(urbs[i]->transfer_buffer);
		usb_free_urb(urbs[i]);
	}

	kfree(urbs);
}

783
int snd_usb_caiaq_audio_init(struct snd_usb_caiaqdev *cdev)
784 785 786
{
	int i, ret;

787 788
	cdev->n_audio_in  = max(cdev->spec.num_analog_audio_in,
			       cdev->spec.num_digital_audio_in) /
789
				CHANNELS_PER_STREAM;
790 791
	cdev->n_audio_out = max(cdev->spec.num_analog_audio_out,
			       cdev->spec.num_digital_audio_out) /
792
				CHANNELS_PER_STREAM;
793
	cdev->n_streams = max(cdev->n_audio_in, cdev->n_audio_out);
794

795 796 797
	debug("cdev->n_audio_in = %d\n", cdev->n_audio_in);
	debug("cdev->n_audio_out = %d\n", cdev->n_audio_out);
	debug("cdev->n_streams = %d\n", cdev->n_streams);
798

799
	if (cdev->n_streams > MAX_STREAMS) {
800 801 802 803
		log("unable to initialize device, too many streams.\n");
		return -EINVAL;
	}

804 805
	ret = snd_pcm_new(cdev->chip.card, cdev->product_name, 0,
			cdev->n_audio_out, cdev->n_audio_in, &cdev->pcm);
806 807 808 809 810 811

	if (ret < 0) {
		log("snd_pcm_new() returned %d\n", ret);
		return ret;
	}

812 813
	cdev->pcm->private_data = cdev;
	strlcpy(cdev->pcm->name, cdev->product_name, sizeof(cdev->pcm->name));
814

815 816
	memset(cdev->sub_playback, 0, sizeof(cdev->sub_playback));
	memset(cdev->sub_capture, 0, sizeof(cdev->sub_capture));
817

818
	memcpy(&cdev->pcm_info, &snd_usb_caiaq_pcm_hardware,
819 820 821
			sizeof(snd_usb_caiaq_pcm_hardware));

	/* setup samplerates */
822 823
	cdev->samplerates = cdev->pcm_info.rates;
	switch (cdev->chip.usb_id) {
824
	case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_AK1):
825
	case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_RIGKONTROL3):
826
	case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_SESSIONIO):
827
	case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_GUITARRIGMOBILE):
828
		cdev->samplerates |= SNDRV_PCM_RATE_192000;
829
		/* fall thru */
830
	case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_AUDIO2DJ):
831
	case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_AUDIO4DJ):
832
	case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_AUDIO8DJ):
833
	case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_TRAKTORAUDIO2):
834
		cdev->samplerates |= SNDRV_PCM_RATE_88200;
835 836 837
		break;
	}

838
	snd_pcm_set_ops(cdev->pcm, SNDRV_PCM_STREAM_PLAYBACK,
839
				&snd_usb_caiaq_ops);
840
	snd_pcm_set_ops(cdev->pcm, SNDRV_PCM_STREAM_CAPTURE,
841 842
				&snd_usb_caiaq_ops);

843
	snd_pcm_lib_preallocate_pages_for_all(cdev->pcm,
844 845 846 847
					SNDRV_DMA_TYPE_CONTINUOUS,
					snd_dma_continuous_data(GFP_KERNEL),
					MAX_BUFFER_SIZE, MAX_BUFFER_SIZE);

848
	cdev->data_cb_info =
849
		kmalloc(sizeof(struct snd_usb_caiaq_cb_info) * N_URBS,
850 851
					GFP_KERNEL);

852
	if (!cdev->data_cb_info)
853 854
		return -ENOMEM;

855 856
	cdev->outurb_active_mask = 0;
	BUILD_BUG_ON(N_URBS > (sizeof(cdev->outurb_active_mask) * 8));
857

858
	for (i = 0; i < N_URBS; i++) {
859 860
		cdev->data_cb_info[i].cdev = cdev;
		cdev->data_cb_info[i].index = i;
861
	}
862

863
	cdev->data_urbs_in = alloc_urbs(cdev, SNDRV_PCM_STREAM_CAPTURE, &ret);
864
	if (ret < 0) {
865 866
		kfree(cdev->data_cb_info);
		free_urbs(cdev->data_urbs_in);
867 868
		return ret;
	}
869

870
	cdev->data_urbs_out = alloc_urbs(cdev, SNDRV_PCM_STREAM_PLAYBACK, &ret);
871
	if (ret < 0) {
872 873 874
		kfree(cdev->data_cb_info);
		free_urbs(cdev->data_urbs_in);
		free_urbs(cdev->data_urbs_out);
875 876 877 878 879 880
		return ret;
	}

	return 0;
}

881
void snd_usb_caiaq_audio_free(struct snd_usb_caiaqdev *cdev)
882
{
883 884 885 886 887
	debug("%s(%p)\n", __func__, cdev);
	stream_stop(cdev);
	free_urbs(cdev->data_urbs_in);
	free_urbs(cdev->data_urbs_out);
	kfree(cdev->data_cb_info);
888 889
}