blob: 1854723a9c9c1e279893964f32be2dc3a5efbb90 [file] [log] [blame]
Jens Wiklander9396d272018-08-15 11:01:42 +02001// SPDX-License-Identifier: BSD-2-Clause
2/*
3 * Copyright (c) 2018, Linaro Limited
4 */
5
6/*
7 * The name of this file must not be modified
8 */
9
10#ifndef USER_TA_HEADER_DEFINES_H
11#define USER_TA_HEADER_DEFINES_H
12
13#include <acipher_ta.h>
14
15#define TA_UUID TA_ACIPHER_UUID
16
SeongOok CHOI701d9d12020-02-21 14:48:59 +090017#define TA_FLAGS TA_FLAG_EXEC_DDR
ivila90622f32024-12-23 15:09:14 +080018
19/* Provisioned stack size */
Jens Wiklander9396d272018-08-15 11:01:42 +020020#define TA_STACK_SIZE (2 * 1024)
ivila90622f32024-12-23 15:09:14 +080021
22/* Provisioned heap size for TEE_Malloc() and friends */
Jens Wiklander9396d272018-08-15 11:01:42 +020023#define TA_DATA_SIZE (32 * 1024)
24
ivila90622f32024-12-23 15:09:14 +080025/* The gpd.ta.version property */
26#define TA_VERSION "1.0"
27
28/* The gpd.ta.description property */
29#define TA_DESCRIPTION "Example of TA using asymmetric cipher"
Jens Wiklander9396d272018-08-15 11:01:42 +020030
31#endif /*USER_TA_HEADER_DEFINES_H*/