Commit bd0d1794 authored by Eero Nurkkala's avatar Eero Nurkkala Committed by Tony Lindgren

OMAP: McBSP: Always maintain McBSP fclk while active

McBSP fclk must be maintained for the duration of
audio playback or recording. Otherwise the fclk
may get autogated when the PER96M clk is no longer
required by other modules. This results in audio
activity being hang. Also, if the McBSP is run
as a slave, it is possible that words are
randomly missed from the playback. Fix all this
phenomenom by enabling the McBSP fclk
clockactivity bit for the entire active duration
of the McBSP usage.
Signed-off-by: default avatarEero Nurkkala <ext-eero.nurkkala@nokia.com>
Acked-by: default avatarJarkko Nikula <jarkko.nikula@nokia.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent a1ba945a
......@@ -252,6 +252,7 @@
#define RDISABLE 0x0001
/********************** McBSP SYSCONFIG bit definitions ********************/
#define CLOCKACTIVITY(value) ((value)<<8)
#define SIDLEMODE(value) ((value)<<3)
#define ENAWAKEUP 0x0004
#define SOFTRST 0x0002
......
......@@ -248,8 +248,8 @@ int omap_mcbsp_request(unsigned int id)
u16 w;
w = OMAP_MCBSP_READ(mcbsp->io_base, SYSCON);
w &= ~(ENAWAKEUP | SIDLEMODE(0x03));
w |= (ENAWAKEUP | SIDLEMODE(0x02));
w &= ~(ENAWAKEUP | SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
w |= (ENAWAKEUP | SIDLEMODE(0x02) | CLOCKACTIVITY(0x02));
OMAP_MCBSP_WRITE(mcbsp->io_base, SYSCON, w);
OMAP_MCBSP_WRITE(mcbsp->io_base, WAKEUPEN, WAKEUPEN_ALL);
......@@ -308,7 +308,7 @@ void omap_mcbsp_free(unsigned int id)
u16 w;
w = OMAP_MCBSP_READ(mcbsp->io_base, SYSCON);
w &= ~(ENAWAKEUP | SIDLEMODE(0x03));
w &= ~(ENAWAKEUP | SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
OMAP_MCBSP_WRITE(mcbsp->io_base, SYSCON, w);
w = OMAP_MCBSP_READ(mcbsp->io_base, WAKEUPEN);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment