mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-01 00:23:29 +08:00
board: ti: dra7xx: add FIT image TEE processing
Populate the corresponding TEE image processing call to be performed during FIT loadable processing. Signed-off-by: Andrew F. Davis <afd@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
a8ff968520
commit
0fcc5207ba
@ -855,4 +855,11 @@ void board_fit_image_post_process(void **p_image, size_t *p_size)
|
||||
{
|
||||
secure_boot_verify_image(p_image, p_size);
|
||||
}
|
||||
|
||||
void board_tee_image_process(ulong tee_image, size_t tee_size)
|
||||
{
|
||||
secure_tee_install((u32)tee_image);
|
||||
}
|
||||
|
||||
U_BOOT_FIT_LOADABLE_HANDLER(IH_TYPE_TEE, board_tee_image_process);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user