mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
166363f2ed
This Trusted Application allows enabling SCP03 as well as provisioning the keys on TEE controlled secure element (ie, NXP SE050). All the information flowing on buses (ie I2C) between the processor and the secure element must be encrypted. Secure elements are pre-provisioned with a set of keys known to the user so that the secure channel protocol (encryption) can be enforced on the first boot. This situation is however unsafe since the keys are publically available. For example, in the case of the NXP SE050, these keys would be available in the OP-TEE source tree [2] and of course in the documentation corresponding to the part. To address that, users are required to rotate/provision those keys (ie, generate new keys and write them in the secure element's persistent memory). For information on SCP03, check the Global Platform HomePage and google for that term [1] [1] globalplatform.org [2] https://github.com/OP-TEE/optee_os/ check: core/drivers/crypto/se050/adaptors/utils/scp_config.c Signed-off-by: Jorge Ramirez-Ortiz <jorge@foundries.io> Reviewed-by: Simon Glass <sjg@chromium.org>
21 lines
476 B
C
21 lines
476 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2021, Foundries.IO
|
|
*
|
|
*/
|
|
|
|
#ifndef _SCP03_H
|
|
#define _SCP03_H
|
|
|
|
/*
|
|
* Requests to OPTEE to enable or provision the Secure Channel Protocol on its
|
|
* Secure Element
|
|
*
|
|
* If key provisioning is requested, OPTEE shall generate new SCP03 keys and
|
|
* write them to the Secure Element.
|
|
*
|
|
* Both functions return < 0 on error else 0.
|
|
*/
|
|
int tee_enable_scp03(void);
|
|
int tee_provision_scp03(void);
|
|
#endif /* _SCP03_H */
|