/* 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 */
|