Re: [U-Boot] [PATCH v2 03/23] armv8: add lowlevel_init.S

2016-12-17 Thread Simon Glass
Hi Andre, On 16 December 2016 at 19:55, André Przywara wrote: > > On 05/12/16 06:26, Simon Glass wrote: > > Hi Andre, > > > > On 4 December 2016 at 18:52, Andre Przywara wrote: > >> For boards that call s_init() when the SPL runs, we are expected to > >> setup an early stack before calling this

Re: [U-Boot] [PATCH v2 03/23] armv8: add lowlevel_init.S

2016-12-16 Thread André Przywara
On 05/12/16 06:26, Simon Glass wrote: > Hi Andre, > > On 4 December 2016 at 18:52, Andre Przywara wrote: >> For boards that call s_init() when the SPL runs, we are expected to >> setup an early stack before calling this C function. >> Implement the proper AArch64 version of this based on the ARMv

Re: [U-Boot] [PATCH v2 03/23] armv8: add lowlevel_init.S

2016-12-06 Thread Tom Rini
On Tue, Dec 06, 2016 at 08:04:24AM +, André Przywara wrote: > On 05/12/16 21:56, Tom Rini wrote: > > On Mon, Dec 05, 2016 at 01:52:10AM +, Andre Przywara wrote: > > > >> For boards that call s_init() when the SPL runs, we are expected to > >> setup an early stack before calling this C func

Re: [U-Boot] [PATCH v2 03/23] armv8: add lowlevel_init.S

2016-12-06 Thread André Przywara
On 05/12/16 21:56, Tom Rini wrote: > On Mon, Dec 05, 2016 at 01:52:10AM +, Andre Przywara wrote: > >> For boards that call s_init() when the SPL runs, we are expected to >> setup an early stack before calling this C function. >> Implement the proper AArch64 version of this based on the ARMv7 c

Re: [U-Boot] [PATCH v2 03/23] armv8: add lowlevel_init.S

2016-12-05 Thread Tom Rini
On Mon, Dec 05, 2016 at 01:52:10AM +, Andre Przywara wrote: > For boards that call s_init() when the SPL runs, we are expected to > setup an early stack before calling this C function. > Implement the proper AArch64 version of this based on the ARMv7 code. > This allows sunxi boards to setup t

Re: [U-Boot] [PATCH v2 03/23] armv8: add lowlevel_init.S

2016-12-04 Thread Simon Glass
Hi Andre, On 4 December 2016 at 18:52, Andre Przywara wrote: > For boards that call s_init() when the SPL runs, we are expected to > setup an early stack before calling this C function. > Implement the proper AArch64 version of this based on the ARMv7 code. > This allows sunxi boards to setup the

[U-Boot] [PATCH v2 03/23] armv8: add lowlevel_init.S

2016-12-04 Thread Andre Przywara
For boards that call s_init() when the SPL runs, we are expected to setup an early stack before calling this C function. Implement the proper AArch64 version of this based on the ARMv7 code. This allows sunxi boards to setup the basic peripherals even on with a 64-bit SPL. Signed-off-by: Andre Prz