mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
spl: introduce function prototypes
Introduce function prototypes for board_spl_fit_size_align and board_spl_fit_post_load Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
e246bfcfe2
commit
28ded1f376
1 changed files with 12 additions and 0 deletions
|
@ -353,6 +353,18 @@ void spl_optee_entry(void *arg0, void *arg1, void *arg2, void *arg3);
|
|||
*/
|
||||
void board_return_to_bootrom(void);
|
||||
|
||||
/**
|
||||
* board_spl_fit_post_load - allow process images after loading finished
|
||||
*
|
||||
*/
|
||||
void board_spl_fit_post_load(ulong load_addr, size_t length);
|
||||
|
||||
/**
|
||||
* board_spl_fit_size_align - specific size align before processing payload
|
||||
*
|
||||
*/
|
||||
ulong board_spl_fit_size_align(ulong size);
|
||||
|
||||
/**
|
||||
* spl_perform_fixups() - arch/board-specific callback before processing
|
||||
* the boot-payload
|
||||
|
|
Loading…
Reference in a new issue