public inbox for linux-m68k@lists.linux-m68k.org
 help / color / mirror / Atom feed
* [PATCH] m68k/mvme16x: Fix timer interrupts
@ 2021-03-17  4:25 Mike Pavone
  2021-03-18  3:05 ` Finn Thain
  2021-03-19  7:07 ` Finn Thain
  0 siblings, 2 replies; 6+ messages in thread
From: Mike Pavone @ 2021-03-17  4:25 UTC (permalink / raw)
  To: linux-m68k; +Cc: Geert Uytterhoeven

Timer interrupts on MVME16x and MVME17x boards are broken as the CEN and
COC bits are being inadvertently cleared when clearing the overflow
counter. This results in no timer interrupts being delivered after the
first. Initialization then hangs in calibrate_delay as the jiffies counter
is not updated. OR with current register value to preserve these bits.

Fixes: 19999a8b8782 ("m68k: mvme16x: Handle timer counter overflow")
Signed-off-by: Michael Pavone <pavone@retrodev.com>
---
  arch/m68k/mvme16x/config.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/m68k/mvme16x/config.c b/arch/m68k/mvme16x/config.c
index 30357fe4ba6c..949d3e19f79c 100644
--- a/arch/m68k/mvme16x/config.c
+++ b/arch/m68k/mvme16x/config.c
@@ -375,7 +375,7 @@ static irqreturn_t mvme16x_timer_int (int irq, void *dev_id)
  
  	local_irq_save(flags);
  	out_8(PCCTIC1, in_8(PCCTIC1) | PCCTIC1_INT_CLR);
-	out_8(PCCTOVR1, PCCTOVR1_OVR_CLR);
+	out_8(PCCTOVR1, in_8(PCCTOVR1) | PCCTOVR1_OVR_CLR);
  	clk_total += PCC_TIMER_CYCLES;
  	legacy_timer_tick(1);
  	local_irq_restore(flags);


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-03-19 19:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-17  4:25 [PATCH] m68k/mvme16x: Fix timer interrupts Mike Pavone
2021-03-18  3:05 ` Finn Thain
2021-03-18  7:23   ` Michael Pavone
2021-03-19  6:35     ` Finn Thain
2021-03-19  7:07 ` Finn Thain
2021-03-19 19:33   ` Michael Pavone

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox