All of lore.kernel.org
 help / color / mirror / Atom feed
* SPARC32: forced setting of mode of SUN4M per-cpu timers
@ 2012-01-05  1:42 Kirill Tkhai
  2012-01-05  1:53 ` Julian Calaby
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Kirill Tkhai @ 2012-01-05  1:42 UTC (permalink / raw)
  To: sparclinux

SPARC32: forced setting of mode of SUN4M per-cpu timers

SUN4M per-cpu timers have two modes of work. These are timer mode and
counter mode. SPARC32 doesn't write anything to the register, which is
connected with mode choice. So, the mode is chosen by bootloader. This
patch forces to use timer mode from the kernel and to be independent of
bootloader.

I had this problem with OpenBIOS. Timers don't tick and kernel fails on
QEMU, when it's compiled with SMP support. The path fixes problem.

diff --git a/arch/sparc/kernel/sun4m_irq.c
b/arch/sparc/kernel/sun4m_irq.c
index 422c16d..aa0b9df 100644
--- a/arch/sparc/kernel/sun4m_irq.c
+++ b/arch/sparc/kernel/sun4m_irq.c
@@ -414,6 +414,10 @@ static void __init sun4m_init_timers(irq_handler_t
counter_fn)
 
 	for (i = 0; i < num_cpu_timers; i++)
 		sbus_writel(0, &timers_percpu[i]->l14_limit);
+#ifdef CONFIG_SMP
+	/* Timer-mode for every per-cpu timer (bit '0' is timer mode) */
+	sbus_writel(0x00000000, &timers_global->timer_config);
+#endif
 	if (num_cpu_timers = 4)
 		sbus_writel(SUN4M_INT_E14, &sun4m_irq_global->mask_set);
 



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

end of thread, other threads:[~2012-01-06 21:18 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-05  1:42 SPARC32: forced setting of mode of SUN4M per-cpu timers Kirill Tkhai
2012-01-05  1:53 ` Julian Calaby
2012-01-05  2:25 ` Kirill Tkhai
2012-01-05 19:27 ` David Miller
2012-01-05 19:28 ` David Miller
2012-01-05 19:32 ` Sam Ravnborg
2012-01-05 21:35 ` Julian Calaby
2012-01-05 23:05 ` Kirill Tkhai
2012-01-05 23:13 ` Julian Calaby
2012-01-06 21:18 ` Kirill Tkhai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.