Re: [U-Boot] [PATCH 1/2] rpi: save firmware provided boot param for later use

2016-11-06 Thread Jonathan Liu
Hi Cédric, On 6 November 2016 at 21:06, Cédric Schieli wrote: > > 2016-11-06 1:36 GMT+01:00 Jonathan Liu : >> >> I did a similar patch without noticing you already submitted this series. >> The save_boot_params function can be written in C instead of

Re: [U-Boot] [PATCH 1/2] rpi: save firmware provided boot param for later use

2016-11-06 Thread Cédric Schieli
2016-11-06 3:48 GMT+01:00 Stephen Warren : > On 11/02/2016 12:06 PM, Cédric Schieli wrote: > >> At U-Boot entry point, the r2 register holds the address of the >> firmware provided boot param. Let's save it for further processing. >> > > diff --git

Re: [U-Boot] [PATCH 1/2] rpi: save firmware provided boot param for later use

2016-11-06 Thread Cédric Schieli
2016-11-06 1:36 GMT+01:00 Jonathan Liu : > I did a similar patch without noticing you already submitted this series. > The save_boot_params function can be written in C instead of assembly > and placed in rpi.c. > See https://lists.yoctoproject.org/pipermail/yocto/2016- >

Re: [U-Boot] [PATCH 1/2] rpi: save firmware provided boot param for later use

2016-11-05 Thread Stephen Warren
On 11/02/2016 12:06 PM, Cédric Schieli wrote: At U-Boot entry point, the r2 register holds the address of the firmware provided boot param. Let's save it for further processing. diff --git a/board/raspberrypi/rpi/lowlevel_init.S b/board/raspberrypi/rpi/lowlevel_init.S +.global

Re: [U-Boot] [PATCH 1/2] rpi: save firmware provided boot param for later use

2016-11-05 Thread Jonathan Liu
Hi Cédric, On 3 November 2016 at 05:06, Cédric Schieli wrote: > At U-Boot entry point, the r2 register holds the address of the > firmware provided boot param. Let's save it for further processing. > > Signed-off-by: Cédric Schieli > --- > >

Re: [U-Boot] [PATCH 1/2] rpi: save firmware provided boot param for later use

2016-11-04 Thread Tom Rini
On Fri, Nov 04, 2016 at 08:18:29PM +0100, Cédric Schieli wrote: > 2016-11-04 19:04 GMT+01:00 Tom Rini : > > > > At U-Boot entry point, the r2 register holds the address of the > > > firmware provided boot param. Let's save it for further processing. > > > > > > Signed-off-by:

Re: [U-Boot] [PATCH 1/2] rpi: save firmware provided boot param for later use

2016-11-04 Thread Cédric Schieli
2016-11-04 19:04 GMT+01:00 Tom Rini : > > At U-Boot entry point, the r2 register holds the address of the > > firmware provided boot param. Let's save it for further processing. > > > > Signed-off-by: Cédric Schieli > [snip] > > diff --git

Re: [U-Boot] [PATCH 1/2] rpi: save firmware provided boot param for later use

2016-11-04 Thread Tom Rini
On Wed, Nov 02, 2016 at 07:06:12PM +0100, Cédric Schieli wrote: > At U-Boot entry point, the r2 register holds the address of the > firmware provided boot param. Let's save it for further processing. > > Signed-off-by: Cédric Schieli [snip] > diff --git

[U-Boot] [PATCH 1/2] rpi: save firmware provided boot param for later use

2016-11-03 Thread Cédric Schieli
At U-Boot entry point, the r2 register holds the address of the firmware provided boot param. Let's save it for further processing. Signed-off-by: Cédric Schieli --- board/raspberrypi/rpi/Makefile| 1 + board/raspberrypi/rpi/lowlevel_init.S | 26