Re: [U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2013-01-08 Thread Albert ARIBAUD
Hi Tom, On Tue, 8 Jan 2013 12:26:07 -0700, Tom Rini wrote: > On Tue, Nov 27, 2012 at 01:43:25PM +0100, Albert ARIBAUD wrote: > > > Move all the C runtime setup code from every start.S > > in arch/arm into arch/arm/lib/crt0.S. This covers > > the code sequence from setting up the initial stack >

Re: [U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2013-01-08 Thread Tom Rini
On Tue, Nov 27, 2012 at 01:43:25PM +0100, Albert ARIBAUD wrote: > Move all the C runtime setup code from every start.S > in arch/arm into arch/arm/lib/crt0.S. This covers > the code sequence from setting up the initial stack > to calling into board_init_r(). > > Also, rewrite the C runtime setup

Re: [U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2013-01-07 Thread Tom Rini
On Tue, Nov 27, 2012 at 01:43:25PM +0100, Albert ARIBAUD wrote: > Move all the C runtime setup code from every start.S > in arch/arm into arch/arm/lib/crt0.S. This covers > the code sequence from setting up the initial stack > to calling into board_init_r(). > > Also, rewrite the C runtime setup

Re: [U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2013-01-04 Thread Simon Glass
Hi Albert, On Wed, Dec 26, 2012 at 12:41 PM, Simon Glass wrote: > Hi Albert, > > On Sun, Dec 23, 2012 at 7:03 AM, Albert ARIBAUD > wrote: >> Hi Simon, >> >> On Fri, 30 Nov 2012 14:10:01 -0800, Simon Glass >> wrote: >> >>> >> I tried to test it on a snow (exynos5250) but couldn't really sync up

Re: [U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2012-12-26 Thread Simon Glass
Hi Albert, On Sun, Dec 23, 2012 at 7:03 AM, Albert ARIBAUD wrote: > Hi Simon, > > On Fri, 30 Nov 2012 14:10:01 -0800, Simon Glass > wrote: > >> >> I tried to test it on a snow (exynos5250) but couldn't really sync up >> >> with our tree, so gave up. I am not completely sure about how the >> >> C

Re: [U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2012-12-23 Thread Albert ARIBAUD
Hi Simon, On Fri, 30 Nov 2012 14:10:01 -0800, Simon Glass wrote: > >> I tried to test it on a snow (exynos5250) but couldn't really sync up > >> with our tree, so gave up. I am not completely sure about how the > >> CONFIG_SPL_BUILD stuff fits together in start.S and I got a build > >> error I w

Re: [U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2012-12-09 Thread Sughosh Ganu
On Tue Nov 27, 2012 at 01:43:25PM +0100, Albert ARIBAUD wrote: > Move all the C runtime setup code from every start.S > in arch/arm into arch/arm/lib/crt0.S. This covers > the code sequence from setting up the initial stack > to calling into board_init_r(). > > Also, rewrite the C runtime setup an

Re: [U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2012-11-30 Thread Simon Glass
Hi Albert, On Wed, Nov 28, 2012 at 2:34 PM, Albert ARIBAUD wrote: > Hi Simon, > > On Wed, 28 Nov 2012 13:18:57 -0800, Simon Glass > wrote: > >> Hi Albert, >> >> On Tue, Nov 27, 2012 at 4:43 AM, Albert ARIBAUD >> wrote: >> > Move all the C runtime setup code from every start.S >> > in arch/arm i

Re: [U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2012-11-28 Thread Albert ARIBAUD
Hi Simon, On Wed, 28 Nov 2012 13:18:57 -0800, Simon Glass wrote: > Hi Albert, > > On Tue, Nov 27, 2012 at 4:43 AM, Albert ARIBAUD > wrote: > > Move all the C runtime setup code from every start.S > > in arch/arm into arch/arm/lib/crt0.S. This covers > > the code sequence from setting up the in

Re: [U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2012-11-28 Thread Simon Glass
Hi Albert, On Tue, Nov 27, 2012 at 4:43 AM, Albert ARIBAUD wrote: > Move all the C runtime setup code from every start.S > in arch/arm into arch/arm/lib/crt0.S. This covers > the code sequence from setting up the initial stack > to calling into board_init_r(). > > Also, rewrite the C runtime setu

[U-Boot] [PATCH v4 1/2] arm: move C runtime setup code in crt0.S

2012-11-27 Thread Albert ARIBAUD
Move all the C runtime setup code from every start.S in arch/arm into arch/arm/lib/crt0.S. This covers the code sequence from setting up the initial stack to calling into board_init_r(). Also, rewrite the C runtime setup and make functions board_init_*() and relocate_code() behave according to nor