Home
last modified time | relevance | path

Searched refs:abort_type (Results 1 – 7 of 7) sorted by relevance

/optee_os/core/arch/riscv/kernel/
H A Dabort.c47 static __maybe_unused const char *abort_type_to_str(uint32_t abort_type) in abort_type_to_str() argument
49 if (abort_type == ABORT_TYPE_DATA) in abort_type_to_str()
51 if (abort_type == ABORT_TYPE_PREFETCH) in abort_type_to_str()
57 fault_to_str(uint32_t abort_type, uint32_t fault_descr) in fault_to_str() argument
60 if (abort_type != ABORT_TYPE_DATA && abort_type != ABORT_TYPE_PREFETCH) in fault_to_str()
92 ctx, abort_type_to_str(ai->abort_type), ai->va, in __print_abort_info()
93 fault_to_str(ai->abort_type, ai->fault_descr)); in __print_abort_info()
169 ai.abort_type = tsd->abort_type; in abort_print_current_ts()
175 if (ai.abort_type != ABORT_TYPE_USER_MODE_PANIC) in abort_print_current_ts()
192 tsd->abort_type = ai->abort_type; in save_abort_info_in_tsd()
[all …]
H A Darch_scall.c70 tsd->abort_type = ABORT_TYPE_USER_MODE_PANIC; in scall_save_panic_stack()
82 tsd->abort_type = ABORT_TYPE_USER_MODE_PANIC; in scall_save_panic_stack()
/optee_os/core/arch/arm/kernel/
H A Dabort.c91 static __maybe_unused const char *abort_type_to_str(uint32_t abort_type) in abort_type_to_str() argument
93 if (abort_type == ABORT_TYPE_DATA) in abort_type_to_str()
95 if (abort_type == ABORT_TYPE_PREFETCH) in abort_type_to_str()
100 static __maybe_unused const char *fault_to_str(uint32_t abort_type, in fault_to_str() argument
104 if (abort_type != ABORT_TYPE_DATA && abort_type != ABORT_TYPE_PREFETCH) in fault_to_str()
158 abort_type_to_str(ai->abort_type), in __print_abort_info()
160 fault_to_str(ai->abort_type, ai->fault_descr)); in __print_abort_info()
163 abort_type_to_str(ai->abort_type), ai->va, in __print_abort_info()
164 fault_to_str(ai->abort_type, ai->fault_descr)); in __print_abort_info()
258 ai.abort_type = tsd->abort_type; in abort_print_current_ts()
[all …]
H A Darch_scall.c51 tsd->abort_type = ABORT_TYPE_USER_MODE_PANIC; in scall_save_panic_stack()
136 tsd->abort_type = ABORT_TYPE_USER_MODE_PANIC; in scall_save_panic_stack()
152 tsd->abort_type = ABORT_TYPE_USER_MODE_PANIC; in scall_save_panic_stack()
/optee_os/core/include/kernel/
H A Dabort.h21 uint32_t abort_type; member
34 void abort_handler(uint32_t abort_type, struct thread_abort_regs *regs);
H A Dthread.h37 uint32_t abort_type; member
/optee_os/core/arch/arm/mm/
H A Dtee_pager.c1686 if (ai->abort_type == ABORT_TYPE_PREFETCH) { in pager_update_permissions()