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

If `MBEDTLS_PLATFORM_SNPRINTF_ALT` isn't used, the function `mbedtls_platform_set_snprintf()` isn't defined. In case a platform uses a different mbed TLS configuration file than the one provided by the Trusted Firmware, and it doesn't define the mentioned build option, this will result in a build error. This patch modifies the initialization code so that `mbedtls_platform_set_snprintf()` is only used if `MBEDTLS_PLATFORM_SNPRINTF_ALT` is defined, allowing platforms to use it or not depending on their needs. Change-Id: I1d5c86d57e9b2871ba463030bf89210ebec5178e Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
42 lines
888 B
C
42 lines
888 B
C
/*
|
|
* Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <debug.h>
|
|
|
|
/* mbed TLS headers */
|
|
#include <mbedtls/memory_buffer_alloc.h>
|
|
#include <mbedtls/platform.h>
|
|
#include <mbedtls_config.h>
|
|
|
|
/*
|
|
* mbed TLS heap
|
|
*/
|
|
#if (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_ECDSA)
|
|
#define MBEDTLS_HEAP_SIZE (14*1024)
|
|
#elif (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA)
|
|
#define MBEDTLS_HEAP_SIZE (6*1024)
|
|
#endif
|
|
static unsigned char heap[MBEDTLS_HEAP_SIZE];
|
|
|
|
/*
|
|
* mbed TLS initialization function
|
|
*/
|
|
void mbedtls_init(void)
|
|
{
|
|
static int ready;
|
|
|
|
if (!ready) {
|
|
/* Initialize the mbed TLS heap */
|
|
mbedtls_memory_buffer_alloc_init(heap, MBEDTLS_HEAP_SIZE);
|
|
|
|
#ifdef MBEDTLS_PLATFORM_SNPRINTF_ALT
|
|
/* Use reduced version of snprintf to save space. */
|
|
mbedtls_platform_set_snprintf(tf_snprintf);
|
|
#endif
|
|
|
|
ready = 1;
|
|
}
|
|
}
|