blob: dc1dfa4ee579c9ec6c529062957b1851a63b3c1a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* An example test TA implementation.
*/
#ifndef __TRUSTZONE_TA_INC_CNT__
#define __TRUSTZONE_TA_INC_CNT__
#define TZ_TA_ICNT_UUID "5bc52d1c-a07b-4373-8cab-d4db3e9eea5c"
/* Data Structure for INC-ONLY CNT TA */
/* You should define data structure used both in REE/TEE here
N/A for Test TA */
/* Command for INC-ONLY CNT TA */
#define TZCMD_ICNT_COUNT 0
#define TZCMD_ICNT_RATE 1
#endif /* __TRUSTZONE_TA_INC_CNT__ */
|