rpc_load()
- Call
thread_rpc_cmd()
withOPTEE_RPC_CMD_LOAD_TA
RPC command withoutstruct thread_param_memref
parameter to request the size of TA. OPTEE_RPC_CMD_LOAD_TA
RPC command is saved tostruct optee_msg_arg.cmd
.struct optee_msg_arg
is stored in the shared memory shared with the untrusted domain.- Call
thread_rpc_alloc_payload(
) to allocate data for TA. - Call
thread_rpc_alloc()
to allocate shared memory for TA. - Call
thread_rpc()
withrpc_args
(rv[THREAD_RPC_NUM_ARGS]
).rpc_args
’s first element is set toOPTEE_ABI_RETURN_RPC_CMD
function. The RPC command is set toOPTEE_RPC_CMD_SHM_ALLOC
to allocate the shared memory for TA. - Call
thread_rpc_cmd()
withOPTEE_RPC_CMD_LOAD_TA
RPC command again withstruct thread_param_memref parameter
to load TA.
rpc_load()c
Loading...