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 and

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 and

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 s...@chromium.org wrote: Hi Albert, On Sun, Dec 23, 2012 at 7:03 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hi Simon, On Fri, 30 Nov 2012 14:10:01 -0800, Simon Glass s...@chromium.org wrote: I tried to test it on a snow

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 s...@chromium.org 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

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 and

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 albert.u.b...@aribaud.net wrote: Hi Simon, On Wed, 28 Nov 2012 13:18:57 -0800, Simon Glass s...@chromium.org wrote: Hi Albert, On Tue, Nov 27, 2012 at 4:43 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Move all the C

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 albert.u.b...@aribaud.net 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,

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 s...@chromium.org wrote: Hi Albert, On Tue, Nov 27, 2012 at 4:43 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Move all the C runtime setup code from every start.S in arch/arm into arch/arm/lib/crt0.S. This covers the

[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