14 Nov, 2012
1 commit
-
Signed-off-by: Stefan Hajnoczi
Signed-off-by: Greg Kroah-Hartman
10 Feb, 2012
2 commits
-
There are several features of the Line6 USB driver which require PCM
data to be exchanged with the device:
*) PCM playback and capture via ALSA
*) software monitoring (for devices without hardware monitoring)
*) optional impulse response measurement
However, from the device's point of view, there is just a single
capture and playback stream, which must be shared between these
subsystems. It is therefore necessary to maintain the state of the
subsystems with respect to PCM usage. We define several constants of
the form LINE6_BIT_PCM___ with the
following meanings:
*) is one of
-) ALSA: PCM playback and capture via ALSA
-) MONITOR: software monitoring
-) IMPULSE: optional impulse response measurement
*) is one of
-) PLAYBACK: audio output (from host to device)
-) CAPTURE: audio input (from device to host)
*) is one of
-) BUFFER: buffer required by PCM data stream
-) STREAM: actual PCM data streamThe subsystems call line6_pcm_acquire() to acquire the (shared)
resources needed for a particular operation (e.g., allocate the buffer
for ALSA playback or start the capture stream for software monitoring).
When a resource is no longer needed, it is released by calling
line6_pcm_release(). Buffer allocation and stream startup are handled
separately to allow the ALSA kernel driver to perform them at
appropriate places (since the callback which starts a PCM stream is not
allowed to sleep).Signed-off-by: Markus Grabner
Signed-off-by: Greg Kroah-Hartman -
Signed-off-by: Markus Grabner
Signed-off-by: Greg Kroah-Hartman
10 Dec, 2011
1 commit
-
Playback urbs use the index_out counter to decide which part of the
playback buffer to use. Since the urb already has a unique index in
range [0, LINE6_ISO_BUFFERS) there is no need to keep a separate
counter.Use the urb index instead. This also eliminates the possibility of two
urbs using the same playback buffer space if they ever complete
out-of-order for some reason.Signed-off-by: Stefan Hajnoczi
Signed-off-by: Markus Grabner
Signed-off-by: Greg Kroah-Hartman
09 Dec, 2011
1 commit
-
This patch removes experimental code which is no longer used.
Signed-off-by: Markus Grabner
Signed-off-by: Greg Kroah-Hartman
22 Sep, 2010
1 commit
-
This fixes up all of the remaining coding style issues that
make any sense to make in the line6 driver.Cc: Markus Grabner
Signed-off-by: Greg Kroah-Hartman
01 Sep, 2010
2 commits
-
Everything should be in sync now.
Signed-off-by: Markus Grabner
Signed-off-by: Greg Kroah-Hartman -
Big upstream sync.
Signed-off-by: Markus Grabner
Signed-off-by: Greg Kroah-Hartman
04 Apr, 2009
2 commits
-
Mostly all line length issues.
Skipped the control.h file as it makes sense to leave it alone.Cc: Markus Grabner
Cc: Mariusz Kozlowski
Signed-off-by: Greg Kroah-Hartman -
This is an experimental Linux driver for the guitar amp, cab, and
effects modeller PODxt Pro by Line6 (and similar devices), supporting
the following features:- Reading/writing individual parameters
- Reading/writing complete channel, effects setup, and amp setup data
- Channel switching
- Virtual MIDI interface
- Tuner access
- Playback/capture/mixer device for any ALSA-compatible PCM audio
application
- Signal routing (record clean/processed guitar signal, re-amping)Moreover, preliminary support for the Variax Workbench is included.
From: Markus Grabner
Cc: Mariusz Kozlowski
Signed-off-by: Greg Kroah-Hartman