* [PATCH] u-boot: Ensure LS1021 ARM Generic Timer CompareValue Set 64-bit
@ 2015-07-06 2:40 Chris Kilgour
2015-07-06 11:15 ` Otavio Salvador
2015-07-21 14:29 ` Gary Thomas
0 siblings, 2 replies; 3+ messages in thread
From: Chris Kilgour @ 2015-07-06 2:40 UTC (permalink / raw)
To: meta-freescale
This patch addresses a problem mentioned recently on this mailing list: [1].
In that posting a LS1021 based system was locking up at about 5 minutes after boot, but the problem was mysteriously related to the toolchain used for building u-boot. Debugging the problem reveals a stuck interrupt 29 on the GIC.
It appears Freescale's LS1021 support in u-boot erroneously sets the 64-bit ARM generic PL1 physical time CompareValue register to all-ones with a 32-bit value. This causes the timer compare to fire 344 seconds after u-boot configures it. Depending on how fast u-boot gets the kernel booted, this amounts to about 5-minutes of Linux uptime before locking up.
Apparently the bug is masked by some toolchains. Perhaps this is explained by default compiler options, word sizes, or binutils versions. At any rate this patch makes the manipulation explicitly 64-bit which alleviates the issue.
[1] https://lists.yoctoproject.org/pipermail/meta-freescale/2015-June/014400.html
Index: u-boot-2015.04/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
===================================================================
--- u-boot-2015.04.orig/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
+++ u-boot-2015.04/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
@@ -28,7 +28,7 @@
#define RCWSR4_SRDS1_PRTCL_SHIFT 24
#define RCWSR4_SRDS1_PRTCL_MASK 0xff000000
-#define TIMER_COMP_VAL 0xffffffff
+#define TIMER_COMP_VAL 0xffffffffffffffffull
#define ARCH_TIMER_CTRL_ENABLE (1 << 0)
#define SYS_COUNTER_CTRL_ENABLE (1 << 24)
Index: u-boot-2015.04/arch/arm/cpu/armv7/ls102xa/timer.c
===================================================================
--- u-boot-2015.04.orig/arch/arm/cpu/armv7/ls102xa/timer.c
+++ u-boot-2015.04/arch/arm/cpu/armv7/ls102xa/timer.c
@@ -58,7 +58,8 @@ int timer_init(void)
struct sctr_regs *sctr = (struct sctr_regs *)SCTR_BASE_ADDR;
if (!readl( &sctr->cntcr )) {
- unsigned long ctrl, val, freq;
+ unsigned long ctrl, freq;
+ unsigned long long val64;
/* Enable System Counter */
writel(SYS_COUNTER_CTRL_ENABLE, &sctr->cntcr);
@@ -71,8 +72,8 @@ int timer_init(void)
asm("mcr p15, 0, %0, c14, c2, 1" : : "r" (ctrl));
/* Set PL1 Physical Comp Value */
- val = TIMER_COMP_VAL;
- asm("mcrr p15, 2, %Q0, %R0, c14" : : "r" (val));
+ val64 = TIMER_COMP_VAL;
+ asm("mcrr p15, 2, %Q0, %R0, c14" : : "r" (val64));
gd->arch.tbl = 0;
gd->arch.tbu = 0;
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] u-boot: Ensure LS1021 ARM Generic Timer CompareValue Set 64-bit
2015-07-06 2:40 [PATCH] u-boot: Ensure LS1021 ARM Generic Timer CompareValue Set 64-bit Chris Kilgour
@ 2015-07-06 11:15 ` Otavio Salvador
2015-07-21 14:29 ` Gary Thomas
1 sibling, 0 replies; 3+ messages in thread
From: Otavio Salvador @ 2015-07-06 11:15 UTC (permalink / raw)
To: Chris Kilgour; +Cc: meta-freescale@yoctoproject.org
On Sun, Jul 5, 2015 at 11:40 PM, Chris Kilgour <techie@whiterocker.com> wrote:
> This patch addresses a problem mentioned recently on this mailing list: [1].
>
> In that posting a LS1021 based system was locking up at about 5 minutes after boot, but the problem was mysteriously related to the toolchain used for building u-boot. Debugging the problem reveals a stuck interrupt 29 on the GIC.
>
> It appears Freescale's LS1021 support in u-boot erroneously sets the 64-bit ARM generic PL1 physical time CompareValue register to all-ones with a 32-bit value. This causes the timer compare to fire 344 seconds after u-boot configures it. Depending on how fast u-boot gets the kernel booted, this amounts to about 5-minutes of Linux uptime before locking up.
>
> Apparently the bug is masked by some toolchains. Perhaps this is explained by default compiler options, word sizes, or binutils versions. At any rate this patch makes the manipulation explicitly 64-bit which alleviates the issue.
>
> [1] https://lists.yoctoproject.org/pipermail/meta-freescale/2015-June/014400.html
Could you please send this to u-boot mailing list?
It would be good to verify if U-Boot mainline has the same issue...
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] u-boot: Ensure LS1021 ARM Generic Timer CompareValue Set 64-bit
2015-07-06 2:40 [PATCH] u-boot: Ensure LS1021 ARM Generic Timer CompareValue Set 64-bit Chris Kilgour
2015-07-06 11:15 ` Otavio Salvador
@ 2015-07-21 14:29 ` Gary Thomas
1 sibling, 0 replies; 3+ messages in thread
From: Gary Thomas @ 2015-07-21 14:29 UTC (permalink / raw)
To: meta-freescale
On 2015-07-05 20:40, Chris Kilgour wrote:
> This patch addresses a problem mentioned recently on this mailing list: [1].
>
> In that posting a LS1021 based system was locking up at about 5 minutes after boot, but the problem was mysteriously related to the toolchain used for building u-boot. Debugging the problem reveals a stuck interrupt 29 on the GIC.
>
> It appears Freescale's LS1021 support in u-boot erroneously sets the 64-bit ARM generic PL1 physical time CompareValue register to all-ones with a 32-bit value. This causes the timer compare to fire 344 seconds after u-boot configures it. Depending on how fast u-boot gets the kernel booted, this amounts to about 5-minutes of Linux uptime before locking up.
>
> Apparently the bug is masked by some toolchains. Perhaps this is explained by default compiler options, word sizes, or binutils versions. At any rate this patch makes the manipulation explicitly 64-bit which alleviates the issue.
>
> [1] https://lists.yoctoproject.org/pipermail/meta-freescale/2015-June/014400.html
Verified; this does indeed fix the problems I was having when U-Boot was
built using GCC 4.9.2
>
> Index: u-boot-2015.04/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
> ===================================================================
> --- u-boot-2015.04.orig/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
> +++ u-boot-2015.04/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
> @@ -28,7 +28,7 @@
> #define RCWSR4_SRDS1_PRTCL_SHIFT 24
> #define RCWSR4_SRDS1_PRTCL_MASK 0xff000000
>
> -#define TIMER_COMP_VAL 0xffffffff
> +#define TIMER_COMP_VAL 0xffffffffffffffffull
> #define ARCH_TIMER_CTRL_ENABLE (1 << 0)
> #define SYS_COUNTER_CTRL_ENABLE (1 << 24)
>
> Index: u-boot-2015.04/arch/arm/cpu/armv7/ls102xa/timer.c
> ===================================================================
> --- u-boot-2015.04.orig/arch/arm/cpu/armv7/ls102xa/timer.c
> +++ u-boot-2015.04/arch/arm/cpu/armv7/ls102xa/timer.c
> @@ -58,7 +58,8 @@ int timer_init(void)
> struct sctr_regs *sctr = (struct sctr_regs *)SCTR_BASE_ADDR;
>
> if (!readl( &sctr->cntcr )) {
> - unsigned long ctrl, val, freq;
> + unsigned long ctrl, freq;
> + unsigned long long val64;
>
> /* Enable System Counter */
> writel(SYS_COUNTER_CTRL_ENABLE, &sctr->cntcr);
> @@ -71,8 +72,8 @@ int timer_init(void)
> asm("mcr p15, 0, %0, c14, c2, 1" : : "r" (ctrl));
>
> /* Set PL1 Physical Comp Value */
> - val = TIMER_COMP_VAL;
> - asm("mcrr p15, 2, %Q0, %R0, c14" : : "r" (val));
> + val64 = TIMER_COMP_VAL;
> + asm("mcrr p15, 2, %Q0, %R0, c14" : : "r" (val64));
>
> gd->arch.tbl = 0;
> gd->arch.tbu = 0;
>
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-07-21 14:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-06 2:40 [PATCH] u-boot: Ensure LS1021 ARM Generic Timer CompareValue Set 64-bit Chris Kilgour
2015-07-06 11:15 ` Otavio Salvador
2015-07-21 14:29 ` Gary Thomas
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.