Home
last modified time | relevance | path

Searched defs:esr (Results 1 – 25 of 50) sorted by relevance

12

/linux-6.12.1/arch/arm64/mm/
Dfault.c58 static inline const struct fault_info *esr_to_fault_info(unsigned long esr) in esr_to_fault_info()
63 static inline const struct fault_info *esr_to_debug_fault_info(unsigned long esr) in esr_to_debug_fault_info()
68 static void data_abort_decode(unsigned long esr) in data_abort_decode()
101 static void mem_abort_decode(unsigned long esr) in mem_abort_decode()
248 static bool is_el1_instruction_abort(unsigned long esr) in is_el1_instruction_abort()
253 static bool is_el1_data_abort(unsigned long esr) in is_el1_data_abort()
258 static inline bool is_el1_permission_fault(unsigned long addr, unsigned long esr, in is_el1_permission_fault()
275 unsigned long esr, in is_spurious_el1_translation_fault()
306 unsigned long esr, struct pt_regs *regs) in die_kernel_fault()
324 static void report_tag_fault(unsigned long addr, unsigned long esr, in report_tag_fault()
[all …]
/linux-6.12.1/arch/arm64/kernel/
Dentry-common.c321 unsigned long esr) in __panic_unhandled()
426 static void noinstr el1_abort(struct pt_regs *regs, unsigned long esr) in el1_abort()
437 static void noinstr el1_pc(struct pt_regs *regs, unsigned long esr) in el1_pc()
448 static void noinstr el1_undef(struct pt_regs *regs, unsigned long esr) in el1_undef()
457 static void noinstr el1_bti(struct pt_regs *regs, unsigned long esr) in el1_bti()
466 static void noinstr el1_dbg(struct pt_regs *regs, unsigned long esr) in el1_dbg()
476 static void noinstr el1_fpac(struct pt_regs *regs, unsigned long esr) in el1_fpac()
487 unsigned long esr = read_sysreg(esr_el1); in el1h_64_sync_handler() local
566 unsigned long esr = read_sysreg(esr_el1); in el1h_64_error_handler() local
574 static void noinstr el0_da(struct pt_regs *regs, unsigned long esr) in el0_da()
[all …]
Dtraps.c247 unsigned long esr = tsk->thread.fault_code; in arm64_show_signal() local
460 void do_el0_undef(struct pt_regs *regs, unsigned long esr) in do_el0_undef()
481 void do_el1_undef(struct pt_regs *regs, unsigned long esr) in do_el1_undef()
500 void do_el1_bti(struct pt_regs *regs, unsigned long esr) in do_el1_bti()
509 void do_el0_fpac(struct pt_regs *regs, unsigned long esr) in do_el0_fpac()
514 void do_el1_fpac(struct pt_regs *regs, unsigned long esr) in do_el1_fpac()
523 void do_el0_mops(struct pt_regs *regs, unsigned long esr) in do_el0_mops()
549 static void user_cache_maint_handler(unsigned long esr, struct pt_regs *regs) in user_cache_maint_handler()
589 static void ctr_read_handler(unsigned long esr, struct pt_regs *regs) in ctr_read_handler()
608 static void cntvct_read_handler(unsigned long esr, struct pt_regs *regs) in cntvct_read_handler()
[all …]
Ddebug-monitors.c205 static int call_step_hook(struct pt_regs *regs, unsigned long esr) in call_step_hook()
241 static int single_step_handler(unsigned long unused, unsigned long esr, in single_step_handler()
302 static int call_break_hook(struct pt_regs *regs, unsigned long esr) in call_break_hook()
323 static int brk_handler(unsigned long unused, unsigned long esr, in brk_handler()
Dkgdb.c237 static int kgdb_brk_fn(struct pt_regs *regs, unsigned long esr) in kgdb_brk_fn()
253 static int kgdb_step_brk_fn(struct pt_regs *regs, unsigned long esr) in kgdb_step_brk_fn()
Dfpsimd.c1385 void do_sve_acc(unsigned long esr, struct pt_regs *regs) in do_sve_acc()
1427 void do_sme_acc(unsigned long esr, struct pt_regs *regs) in do_sme_acc()
1471 void do_fpsimd_acc(unsigned long esr, struct pt_regs *regs) in do_fpsimd_acc()
1489 void do_fpsimd_exc(unsigned long esr, struct pt_regs *regs) in do_fpsimd_exc()
Dhw_breakpoint.c621 static int breakpoint_handler(unsigned long unused, unsigned long esr, in breakpoint_handler()
755 static int watchpoint_handler(unsigned long addr, unsigned long esr, in watchpoint_handler()
/linux-6.12.1/arch/arm64/include/asm/
Desr.h74 #define ESR_ELx_EC(esr) (((esr) & ESR_ELx_EC_MASK) >> ESR_ELx_EC_SHIFT) argument
79 #define ESR_ELx_ISS(esr) ((esr) & ESR_ELx_ISS_MASK) argument
82 #define ESR_ELx_ISS2(esr) (((esr) & ESR_ELx_ISS2_MASK) >> ESR_ELx_ISS2_SHIFT) argument
225 #define ESR_ELx_SYS64_ISS_RT(esr) \ argument
385 #define ESR_ELx_MOPS_ISS_DESTREG(esr) (((esr) & (UL(0x1f) << 10)) >> 10) argument
386 #define ESR_ELx_MOPS_ISS_SRCREG(esr) (((esr) & (UL(0x1f) << 5)) >> 5) argument
387 #define ESR_ELx_MOPS_ISS_SIZEREG(esr) (((esr) & (UL(0x1f) << 0)) >> 0) argument
392 static inline unsigned long esr_brk_comment(unsigned long esr) in esr_brk_comment()
397 static inline bool esr_is_data_abort(unsigned long esr) in esr_is_data_abort()
404 static inline bool esr_is_cfi_brk(unsigned long esr) in esr_is_cfi_brk()
[all …]
Dtraps.h61 static inline bool arm64_is_ras_serror(unsigned long esr) in arm64_is_ras_serror()
81 static inline unsigned long arm64_ras_serror_get_severity(unsigned long esr) in arm64_ras_serror_get_severity()
105 static inline void arm64_mops_reset_regs(struct user_pt_regs *regs, unsigned long esr) in arm64_mops_reset_regs()
Dkvm_emulate.h61 u64 esr = FIELD_PREP(ESR_ELx_EC_MASK, ESR_ELx_EC_SVE) | in kvm_inject_nested_sve_trap() local
281 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_vcpu_get_condition() local
396 unsigned long esr = kvm_vcpu_get_esr(vcpu); in kvm_vcpu_trap_get_perm_fault_granule() local
417 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_vcpu_sys_get_rt() local
Dkvm_ras.h17 static inline int kvm_handle_guest_sea(phys_addr_t addr, u64 esr) in kvm_handle_guest_sea()
Dexception.h19 unsigned long esr = ESR_ELx_EC_SERROR << ESR_ELx_EC_SHIFT; in disr_to_esr() local
Dkvm_nested.h89 u32 esr; member
/linux-6.12.1/arch/arm64/kvm/
Dhandle_exit.c31 static void kvm_handle_guest_serror(struct kvm_vcpu *vcpu, u64 esr) in kvm_handle_guest_serror()
131 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_handle_wfx() local
184 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_handle_guest_debug() local
205 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_handle_unknown_ec() local
324 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_get_exit_handler() local
439 void __noreturn __cold nvhe_hyp_panic_handler(u64 esr, u64 spsr, in nvhe_hyp_panic_handler()
Dinject_fault.c61 u64 esr = 0; in inject_abt64() local
97 u64 esr = (ESR_ELx_EC_UNKNOWN << ESR_ELx_EC_SHIFT); in inject_undef64() local
192 unsigned long addr, esr; in kvm_inject_size_fault() local
233 void kvm_set_sei_esr(struct kvm_vcpu *vcpu, u64 esr) in kvm_set_sei_esr()
Dsys_regs.h37 #define esr_sys64_to_params(esr) \ argument
45 #define esr_cp1x_32_to_params(esr) \ argument
Dpauth.c159 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_auth_eretax() local
/linux-6.12.1/arch/sh/boards/mach-dreamcast/
Dirq.c90 __u32 esr = ESR_BASE + (LEVEL(irq) << 2); in mask_ack_systemasic_irq() local
107 __u32 emr, esr, status, level; in systemasic_irq_demux() local
/linux-6.12.1/arch/arm64/kernel/probes/
Dkprobes.c295 kprobe_breakpoint_handler(struct pt_regs *regs, unsigned long esr) in kprobe_breakpoint_handler()
344 kprobe_breakpoint_ss_handler(struct pt_regs *regs, unsigned long esr) in kprobe_breakpoint_ss_handler()
368 kretprobe_breakpoint_handler(struct pt_regs *regs, unsigned long esr) in kretprobe_breakpoint_handler()
Duprobes.c169 unsigned long esr) in uprobe_breakpoint_handler()
178 unsigned long esr) in uprobe_single_step_handler()
/linux-6.12.1/arch/arm64/kvm/hyp/vhe/
Dswitch.c261 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_hyp_handle_eret() local
363 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_hyp_handle_cpacr_el1() local
/linux-6.12.1/arch/arm64/kvm/hyp/include/hyp/
Dfault.h47 static inline bool __get_fault_info(u64 esr, struct kvm_vcpu_fault_info *fault) in __get_fault_info()
/linux-6.12.1/drivers/net/can/
Dbxcan.c158 u32 esr; /* 0x18 - error status */ member
466 static void bxcan_handle_state_change(struct net_device *ndev, u32 esr) in bxcan_handle_state_change()
517 static void bxcan_handle_bus_err(struct net_device *ndev, u32 esr) in bxcan_handle_bus_err()
607 u32 msr, esr; in bxcan_state_change_isr() local
916 u32 esr; in bxcan_get_berr_counter() local
/linux-6.12.1/arch/arm64/kvm/hyp/nvhe/
Dsys_regs.c37 u64 esr = (ESR_ELx_EC_UNKNOWN << ESR_ELx_EC_SHIFT); in inject_undef64() local
478 unsigned long esr = kvm_vcpu_get_esr(vcpu); in kvm_handle_pvm_sysreg() local
/linux-6.12.1/drivers/net/ethernet/ibm/emac/
Dmal.c222 u32 esr = get_mal_dcrn(mal, MAL_ESR); in mal_serr() local
355 u32 esr = get_mal_dcrn(mal, MAL_ESR); in mal_int() local

12