blob: 97ed593f6010f6dccf4e5eb5db39e4a2381a7692 [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) {
Takashi Iwai04169802015-01-28 12:29:05 +010034 __le16 *p, *buf_end;
Fabian Mewesa6b46992014-03-24 23:46:31 +010035
Takashi Iwai04169802015-01-28 12:29:05 +010036 p = (__le16 *)urb_out->transfer_buffer;
Markus Grabner705ecec2009-02-27 19:43:04 -080037 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 Iwai04169802015-01-28 12:29:05 +010040 short pv = le16_to_cpu(*p);
41 int val = (pv * volume[chn & 1]) >> 8;
Takashi Iwaif44f07c2015-03-05 13:03:28 +010042 pv = clamp(val, -0x8000, 0x7fff);
Takashi Iwai04169802015-01-28 12:29:05 +010043 *p = cpu_to_le16(pv);
Markus Grabner705ecec2009-02-27 19:43:04 -080044 ++chn;
45 }
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080046 } else if (bytes_per_frame == 6) {
Markus Grabner705ecec2009-02-27 19:43:04 -080047 unsigned char *p, *buf_end;
Jerry Snitselaarf3c52612014-04-24 00:31:48 -070048
Markus Grabner705ecec2009-02-27 19:43:04 -080049 p = (unsigned char *)urb_out->transfer_buffer;
50 buf_end = p + urb_out->transfer_buffer_length;
51
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080052 for (; p < buf_end; p += 3) {
53 int val;
Fabian Mewesa6b46992014-03-24 23:46:31 +010054
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080055 val = p[0] + (p[1] << 8) + ((signed char)p[2] << 16);
Markus Grabner705ecec2009-02-27 19:43:04 -080056 val = (val * volume[chn & 1]) >> 8;
Takashi Iwaif44f07c2015-03-05 13:03:28 +010057 val = clamp(val, -0x800000, 0x7fffff);
Markus Grabner705ecec2009-02-27 19:43:04 -080058 p[0] = val;
59 p[1] = val >> 8;
60 p[2] = val >> 16;
61 ++chn;
62 }
63 }
64}
65
Markus Grabner1027f4762010-08-12 01:35:30 +020066/*
67 Create signal for impulse response test.
68*/
69static void create_impulse_test_signal(struct snd_line6_pcm *line6pcm,
70 struct urb *urb_out, int bytes_per_frame)
71{
72 int frames = urb_out->transfer_buffer_length / bytes_per_frame;
73
74 if (bytes_per_frame == 4) {
Markus Grabnere1a164d2010-08-23 01:08:25 +020075 int i;
76 short *pi = (short *)line6pcm->prev_fbuf;
77 short *po = (short *)urb_out->transfer_buffer;
78
79 for (i = 0; i < frames; ++i) {
80 po[0] = pi[0];
81 po[1] = 0;
82 pi += 2;
83 po += 2;
84 }
Markus Grabner1027f4762010-08-12 01:35:30 +020085 } else if (bytes_per_frame == 6) {
86 int i, j;
87 unsigned char *pi = line6pcm->prev_fbuf;
88 unsigned char *po = urb_out->transfer_buffer;
89
90 for (i = 0; i < frames; ++i) {
91 for (j = 0; j < bytes_per_frame / 2; ++j)
92 po[j] = pi[j];
93
94 for (; j < bytes_per_frame; ++j)
95 po[j] = 0;
96
97 pi += bytes_per_frame;
98 po += bytes_per_frame;
99 }
Markus Grabnere1a164d2010-08-23 01:08:25 +0200100 }
101 if (--line6pcm->impulse_count <= 0) {
102 ((unsigned char *)(urb_out->transfer_buffer))[bytes_per_frame -
103 1] =
104 line6pcm->impulse_volume;
105 line6pcm->impulse_count = line6pcm->impulse_period;
Markus Grabner1027f4762010-08-12 01:35:30 +0200106 }
107}
108
Markus Grabner1027f4762010-08-12 01:35:30 +0200109/*
110 Add signal to buffer for software monitoring.
111*/
112static void add_monitor_signal(struct urb *urb_out, unsigned char *signal,
113 int volume, int bytes_per_frame)
114{
115 if (volume == 0)
116 return; /* zero volume - no change */
117
118 if (bytes_per_frame == 4) {
Takashi Iwai04169802015-01-28 12:29:05 +0100119 __le16 *pi, *po, *buf_end;
Fabian Mewesa6b46992014-03-24 23:46:31 +0100120
Takashi Iwai04169802015-01-28 12:29:05 +0100121 pi = (__le16 *)signal;
122 po = (__le16 *)urb_out->transfer_buffer;
Markus Grabner1027f4762010-08-12 01:35:30 +0200123 buf_end = po + urb_out->transfer_buffer_length / sizeof(*po);
124
Takashi Iwaic8491532015-01-23 16:54:36 +0100125 for (; po < buf_end; ++pi, ++po) {
Takashi Iwai04169802015-01-28 12:29:05 +0100126 short pov = le16_to_cpu(*po);
127 short piv = le16_to_cpu(*pi);
128 int val = pov + ((piv * volume) >> 8);
Takashi Iwaif44f07c2015-03-05 13:03:28 +0100129 pov = clamp(val, -0x8000, 0x7fff);
Takashi Iwai04169802015-01-28 12:29:05 +0100130 *po = cpu_to_le16(pov);
Takashi Iwaic8491532015-01-23 16:54:36 +0100131 }
Markus Grabner1027f4762010-08-12 01:35:30 +0200132 }
133
134 /*
Markus Grabnere1a164d2010-08-23 01:08:25 +0200135 We don't need to handle devices with 6 bytes per frame here
136 since they all support hardware monitoring.
137 */
Markus Grabner1027f4762010-08-12 01:35:30 +0200138}
139
Markus Grabner705ecec2009-02-27 19:43:04 -0800140/*
141 Find a free URB, prepare audio data, and submit URB.
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100142 must be called in line6pcm->out.lock context
Markus Grabner705ecec2009-02-27 19:43:04 -0800143*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200144static int submit_audio_out_urb(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800145{
146 int index;
Markus Grabner705ecec2009-02-27 19:43:04 -0800147 int i, urb_size, urb_frames;
Markus Grabnere1a164d2010-08-23 01:08:25 +0200148 int ret;
Markus Grabner705ecec2009-02-27 19:43:04 -0800149 const int bytes_per_frame = line6pcm->properties->bytes_per_frame;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600150 const int frame_increment =
Takashi Iwai1263f612015-01-28 15:08:59 +0100151 line6pcm->properties->rates.rats[0].num_min;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600152 const int frame_factor =
Takashi Iwai1263f612015-01-28 15:08:59 +0100153 line6pcm->properties->rates.rats[0].den *
154 (USB_INTERVALS_PER_SECOND / LINE6_ISO_INTERVAL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800155 struct urb *urb_out;
156
Shawn Bohrer45af4972009-11-15 22:17:50 -0600157 index =
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100158 find_first_zero_bit(&line6pcm->out.active_urbs, LINE6_ISO_BUFFERS);
Markus Grabner705ecec2009-02-27 19:43:04 -0800159
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800160 if (index < 0 || index >= LINE6_ISO_BUFFERS) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200161 dev_err(line6pcm->line6->ifcdev, "no free URB found\n");
Markus Grabner705ecec2009-02-27 19:43:04 -0800162 return -EINVAL;
163 }
164
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100165 urb_out = line6pcm->out.urbs[index];
Markus Grabner705ecec2009-02-27 19:43:04 -0800166 urb_size = 0;
167
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800168 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800169 /* compute frame size for given sampling rate */
Markus Grabner1027f4762010-08-12 01:35:30 +0200170 int fsize = 0;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600171 struct usb_iso_packet_descriptor *fout =
172 &urb_out->iso_frame_desc[i];
Markus Grabner1027f4762010-08-12 01:35:30 +0200173
Takashi Iwaif2bb6142015-01-27 16:17:26 +0100174 fsize = line6pcm->prev_fsize;
Markus Grabner1027f4762010-08-12 01:35:30 +0200175 if (fsize == 0) {
176 int n;
Fabian Mewesa6b46992014-03-24 23:46:31 +0100177
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100178 line6pcm->out.count += frame_increment;
179 n = line6pcm->out.count / frame_factor;
180 line6pcm->out.count -= n * frame_factor;
Markus Grabner1027f4762010-08-12 01:35:30 +0200181 fsize = n * bytes_per_frame;
182 }
183
Markus Grabner705ecec2009-02-27 19:43:04 -0800184 fout->offset = urb_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200185 fout->length = fsize;
186 urb_size += fsize;
187 }
188
189 if (urb_size == 0) {
190 /* can't determine URB size */
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
Takashi Iwai63e20df2015-01-27 15:24:09 +0100202 if (test_bit(LINE6_STREAM_PCM, &line6pcm->out.running) &&
203 !test_bit(LINE6_FLAG_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
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100245 spin_lock_nested(&line6pcm->in.lock, SINGLE_DEPTH_NESTING);
246 if (line6pcm->prev_fbuf) {
Takashi Iwai63e20df2015-01-27 15:24:09 +0100247 if (test_bit(LINE6_STREAM_IMPULSE, &line6pcm->out.running)) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200248 create_impulse_test_signal(line6pcm, urb_out,
249 bytes_per_frame);
Takashi Iwai63e20df2015-01-27 15:24:09 +0100250 if (test_bit(LINE6_STREAM_PCM, &line6pcm->in.running)) {
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 {
Takashi Iwai63e20df2015-01-27 15:24:09 +0100259 if (!(line6pcm->line6->properties->capabilities & LINE6_CAP_HWMON)
260 && line6pcm->out.running && line6pcm->in.running)
Markus Grabner1027f4762010-08-12 01:35:30 +0200261 add_monitor_signal(urb_out, line6pcm->prev_fbuf,
262 line6pcm->volume_monitor,
263 bytes_per_frame);
Markus Grabner1027f4762010-08-12 01:35:30 +0200264 }
Takashi Iwaif2bb6142015-01-27 16:17:26 +0100265 line6pcm->prev_fbuf = NULL;
266 line6pcm->prev_fsize = 0;
Markus Grabner1027f4762010-08-12 01:35:30 +0200267 }
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100268 spin_unlock(&line6pcm->in.lock);
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
Markus Grabner705ecec2009-02-27 19:43:04 -0800278 return 0;
279}
280
281/*
282 Submit all currently available playback URBs.
Takashi Iwai63e20df2015-01-27 15:24:09 +0100283 must be called in line6pcm->out.lock context
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{
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100287 int ret = 0, i;
Markus Grabner705ecec2009-02-27 19:43:04 -0800288
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 return ret;
Markus Grabner705ecec2009-02-27 19:43:04 -0800296}
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
Takashi Iwai63e20df2015-01-27 15:24:09 +0100328 if (test_bit(LINE6_STREAM_PCM, &line6pcm->out.running)) {
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
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800349 if (!shutdown) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200350 submit_audio_out_urb(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800351
Takashi Iwai63e20df2015-01-27 15:24:09 +0100352 if (test_bit(LINE6_STREAM_PCM, &line6pcm->out.running)) {
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100353 line6pcm->out.bytes += length;
354 if (line6pcm->out.bytes >= line6pcm->out.period) {
355 line6pcm->out.bytes %= line6pcm->out.period;
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100356 spin_unlock(&line6pcm->out.lock);
Markus Grabner1027f4762010-08-12 01:35:30 +0200357 snd_pcm_period_elapsed(substream);
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100358 spin_lock(&line6pcm->out.lock);
Markus Grabner1027f4762010-08-12 01:35:30 +0200359 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800360 }
361 }
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100362 spin_unlock_irqrestore(&line6pcm->out.lock, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800363}
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,
Takashi Iwai1263f612015-01-28 15:08:59 +0100373 &line6pcm->properties->rates);
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800374 if (err < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800375 return err;
376
Takashi Iwai1263f612015-01-28 15:08:59 +0100377 runtime->hw = line6pcm->properties->playback_hw;
Markus Grabner705ecec2009-02-27 19:43:04 -0800378 return 0;
379}
380
381/* close playback callback */
382static int snd_line6_playback_close(struct snd_pcm_substream *substream)
383{
384 return 0;
385}
386
Markus Grabner705ecec2009-02-27 19:43:04 -0800387/* playback operators */
388struct snd_pcm_ops snd_line6_playback_ops = {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200389 .open = snd_line6_playback_open,
390 .close = snd_line6_playback_close,
391 .ioctl = snd_pcm_lib_ioctl,
Takashi Iwai63e20df2015-01-27 15:24:09 +0100392 .hw_params = snd_line6_hw_params,
393 .hw_free = snd_line6_hw_free,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200394 .prepare = snd_line6_prepare,
395 .trigger = snd_line6_trigger,
Takashi Iwai2954f912015-01-27 15:41:27 +0100396 .pointer = snd_line6_pointer,
Markus Grabner705ecec2009-02-27 19:43:04 -0800397};
398
Markus Grabner1027f4762010-08-12 01:35:30 +0200399int line6_create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800400{
Chris Rorvick16d603d2015-01-12 12:42:55 -0800401 struct usb_line6 *line6 = line6pcm->line6;
Markus Grabner705ecec2009-02-27 19:43:04 -0800402 int i;
403
404 /* create audio URBs and fill in constant values: */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800405 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800406 struct urb *urb;
407
408 /* URB for audio out: */
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100409 urb = line6pcm->out.urbs[i] =
Shawn Bohrer45af4972009-11-15 22:17:50 -0600410 usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800411
Takashi Iwaia019f5e2015-01-19 15:05:10 +0100412 if (urb == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800413 return -ENOMEM;
Markus Grabner705ecec2009-02-27 19:43:04 -0800414
Chris Rorvick16d603d2015-01-12 12:42:55 -0800415 urb->dev = line6->usbdev;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600416 urb->pipe =
Chris Rorvick16d603d2015-01-12 12:42:55 -0800417 usb_sndisocpipe(line6->usbdev,
418 line6->properties->ep_audio_w &
Markus Grabnere1a164d2010-08-23 01:08:25 +0200419 USB_ENDPOINT_NUMBER_MASK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800420 urb->transfer_flags = URB_ISO_ASAP;
421 urb->start_frame = -1;
422 urb->number_of_packets = LINE6_ISO_PACKETS;
423 urb->interval = LINE6_ISO_INTERVAL;
424 urb->error_count = 0;
425 urb->complete = audio_out_callback;
426 }
427
428 return 0;
429}