diff options
author | Simon Glass | 2019-11-14 12:57:46 -0700 |
---|---|---|
committer | Tom Rini | 2019-12-02 18:25:21 -0500 |
commit | 5255932f0167c502fc7fce527bfe7e81df3322f9 (patch) | |
tree | 3d6c908ed81ec0f8a6ca529198765cb64eefbaf3 /include/init.h | |
parent | 67c4e9f815eb75ba5c1f86213eded93c4e06e64b (diff) |
common: Move some board functions out of common.h
A number of board function belong in init.h with the others. Move them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/init.h')
-rw-r--r-- | include/init.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/init.h b/include/init.h index 6076283d2c8..e506cd30dd1 100644 --- a/include/init.h +++ b/include/init.h @@ -197,6 +197,14 @@ int show_board_info(void); */ ulong board_get_usable_ram_top(ulong total_size); +int board_early_init_f(void); + +/* manipulate the U-Boot fdt before its relocation */ +int board_fix_fdt(void *rw_fdt_blob); +int board_late_init(void); +int board_postclk_init(void); /* after clocks/timebase, before env/serial */ +int board_early_init_r(void); + #endif /* __ASSEMBLY__ */ /* Put only stuff here that the assembler can digest */ |