1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2014, STMicroelectronics International N.V. 4 * All rights reserved. 5 */ 6 7 #ifndef USER_TA_HEADER_DEFINES_H 8 #define USER_TA_HEADER_DEFINES_H 9 10 #include <ta_storage.h> 11 12 #define TA_UUID TA_STORAGE_UUID 13 14 /* 15 * This is important to have TA_FLAG_SINGLE_INSTANCE && !TA_FLAG_MULTI_SESSION 16 * as it is used by the ytest 17 */ 18 #define TA_FLAGS (TA_FLAG_USER_MODE | TA_FLAG_EXEC_DDR | \ 19 TA_FLAG_MULTI_SESSION) 20 #define TA_STACK_SIZE (2 * 1024) 21 #define TA_DATA_SIZE (64 * 1024) 22 23 #endif 24