Newer
Older
arm-trusted-firmware / include / plat / arm / common / arm_dyn_cfg_helpers.h
@Alexei Fedorov Alexei Fedorov on 25 Mar 2020 504 bytes FVP: Add BL2 hash calculation in BL1
/*
 * Copyright (c) 2018-2020, 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);

#if MEASURED_BOOT
int arm_set_bl2_hash_info(void *dtb, void *data);
#endif

#endif /* ARM_DYN_CFG_HELPERS_H */