2009-02-28 11:43:04 +08:00
|
|
|
/*
|
2010-08-23 07:08:25 +08:00
|
|
|
* Line6 Linux USB driver - 0.9.1beta
|
2009-02-28 11:43:04 +08:00
|
|
|
*
|
2010-08-12 07:35:30 +08:00
|
|
|
* Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
|
2009-02-28 11:43:04 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation, version 2.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2015-01-15 15:22:31 +08:00
|
|
|
#include <linux/export.h>
|
2009-02-28 11:43:04 +08:00
|
|
|
#include <sound/core.h>
|
|
|
|
#include <sound/control.h>
|
|
|
|
#include <sound/pcm.h>
|
|
|
|
#include <sound/pcm_params.h>
|
|
|
|
|
|
|
|
#include "capture.h"
|
2010-08-12 07:35:30 +08:00
|
|
|
#include "driver.h"
|
2009-02-28 11:43:04 +08:00
|
|
|
#include "playback.h"
|
|
|
|
|
2015-01-19 21:28:25 +08:00
|
|
|
/* impulse response volume controls */
|
|
|
|
static int snd_line6_impulse_volume_info(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_info *uinfo)
|
2010-08-12 07:35:30 +08:00
|
|
|
{
|
2015-01-19 21:28:25 +08:00
|
|
|
uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
|
|
|
|
uinfo->count = 1;
|
|
|
|
uinfo->value.integer.min = 0;
|
|
|
|
uinfo->value.integer.max = 255;
|
|
|
|
return 0;
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
|
|
|
|
2015-01-19 21:28:25 +08:00
|
|
|
static int snd_line6_impulse_volume_get(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol)
|
2010-08-12 07:35:30 +08:00
|
|
|
{
|
2015-01-19 21:28:25 +08:00
|
|
|
struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
|
|
|
|
|
|
|
|
ucontrol->value.integer.value[0] = line6pcm->impulse_volume;
|
|
|
|
return 0;
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
|
|
|
|
2015-01-19 21:28:25 +08:00
|
|
|
static int snd_line6_impulse_volume_put(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol)
|
2010-08-12 07:35:30 +08:00
|
|
|
{
|
2015-01-19 21:28:25 +08:00
|
|
|
struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
|
|
|
|
int value = ucontrol->value.integer.value[0];
|
2012-08-06 20:08:50 +08:00
|
|
|
|
2015-01-19 21:28:25 +08:00
|
|
|
if (line6pcm->impulse_volume == value)
|
|
|
|
return 0;
|
2012-08-06 20:08:50 +08:00
|
|
|
|
2010-08-12 07:35:30 +08:00
|
|
|
line6pcm->impulse_volume = value;
|
2010-08-23 07:08:25 +08:00
|
|
|
if (value > 0)
|
2012-01-20 07:09:09 +08:00
|
|
|
line6_pcm_acquire(line6pcm, LINE6_BITS_PCM_IMPULSE);
|
2010-08-12 07:35:30 +08:00
|
|
|
else
|
2012-01-20 07:09:09 +08:00
|
|
|
line6_pcm_release(line6pcm, LINE6_BITS_PCM_IMPULSE);
|
2015-01-19 21:28:25 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2010-08-12 07:35:30 +08:00
|
|
|
|
2015-01-19 21:28:25 +08:00
|
|
|
/* impulse response period controls */
|
|
|
|
static int snd_line6_impulse_period_info(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_info *uinfo)
|
|
|
|
{
|
|
|
|
uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
|
|
|
|
uinfo->count = 1;
|
|
|
|
uinfo->value.integer.min = 0;
|
|
|
|
uinfo->value.integer.max = 2000;
|
|
|
|
return 0;
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
|
|
|
|
2015-01-19 21:28:25 +08:00
|
|
|
static int snd_line6_impulse_period_get(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol)
|
2010-08-12 07:35:30 +08:00
|
|
|
{
|
2015-01-19 21:28:25 +08:00
|
|
|
struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
|
|
|
|
|
|
|
|
ucontrol->value.integer.value[0] = line6pcm->impulse_period;
|
|
|
|
return 0;
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
|
|
|
|
2015-01-19 21:28:25 +08:00
|
|
|
static int snd_line6_impulse_period_put(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol)
|
2010-08-12 07:35:30 +08:00
|
|
|
{
|
2015-01-19 21:28:25 +08:00
|
|
|
struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
|
|
|
|
int value = ucontrol->value.integer.value[0];
|
2012-11-30 18:57:32 +08:00
|
|
|
|
2015-01-19 21:28:25 +08:00
|
|
|
if (line6pcm->impulse_period == value)
|
|
|
|
return 0;
|
2012-11-30 18:57:32 +08:00
|
|
|
|
2015-01-19 21:28:25 +08:00
|
|
|
line6pcm->impulse_period = value;
|
|
|
|
return 1;
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
|
|
|
|
2011-12-10 09:12:32 +08:00
|
|
|
static bool test_flags(unsigned long flags0, unsigned long flags1,
|
|
|
|
unsigned long mask)
|
|
|
|
{
|
|
|
|
return ((flags0 & mask) == 0) && ((flags1 & mask) != 0);
|
|
|
|
}
|
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
int line6_pcm_acquire(struct snd_line6_pcm *line6pcm, int channels)
|
2010-08-12 07:35:30 +08:00
|
|
|
{
|
2013-06-22 03:55:35 +08:00
|
|
|
unsigned long flags_old, flags_new, flags_final;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
do {
|
|
|
|
flags_old = ACCESS_ONCE(line6pcm->flags);
|
|
|
|
flags_new = flags_old | channels;
|
|
|
|
} while (cmpxchg(&line6pcm->flags, flags_old, flags_new) != flags_old);
|
|
|
|
|
|
|
|
flags_final = flags_old;
|
2012-05-05 22:31:52 +08:00
|
|
|
|
2010-08-12 07:35:30 +08:00
|
|
|
line6pcm->prev_fbuf = NULL;
|
2010-08-23 07:08:25 +08:00
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
if (test_flags(flags_old, flags_new, LINE6_BITS_CAPTURE_BUFFER)) {
|
2012-11-11 20:24:41 +08:00
|
|
|
/* Invoked multiple times in a row so allocate once only */
|
2012-01-20 07:09:09 +08:00
|
|
|
if (!line6pcm->buffer_in) {
|
|
|
|
line6pcm->buffer_in =
|
|
|
|
kmalloc(LINE6_ISO_BUFFERS * LINE6_ISO_PACKETS *
|
|
|
|
line6pcm->max_packet_size, GFP_KERNEL);
|
|
|
|
if (!line6pcm->buffer_in) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto pcm_acquire_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
flags_final |= channels & LINE6_BITS_CAPTURE_BUFFER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (test_flags(flags_old, flags_new, LINE6_BITS_CAPTURE_STREAM)) {
|
2010-08-12 07:35:30 +08:00
|
|
|
/*
|
2010-08-23 07:08:25 +08:00
|
|
|
Waiting for completion of active URBs in the stop handler is
|
|
|
|
a bug, we therefore report an error if capturing is restarted
|
|
|
|
too soon.
|
|
|
|
*/
|
2012-01-20 07:09:09 +08:00
|
|
|
if (line6pcm->active_urb_in | line6pcm->unlink_urb_in) {
|
|
|
|
dev_err(line6pcm->line6->ifcdev, "Device not yet ready\n");
|
2010-08-12 07:35:30 +08:00
|
|
|
return -EBUSY;
|
2011-12-10 09:12:32 +08:00
|
|
|
}
|
|
|
|
|
2010-08-12 07:35:30 +08:00
|
|
|
line6pcm->count_in = 0;
|
|
|
|
line6pcm->prev_fsize = 0;
|
|
|
|
err = line6_submit_audio_in_all_urbs(line6pcm);
|
2010-08-23 07:08:25 +08:00
|
|
|
|
2011-12-10 09:12:32 +08:00
|
|
|
if (err < 0)
|
2012-01-20 07:09:09 +08:00
|
|
|
goto pcm_acquire_error;
|
|
|
|
|
|
|
|
flags_final |= channels & LINE6_BITS_CAPTURE_STREAM;
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
2010-08-23 07:08:25 +08:00
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
if (test_flags(flags_old, flags_new, LINE6_BITS_PLAYBACK_BUFFER)) {
|
2012-11-11 20:24:41 +08:00
|
|
|
/* Invoked multiple times in a row so allocate once only */
|
2012-01-20 07:09:09 +08:00
|
|
|
if (!line6pcm->buffer_out) {
|
|
|
|
line6pcm->buffer_out =
|
|
|
|
kmalloc(LINE6_ISO_BUFFERS * LINE6_ISO_PACKETS *
|
|
|
|
line6pcm->max_packet_size, GFP_KERNEL);
|
|
|
|
if (!line6pcm->buffer_out) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto pcm_acquire_error;
|
|
|
|
}
|
2010-08-12 07:35:30 +08:00
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
flags_final |= channels & LINE6_BITS_PLAYBACK_BUFFER;
|
|
|
|
}
|
|
|
|
}
|
2011-12-10 09:12:32 +08:00
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
if (test_flags(flags_old, flags_new, LINE6_BITS_PLAYBACK_STREAM)) {
|
|
|
|
/*
|
|
|
|
See comment above regarding PCM restart.
|
|
|
|
*/
|
|
|
|
if (line6pcm->active_urb_out | line6pcm->unlink_urb_out) {
|
|
|
|
dev_err(line6pcm->line6->ifcdev, "Device not yet ready\n");
|
|
|
|
return -EBUSY;
|
2011-12-10 09:12:32 +08:00
|
|
|
}
|
|
|
|
|
2010-08-12 07:35:30 +08:00
|
|
|
line6pcm->count_out = 0;
|
|
|
|
err = line6_submit_audio_out_all_urbs(line6pcm);
|
2010-08-23 07:08:25 +08:00
|
|
|
|
2011-12-10 09:12:32 +08:00
|
|
|
if (err < 0)
|
2012-01-20 07:09:09 +08:00
|
|
|
goto pcm_acquire_error;
|
|
|
|
|
|
|
|
flags_final |= channels & LINE6_BITS_PLAYBACK_STREAM;
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
2010-08-23 07:08:25 +08:00
|
|
|
|
2010-08-12 07:35:30 +08:00
|
|
|
return 0;
|
2011-12-10 09:12:32 +08:00
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
pcm_acquire_error:
|
|
|
|
/*
|
|
|
|
If not all requested resources/streams could be obtained, release
|
|
|
|
those which were successfully obtained (if any).
|
|
|
|
*/
|
|
|
|
line6_pcm_release(line6pcm, flags_final & channels);
|
2011-12-10 09:12:32 +08:00
|
|
|
return err;
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
2015-01-15 15:22:31 +08:00
|
|
|
EXPORT_SYMBOL_GPL(line6_pcm_acquire);
|
2010-08-12 07:35:30 +08:00
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
int line6_pcm_release(struct snd_line6_pcm *line6pcm, int channels)
|
2010-08-12 07:35:30 +08:00
|
|
|
{
|
2013-06-22 03:55:35 +08:00
|
|
|
unsigned long flags_old, flags_new;
|
|
|
|
|
|
|
|
do {
|
|
|
|
flags_old = ACCESS_ONCE(line6pcm->flags);
|
|
|
|
flags_new = flags_old & ~channels;
|
|
|
|
} while (cmpxchg(&line6pcm->flags, flags_old, flags_new) != flags_old);
|
2010-08-12 07:35:30 +08:00
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
if (test_flags(flags_new, flags_old, LINE6_BITS_CAPTURE_STREAM))
|
2010-08-12 07:35:30 +08:00
|
|
|
line6_unlink_audio_in_urbs(line6pcm);
|
2011-12-10 09:12:32 +08:00
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
if (test_flags(flags_new, flags_old, LINE6_BITS_CAPTURE_BUFFER)) {
|
|
|
|
line6_wait_clear_audio_in_urbs(line6pcm);
|
|
|
|
line6_free_capture_buffer(line6pcm);
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
if (test_flags(flags_new, flags_old, LINE6_BITS_PLAYBACK_STREAM))
|
2010-08-12 07:35:30 +08:00
|
|
|
line6_unlink_audio_out_urbs(line6pcm);
|
2011-12-10 09:12:32 +08:00
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
if (test_flags(flags_new, flags_old, LINE6_BITS_PLAYBACK_BUFFER)) {
|
|
|
|
line6_wait_clear_audio_out_urbs(line6pcm);
|
|
|
|
line6_free_playback_buffer(line6pcm);
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2015-01-15 15:22:31 +08:00
|
|
|
EXPORT_SYMBOL_GPL(line6_pcm_release);
|
2010-08-12 07:35:30 +08:00
|
|
|
|
2009-02-28 11:43:04 +08:00
|
|
|
/* trigger callback */
|
|
|
|
int snd_line6_trigger(struct snd_pcm_substream *substream, int cmd)
|
|
|
|
{
|
|
|
|
struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
|
|
|
|
struct snd_pcm_substream *s;
|
|
|
|
int err;
|
|
|
|
|
2015-01-19 22:15:21 +08:00
|
|
|
spin_lock(&line6pcm->lock_trigger);
|
2012-01-20 07:09:09 +08:00
|
|
|
clear_bit(LINE6_INDEX_PREPARED, &line6pcm->flags);
|
2009-02-28 11:43:04 +08:00
|
|
|
|
|
|
|
snd_pcm_group_for_each_entry(s, substream) {
|
2015-01-19 22:11:17 +08:00
|
|
|
if (s->pcm->card != substream->pcm->card)
|
|
|
|
continue;
|
2009-02-28 14:43:30 +08:00
|
|
|
switch (s->stream) {
|
2009-02-28 11:43:04 +08:00
|
|
|
case SNDRV_PCM_STREAM_PLAYBACK:
|
2010-08-12 07:35:30 +08:00
|
|
|
err = snd_line6_playback_trigger(line6pcm, cmd);
|
2009-02-28 11:43:04 +08:00
|
|
|
|
2009-02-28 14:43:30 +08:00
|
|
|
if (err < 0) {
|
2015-01-19 22:15:21 +08:00
|
|
|
spin_unlock(&line6pcm->lock_trigger);
|
2009-02-28 11:43:04 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SNDRV_PCM_STREAM_CAPTURE:
|
2010-08-12 07:35:30 +08:00
|
|
|
err = snd_line6_capture_trigger(line6pcm, cmd);
|
2009-02-28 11:43:04 +08:00
|
|
|
|
2009-02-28 14:43:30 +08:00
|
|
|
if (err < 0) {
|
2015-01-19 22:15:21 +08:00
|
|
|
spin_unlock(&line6pcm->lock_trigger);
|
2009-02-28 11:43:04 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2010-08-23 07:08:25 +08:00
|
|
|
dev_err(line6pcm->line6->ifcdev,
|
|
|
|
"Unknown stream direction %d\n", s->stream);
|
2009-02-28 11:43:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-19 22:15:21 +08:00
|
|
|
spin_unlock(&line6pcm->lock_trigger);
|
2009-02-28 11:43:04 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* control info callback */
|
2010-08-12 07:35:30 +08:00
|
|
|
static int snd_line6_control_playback_info(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_info *uinfo)
|
2009-02-28 14:43:30 +08:00
|
|
|
{
|
2009-02-28 11:43:04 +08:00
|
|
|
uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
|
|
|
|
uinfo->count = 2;
|
|
|
|
uinfo->value.integer.min = 0;
|
|
|
|
uinfo->value.integer.max = 256;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* control get callback */
|
2010-08-12 07:35:30 +08:00
|
|
|
static int snd_line6_control_playback_get(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol)
|
2009-02-28 14:43:30 +08:00
|
|
|
{
|
2009-02-28 11:43:04 +08:00
|
|
|
int i;
|
|
|
|
struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
|
|
|
|
|
2009-02-28 14:43:30 +08:00
|
|
|
for (i = 2; i--;)
|
2010-08-12 07:35:30 +08:00
|
|
|
ucontrol->value.integer.value[i] = line6pcm->volume_playback[i];
|
2009-02-28 11:43:04 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* control put callback */
|
2010-08-12 07:35:30 +08:00
|
|
|
static int snd_line6_control_playback_put(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol)
|
2009-02-28 14:43:30 +08:00
|
|
|
{
|
2009-02-28 11:43:04 +08:00
|
|
|
int i, changed = 0;
|
|
|
|
struct snd_line6_pcm *line6pcm = snd_kcontrol_chip(kcontrol);
|
|
|
|
|
2009-02-28 14:43:30 +08:00
|
|
|
for (i = 2; i--;)
|
2010-08-23 07:08:25 +08:00
|
|
|
if (line6pcm->volume_playback[i] !=
|
|
|
|
ucontrol->value.integer.value[i]) {
|
|
|
|
line6pcm->volume_playback[i] =
|
|
|
|
ucontrol->value.integer.value[i];
|
2009-02-28 11:43:04 +08:00
|
|
|
changed = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* control definition */
|
2015-01-19 21:28:25 +08:00
|
|
|
static struct snd_kcontrol_new line6_controls[] = {
|
|
|
|
{
|
|
|
|
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
|
|
|
.name = "PCM Playback Volume",
|
|
|
|
.info = snd_line6_control_playback_info,
|
|
|
|
.get = snd_line6_control_playback_get,
|
|
|
|
.put = snd_line6_control_playback_put
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
|
|
|
.name = "Impulse Response Volume",
|
|
|
|
.info = snd_line6_impulse_volume_info,
|
|
|
|
.get = snd_line6_impulse_volume_get,
|
|
|
|
.put = snd_line6_impulse_volume_put
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
|
|
|
.name = "Impulse Response Period",
|
|
|
|
.info = snd_line6_impulse_period_info,
|
|
|
|
.get = snd_line6_impulse_period_get,
|
|
|
|
.put = snd_line6_impulse_period_put
|
|
|
|
},
|
2009-02-28 11:43:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cleanup the PCM device.
|
|
|
|
*/
|
|
|
|
static void line6_cleanup_pcm(struct snd_pcm *pcm)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct snd_line6_pcm *line6pcm = snd_pcm_chip(pcm);
|
|
|
|
|
2009-02-28 14:43:30 +08:00
|
|
|
for (i = LINE6_ISO_BUFFERS; i--;) {
|
|
|
|
if (line6pcm->urb_audio_out[i]) {
|
2009-02-28 11:43:04 +08:00
|
|
|
usb_kill_urb(line6pcm->urb_audio_out[i]);
|
|
|
|
usb_free_urb(line6pcm->urb_audio_out[i]);
|
|
|
|
}
|
2009-02-28 14:43:30 +08:00
|
|
|
if (line6pcm->urb_audio_in[i]) {
|
2009-02-28 11:43:04 +08:00
|
|
|
usb_kill_urb(line6pcm->urb_audio_in[i]);
|
|
|
|
usb_free_urb(line6pcm->urb_audio_in[i]);
|
|
|
|
}
|
|
|
|
}
|
2015-01-19 21:41:57 +08:00
|
|
|
kfree(line6pcm);
|
2009-02-28 11:43:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create a PCM device */
|
2015-01-19 21:41:57 +08:00
|
|
|
static int snd_line6_new_pcm(struct usb_line6 *line6, struct snd_pcm **pcm_ret)
|
2009-02-28 11:43:04 +08:00
|
|
|
{
|
|
|
|
struct snd_pcm *pcm;
|
|
|
|
int err;
|
|
|
|
|
2015-01-19 21:41:57 +08:00
|
|
|
err = snd_pcm_new(line6->card, (char *)line6->properties->name,
|
|
|
|
0, 1, 1, pcm_ret);
|
2009-02-28 14:43:30 +08:00
|
|
|
if (err < 0)
|
2009-02-28 11:43:04 +08:00
|
|
|
return err;
|
2015-01-19 21:41:57 +08:00
|
|
|
pcm = *pcm_ret;
|
|
|
|
strcpy(pcm->name, line6->properties->name);
|
2009-02-28 11:43:04 +08:00
|
|
|
|
|
|
|
/* set operators */
|
2009-11-16 12:17:57 +08:00
|
|
|
snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
|
|
|
|
&snd_line6_playback_ops);
|
2010-08-23 07:08:25 +08:00
|
|
|
snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_line6_capture_ops);
|
2009-02-28 11:43:04 +08:00
|
|
|
|
|
|
|
/* pre-allocation of buffers */
|
2009-02-28 14:43:30 +08:00
|
|
|
snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_CONTINUOUS,
|
2010-08-23 07:08:25 +08:00
|
|
|
snd_dma_continuous_data
|
|
|
|
(GFP_KERNEL), 64 * 1024,
|
|
|
|
128 * 1024);
|
2009-02-28 11:43:04 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-12 07:35:30 +08:00
|
|
|
/*
|
|
|
|
Stop substream if still running.
|
|
|
|
*/
|
|
|
|
static void pcm_disconnect_substream(struct snd_pcm_substream *substream)
|
|
|
|
{
|
2013-07-12 00:02:38 +08:00
|
|
|
if (substream->runtime && snd_pcm_running(substream)) {
|
|
|
|
snd_pcm_stream_lock_irq(substream);
|
2010-08-12 07:35:30 +08:00
|
|
|
snd_pcm_stop(substream, SNDRV_PCM_STATE_DISCONNECTED);
|
2013-07-12 00:02:38 +08:00
|
|
|
snd_pcm_stream_unlock_irq(substream);
|
|
|
|
}
|
2010-08-12 07:35:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Stop PCM stream.
|
|
|
|
*/
|
|
|
|
void line6_pcm_disconnect(struct snd_line6_pcm *line6pcm)
|
|
|
|
{
|
2010-08-23 07:08:25 +08:00
|
|
|
pcm_disconnect_substream(get_substream
|
|
|
|
(line6pcm, SNDRV_PCM_STREAM_CAPTURE));
|
|
|
|
pcm_disconnect_substream(get_substream
|
|
|
|
(line6pcm, SNDRV_PCM_STREAM_PLAYBACK));
|
2010-08-12 07:35:30 +08:00
|
|
|
line6_unlink_wait_clear_audio_out_urbs(line6pcm);
|
|
|
|
line6_unlink_wait_clear_audio_in_urbs(line6pcm);
|
|
|
|
}
|
2015-01-15 15:22:31 +08:00
|
|
|
EXPORT_SYMBOL_GPL(line6_pcm_disconnect);
|
2010-08-12 07:35:30 +08:00
|
|
|
|
2009-02-28 11:43:04 +08:00
|
|
|
/*
|
|
|
|
Create and register the PCM device and mixer entries.
|
|
|
|
Create URBs for playback and capture.
|
|
|
|
*/
|
2009-02-28 14:43:30 +08:00
|
|
|
int line6_init_pcm(struct usb_line6 *line6,
|
|
|
|
struct line6_pcm_properties *properties)
|
2009-02-28 11:43:04 +08:00
|
|
|
{
|
2015-01-19 21:28:25 +08:00
|
|
|
int i, err;
|
2015-01-13 04:42:55 +08:00
|
|
|
unsigned ep_read = line6->properties->ep_audio_r;
|
|
|
|
unsigned ep_write = line6->properties->ep_audio_w;
|
2015-01-19 21:41:57 +08:00
|
|
|
struct snd_pcm *pcm;
|
2009-02-28 11:43:04 +08:00
|
|
|
struct snd_line6_pcm *line6pcm;
|
|
|
|
|
2015-01-13 04:42:45 +08:00
|
|
|
if (!(line6->properties->capabilities & LINE6_CAP_PCM))
|
2010-08-23 07:08:25 +08:00
|
|
|
return 0; /* skip PCM initialization and report success */
|
2009-02-28 11:43:04 +08:00
|
|
|
|
2015-01-19 21:41:57 +08:00
|
|
|
err = snd_line6_new_pcm(line6, &pcm);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
2009-02-28 11:43:04 +08:00
|
|
|
|
2015-01-19 21:41:57 +08:00
|
|
|
line6pcm = kzalloc(sizeof(*line6pcm), GFP_KERNEL);
|
|
|
|
if (!line6pcm)
|
2009-02-28 11:43:04 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2015-01-19 21:41:57 +08:00
|
|
|
line6pcm->pcm = pcm;
|
|
|
|
line6pcm->properties = properties;
|
2010-08-12 07:35:30 +08:00
|
|
|
line6pcm->volume_playback[0] = line6pcm->volume_playback[1] = 255;
|
|
|
|
line6pcm->volume_monitor = 255;
|
2009-02-28 11:43:04 +08:00
|
|
|
line6pcm->line6 = line6;
|
2011-11-23 16:20:44 +08:00
|
|
|
|
|
|
|
/* Read and write buffers are sized identically, so choose minimum */
|
|
|
|
line6pcm->max_packet_size = min(
|
|
|
|
usb_maxpacket(line6->usbdev,
|
|
|
|
usb_rcvisocpipe(line6->usbdev, ep_read), 0),
|
|
|
|
usb_maxpacket(line6->usbdev,
|
|
|
|
usb_sndisocpipe(line6->usbdev, ep_write), 1));
|
|
|
|
|
2009-02-28 11:43:04 +08:00
|
|
|
spin_lock_init(&line6pcm->lock_audio_out);
|
|
|
|
spin_lock_init(&line6pcm->lock_audio_in);
|
|
|
|
spin_lock_init(&line6pcm->lock_trigger);
|
2015-01-19 21:28:25 +08:00
|
|
|
line6pcm->impulse_period = LINE6_IMPULSE_DEFAULT_PERIOD;
|
2009-02-28 11:43:04 +08:00
|
|
|
|
2015-01-19 21:41:57 +08:00
|
|
|
line6->line6pcm = line6pcm;
|
|
|
|
|
|
|
|
pcm->private_data = line6pcm;
|
|
|
|
pcm->private_free = line6_cleanup_pcm;
|
|
|
|
|
2010-08-12 07:35:30 +08:00
|
|
|
err = line6_create_audio_out_urbs(line6pcm);
|
2009-02-28 14:43:30 +08:00
|
|
|
if (err < 0)
|
2009-02-28 11:43:04 +08:00
|
|
|
return err;
|
|
|
|
|
2010-08-12 07:35:30 +08:00
|
|
|
err = line6_create_audio_in_urbs(line6pcm);
|
2009-02-28 14:43:30 +08:00
|
|
|
if (err < 0)
|
2009-02-28 11:43:04 +08:00
|
|
|
return err;
|
|
|
|
|
|
|
|
/* mixer: */
|
2015-01-19 21:28:25 +08:00
|
|
|
for (i = 0; i < ARRAY_SIZE(line6_controls); i++) {
|
|
|
|
err = snd_ctl_add(line6->card,
|
|
|
|
snd_ctl_new1(&line6_controls[i], line6pcm));
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
}
|
2010-08-12 07:35:30 +08:00
|
|
|
|
2009-02-28 11:43:04 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2015-01-15 15:22:31 +08:00
|
|
|
EXPORT_SYMBOL_GPL(line6_init_pcm);
|
2009-02-28 11:43:04 +08:00
|
|
|
|
|
|
|
/* prepare pcm callback */
|
|
|
|
int snd_line6_prepare(struct snd_pcm_substream *substream)
|
|
|
|
{
|
|
|
|
struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
|
|
|
|
|
2011-12-10 09:12:31 +08:00
|
|
|
switch (substream->stream) {
|
|
|
|
case SNDRV_PCM_STREAM_PLAYBACK:
|
2012-01-20 07:09:09 +08:00
|
|
|
if ((line6pcm->flags & LINE6_BITS_PLAYBACK_STREAM) == 0)
|
2011-12-10 09:12:32 +08:00
|
|
|
line6_unlink_wait_clear_audio_out_urbs(line6pcm);
|
|
|
|
|
2011-12-10 09:12:31 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SNDRV_PCM_STREAM_CAPTURE:
|
2012-01-20 07:09:09 +08:00
|
|
|
if ((line6pcm->flags & LINE6_BITS_CAPTURE_STREAM) == 0)
|
2011-12-10 09:12:32 +08:00
|
|
|
line6_unlink_wait_clear_audio_in_urbs(line6pcm);
|
|
|
|
|
2011-12-10 09:12:31 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-01-20 07:09:09 +08:00
|
|
|
if (!test_and_set_bit(LINE6_INDEX_PREPARED, &line6pcm->flags)) {
|
2010-08-12 07:35:30 +08:00
|
|
|
line6pcm->count_out = 0;
|
2009-02-28 11:43:04 +08:00
|
|
|
line6pcm->pos_out = 0;
|
|
|
|
line6pcm->pos_out_done = 0;
|
|
|
|
line6pcm->bytes_out = 0;
|
2010-08-12 07:35:30 +08:00
|
|
|
line6pcm->count_in = 0;
|
2009-02-28 11:43:04 +08:00
|
|
|
line6pcm->pos_in_done = 0;
|
|
|
|
line6pcm->bytes_in = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|