custom-tee-storage/bliq_storage/ta/user_ta_header_defines.h

22 lines
585 B
C
Raw Permalink Normal View History

2024-03-21 22:12:03 +01:00
/*
* The name of this file must not be modified
*/
#ifndef USER_TA_HEADER_DEFINES_H
#define USER_TA_HEADER_DEFINES_H
#include <bliq_storage_ta.h>
#define TA_UUID TA_BLIQ_STORAGE_UUID
#define TA_FLAGS (TA_FLAG_EXEC_DDR | TA_FLAG_SINGLE_INSTANCE)
#define TA_STACK_SIZE (2 * 1024)
#define TA_DATA_SIZE (32 * 1024)
#define TA_CURRENT_TA_EXT_PROPERTIES \
{ "gp.ta.description", USER_TA_PROP_TYPE_STRING, \
"A simple secure storage TA for BliQ" }, \
{ "gp.ta.version", USER_TA_PROP_TYPE_U32, &(const uint32_t){ 0x0010 } }
#endif /*USER_TA_HEADER_DEFINES_H*/