arm_dyn_cfg_helpers.h 428 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2018-2021, 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. #include <stddef.h>
  9. #include <stdint.h>
  10. /* Function declarations */
  11. int arm_dyn_tb_fw_cfg_init(void *dtb, int *node);
  12. int arm_set_dtb_mbedtls_heap_info(void *dtb, void *heap_addr,
  13. size_t heap_size);
  14. #endif /* ARM_DYN_CFG_HELPERS_H */