1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2015, Linaro Limited
4  * All rights reserved.
5  */
6 
7 #ifndef USER_TA_HEADER_DEFINES_H
8 #define USER_TA_HEADER_DEFINES_H
9 
10 #include <ta_concurrent.h>
11 #include <user_ta_header.h>
12 
13 #define TA_UUID TA_CONCURRENT_UUID
14 
15 #define TA_FLAGS ( TA_FLAG_EXEC_DDR | TA_FLAG_MULTI_SESSION)
16 #define TA_STACK_SIZE (2 * 1024)
17 #define TA_DATA_SIZE (32 * 1024)
18 
19 #endif /*USER_TA_HEADER_DEFINES_H*/
20