blob: 9a51b92c09485a06234eabe3cdf8c4352ad8740b [file] [log] [blame]
Markus Grabner705ecec2009-02-27 19:43:04 -08001/*
Markus Grabnere1a164d2010-08-23 01:08:25 +02002 * Line6 Linux USB driver - 0.9.1beta
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
17#include "audio.h"
Markus Grabner1027f4762010-08-12 01:35:30 +020018#include "capture.h"
19#include "driver.h"
Markus Grabner705ecec2009-02-27 19:43:04 -080020#include "pcm.h"
21#include "pod.h"
Greg Kroah-Hartmanb702ed252009-02-27 20:45:03 -080022#include "playback.h"
Markus Grabner705ecec2009-02-27 19:43:04 -080023
Markus Grabner705ecec2009-02-27 19:43:04 -080024/*
25 Software stereo volume control.
26*/
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080027static void change_volume(struct urb *urb_out, int volume[],
28 int bytes_per_frame)
Markus Grabner705ecec2009-02-27 19:43:04 -080029{
30 int chn = 0;
31
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080032 if (volume[0] == 256 && volume[1] == 256)
Shawn Bohrer45af4972009-11-15 22:17:50 -060033 return; /* maximum volume - no change */
Markus Grabner705ecec2009-02-27 19:43:04 -080034
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080035 if (bytes_per_frame == 4) {
Markus Grabner705ecec2009-02-27 19:43:04 -080036 short *p, *buf_end;
37 p = (short *)urb_out->transfer_buffer;
38 buf_end = p + urb_out->transfer_buffer_length / sizeof(*p);
39
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -080040 for (; p < buf_end; ++p) {
Markus Grabner705ecec2009-02-27 19:43:04 -080041 *p = (*p * volume[chn & 1]) >> 8;
42 ++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;
46 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;
51 val = p[0] + (p[1] << 8) + ((signed char)p[2] << 16);
Markus Grabner705ecec2009-02-27 19:43:04 -080052 val = (val * volume[chn & 1]) >> 8;
53 p[0] = val;
54 p[1] = val >> 8;
55 p[2] = val >> 16;
56 ++chn;
57 }
58 }
59}
60
Markus Grabner1027f4762010-08-12 01:35:30 +020061#ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
62
63/*
64 Create signal for impulse response test.
65*/
66static void create_impulse_test_signal(struct snd_line6_pcm *line6pcm,
67 struct urb *urb_out, int bytes_per_frame)
68{
69 int frames = urb_out->transfer_buffer_length / bytes_per_frame;
70
71 if (bytes_per_frame == 4) {
Markus Grabnere1a164d2010-08-23 01:08:25 +020072 int i;
73 short *pi = (short *)line6pcm->prev_fbuf;
74 short *po = (short *)urb_out->transfer_buffer;
75
76 for (i = 0; i < frames; ++i) {
77 po[0] = pi[0];
78 po[1] = 0;
79 pi += 2;
80 po += 2;
81 }
Markus Grabner1027f4762010-08-12 01:35:30 +020082 } else if (bytes_per_frame == 6) {
83 int i, j;
84 unsigned char *pi = line6pcm->prev_fbuf;
85 unsigned char *po = urb_out->transfer_buffer;
86
87 for (i = 0; i < frames; ++i) {
88 for (j = 0; j < bytes_per_frame / 2; ++j)
89 po[j] = pi[j];
90
91 for (; j < bytes_per_frame; ++j)
92 po[j] = 0;
93
94 pi += bytes_per_frame;
95 po += bytes_per_frame;
96 }
Markus Grabnere1a164d2010-08-23 01:08:25 +020097 }
98 if (--line6pcm->impulse_count <= 0) {
99 ((unsigned char *)(urb_out->transfer_buffer))[bytes_per_frame -
100 1] =
101 line6pcm->impulse_volume;
102 line6pcm->impulse_count = line6pcm->impulse_period;
Markus Grabner1027f4762010-08-12 01:35:30 +0200103 }
104}
105
106#endif
107
108/*
109 Add signal to buffer for software monitoring.
110*/
111static void add_monitor_signal(struct urb *urb_out, unsigned char *signal,
112 int volume, int bytes_per_frame)
113{
114 if (volume == 0)
115 return; /* zero volume - no change */
116
117 if (bytes_per_frame == 4) {
118 short *pi, *po, *buf_end;
119 pi = (short *)signal;
120 po = (short *)urb_out->transfer_buffer;
121 buf_end = po + urb_out->transfer_buffer_length / sizeof(*po);
122
123 for (; po < buf_end; ++pi, ++po)
124 *po += (*pi * volume) >> 8;
125 }
126
127 /*
Markus Grabnere1a164d2010-08-23 01:08:25 +0200128 We don't need to handle devices with 6 bytes per frame here
129 since they all support hardware monitoring.
130 */
Markus Grabner1027f4762010-08-12 01:35:30 +0200131}
132
Markus Grabner705ecec2009-02-27 19:43:04 -0800133/*
134 Find a free URB, prepare audio data, and submit URB.
135*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200136static int submit_audio_out_urb(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800137{
138 int index;
139 unsigned long flags;
140 int i, urb_size, urb_frames;
Markus Grabnere1a164d2010-08-23 01:08:25 +0200141 int ret;
Markus Grabner705ecec2009-02-27 19:43:04 -0800142 const int bytes_per_frame = line6pcm->properties->bytes_per_frame;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600143 const int frame_increment =
144 line6pcm->properties->snd_line6_rates.rats[0].num_min;
145 const int frame_factor =
146 line6pcm->properties->snd_line6_rates.rats[0].den *
147 (USB_INTERVALS_PER_SECOND / LINE6_ISO_INTERVAL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800148 struct urb *urb_out;
149
150 spin_lock_irqsave(&line6pcm->lock_audio_out, flags);
Shawn Bohrer45af4972009-11-15 22:17:50 -0600151 index =
152 find_first_zero_bit(&line6pcm->active_urb_out, LINE6_ISO_BUFFERS);
Markus Grabner705ecec2009-02-27 19:43:04 -0800153
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800154 if (index < 0 || index >= LINE6_ISO_BUFFERS) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800155 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
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
160 urb_out = line6pcm->urb_audio_out[index];
161 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
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700169 if (line6pcm->flags & MASK_CAPTURE)
Markus Grabner1027f4762010-08-12 01:35:30 +0200170 fsize = line6pcm->prev_fsize;
Markus Grabner1027f4762010-08-12 01:35:30 +0200171
172 if (fsize == 0) {
173 int n;
174 line6pcm->count_out += frame_increment;
175 n = line6pcm->count_out / frame_factor;
176 line6pcm->count_out -= n * frame_factor;
177 fsize = n * bytes_per_frame;
178 }
179
Markus Grabner705ecec2009-02-27 19:43:04 -0800180 fout->offset = urb_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200181 fout->length = fsize;
182 urb_size += fsize;
183 }
184
185 if (urb_size == 0) {
186 /* can't determine URB size */
187 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
188 dev_err(line6pcm->line6->ifcdev, "driver bug: urb_size = 0\n"); /* this is somewhat paranoid */
189 return -EINVAL;
Markus Grabner705ecec2009-02-27 19:43:04 -0800190 }
191
192 urb_frames = urb_size / bytes_per_frame;
Markus Grabner1027f4762010-08-12 01:35:30 +0200193 urb_out->transfer_buffer =
194 line6pcm->buffer_out +
Stefan Hajnoczi153e3872011-12-10 02:12:29 +0100195 index * LINE6_ISO_PACKETS * line6pcm->max_packet_size;
Markus Grabner1027f4762010-08-12 01:35:30 +0200196 urb_out->transfer_buffer_length = urb_size;
197 urb_out->context = line6pcm;
Markus Grabner705ecec2009-02-27 19:43:04 -0800198
Markus Grabner1027f4762010-08-12 01:35:30 +0200199 if (test_bit(BIT_PCM_ALSA_PLAYBACK, &line6pcm->flags) &&
200 !test_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags)) {
201 struct snd_pcm_runtime *runtime =
202 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK)->runtime;
203
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800204 if (line6pcm->pos_out + urb_frames > runtime->buffer_size) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800205 /*
Shawn Bohrer45af4972009-11-15 22:17:50 -0600206 The transferred area goes over buffer boundary,
207 copy the data to the temp buffer.
208 */
Markus Grabner705ecec2009-02-27 19:43:04 -0800209 int len;
210 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
221 dev_err(line6pcm->line6->ifcdev, "driver bug: len = %d\n", len); /* this is somewhat paranoid */
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 +
225 line6pcm->pos_out * bytes_per_frame,
226 urb_out->transfer_buffer_length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800227 }
Markus Grabner1027f4762010-08-12 01:35:30 +0200228
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700229 line6pcm->pos_out += urb_frames;
230 if (line6pcm->pos_out >= runtime->buffer_size)
Markus Grabner1027f4762010-08-12 01:35:30 +0200231 line6pcm->pos_out -= runtime->buffer_size;
232 } else {
233 memset(urb_out->transfer_buffer, 0,
234 urb_out->transfer_buffer_length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800235 }
236
Markus Grabner1027f4762010-08-12 01:35:30 +0200237 change_volume(urb_out, line6pcm->volume_playback, bytes_per_frame);
Markus Grabner705ecec2009-02-27 19:43:04 -0800238
Peter Huewe597a1e72010-12-07 23:38:02 +0100239 if (line6pcm->prev_fbuf != NULL) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200240#ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
241 if (line6pcm->flags & MASK_PCM_IMPULSE) {
242 create_impulse_test_signal(line6pcm, urb_out,
243 bytes_per_frame);
244 if (line6pcm->flags & MASK_PCM_ALSA_CAPTURE) {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200245 line6_capture_copy(line6pcm,
246 urb_out->transfer_buffer,
247 urb_out->
248 transfer_buffer_length);
249 line6_capture_check_period(line6pcm,
250 urb_out->transfer_buffer_length);
Markus Grabner1027f4762010-08-12 01:35:30 +0200251 }
252 } else {
253#endif
254 if (!
Markus Grabnere1a164d2010-08-23 01:08:25 +0200255 (line6pcm->line6->
256 properties->capabilities & LINE6_BIT_HWMON)
257&& (line6pcm->flags & MASK_PLAYBACK)
258&& (line6pcm->flags & MASK_CAPTURE))
Markus Grabner1027f4762010-08-12 01:35:30 +0200259 add_monitor_signal(urb_out, line6pcm->prev_fbuf,
260 line6pcm->volume_monitor,
261 bytes_per_frame);
262#ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
263 }
264#endif
265 }
266#ifdef CONFIG_LINE6_USB_DUMP_PCM
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800267 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Shawn Bohrer45af4972009-11-15 22:17:50 -0600268 struct usb_iso_packet_descriptor *fout =
269 &urb_out->iso_frame_desc[i];
270 line6_write_hexdump(line6pcm->line6, 'P',
271 urb_out->transfer_buffer + fout->offset,
272 fout->length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800273 }
274#endif
275
Markus Grabnere1a164d2010-08-23 01:08:25 +0200276 ret = usb_submit_urb(urb_out, GFP_ATOMIC);
277
278 if (ret == 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800279 set_bit(index, &line6pcm->active_urb_out);
280 else
Markus Grabner1027f4762010-08-12 01:35:30 +0200281 dev_err(line6pcm->line6->ifcdev,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200282 "URB out #%d submission failed (%d)\n", index, ret);
Markus Grabner705ecec2009-02-27 19:43:04 -0800283
284 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
285 return 0;
286}
287
288/*
289 Submit all currently available playback URBs.
290*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200291int line6_submit_audio_out_all_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800292{
293 int ret, i;
294
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800295 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200296 ret = submit_audio_out_urb(line6pcm);
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800297 if (ret < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800298 return ret;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800299 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800300
301 return 0;
302}
303
304/*
305 Unlink all currently active playback URBs.
306*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200307void line6_unlink_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800308{
309 unsigned int i;
310
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800311 for (i = LINE6_ISO_BUFFERS; i--;) {
312 if (test_bit(i, &line6pcm->active_urb_out)) {
313 if (!test_and_set_bit(i, &line6pcm->unlink_urb_out)) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800314 struct urb *u = line6pcm->urb_audio_out[i];
Markus Grabner705ecec2009-02-27 19:43:04 -0800315 usb_unlink_urb(u);
316 }
317 }
318 }
319}
320
321/*
Markus Grabner1027f4762010-08-12 01:35:30 +0200322 Wait until unlinking of all currently active playback URBs has been finished.
Markus Grabner705ecec2009-02-27 19:43:04 -0800323*/
324static void wait_clear_audio_out_urbs(struct snd_line6_pcm *line6pcm)
325{
326 int timeout = HZ;
327 unsigned int i;
328 int alive;
329
330 do {
331 alive = 0;
332 for (i = LINE6_ISO_BUFFERS; i--;) {
333 if (test_bit(i, &line6pcm->active_urb_out))
334 alive++;
335 }
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800336 if (!alive)
Markus Grabner705ecec2009-02-27 19:43:04 -0800337 break;
338 set_current_state(TASK_UNINTERRUPTIBLE);
339 schedule_timeout(1);
340 } while (--timeout > 0);
341 if (alive)
342 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
Markus Grabner705ecec2009-02-27 19:43:04 -0800343}
344
345/*
346 Unlink all currently active playback URBs, and wait for finishing.
347*/
Markus Grabner1027f4762010-08-12 01:35:30 +0200348void line6_unlink_wait_clear_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800349{
Markus Grabner1027f4762010-08-12 01:35:30 +0200350 line6_unlink_audio_out_urbs(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800351 wait_clear_audio_out_urbs(line6pcm);
352}
353
354/*
355 Callback for completed playback URB.
356*/
Greg Kroah-Hartman0c7ab152009-02-27 20:28:04 -0800357static void audio_out_callback(struct urb *urb)
Markus Grabner705ecec2009-02-27 19:43:04 -0800358{
359 int i, index, length = 0, shutdown = 0;
360 unsigned long flags;
361
Markus Grabnere1a164d2010-08-23 01:08:25 +0200362 struct snd_line6_pcm *line6pcm = (struct snd_line6_pcm *)urb->context;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600363 struct snd_pcm_substream *substream =
Markus Grabner1027f4762010-08-12 01:35:30 +0200364 get_substream(line6pcm, SNDRV_PCM_STREAM_PLAYBACK);
365
366#if USE_CLEAR_BUFFER_WORKAROUND
367 memset(urb->transfer_buffer, 0, urb->transfer_buffer_length);
368#endif
369
370 line6pcm->last_frame_out = urb->start_frame;
Markus Grabner705ecec2009-02-27 19:43:04 -0800371
372 /* find index of URB */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800373 for (index = LINE6_ISO_BUFFERS; index--;)
374 if (urb == line6pcm->urb_audio_out[index])
Markus Grabner705ecec2009-02-27 19:43:04 -0800375 break;
376
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800377 if (index < 0)
Shawn Bohrer45af4972009-11-15 22:17:50 -0600378 return; /* URB has been unlinked asynchronously */
Markus Grabner705ecec2009-02-27 19:43:04 -0800379
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800380 for (i = LINE6_ISO_PACKETS; i--;)
Markus Grabner705ecec2009-02-27 19:43:04 -0800381 length += urb->iso_frame_desc[i].length;
382
383 spin_lock_irqsave(&line6pcm->lock_audio_out, flags);
Markus Grabner705ecec2009-02-27 19:43:04 -0800384
Markus Grabner1027f4762010-08-12 01:35:30 +0200385 if (test_bit(BIT_PCM_ALSA_PLAYBACK, &line6pcm->flags)) {
386 struct snd_pcm_runtime *runtime = substream->runtime;
387 line6pcm->pos_out_done +=
388 length / line6pcm->properties->bytes_per_frame;
389
390 if (line6pcm->pos_out_done >= runtime->buffer_size)
391 line6pcm->pos_out_done -= runtime->buffer_size;
392 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800393
394 clear_bit(index, &line6pcm->active_urb_out);
395
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800396 for (i = LINE6_ISO_PACKETS; i--;)
Markus Grabnere1a164d2010-08-23 01:08:25 +0200397 if (urb->iso_frame_desc[i].status == -EXDEV) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800398 shutdown = 1;
399 break;
400 }
401
Markus Grabner1027f4762010-08-12 01:35:30 +0200402 if (test_and_clear_bit(index, &line6pcm->unlink_urb_out))
Markus Grabner705ecec2009-02-27 19:43:04 -0800403 shutdown = 1;
404
405 spin_unlock_irqrestore(&line6pcm->lock_audio_out, flags);
406
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800407 if (!shutdown) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200408 submit_audio_out_urb(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800409
Markus Grabner1027f4762010-08-12 01:35:30 +0200410 if (test_bit(BIT_PCM_ALSA_PLAYBACK, &line6pcm->flags)) {
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700411 line6pcm->bytes_out += length;
412 if (line6pcm->bytes_out >= line6pcm->period_out) {
Markus Grabner1027f4762010-08-12 01:35:30 +0200413 line6pcm->bytes_out %= line6pcm->period_out;
414 snd_pcm_period_elapsed(substream);
415 }
Markus Grabner705ecec2009-02-27 19:43:04 -0800416 }
417 }
418}
419
420/* open playback callback */
421static int snd_line6_playback_open(struct snd_pcm_substream *substream)
422{
423 int err;
424 struct snd_pcm_runtime *runtime = substream->runtime;
425 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
426
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800427 err = snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200428 (&line6pcm->
429 properties->snd_line6_rates));
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800430 if (err < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800431 return err;
432
433 runtime->hw = line6pcm->properties->snd_line6_playback_hw;
434 return 0;
435}
436
437/* close playback callback */
438static int snd_line6_playback_close(struct snd_pcm_substream *substream)
439{
440 return 0;
441}
442
443/* hw_params playback callback */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600444static int snd_line6_playback_hw_params(struct snd_pcm_substream *substream,
445 struct snd_pcm_hw_params *hw_params)
Markus Grabner705ecec2009-02-27 19:43:04 -0800446{
447 int ret;
448 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
449
450 /* -- Florian Demski [FD] */
451 /* don't ask me why, but this fixes the bug on my machine */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800452 if (line6pcm == NULL) {
453 if (substream->pcm == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800454 return -ENOMEM;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800455 if (substream->pcm->private_data == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800456 return -ENOMEM;
457 substream->private_data = substream->pcm->private_data;
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800458 line6pcm = snd_pcm_substream_chip(substream);
Markus Grabner705ecec2009-02-27 19:43:04 -0800459 }
460 /* -- [FD] end */
461
Stefan Hajnoczi60c01a92011-12-10 02:12:27 +0100462 /* We may be invoked multiple times in a row so allocate once only */
463 if (!line6pcm->buffer_out)
464 line6pcm->buffer_out =
465 kmalloc(LINE6_ISO_BUFFERS * LINE6_ISO_PACKETS *
466 line6pcm->max_packet_size, GFP_KERNEL);
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000467
468 if (!line6pcm->buffer_out) {
469 dev_err(line6pcm->line6->ifcdev,
470 "cannot malloc playback buffer\n");
471 return -ENOMEM;
472 }
473
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800474 ret = snd_pcm_lib_malloc_pages(substream,
475 params_buffer_bytes(hw_params));
476 if (ret < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800477 return ret;
478
479 line6pcm->period_out = params_period_bytes(hw_params);
Markus Grabner705ecec2009-02-27 19:43:04 -0800480 return 0;
481}
482
483/* hw_free playback callback */
484static int snd_line6_playback_hw_free(struct snd_pcm_substream *substream)
485{
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000486 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
487
488 line6_unlink_wait_clear_audio_out_urbs(line6pcm);
489 kfree(line6pcm->buffer_out);
490 line6pcm->buffer_out = NULL;
Markus Grabner705ecec2009-02-27 19:43:04 -0800491 return snd_pcm_lib_free_pages(substream);
492}
493
494/* trigger playback callback */
Markus Grabner1027f4762010-08-12 01:35:30 +0200495int snd_line6_playback_trigger(struct snd_line6_pcm *line6pcm, int cmd)
Markus Grabner705ecec2009-02-27 19:43:04 -0800496{
Markus Grabner705ecec2009-02-27 19:43:04 -0800497 int err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800498
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800499 switch (cmd) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800500 case SNDRV_PCM_TRIGGER_START:
Markus Grabner1027f4762010-08-12 01:35:30 +0200501#ifdef CONFIG_PM
502 case SNDRV_PCM_TRIGGER_RESUME:
503#endif
504 err = line6_pcm_start(line6pcm, MASK_PCM_ALSA_PLAYBACK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800505
Markus Grabner1027f4762010-08-12 01:35:30 +0200506 if (err < 0)
507 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800508
509 break;
510
511 case SNDRV_PCM_TRIGGER_STOP:
Markus Grabner1027f4762010-08-12 01:35:30 +0200512#ifdef CONFIG_PM
513 case SNDRV_PCM_TRIGGER_SUSPEND:
514#endif
515 err = line6_pcm_stop(line6pcm, MASK_PCM_ALSA_PLAYBACK);
516
517 if (err < 0)
518 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800519
520 break;
521
522 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
523 set_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags);
524 break;
525
526 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
527 clear_bit(BIT_PAUSE_PLAYBACK, &line6pcm->flags);
528 break;
529
530 default:
531 return -EINVAL;
532 }
533
534 return 0;
535}
536
537/* playback pointer callback */
538static snd_pcm_uframes_t
539snd_line6_playback_pointer(struct snd_pcm_substream *substream)
540{
541 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
542 return line6pcm->pos_out_done;
543}
544
545/* playback operators */
546struct snd_pcm_ops snd_line6_playback_ops = {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200547 .open = snd_line6_playback_open,
548 .close = snd_line6_playback_close,
549 .ioctl = snd_pcm_lib_ioctl,
550 .hw_params = snd_line6_playback_hw_params,
551 .hw_free = snd_line6_playback_hw_free,
552 .prepare = snd_line6_prepare,
553 .trigger = snd_line6_trigger,
554 .pointer = snd_line6_playback_pointer,
Markus Grabner705ecec2009-02-27 19:43:04 -0800555};
556
Markus Grabner1027f4762010-08-12 01:35:30 +0200557int line6_create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800558{
559 int i;
560
561 /* create audio URBs and fill in constant values: */
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800562 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800563 struct urb *urb;
564
565 /* URB for audio out: */
Shawn Bohrer45af4972009-11-15 22:17:50 -0600566 urb = line6pcm->urb_audio_out[i] =
567 usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800568
Greg Kroah-Hartman010f3782009-02-27 22:41:12 -0800569 if (urb == NULL) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800570 dev_err(line6pcm->line6->ifcdev, "Out of memory\n");
571 return -ENOMEM;
572 }
573
574 urb->dev = line6pcm->line6->usbdev;
Shawn Bohrer45af4972009-11-15 22:17:50 -0600575 urb->pipe =
576 usb_sndisocpipe(line6pcm->line6->usbdev,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200577 line6pcm->ep_audio_write &
578 USB_ENDPOINT_NUMBER_MASK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800579 urb->transfer_flags = URB_ISO_ASAP;
580 urb->start_frame = -1;
581 urb->number_of_packets = LINE6_ISO_PACKETS;
582 urb->interval = LINE6_ISO_INTERVAL;
583 urb->error_count = 0;
584 urb->complete = audio_out_callback;
585 }
586
587 return 0;
588}