Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

clocksource/drivers/timer-gx6605s: Fixup counter reload

When the timer counts to the upper limit, an overflow interrupt is
generated, and the count is reset with the value in the TIME_INI
register. But the software expects to start counting from 0 when
the count overflows, so it forces TIME_INI to 0 to solve the
potential interrupt storm problem.

Signed-off-by: Guo Ren <guoren@linux.alibaba.com>
Tested-by: Xu Kai <xukai@nationalchip.com>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/1597735877-71115-1-git-send-email-guoren@kernel.org

authored by

Guo Ren and committed by
Daniel Lezcano
bc6717d5 16480515

+1
+1
drivers/clocksource/timer-gx6605s.c
··· 28 28 void __iomem *base = timer_of_base(to_timer_of(ce)); 29 29 30 30 writel_relaxed(GX6605S_STATUS_CLR, base + TIMER_STATUS); 31 + writel_relaxed(0, base + TIMER_INI); 31 32 32 33 ce->event_handler(ce); 33 34