blob: 242265929145909805a381050e1050ef75a3f8f3 [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.
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100137 must be called in line6pcm->out.lock context
Markus Grabner705ecec2009-02-27 19:43:04 -0800138*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200139static int submit_audio_out_urb(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800140{
141 int index;
Markus Grabner705ecec2009-02-27 19:43:04 -0800142 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
Shawn Bohrer45af4972009-11-15 22:17:50 -0600152 index =
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100153 find_first_zero_bit(&line6pcm->out.active_urbs, LINE6_ISO_BUFFERS);
Markus Grabner705ecec2009-02-27 19:43:04 -0800154
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800155 if (index < 0 || index >= LINE6_ISO_BUFFERS) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200156 dev_err(line6pcm->line6->ifcdev, "no free URB found\n");
Markus Grabner705ecec2009-02-27 19:43:04 -0800157 return -EINVAL;
158 }
159
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100160 urb_out = line6pcm->out.urbs[index];
Markus Grabner705ecec2009-02-27 19:43:04 -0800161 urb_size = 0;
162
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800163 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800164 /* compute frame size for given sampling rate */
Markus Grabner1027f4762010-08-12 01:35:30 +0200165 int fsize = 0;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600166 struct usb_iso_packet_descriptor *fout =
167 &urb_out->iso_frame_desc[i];
Markus Grabner1027f4762010-08-12 01:35:30 +0200168
Takashi Iwaif2bb6142015-01-27 16:17:26 +0100169 fsize = line6pcm->prev_fsize;
Markus Grabner1027f4762010-08-12 01:35:30 +0200170 if (fsize == 0) {
171 int n;
Fabian Mewesa6b46992014-03-24 23:46:31 +0100172
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100173 line6pcm->out.count += frame_increment;
174 n = line6pcm->out.count / frame_factor;
175 line6pcm->out.count -= n * frame_factor;
Markus Grabner1027f4762010-08-12 01:35:30 +0200176 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 */
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100186 dev_err(line6pcm->line6->ifcdev, "driver bug: urb_size = 0\n");
Markus Grabner1027f4762010-08-12 01:35:30 +0200187 return -EINVAL;
Markus Grabner705ecec2009-02-27 19:43:04 -0800188 }
189
190 urb_frames = urb_size / bytes_per_frame;
Markus Grabner1027f4762010-08-12 01:35:30 +0200191 urb_out->transfer_buffer =
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100192 line6pcm->out.buffer +
Stefan Hajnoczi153e3872011-12-10 02:12:29 +0100193 index * LINE6_ISO_PACKETS * line6pcm->max_packet_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200194 urb_out->transfer_buffer_length = urb_size;
195 urb_out->context = line6pcm;
Markus Grabner705ecec2009-02-27 19:43:04 -0800196
Markus Grabner0ca54882012-01-20 00:09:09 +0100197 if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM, &line6pcm->flags) &&
198 !test_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags)) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200199 struct snd_pcm_runtime *runtime =
200 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK)->runtime;
201
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100202 if (line6pcm->out.pos + urb_frames > runtime->buffer_size) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800203 /*
Shawn Bohrer45af4972009-11-15 22:17:50 -0600204 The transferred area goes over buffer boundary,
205 copy the data to the temp buffer.
206 */
Markus Grabner705ecec2009-02-27 19:43:04 -0800207 int len;
Fabian Mewesa6b46992014-03-24 23:46:31 +0100208
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100209 len = runtime->buffer_size - line6pcm->out.pos;
Markus Grabner705ecec2009-02-27 19:43:04 -0800210
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800211 if (len > 0) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200212 memcpy(urb_out->transfer_buffer,
Shawn Bohrer45af4972009-11-15 22:17:50 -0600213 runtime->dma_area +
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100214 line6pcm->out.pos * bytes_per_frame,
Shawn Bohrer45af4972009-11-15 22:17:50 -0600215 len * bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200216 memcpy(urb_out->transfer_buffer +
Shawn Bohrer45af4972009-11-15 22:17:50 -0600217 len * bytes_per_frame, runtime->dma_area,
218 (urb_frames - len) * bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200219 } else
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100220 dev_err(line6pcm->line6->ifcdev, "driver bug: len = %d\n",
221 len);
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800222 } else {
Markus Grabner1027f4762010-08-12 01:35:30 +0200223 memcpy(urb_out->transfer_buffer,
224 runtime->dma_area +
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100225 line6pcm->out.pos * bytes_per_frame,
Markus Grabner1027f4762010-08-12 01:35:30 +0200226 urb_out->transfer_buffer_length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800227 }
Markus Grabner1027f4762010-08-12 01:35:30 +0200228
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100229 line6pcm->out.pos += urb_frames;
230 if (line6pcm->out.pos >= runtime->buffer_size)
231 line6pcm->out.pos -= runtime->buffer_size;
Takashi Iwai62a109d2015-01-23 16:58:30 +0100232
233 change_volume(urb_out, line6pcm->volume_playback,
234 bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200235 } else {
236 memset(urb_out->transfer_buffer, 0,
237 urb_out->transfer_buffer_length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800238 }
239
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100240 spin_lock_nested(&line6pcm->in.lock, SINGLE_DEPTH_NESTING);
241 if (line6pcm->prev_fbuf) {
Markus Grabner0ca54882012-01-20 00:09:09 +0100242 if (line6pcm->flags & LINE6_BITS_PCM_IMPULSE) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200243 create_impulse_test_signal(line6pcm, urb_out,
244 bytes_per_frame);
Ebru Akagunduz30bb0e72013-10-23 02:00:22 +0300245 if (line6pcm->flags &
246 LINE6_BIT_PCM_ALSA_CAPTURE_STREAM) {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200247 line6_capture_copy(line6pcm,
248 urb_out->transfer_buffer,
249 urb_out->
250 transfer_buffer_length);
251 line6_capture_check_period(line6pcm,
Ebru Akagunduz30bb0e72013-10-23 02:00:22 +0300252 urb_out->transfer_buffer_length);
Markus Grabner1027f4762010-08-12 01:35:30 +0200253 }
254 } else {
Markus Grabner1027f4762010-08-12 01:35:30 +0200255 if (!
Markus Grabnere1a164d2010-08-23 01:08:25 +0200256 (line6pcm->line6->
Chris Rorvick4cb1a4a2015-01-12 12:42:45 -0800257 properties->capabilities & LINE6_CAP_HWMON)
Markus Grabner0ca54882012-01-20 00:09:09 +0100258 && (line6pcm->flags & LINE6_BITS_PLAYBACK_STREAM)
259 && (line6pcm->flags & LINE6_BITS_CAPTURE_STREAM))
Markus Grabner1027f4762010-08-12 01:35:30 +0200260 add_monitor_signal(urb_out, line6pcm->prev_fbuf,
261 line6pcm->volume_monitor,
262 bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200263 }
Takashi Iwaif2bb6142015-01-27 16:17:26 +0100264 line6pcm->prev_fbuf = NULL;
265 line6pcm->prev_fsize = 0;
Markus Grabner1027f4762010-08-12 01:35:30 +0200266 }
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100267 spin_unlock(&line6pcm->in.lock);
Markus Grabner705ecec2009-02-27 19:43:04 -0800268
Markus Grabnere1a164d2010-08-23 01:08:25 +0200269 ret = usb_submit_urb(urb_out, GFP_ATOMIC);
270
271 if (ret == 0)
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100272 set_bit(index, &line6pcm->out.active_urbs);
Markus Grabner705ecec2009-02-27 19:43:04 -0800273 else
Markus Grabner1027f4762010-08-12 01:35:30 +0200274 dev_err(line6pcm->line6->ifcdev,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200275 "URB out #%d submission failed (%d)\n", index, ret);
Markus Grabner705ecec2009-02-27 19:43:04 -0800276
Markus Grabner705ecec2009-02-27 19:43:04 -0800277 return 0;
278}
279
280/*
281 Submit all currently available playback URBs.
282*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200283int line6_submit_audio_out_all_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800284{
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100285 unsigned long flags;
286 int ret = 0, i;
Markus Grabner705ecec2009-02-27 19:43:04 -0800287
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100288 spin_lock_irqsave(&line6pcm->out.lock, flags);
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)
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100292 break;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800293 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800294
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100295 spin_unlock_irqrestore(&line6pcm->out.lock, flags);
296 return ret;
Markus Grabner705ecec2009-02-27 19:43:04 -0800297}
298
Markus Grabner705ecec2009-02-27 19:43:04 -0800299/*
300 Callback for completed playback URB.
301*/
Greg Kroah-Hartman0c7ab152009-02-27 20:28:04 -0800302static void audio_out_callback(struct urb *urb)
Markus Grabner705ecec2009-02-27 19:43:04 -0800303{
304 int i, index, length = 0, shutdown = 0;
305 unsigned long flags;
Markus Grabnere1a164d2010-08-23 01:08:25 +0200306 struct snd_line6_pcm *line6pcm = (struct snd_line6_pcm *)urb->context;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600307 struct snd_pcm_substream *substream =
Markus Grabner1027f4762010-08-12 01:35:30 +0200308 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK);
309
310#if USE_CLEAR_BUFFER_WORKAROUND
311 memset(urb->transfer_buffer, 0, urb->transfer_buffer_length);
312#endif
313
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100314 line6pcm->out.last_frame = urb->start_frame;
Markus Grabner705ecec2009-02-27 19:43:04 -0800315
316 /* find index of URB */
Takashi Iwai9fb754b2015-01-23 15:08:40 +0100317 for (index = 0; index < LINE6_ISO_BUFFERS; index++)
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100318 if (urb == line6pcm->out.urbs[index])
Markus Grabner705ecec2009-02-27 19:43:04 -0800319 break;
320
Takashi Iwai9fb754b2015-01-23 15:08:40 +0100321 if (index >= LINE6_ISO_BUFFERS)
Shawn Bohrer45af4972009-11-15 22:17:50 -0600322 return; /* URB has been unlinked asynchronously */
Markus Grabner705ecec2009-02-27 19:43:04 -0800323
Takashi Iwai9fb754b2015-01-23 15:08:40 +0100324 for (i = 0; i < LINE6_ISO_PACKETS; i++)
Markus Grabner705ecec2009-02-27 19:43:04 -0800325 length += urb->iso_frame_desc[i].length;
326
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100327 spin_lock_irqsave(&line6pcm->out.lock, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800328
Markus Grabner0ca54882012-01-20 00:09:09 +0100329 if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM, &line6pcm->flags)) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200330 struct snd_pcm_runtime *runtime = substream->runtime;
Jerry Snitselaarf3c52612014-04-24 00:31:48 -0700331
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100332 line6pcm->out.pos_done +=
Markus Grabner1027f4762010-08-12 01:35:30 +0200333 length / line6pcm->properties->bytes_per_frame;
334
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100335 if (line6pcm->out.pos_done >= runtime->buffer_size)
336 line6pcm->out.pos_done -= runtime->buffer_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200337 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800338
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100339 clear_bit(index, &line6pcm->out.active_urbs);
Markus Grabner705ecec2009-02-27 19:43:04 -0800340
Takashi Iwai9fb754b2015-01-23 15:08:40 +0100341 for (i = 0; i < LINE6_ISO_PACKETS; i++)
Markus Grabnere1a164d2010-08-23 01:08:25 +0200342 if (urb->iso_frame_desc[i].status == -EXDEV) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800343 shutdown = 1;
344 break;
345 }
346
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100347 if (test_and_clear_bit(index, &line6pcm->out.unlink_urbs))
Markus Grabner705ecec2009-02-27 19:43:04 -0800348 shutdown = 1;
349
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800350 if (!shutdown) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200351 submit_audio_out_urb(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800352
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100353 if (test_bit(LINE6_INDEX_PCM_ALSA_PLAYBACK_STREAM,
354 &line6pcm->flags)) {
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100355 line6pcm->out.bytes += length;
356 if (line6pcm->out.bytes >= line6pcm->out.period) {
357 line6pcm->out.bytes %= line6pcm->out.period;
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100358 spin_unlock(&line6pcm->out.lock);
Markus Grabner1027f4762010-08-12 01:35:30 +0200359 snd_pcm_period_elapsed(substream);
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100360 spin_lock(&line6pcm->out.lock);
Markus Grabner1027f4762010-08-12 01:35:30 +0200361 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800362 }
363 }
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100364 spin_unlock_irqrestore(&line6pcm->out.lock, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800365}
366
367/* open playback callback */
368static int snd_line6_playback_open(struct snd_pcm_substream *substream)
369{
370 int err;
371 struct snd_pcm_runtime *runtime = substream->runtime;
372 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
373
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800374 err = snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200375 (&line6pcm->
376 properties->snd_line6_rates));
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800377 if (err < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800378 return err;
379
380 runtime->hw = line6pcm->properties->snd_line6_playback_hw;
381 return 0;
382}
383
384/* close playback callback */
385static int snd_line6_playback_close(struct snd_pcm_substream *substream)
386{
387 return 0;
388}
389
390/* hw_params playback callback */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600391static int snd_line6_playback_hw_params(struct snd_pcm_substream *substream,
392 struct snd_pcm_hw_params *hw_params)
Markus Grabner705ecec2009-02-27 19:43:04 -0800393{
394 int ret;
395 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
396
Markus Grabner0ca54882012-01-20 00:09:09 +0100397 ret = line6_pcm_acquire(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000398
Markus Grabner0ca54882012-01-20 00:09:09 +0100399 if (ret < 0)
400 return ret;
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000401
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800402 ret = snd_pcm_lib_malloc_pages(substream,
403 params_buffer_bytes(hw_params));
Markus Grabner0ca54882012-01-20 00:09:09 +0100404 if (ret < 0) {
405 line6_pcm_release(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
Markus Grabner705ecec2009-02-27 19:43:04 -0800406 return ret;
Markus Grabner0ca54882012-01-20 00:09:09 +0100407 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800408
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100409 line6pcm->out.period = params_period_bytes(hw_params);
Markus Grabner705ecec2009-02-27 19:43:04 -0800410 return 0;
411}
412
413/* hw_free playback callback */
414static int snd_line6_playback_hw_free(struct snd_pcm_substream *substream)
415{
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000416 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
Jerry Snitselaarf3c52612014-04-24 00:31:48 -0700417
Markus Grabner0ca54882012-01-20 00:09:09 +0100418 line6_pcm_release(line6pcm, LINE6_BIT_PCM_ALSA_PLAYBACK_BUFFER);
Markus Grabner705ecec2009-02-27 19:43:04 -0800419 return snd_pcm_lib_free_pages(substream);
420}
421
422/* trigger playback callback */
Markus Grabner1027f4762010-08-12 01:35:30 +0200423int snd_line6_playback_trigger(struct snd_line6_pcm *line6pcm, int cmd)
Markus Grabner705ecec2009-02-27 19:43:04 -0800424{
Markus Grabner705ecec2009-02-27 19:43:04 -0800425 int err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800426
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800427 switch (cmd) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800428 case SNDRV_PCM_TRIGGER_START:
Markus Grabner1027f4762010-08-12 01:35:30 +0200429 case SNDRV_PCM_TRIGGER_RESUME:
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100430 err = line6_pcm_acquire(line6pcm,
431 LINE6_BIT_PCM_ALSA_PLAYBACK_STREAM);
Markus Grabner705ecec2009-02-27 19:43:04 -0800432
Markus Grabner1027f4762010-08-12 01:35:30 +0200433 if (err < 0)
434 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800435
436 break;
437
438 case SNDRV_PCM_TRIGGER_STOP:
Markus Grabner1027f4762010-08-12 01:35:30 +0200439 case SNDRV_PCM_TRIGGER_SUSPEND:
Stefan Hajnoczi6a8ec872012-11-11 13:24:43 +0100440 err = line6_pcm_release(line6pcm,
441 LINE6_BIT_PCM_ALSA_PLAYBACK_STREAM);
Markus Grabner1027f4762010-08-12 01:35:30 +0200442
443 if (err < 0)
444 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800445
446 break;
447
448 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Markus Grabner0ca54882012-01-20 00:09:09 +0100449 set_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800450 break;
451
452 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Markus Grabner0ca54882012-01-20 00:09:09 +0100453 clear_bit(LINE6_INDEX_PAUSE_PLAYBACK, &line6pcm->flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800454 break;
455
456 default:
457 return -EINVAL;
458 }
459
460 return 0;
461}
462
463/* playback pointer callback */
464static snd_pcm_uframes_t
465snd_line6_playback_pointer(struct snd_pcm_substream *substream)
466{
467 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
Jerry Snitselaarf3c52612014-04-24 00:31:48 -0700468
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100469 return line6pcm->out.pos_done;
Markus Grabner705ecec2009-02-27 19:43:04 -0800470}
471
472/* playback operators */
473struct snd_pcm_ops snd_line6_playback_ops = {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200474 .open = snd_line6_playback_open,
475 .close = snd_line6_playback_close,
476 .ioctl = snd_pcm_lib_ioctl,
477 .hw_params = snd_line6_playback_hw_params,
478 .hw_free = snd_line6_playback_hw_free,
479 .prepare = snd_line6_prepare,
480 .trigger = snd_line6_trigger,
481 .pointer = snd_line6_playback_pointer,
Markus Grabner705ecec2009-02-27 19:43:04 -0800482};
483
Markus Grabner1027f4762010-08-12 01:35:30 +0200484int line6_create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800485{
Chris Rorvick16d603d2015-01-12 12:42:55 -0800486 struct usb_line6 *line6 = line6pcm->line6;
Markus Grabner705ecec2009-02-27 19:43:04 -0800487 int i;
488
489 /* create audio URBs and fill in constant values: */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800490 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800491 struct urb *urb;
492
493 /* URB for audio out: */
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100494 urb = line6pcm->out.urbs[i] =
Shawn Bohrer45af4972009-11-15 22:17:50 -0600495 usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800496
Takashi Iwaia019f5e2015-01-19 15:05:10 +0100497 if (urb == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800498 return -ENOMEM;
Markus Grabner705ecec2009-02-27 19:43:04 -0800499
Chris Rorvick16d603d2015-01-12 12:42:55 -0800500 urb->dev = line6->usbdev;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600501 urb->pipe =
Chris Rorvick16d603d2015-01-12 12:42:55 -0800502 usb_sndisocpipe(line6->usbdev,
503 line6->properties->ep_audio_w &
Markus Grabnere1a164d2010-08-23 01:08:25 +0200504 USB_ENDPOINT_NUMBER_MASK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800505 urb->transfer_flags = URB_ISO_ASAP;
506 urb->start_frame = -1;
507 urb->number_of_packets = LINE6_ISO_PACKETS;
508 urb->interval = LINE6_ISO_INTERVAL;
509 urb->error_count = 0;
510 urb->complete = audio_out_callback;
511 }
512
513 return 0;
514}