| // SPDX-License-Identifier: BSD-2-Clause |
| /* |
| * Copyright (c) 2018, Linaro Limited |
| */ |
| |
| /* |
| * The name of this file must not be modified |
| */ |
| |
| #ifndef USER_TA_HEADER_DEFINES_H |
| #define USER_TA_HEADER_DEFINES_H |
| |
| #include <acipher_ta.h> |
| |
| #define TA_UUID TA_ACIPHER_UUID |
| |
| #define TA_FLAGS TA_FLAG_EXEC_DDR |
| |
| /* Provisioned stack size */ |
| #define TA_STACK_SIZE (2 * 1024) |
| |
| /* Provisioned heap size for TEE_Malloc() and friends */ |
| #define TA_DATA_SIZE (32 * 1024) |
| |
| /* The gpd.ta.version property */ |
| #define TA_VERSION "1.0" |
| |
| /* The gpd.ta.description property */ |
| #define TA_DESCRIPTION "Example of TA using asymmetric cipher" |
| |
| #endif /*USER_TA_HEADER_DEFINES_H*/ |