mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 04:48:14 +00:00

This adds return of a UUID when TF-A is in the state where it needs to receive the SMC call to load the OP-TEE image. It also changes the OEN used for the image loading call to match the OEN used for the UUID call. Signed-off-by: Jeffrey Kardatzke <jkardatzke@google.com> Change-Id: I713cb602d8e53b3f20d179b5fb5162da6a2ed057
23 lines
632 B
C
23 lines
632 B
C
/*
|
|
* Copyright (c) 2014-2023, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#ifndef TEESMC_OPTEED_MACROS_H
|
|
#define TEESMC_OPTEED_MACROS_H
|
|
|
|
#include <common/runtime_svc.h>
|
|
|
|
#define TEESMC_OPTEED_RV(func_num) \
|
|
((SMC_TYPE_FAST << FUNCID_TYPE_SHIFT) | \
|
|
((SMC_32) << FUNCID_CC_SHIFT) | \
|
|
(62 << FUNCID_OEN_SHIFT) | \
|
|
((func_num) & FUNCID_NUM_MASK))
|
|
|
|
#define NSSMC_OPTEED_CALL(func_num) \
|
|
((SMC_TYPE_FAST << FUNCID_TYPE_SHIFT) | \
|
|
((SMC_32) << FUNCID_CC_SHIFT) | \
|
|
(63 << FUNCID_OEN_SHIFT) | \
|
|
((func_num) & FUNCID_NUM_MASK))
|
|
|
|
#endif /* TEESMC_OPTEED_MACROS_H */
|