[U-Boot] [PATCH v3] armv8: spl: Call board_init_r from crt0_64 in SPL

2016-07-18 Thread Jeremy Hunt
. This fixes crt0_64 so that it calls board_init_r during the SPL and removes the direct call from board_init_f from the arm SPL example. Signed-off-by: Jeremy Hunt <jeremy.h...@deshawresearch.com> Acked-by: Simon Glass <s...@chromium.org> --- Changes in v3: - Commit message typo Changes

[U-Boot] [PATCH v2] armv8: spl: Call board_init_r from crt0_64 in SPL

2016-07-15 Thread Jeremy Hunt
. This fixes crt0_64 so that it calls board_init_r durring the SPL and removes the direct call from board_init_f from the arm SPL example. Signed-off-by: Jeremy Hunt <jeremy.h...@deshawresearch.com> Acked-by: Simon Glass <s...@chromium.org> --- Changes in v2: - Add comment point

[U-Boot] [PATCH] armv8: spl: Call board_init_r from crt0_64 in SPL

2016-07-11 Thread Jeremy Hunt
. This fixes crt0_64 so that it calls board_init_r durring the SPL and removes the direct call from board_init_f from the arm SPL example. Signed-off-by: Jeremy Hunt <jeremy.h...@deshawresearch.com> --- arch/arm/lib/crt0_64.S | 3 +-- arch/arm/lib/spl.c | 18 +- 2 files chang