Home
last modified time | relevance | path

Searched refs:rv (Results 1 – 12 of 12) sorted by relevance

/optee_os/core/arch/riscv/kernel/
H A Dthread_optee_abi.c57 uint32_t rv = OPTEE_ABI_RETURN_OK; in thread_handle_std_abi() local
71 rv = OPTEE_ABI_RETURN_ERESUME; in thread_handle_std_abi()
74 rv = OPTEE_ABI_RETURN_ETHREAD_LIMIT; in thread_handle_std_abi()
80 return rv; in thread_handle_std_abi()
148 uint32_t rv = 0; in call_entry_std() local
167 rv = OPTEE_ABI_RETURN_EBADCMD; in call_entry_std()
169 rv = OPTEE_ABI_RETURN_OK; in call_entry_std()
175 if (rv == OPTEE_ABI_RETURN_OK && in call_entry_std()
179 return rv; in call_entry_std()
189 uint32_t rv = 0; in std_entry_with_parg() local
[all …]
H A Dthread_arch.c554 void __thread_rpc(uint32_t rv[THREAD_RPC_NUM_ARGS]) in __thread_rpc()
556 thread_rpc_xstatus(rv, xstatus_for_xret(false, PRV_S)); in __thread_rpc()
/optee_os/core/arch/arm/kernel/
H A Dthread_optee_smc.c56 uint32_t rv = OPTEE_SMC_RETURN_OK; in thread_handle_std_smc() local
70 rv = OPTEE_SMC_RETURN_ERESUME; in thread_handle_std_smc()
73 rv = OPTEE_SMC_RETURN_ETHREAD_LIMIT; in thread_handle_std_smc()
79 return rv; in thread_handle_std_smc()
147 uint32_t rv = 0; in call_entry_std() local
166 rv = OPTEE_SMC_RETURN_EBADCMD; in call_entry_std()
168 rv = OPTEE_SMC_RETURN_OK; in call_entry_std()
174 if (rv == OPTEE_SMC_RETURN_OK && in call_entry_std()
178 return rv; in call_entry_std()
188 uint32_t rv = 0; in std_entry_with_parg() local
[all …]
H A Dthread.c426 void __thread_rpc(uint32_t rv[THREAD_RPC_NUM_ARGS]) in __thread_rpc()
428 thread_rpc_spsr(rv, spsr_from_pstate()); in __thread_rpc()
/optee_os/scripts/
H A Dupdate_changelog.py64 rv = args.release_version
70 rvu = rv.replace('.', '_')
72 text = "# OP-TEE - version {} ({})\n".format(rv, rd)
90 "{}\n".format(gu, rvu, g, rv)
92 "{}...{}\n".format(gu, rvu, g, prv, rv)
/optee_os/core/arch/riscv/include/kernel/
H A Dthread_private_arch.h122 void thread_rpc_xstatus(uint32_t rv[THREAD_RPC_NUM_ARGS], unsigned long status);
123 void __thread_rpc(uint32_t rv[THREAD_RPC_NUM_ARGS]);
125 static inline void thread_rpc(uint32_t rv[THREAD_RPC_NUM_ARGS]) in thread_rpc()
127 __thread_rpc(rv); in thread_rpc()
/optee_os/core/arch/arm/include/kernel/
H A Dthread_private_arch.h205 void thread_rpc_spsr(uint32_t rv[THREAD_RPC_NUM_ARGS], uint64_t spsr);
206 void __thread_rpc(uint32_t rv[THREAD_RPC_NUM_ARGS]);
231 static inline void thread_rpc(uint32_t rv[THREAD_RPC_NUM_ARGS]) in thread_rpc()
233 __thread_rpc(rv); in thread_rpc()
238 void thread_rpc(uint32_t rv[THREAD_RPC_NUM_ARGS]);
/optee_os/ta/pkcs11/src/
H A Dserializer.c159 uint32_t rv = PKCS11_CKR_GENERAL_ERROR; in serialargs_get_session_from_handle() local
163 rv = serialargs_get(args, &session_handle, sizeof(uint32_t)); in serialargs_get_session_from_handle()
164 if (rv) in serialargs_get_session_from_handle()
165 return rv; in serialargs_get_session_from_handle()
/optee_os/core/kernel/
H A Dboot.c17 uint64_t rv = 0; in get_dt_val_and_advance() local
24 rv = fdt32_to_cpu(v); in get_dt_val_and_advance()
30 rv = fdt64_to_cpu(v); in get_dt_val_and_advance()
33 return rv; in get_dt_val_and_advance()
H A Dldelf_loader.c284 arg->rv.fp = tsd->abort_regs.s0; in ldelf_dump_state()
285 arg->rv.pc = tsd->abort_regs.epc; in ldelf_dump_state()
286 arg->rv.sp = tsd->abort_regs.sp; in ldelf_dump_state()
/optee_os/ldelf/
H A Dmain.c54 ta_elf_stack_trace_riscv(arg->rv.fp, arg->rv.pc); in dump_ta_state()
/optee_os/ldelf/include/
H A Dldelf.h68 } rv; member