blob: f518fbbe88de2efb884332b91a1ab91b895c2b3f [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"
Markus Grabner1027f4762010-08-12 01:35:30 +020020
Markus Grabner705ecec2009-02-27 19:43:04 -080021/*
22 Find a free URB and submit it.
Takashi Iwai3d3ae442015-01-27 12:50:44 +010023 must be called in line6pcm->in.lock context
Markus Grabner705ecec2009-02-27 19:43:04 -080024*/
Markus Grabner1027f4762010-08-12 01:35:30 +020025static int submit_audio_in_urb(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -080026{
Markus Grabner1027f4762010-08-12 01:35:30 +020027 int index;
Markus Grabner705ecec2009-02-27 19:43:04 -080028 int i, urb_size;
Markus Grabnere1a164d2010-08-23 01:08:25 +020029 int ret;
Markus Grabner705ecec2009-02-27 19:43:04 -080030 struct urb *urb_in;
31
Shawn Bohrere0645d62009-11-15 22:17:52 -060032 index =
Takashi Iwaiad0119a2015-01-23 16:10:57 +010033 find_first_zero_bit(&line6pcm->in.active_urbs, LINE6_ISO_BUFFERS);
Markus Grabner705ecec2009-02-27 19:43:04 -080034
Markus Grabner1027f4762010-08-12 01:35:30 +020035 if (index < 0 || index >= LINE6_ISO_BUFFERS) {
Markus Grabner1027f4762010-08-12 01:35:30 +020036 dev_err(line6pcm->line6->ifcdev, "no free URB found\n");
Markus Grabner705ecec2009-02-27 19:43:04 -080037 return -EINVAL;
38 }
39
Takashi Iwaiad0119a2015-01-23 16:10:57 +010040 urb_in = line6pcm->in.urbs[index];
Markus Grabner705ecec2009-02-27 19:43:04 -080041 urb_size = 0;
42
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -080043 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Shawn Bohrere0645d62009-11-15 22:17:52 -060044 struct usb_iso_packet_descriptor *fin =
45 &urb_in->iso_frame_desc[i];
Markus Grabner705ecec2009-02-27 19:43:04 -080046 fin->offset = urb_size;
47 fin->length = line6pcm->max_packet_size;
48 urb_size += line6pcm->max_packet_size;
49 }
50
Shawn Bohrere0645d62009-11-15 22:17:52 -060051 urb_in->transfer_buffer =
Takashi Iwaiad0119a2015-01-23 16:10:57 +010052 line6pcm->in.buffer +
Shawn Bohrere0645d62009-11-15 22:17:52 -060053 index * LINE6_ISO_PACKETS * line6pcm->max_packet_size;
Markus Grabner705ecec2009-02-27 19:43:04 -080054 urb_in->transfer_buffer_length = urb_size;
Markus Grabner1027f4762010-08-12 01:35:30 +020055 urb_in->context = line6pcm;
Markus Grabner705ecec2009-02-27 19:43:04 -080056
Markus Grabnere1a164d2010-08-23 01:08:25 +020057 ret = usb_submit_urb(urb_in, GFP_ATOMIC);
58
59 if (ret == 0)
Takashi Iwaiad0119a2015-01-23 16:10:57 +010060 set_bit(index, &line6pcm->in.active_urbs);
Markus Grabner705ecec2009-02-27 19:43:04 -080061 else
Markus Grabner1027f4762010-08-12 01:35:30 +020062 dev_err(line6pcm->line6->ifcdev,
Markus Grabnere1a164d2010-08-23 01:08:25 +020063 "URB in #%d submission failed (%d)\n", index, ret);
Markus Grabner705ecec2009-02-27 19:43:04 -080064
Markus Grabner705ecec2009-02-27 19:43:04 -080065 return 0;
66}
67
68/*
69 Submit all currently available capture URBs.
Takashi Iwai63e20df2015-01-27 15:24:09 +010070 must be called in line6pcm->in.lock context
Markus Grabner705ecec2009-02-27 19:43:04 -080071*/
Markus Grabner1027f4762010-08-12 01:35:30 +020072int line6_submit_audio_in_all_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -080073{
Takashi Iwai3d3ae442015-01-27 12:50:44 +010074 int ret = 0, i;
Markus Grabner705ecec2009-02-27 19:43:04 -080075
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -080076 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner1027f4762010-08-12 01:35:30 +020077 ret = submit_audio_in_urb(line6pcm);
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -080078 if (ret < 0)
Takashi Iwai3d3ae442015-01-27 12:50:44 +010079 break;
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -080080 }
Markus Grabner705ecec2009-02-27 19:43:04 -080081
Takashi Iwai3d3ae442015-01-27 12:50:44 +010082 return ret;
Markus Grabner705ecec2009-02-27 19:43:04 -080083}
84
85/*
Markus Grabner1027f4762010-08-12 01:35:30 +020086 Copy data into ALSA capture buffer.
87*/
88void line6_capture_copy(struct snd_line6_pcm *line6pcm, char *fbuf, int fsize)
89{
90 struct snd_pcm_substream *substream =
91 get_substream(line6pcm, SNDRV_PCM_STREAM_CAPTURE);
92 struct snd_pcm_runtime *runtime = substream->runtime;
93 const int bytes_per_frame = line6pcm->properties->bytes_per_frame;
94 int frames = fsize / bytes_per_frame;
95
Peter Huewe597a1e72010-12-07 23:38:02 +010096 if (runtime == NULL)
Markus Grabnerc7fcf252010-09-17 23:33:25 +020097 return;
98
Takashi Iwaiad0119a2015-01-23 16:10:57 +010099 if (line6pcm->in.pos_done + frames > runtime->buffer_size) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200100 /*
Markus Grabnere1a164d2010-08-23 01:08:25 +0200101 The transferred area goes over buffer boundary,
102 copy two separate chunks.
103 */
Markus Grabner1027f4762010-08-12 01:35:30 +0200104 int len;
Mikhail Boikob5f87cf2014-03-18 23:59:46 +0200105
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100106 len = runtime->buffer_size - line6pcm->in.pos_done;
Markus Grabner1027f4762010-08-12 01:35:30 +0200107
108 if (len > 0) {
109 memcpy(runtime->dma_area +
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100110 line6pcm->in.pos_done * bytes_per_frame, fbuf,
Markus Grabner1027f4762010-08-12 01:35:30 +0200111 len * bytes_per_frame);
112 memcpy(runtime->dma_area, fbuf + len * bytes_per_frame,
113 (frames - len) * bytes_per_frame);
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700114 } else {
115 /* this is somewhat paranoid */
116 dev_err(line6pcm->line6->ifcdev,
117 "driver bug: len = %d\n", len);
118 }
Markus Grabner1027f4762010-08-12 01:35:30 +0200119 } else {
120 /* copy single chunk */
121 memcpy(runtime->dma_area +
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100122 line6pcm->in.pos_done * bytes_per_frame, fbuf, fsize);
Markus Grabner1027f4762010-08-12 01:35:30 +0200123 }
124
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100125 line6pcm->in.pos_done += frames;
126 if (line6pcm->in.pos_done >= runtime->buffer_size)
127 line6pcm->in.pos_done -= runtime->buffer_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200128}
129
130void line6_capture_check_period(struct snd_line6_pcm *line6pcm, int length)
131{
132 struct snd_pcm_substream *substream =
133 get_substream(line6pcm, SNDRV_PCM_STREAM_CAPTURE);
134
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100135 line6pcm->in.bytes += length;
136 if (line6pcm->in.bytes >= line6pcm->in.period) {
137 line6pcm->in.bytes %= line6pcm->in.period;
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100138 spin_unlock(&line6pcm->in.lock);
Markus Grabner1027f4762010-08-12 01:35:30 +0200139 snd_pcm_period_elapsed(substream);
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100140 spin_lock(&line6pcm->in.lock);
Markus Grabner1027f4762010-08-12 01:35:30 +0200141 }
142}
143
144/*
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700145 * Callback for completed capture URB.
146 */
Greg Kroah-Hartman0c7ab152009-02-27 20:28:04 -0800147static void audio_in_callback(struct urb *urb)
Markus Grabner705ecec2009-02-27 19:43:04 -0800148{
149 int i, index, length = 0, shutdown = 0;
Markus Grabner705ecec2009-02-27 19:43:04 -0800150 unsigned long flags;
151
Markus Grabner1027f4762010-08-12 01:35:30 +0200152 struct snd_line6_pcm *line6pcm = (struct snd_line6_pcm *)urb->context;
153
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100154 line6pcm->in.last_frame = urb->start_frame;
Markus Grabner705ecec2009-02-27 19:43:04 -0800155
156 /* find index of URB */
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800157 for (index = 0; index < LINE6_ISO_BUFFERS; ++index)
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100158 if (urb == line6pcm->in.urbs[index])
Markus Grabner705ecec2009-02-27 19:43:04 -0800159 break;
160
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100161 spin_lock_irqsave(&line6pcm->in.lock, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800162
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800163 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800164 char *fbuf;
165 int fsize;
166 struct usb_iso_packet_descriptor *fin = &urb->iso_frame_desc[i];
167
Markus Grabnere1a164d2010-08-23 01:08:25 +0200168 if (fin->status == -EXDEV) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800169 shutdown = 1;
170 break;
171 }
172
173 fbuf = urb->transfer_buffer + fin->offset;
174 fsize = fin->actual_length;
Markus Grabner1027f4762010-08-12 01:35:30 +0200175
176 if (fsize > line6pcm->max_packet_size) {
177 dev_err(line6pcm->line6->ifcdev,
178 "driver and/or device bug: packet too large (%d > %d)\n",
179 fsize, line6pcm->max_packet_size);
180 }
181
Markus Grabner705ecec2009-02-27 19:43:04 -0800182 length += fsize;
183
Markus Grabner1027f4762010-08-12 01:35:30 +0200184 /* the following assumes LINE6_ISO_PACKETS == 1: */
Markus Grabner1027f4762010-08-12 01:35:30 +0200185 line6pcm->prev_fbuf = fbuf;
Markus Grabner1027f4762010-08-12 01:35:30 +0200186 line6pcm->prev_fsize = fsize;
Markus Grabner705ecec2009-02-27 19:43:04 -0800187
Takashi Iwai63e20df2015-01-27 15:24:09 +0100188 if (!test_bit(LINE6_STREAM_IMPULSE, &line6pcm->in.running) &&
189 test_bit(LINE6_STREAM_PCM, &line6pcm->in.running) &&
190 fsize > 0)
191 line6_capture_copy(line6pcm, fbuf, fsize);
Markus Grabner705ecec2009-02-27 19:43:04 -0800192 }
193
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100194 clear_bit(index, &line6pcm->in.active_urbs);
Markus Grabner705ecec2009-02-27 19:43:04 -0800195
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100196 if (test_and_clear_bit(index, &line6pcm->in.unlink_urbs))
Markus Grabner705ecec2009-02-27 19:43:04 -0800197 shutdown = 1;
198
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800199 if (!shutdown) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200200 submit_audio_in_urb(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800201
Takashi Iwai63e20df2015-01-27 15:24:09 +0100202 if (!test_bit(LINE6_STREAM_IMPULSE, &line6pcm->in.running) &&
203 test_bit(LINE6_STREAM_PCM, &line6pcm->in.running))
204 line6_capture_check_period(line6pcm, length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800205 }
Takashi Iwai3d3ae442015-01-27 12:50:44 +0100206
207 spin_unlock_irqrestore(&line6pcm->in.lock, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800208}
209
210/* open capture callback */
211static int snd_line6_capture_open(struct snd_pcm_substream *substream)
212{
213 int err;
214 struct snd_pcm_runtime *runtime = substream->runtime;
215 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
216
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800217 err = snd_pcm_hw_constraint_ratdens(runtime, 0,
218 SNDRV_PCM_HW_PARAM_RATE,
Takashi Iwai1263f612015-01-28 15:08:59 +0100219 &line6pcm->properties->rates);
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800220 if (err < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800221 return err;
222
Takashi Iwai1263f612015-01-28 15:08:59 +0100223 runtime->hw = line6pcm->properties->capture_hw;
Markus Grabner705ecec2009-02-27 19:43:04 -0800224 return 0;
225}
226
227/* close capture callback */
228static int snd_line6_capture_close(struct snd_pcm_substream *substream)
229{
230 return 0;
231}
232
Markus Grabner705ecec2009-02-27 19:43:04 -0800233/* capture operators */
234struct snd_pcm_ops snd_line6_capture_ops = {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200235 .open = snd_line6_capture_open,
236 .close = snd_line6_capture_close,
237 .ioctl = snd_pcm_lib_ioctl,
Takashi Iwai63e20df2015-01-27 15:24:09 +0100238 .hw_params = snd_line6_hw_params,
239 .hw_free = snd_line6_hw_free,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200240 .prepare = snd_line6_prepare,
241 .trigger = snd_line6_trigger,
Takashi Iwai2954f912015-01-27 15:41:27 +0100242 .pointer = snd_line6_pointer,
Markus Grabner705ecec2009-02-27 19:43:04 -0800243};
244
Markus Grabner1027f4762010-08-12 01:35:30 +0200245int line6_create_audio_in_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800246{
Chris Rorvick16d603d2015-01-12 12:42:55 -0800247 struct usb_line6 *line6 = line6pcm->line6;
Markus Grabner705ecec2009-02-27 19:43:04 -0800248 int i;
249
250 /* create audio URBs and fill in constant values: */
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800251 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800252 struct urb *urb;
253
254 /* URB for audio in: */
Takashi Iwaiad0119a2015-01-23 16:10:57 +0100255 urb = line6pcm->in.urbs[i] =
Shawn Bohrere0645d62009-11-15 22:17:52 -0600256 usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800257
Takashi Iwaia019f5e2015-01-19 15:05:10 +0100258 if (urb == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800259 return -ENOMEM;
Markus Grabner705ecec2009-02-27 19:43:04 -0800260
Chris Rorvick16d603d2015-01-12 12:42:55 -0800261 urb->dev = line6->usbdev;
Shawn Bohrere0645d62009-11-15 22:17:52 -0600262 urb->pipe =
Chris Rorvick16d603d2015-01-12 12:42:55 -0800263 usb_rcvisocpipe(line6->usbdev,
264 line6->properties->ep_audio_r &
Markus Grabnere1a164d2010-08-23 01:08:25 +0200265 USB_ENDPOINT_NUMBER_MASK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800266 urb->transfer_flags = URB_ISO_ASAP;
267 urb->start_frame = -1;
268 urb->number_of_packets = LINE6_ISO_PACKETS;
269 urb->interval = LINE6_ISO_INTERVAL;
270 urb->error_count = 0;
271 urb->complete = audio_in_callback;
272 }
273
274 return 0;
275}