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