blob: 10c54383658367ac4fc81eb2ddc6658a28e1da9d [file] [log] [blame]
Markus Grabner705ecec2009-02-27 19:43:04 -08001/*
Markus Grabnere1a164d2010-08-23 01:08:25 +02002 * Line6 Linux USB driver - 0.9.1beta
Markus Grabner705ecec2009-02-27 19:43:04 -08003 *
Markus Grabner1027f4762010-08-12 01:35:30 +02004 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
Markus Grabner705ecec2009-02-27 19:43:04 -08005 *
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
Markus Grabner705ecec2009-02-27 19:43:04 -080012#include <sound/core.h>
13#include <sound/pcm.h>
14#include <sound/pcm_params.h>
15
16#include "audio.h"
Markus Grabner1027f4762010-08-12 01:35:30 +020017#include "capture.h"
18#include "driver.h"
Markus Grabner705ecec2009-02-27 19:43:04 -080019#include "pcm.h"
20#include "pod.h"
Greg Kroah-Hartmanb702ed252009-02-27 20:45:03 -080021#include "playback.h"
Markus Grabner705ecec2009-02-27 19:43:04 -080022
Markus Grabner705ecec2009-02-27 19:43:04 -080023/*
24 Software stereo volume control.
25*/
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080026static void change_volume(struct urb *urb_out, int volume[],
27 int bytes_per_frame)
Markus Grabner705ecec2009-02-27 19:43:04 -080028{
29 int chn = 0;
30
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080031 if (volume[0] == 256 && volume[1] == 256)
Shawn Bohrer45af4972009-11-15 22:17:50 -060032 return; /* maximum volume - no change */
Markus Grabner705ecec2009-02-27 19:43:04 -080033
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080034 if (bytes_per_frame == 4) {
Markus Grabner705ecec2009-02-27 19:43:04 -080035 short *p, *buf_end;
36 p = (short *)urb_out->transfer_buffer;
37 buf_end = p + urb_out->transfer_buffer_length / sizeof(*p);
38
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080039 for (; p < buf_end; ++p) {
Markus Grabner705ecec2009-02-27 19:43:04 -080040 *p = (*p * volume[chn & 1]) >> 8;
41 ++chn;
42 }
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080043 } else if (bytes_per_frame == 6) {
Markus Grabner705ecec2009-02-27 19:43:04 -080044 unsigned char *p, *buf_end;
45 p = (unsigned char *)urb_out->transfer_buffer;
46 buf_end = p + urb_out->transfer_buffer_length;
47
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080048 for (; p < buf_end; p += 3) {
49 int val;
50 val = p[0] + (p[1] << 8) + ((signed char)p[2] << 16);
Markus Grabner705ecec2009-02-27 19:43:04 -080051 val = (val * volume[chn & 1]) >> 8;
52 p[0] = val;
53 p[1] = val >> 8;
54 p[2] = val >> 16;
55 ++chn;
56 }
57 }
58}
59
Markus Grabner1027f4762010-08-12 01:35:30 +020060#ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
61
62/*
63 Create signal for impulse response test.
64*/
65static void create_impulse_test_signal(struct snd_line6_pcm *line6pcm,
66 struct urb *urb_out, int bytes_per_frame)
67{
68 int frames = urb_out->transfer_buffer_length / bytes_per_frame;
69
70 if (bytes_per_frame == 4) {
Markus Grabnere1a164d2010-08-23 01:08:25 +020071 int i;
72 short *pi = (short *)line6pcm->prev_fbuf;
73 short *po = (short *)urb_out->transfer_buffer;
74
75 for (i = 0; i < frames; ++i) {
76 po[0] = pi[0];
77 po[1] = 0;
78 pi += 2;
79 po += 2;
80 }
Markus Grabner1027f4762010-08-12 01:35:30 +020081 } else if (bytes_per_frame == 6) {
82 int i, j;
83 unsigned char *pi = line6pcm->prev_fbuf;
84 unsigned char *po = urb_out->transfer_buffer;
85
86 for (i = 0; i < frames; ++i) {
87 for (j = 0; j < bytes_per_frame / 2; ++j)
88 po[j] = pi[j];
89
90 for (; j < bytes_per_frame; ++j)
91 po[j] = 0;
92
93 pi += bytes_per_frame;
94 po += bytes_per_frame;
95 }
Markus Grabnere1a164d2010-08-23 01:08:25 +020096 }
97 if (--line6pcm->impulse_count <= 0) {
98 ((unsigned char *)(urb_out->transfer_buffer))[bytes_per_frame -
99 1] =
100 line6pcm->impulse_volume;
101 line6pcm->impulse_count = line6pcm->impulse_period;
Markus Grabner1027f4762010-08-12 01:35:30 +0200102 }
103}
104
105#endif
106
107/*
108 Add signal to buffer for software monitoring.
109*/
110static void add_monitor_signal(struct urb *urb_out, unsigned char *signal,
111 int volume, int bytes_per_frame)
112{
113 if (volume == 0)
114 return; /* zero volume - no change */
115
116 if (bytes_per_frame == 4) {
117 short *pi, *po, *buf_end;
118 pi = (short *)signal;
119 po = (short *)urb_out->transfer_buffer;
120 buf_end = po + urb_out->transfer_buffer_length / sizeof(*po);
121
122 for (; po < buf_end; ++pi, ++po)
123 *po += (*pi * volume) >> 8;
124 }
125
126 /*
Markus Grabnere1a164d2010-08-23 01:08:25 +0200127 We don't need to handle devices with 6 bytes per frame here
128 since they all support hardware monitoring.
129 */
Markus Grabner1027f4762010-08-12 01:35:30 +0200130}
131
Markus Grabner705ecec2009-02-27 19:43:04 -0800132/*
133 Find a free URB, prepare audio data, and submit URB.
134*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200135static int submit_audio_out_urb(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800136{
137 int index;
138 unsigned long flags;
139 int i, urb_size, urb_frames;
Markus Grabnere1a164d2010-08-23 01:08:25 +0200140 int ret;
Markus Grabner705ecec2009-02-27 19:43:04 -0800141 const int bytes_per_frame = line6pcm->properties->bytes_per_frame;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600142 const int frame_increment =
143 line6pcm->properties->snd_line6_rates.rats[0].num_min;
144 const int frame_factor =
145 line6pcm->properties->snd_line6_rates.rats[0].den *
146 (USB_INTERVALS_PER_SECOND / LINE6_ISO_INTERVAL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800147 struct urb *urb_out;
148
149 spin_lock_irqsave(&line6pcm->lock_audio_out, flags);
Shawn Bohrer45af4972009-11-15 22:17:50 -0600150 index =
151 find_first_zero_bit(&line6pcm->active_urb_out, LINE6_ISO_BUFFERS);
Markus Grabner705ecec2009-02-27 19:43:04 -0800152
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800153 if (index < 0 || index >= LINE6_ISO_BUFFERS) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800154 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
Markus Grabner1027f4762010-08-12 01:35:30 +0200155 dev_err(line6pcm->line6->ifcdev, "no free URB found\n");
Markus Grabner705ecec2009-02-27 19:43:04 -0800156 return -EINVAL;
157 }
158
159 urb_out = line6pcm->urb_audio_out[index];
160 urb_size = 0;
161
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800162 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800163 /* compute frame size for given sampling rate */
Markus Grabner1027f4762010-08-12 01:35:30 +0200164 int fsize = 0;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600165 struct usb_iso_packet_descriptor *fout =
166 &urb_out->iso_frame_desc[i];
Markus Grabner1027f4762010-08-12 01:35:30 +0200167
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700168 if (line6pcm->flags & MASK_CAPTURE)
Markus Grabner1027f4762010-08-12 01:35:30 +0200169 fsize = line6pcm->prev_fsize;
Markus Grabner1027f4762010-08-12 01:35:30 +0200170
171 if (fsize == 0) {
172 int n;
173 line6pcm->count_out += frame_increment;
174 n = line6pcm->count_out / frame_factor;
175 line6pcm->count_out -= n * frame_factor;
176 fsize = n * bytes_per_frame;
177 }
178
Markus Grabner705ecec2009-02-27 19:43:04 -0800179 fout->offset = urb_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200180 fout->length = fsize;
181 urb_size += fsize;
182 }
183
184 if (urb_size == 0) {
185 /* can't determine URB size */
186 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
187 dev_err(line6pcm->line6->ifcdev, "driver bug: urb_size = 0\n"); /* this is somewhat paranoid */
188 return -EINVAL;
Markus Grabner705ecec2009-02-27 19:43:04 -0800189 }
190
191 urb_frames = urb_size / bytes_per_frame;
Markus Grabner1027f4762010-08-12 01:35:30 +0200192 urb_out->transfer_buffer =
193 line6pcm->buffer_out +
194 line6pcm->max_packet_size * line6pcm->index_out;
195 urb_out->transfer_buffer_length = urb_size;
196 urb_out->context = line6pcm;
Markus Grabner705ecec2009-02-27 19:43:04 -0800197
Markus Grabner1027f4762010-08-12 01:35:30 +0200198 if (++line6pcm->index_out == LINE6_ISO_BUFFERS)
199 line6pcm->index_out = 0;
200
201 if (test_bit(BIT_PCM_ALSA_PLAYBACK, &line6pcm->flags) &&
202 !test_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags)) {
203 struct snd_pcm_runtime *runtime =
204 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK)->runtime;
205
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800206 if (line6pcm->pos_out + urb_frames > runtime->buffer_size) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800207 /*
Shawn Bohrer45af4972009-11-15 22:17:50 -0600208 The transferred area goes over buffer boundary,
209 copy the data to the temp buffer.
210 */
Markus Grabner705ecec2009-02-27 19:43:04 -0800211 int len;
212 len = runtime->buffer_size - line6pcm->pos_out;
Markus Grabner705ecec2009-02-27 19:43:04 -0800213
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800214 if (len > 0) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200215 memcpy(urb_out->transfer_buffer,
Shawn Bohrer45af4972009-11-15 22:17:50 -0600216 runtime->dma_area +
217 line6pcm->pos_out * bytes_per_frame,
218 len * bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200219 memcpy(urb_out->transfer_buffer +
Shawn Bohrer45af4972009-11-15 22:17:50 -0600220 len * bytes_per_frame, runtime->dma_area,
221 (urb_frames - len) * bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200222 } else
223 dev_err(line6pcm->line6->ifcdev, "driver bug: len = %d\n", len); /* this is somewhat paranoid */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800224 } else {
Markus Grabner1027f4762010-08-12 01:35:30 +0200225#if LINE6_REUSE_DMA_AREA_FOR_PLAYBACK
Markus Grabner705ecec2009-02-27 19:43:04 -0800226 /* set the buffer pointer */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600227 urb_out->transfer_buffer =
228 runtime->dma_area +
229 line6pcm->pos_out * bytes_per_frame;
Markus Grabner1027f4762010-08-12 01:35:30 +0200230#else
231 /* copy data */
232 memcpy(urb_out->transfer_buffer,
233 runtime->dma_area +
234 line6pcm->pos_out * bytes_per_frame,
235 urb_out->transfer_buffer_length);
236#endif
Markus Grabner705ecec2009-02-27 19:43:04 -0800237 }
Markus Grabner1027f4762010-08-12 01:35:30 +0200238
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700239 line6pcm->pos_out += urb_frames;
240 if (line6pcm->pos_out >= runtime->buffer_size)
Markus Grabner1027f4762010-08-12 01:35:30 +0200241 line6pcm->pos_out -= runtime->buffer_size;
242 } else {
243 memset(urb_out->transfer_buffer, 0,
244 urb_out->transfer_buffer_length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800245 }
246
Markus Grabner1027f4762010-08-12 01:35:30 +0200247 change_volume(urb_out, line6pcm->volume_playback, bytes_per_frame);
Markus Grabner705ecec2009-02-27 19:43:04 -0800248
Peter Huewe597a1e72010-12-07 23:38:02 +0100249 if (line6pcm->prev_fbuf != NULL) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200250#ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
251 if (line6pcm->flags & MASK_PCM_IMPULSE) {
252 create_impulse_test_signal(line6pcm, urb_out,
253 bytes_per_frame);
254 if (line6pcm->flags & MASK_PCM_ALSA_CAPTURE) {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200255 line6_capture_copy(line6pcm,
256 urb_out->transfer_buffer,
257 urb_out->
258 transfer_buffer_length);
259 line6_capture_check_period(line6pcm,
260 urb_out->transfer_buffer_length);
Markus Grabner1027f4762010-08-12 01:35:30 +0200261 }
262 } else {
263#endif
264 if (!
Markus Grabnere1a164d2010-08-23 01:08:25 +0200265 (line6pcm->line6->
266 properties->capabilities & LINE6_BIT_HWMON)
267&& (line6pcm->flags & MASK_PLAYBACK)
268&& (line6pcm->flags & MASK_CAPTURE))
Markus Grabner1027f4762010-08-12 01:35:30 +0200269 add_monitor_signal(urb_out, line6pcm->prev_fbuf,
270 line6pcm->volume_monitor,
271 bytes_per_frame);
272#ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
273 }
274#endif
275 }
276#ifdef CONFIG_LINE6_USB_DUMP_PCM
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800277 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Shawn Bohrer45af4972009-11-15 22:17:50 -0600278 struct usb_iso_packet_descriptor *fout =
279 &urb_out->iso_frame_desc[i];
280 line6_write_hexdump(line6pcm->line6, 'P',
281 urb_out->transfer_buffer + fout->offset,
282 fout->length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800283 }
284#endif
285
Markus Grabnere1a164d2010-08-23 01:08:25 +0200286 ret = usb_submit_urb(urb_out, GFP_ATOMIC);
287
288 if (ret == 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800289 set_bit(index, &line6pcm->active_urb_out);
290 else
Markus Grabner1027f4762010-08-12 01:35:30 +0200291 dev_err(line6pcm->line6->ifcdev,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200292 "URB out #%d submission failed (%d)\n", index, ret);
Markus Grabner705ecec2009-02-27 19:43:04 -0800293
294 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
295 return 0;
296}
297
298/*
299 Submit all currently available playback URBs.
300*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200301int line6_submit_audio_out_all_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800302{
303 int ret, i;
304
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800305 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200306 ret = submit_audio_out_urb(line6pcm);
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800307 if (ret < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800308 return ret;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800309 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800310
311 return 0;
312}
313
314/*
315 Unlink all currently active playback URBs.
316*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200317void line6_unlink_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800318{
319 unsigned int i;
320
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800321 for (i = LINE6_ISO_BUFFERS; i--;) {
322 if (test_bit(i, &line6pcm->active_urb_out)) {
323 if (!test_and_set_bit(i, &line6pcm->unlink_urb_out)) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800324 struct urb *u = line6pcm->urb_audio_out[i];
Markus Grabner705ecec2009-02-27 19:43:04 -0800325 usb_unlink_urb(u);
326 }
327 }
328 }
329}
330
331/*
Markus Grabner1027f4762010-08-12 01:35:30 +0200332 Wait until unlinking of all currently active playback URBs has been finished.
Markus Grabner705ecec2009-02-27 19:43:04 -0800333*/
334static void wait_clear_audio_out_urbs(struct snd_line6_pcm *line6pcm)
335{
336 int timeout = HZ;
337 unsigned int i;
338 int alive;
339
340 do {
341 alive = 0;
342 for (i = LINE6_ISO_BUFFERS; i--;) {
343 if (test_bit(i, &line6pcm->active_urb_out))
344 alive++;
345 }
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800346 if (!alive)
Markus Grabner705ecec2009-02-27 19:43:04 -0800347 break;
348 set_current_state(TASK_UNINTERRUPTIBLE);
349 schedule_timeout(1);
350 } while (--timeout > 0);
351 if (alive)
352 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
Markus Grabner705ecec2009-02-27 19:43:04 -0800353}
354
355/*
356 Unlink all currently active playback URBs, and wait for finishing.
357*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200358void line6_unlink_wait_clear_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800359{
Markus Grabner1027f4762010-08-12 01:35:30 +0200360 line6_unlink_audio_out_urbs(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800361 wait_clear_audio_out_urbs(line6pcm);
362}
363
364/*
365 Callback for completed playback URB.
366*/
Greg Kroah-Hartman0c7ab152009-02-27 20:28:04 -0800367static void audio_out_callback(struct urb *urb)
Markus Grabner705ecec2009-02-27 19:43:04 -0800368{
369 int i, index, length = 0, shutdown = 0;
370 unsigned long flags;
371
Markus Grabnere1a164d2010-08-23 01:08:25 +0200372 struct snd_line6_pcm *line6pcm = (struct snd_line6_pcm *)urb->context;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600373 struct snd_pcm_substream *substream =
Markus Grabner1027f4762010-08-12 01:35:30 +0200374 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK);
375
376#if USE_CLEAR_BUFFER_WORKAROUND
377 memset(urb->transfer_buffer, 0, urb->transfer_buffer_length);
378#endif
379
380 line6pcm->last_frame_out = urb->start_frame;
Markus Grabner705ecec2009-02-27 19:43:04 -0800381
382 /* find index of URB */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800383 for (index = LINE6_ISO_BUFFERS; index--;)
384 if (urb == line6pcm->urb_audio_out[index])
Markus Grabner705ecec2009-02-27 19:43:04 -0800385 break;
386
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800387 if (index < 0)
Shawn Bohrer45af4972009-11-15 22:17:50 -0600388 return; /* URB has been unlinked asynchronously */
Markus Grabner705ecec2009-02-27 19:43:04 -0800389
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800390 for (i = LINE6_ISO_PACKETS; i--;)
Markus Grabner705ecec2009-02-27 19:43:04 -0800391 length += urb->iso_frame_desc[i].length;
392
393 spin_lock_irqsave(&line6pcm->lock_audio_out, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800394
Markus Grabner1027f4762010-08-12 01:35:30 +0200395 if (test_bit(BIT_PCM_ALSA_PLAYBACK, &line6pcm->flags)) {
396 struct snd_pcm_runtime *runtime = substream->runtime;
397 line6pcm->pos_out_done +=
398 length / line6pcm->properties->bytes_per_frame;
399
400 if (line6pcm->pos_out_done >= runtime->buffer_size)
401 line6pcm->pos_out_done -= runtime->buffer_size;
402 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800403
404 clear_bit(index, &line6pcm->active_urb_out);
405
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800406 for (i = LINE6_ISO_PACKETS; i--;)
Markus Grabnere1a164d2010-08-23 01:08:25 +0200407 if (urb->iso_frame_desc[i].status == -EXDEV) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800408 shutdown = 1;
409 break;
410 }
411
Markus Grabner1027f4762010-08-12 01:35:30 +0200412 if (test_and_clear_bit(index, &line6pcm->unlink_urb_out))
Markus Grabner705ecec2009-02-27 19:43:04 -0800413 shutdown = 1;
414
415 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
416
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800417 if (!shutdown) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200418 submit_audio_out_urb(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800419
Markus Grabner1027f4762010-08-12 01:35:30 +0200420 if (test_bit(BIT_PCM_ALSA_PLAYBACK, &line6pcm->flags)) {
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700421 line6pcm->bytes_out += length;
422 if (line6pcm->bytes_out >= line6pcm->period_out) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200423 line6pcm->bytes_out %= line6pcm->period_out;
424 snd_pcm_period_elapsed(substream);
425 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800426 }
427 }
428}
429
430/* open playback callback */
431static int snd_line6_playback_open(struct snd_pcm_substream *substream)
432{
433 int err;
434 struct snd_pcm_runtime *runtime = substream->runtime;
435 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
436
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800437 err = snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200438 (&line6pcm->
439 properties->snd_line6_rates));
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800440 if (err < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800441 return err;
442
443 runtime->hw = line6pcm->properties->snd_line6_playback_hw;
444 return 0;
445}
446
447/* close playback callback */
448static int snd_line6_playback_close(struct snd_pcm_substream *substream)
449{
450 return 0;
451}
452
453/* hw_params playback callback */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600454static int snd_line6_playback_hw_params(struct snd_pcm_substream *substream,
455 struct snd_pcm_hw_params *hw_params)
Markus Grabner705ecec2009-02-27 19:43:04 -0800456{
457 int ret;
458 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
459
460 /* -- Florian Demski [FD] */
461 /* don't ask me why, but this fixes the bug on my machine */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800462 if (line6pcm == NULL) {
463 if (substream->pcm == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800464 return -ENOMEM;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800465 if (substream->pcm->private_data == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800466 return -ENOMEM;
467 substream->private_data = substream->pcm->private_data;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800468 line6pcm = snd_pcm_substream_chip(substream);
Markus Grabner705ecec2009-02-27 19:43:04 -0800469 }
470 /* -- [FD] end */
471
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800472 ret = snd_pcm_lib_malloc_pages(substream,
473 params_buffer_bytes(hw_params));
474 if (ret < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800475 return ret;
476
477 line6pcm->period_out = params_period_bytes(hw_params);
Markus Grabner705ecec2009-02-27 19:43:04 -0800478 return 0;
479}
480
481/* hw_free playback callback */
482static int snd_line6_playback_hw_free(struct snd_pcm_substream *substream)
483{
Markus Grabner705ecec2009-02-27 19:43:04 -0800484 return snd_pcm_lib_free_pages(substream);
485}
486
487/* trigger playback callback */
Markus Grabner1027f4762010-08-12 01:35:30 +0200488int snd_line6_playback_trigger(struct snd_line6_pcm *line6pcm, int cmd)
Markus Grabner705ecec2009-02-27 19:43:04 -0800489{
Markus Grabner705ecec2009-02-27 19:43:04 -0800490 int err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800491
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800492 switch (cmd) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800493 case SNDRV_PCM_TRIGGER_START:
Markus Grabner1027f4762010-08-12 01:35:30 +0200494#ifdef CONFIG_PM
495 case SNDRV_PCM_TRIGGER_RESUME:
496#endif
497 err = line6_pcm_start(line6pcm, MASK_PCM_ALSA_PLAYBACK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800498
Markus Grabner1027f4762010-08-12 01:35:30 +0200499 if (err < 0)
500 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800501
502 break;
503
504 case SNDRV_PCM_TRIGGER_STOP:
Markus Grabner1027f4762010-08-12 01:35:30 +0200505#ifdef CONFIG_PM
506 case SNDRV_PCM_TRIGGER_SUSPEND:
507#endif
508 err = line6_pcm_stop(line6pcm, MASK_PCM_ALSA_PLAYBACK);
509
510 if (err < 0)
511 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800512
513 break;
514
515 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
516 set_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags);
517 break;
518
519 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
520 clear_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags);
521 break;
522
523 default:
524 return -EINVAL;
525 }
526
527 return 0;
528}
529
530/* playback pointer callback */
531static snd_pcm_uframes_t
532snd_line6_playback_pointer(struct snd_pcm_substream *substream)
533{
534 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
535 return line6pcm->pos_out_done;
536}
537
538/* playback operators */
539struct snd_pcm_ops snd_line6_playback_ops = {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200540 .open = snd_line6_playback_open,
541 .close = snd_line6_playback_close,
542 .ioctl = snd_pcm_lib_ioctl,
543 .hw_params = snd_line6_playback_hw_params,
544 .hw_free = snd_line6_playback_hw_free,
545 .prepare = snd_line6_prepare,
546 .trigger = snd_line6_trigger,
547 .pointer = snd_line6_playback_pointer,
Markus Grabner705ecec2009-02-27 19:43:04 -0800548};
549
Markus Grabner1027f4762010-08-12 01:35:30 +0200550int line6_create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800551{
552 int i;
553
554 /* create audio URBs and fill in constant values: */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800555 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800556 struct urb *urb;
557
558 /* URB for audio out: */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600559 urb = line6pcm->urb_audio_out[i] =
560 usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800561
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800562 if (urb == NULL) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800563 dev_err(line6pcm->line6->ifcdev, "Out of memory\n");
564 return -ENOMEM;
565 }
566
567 urb->dev = line6pcm->line6->usbdev;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600568 urb->pipe =
569 usb_sndisocpipe(line6pcm->line6->usbdev,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200570 line6pcm->ep_audio_write &
571 USB_ENDPOINT_NUMBER_MASK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800572 urb->transfer_flags = URB_ISO_ASAP;
573 urb->start_frame = -1;
574 urb->number_of_packets = LINE6_ISO_PACKETS;
575 urb->interval = LINE6_ISO_INTERVAL;
576 urb->error_count = 0;
577 urb->complete = audio_out_callback;
578 }
579
580 return 0;
581}