From 633f3880024a2f83a21dd96368aa397940bc9ad6 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Wed, 7 Mar 2007 06:23:02 +0000 Subject: Coldfire targets: Shuffle IRQ levels around to have all interaction between low level audio function calls and DMA be atomic. Make recording and playback independently startable and stoppable so one can be running and not interfere with the other. All tests I can do at the moment check out ok (play, record, play+record, FM radio on iRivers, S/PDIF on H120 (w/running optical on/off), and on-the-fly samplerate changes). Recording tested for well over an hour run and no problems. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12658 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/coldfire/iaudio/m5/audio-m5.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'firmware/target/coldfire/iaudio/m5/audio-m5.c') diff --git a/firmware/target/coldfire/iaudio/m5/audio-m5.c b/firmware/target/coldfire/iaudio/m5/audio-m5.c index 9531f932ad..2442351fed 100644 --- a/firmware/target/coldfire/iaudio/m5/audio-m5.c +++ b/firmware/target/coldfire/iaudio/m5/audio-m5.c @@ -23,6 +23,7 @@ void audio_set_output_source(int source) { + int level = set_irq_level(DMA_IRQ_LEVEL); unsigned long txsrc; if ((unsigned)source >= AUDIO_NUM_SOURCES) @@ -31,6 +32,7 @@ void audio_set_output_source(int source) txsrc = (4 << 8); /* recording, iis1RcvData */ IIS1CONFIG = (IIS1CONFIG & ~(7 << 8)) | txsrc; + set_irq_level(level); } /* audio_set_output_source */ void audio_set_source(int source, unsigned flags) -- cgit v1.2.3