diff options
author | Francesco VIRLINZI <francesco.virlinzi@st.com> | 2008-10-15 11:58:24 +0200 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-11-13 17:40:30 +0900 |
commit | 2cd0ebc83d771220eeddec91fd6d4cfefc2cc46e (patch) | |
tree | 605460bfa32601f7353f7be532c48b1456c8b7c3 /arch/sh | |
parent | 10840f034e2329150ce0e683e636ea13b268d333 (diff) | |
download | linux-3.10-2cd0ebc83d771220eeddec91fd6d4cfefc2cc46e.tar.gz linux-3.10-2cd0ebc83d771220eeddec91fd6d4cfefc2cc46e.tar.bz2 linux-3.10-2cd0ebc83d771220eeddec91fd6d4cfefc2cc46e.zip |
sh: Fixed the TMU0 reload value on resume
This patch fixes the TMU0 interrupt frequency on suspend/resume.
During the resume the kernel reprograms the TMU0.ClockEvent mode
but if the mode is periodic than the TMU0.TCOR is updated with
a random wrong value without taking care latest valid saved value.
There was no problem with No_HZ system where TMU0.TCOR isn't used.
Signed-off-by: Francesco M. Virlinzi <francesco.virlinzi@st.com>
Signed-off-by: Stuart Menefy <stuart.menefy@st.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/timers/timer-tmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/timers/timer-tmu.c b/arch/sh/kernel/timers/timer-tmu.c index aaaf90d06b8..3c61ddd4d43 100644 --- a/arch/sh/kernel/timers/timer-tmu.c +++ b/arch/sh/kernel/timers/timer-tmu.c @@ -120,7 +120,7 @@ static void tmu_set_mode(enum clock_event_mode mode, { switch (mode) { case CLOCK_EVT_MODE_PERIODIC: - ctrl_outl(ctrl_inl(TMU0_TCNT), TMU0_TCOR); + ctrl_outl(tmu_latest_interval[TMU0], TMU0_TCOR); break; case CLOCK_EVT_MODE_ONESHOT: ctrl_outl(0, TMU0_TCOR); |