xref: /optee_os/lib/libutee/include/pta_secstor_ta_mgmt.h (revision 546291f4de9b76fb6c5ed4dbdbe685a9805cad2a)
1 /*
2  * Copyright (c) 2017, Linaro Limited
3  *
4  * SPDX-License-Identifier: BSD-2-Clause
5  */
6 
7 #ifndef __PTA_SECSTOR_TA_MGMT_H
8 #define __PTA_SECSTOR_TA_MGMT_H
9 
10 /*
11  * Bootstrap (install initial) Trusted Application or Secure Domain into
12  * secure storage from a signed binary.
13  *
14  * [in]		memref[0]: signed binary
15  */
16 #define PTA_SECSTOR_TA_MGMT_BOOTSTRAP	0
17 
18 #define PTA_SECSTOR_TA_MGMT_UUID { 0x6e256cba, 0xfc4d, 0x4941, { \
19 				   0xad, 0x09, 0x2c, 0xa1, 0x86, 0x03, 0x42, \
20 				   0xdd } }
21 
22 #endif /*__PTA_SECSTOR_TA_MGMT_H*/
23