From e29878fc47f19e2ad6824cd61c69f2c187c5fb8a Mon Sep 17 00:00:00 2001 From: Madan Srinivas Date: Mon, 27 Jun 2016 09:19:23 -0500 Subject: arm: am4x: add U-Boot FIT signing and SPL image post-processing Modify the SPL build procedure for AM437x high-security (HS) device variants to create a secure u-boot_HS.img FIT blob that contains U-Boot and DTB artifacts signed (and optionally encrypted) with a TI-specific process based on the CONFIG_TI_SECURE_DEVICE config option and the externally-provided image signing tool. Also populate the corresponding FIT image post processing call to be performed during SPL runtime. Signed-off-by: Madan Srinivas Signed-off-by: Andreas Dannenberg Reviewed-by: Tom Rini --- board/ti/am43xx/board.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'board/ti') diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c index f005762edad..27c311ee9d2 100644 --- a/board/ti/am43xx/board.c +++ b/board/ti/am43xx/board.c @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include @@ -862,3 +863,10 @@ int board_fit_config_name_match(const char *name) return -1; } #endif + +#ifdef CONFIG_TI_SECURE_DEVICE +void board_fit_image_post_process(void **p_image, size_t *p_size) +{ + secure_boot_verify_image(p_image, p_size); +} +#endif -- cgit v1.2.3