mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
22 lines
538 B
C
22 lines
538 B
C
|
/* SPDX-License-Identifier: BSD-3-Clause */
|
||
|
/*
|
||
|
* (C) Copyright 2021, Foundries.IO
|
||
|
*
|
||
|
*/
|
||
|
#ifndef __TA_SCP03_H
|
||
|
#define __TA_SCP03_H
|
||
|
|
||
|
#define PTA_SCP03_UUID { 0xbe0e5821, 0xe718, 0x4f77, \
|
||
|
{ 0xab, 0x3e, 0x8e, 0x6c, 0x73, 0xa9, 0xc7, 0x35 } }
|
||
|
|
||
|
/*
|
||
|
* Enable Secure Channel Protocol functionality (SCP03) on the Secure Element.
|
||
|
* Setting the operation value to something different than NULL will trigger
|
||
|
* the SCP03 provisioning request.
|
||
|
*
|
||
|
* in params[0].a = operation
|
||
|
*/
|
||
|
#define PTA_CMD_ENABLE_SCP03 0
|
||
|
|
||
|
#endif /*__TA_SCP03_H*/
|