blob: a7e5b97e1586330594000fc430cebb6f3742f11c [file] [log] [blame]
Juan Castilloa57a4d52015-04-02 15:44:20 +01001/*
dp-arm52b1fe52017-03-07 10:08:42 +00002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Juan Castilloa57a4d52015-04-02 15:44:20 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Juan Castilloa57a4d52015-04-02 15:44:20 +01005 */
6
Antonio Nino Diaz6b90f5e2017-05-19 11:37:22 +01007#include <debug.h>
Juan Castilloa57a4d52015-04-02 15:44:20 +01008
Juan Castillobae6b2a2015-11-05 09:24:53 +00009/* mbed TLS headers */
10#include <mbedtls/memory_buffer_alloc.h>
Antonio Nino Diaz6b90f5e2017-05-19 11:37:22 +010011#include <mbedtls/platform.h>
Antonio Nino Diazf1481b22017-06-06 10:54:39 +010012#include <mbedtls_config.h>
Juan Castilloa57a4d52015-04-02 15:44:20 +010013
14/*
Juan Castillobae6b2a2015-11-05 09:24:53 +000015 * mbed TLS heap
Juan Castilloa57a4d52015-04-02 15:44:20 +010016 */
David Cunadoc7a1b192017-05-10 16:38:44 +010017#if (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_ECDSA)
Juan Castilloa57a4d52015-04-02 15:44:20 +010018#define MBEDTLS_HEAP_SIZE (14*1024)
David Cunadoc7a1b192017-05-10 16:38:44 +010019#elif (TF_MBEDTLS_KEY_ALG_ID == TF_MBEDTLS_RSA)
Antonio Nino Diaz45fc0e12017-05-19 16:57:54 +010020#define MBEDTLS_HEAP_SIZE (6*1024)
Juan Castilloa57a4d52015-04-02 15:44:20 +010021#endif
22static unsigned char heap[MBEDTLS_HEAP_SIZE];
23
24/*
Juan Castillobae6b2a2015-11-05 09:24:53 +000025 * mbed TLS initialization function
Juan Castilloa57a4d52015-04-02 15:44:20 +010026 */
27void mbedtls_init(void)
28{
29 static int ready;
Juan Castilloa57a4d52015-04-02 15:44:20 +010030
31 if (!ready) {
Juan Castillobae6b2a2015-11-05 09:24:53 +000032 /* Initialize the mbed TLS heap */
33 mbedtls_memory_buffer_alloc_init(heap, MBEDTLS_HEAP_SIZE);
Antonio Nino Diaz6b90f5e2017-05-19 11:37:22 +010034
Antonio Nino Diazf1481b22017-06-06 10:54:39 +010035#ifdef MBEDTLS_PLATFORM_SNPRINTF_ALT
Antonio Nino Diaz6b90f5e2017-05-19 11:37:22 +010036 /* Use reduced version of snprintf to save space. */
37 mbedtls_platform_set_snprintf(tf_snprintf);
Antonio Nino Diazf1481b22017-06-06 10:54:39 +010038#endif
Antonio Nino Diaz6b90f5e2017-05-19 11:37:22 +010039
Juan Castillobae6b2a2015-11-05 09:24:53 +000040 ready = 1;
Juan Castilloa57a4d52015-04-02 15:44:20 +010041 }
42}