Files
rk35xx-android14/u-boot/include/optee_include/OpteeClientRPC.h
T
hmz007 70e34291f6 Rockchip Anroid14_SDK 20241219-rkr6 (2f87fee1)
[kernel] 97200b6a: ARM64: dts: rockchip: adapt to android for nanopi6
[u-boot] 97fe060f: standalone: add rkspi to .gitignore

Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: I26394f188bb4b88fd8e9cb14a9a707f02b6cb2e0
2025-04-10 18:11:34 +08:00

27 lines
570 B
C

/*
* Copyright 2017, Rockchip Electronics Co., Ltd
* hisping lin, <hisping.lin@rock-chips.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#ifndef _OPTEE_CLIENT_RPC_H_
#define _OPTEE_CLIENT_RPC_H_
#include <optee_include/tee_base_types.h>
#include <optee_include/OpteeClientApiLib.h>
typedef struct{
unsigned int Arg0;
unsigned int Arg1;
unsigned int Arg2;
unsigned int Arg3;
unsigned int Arg4;
unsigned int Arg5;
unsigned int Arg6;
unsigned int Arg7;
} ARM_SMC_ARGS;
TEEC_Result OpteeRpcCallback(ARM_SMC_ARGS *ArmSmcArgs);
#endif /*_OPTEE_CLIENT_RPC_H_*/