[U-Boot] [PATCH] gic: fixed compilation error in GICv2 wait for interrupt macro
Yehuda Yitschak
yehuday at marvell.com
Mon Oct 27 15:29:09 CET 2014
Hello Albert
> -----Original Message-----
> From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> Sent: Monday, October 27, 2014 15:05
> To: Yehuda Yitschak
> Cc: u-boot at lists.denx.de; arnab.basu at freescale.com;
> fenghua at phytium.com.cn; yorksun at freescale.com;
> scottwood at freescale.com
> Subject: Re: [PATCH] gic: fixed compilation error in GICv2 wait for interrupt
> macro
>
> Hello Yehuda,
>
> On Mon, 27 Oct 2014 14:07:16 +0200, Yehuda Yitschak
> <yehuday at marvell.com> wrote:
> > a hexadicemal value was missing the "0x" prefix which caused
> > assembler error
> >
> > Signed-off-by: Yehuda Yitschak <yehuday at marvell.com>
> > ---
> > arch/arm/include/asm/macro.h | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/arch/arm/include/asm/macro.h
> > b/arch/arm/include/asm/macro.h index 541b443..1c8c425 100644
> > --- a/arch/arm/include/asm/macro.h
> > +++ b/arch/arm/include/asm/macro.h
> > @@ -193,7 +193,7 @@ lr .req x30
> > 0 : wfi
> > ldr \wreg2, [\xreg1, GICC_AIAR]
> > str \wreg2, [\xreg1, GICC_AEOIR]
> > - and \wreg2, \wreg2, #3ff
> > + and \wreg2, \wreg2, #0x3ff
> > cbnz \wreg2, 0b
> > .endm
> > #endif
> > --
> > 1.8.1.2
>
> Which board(s) does this error show up in?
There is no board in u-boot 2014.01 that use GICv2. I guess this is why it went under radar
I use mainline u-boot for one of my platforms so I noticed the bug once I rebased to 2014.10
Yehuda
>
> Amicalement,
> --
> Albert.
More information about the U-Boot
mailing list