Re: [U-Boot] [PATCH v4 2/2] rockchip: rk3288: use spl_early_init() instead of spl_init()

2017-03-16 Thread Simon Glass
Hi Kever, On 16 March 2017 at 01:08, Kever Yang wrote: > Hi Eddie, Simon, > > Could you help to correct rk3188, rk3399 spl at the same time? I don't have boards to test with for these, sorry. Regards, Simon ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH v4 2/2] rockchip: rk3288: use spl_early_init() instead of spl_init()

2017-03-16 Thread Simon Glass
On 16 March 2017 at 09:04, Eddie Cai wrote: > > > 2017-03-15 22:43 GMT+08:00 Simon Glass : >> >> From: Eddie Cai >> >> Use spl_early_init() to make sure that early malloc() is initialised. This >> fixes booting on firefly-rk3288, for example. >> >> Signed-off-by: Eddie Cai >> Signed-off-by: Simo

Re: [U-Boot] [PATCH v4 2/2] rockchip: rk3288: use spl_early_init() instead of spl_init()

2017-03-16 Thread Eddie Cai
2017-03-15 22:43 GMT+08:00 Simon Glass : > From: Eddie Cai > > Use spl_early_init() to make sure that early malloc() is initialised. This > fixes booting on firefly-rk3288, for example. > > Signed-off-by: Eddie Cai > Signed-off-by: Simon Glass > Reviewed-by: Eddie Cai > --- > > Changes in v4:

Re: [U-Boot] [PATCH v4 2/2] rockchip: rk3288: use spl_early_init() instead of spl_init()

2017-03-16 Thread Kever Yang
Hi Eddie, Simon, Could you help to correct rk3188, rk3399 spl at the same time? Thanks, - Kever On 03/15/2017 10:43 PM, Simon Glass wrote: From: Eddie Cai Use spl_early_init() to make sure that early malloc() is initialised. This fixes booting on firefly-rk3288, for example. Signed-off-by: E

[U-Boot] [PATCH v4 2/2] rockchip: rk3288: use spl_early_init() instead of spl_init()

2017-03-15 Thread Simon Glass
From: Eddie Cai Use spl_early_init() to make sure that early malloc() is initialised. This fixes booting on firefly-rk3288, for example. Signed-off-by: Eddie Cai Signed-off-by: Simon Glass --- Changes in v4: - Change debug() message to match new function name Changes in v3: - Rewrite both co