diff mbox

sparc32: forced setting of mode of sun4m per-cpu timers

Message ID 1325885691.21461.8.camel@hp
State Changes Requested
Delegated to: David Miller
Headers show

Commit Message

Kirill Tkhai Jan. 6, 2012, 9:34 p.m. UTC
SUN4M per-cpu timers have two modes of work. These are timer mode and
counter mode. Kernel 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 patch fixes problem.

Signed-off-by: Tkhai Kirill <tkhai@yandex.ru>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
---
 	master_l10_counter = &timers_global->l10_count;


--
To unsubscribe from this list: send the line "unsubscribe sparclinux" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

David Miller Jan. 9, 2012, 10:14 p.m. UTC | #1
From: Kirill Tkhai <tkhai@yandex.ru>
Date: Sat, 07 Jan 2012 01:34:51 +0400

> SUN4M per-cpu timers have two modes of work. These are timer mode and
> counter mode. Kernel 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 patch fixes problem.
> 
> Signed-off-by: Tkhai Kirill <tkhai@yandex.ru>
> Acked-by: Sam Ravnborg <sam@ravnborg.org>

Your email client corrupted your patch.

> @@ -399,6 +399,9 @@ static void __init sun4m_init_timers(irq_handler_t
> counter_fn)

It split up this line into two.

Please, test email the patch to yourself until you can successfully
apply the patch contained in the email.  Then, and only then, resubmit
your patch here.

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe sparclinux" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/arch/sparc/kernel/sun4m_irq.c
b/arch/sparc/kernel/sun4m_irq.c
index 422c16d..e611651 100644
--- a/arch/sparc/kernel/sun4m_irq.c
+++ b/arch/sparc/kernel/sun4m_irq.c
@@ -399,6 +399,9 @@  static void __init sun4m_init_timers(irq_handler_t
counter_fn)
 	timers_global = (void __iomem *)
 		(unsigned long) addr[num_cpu_timers];
 
+	/* Every per-cpu timer works in timer mode */
+	sbus_writel(0x00000000, &timers_global->timer_config);
+
 	sbus_writel((((1000000/HZ) + 1) << 10), &timers_global->l10_limit);