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