optee_ta_scp03.h 538 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: BSD-3-Clause */
  2. /*
  3. * (C) Copyright 2021, Foundries.IO
  4. *
  5. */
  6. #ifndef __TA_SCP03_H
  7. #define __TA_SCP03_H
  8. #define PTA_SCP03_UUID { 0xbe0e5821, 0xe718, 0x4f77, \
  9. { 0xab, 0x3e, 0x8e, 0x6c, 0x73, 0xa9, 0xc7, 0x35 } }
  10. /*
  11. * Enable Secure Channel Protocol functionality (SCP03) on the Secure Element.
  12. * Setting the operation value to something different than NULL will trigger
  13. * the SCP03 provisioning request.
  14. *
  15. * in params[0].a = operation
  16. */
  17. #define PTA_CMD_ENABLE_SCP03 0
  18. #endif /*__TA_SCP03_H*/