[patch 2.4.32-pre1] i810_audio: offset LVI from CIV to avoid stalled start

From: John W. Linville
Date: Wed Aug 03 2005 - 13:20:05 EST


Offset LVI past CIV when starting DAC/ADC in order to prevent
stalled start.

Acked-by: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx>
Acked-by: Thomas Voegtle <tv@xxxxxxxx>
Signed-off-by: John W. Linville <linville@xxxxxxxxxxxxx>
---
This fixes a "no sound" problem with Wolfenstein Enemy Territory and
(apparently) other games using the Quake3 engine. It probably affects
some other OSS applications as well.

This recreates some code that had been removed from the i810_audio
driver around 5/2004. The euqivalent patch has been in the 2.6 stream
since about 2.6.11.

drivers/sound/i810_audio.c | 13 +++++++++++++
1 files changed, 13 insertions(+)

diff --git a/drivers/sound/i810_audio.c b/drivers/sound/i810_audio.c
--- a/drivers/sound/i810_audio.c
+++ b/drivers/sound/i810_audio.c
@@ -1062,10 +1062,23 @@ static void __i810_update_lvi(struct i81
if (count < fragsize)
return;

+ /* if we are currently stopped, then our CIV is actually set to our
+ * *last* sg segment and we are ready to wrap to the next. However,
+ * if we set our LVI to the last sg segment, then it won't wrap to
+ * the next sg segment, it won't even get a start. So, instead, when
+ * we are stopped, we set both the LVI value and also we increment
+ * the LVI value to the next sg segment to be played so that when
+ * we call start, things will operate properly. Since the CIV can't
+ * be written to directly for this purpose, we set the LVI to CIV + 1
+ * temporarily. Once the engine has started we set the LVI to its
+ * final value.
+ */
if (!dmabuf->enable && dmabuf->ready) {
if (!(dmabuf->trigger & trigger))
return;

+ CIV_TO_LVI(port, 1);
+
start(state);
while (!(inb(port + OFF_CR) & ((1<<4) | (1<<2))))
;
--
John W. Linville
linville@xxxxxxxxxxxxx
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/