blob: 3762a98026aaa987f44817fd324079e953c2fb00 [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) {
Takashi Iwaic8491532015-01-23 16:54:36 +010040 int val = (*p * volume[chn & 1]) >> 8;
41 *p = clamp(val, 0x7fff, -0x8000);
Markus Grabner705ecec2009-02-27 19:43:04 -080042 ++chn;
43 }
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080044 } else if (bytes_per_frame == 6) {
Markus Grabner705ecec2009-02-27 19:43:04 -080045 unsigned char *p, *buf_end;
Jerry Snitselaarf3c52612014-04-24 00:31:48 -070046
Markus Grabner705ecec2009-02-27 19:43:04 -080047 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;
Fabian Mewesa6b46992014-03-24 23:46:31 +010052
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080053 val = p[0] + (p[1] << 8) + ((signed char)p[2] << 16);
Markus Grabner705ecec2009-02-27 19:43:04 -080054 val = (val * volume[chn & 1]) >> 8;
Takashi Iwaic8491532015-01-23 16:54:36 +010055 val = clamp(val, 0x7fffff, -0x800000);
Markus Grabner705ecec2009-02-27 19:43:04 -080056 p[0] = val;
57 p[1] = val >> 8;
58 p[2] = val >> 16;
59 ++chn;
60 }
61 }
62}
63
Markus Grabner1027f4762010-08-12 01:35:30 +020064/*
65 Create signal for impulse response test.
66*/
67static void create_impulse_test_signal(struct snd_line6_pcm *line6pcm,
68 struct urb *urb_out, int bytes_per_frame)
69{
70 int frames = urb_out->transfer_buffer_length / bytes_per_frame;
71
72 if (bytes_per_frame == 4) {
Markus Grabnere1a164d2010-08-23 01:08:25 +020073 int i;
74 short *pi = (short *)line6pcm->prev_fbuf;
75 short *po = (short *)urb_out->transfer_buffer;
76
77 for (i = 0; i < frames; ++i) {
78 po[0] = pi[0];
79 po[1] = 0;
80 pi += 2;
81 po += 2;
82 }
Markus Grabner1027f4762010-08-12 01:35:30 +020083 } else if (bytes_per_frame == 6) {
84 int i, j;
85 unsigned char *pi = line6pcm->prev_fbuf;
86 unsigned char *po = urb_out->transfer_buffer;
87
88 for (i = 0; i < frames; ++i) {
89 for (j = 0; j < bytes_per_frame / 2; ++j)
90 po[j] = pi[j];
91
92 for (; j < bytes_per_frame; ++j)
93 po[j] = 0;
94
95 pi += bytes_per_frame;
96 po += bytes_per_frame;
97 }
Markus Grabnere1a164d2010-08-23 01:08:25 +020098 }
99 if (--line6pcm->impulse_count <= 0) {
100 ((unsigned char *)(urb_out->transfer_buffer))[bytes_per_frame -
101 1] =
102 line6pcm->impulse_volume;
103 line6pcm->impulse_count = line6pcm->impulse_period;
Markus Grabner1027f4762010-08-12 01:35:30 +0200104 }
105}
106
Markus Grabner1027f4762010-08-12 01:35:30 +0200107/*
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;
Fabian Mewesa6b46992014-03-24 23:46:31 +0100118
Markus Grabner1027f4762010-08-12 01:35:30 +0200119 pi = (short *)signal;
120 po = (short *)urb_out->transfer_buffer;
121 buf_end = po + urb_out->transfer_buffer_length / sizeof(*po);
122
Takashi Iwaic8491532015-01-23 16:54:36 +0100123 for (; po < buf_end; ++pi, ++po) {
124 int val = *po + ((*pi * volume) >> 8);
125 *po = clamp(val, 0x7fff, -0x8000);
126 }
Markus Grabner1027f4762010-08-12 01:35:30 +0200127 }
128
129 /*
Markus Grabnere1a164d2010-08-23 01:08:25 +0200130 We don't need to handle devices with 6 bytes per frame here
131 since they all support hardware monitoring.
132 */
Markus Grabner1027f4762010-08-12 01:35:30 +0200133}
134
Markus Grabner705ecec2009-02-27 19:43:04 -0800135/*
136 Find a free URB, prepare audio data, and submit URB.
137*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200138static int submit_audio_out_urb(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800139{
140 int index;
141 unsigned long flags;
142 int i, urb_size, urb_frames;
Markus Grabnere1a164d2010-08-23 01:08:25 +0200143 int ret;
Markus Grabner705ecec2009-02-27 19:43:04 -0800144 const int bytes_per_frame = line6pcm->properties->bytes_per_frame;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600145 const int frame_increment =
146 line6pcm->properties->snd_line6_rates.rats[0].num_min;
147 const int frame_factor =
148 line6pcm->properties->snd_line6_rates.rats[0].den *
149 (USB_INTERVALS_PER_SECOND / LINE6_ISO_INTERVAL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800150 struct urb *urb_out;
151
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100152 spin_lock_irqsave(&line6pcm->out.lock, flags);
Shawn Bohrer45af4972009-11-15 22:17:50 -0600153 index =
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100154 find_first_zero_bit(&line6pcm->out.active_urbs, LINE6_ISO_BUFFERS);
Markus Grabner705ecec2009-02-27 19:43:04 -0800155
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800156 if (index < 0 || index >= LINE6_ISO_BUFFERS) {
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100157 spin_unlock_irqrestore(&line6pcm->out.lock, flags);
Markus Grabner1027f4762010-08-12 01:35:30 +0200158 dev_err(line6pcm->line6->ifcdev, "no free URB found\n");
Markus Grabner705ecec2009-02-27 19:43:04 -0800159 return -EINVAL;
160 }
161
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100162 urb_out = line6pcm->out.urbs[index];
Markus Grabner705ecec2009-02-27 19:43:04 -0800163 urb_size = 0;
164
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800165 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800166 /* compute frame size for given sampling rate */
Markus Grabner1027f4762010-08-12 01:35:30 +0200167 int fsize = 0;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600168 struct usb_iso_packet_descriptor *fout =
169 &urb_out->iso_frame_desc[i];
Markus Grabner1027f4762010-08-12 01:35:30 +0200170
Markus Grabner0ca54882012-01-20 00:09:09 +0100171 if (line6pcm->flags & LINE6_BITS_CAPTURE_STREAM)
Markus Grabner1027f4762010-08-12 01:35:30 +0200172 fsize = line6pcm->prev_fsize;
Markus Grabner1027f4762010-08-12 01:35:30 +0200173
174 if (fsize == 0) {
175 int n;
Fabian Mewesa6b46992014-03-24 23:46:31 +0100176
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100177 line6pcm->out.count += frame_increment;
178 n = line6pcm->out.count / frame_factor;
179 line6pcm->out.count -= n * frame_factor;
Markus Grabner1027f4762010-08-12 01:35:30 +0200180 fsize = n * bytes_per_frame;
181 }
182
Markus Grabner705ecec2009-02-27 19:43:04 -0800183 fout->offset = urb_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200184 fout->length = fsize;
185 urb_size += fsize;
186 }
187
188 if (urb_size == 0) {
189 /* can't determine URB size */
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100190 spin_unlock_irqrestore(&line6pcm->out.lock, flags);
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100191 dev_err(line6pcm->line6->ifcdev, "driver bug: urb_size = 0\n");
Markus Grabner1027f4762010-08-12 01:35:30 +0200192 return -EINVAL;
Markus Grabner705ecec2009-02-27 19:43:04 -0800193 }
194
195 urb_frames = urb_size / bytes_per_frame;
Markus Grabner1027f4762010-08-12 01:35:30 +0200196 urb_out->transfer_buffer =
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100197 line6pcm->out.buffer +
Stefan Hajnoczi153e3872011-12-10 02:12:29 +0100198 index * LINE6_ISO_PACKETS * line6pcm->max_packet_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200199 urb_out->transfer_buffer_length = urb_size;
200 urb_out->context = line6pcm;
Markus Grabner705ecec2009-02-27 19:43:04 -0800201
Markus Grabner0ca54882012-01-20 00:09:09 +0100202 if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM, &line6pcm->flags) &&
203 !test_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags)) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200204 struct snd_pcm_runtime *runtime =
205 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK)->runtime;
206
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100207 if (line6pcm->out.pos + urb_frames > runtime->buffer_size) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800208 /*
Shawn Bohrer45af4972009-11-15 22:17:50 -0600209 The transferred area goes over buffer boundary,
210 copy the data to the temp buffer.
211 */
Markus Grabner705ecec2009-02-27 19:43:04 -0800212 int len;
Fabian Mewesa6b46992014-03-24 23:46:31 +0100213
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100214 len = runtime->buffer_size - line6pcm->out.pos;
Markus Grabner705ecec2009-02-27 19:43:04 -0800215
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800216 if (len > 0) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200217 memcpy(urb_out->transfer_buffer,
Shawn Bohrer45af4972009-11-15 22:17:50 -0600218 runtime->dma_area +
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100219 line6pcm->out.pos * bytes_per_frame,
Shawn Bohrer45af4972009-11-15 22:17:50 -0600220 len * bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200221 memcpy(urb_out->transfer_buffer +
Shawn Bohrer45af4972009-11-15 22:17:50 -0600222 len * bytes_per_frame, runtime->dma_area,
223 (urb_frames - len) * bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200224 } else
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100225 dev_err(line6pcm->line6->ifcdev, "driver bug: len = %d\n",
226 len);
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800227 } else {
Markus Grabner1027f4762010-08-12 01:35:30 +0200228 memcpy(urb_out->transfer_buffer,
229 runtime->dma_area +
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100230 line6pcm->out.pos * bytes_per_frame,
Markus Grabner1027f4762010-08-12 01:35:30 +0200231 urb_out->transfer_buffer_length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800232 }
Markus Grabner1027f4762010-08-12 01:35:30 +0200233
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100234 line6pcm->out.pos += urb_frames;
235 if (line6pcm->out.pos >= runtime->buffer_size)
236 line6pcm->out.pos -= runtime->buffer_size;
Takashi Iwai62a109d2015-01-23 16:58:30 +0100237
238 change_volume(urb_out, line6pcm->volume_playback,
239 bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200240 } else {
241 memset(urb_out->transfer_buffer, 0,
242 urb_out->transfer_buffer_length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800243 }
244
Peter Huewe597a1e72010-12-07 23:38:02 +0100245 if (line6pcm->prev_fbuf != NULL) {
Markus Grabner0ca54882012-01-20 00:09:09 +0100246 if (line6pcm->flags & LINE6_BITS_PCM_IMPULSE) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200247 create_impulse_test_signal(line6pcm, urb_out,
248 bytes_per_frame);
Ebru Akagunduz30bb0e72013-10-23 02:00:22 +0300249 if (line6pcm->flags &
250 LINE6_BIT_PCM_ALSA_CAPTURE_STREAM) {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200251 line6_capture_copy(line6pcm,
252 urb_out->transfer_buffer,
253 urb_out->
254 transfer_buffer_length);
255 line6_capture_check_period(line6pcm,
Ebru Akagunduz30bb0e72013-10-23 02:00:22 +0300256 urb_out->transfer_buffer_length);
Markus Grabner1027f4762010-08-12 01:35:30 +0200257 }
258 } else {
Markus Grabner1027f4762010-08-12 01:35:30 +0200259 if (!
Markus Grabnere1a164d2010-08-23 01:08:25 +0200260 (line6pcm->line6->
Chris Rorvick4cb1a4a2015-01-12 12:42:45 -0800261 properties->capabilities & LINE6_CAP_HWMON)
Markus Grabner0ca54882012-01-20 00:09:09 +0100262 && (line6pcm->flags & LINE6_BITS_PLAYBACK_STREAM)
263 && (line6pcm->flags & LINE6_BITS_CAPTURE_STREAM))
Markus Grabner1027f4762010-08-12 01:35:30 +0200264 add_monitor_signal(urb_out, line6pcm->prev_fbuf,
265 line6pcm->volume_monitor,
266 bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200267 }
Markus Grabner1027f4762010-08-12 01:35:30 +0200268 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800269
Markus Grabnere1a164d2010-08-23 01:08:25 +0200270 ret = usb_submit_urb(urb_out, GFP_ATOMIC);
271
272 if (ret == 0)
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100273 set_bit(index, &line6pcm->out.active_urbs);
Markus Grabner705ecec2009-02-27 19:43:04 -0800274 else
Markus Grabner1027f4762010-08-12 01:35:30 +0200275 dev_err(line6pcm->line6->ifcdev,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200276 "URB out #%d submission failed (%d)\n", index, ret);
Markus Grabner705ecec2009-02-27 19:43:04 -0800277
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100278 spin_unlock_irqrestore(&line6pcm->out.lock, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800279 return 0;
280}
281
282/*
283 Submit all currently available playback URBs.
284*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200285int line6_submit_audio_out_all_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800286{
287 int ret, i;
288
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800289 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200290 ret = submit_audio_out_urb(line6pcm);
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800291 if (ret < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800292 return ret;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800293 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800294
295 return 0;
296}
297
Markus Grabner705ecec2009-02-27 19:43:04 -0800298/*
299 Callback for completed playback URB.
300*/
Greg Kroah-Hartman0c7ab152009-02-27 20:28:04 -0800301static void audio_out_callback(struct urb *urb)
Markus Grabner705ecec2009-02-27 19:43:04 -0800302{
303 int i, index, length = 0, shutdown = 0;
304 unsigned long flags;
Markus Grabnere1a164d2010-08-23 01:08:25 +0200305 struct snd_line6_pcm *line6pcm = (struct snd_line6_pcm *)urb->context;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600306 struct snd_pcm_substream *substream =
Markus Grabner1027f4762010-08-12 01:35:30 +0200307 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK);
308
309#if USE_CLEAR_BUFFER_WORKAROUND
310 memset(urb->transfer_buffer, 0, urb->transfer_buffer_length);
311#endif
312
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100313 line6pcm->out.last_frame = urb->start_frame;
Markus Grabner705ecec2009-02-27 19:43:04 -0800314
315 /* find index of URB */
Takashi Iwai9fb754b2015-01-23 15:08:40 +0100316 for (index = 0; index < LINE6_ISO_BUFFERS; index++)
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100317 if (urb == line6pcm->out.urbs[index])
Markus Grabner705ecec2009-02-27 19:43:04 -0800318 break;
319
Takashi Iwai9fb754b2015-01-23 15:08:40 +0100320 if (index >= LINE6_ISO_BUFFERS)
Shawn Bohrer45af4972009-11-15 22:17:50 -0600321 return; /* URB has been unlinked asynchronously */
Markus Grabner705ecec2009-02-27 19:43:04 -0800322
Takashi Iwai9fb754b2015-01-23 15:08:40 +0100323 for (i = 0; i < LINE6_ISO_PACKETS; i++)
Markus Grabner705ecec2009-02-27 19:43:04 -0800324 length += urb->iso_frame_desc[i].length;
325
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100326 spin_lock_irqsave(&line6pcm->out.lock, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800327
Markus Grabner0ca54882012-01-20 00:09:09 +0100328 if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM, &line6pcm->flags)) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200329 struct snd_pcm_runtime *runtime = substream->runtime;
Jerry Snitselaarf3c52612014-04-24 00:31:48 -0700330
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100331 line6pcm->out.pos_done +=
Markus Grabner1027f4762010-08-12 01:35:30 +0200332 length / line6pcm->properties->bytes_per_frame;
333
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100334 if (line6pcm->out.pos_done >= runtime->buffer_size)
335 line6pcm->out.pos_done -= runtime->buffer_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200336 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800337
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100338 clear_bit(index, &line6pcm->out.active_urbs);
Markus Grabner705ecec2009-02-27 19:43:04 -0800339
Takashi Iwai9fb754b2015-01-23 15:08:40 +0100340 for (i = 0; i < LINE6_ISO_PACKETS; i++)
Markus Grabnere1a164d2010-08-23 01:08:25 +0200341 if (urb->iso_frame_desc[i].status == -EXDEV) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800342 shutdown = 1;
343 break;
344 }
345
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100346 if (test_and_clear_bit(index, &line6pcm->out.unlink_urbs))
Markus Grabner705ecec2009-02-27 19:43:04 -0800347 shutdown = 1;
348
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100349 spin_unlock_irqrestore(&line6pcm->out.lock, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800350
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800351 if (!shutdown) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200352 submit_audio_out_urb(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800353
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100354 if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM,
355 &line6pcm->flags)) {
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100356 line6pcm->out.bytes += length;
357 if (line6pcm->out.bytes >= line6pcm->out.period) {
358 line6pcm->out.bytes %= line6pcm->out.period;
Markus Grabner1027f4762010-08-12 01:35:30 +0200359 snd_pcm_period_elapsed(substream);
360 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800361 }
362 }
363}
364
365/* open playback callback */
366static int snd_line6_playback_open(struct snd_pcm_substream *substream)
367{
368 int err;
369 struct snd_pcm_runtime *runtime = substream->runtime;
370 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
371
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800372 err = snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200373 (&line6pcm->
374 properties->snd_line6_rates));
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800375 if (err < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800376 return err;
377
378 runtime->hw = line6pcm->properties->snd_line6_playback_hw;
379 return 0;
380}
381
382/* close playback callback */
383static int snd_line6_playback_close(struct snd_pcm_substream *substream)
384{
385 return 0;
386}
387
388/* hw_params playback callback */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600389static int snd_line6_playback_hw_params(struct snd_pcm_substream *substream,
390 struct snd_pcm_hw_params *hw_params)
Markus Grabner705ecec2009-02-27 19:43:04 -0800391{
392 int ret;
393 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
394
Markus Grabner0ca54882012-01-20 00:09:09 +0100395 ret = line6_pcm_acquire(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000396
Markus Grabner0ca54882012-01-20 00:09:09 +0100397 if (ret < 0)
398 return ret;
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000399
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800400 ret = snd_pcm_lib_malloc_pages(substream,
401 params_buffer_bytes(hw_params));
Markus Grabner0ca54882012-01-20 00:09:09 +0100402 if (ret < 0) {
403 line6_pcm_release(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
Markus Grabner705ecec2009-02-27 19:43:04 -0800404 return ret;
Markus Grabner0ca54882012-01-20 00:09:09 +0100405 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800406
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100407 line6pcm->out.period = params_period_bytes(hw_params);
Markus Grabner705ecec2009-02-27 19:43:04 -0800408 return 0;
409}
410
411/* hw_free playback callback */
412static int snd_line6_playback_hw_free(struct snd_pcm_substream *substream)
413{
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000414 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
Jerry Snitselaarf3c52612014-04-24 00:31:48 -0700415
Markus Grabner0ca54882012-01-20 00:09:09 +0100416 line6_pcm_release(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
Markus Grabner705ecec2009-02-27 19:43:04 -0800417 return snd_pcm_lib_free_pages(substream);
418}
419
420/* trigger playback callback */
Markus Grabner1027f4762010-08-12 01:35:30 +0200421int snd_line6_playback_trigger(struct snd_line6_pcm *line6pcm, int cmd)
Markus Grabner705ecec2009-02-27 19:43:04 -0800422{
Markus Grabner705ecec2009-02-27 19:43:04 -0800423 int err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800424
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800425 switch (cmd) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800426 case SNDRV_PCM_TRIGGER_START:
Markus Grabner1027f4762010-08-12 01:35:30 +0200427 case SNDRV_PCM_TRIGGER_RESUME:
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100428 err = line6_pcm_acquire(line6pcm,
429 LINE6_BIT_PCM_ALSA_PLAYBACK_STREAM);
Markus Grabner705ecec2009-02-27 19:43:04 -0800430
Markus Grabner1027f4762010-08-12 01:35:30 +0200431 if (err < 0)
432 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800433
434 break;
435
436 case SNDRV_PCM_TRIGGER_STOP:
Markus Grabner1027f4762010-08-12 01:35:30 +0200437 case SNDRV_PCM_TRIGGER_SUSPEND:
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100438 err = line6_pcm_release(line6pcm,
439 LINE6_BIT_PCM_ALSA_PLAYBACK_STREAM);
Markus Grabner1027f4762010-08-12 01:35:30 +0200440
441 if (err < 0)
442 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800443
444 break;
445
446 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Markus Grabner0ca54882012-01-20 00:09:09 +0100447 set_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800448 break;
449
450 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Markus Grabner0ca54882012-01-20 00:09:09 +0100451 clear_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800452 break;
453
454 default:
455 return -EINVAL;
456 }
457
458 return 0;
459}
460
461/* playback pointer callback */
462static snd_pcm_uframes_t
463snd_line6_playback_pointer(struct snd_pcm_substream *substream)
464{
465 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
Jerry Snitselaarf3c52612014-04-24 00:31:48 -0700466
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100467 return line6pcm->out.pos_done;
Markus Grabner705ecec2009-02-27 19:43:04 -0800468}
469
470/* playback operators */
471struct snd_pcm_ops snd_line6_playback_ops = {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200472 .open = snd_line6_playback_open,
473 .close = snd_line6_playback_close,
474 .ioctl = snd_pcm_lib_ioctl,
475 .hw_params = snd_line6_playback_hw_params,
476 .hw_free = snd_line6_playback_hw_free,
477 .prepare = snd_line6_prepare,
478 .trigger = snd_line6_trigger,
479 .pointer = snd_line6_playback_pointer,
Markus Grabner705ecec2009-02-27 19:43:04 -0800480};
481
Markus Grabner1027f4762010-08-12 01:35:30 +0200482int line6_create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800483{
Chris Rorvick16d603d2015-01-12 12:42:55 -0800484 struct usb_line6 *line6 = line6pcm->line6;
Markus Grabner705ecec2009-02-27 19:43:04 -0800485 int i;
486
487 /* create audio URBs and fill in constant values: */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800488 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800489 struct urb *urb;
490
491 /* URB for audio out: */
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100492 urb = line6pcm->out.urbs[i] =
Shawn Bohrer45af4972009-11-15 22:17:50 -0600493 usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800494
Takashi Iwaia019f5e2015-01-19 15:05:10 +0100495 if (urb == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800496 return -ENOMEM;
Markus Grabner705ecec2009-02-27 19:43:04 -0800497
Chris Rorvick16d603d2015-01-12 12:42:55 -0800498 urb->dev = line6->usbdev;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600499 urb->pipe =
Chris Rorvick16d603d2015-01-12 12:42:55 -0800500 usb_sndisocpipe(line6->usbdev,
501 line6->properties->ep_audio_w &
Markus Grabnere1a164d2010-08-23 01:08:25 +0200502 USB_ENDPOINT_NUMBER_MASK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800503 urb->transfer_flags = URB_ISO_ASAP;
504 urb->start_frame = -1;
505 urb->number_of_packets = LINE6_ISO_PACKETS;
506 urb->interval = LINE6_ISO_INTERVAL;
507 urb->error_count = 0;
508 urb->complete = audio_out_callback;
509 }
510
511 return 0;
512}