Re: [U-Boot] [PATCH v3 7/8] zynq: Move SPL console init out of board_init_f()

2015-10-18 Thread Albert ARIBAUD
Hello Simon, On Sun, 18 Oct 2015 14:37:03 -0600, Simon Glass wrote: > Hi Albert, > > On 18 October 2015 at 10:36, Albert ARIBAUD wrote: > > Hello Simon, > > > > On Sat, 17 Oct 2015 15:07:00 -0600, Simon Glass > > wrote: > >> We should not init the console this early and there is no need to. If

Re: [U-Boot] [PATCH v3 7/8] zynq: Move SPL console init out of board_init_f()

2015-10-18 Thread Simon Glass
Hi Albert, On 18 October 2015 at 10:36, Albert ARIBAUD wrote: > Hello Simon, > > On Sat, 17 Oct 2015 15:07:00 -0600, Simon Glass > wrote: >> We should not init the console this early and there is no need to. If we want >> to do early init it can be done in spl_board_init(). Move the >> preloader

Re: [U-Boot] [PATCH v3 7/8] zynq: Move SPL console init out of board_init_f()

2015-10-18 Thread Albert ARIBAUD
Hello Simon, On Sat, 17 Oct 2015 15:07:00 -0600, Simon Glass wrote: > We should not init the console this early and there is no need to. If we want > to do early init it can be done in spl_board_init(). Move the > preloader_console_init() call from board_init_f() to board_init_r(). > > Signed-of

[U-Boot] [PATCH v3 7/8] zynq: Move SPL console init out of board_init_f()

2015-10-17 Thread Simon Glass
We should not init the console this early and there is no need to. If we want to do early init it can be done in spl_board_init(). Move the preloader_console_init() call from board_init_f() to board_init_r(). Signed-off-by: Simon Glass Tested-by: Masahiro Yamada Tested-by: Michal Simek --- Cha