blob: fbcd6e150aaff741a2868be754d6c584a36bacb8 [file] [log] [blame]
Markus Grabner705ecec2009-02-27 19:43:04 -08001/*
2 * Line6 Linux USB driver - 0.8.0
3 *
4 * Copyright (C) 2004-2009 Markus Grabner (grabner@icg.tugraz.at)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.
9 *
10 */
11
12#include "driver.h"
13
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
15
Markus Grabner705ecec2009-02-27 19:43:04 -080016#include <sound/core.h>
17#include <sound/pcm.h>
18#include <sound/pcm_params.h>
19
20#include "audio.h"
21#include "pcm.h"
22#include "pod.h"
Greg Kroah-Hartmanb702ed252009-02-27 20:45:03 -080023#include "playback.h"
Markus Grabner705ecec2009-02-27 19:43:04 -080024
Markus Grabner705ecec2009-02-27 19:43:04 -080025/*
26 Software stereo volume control.
27*/
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080028static void change_volume(struct urb *urb_out, int volume[],
29 int bytes_per_frame)
Markus Grabner705ecec2009-02-27 19:43:04 -080030{
31 int chn = 0;
32
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080033 if (volume[0] == 256 && volume[1] == 256)
Shawn Bohrer45af4972009-11-15 22:17:50 -060034 return; /* maximum volume - no change */
Markus Grabner705ecec2009-02-27 19:43:04 -080035
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080036 if (bytes_per_frame == 4) {
Markus Grabner705ecec2009-02-27 19:43:04 -080037 short *p, *buf_end;
38 p = (short *)urb_out->transfer_buffer;
39 buf_end = p + urb_out->transfer_buffer_length / sizeof(*p);
40
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080041 for (; p < buf_end; ++p) {
Markus Grabner705ecec2009-02-27 19:43:04 -080042 *p = (*p * volume[chn & 1]) >> 8;
43 ++chn;
44 }
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080045 } else if (bytes_per_frame == 6) {
Markus Grabner705ecec2009-02-27 19:43:04 -080046 unsigned char *p, *buf_end;
47 p = (unsigned char *)urb_out->transfer_buffer;
48 buf_end = p + urb_out->transfer_buffer_length;
49
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080050 for (; p < buf_end; p += 3) {
51 int val;
52 val = p[0] + (p[1] << 8) + ((signed char)p[2] << 16);
Markus Grabner705ecec2009-02-27 19:43:04 -080053 val = (val * volume[chn & 1]) >> 8;
54 p[0] = val;
55 p[1] = val >> 8;
56 p[2] = val >> 16;
57 ++chn;
58 }
59 }
60}
61
62/*
63 Find a free URB, prepare audio data, and submit URB.
64*/
65static int submit_audio_out_urb(struct snd_pcm_substream *substream)
66{
67 int index;
68 unsigned long flags;
69 int i, urb_size, urb_frames;
70 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
71 const int bytes_per_frame = line6pcm->properties->bytes_per_frame;
Shawn Bohrer45af4972009-11-15 22:17:50 -060072 const int frame_increment =
73 line6pcm->properties->snd_line6_rates.rats[0].num_min;
74 const int frame_factor =
75 line6pcm->properties->snd_line6_rates.rats[0].den *
76 (USB_INTERVALS_PER_SECOND / LINE6_ISO_INTERVAL);
Markus Grabner705ecec2009-02-27 19:43:04 -080077 struct snd_pcm_runtime *runtime = substream->runtime;
78 struct urb *urb_out;
79
80 spin_lock_irqsave(&line6pcm->lock_audio_out, flags);
Shawn Bohrer45af4972009-11-15 22:17:50 -060081 index =
82 find_first_zero_bit(&line6pcm->active_urb_out, LINE6_ISO_BUFFERS);
Markus Grabner705ecec2009-02-27 19:43:04 -080083
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080084 if (index < 0 || index >= LINE6_ISO_BUFFERS) {
Markus Grabner705ecec2009-02-27 19:43:04 -080085 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
86 dev_err(s2m(substream), "no free URB found\n");
87 return -EINVAL;
88 }
89
90 urb_out = line6pcm->urb_audio_out[index];
91 urb_size = 0;
92
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080093 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -080094 /* compute frame size for given sampling rate */
95 int n, fs;
Shawn Bohrer45af4972009-11-15 22:17:50 -060096 struct usb_iso_packet_descriptor *fout =
97 &urb_out->iso_frame_desc[i];
Markus Grabner705ecec2009-02-27 19:43:04 -080098 line6pcm->count_out += frame_increment;
99 n = line6pcm->count_out / frame_factor;
100 line6pcm->count_out -= n * frame_factor;
101 fs = n * bytes_per_frame;
102 fout->offset = urb_size;
103 fout->length = fs;
104 urb_size += fs;
105 }
106
107 urb_frames = urb_size / bytes_per_frame;
108
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800109 if (test_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags)) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800110 urb_out->transfer_buffer = line6pcm->wrap_out;
111 memset(line6pcm->wrap_out, 0, urb_size);
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800112 } else {
113 if (line6pcm->pos_out + urb_frames > runtime->buffer_size) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800114 /*
Shawn Bohrer45af4972009-11-15 22:17:50 -0600115 The transferred area goes over buffer boundary,
116 copy the data to the temp buffer.
117 */
Markus Grabner705ecec2009-02-27 19:43:04 -0800118 int len;
119 len = runtime->buffer_size - line6pcm->pos_out;
120 urb_out->transfer_buffer = line6pcm->wrap_out;
121
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800122 if (len > 0) {
Shawn Bohrer45af4972009-11-15 22:17:50 -0600123 memcpy(line6pcm->wrap_out,
124 runtime->dma_area +
125 line6pcm->pos_out * bytes_per_frame,
126 len * bytes_per_frame);
127 memcpy(line6pcm->wrap_out +
128 len * bytes_per_frame, runtime->dma_area,
129 (urb_frames - len) * bytes_per_frame);
130 } else {
131 /* this is somewhat paranoid */
132 dev_err(s2m(substream),
133 "driver bug: len = %d\n", len);
134 }
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800135 } else {
Markus Grabner705ecec2009-02-27 19:43:04 -0800136 /* set the buffer pointer */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600137 urb_out->transfer_buffer =
138 runtime->dma_area +
139 line6pcm->pos_out * bytes_per_frame;
Markus Grabner705ecec2009-02-27 19:43:04 -0800140 }
141 }
142
Shawn Bohrer7f66fe52009-11-15 22:17:51 -0600143 line6pcm->pos_out += urb_frames;
144 if (line6pcm->pos_out >= runtime->buffer_size)
Markus Grabner705ecec2009-02-27 19:43:04 -0800145 line6pcm->pos_out -= runtime->buffer_size;
146
147 urb_out->transfer_buffer_length = urb_size;
148 urb_out->context = substream;
149 change_volume(urb_out, line6pcm->volume, bytes_per_frame);
150
151#if DO_DUMP_PCM_SEND
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800152 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Shawn Bohrer45af4972009-11-15 22:17:50 -0600153 struct usb_iso_packet_descriptor *fout =
154 &urb_out->iso_frame_desc[i];
155 line6_write_hexdump(line6pcm->line6, 'P',
156 urb_out->transfer_buffer + fout->offset,
157 fout->length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800158 }
159#endif
160
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800161 if (usb_submit_urb(urb_out, GFP_ATOMIC) == 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800162 set_bit(index, &line6pcm->active_urb_out);
163 else
Shawn Bohrer45af4972009-11-15 22:17:50 -0600164 dev_err(s2m(substream), "URB out #%d submission failed\n",
165 index);
Markus Grabner705ecec2009-02-27 19:43:04 -0800166
167 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
168 return 0;
169}
170
171/*
172 Submit all currently available playback URBs.
173*/
174static int submit_audio_out_all_urbs(struct snd_pcm_substream *substream)
175{
176 int ret, i;
177
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800178 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
179 ret = submit_audio_out_urb(substream);
180 if (ret < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800181 return ret;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800182 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800183
184 return 0;
185}
186
187/*
188 Unlink all currently active playback URBs.
189*/
190static void unlink_audio_out_urbs(struct snd_line6_pcm *line6pcm)
191{
192 unsigned int i;
193
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800194 for (i = LINE6_ISO_BUFFERS; i--;) {
195 if (test_bit(i, &line6pcm->active_urb_out)) {
196 if (!test_and_set_bit(i, &line6pcm->unlink_urb_out)) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800197 struct urb *u = line6pcm->urb_audio_out[i];
Markus Grabner705ecec2009-02-27 19:43:04 -0800198 usb_unlink_urb(u);
199 }
200 }
201 }
202}
203
204/*
Shawn Bohrer45af4972009-11-15 22:17:50 -0600205 Wait until unlinking of all currently active playback URBs has been finished.
Markus Grabner705ecec2009-02-27 19:43:04 -0800206*/
207static void wait_clear_audio_out_urbs(struct snd_line6_pcm *line6pcm)
208{
209 int timeout = HZ;
210 unsigned int i;
211 int alive;
212
213 do {
214 alive = 0;
215 for (i = LINE6_ISO_BUFFERS; i--;) {
216 if (test_bit(i, &line6pcm->active_urb_out))
217 alive++;
218 }
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800219 if (!alive)
Markus Grabner705ecec2009-02-27 19:43:04 -0800220 break;
221 set_current_state(TASK_UNINTERRUPTIBLE);
222 schedule_timeout(1);
223 } while (--timeout > 0);
224 if (alive)
225 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
226
227 line6pcm->active_urb_out = 0;
228 line6pcm->unlink_urb_out = 0;
229}
230
231/*
232 Unlink all currently active playback URBs, and wait for finishing.
233*/
234void unlink_wait_clear_audio_out_urbs(struct snd_line6_pcm *line6pcm)
235{
236 unlink_audio_out_urbs(line6pcm);
237 wait_clear_audio_out_urbs(line6pcm);
238}
239
240/*
241 Callback for completed playback URB.
242*/
Greg Kroah-Hartman0c7ab152009-02-27 20:28:04 -0800243static void audio_out_callback(struct urb *urb)
Markus Grabner705ecec2009-02-27 19:43:04 -0800244{
245 int i, index, length = 0, shutdown = 0;
246 unsigned long flags;
247
Shawn Bohrer45af4972009-11-15 22:17:50 -0600248 struct snd_pcm_substream *substream =
249 (struct snd_pcm_substream *)urb->context;
Markus Grabner705ecec2009-02-27 19:43:04 -0800250 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
251 struct snd_pcm_runtime *runtime = substream->runtime;
252
253 /* find index of URB */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800254 for (index = LINE6_ISO_BUFFERS; index--;)
255 if (urb == line6pcm->urb_audio_out[index])
Markus Grabner705ecec2009-02-27 19:43:04 -0800256 break;
257
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800258 if (index < 0)
Shawn Bohrer45af4972009-11-15 22:17:50 -0600259 return; /* URB has been unlinked asynchronously */
Markus Grabner705ecec2009-02-27 19:43:04 -0800260
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800261 for (i = LINE6_ISO_PACKETS; i--;)
Markus Grabner705ecec2009-02-27 19:43:04 -0800262 length += urb->iso_frame_desc[i].length;
263
264 spin_lock_irqsave(&line6pcm->lock_audio_out, flags);
Shawn Bohrer45af4972009-11-15 22:17:50 -0600265 line6pcm->pos_out_done +=
266 length / line6pcm->properties->bytes_per_frame;
Markus Grabner705ecec2009-02-27 19:43:04 -0800267
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800268 if (line6pcm->pos_out_done >= runtime->buffer_size)
Markus Grabner705ecec2009-02-27 19:43:04 -0800269 line6pcm->pos_out_done -= runtime->buffer_size;
270
271 clear_bit(index, &line6pcm->active_urb_out);
272
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800273 for (i = LINE6_ISO_PACKETS; i--;)
274 if (urb->iso_frame_desc[i].status == -ESHUTDOWN) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800275 shutdown = 1;
276 break;
277 }
278
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800279 if (test_bit(index, &line6pcm->unlink_urb_out))
Markus Grabner705ecec2009-02-27 19:43:04 -0800280 shutdown = 1;
281
282 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
283
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800284 if (!shutdown) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800285 submit_audio_out_urb(substream);
286
Shawn Bohrer7f66fe52009-11-15 22:17:51 -0600287 line6pcm->bytes_out += length;
288 if (line6pcm->bytes_out >= line6pcm->period_out) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800289 line6pcm->bytes_out -= line6pcm->period_out;
290 snd_pcm_period_elapsed(substream);
291 }
292 }
293}
294
295/* open playback callback */
296static int snd_line6_playback_open(struct snd_pcm_substream *substream)
297{
298 int err;
299 struct snd_pcm_runtime *runtime = substream->runtime;
300 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
301
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800302 err = snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
Shawn Bohrer45af4972009-11-15 22:17:50 -0600303 (&line6pcm->properties->
304 snd_line6_rates));
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800305 if (err < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800306 return err;
307
308 runtime->hw = line6pcm->properties->snd_line6_playback_hw;
309 return 0;
310}
311
312/* close playback callback */
313static int snd_line6_playback_close(struct snd_pcm_substream *substream)
314{
315 return 0;
316}
317
318/* hw_params playback callback */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600319static int snd_line6_playback_hw_params(struct snd_pcm_substream *substream,
320 struct snd_pcm_hw_params *hw_params)
Markus Grabner705ecec2009-02-27 19:43:04 -0800321{
322 int ret;
323 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
324
325 /* -- Florian Demski [FD] */
326 /* don't ask me why, but this fixes the bug on my machine */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800327 if (line6pcm == NULL) {
328 if (substream->pcm == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800329 return -ENOMEM;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800330 if (substream->pcm->private_data == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800331 return -ENOMEM;
332 substream->private_data = substream->pcm->private_data;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800333 line6pcm = snd_pcm_substream_chip(substream);
Markus Grabner705ecec2009-02-27 19:43:04 -0800334 }
335 /* -- [FD] end */
336
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800337 ret = snd_pcm_lib_malloc_pages(substream,
338 params_buffer_bytes(hw_params));
339 if (ret < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800340 return ret;
341
342 line6pcm->period_out = params_period_bytes(hw_params);
343 line6pcm->wrap_out = kmalloc(2 * LINE6_ISO_PACKET_SIZE_MAX, GFP_KERNEL);
344
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800345 if (!line6pcm->wrap_out) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800346 dev_err(s2m(substream), "cannot malloc wrap_out\n");
347 return -ENOMEM;
348 }
349
350 return 0;
351}
352
353/* hw_free playback callback */
354static int snd_line6_playback_hw_free(struct snd_pcm_substream *substream)
355{
356 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
357 unlink_wait_clear_audio_out_urbs(line6pcm);
358
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800359 kfree(line6pcm->wrap_out);
360 line6pcm->wrap_out = NULL;
Markus Grabner705ecec2009-02-27 19:43:04 -0800361
362 return snd_pcm_lib_free_pages(substream);
363}
364
365/* trigger playback callback */
366int snd_line6_playback_trigger(struct snd_pcm_substream *substream, int cmd)
367{
368 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
369 int err;
370 line6pcm->count_out = 0;
371
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800372 switch (cmd) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800373 case SNDRV_PCM_TRIGGER_START:
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800374 if (!test_and_set_bit(BIT_RUNNING_PLAYBACK, &line6pcm->flags)) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800375 err = submit_audio_out_all_urbs(substream);
376
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800377 if (err < 0) {
Shawn Bohrer45af4972009-11-15 22:17:50 -0600378 clear_bit(BIT_RUNNING_PLAYBACK,
379 &line6pcm->flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800380 return err;
381 }
382 }
383
384 break;
385
386 case SNDRV_PCM_TRIGGER_STOP:
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800387 if (test_and_clear_bit(BIT_RUNNING_PLAYBACK, &line6pcm->flags))
Markus Grabner705ecec2009-02-27 19:43:04 -0800388 unlink_audio_out_urbs(line6pcm);
389
390 break;
391
392 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
393 set_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags);
394 break;
395
396 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
397 clear_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags);
398 break;
399
400 default:
401 return -EINVAL;
402 }
403
404 return 0;
405}
406
407/* playback pointer callback */
408static snd_pcm_uframes_t
409snd_line6_playback_pointer(struct snd_pcm_substream *substream)
410{
411 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
412 return line6pcm->pos_out_done;
413}
414
415/* playback operators */
416struct snd_pcm_ops snd_line6_playback_ops = {
Shawn Bohrer45af4972009-11-15 22:17:50 -0600417 .open = snd_line6_playback_open,
418 .close = snd_line6_playback_close,
419 .ioctl = snd_pcm_lib_ioctl,
420 .hw_params = snd_line6_playback_hw_params,
421 .hw_free = snd_line6_playback_hw_free,
422 .prepare = snd_line6_prepare,
423 .trigger = snd_line6_trigger,
424 .pointer = snd_line6_playback_pointer,
Markus Grabner705ecec2009-02-27 19:43:04 -0800425};
426
427int create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
428{
429 int i;
430
431 /* create audio URBs and fill in constant values: */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800432 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800433 struct urb *urb;
434
435 /* URB for audio out: */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600436 urb = line6pcm->urb_audio_out[i] =
437 usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800438
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800439 if (urb == NULL) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800440 dev_err(line6pcm->line6->ifcdev, "Out of memory\n");
441 return -ENOMEM;
442 }
443
444 urb->dev = line6pcm->line6->usbdev;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600445 urb->pipe =
446 usb_sndisocpipe(line6pcm->line6->usbdev,
447 line6pcm->
448 ep_audio_write & USB_ENDPOINT_NUMBER_MASK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800449 urb->transfer_flags = URB_ISO_ASAP;
450 urb->start_frame = -1;
451 urb->number_of_packets = LINE6_ISO_PACKETS;
452 urb->interval = LINE6_ISO_INTERVAL;
453 urb->error_count = 0;
454 urb->complete = audio_out_callback;
455 }
456
457 return 0;
458}