2010-08-11 02:20:12

by john stultz

[permalink] [raw]
Subject: [PATCH] arm: fix versatile boot hang (seen with qemu)

Hey Russell,

I have been having troubles getting the 2.6.35 kernel to boot in my
qemu-system-arm environment. It worked with 2.6.34, and so I bisected it
down to:
commit e388771458b4ff3ad81ab70e390b24d069647da4
Author: Russell King <[email protected]>
Date: Thu Jan 14 13:30:16 2010 +0000
ARM: Realview/Versatile: separate out common SP804 timer code

The issue seems to be that the common sp804_set_mode function was not
identical to the ones it replaced. It added an extra writel and did not
write zero out on shutdown.

The following patch resolves the issue for me and gets things booting.

Signed-off-by: John Stultz <[email protected]>

diff --git a/arch/arm/plat-versatile/timer-sp.c b/arch/arm/plat-versatile/timer-sp.c
index 98722f4..6d7fff4 100644
--- a/arch/arm/plat-versatile/timer-sp.c
+++ b/arch/arm/plat-versatile/timer-sp.c
@@ -102,8 +102,6 @@ static void sp804_set_mode(enum clock_event_mode mode,
{
unsigned long ctrl = TIMER_CTRL_32BIT | TIMER_CTRL_IE;

- writel(ctrl, clkevt_base + TIMER_CTRL);
-
switch (mode) {
case CLOCK_EVT_MODE_PERIODIC:
writel(TIMER_RELOAD, clkevt_base + TIMER_LOAD);
@@ -118,7 +116,7 @@ static void sp804_set_mode(enum clock_event_mode mode,
case CLOCK_EVT_MODE_UNUSED:
case CLOCK_EVT_MODE_SHUTDOWN:
default:
- break;
+ ctrl = 0;
}

writel(ctrl, clkevt_base + TIMER_CTRL);


2010-08-11 07:20:43

by Russell King

[permalink] [raw]
Subject: Re: [PATCH] arm: fix versatile boot hang (seen with qemu)

On Tue, Aug 10, 2010 at 07:19:51PM -0700, john stultz wrote:
> Hey Russell,
>
> I have been having troubles getting the 2.6.35 kernel to boot in my
> qemu-system-arm environment.

It's a qemu bug.

--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of:

2010-08-11 14:20:15

by Rabin Vincent

[permalink] [raw]
Subject: Re: [PATCH] arm: fix versatile boot hang (seen with qemu)

On Wed, Aug 11, 2010 at 08:20:14AM +0100, Russell King wrote:
> On Tue, Aug 10, 2010 at 07:19:51PM -0700, john stultz wrote:
> > Hey Russell,
> >
> > I have been having troubles getting the 2.6.35 kernel to boot in my
> > qemu-system-arm environment.
>
> It's a qemu bug.

The fix there, long since applied, is:

http://www.mail-archive.com/[email protected]/msg30785.html