mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

Add the support of the TRUSTED_BOARD_BOOT to authenticate the loaded FIP using platform CoT management. It adds TBB platform definition, redefining the standard image ID in order to decrease requested size in BL2 binary. Authentication will use mbedTLS library for parsing certificate configured with a platform configuration. Change-Id: I9da66b915c5e9e9293fccfce92bef2434da1e430 Signed-off-by: Nicolas Toromanoff <nicolas.toromanoff@st.com> Signed-off-by: Lionel Debieve <lionel.debieve@foss.st.com>
18 lines
334 B
C
18 lines
334 B
C
/*
|
|
* Copyright (c) 2022, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <firmware_image_package.h>
|
|
|
|
#include "tbbr_config.h"
|
|
|
|
toc_entry_t plat_def_toc_entries[] = {
|
|
{
|
|
.name = "STM32MP CONFIG CERT",
|
|
.uuid = UUID_STM32MP_CONFIG_CERT,
|
|
.cmdline_name = "stm32mp-cfg-cert"
|
|
}
|
|
};
|
|
|