hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* SPDX-License-Identifier: BSD-3-Clause */
/*
 * Copyright (C) 2020, Foundries Limited
 */
 
#ifndef __SCP03_PTA_H
#define __SCP03_PTA_H
 
#define PTA_SCP03_UUID { 0xbe0e5821, 0xe718, 0x4f77, \
           { 0xab, 0x3e, 0x8e, 0x6c, 0x73, 0xa9, 0xc7, 0x35 } }
 
/*
 * Enable SCP03 support on the SE
 *
 * [in]     value[0].a    extra option (0 do not rotate keys, 1 rotate keys)
 *
 * Result:
 * TEE_SUCCESS - Invoke command success
 * TEE_ERROR_BAD_PARAMETERS - Incorrect input param
 * TEE_ERROR_NOT_IMPLEMENTED - Invoke command not implemented
 * TEE_ERROR_GENERIC - Invoke command failure
 */
#define PTA_CMD_ENABLE_SCP03        0
 
#endif /* __SCP03_PTA_H */