playback.c 10.9 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) {
34
		__le16 *p, *buf_end;
35

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

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

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

52 53
		for (; p < buf_end; p += 3) {
			int val;
54

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

66 67 68 69 70 71 72 73 74
/*
	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) {
75 76 77 78 79 80 81 82 83 84
		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;
		}
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
	} 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;
		}
100 101 102 103 104 105
	}
	if (--line6pcm->impulse_count <= 0) {
		((unsigned char *)(urb_out->transfer_buffer))[bytes_per_frame -
							      1] =
		    line6pcm->impulse_volume;
		line6pcm->impulse_count = line6pcm->impulse_period;
106 107 108 109 110 111 112 113 114 115 116 117 118
	}
}

/*
	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) {
119
		__le16 *pi, *po, *buf_end;
120

121 122
		pi = (__le16 *)signal;
		po = (__le16 *)urb_out->transfer_buffer;
123 124
		buf_end = po + urb_out->transfer_buffer_length / sizeof(*po);

125
		for (; po < buf_end; ++pi, ++po) {
126 127 128 129 130
			short pov = le16_to_cpu(*po);
			short piv = le16_to_cpu(*pi);
			int val = pov + ((piv * volume) >> 8);
			pov = clamp(val, 0x7fff, -0x8000);
			*po = cpu_to_le16(pov);
131
		}
132 133 134
	}

	/*
135 136 137
	   We don't need to handle devices with 6 bytes per frame here
	   since they all support hardware monitoring.
	 */
138 139
}

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

157
	index =
158
	    find_first_zero_bit(&line6pcm->out.active_urbs, LINE6_ISO_BUFFERS);
M
Markus Grabner 已提交
159

160
	if (index < 0 || index >= LINE6_ISO_BUFFERS) {
161
		dev_err(line6pcm->line6->ifcdev, "no free URB found\n");
M
Markus Grabner 已提交
162 163 164
		return -EINVAL;
	}

165
	urb_out = line6pcm->out.urbs[index];
M
Markus Grabner 已提交
166 167
	urb_size = 0;

168
	for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
M
Markus Grabner 已提交
169
		/* compute frame size for given sampling rate */
170
		int fsize = 0;
171 172
		struct usb_iso_packet_descriptor *fout =
		    &urb_out->iso_frame_desc[i];
173

174
		fsize = line6pcm->prev_fsize;
175 176
		if (fsize == 0) {
			int n;
177

178 179 180
			line6pcm->out.count += frame_increment;
			n = line6pcm->out.count / frame_factor;
			line6pcm->out.count -= n * frame_factor;
181 182 183
			fsize = n * bytes_per_frame;
		}

M
Markus Grabner 已提交
184
		fout->offset = urb_size;
185 186 187 188 189 190
		fout->length = fsize;
		urb_size += fsize;
	}

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

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

202 203
	if (test_bit(LINE6_STREAM_PCM, &line6pcm->out.running) &&
	    !test_bit(LINE6_FLAG_PAUSE_PLAYBACK, &line6pcm->flags)) {
204 205
		struct snd_pcm_runtime *runtime =
		    get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK)->runtime;
M
Markus Grabner 已提交
206

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

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

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

234 235 236
		line6pcm->out.pos += urb_frames;
		if (line6pcm->out.pos >= runtime->buffer_size)
			line6pcm->out.pos -= runtime->buffer_size;
237 238 239

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

245 246
	spin_lock_nested(&line6pcm->in.lock, SINGLE_DEPTH_NESTING);
	if (line6pcm->prev_fbuf) {
247
		if (test_bit(LINE6_STREAM_IMPULSE, &line6pcm->out.running)) {
248 249
			create_impulse_test_signal(line6pcm, urb_out,
						   bytes_per_frame);
250
			if (test_bit(LINE6_STREAM_PCM, &line6pcm->in.running)) {
251 252 253 254 255
				line6_capture_copy(line6pcm,
						   urb_out->transfer_buffer,
						   urb_out->
						   transfer_buffer_length);
				line6_capture_check_period(line6pcm,
256
					urb_out->transfer_buffer_length);
257 258
			}
		} else {
259 260
			if (!(line6pcm->line6->properties->capabilities & LINE6_CAP_HWMON)
			    && line6pcm->out.running && line6pcm->in.running)
261 262 263 264
				add_monitor_signal(urb_out, line6pcm->prev_fbuf,
						   line6pcm->volume_monitor,
						   bytes_per_frame);
		}
265 266
		line6pcm->prev_fbuf = NULL;
		line6pcm->prev_fsize = 0;
267
	}
268
	spin_unlock(&line6pcm->in.lock);
M
Markus Grabner 已提交
269

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

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

	return 0;
}

/*
	Submit all currently available playback URBs.
283 284
	must be called in line6pcm->out.lock context
 */
285
int line6_submit_audio_out_all_urbs(struct snd_line6_pcm *line6pcm)
M
Markus Grabner 已提交
286
{
287
	int ret = 0, i;
M
Markus Grabner 已提交
288

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
	return ret;
M
Markus Grabner 已提交
296 297 298 299 300
}

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

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

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

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

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

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

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

328
	if (test_bit(LINE6_STREAM_PCM, &line6pcm->out.running)) {
329
		struct snd_pcm_runtime *runtime = substream->runtime;
330

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

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

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

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

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

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

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

/* 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);

372
	err = snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
373
					    &line6pcm->properties->rates);
374
	if (err < 0)
M
Markus Grabner 已提交
375 376
		return err;

377
	runtime->hw = line6pcm->properties->playback_hw;
M
Markus Grabner 已提交
378 379 380 381 382 383 384 385 386 387 388
	return 0;
}

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

/* playback operators */
struct snd_pcm_ops snd_line6_playback_ops = {
389 390 391
	.open = snd_line6_playback_open,
	.close = snd_line6_playback_close,
	.ioctl = snd_pcm_lib_ioctl,
392 393
	.hw_params = snd_line6_hw_params,
	.hw_free = snd_line6_hw_free,
394 395
	.prepare = snd_line6_prepare,
	.trigger = snd_line6_trigger,
396
	.pointer = snd_line6_pointer,
M
Markus Grabner 已提交
397 398
};

399
int line6_create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
M
Markus Grabner 已提交
400
{
401
	struct usb_line6 *line6 = line6pcm->line6;
M
Markus Grabner 已提交
402 403 404
	int i;

	/* create audio URBs and fill in constant values: */
405
	for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
M
Markus Grabner 已提交
406 407 408
		struct urb *urb;

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

412
		if (urb == NULL)
M
Markus Grabner 已提交
413 414
			return -ENOMEM;

415
		urb->dev = line6->usbdev;
416
		urb->pipe =
417 418
		    usb_sndisocpipe(line6->usbdev,
				    line6->properties->ep_audio_w &
419
				    USB_ENDPOINT_NUMBER_MASK);
M
Markus Grabner 已提交
420 421 422 423 424 425 426 427 428 429
		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;
}