1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2016, Linaro Limited 4 */ 5 #ifndef USER_TA_HEADER_DEFINES_H 6 #define USER_TA_HEADER_DEFINES_H 7 8 #include "ta_storage.h" 9 10 #define TA_UUID TA_STORAGE2_UUID 11 12 /* 13 * This is important to have TA_FLAG_SINGLE_INSTANCE && !TA_FLAG_MULTI_SESSION 14 * as it is used by the ytest 15 */ 16 #define TA_FLAGS (TA_FLAG_USER_MODE | TA_FLAG_EXEC_DDR | \ 17 TA_FLAG_SINGLE_INSTANCE) 18 #define TA_STACK_SIZE (2 * 1024) 19 #define TA_DATA_SIZE (32 * 1024) 20 21 #endif 22