2 * Line 6 Linux USB driver
4 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
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.
12 #include <linux/slab.h>
13 #include <linux/export.h>
14 #include <sound/core.h>
15 #include <sound/control.h>
16 #include <sound/pcm.h>
17 #include <sound/pcm_params.h>
23 /* impulse response volume controls */
24 static int snd_line6_impulse_volume_info(struct snd_kcontrol *kcontrol,
25 struct snd_ctl_elem_info *uinfo)
27 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
29 uinfo->value.integer.min = 0;
30 uinfo->value.integer.max = 255;
34 static int snd_line6_impulse_volume_get(struct snd_kcontrol *kcontrol,
35 struct snd_ctl_elem_value *ucontrol)
37 struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
39 ucontrol->value.integer.value[0] = line6pcm->impulse_volume;
43 static int snd_line6_impulse_volume_put(struct snd_kcontrol *kcontrol,
44 struct snd_ctl_elem_value *ucontrol)
46 struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
47 int value = ucontrol->value.integer.value[0];
50 if (line6pcm->impulse_volume == value)
53 line6pcm->impulse_volume = value;
55 err = line6_pcm_acquire(line6pcm, LINE6_STREAM_IMPULSE);
57 line6pcm->impulse_volume = 0;
58 line6_pcm_release(line6pcm, LINE6_STREAM_IMPULSE);
62 line6_pcm_release(line6pcm, LINE6_STREAM_IMPULSE);
67 /* impulse response period controls */
68 static int snd_line6_impulse_period_info(struct snd_kcontrol *kcontrol,
69 struct snd_ctl_elem_info *uinfo)
71 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
73 uinfo->value.integer.min = 0;
74 uinfo->value.integer.max = 2000;
78 static int snd_line6_impulse_period_get(struct snd_kcontrol *kcontrol,
79 struct snd_ctl_elem_value *ucontrol)
81 struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
83 ucontrol->value.integer.value[0] = line6pcm->impulse_period;
87 static int snd_line6_impulse_period_put(struct snd_kcontrol *kcontrol,
88 struct snd_ctl_elem_value *ucontrol)
90 struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
91 int value = ucontrol->value.integer.value[0];
93 if (line6pcm->impulse_period == value)
96 line6pcm->impulse_period = value;
101 Unlink all currently active URBs.
103 static void line6_unlink_audio_urbs(struct snd_line6_pcm *line6pcm,
104 struct line6_pcm_stream *pcms)
108 for (i = 0; i < LINE6_ISO_BUFFERS; i++) {
109 if (test_bit(i, &pcms->active_urbs)) {
110 if (!test_and_set_bit(i, &pcms->unlink_urbs))
111 usb_unlink_urb(pcms->urbs[i]);
117 Wait until unlinking of all currently active URBs has been finished.
119 static void line6_wait_clear_audio_urbs(struct snd_line6_pcm *line6pcm,
120 struct line6_pcm_stream *pcms)
128 for (i = 0; i < LINE6_ISO_BUFFERS; i++) {
129 if (test_bit(i, &pcms->active_urbs))
134 set_current_state(TASK_UNINTERRUPTIBLE);
136 } while (--timeout > 0);
138 dev_err(line6pcm->line6->ifcdev,
139 "timeout: still %d active urbs..\n", alive);
142 static inline struct line6_pcm_stream *
143 get_stream(struct snd_line6_pcm *line6pcm, int direction)
145 return (direction == SNDRV_PCM_STREAM_PLAYBACK) ?
146 &line6pcm->out : &line6pcm->in;
149 /* allocate a buffer if not opened yet;
150 * call this in line6pcm.state_change mutex
152 static int line6_buffer_acquire(struct snd_line6_pcm *line6pcm,
153 struct line6_pcm_stream *pstr, int type)
155 /* Invoked multiple times in a row so allocate once only */
156 if (!test_and_set_bit(type, &pstr->opened) && !pstr->buffer) {
157 pstr->buffer = kmalloc(LINE6_ISO_BUFFERS * LINE6_ISO_PACKETS *
158 line6pcm->max_packet_size, GFP_KERNEL);
165 /* free a buffer if all streams are closed;
166 * call this in line6pcm.state_change mutex
168 static void line6_buffer_release(struct snd_line6_pcm *line6pcm,
169 struct line6_pcm_stream *pstr, int type)
172 clear_bit(type, &pstr->opened);
174 line6_wait_clear_audio_urbs(line6pcm, pstr);
180 /* start a PCM stream */
181 static int line6_stream_start(struct snd_line6_pcm *line6pcm, int direction,
185 struct line6_pcm_stream *pstr = get_stream(line6pcm, direction);
188 spin_lock_irqsave(&pstr->lock, flags);
189 if (!test_and_set_bit(type, &pstr->running) &&
190 !(pstr->active_urbs || pstr->unlink_urbs)) {
192 /* Submit all currently available URBs */
193 if (direction == SNDRV_PCM_STREAM_PLAYBACK)
194 ret = line6_submit_audio_out_all_urbs(line6pcm);
196 ret = line6_submit_audio_in_all_urbs(line6pcm);
199 clear_bit(type, &pstr->running);
200 spin_unlock_irqrestore(&pstr->lock, flags);
204 /* stop a PCM stream; this doesn't sync with the unlinked URBs */
205 static void line6_stream_stop(struct snd_line6_pcm *line6pcm, int direction,
209 struct line6_pcm_stream *pstr = get_stream(line6pcm, direction);
211 spin_lock_irqsave(&pstr->lock, flags);
212 clear_bit(type, &pstr->running);
213 if (!pstr->running) {
214 line6_unlink_audio_urbs(line6pcm, pstr);
215 if (direction == SNDRV_PCM_STREAM_CAPTURE) {
216 line6pcm->prev_fbuf = NULL;
217 line6pcm->prev_fsize = 0;
220 spin_unlock_irqrestore(&pstr->lock, flags);
223 /* common PCM trigger callback */
224 int snd_line6_trigger(struct snd_pcm_substream *substream, int cmd)
226 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
227 struct snd_pcm_substream *s;
230 clear_bit(LINE6_FLAG_PREPARED, &line6pcm->flags);
232 snd_pcm_group_for_each_entry(s, substream) {
233 if (s->pcm->card != substream->pcm->card)
237 case SNDRV_PCM_TRIGGER_START:
238 case SNDRV_PCM_TRIGGER_RESUME:
239 err = line6_stream_start(line6pcm, s->stream,
245 case SNDRV_PCM_TRIGGER_STOP:
246 case SNDRV_PCM_TRIGGER_SUSPEND:
247 line6_stream_stop(line6pcm, s->stream,
251 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
252 if (s->stream != SNDRV_PCM_STREAM_PLAYBACK)
254 set_bit(LINE6_FLAG_PAUSE_PLAYBACK, &line6pcm->flags);
257 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
258 if (s->stream != SNDRV_PCM_STREAM_PLAYBACK)
260 clear_bit(LINE6_FLAG_PAUSE_PLAYBACK, &line6pcm->flags);
271 /* common PCM pointer callback */
272 snd_pcm_uframes_t snd_line6_pointer(struct snd_pcm_substream *substream)
274 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
275 struct line6_pcm_stream *pstr = get_stream(line6pcm, substream->stream);
277 return pstr->pos_done;
280 /* Acquire and start duplex streams:
281 * type is either LINE6_STREAM_IMPULSE or LINE6_STREAM_MONITOR
283 int line6_pcm_acquire(struct snd_line6_pcm *line6pcm, int type)
285 struct line6_pcm_stream *pstr;
288 mutex_lock(&line6pcm->state_mutex);
289 for (dir = 0; dir < 2; dir++) {
290 pstr = get_stream(line6pcm, dir);
291 ret = line6_buffer_acquire(line6pcm, pstr, type);
295 line6_wait_clear_audio_urbs(line6pcm, pstr);
297 for (dir = 0; dir < 2; dir++) {
298 ret = line6_stream_start(line6pcm, dir, type);
303 mutex_unlock(&line6pcm->state_mutex);
305 line6_pcm_release(line6pcm, type);
308 EXPORT_SYMBOL_GPL(line6_pcm_acquire);
310 /* Stop and release duplex streams */
311 void line6_pcm_release(struct snd_line6_pcm *line6pcm, int type)
313 struct line6_pcm_stream *pstr;
316 mutex_lock(&line6pcm->state_mutex);
317 for (dir = 0; dir < 2; dir++)
318 line6_stream_stop(line6pcm, dir, type);
319 for (dir = 0; dir < 2; dir++) {
320 pstr = get_stream(line6pcm, dir);
321 line6_buffer_release(line6pcm, pstr, type);
323 mutex_unlock(&line6pcm->state_mutex);
325 EXPORT_SYMBOL_GPL(line6_pcm_release);
327 /* common PCM hw_params callback */
328 int snd_line6_hw_params(struct snd_pcm_substream *substream,
329 struct snd_pcm_hw_params *hw_params)
332 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
333 struct line6_pcm_stream *pstr = get_stream(line6pcm, substream->stream);
335 mutex_lock(&line6pcm->state_mutex);
336 ret = line6_buffer_acquire(line6pcm, pstr, LINE6_STREAM_PCM);
340 ret = snd_pcm_lib_malloc_pages(substream,
341 params_buffer_bytes(hw_params));
343 line6_buffer_release(line6pcm, pstr, LINE6_STREAM_PCM);
347 pstr->period = params_period_bytes(hw_params);
349 mutex_unlock(&line6pcm->state_mutex);
353 /* common PCM hw_free callback */
354 int snd_line6_hw_free(struct snd_pcm_substream *substream)
356 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
357 struct line6_pcm_stream *pstr = get_stream(line6pcm, substream->stream);
359 mutex_lock(&line6pcm->state_mutex);
360 line6_buffer_release(line6pcm, pstr, LINE6_STREAM_PCM);
361 mutex_unlock(&line6pcm->state_mutex);
362 return snd_pcm_lib_free_pages(substream);
366 /* control info callback */
367 static int snd_line6_control_playback_info(struct snd_kcontrol *kcontrol,
368 struct snd_ctl_elem_info *uinfo)
370 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
372 uinfo->value.integer.min = 0;
373 uinfo->value.integer.max = 256;
377 /* control get callback */
378 static int snd_line6_control_playback_get(struct snd_kcontrol *kcontrol,
379 struct snd_ctl_elem_value *ucontrol)
382 struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
384 for (i = 0; i < 2; i++)
385 ucontrol->value.integer.value[i] = line6pcm->volume_playback[i];
390 /* control put callback */
391 static int snd_line6_control_playback_put(struct snd_kcontrol *kcontrol,
392 struct snd_ctl_elem_value *ucontrol)
395 struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
397 for (i = 0; i < 2; i++)
398 if (line6pcm->volume_playback[i] !=
399 ucontrol->value.integer.value[i]) {
400 line6pcm->volume_playback[i] =
401 ucontrol->value.integer.value[i];
408 /* control definition */
409 static struct snd_kcontrol_new line6_controls[] = {
411 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
412 .name = "PCM Playback Volume",
413 .info = snd_line6_control_playback_info,
414 .get = snd_line6_control_playback_get,
415 .put = snd_line6_control_playback_put
418 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
419 .name = "Impulse Response Volume",
420 .info = snd_line6_impulse_volume_info,
421 .get = snd_line6_impulse_volume_get,
422 .put = snd_line6_impulse_volume_put
425 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
426 .name = "Impulse Response Period",
427 .info = snd_line6_impulse_period_info,
428 .get = snd_line6_impulse_period_get,
429 .put = snd_line6_impulse_period_put
434 Cleanup the PCM device.
436 static void cleanup_urbs(struct line6_pcm_stream *pcms)
440 for (i = 0; i < LINE6_ISO_BUFFERS; i++) {
442 usb_kill_urb(pcms->urbs[i]);
443 usb_free_urb(pcms->urbs[i]);
448 static void line6_cleanup_pcm(struct snd_pcm *pcm)
450 struct snd_line6_pcm *line6pcm = snd_pcm_chip(pcm);
452 cleanup_urbs(&line6pcm->out);
453 cleanup_urbs(&line6pcm->in);
457 /* create a PCM device */
458 static int snd_line6_new_pcm(struct usb_line6 *line6, struct snd_pcm **pcm_ret)
463 err = snd_pcm_new(line6->card, (char *)line6->properties->name,
468 strcpy(pcm->name, line6->properties->name);
471 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
472 &snd_line6_playback_ops);
473 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_line6_capture_ops);
475 /* pre-allocation of buffers */
476 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_CONTINUOUS,
477 snd_dma_continuous_data
478 (GFP_KERNEL), 64 * 1024,
484 Sync with PCM stream stops.
486 void line6_pcm_disconnect(struct snd_line6_pcm *line6pcm)
488 line6_unlink_audio_urbs(line6pcm, &line6pcm->out);
489 line6_unlink_audio_urbs(line6pcm, &line6pcm->in);
490 line6_wait_clear_audio_urbs(line6pcm, &line6pcm->out);
491 line6_wait_clear_audio_urbs(line6pcm, &line6pcm->in);
495 Create and register the PCM device and mixer entries.
496 Create URBs for playback and capture.
498 int line6_init_pcm(struct usb_line6 *line6,
499 struct line6_pcm_properties *properties)
502 unsigned ep_read = line6->properties->ep_audio_r;
503 unsigned ep_write = line6->properties->ep_audio_w;
505 struct snd_line6_pcm *line6pcm;
507 if (!(line6->properties->capabilities & LINE6_CAP_PCM))
508 return 0; /* skip PCM initialization and report success */
510 err = snd_line6_new_pcm(line6, &pcm);
514 line6pcm = kzalloc(sizeof(*line6pcm), GFP_KERNEL);
518 mutex_init(&line6pcm->state_mutex);
520 line6pcm->properties = properties;
521 line6pcm->volume_playback[0] = line6pcm->volume_playback[1] = 255;
522 line6pcm->volume_monitor = 255;
523 line6pcm->line6 = line6;
525 /* Read and write buffers are sized identically, so choose minimum */
526 line6pcm->max_packet_size = min(
527 usb_maxpacket(line6->usbdev,
528 usb_rcvisocpipe(line6->usbdev, ep_read), 0),
529 usb_maxpacket(line6->usbdev,
530 usb_sndisocpipe(line6->usbdev, ep_write), 1));
532 spin_lock_init(&line6pcm->out.lock);
533 spin_lock_init(&line6pcm->in.lock);
534 line6pcm->impulse_period = LINE6_IMPULSE_DEFAULT_PERIOD;
536 line6->line6pcm = line6pcm;
538 pcm->private_data = line6pcm;
539 pcm->private_free = line6_cleanup_pcm;
541 err = line6_create_audio_out_urbs(line6pcm);
545 err = line6_create_audio_in_urbs(line6pcm);
550 for (i = 0; i < ARRAY_SIZE(line6_controls); i++) {
551 err = snd_ctl_add(line6->card,
552 snd_ctl_new1(&line6_controls[i], line6pcm));
559 EXPORT_SYMBOL_GPL(line6_init_pcm);
561 /* prepare pcm callback */
562 int snd_line6_prepare(struct snd_pcm_substream *substream)
564 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
565 struct line6_pcm_stream *pstr = get_stream(line6pcm, substream->stream);
567 mutex_lock(&line6pcm->state_mutex);
569 line6_wait_clear_audio_urbs(line6pcm, pstr);
571 if (!test_and_set_bit(LINE6_FLAG_PREPARED, &line6pcm->flags)) {
572 line6pcm->out.count = 0;
573 line6pcm->out.pos = 0;
574 line6pcm->out.pos_done = 0;
575 line6pcm->out.bytes = 0;
576 line6pcm->in.count = 0;
577 line6pcm->in.pos_done = 0;
578 line6pcm->in.bytes = 0;
581 mutex_unlock(&line6pcm->state_mutex);