playback.c 12.8 KB
Newer Older
M
Markus Grabner 已提交
1
/*
2
 * Line 6 Linux USB driver
M
Markus Grabner 已提交
3
 *
4
 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
M
Markus Grabner 已提交
5 6 7 8 9 10 11
 *
 *	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, version 2.
 *
 */

12
#include <linux/slab.h>
M
Markus Grabner 已提交
13 14 15 16
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>

17 18
#include "capture.h"
#include "driver.h"
M
Markus Grabner 已提交
19
#include "pcm.h"
20
#include "playback.h"
M
Markus Grabner 已提交
21 22 23 24

/*
	Software stereo volume control.
*/
25 26
static void change_volume(struct urb *urb_out, int volume[],
			  int bytes_per_frame)
M
Markus Grabner 已提交
27 28 29
{
	int chn = 0;

30
	if (volume[0] == 256 && volume[1] == 256)
31
		return;		/* maximum volume - no change */
M
Markus Grabner 已提交
32

33
	if (bytes_per_frame == 4) {
M
Markus Grabner 已提交
34
		short *p, *buf_end;
35

M
Markus Grabner 已提交
36 37 38
		p = (short *)urb_out->transfer_buffer;
		buf_end = p + urb_out->transfer_buffer_length / sizeof(*p);

39
		for (; p < buf_end; ++p) {
40 41
			int val = (*p * volume[chn & 1]) >> 8;
			*p = clamp(val, 0x7fff, -0x8000);
M
Markus Grabner 已提交
42 43
			++chn;
		}
44
	} else if (bytes_per_frame == 6) {
M
Markus Grabner 已提交
45
		unsigned char *p, *buf_end;
46

M
Markus Grabner 已提交
47 48 49
		p = (unsigned char *)urb_out->transfer_buffer;
		buf_end = p + urb_out->transfer_buffer_length;

50 51
		for (; p < buf_end; p += 3) {
			int val;
52

53
			val = p[0] + (p[1] << 8) + ((signed char)p[2] << 16);
M
Markus Grabner 已提交
54
			val = (val * volume[chn & 1]) >> 8;
55
			val = clamp(val, 0x7fffff, -0x800000);
M
Markus Grabner 已提交
56 57 58 59 60 61 62 63
			p[0] = val;
			p[1] = val >> 8;
			p[2] = val >> 16;
			++chn;
		}
	}
}

64 65 66 67 68 69 70 71 72
/*
	Create signal for impulse response test.
*/
static void create_impulse_test_signal(struct snd_line6_pcm *line6pcm,
				       struct urb *urb_out, int bytes_per_frame)
{
	int frames = urb_out->transfer_buffer_length / bytes_per_frame;

	if (bytes_per_frame == 4) {
73 74 75 76 77 78 79 80 81 82
		int i;
		short *pi = (short *)line6pcm->prev_fbuf;
		short *po = (short *)urb_out->transfer_buffer;

		for (i = 0; i < frames; ++i) {
			po[0] = pi[0];
			po[1] = 0;
			pi += 2;
			po += 2;
		}
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
	} else if (bytes_per_frame == 6) {
		int i, j;
		unsigned char *pi = line6pcm->prev_fbuf;
		unsigned char *po = urb_out->transfer_buffer;

		for (i = 0; i < frames; ++i) {
			for (j = 0; j < bytes_per_frame / 2; ++j)
				po[j] = pi[j];

			for (; j < bytes_per_frame; ++j)
				po[j] = 0;

			pi += bytes_per_frame;
			po += bytes_per_frame;
		}
98 99 100 101 102 103
	}
	if (--line6pcm->impulse_count <= 0) {
		((unsigned char *)(urb_out->transfer_buffer))[bytes_per_frame -
							      1] =
		    line6pcm->impulse_volume;
		line6pcm->impulse_count = line6pcm->impulse_period;
104 105 106 107 108 109 110 111 112 113 114 115 116 117
	}
}

/*
	Add signal to buffer for software monitoring.
*/
static void add_monitor_signal(struct urb *urb_out, unsigned char *signal,
			       int volume, int bytes_per_frame)
{
	if (volume == 0)
		return;		/* zero volume - no change */

	if (bytes_per_frame == 4) {
		short *pi, *po, *buf_end;
118

119 120 121 122
		pi = (short *)signal;
		po = (short *)urb_out->transfer_buffer;
		buf_end = po + urb_out->transfer_buffer_length / sizeof(*po);

123 124 125 126
		for (; po < buf_end; ++pi, ++po) {
			int val = *po + ((*pi * volume) >> 8);
			*po = clamp(val, 0x7fff, -0x8000);
		}
127 128 129
	}

	/*
130 131 132
	   We don't need to handle devices with 6 bytes per frame here
	   since they all support hardware monitoring.
	 */
133 134
}

M
Markus Grabner 已提交
135 136
/*
	Find a free URB, prepare audio data, and submit URB.
137
	must be called in line6pcm->out.lock context
M
Markus Grabner 已提交
138
*/
139
static int submit_audio_out_urb(struct snd_line6_pcm *line6pcm)
M
Markus Grabner 已提交
140 141 142
{
	int index;
	int i, urb_size, urb_frames;
143
	int ret;
M
Markus Grabner 已提交
144
	const int bytes_per_frame = line6pcm->properties->bytes_per_frame;
145 146 147 148 149
	const int frame_increment =
	    line6pcm->properties->snd_line6_rates.rats[0].num_min;
	const int frame_factor =
	    line6pcm->properties->snd_line6_rates.rats[0].den *
	    (USB_INTERVALS_PER_SECOND / LINE6_ISO_INTERVAL);
M
Markus Grabner 已提交
150 151
	struct urb *urb_out;

152
	index =
153
	    find_first_zero_bit(&line6pcm->out.active_urbs, LINE6_ISO_BUFFERS);
M
Markus Grabner 已提交
154

155
	if (index < 0 || index >= LINE6_ISO_BUFFERS) {
156
		dev_err(line6pcm->line6->ifcdev, "no free URB found\n");
M
Markus Grabner 已提交
157 158 159
		return -EINVAL;
	}

160
	urb_out = line6pcm->out.urbs[index];
M
Markus Grabner 已提交
161 162
	urb_size = 0;

163
	for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
M
Markus Grabner 已提交
164
		/* compute frame size for given sampling rate */
165
		int fsize = 0;
166 167
		struct usb_iso_packet_descriptor *fout =
		    &urb_out->iso_frame_desc[i];
168

169
		if (line6pcm->flags & LINE6_BITS_CAPTURE_STREAM)
170 171 172 173
			fsize = line6pcm->prev_fsize;

		if (fsize == 0) {
			int n;
174

175 176 177
			line6pcm->out.count += frame_increment;
			n = line6pcm->out.count / frame_factor;
			line6pcm->out.count -= n * frame_factor;
178 179 180
			fsize = n * bytes_per_frame;
		}

M
Markus Grabner 已提交
181
		fout->offset = urb_size;
182 183 184 185 186 187
		fout->length = fsize;
		urb_size += fsize;
	}

	if (urb_size == 0) {
		/* can't determine URB size */
188
		dev_err(line6pcm->line6->ifcdev, "driver bug: urb_size = 0\n");
189
		return -EINVAL;
M
Markus Grabner 已提交
190 191 192
	}

	urb_frames = urb_size / bytes_per_frame;
193
	urb_out->transfer_buffer =
194
	    line6pcm->out.buffer +
195
	    index * LINE6_ISO_PACKETS * line6pcm->max_packet_size;
196 197 198
	urb_out->transfer_buffer_length = urb_size;
	urb_out->context = line6pcm;

199 200
	if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM, &line6pcm->flags) &&
	    !test_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags)) {
201 202
		struct snd_pcm_runtime *runtime =
		    get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK)->runtime;
M
Markus Grabner 已提交
203

204
		if (line6pcm->out.pos + urb_frames > runtime->buffer_size) {
M
Markus Grabner 已提交
205
			/*
206 207 208
			   The transferred area goes over buffer boundary,
			   copy the data to the temp buffer.
			 */
M
Markus Grabner 已提交
209
			int len;
210

211
			len = runtime->buffer_size - line6pcm->out.pos;
M
Markus Grabner 已提交
212

213
			if (len > 0) {
214
				memcpy(urb_out->transfer_buffer,
215
				       runtime->dma_area +
216
				       line6pcm->out.pos * bytes_per_frame,
217
				       len * bytes_per_frame);
218
				memcpy(urb_out->transfer_buffer +
219 220
				       len * bytes_per_frame, runtime->dma_area,
				       (urb_frames - len) * bytes_per_frame);
221
			} else
222 223
				dev_err(line6pcm->line6->ifcdev, "driver bug: len = %d\n",
					len);
224
		} else {
225 226
			memcpy(urb_out->transfer_buffer,
			       runtime->dma_area +
227
			       line6pcm->out.pos * bytes_per_frame,
228
			       urb_out->transfer_buffer_length);
M
Markus Grabner 已提交
229 230
		}

231 232 233
		line6pcm->out.pos += urb_frames;
		if (line6pcm->out.pos >= runtime->buffer_size)
			line6pcm->out.pos -= runtime->buffer_size;
234 235 236

		change_volume(urb_out, line6pcm->volume_playback,
			      bytes_per_frame);
237 238 239 240
	} else {
		memset(urb_out->transfer_buffer, 0,
		       urb_out->transfer_buffer_length);
	}
M
Markus Grabner 已提交
241

242 243
	spin_lock_nested(&line6pcm->in.lock, SINGLE_DEPTH_NESTING);
	if (line6pcm->prev_fbuf) {
244
		if (line6pcm->flags & LINE6_BITS_PCM_IMPULSE) {
245 246
			create_impulse_test_signal(line6pcm, urb_out,
						   bytes_per_frame);
247 248
			if (line6pcm->flags &
			    LINE6_BIT_PCM_ALSA_CAPTURE_STREAM) {
249 250 251 252 253
				line6_capture_copy(line6pcm,
						   urb_out->transfer_buffer,
						   urb_out->
						   transfer_buffer_length);
				line6_capture_check_period(line6pcm,
254
					urb_out->transfer_buffer_length);
255 256 257
			}
		} else {
			if (!
258
			    (line6pcm->line6->
259
			     properties->capabilities & LINE6_CAP_HWMON)
260 261
			    && (line6pcm->flags & LINE6_BITS_PLAYBACK_STREAM)
			    && (line6pcm->flags & LINE6_BITS_CAPTURE_STREAM))
262 263 264 265 266
				add_monitor_signal(urb_out, line6pcm->prev_fbuf,
						   line6pcm->volume_monitor,
						   bytes_per_frame);
		}
	}
267
	spin_unlock(&line6pcm->in.lock);
M
Markus Grabner 已提交
268

269 270 271
	ret = usb_submit_urb(urb_out, GFP_ATOMIC);

	if (ret == 0)
272
		set_bit(index, &line6pcm->out.active_urbs);
M
Markus Grabner 已提交
273
	else
274
		dev_err(line6pcm->line6->ifcdev,
275
			"URB out #%d submission failed (%d)\n", index, ret);
M
Markus Grabner 已提交
276 277 278 279 280 281 282

	return 0;
}

/*
	Submit all currently available playback URBs.
*/
283
int line6_submit_audio_out_all_urbs(struct snd_line6_pcm *line6pcm)
M
Markus Grabner 已提交
284
{
285 286
	unsigned long flags;
	int ret = 0, i;
M
Markus Grabner 已提交
287

288
	spin_lock_irqsave(&line6pcm->out.lock, flags);
289
	for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
290
		ret = submit_audio_out_urb(line6pcm);
291
		if (ret < 0)
292
			break;
293
	}
M
Markus Grabner 已提交
294

295 296
	spin_unlock_irqrestore(&line6pcm->out.lock, flags);
	return ret;
M
Markus Grabner 已提交
297 298 299 300 301
}

/*
	Callback for completed playback URB.
*/
302
static void audio_out_callback(struct urb *urb)
M
Markus Grabner 已提交
303 304 305
{
	int i, index, length = 0, shutdown = 0;
	unsigned long flags;
306
	struct snd_line6_pcm *line6pcm = (struct snd_line6_pcm *)urb->context;
307
	struct snd_pcm_substream *substream =
308 309 310 311 312 313
	    get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK);

#if USE_CLEAR_BUFFER_WORKAROUND
	memset(urb->transfer_buffer, 0, urb->transfer_buffer_length);
#endif

314
	line6pcm->out.last_frame = urb->start_frame;
M
Markus Grabner 已提交
315 316

	/* find index of URB */
T
Takashi Iwai 已提交
317
	for (index = 0; index < LINE6_ISO_BUFFERS; index++)
318
		if (urb == line6pcm->out.urbs[index])
M
Markus Grabner 已提交
319 320
			break;

T
Takashi Iwai 已提交
321
	if (index >= LINE6_ISO_BUFFERS)
322
		return;		/* URB has been unlinked asynchronously */
M
Markus Grabner 已提交
323

T
Takashi Iwai 已提交
324
	for (i = 0; i < LINE6_ISO_PACKETS; i++)
M
Markus Grabner 已提交
325 326
		length += urb->iso_frame_desc[i].length;

327
	spin_lock_irqsave(&line6pcm->out.lock, flags);
M
Markus Grabner 已提交
328

329
	if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM, &line6pcm->flags)) {
330
		struct snd_pcm_runtime *runtime = substream->runtime;
331

332
		line6pcm->out.pos_done +=
333 334
		    length / line6pcm->properties->bytes_per_frame;

335 336
		if (line6pcm->out.pos_done >= runtime->buffer_size)
			line6pcm->out.pos_done -= runtime->buffer_size;
337
	}
M
Markus Grabner 已提交
338

339
	clear_bit(index, &line6pcm->out.active_urbs);
M
Markus Grabner 已提交
340

T
Takashi Iwai 已提交
341
	for (i = 0; i < LINE6_ISO_PACKETS; i++)
342
		if (urb->iso_frame_desc[i].status == -EXDEV) {
M
Markus Grabner 已提交
343 344 345 346
			shutdown = 1;
			break;
		}

347
	if (test_and_clear_bit(index, &line6pcm->out.unlink_urbs))
M
Markus Grabner 已提交
348 349
		shutdown = 1;

350
	if (!shutdown) {
351
		submit_audio_out_urb(line6pcm);
M
Markus Grabner 已提交
352

353 354
		if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM,
			     &line6pcm->flags)) {
355 356 357
			line6pcm->out.bytes += length;
			if (line6pcm->out.bytes >= line6pcm->out.period) {
				line6pcm->out.bytes %= line6pcm->out.period;
358
				spin_unlock(&line6pcm->out.lock);
359
				snd_pcm_period_elapsed(substream);
360
				spin_lock(&line6pcm->out.lock);
361
			}
M
Markus Grabner 已提交
362 363
		}
	}
364
	spin_unlock_irqrestore(&line6pcm->out.lock, flags);
M
Markus Grabner 已提交
365 366 367 368 369 370 371 372 373
}

/* open playback callback */
static int snd_line6_playback_open(struct snd_pcm_substream *substream)
{
	int err;
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);

374
	err = snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
375 376
					    (&line6pcm->
					     properties->snd_line6_rates));
377
	if (err < 0)
M
Markus Grabner 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390
		return err;

	runtime->hw = line6pcm->properties->snd_line6_playback_hw;
	return 0;
}

/* close playback callback */
static int snd_line6_playback_close(struct snd_pcm_substream *substream)
{
	return 0;
}

/* hw_params playback callback */
391 392
static int snd_line6_playback_hw_params(struct snd_pcm_substream *substream,
					struct snd_pcm_hw_params *hw_params)
M
Markus Grabner 已提交
393 394 395 396
{
	int ret;
	struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);

397
	ret = line6_pcm_acquire(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
398

399 400
	if (ret < 0)
		return ret;
401

402 403
	ret = snd_pcm_lib_malloc_pages(substream,
				       params_buffer_bytes(hw_params));
404 405
	if (ret < 0) {
		line6_pcm_release(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
M
Markus Grabner 已提交
406
		return ret;
407
	}
M
Markus Grabner 已提交
408

409
	line6pcm->out.period = params_period_bytes(hw_params);
M
Markus Grabner 已提交
410 411 412 413 414 415
	return 0;
}

/* hw_free playback callback */
static int snd_line6_playback_hw_free(struct snd_pcm_substream *substream)
{
416
	struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
417

418
	line6_pcm_release(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
M
Markus Grabner 已提交
419 420 421 422
	return snd_pcm_lib_free_pages(substream);
}

/* trigger playback callback */
423
int snd_line6_playback_trigger(struct snd_line6_pcm *line6pcm, int cmd)
M
Markus Grabner 已提交
424 425 426
{
	int err;

427
	switch (cmd) {
M
Markus Grabner 已提交
428
	case SNDRV_PCM_TRIGGER_START:
429
	case SNDRV_PCM_TRIGGER_RESUME:
430 431
		err = line6_pcm_acquire(line6pcm,
					LINE6_BIT_PCM_ALSA_PLAYBACK_STREAM);
M
Markus Grabner 已提交
432

433 434
		if (err < 0)
			return err;
M
Markus Grabner 已提交
435 436 437 438

		break;

	case SNDRV_PCM_TRIGGER_STOP:
439
	case SNDRV_PCM_TRIGGER_SUSPEND:
440 441
		err = line6_pcm_release(line6pcm,
					LINE6_BIT_PCM_ALSA_PLAYBACK_STREAM);
442 443 444

		if (err < 0)
			return err;
M
Markus Grabner 已提交
445 446 447 448

		break;

	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
449
		set_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags);
M
Markus Grabner 已提交
450 451 452
		break;

	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
453
		clear_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags);
M
Markus Grabner 已提交
454 455 456 457 458 459 460 461 462 463 464 465 466 467
		break;

	default:
		return -EINVAL;
	}

	return 0;
}

/* playback pointer callback */
static snd_pcm_uframes_t
snd_line6_playback_pointer(struct snd_pcm_substream *substream)
{
	struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
468

469
	return line6pcm->out.pos_done;
M
Markus Grabner 已提交
470 471 472 473
}

/* playback operators */
struct snd_pcm_ops snd_line6_playback_ops = {
474 475 476 477 478 479 480 481
	.open = snd_line6_playback_open,
	.close = snd_line6_playback_close,
	.ioctl = snd_pcm_lib_ioctl,
	.hw_params = snd_line6_playback_hw_params,
	.hw_free = snd_line6_playback_hw_free,
	.prepare = snd_line6_prepare,
	.trigger = snd_line6_trigger,
	.pointer = snd_line6_playback_pointer,
M
Markus Grabner 已提交
482 483
};

484
int line6_create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
M
Markus Grabner 已提交
485
{
486
	struct usb_line6 *line6 = line6pcm->line6;
M
Markus Grabner 已提交
487 488 489
	int i;

	/* create audio URBs and fill in constant values: */
490
	for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
M
Markus Grabner 已提交
491 492 493
		struct urb *urb;

		/* URB for audio out: */
494
		urb = line6pcm->out.urbs[i] =
495
		    usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
M
Markus Grabner 已提交
496

497
		if (urb == NULL)
M
Markus Grabner 已提交
498 499
			return -ENOMEM;

500
		urb->dev = line6->usbdev;
501
		urb->pipe =
502 503
		    usb_sndisocpipe(line6->usbdev,
				    line6->properties->ep_audio_w &
504
				    USB_ENDPOINT_NUMBER_MASK);
M
Markus Grabner 已提交
505 506 507 508 509 510 511 512 513 514
		urb->transfer_flags = URB_ISO_ASAP;
		urb->start_frame = -1;
		urb->number_of_packets = LINE6_ISO_PACKETS;
		urb->interval = LINE6_ISO_INTERVAL;
		urb->error_count = 0;
		urb->complete = audio_out_callback;
	}

	return 0;
}