blob: 1c9f95a370ff771cb01a25b28987db90df16fdd8 [file] [log] [blame]
Markus Grabner705ecec2009-02-27 19:43:04 -08001/*
Chris Rorvickc078a4a2015-01-20 02:20:50 -06002 * Line 6 Linux USB driver
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
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +000012#include <linux/slab.h>
Markus Grabner705ecec2009-02-27 19:43:04 -080013#include <sound/core.h>
14#include <sound/pcm.h>
15#include <sound/pcm_params.h>
16
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"
Greg Kroah-Hartmanb702ed252009-02-27 20:45:03 -080020#include "playback.h"
Markus Grabner705ecec2009-02-27 19:43:04 -080021
Markus Grabner705ecec2009-02-27 19:43:04 -080022/*
23 Software stereo volume control.
24*/
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080025static void change_volume(struct urb *urb_out, int volume[],
26 int bytes_per_frame)
Markus Grabner705ecec2009-02-27 19:43:04 -080027{
28 int chn = 0;
29
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080030 if (volume[0] == 256 && volume[1] == 256)
Shawn Bohrer45af4972009-11-15 22:17:50 -060031 return; /* maximum volume - no change */
Markus Grabner705ecec2009-02-27 19:43:04 -080032
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080033 if (bytes_per_frame == 4) {
Markus Grabner705ecec2009-02-27 19:43:04 -080034 short *p, *buf_end;
Fabian Mewesa6b46992014-03-24 23:46:31 +010035
Markus Grabner705ecec2009-02-27 19:43:04 -080036 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;
Jerry Snitselaarf3c52612014-04-24 00:31:48 -070045
Markus Grabner705ecec2009-02-27 19:43:04 -080046 p = (unsigned char *)urb_out->transfer_buffer;
47 buf_end = p + urb_out->transfer_buffer_length;
48
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080049 for (; p < buf_end; p += 3) {
50 int val;
Fabian Mewesa6b46992014-03-24 23:46:31 +010051
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080052 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
Markus Grabner1027f4762010-08-12 01:35:30 +020062/*
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
Markus Grabner1027f4762010-08-12 01:35:30 +0200105/*
106 Add signal to buffer for software monitoring.
107*/
108static void add_monitor_signal(struct urb *urb_out, unsigned char *signal,
109 int volume, int bytes_per_frame)
110{
111 if (volume == 0)
112 return; /* zero volume - no change */
113
114 if (bytes_per_frame == 4) {
115 short *pi, *po, *buf_end;
Fabian Mewesa6b46992014-03-24 23:46:31 +0100116
Markus Grabner1027f4762010-08-12 01:35:30 +0200117 pi = (short *)signal;
118 po = (short *)urb_out->transfer_buffer;
119 buf_end = po + urb_out->transfer_buffer_length / sizeof(*po);
120
121 for (; po < buf_end; ++pi, ++po)
122 *po += (*pi * volume) >> 8;
123 }
124
125 /*
Markus Grabnere1a164d2010-08-23 01:08:25 +0200126 We don't need to handle devices with 6 bytes per frame here
127 since they all support hardware monitoring.
128 */
Markus Grabner1027f4762010-08-12 01:35:30 +0200129}
130
Markus Grabner705ecec2009-02-27 19:43:04 -0800131/*
132 Find a free URB, prepare audio data, and submit URB.
133*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200134static int submit_audio_out_urb(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800135{
136 int index;
137 unsigned long flags;
138 int i, urb_size, urb_frames;
Markus Grabnere1a164d2010-08-23 01:08:25 +0200139 int ret;
Markus Grabner705ecec2009-02-27 19:43:04 -0800140 const int bytes_per_frame = line6pcm->properties->bytes_per_frame;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600141 const int frame_increment =
142 line6pcm->properties->snd_line6_rates.rats[0].num_min;
143 const int frame_factor =
144 line6pcm->properties->snd_line6_rates.rats[0].den *
145 (USB_INTERVALS_PER_SECOND / LINE6_ISO_INTERVAL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800146 struct urb *urb_out;
147
148 spin_lock_irqsave(&line6pcm->lock_audio_out, flags);
Shawn Bohrer45af4972009-11-15 22:17:50 -0600149 index =
150 find_first_zero_bit(&line6pcm->active_urb_out, LINE6_ISO_BUFFERS);
Markus Grabner705ecec2009-02-27 19:43:04 -0800151
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800152 if (index < 0 || index >= LINE6_ISO_BUFFERS) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800153 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
Markus Grabner1027f4762010-08-12 01:35:30 +0200154 dev_err(line6pcm->line6->ifcdev, "no free URB found\n");
Markus Grabner705ecec2009-02-27 19:43:04 -0800155 return -EINVAL;
156 }
157
158 urb_out = line6pcm->urb_audio_out[index];
159 urb_size = 0;
160
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800161 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800162 /* compute frame size for given sampling rate */
Markus Grabner1027f4762010-08-12 01:35:30 +0200163 int fsize = 0;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600164 struct usb_iso_packet_descriptor *fout =
165 &urb_out->iso_frame_desc[i];
Markus Grabner1027f4762010-08-12 01:35:30 +0200166
Markus Grabner0ca54882012-01-20 00:09:09 +0100167 if (line6pcm->flags & LINE6_BITS_CAPTURE_STREAM)
Markus Grabner1027f4762010-08-12 01:35:30 +0200168 fsize = line6pcm->prev_fsize;
Markus Grabner1027f4762010-08-12 01:35:30 +0200169
170 if (fsize == 0) {
171 int n;
Fabian Mewesa6b46992014-03-24 23:46:31 +0100172
Markus Grabner1027f4762010-08-12 01:35:30 +0200173 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);
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100187 dev_err(line6pcm->line6->ifcdev, "driver bug: urb_size = 0\n");
Markus Grabner1027f4762010-08-12 01:35:30 +0200188 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 +
Stefan Hajnoczi153e3872011-12-10 02:12:29 +0100194 index * LINE6_ISO_PACKETS * line6pcm->max_packet_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200195 urb_out->transfer_buffer_length = urb_size;
196 urb_out->context = line6pcm;
Markus Grabner705ecec2009-02-27 19:43:04 -0800197
Markus Grabner0ca54882012-01-20 00:09:09 +0100198 if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM, &line6pcm->flags) &&
199 !test_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags)) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200200 struct snd_pcm_runtime *runtime =
201 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK)->runtime;
202
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800203 if (line6pcm->pos_out + urb_frames > runtime->buffer_size) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800204 /*
Shawn Bohrer45af4972009-11-15 22:17:50 -0600205 The transferred area goes over buffer boundary,
206 copy the data to the temp buffer.
207 */
Markus Grabner705ecec2009-02-27 19:43:04 -0800208 int len;
Fabian Mewesa6b46992014-03-24 23:46:31 +0100209
Markus Grabner705ecec2009-02-27 19:43:04 -0800210 len = runtime->buffer_size - line6pcm->pos_out;
Markus Grabner705ecec2009-02-27 19:43:04 -0800211
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800212 if (len > 0) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200213 memcpy(urb_out->transfer_buffer,
Shawn Bohrer45af4972009-11-15 22:17:50 -0600214 runtime->dma_area +
215 line6pcm->pos_out * bytes_per_frame,
216 len * bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200217 memcpy(urb_out->transfer_buffer +
Shawn Bohrer45af4972009-11-15 22:17:50 -0600218 len * bytes_per_frame, runtime->dma_area,
219 (urb_frames - len) * bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200220 } else
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100221 dev_err(line6pcm->line6->ifcdev, "driver bug: len = %d\n",
222 len);
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800223 } else {
Markus Grabner1027f4762010-08-12 01:35:30 +0200224 memcpy(urb_out->transfer_buffer,
225 runtime->dma_area +
226 line6pcm->pos_out * bytes_per_frame,
227 urb_out->transfer_buffer_length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800228 }
Markus Grabner1027f4762010-08-12 01:35:30 +0200229
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700230 line6pcm->pos_out += urb_frames;
231 if (line6pcm->pos_out >= runtime->buffer_size)
Markus Grabner1027f4762010-08-12 01:35:30 +0200232 line6pcm->pos_out -= runtime->buffer_size;
233 } else {
234 memset(urb_out->transfer_buffer, 0,
235 urb_out->transfer_buffer_length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800236 }
237
Markus Grabner1027f4762010-08-12 01:35:30 +0200238 change_volume(urb_out, line6pcm->volume_playback, bytes_per_frame);
Markus Grabner705ecec2009-02-27 19:43:04 -0800239
Peter Huewe597a1e72010-12-07 23:38:02 +0100240 if (line6pcm->prev_fbuf != NULL) {
Markus Grabner0ca54882012-01-20 00:09:09 +0100241 if (line6pcm->flags & LINE6_BITS_PCM_IMPULSE) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200242 create_impulse_test_signal(line6pcm, urb_out,
243 bytes_per_frame);
Ebru Akagunduz30bb0e72013-10-23 02:00:22 +0300244 if (line6pcm->flags &
245 LINE6_BIT_PCM_ALSA_CAPTURE_STREAM) {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200246 line6_capture_copy(line6pcm,
247 urb_out->transfer_buffer,
248 urb_out->
249 transfer_buffer_length);
250 line6_capture_check_period(line6pcm,
Ebru Akagunduz30bb0e72013-10-23 02:00:22 +0300251 urb_out->transfer_buffer_length);
Markus Grabner1027f4762010-08-12 01:35:30 +0200252 }
253 } else {
Markus Grabner1027f4762010-08-12 01:35:30 +0200254 if (!
Markus Grabnere1a164d2010-08-23 01:08:25 +0200255 (line6pcm->line6->
Chris Rorvick4cb1a4a2015-01-12 12:42:45 -0800256 properties->capabilities & LINE6_CAP_HWMON)
Markus Grabner0ca54882012-01-20 00:09:09 +0100257 && (line6pcm->flags & LINE6_BITS_PLAYBACK_STREAM)
258 && (line6pcm->flags & LINE6_BITS_CAPTURE_STREAM))
Markus Grabner1027f4762010-08-12 01:35:30 +0200259 add_monitor_signal(urb_out, line6pcm->prev_fbuf,
260 line6pcm->volume_monitor,
261 bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200262 }
Markus Grabner1027f4762010-08-12 01:35:30 +0200263 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800264
Markus Grabnere1a164d2010-08-23 01:08:25 +0200265 ret = usb_submit_urb(urb_out, GFP_ATOMIC);
266
267 if (ret == 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800268 set_bit(index, &line6pcm->active_urb_out);
269 else
Markus Grabner1027f4762010-08-12 01:35:30 +0200270 dev_err(line6pcm->line6->ifcdev,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200271 "URB out #%d submission failed (%d)\n", index, ret);
Markus Grabner705ecec2009-02-27 19:43:04 -0800272
273 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
274 return 0;
275}
276
277/*
278 Submit all currently available playback URBs.
279*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200280int line6_submit_audio_out_all_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800281{
282 int ret, i;
283
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800284 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200285 ret = submit_audio_out_urb(line6pcm);
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800286 if (ret < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800287 return ret;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800288 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800289
290 return 0;
291}
292
293/*
294 Unlink all currently active playback URBs.
295*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200296void line6_unlink_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800297{
298 unsigned int i;
299
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800300 for (i = LINE6_ISO_BUFFERS; i--;) {
301 if (test_bit(i, &line6pcm->active_urb_out)) {
302 if (!test_and_set_bit(i, &line6pcm->unlink_urb_out)) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800303 struct urb *u = line6pcm->urb_audio_out[i];
Jerry Snitselaarf3c52612014-04-24 00:31:48 -0700304
Markus Grabner705ecec2009-02-27 19:43:04 -0800305 usb_unlink_urb(u);
306 }
307 }
308 }
309}
310
311/*
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100312 Wait until unlinking of all currently active playback URBs has been
313 finished.
Markus Grabner705ecec2009-02-27 19:43:04 -0800314*/
Markus Grabner0ca54882012-01-20 00:09:09 +0100315void line6_wait_clear_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800316{
317 int timeout = HZ;
318 unsigned int i;
319 int alive;
320
321 do {
322 alive = 0;
323 for (i = LINE6_ISO_BUFFERS; i--;) {
324 if (test_bit(i, &line6pcm->active_urb_out))
325 alive++;
326 }
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800327 if (!alive)
Markus Grabner705ecec2009-02-27 19:43:04 -0800328 break;
329 set_current_state(TASK_UNINTERRUPTIBLE);
330 schedule_timeout(1);
331 } while (--timeout > 0);
332 if (alive)
333 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
Markus Grabner705ecec2009-02-27 19:43:04 -0800334}
335
336/*
337 Unlink all currently active playback URBs, and wait for finishing.
338*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200339void line6_unlink_wait_clear_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800340{
Markus Grabner1027f4762010-08-12 01:35:30 +0200341 line6_unlink_audio_out_urbs(line6pcm);
Markus Grabner0ca54882012-01-20 00:09:09 +0100342 line6_wait_clear_audio_out_urbs(line6pcm);
Markus Grabner6b02a17e2011-12-10 02:12:32 +0100343}
344
345void line6_free_playback_buffer(struct snd_line6_pcm *line6pcm)
346{
347 kfree(line6pcm->buffer_out);
348 line6pcm->buffer_out = NULL;
349}
350
Markus Grabner705ecec2009-02-27 19:43:04 -0800351/*
352 Callback for completed playback URB.
353*/
Greg Kroah-Hartman0c7ab152009-02-27 20:28:04 -0800354static void audio_out_callback(struct urb *urb)
Markus Grabner705ecec2009-02-27 19:43:04 -0800355{
356 int i, index, length = 0, shutdown = 0;
357 unsigned long flags;
Markus Grabnere1a164d2010-08-23 01:08:25 +0200358 struct snd_line6_pcm *line6pcm = (struct snd_line6_pcm *)urb->context;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600359 struct snd_pcm_substream *substream =
Markus Grabner1027f4762010-08-12 01:35:30 +0200360 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK);
361
362#if USE_CLEAR_BUFFER_WORKAROUND
363 memset(urb->transfer_buffer, 0, urb->transfer_buffer_length);
364#endif
365
366 line6pcm->last_frame_out = urb->start_frame;
Markus Grabner705ecec2009-02-27 19:43:04 -0800367
368 /* find index of URB */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800369 for (index = LINE6_ISO_BUFFERS; index--;)
370 if (urb == line6pcm->urb_audio_out[index])
Markus Grabner705ecec2009-02-27 19:43:04 -0800371 break;
372
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800373 if (index < 0)
Shawn Bohrer45af4972009-11-15 22:17:50 -0600374 return; /* URB has been unlinked asynchronously */
Markus Grabner705ecec2009-02-27 19:43:04 -0800375
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800376 for (i = LINE6_ISO_PACKETS; i--;)
Markus Grabner705ecec2009-02-27 19:43:04 -0800377 length += urb->iso_frame_desc[i].length;
378
379 spin_lock_irqsave(&line6pcm->lock_audio_out, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800380
Markus Grabner0ca54882012-01-20 00:09:09 +0100381 if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM, &line6pcm->flags)) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200382 struct snd_pcm_runtime *runtime = substream->runtime;
Jerry Snitselaarf3c52612014-04-24 00:31:48 -0700383
Markus Grabner1027f4762010-08-12 01:35:30 +0200384 line6pcm->pos_out_done +=
385 length / line6pcm->properties->bytes_per_frame;
386
387 if (line6pcm->pos_out_done >= runtime->buffer_size)
388 line6pcm->pos_out_done -= runtime->buffer_size;
389 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800390
391 clear_bit(index, &line6pcm->active_urb_out);
392
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800393 for (i = LINE6_ISO_PACKETS; i--;)
Markus Grabnere1a164d2010-08-23 01:08:25 +0200394 if (urb->iso_frame_desc[i].status == -EXDEV) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800395 shutdown = 1;
396 break;
397 }
398
Markus Grabner1027f4762010-08-12 01:35:30 +0200399 if (test_and_clear_bit(index, &line6pcm->unlink_urb_out))
Markus Grabner705ecec2009-02-27 19:43:04 -0800400 shutdown = 1;
401
402 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
403
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800404 if (!shutdown) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200405 submit_audio_out_urb(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800406
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100407 if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM,
408 &line6pcm->flags)) {
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700409 line6pcm->bytes_out += length;
410 if (line6pcm->bytes_out >= line6pcm->period_out) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200411 line6pcm->bytes_out %= line6pcm->period_out;
412 snd_pcm_period_elapsed(substream);
413 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800414 }
415 }
416}
417
418/* open playback callback */
419static int snd_line6_playback_open(struct snd_pcm_substream *substream)
420{
421 int err;
422 struct snd_pcm_runtime *runtime = substream->runtime;
423 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
424
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800425 err = snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200426 (&line6pcm->
427 properties->snd_line6_rates));
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800428 if (err < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800429 return err;
430
431 runtime->hw = line6pcm->properties->snd_line6_playback_hw;
432 return 0;
433}
434
435/* close playback callback */
436static int snd_line6_playback_close(struct snd_pcm_substream *substream)
437{
438 return 0;
439}
440
441/* hw_params playback callback */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600442static int snd_line6_playback_hw_params(struct snd_pcm_substream *substream,
443 struct snd_pcm_hw_params *hw_params)
Markus Grabner705ecec2009-02-27 19:43:04 -0800444{
445 int ret;
446 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
447
448 /* -- Florian Demski [FD] */
449 /* don't ask me why, but this fixes the bug on my machine */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800450 if (line6pcm == NULL) {
451 if (substream->pcm == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800452 return -ENOMEM;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800453 if (substream->pcm->private_data == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800454 return -ENOMEM;
455 substream->private_data = substream->pcm->private_data;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800456 line6pcm = snd_pcm_substream_chip(substream);
Markus Grabner705ecec2009-02-27 19:43:04 -0800457 }
458 /* -- [FD] end */
459
Markus Grabner0ca54882012-01-20 00:09:09 +0100460 ret = line6_pcm_acquire(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000461
Markus Grabner0ca54882012-01-20 00:09:09 +0100462 if (ret < 0)
463 return ret;
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000464
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800465 ret = snd_pcm_lib_malloc_pages(substream,
466 params_buffer_bytes(hw_params));
Markus Grabner0ca54882012-01-20 00:09:09 +0100467 if (ret < 0) {
468 line6_pcm_release(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
Markus Grabner705ecec2009-02-27 19:43:04 -0800469 return ret;
Markus Grabner0ca54882012-01-20 00:09:09 +0100470 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800471
472 line6pcm->period_out = params_period_bytes(hw_params);
Markus Grabner705ecec2009-02-27 19:43:04 -0800473 return 0;
474}
475
476/* hw_free playback callback */
477static int snd_line6_playback_hw_free(struct snd_pcm_substream *substream)
478{
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000479 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
Jerry Snitselaarf3c52612014-04-24 00:31:48 -0700480
Markus Grabner0ca54882012-01-20 00:09:09 +0100481 line6_pcm_release(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
Markus Grabner705ecec2009-02-27 19:43:04 -0800482 return snd_pcm_lib_free_pages(substream);
483}
484
485/* trigger playback callback */
Markus Grabner1027f4762010-08-12 01:35:30 +0200486int snd_line6_playback_trigger(struct snd_line6_pcm *line6pcm, int cmd)
Markus Grabner705ecec2009-02-27 19:43:04 -0800487{
Markus Grabner705ecec2009-02-27 19:43:04 -0800488 int err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800489
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800490 switch (cmd) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800491 case SNDRV_PCM_TRIGGER_START:
Markus Grabner1027f4762010-08-12 01:35:30 +0200492 case SNDRV_PCM_TRIGGER_RESUME:
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100493 err = line6_pcm_acquire(line6pcm,
494 LINE6_BIT_PCM_ALSA_PLAYBACK_STREAM);
Markus Grabner705ecec2009-02-27 19:43:04 -0800495
Markus Grabner1027f4762010-08-12 01:35:30 +0200496 if (err < 0)
497 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800498
499 break;
500
501 case SNDRV_PCM_TRIGGER_STOP:
Markus Grabner1027f4762010-08-12 01:35:30 +0200502 case SNDRV_PCM_TRIGGER_SUSPEND:
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100503 err = line6_pcm_release(line6pcm,
504 LINE6_BIT_PCM_ALSA_PLAYBACK_STREAM);
Markus Grabner1027f4762010-08-12 01:35:30 +0200505
506 if (err < 0)
507 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800508
509 break;
510
511 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Markus Grabner0ca54882012-01-20 00:09:09 +0100512 set_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800513 break;
514
515 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Markus Grabner0ca54882012-01-20 00:09:09 +0100516 clear_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800517 break;
518
519 default:
520 return -EINVAL;
521 }
522
523 return 0;
524}
525
526/* playback pointer callback */
527static snd_pcm_uframes_t
528snd_line6_playback_pointer(struct snd_pcm_substream *substream)
529{
530 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
Jerry Snitselaarf3c52612014-04-24 00:31:48 -0700531
Markus Grabner705ecec2009-02-27 19:43:04 -0800532 return line6pcm->pos_out_done;
533}
534
535/* playback operators */
536struct snd_pcm_ops snd_line6_playback_ops = {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200537 .open = snd_line6_playback_open,
538 .close = snd_line6_playback_close,
539 .ioctl = snd_pcm_lib_ioctl,
540 .hw_params = snd_line6_playback_hw_params,
541 .hw_free = snd_line6_playback_hw_free,
542 .prepare = snd_line6_prepare,
543 .trigger = snd_line6_trigger,
544 .pointer = snd_line6_playback_pointer,
Markus Grabner705ecec2009-02-27 19:43:04 -0800545};
546
Markus Grabner1027f4762010-08-12 01:35:30 +0200547int line6_create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800548{
Chris Rorvick16d603d2015-01-12 12:42:55 -0800549 struct usb_line6 *line6 = line6pcm->line6;
Markus Grabner705ecec2009-02-27 19:43:04 -0800550 int i;
551
552 /* create audio URBs and fill in constant values: */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800553 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800554 struct urb *urb;
555
556 /* URB for audio out: */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600557 urb = line6pcm->urb_audio_out[i] =
558 usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800559
Takashi Iwaia019f5e2015-01-19 15:05:10 +0100560 if (urb == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800561 return -ENOMEM;
Markus Grabner705ecec2009-02-27 19:43:04 -0800562
Chris Rorvick16d603d2015-01-12 12:42:55 -0800563 urb->dev = line6->usbdev;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600564 urb->pipe =
Chris Rorvick16d603d2015-01-12 12:42:55 -0800565 usb_sndisocpipe(line6->usbdev,
566 line6->properties->ep_audio_w &
Markus Grabnere1a164d2010-08-23 01:08:25 +0200567 USB_ENDPOINT_NUMBER_MASK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800568 urb->transfer_flags = URB_ISO_ASAP;
569 urb->start_frame = -1;
570 urb->number_of_packets = LINE6_ISO_PACKETS;
571 urb->interval = LINE6_ISO_INTERVAL;
572 urb->error_count = 0;
573 urb->complete = audio_out_callback;
574 }
575
576 return 0;
577}