1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2021, 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_arm_bti.h" 11 12 #define TA_UUID TA_BTI_UUID 13 14 #define TA_FLAGS (TA_FLAG_USER_MODE | TA_FLAG_EXEC_DDR) 15 #define TA_STACK_SIZE (2 * 1024) 16 #define TA_DATA_SIZE (32 * 1024) 17 18 #endif 19