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

Subsequent patches will provide a solution to do the BL2 hash measurement and recording in BL1 itself, hence in preparation to adopt that solution remove the logic of passing BL2 hash measurement to BL2 component via TB_FW config. Change-Id: Iff9b3d4c6a236a33b942898fcdf799cbab89b724 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
17 lines
428 B
C
17 lines
428 B
C
/*
|
|
* Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#ifndef ARM_DYN_CFG_HELPERS_H
|
|
#define ARM_DYN_CFG_HELPERS_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
/* Function declarations */
|
|
int arm_dyn_tb_fw_cfg_init(void *dtb, int *node);
|
|
int arm_set_dtb_mbedtls_heap_info(void *dtb, void *heap_addr,
|
|
size_t heap_size);
|
|
|
|
#endif /* ARM_DYN_CFG_HELPERS_H */
|