xref: /optee_os/core/arch/riscv/include/tee/teeabi_opteed_macros.h (revision fbe66cf83199aa6a2aca9f93384cf1ad9185a5f6)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright 2023 NXP
4  * Copyright (c) 2014, Linaro Limited
5  */
6 
7 #ifndef __TEE_TEEABI_OPTEED_MACROS_H
8 #define __TEE_TEEABI_OPTEED_MACROS_H
9 
10 #define TEEABI_OPTEED_RV(func_num) \
11 	OPTEE_ABI_CALL_VAL(OPTEE_ABI_32, OPTEE_ABI_FAST_CALL, \
12 			   OPTEE_ABI_OWNER_TRUSTED_OS_OPTEED, (func_num))
13 
14 #endif /*__TEE_TEEABI_OPTEED_MACROS_H*/
15