blob: be0c5e000cca9db49c95488189afab24778d28d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __TRUSTZONE_TA_GCPU__
#define __TRUSTZONE_TA_GCPU__
#define TZ_TA_GCPU_UUID "7b6c51b8-2994-4a32-be68-d840df0281bb"
/* Data Structure for GCPU TA */
/* You should define data structure used both in REE/TEE here
N/A for GCPU TA */
/* Command for GCPU TA */
#define TZCMD_GCPU_SELFTEST 0
#define TZCMD_GCPU_SUSPEND 1
#define TZCMD_GCPU_KERNEL_INIT_DONE 2
#endif /* __TRUSTZONE_TA_GCPU__ */
|