diff options
author | Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com> | 2018-08-13 21:34:35 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2018-08-13 22:35:06 +0200 |
commit | e4ff8420c5cd050eef78a076facb39e9da60a177 (patch) | |
tree | bd5f85cffe879ac42d722ff7cff179065635c934 /arch/arm/mach-socfpga/include | |
parent | 79a436d56848c4213c1452ca60211568b0c8b31a (diff) |
arm: socfpga: gen5: combine some init code for SPL and U-Boot
Some of the code for low level system initialization in SPL's
board_init_f() and U-Boot's arch_early_init_r() is the same,
so let's combine it into a single function called from both.
Signed-off-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Diffstat (limited to 'arch/arm/mach-socfpga/include')
-rw-r--r-- | arch/arm/mach-socfpga/include/mach/misc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-socfpga/include/mach/misc.h b/arch/arm/mach-socfpga/include/mach/misc.h index 7fe77ac8d8..218dd6b6e7 100644 --- a/arch/arm/mach-socfpga/include/mach/misc.h +++ b/arch/arm/mach-socfpga/include/mach/misc.h @@ -27,6 +27,10 @@ unsigned int shared_uart_com_port(const void *blob); unsigned int uart_com_port(const void *blob); #endif +#ifdef CONFIG_TARGET_SOCFPGA_GEN5 +void socfpga_sdram_remap_zero(void); +#endif + void do_bridge_reset(int enable); #endif /* _MISC_H_ */ |