From: Andrew F. Davis Date: Tue, 29 Nov 2016 22:33:26 +0000 (-0600) Subject: board: ti: am57xx: add FIT image TEE processing X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=1b597ada36a005f9800e2068bb745b9edccd04ba;p=project%2Fbcm63xx%2Fu-boot.git board: ti: am57xx: 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 Reviewed-by: Tom Rini --- diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c index d162d34371..9dcc302d13 100644 --- a/board/ti/am57xx/board.c +++ b/board/ti/am57xx/board.c @@ -747,4 +747,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