mbedtls_common.c 946 Bytes
Newer Older
1
/*
dp-arm's avatar
dp-arm committed
2
 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
 */

7
#include <debug.h>
8

Juan Castillo's avatar
Juan Castillo committed
9
10
/* mbed TLS headers */
#include <mbedtls/memory_buffer_alloc.h>
11
#include <mbedtls/platform.h>
12
#include <mbedtls_config.h>
13
14

/*
Juan Castillo's avatar
Juan Castillo committed
15
 * mbed TLS heap
16
 */
Qixiang Xu's avatar
Qixiang Xu committed
17
18
#if (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_ECDSA) \
	|| (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA_AND_ECDSA)
19
#define MBEDTLS_HEAP_SIZE		(13*1024)
20
#elif (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA)
21
#define MBEDTLS_HEAP_SIZE		(7*1024)
22
23
24
25
#endif
static unsigned char heap[MBEDTLS_HEAP_SIZE];

/*
Juan Castillo's avatar
Juan Castillo committed
26
 * mbed TLS initialization function
27
28
29
30
31
32
 */
void mbedtls_init(void)
{
	static int ready;

	if (!ready) {
Juan Castillo's avatar
Juan Castillo committed
33
34
		/* Initialize the mbed TLS heap */
		mbedtls_memory_buffer_alloc_init(heap, MBEDTLS_HEAP_SIZE);
35

36
#ifdef MBEDTLS_PLATFORM_SNPRINTF_ALT
37
38
		/* Use reduced version of snprintf to save space. */
		mbedtls_platform_set_snprintf(tf_snprintf);
39
#endif
40

Juan Castillo's avatar
Juan Castillo committed
41
		ready = 1;
42
43
	}
}