Searched refs:rpc_arg (Results 1 – 2 of 2) sorted by relevance
/linux/drivers/tee/optee/ |
H A D | ffa_abi.c | 532 struct optee_msg_arg *rpc_arg, in optee_ffa_yielding_call() argument 587 optee_handle_ffa_rpc(ctx, optee, data->data1, rpc_arg); in optee_ffa_yielding_call() 629 struct optee_msg_arg *rpc_arg; in optee_ffa_do_call_with_arg() local 645 rpc_arg = tee_shm_get_va(shm, offs + rpc_arg_offs); in optee_ffa_do_call_with_arg() 646 if (IS_ERR(rpc_arg)) in optee_ffa_do_call_with_arg() 647 return PTR_ERR(rpc_arg); in optee_ffa_do_call_with_arg() 649 return optee_ffa_yielding_call(ctx, &data, rpc_arg, system_thread); in optee_ffa_do_call_with_arg()
|
H A D | smc_abi.c | 813 struct optee_msg_arg *rpc_arg, in optee_handle_rpc() argument 851 if (rpc_arg) { in optee_handle_rpc() 852 arg = rpc_arg; in optee_handle_rpc() 894 struct optee_msg_arg *rpc_arg = NULL; in optee_smc_do_call_with_arg() local 906 rpc_arg = tee_shm_get_va(shm, offs + rpc_arg_offs); in optee_smc_do_call_with_arg() 907 if (IS_ERR(rpc_arg)) in optee_smc_do_call_with_arg() 908 return PTR_ERR(rpc_arg); in optee_smc_do_call_with_arg() 911 if (rpc_arg && tee_shm_is_dynamic(shm)) { in optee_smc_do_call_with_arg() 922 if (rpc_arg) in optee_smc_do_call_with_arg() 951 optee_handle_rpc(ctx, rpc_arg, ¶m, &call_ctx); in optee_smc_do_call_with_arg()
|