mbedtls_common.c 816 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
13

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

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

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

		/* Use reduced version of snprintf to save space. */
		mbedtls_platform_set_snprintf(tf_snprintf);

Juan Castillo's avatar
Juan Castillo committed
37
		ready = 1;
38
39
	}
}