Re: [U-Boot] [RFC PATCH 3/4] arm: zynq: spl: fix FPGA initialization

2018-07-18 Thread Michal Simek
On 18.7.2018 09:41, Luis Araneda wrote: > commit 4aba5fb857c1 ("arm: zynq: Rework FPGA initialization") > moved FPGA initialization from board_init() to arch_early_init_r(), > which is not called as part of the SPL > > Fix this by calling arch_early_init_r() in the spl_board_init() > function, so

[U-Boot] [RFC PATCH 3/4] arm: zynq: spl: fix FPGA initialization

2018-07-18 Thread Luis Araneda
commit 4aba5fb857c1 ("arm: zynq: Rework FPGA initialization") moved FPGA initialization from board_init() to arch_early_init_r(), which is not called as part of the SPL Fix this by calling arch_early_init_r() in the spl_board_init() function, so the FPGA is correctly initialized Signed-off-by: Lu