aboutsummaryrefslogtreecommitdiff
path: root/secure_fw
diff options
context:
space:
mode:
authorKen Liu <ken.liu@arm.com>2020-08-25 13:06:45 +0800
committerKen Liu <Ken.Liu@arm.com>2020-08-25 08:02:19 +0100
commit894438607db860bbb09811ce88a6cc4bbac90ab6 (patch)
tree3064b3d0a37fb7c8831e426b3446566450abafce /secure_fw
parent9b6289868a6538bc635b6e7d2250236844b64046 (diff)
downloadtrusted-firmware-m-894438607db860bbb09811ce88a6cc4bbac90ab6.tar.gz
Crypto: Increase more heap size
The last increment of 0x10 bytes would fail attestation tests. Leave more space in crypto heap to avoid these failures. Signed-off-by: Ken Liu <ken.liu@arm.com> Change-Id: I7f8e7b0a90524a4acc06fbc713963f2749f2dae5
Diffstat (limited to 'secure_fw')
-rw-r--r--secure_fw/partitions/crypto/crypto_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/secure_fw/partitions/crypto/crypto_init.c b/secure_fw/partitions/crypto/crypto_init.c
index ee4d20522a..f706395a3b 100644
--- a/secure_fw/partitions/crypto/crypto_init.c
+++ b/secure_fw/partitions/crypto/crypto_init.c
@@ -268,7 +268,7 @@ static void tfm_crypto_ipc_handler(void)
* Crypto for its dynamic allocations
*/
#ifndef TFM_CRYPTO_ENGINE_BUF_SIZE
-#define TFM_CRYPTO_ENGINE_BUF_SIZE (0x2010) /* >8KB for EC signing in attest */
+#define TFM_CRYPTO_ENGINE_BUF_SIZE (0x2040) /* >8KB for EC signing in attest */
#endif
/**