1 // SPDX-License-Identifier: BSD-2-Clause 2 /* 3 * Copyright (c) 2018, Linaro Limited 4 */ 5 6 /* 7 * The name of this file must not be modified 8 */ 9 10 #ifndef USER_TA_HEADER_DEFINES_H 11 #define USER_TA_HEADER_DEFINES_H 12 13 #include <acipher_ta.h> 14 15 #define TA_UUID TA_ACIPHER_UUID 16 17 #define TA_FLAGS TA_FLAG_EXEC_DDR 18 #define TA_STACK_SIZE (2 * 1024) 19 #define TA_DATA_SIZE (32 * 1024) 20 21 #define TA_CURRENT_TA_EXT_PROPERTIES \ 22 { "gp.ta.description", USER_TA_PROP_TYPE_STRING, \ 23 "Example of TA using asymmetric cipher" }, \ 24 { "gp.ta.version", USER_TA_PROP_TYPE_U32, &(const uint32_t){ 0x0010 } } 25 26 #endif /*USER_TA_HEADER_DEFINES_H*/ 27