1 /* 2 * Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 #ifndef ARM_DYN_CFG_HELPERS_H 7 #define ARM_DYN_CFG_HELPERS_H 8 9 #include <stddef.h> 10 #include <stdint.h> 11 12 /* Function declarations */ 13 int arm_dyn_tb_fw_cfg_init(void *dtb, int *node); 14 int arm_set_dtb_mbedtls_heap_info(void *dtb, void *heap_addr, 15 size_t heap_size); 16 17 #if MEASURED_BOOT 18 int arm_set_bl2_hash_info(void *dtb, void *data); 19 #endif 20 21 #endif /* ARM_DYN_CFG_HELPERS_H */ 22