mbedtls_common.c 888 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
 */
17
#if (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_ECDSA)
18
#define MBEDTLS_HEAP_SIZE		(13*1024)
19
#elif (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA)
20
#define MBEDTLS_HEAP_SIZE		(7*1024)
21
22
23
24
#endif
static unsigned char heap[MBEDTLS_HEAP_SIZE];

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

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

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

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