Re: [U-Boot] [PATCH] armv7: Fix infinite loop for the spl boot

2012-07-06 Thread Zhong Hongbo
On 07/06/2012 07:49 PM, Andreas Bießmann wrote: > Dear Zhong Hongbo, > > On 06.07.2012 13:42, Zhong Hongbo wrote: >> On 07/06/2012 01:35 AM, Albert ARIBAUD (by >> way of Albert ARIBAUD wrote: >>> Hi Zhong Hongbo, >>> >>> On Thu, 05 Jul 2012 19:53:46 +0800, Zhong Hongbo >>> wrote: > > > >> >>

Re: [U-Boot] [PATCH] armv7: Fix infinite loop for the spl boot

2012-07-06 Thread Andreas Bießmann
Dear Zhong Hongbo, On 06.07.2012 13:42, Zhong Hongbo wrote: > On 07/06/2012 01:35 AM, Albert ARIBAUD (by > way of Albert ARIBAUD wrote: >> Hi Zhong Hongbo, >> >> On Thu, 05 Jul 2012 19:53:46 +0800, Zhong Hongbo >> wrote: > > Ok, I just found the issue have found in other arm platfor 2011 yea

Re: [U-Boot] [PATCH] armv7: Fix infinite loop for the spl boot

2012-07-06 Thread Zhong Hongbo
On 07/06/2012 01:35 AM, Albert ARIBAUD (by way of Albert ARIBAUD wrote: > Hi Zhong Hongbo, > > On Thu, 05 Jul 2012 19:53:46 +0800, Zhong Hongbo > wrote: >> Hi Albert, >> >> Could you applied the patch to the arm tree? >> >> Thanks, >> hongbo >> On 07/03/2012 07:46 AM, Zhong Hongbo wrote: >>> Fro

Re: [U-Boot] [PATCH] armv7: Fix infinite loop for the spl boot

2012-07-05 Thread Albert ARIBAUD (by way of Albert ARIBAUD
Hi Zhong Hongbo, On Thu, 05 Jul 2012 19:53:46 +0800, Zhong Hongbo wrote: > Hi Albert, > > Could you applied the patch to the arm tree? > > Thanks, > hongbo > On 07/03/2012 07:46 AM, Zhong Hongbo wrote: > > From: Zhong Hongbo > > > > In the spl booting step, When __bss_start is equal to __bss_

Re: [U-Boot] [PATCH] armv7: Fix infinite loop for the spl boot

2012-07-05 Thread Zhong Hongbo
Hi Albert, On 07/05/2012 08:19 PM, Albert ARIBAUD wrote: > Hi Zhong Hongbo, > > On Thu, 05 Jul 2012 19:53:46 +0800, Zhong Hongbo > wrote: >> Hi Albert, >> >> Could you applied the patch to the arm tree? >> >> Thanks, >> hongbo >> On 07/03/2012 07:46 AM, Zhong Hongbo wrote: >>> From: Zhong Hongbo

Re: [U-Boot] [PATCH] armv7: Fix infinite loop for the spl boot

2012-07-05 Thread Albert ARIBAUD
Hi Zhong Hongbo, On Thu, 05 Jul 2012 19:53:46 +0800, Zhong Hongbo wrote: > Hi Albert, > > Could you applied the patch to the arm tree? > > Thanks, > hongbo > On 07/03/2012 07:46 AM, Zhong Hongbo wrote: > > From: Zhong Hongbo > > > > In the spl booting step, When __bss_start is equal to __bss_

Re: [U-Boot] [PATCH] armv7: Fix infinite loop for the spl boot

2012-07-05 Thread Zhong Hongbo
Hi Albert, Could you applied the patch to the arm tree? Thanks, hongbo On 07/03/2012 07:46 AM, Zhong Hongbo wrote: > From: Zhong Hongbo > > In the spl booting step, When __bss_start is equal to __bss_end__, > The loop will clear all the things in CPU space. If there are have > the same address

[U-Boot] [PATCH] armv7: Fix infinite loop for the spl boot

2012-07-02 Thread Zhong Hongbo
From: Zhong Hongbo In the spl booting step, When __bss_start is equal to __bss_end__, The loop will clear all the things in CPU space. If there are have the same address for this symbol, To skip the clear bss section. Signed-off-by: Hongbo Zhong --- arch/arm/cpu/armv7/start.S |3 +++ 1 fil