Home
last modified time | relevance | path

Searched refs:esr (Results 1 – 25 of 77) sorted by relevance

1234

/linux-6.6.21/arch/arm64/mm/
Dfault.c47 int (*fn)(unsigned long far, unsigned long esr,
57 static inline const struct fault_info *esr_to_fault_info(unsigned long esr) in esr_to_fault_info() argument
59 return fault_info + (esr & ESR_ELx_FSC); in esr_to_fault_info()
62 static inline const struct fault_info *esr_to_debug_fault_info(unsigned long esr) in esr_to_debug_fault_info() argument
64 return debug_fault_info + DBG_ESR_EVT(esr); in esr_to_debug_fault_info()
67 static void data_abort_decode(unsigned long esr) in data_abort_decode() argument
69 unsigned long iss2 = ESR_ELx_ISS2(esr); in data_abort_decode()
73 if (esr & ESR_ELx_ISV) { in data_abort_decode()
75 1U << ((esr & ESR_ELx_SAS) >> ESR_ELx_SAS_SHIFT)); in data_abort_decode()
77 (esr & ESR_ELx_SSE) >> ESR_ELx_SSE_SHIFT, in data_abort_decode()
[all …]
/linux-6.6.21/arch/arm64/kernel/
Dentry-common.c287 unsigned long esr) in __panic_unhandled() argument
294 vector, smp_processor_id(), esr, in __panic_unhandled()
295 esr_get_class_string(esr)); in __panic_unhandled()
392 static void noinstr el1_abort(struct pt_regs *regs, unsigned long esr) in el1_abort() argument
398 do_mem_abort(far, esr, regs); in el1_abort()
403 static void noinstr el1_pc(struct pt_regs *regs, unsigned long esr) in el1_pc() argument
409 do_sp_pc_abort(far, esr, regs); in el1_pc()
414 static void noinstr el1_undef(struct pt_regs *regs, unsigned long esr) in el1_undef() argument
418 do_el1_undef(regs, esr); in el1_undef()
423 static void noinstr el1_bti(struct pt_regs *regs, unsigned long esr) in el1_bti() argument
[all …]
Dtraps.c247 unsigned long esr = tsk->thread.fault_code; in arm64_show_signal() local
257 if (esr) in arm64_show_signal()
258 pr_cont("%s, ESR 0x%016lx, ", esr_get_class_string(esr), esr); in arm64_show_signal()
454 void do_el0_undef(struct pt_regs *regs, unsigned long esr) in do_el0_undef() argument
475 void do_el1_undef(struct pt_regs *regs, unsigned long esr) in do_el1_undef() argument
486 die("Oops - Undefined instruction", regs, esr); in do_el1_undef()
494 void do_el1_bti(struct pt_regs *regs, unsigned long esr) in do_el1_bti() argument
500 die("Oops - BTI", regs, esr); in do_el1_bti()
503 void do_el0_fpac(struct pt_regs *regs, unsigned long esr) in do_el0_fpac() argument
505 force_signal_inject(SIGILL, ILL_ILLOPN, regs->pc, esr); in do_el0_fpac()
[all …]
Ddebug-monitors.c205 static int call_step_hook(struct pt_regs *regs, unsigned long esr) in call_step_hook() argument
218 retval = hook->fn(regs, esr); in call_step_hook()
241 static int single_step_handler(unsigned long unused, unsigned long esr, in single_step_handler() argument
253 if (!handler_found && call_step_hook(regs, esr) == DBG_HOOK_HANDLED) in single_step_handler()
302 static int call_break_hook(struct pt_regs *regs, unsigned long esr) in call_break_hook() argument
306 int (*fn)(struct pt_regs *regs, unsigned long esr) = NULL; in call_break_hook()
315 unsigned long comment = esr & ESR_ELx_BRK64_ISS_COMMENT_MASK; in call_break_hook()
321 return fn ? fn(regs, esr) : DBG_HOOK_ERROR; in call_break_hook()
325 static int brk_handler(unsigned long unused, unsigned long esr, in brk_handler() argument
328 if (call_break_hook(regs, esr) == DBG_HOOK_HANDLED) in brk_handler()
Dfpsimd.c1462 void do_sve_acc(unsigned long esr, struct pt_regs *regs) in do_sve_acc() argument
1504 void do_sme_acc(unsigned long esr, struct pt_regs *regs) in do_sme_acc() argument
1516 if (ESR_ELx_ISS(esr) != ESR_ELx_SME_ISS_SME_DISABLED) { in do_sme_acc()
1548 void do_fpsimd_acc(unsigned long esr, struct pt_regs *regs) in do_fpsimd_acc() argument
1557 void do_fpsimd_exc(unsigned long esr, struct pt_regs *regs) in do_fpsimd_exc() argument
1561 if (esr & ESR_ELx_FP_EXC_TFV) { in do_fpsimd_exc()
1562 if (esr & FPEXC_IOF) in do_fpsimd_exc()
1564 else if (esr & FPEXC_DZF) in do_fpsimd_exc()
1566 else if (esr & FPEXC_OFF) in do_fpsimd_exc()
1568 else if (esr & FPEXC_UFF) in do_fpsimd_exc()
[all …]
Dkgdb.c237 static int kgdb_brk_fn(struct pt_regs *regs, unsigned long esr) in kgdb_brk_fn() argument
244 static int kgdb_compiled_brk_fn(struct pt_regs *regs, unsigned long esr) in NOKPROBE_SYMBOL()
253 static int kgdb_step_brk_fn(struct pt_regs *regs, unsigned long esr) in kgdb_step_brk_fn() argument
/linux-6.6.21/arch/arm64/include/asm/
Dexception.h19 unsigned long esr = ESR_ELx_EC_SERROR << ESR_ELx_EC_SHIFT; in disr_to_esr() local
22 esr |= (disr & DISR_EL1_ESR_MASK); in disr_to_esr()
24 esr |= (disr & ESR_ELx_ISS_MASK); in disr_to_esr()
26 return esr; in disr_to_esr()
55 void do_mem_abort(unsigned long far, unsigned long esr, struct pt_regs *regs);
56 void do_el0_undef(struct pt_regs *regs, unsigned long esr);
57 void do_el1_undef(struct pt_regs *regs, unsigned long esr);
59 void do_el1_bti(struct pt_regs *regs, unsigned long esr);
60 void do_debug_exception(unsigned long addr_if_watchpoint, unsigned long esr,
62 void do_fpsimd_acc(unsigned long esr, struct pt_regs *regs);
[all …]
Dtraps.h32 int early_brk64(unsigned long addr, unsigned long esr, struct pt_regs *regs);
61 static inline bool arm64_is_ras_serror(unsigned long esr) in arm64_is_ras_serror() argument
65 if (esr & ESR_ELx_IDS) in arm64_is_ras_serror()
81 static inline unsigned long arm64_ras_serror_get_severity(unsigned long esr) in arm64_ras_serror_get_severity() argument
83 unsigned long aet = esr & ESR_ELx_AET; in arm64_ras_serror_get_severity()
85 if (!arm64_is_ras_serror(esr)) { in arm64_ras_serror_get_severity()
94 if ((esr & ESR_ELx_FSC) != ESR_ELx_FSC_SERROR) { in arm64_ras_serror_get_severity()
102 bool arm64_is_fatal_ras_serror(struct pt_regs *regs, unsigned long esr);
103 void __noreturn arm64_serror_panic(struct pt_regs *regs, unsigned long esr);
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
221 #define ESR_ELx_SYS64_ISS_RT(esr) \ argument
222 (((esr) & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT)
381 #define ESR_ELx_MOPS_ISS_DESTREG(esr) (((esr) & (UL(0x1f) << 10)) >> 10) argument
382 #define ESR_ELx_MOPS_ISS_SRCREG(esr) (((esr) & (UL(0x1f) << 5)) >> 5) argument
383 #define ESR_ELx_MOPS_ISS_SIZEREG(esr) (((esr) & (UL(0x1f) << 0)) >> 0) argument
388 static inline bool esr_is_data_abort(unsigned long esr) in esr_is_data_abort() argument
390 const unsigned long ec = ESR_ELx_EC(esr); in esr_is_data_abort()
[all …]
Ddebug-monitors.h67 int (*fn)(struct pt_regs *regs, unsigned long esr);
78 int (*fn)(struct pt_regs *regs, unsigned long esr);
Dkvm_emulate.h302 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_vcpu_get_condition() local
304 if (esr & ESR_ELx_CV) in kvm_vcpu_get_condition()
305 return (esr & ESR_ELx_COND_MASK) >> ESR_ELx_COND_SHIFT; in kvm_vcpu_get_condition()
433 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_vcpu_sys_get_rt() local
434 return ESR_ELx_SYS64_ISS_RT(esr); in kvm_vcpu_sys_get_rt()
Dkvm_ras.h17 static inline int kvm_handle_guest_sea(phys_addr_t addr, u64 esr) in kvm_handle_guest_sea() argument
/linux-6.6.21/arch/arm64/kvm/
Dinject_fault.c61 u64 esr = 0; in inject_abt64() local
70 esr |= ESR_ELx_IL; in inject_abt64()
77 esr |= (ESR_ELx_EC_IABT_LOW << ESR_ELx_EC_SHIFT); in inject_abt64()
79 esr |= (ESR_ELx_EC_IABT_CUR << ESR_ELx_EC_SHIFT); in inject_abt64()
82 esr |= ESR_ELx_EC_DABT_LOW << ESR_ELx_EC_SHIFT; in inject_abt64()
84 esr |= ESR_ELx_FSC_EXTABT; in inject_abt64()
88 vcpu_write_sys_reg(vcpu, esr, ESR_EL1); in inject_abt64()
91 vcpu_write_sys_reg(vcpu, esr, ESR_EL2); in inject_abt64()
97 u64 esr = (ESR_ELx_EC_UNKNOWN << ESR_ELx_EC_SHIFT); in inject_undef64() local
106 esr |= ESR_ELx_IL; in inject_undef64()
[all …]
Dhandle_exit.c31 static void kvm_handle_guest_serror(struct kvm_vcpu *vcpu, u64 esr) in kvm_handle_guest_serror() argument
33 if (!arm64_is_ras_serror(esr) || arm64_is_fatal_ras_serror(NULL, esr)) in kvm_handle_guest_serror()
116 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_handle_wfx() local
118 if (esr & ESR_ELx_WFx_ISS_WFE) { in kvm_handle_wfx()
126 if (esr & ESR_ELx_WFx_ISS_WFxT) { in kvm_handle_wfx()
127 if (esr & ESR_ELx_WFx_ISS_RV) { in kvm_handle_wfx()
137 esr &= ~ESR_ELx_WFx_ISS_WFxT; in kvm_handle_wfx()
141 if (esr & ESR_ELx_WFx_ISS_WFE) { in kvm_handle_wfx()
144 if (esr & ESR_ELx_WFx_ISS_WFxT) in kvm_handle_wfx()
169 u64 esr = kvm_vcpu_get_esr(vcpu); in kvm_handle_guest_debug() local
[all …]
Dsys_regs.h37 #define esr_sys64_to_params(esr) \ argument
38 ((struct sys_reg_params){ .Op0 = ((esr) >> 20) & 3, \
39 .Op1 = ((esr) >> 14) & 0x7, \
40 .CRn = ((esr) >> 10) & 0xf, \
41 .CRm = ((esr) >> 1) & 0xf, \
42 .Op2 = ((esr) >> 17) & 0x7, \
43 .is_write = !((esr) & 1) })
45 #define esr_cp1x_32_to_params(esr) \ argument
46 ((struct sys_reg_params){ .Op1 = ((esr) >> 14) & 0x7, \
47 .CRn = ((esr) >> 10) & 0xf, \
[all …]
/linux-6.6.21/arch/alpha/kernel/
Dcore_lca.c338 mem_error(unsigned long esr, unsigned long ear) in mem_error() argument
341 ((esr & ESR_CEE) ? "Correctable" : in mem_error()
342 (esr & ESR_UEE) ? "Uncorrectable" : "A"), in mem_error()
343 (esr & ESR_WRE) ? "write" : "read", in mem_error()
344 (esr & ESR_SOR) ? "memory" : "b-cache", in mem_error()
346 if (esr & ESR_CTE) { in mem_error()
349 if (esr & ESR_MSE) { in mem_error()
352 if (esr & ESR_MHE) { in mem_error()
355 if (esr & ESR_NXM) { in mem_error()
435 if (el.s->esr & ESR_EAV) { in lca_machine_check()
[all …]
/linux-6.6.21/arch/sh/boards/mach-dreamcast/
Dirq.c90 __u32 esr = ESR_BASE + (LEVEL(irq) << 2); in mask_ack_systemasic_irq() local
92 outl((1 << EVENT_BIT(irq)), esr); in mask_ack_systemasic_irq()
107 __u32 emr, esr, status, level; in systemasic_irq_demux() local
124 esr = ESR_BASE + (level << 2); in systemasic_irq_demux()
127 status = inl(esr); in systemasic_irq_demux()
/linux-6.6.21/arch/arm64/kvm/hyp/include/hyp/
Dfault.h44 static inline bool __get_fault_info(u64 esr, struct kvm_vcpu_fault_info *fault) in __get_fault_info() argument
61 if (!(esr & ESR_ELx_S1PTW) && in __get_fault_info()
63 (esr & ESR_ELx_FSC_TYPE) == ESR_ELx_FSC_PERM)) { in __get_fault_info()
/linux-6.6.21/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() argument
476 if (!(esr & (BXCAN_ESR_EWGF | BXCAN_ESR_EPVF | BXCAN_ESR_BOFF))) in bxcan_handle_state_change()
479 bec.txerr = FIELD_GET(BXCAN_ESR_TEC_MASK, esr); in bxcan_handle_state_change()
480 bec.rxerr = FIELD_GET(BXCAN_ESR_REC_MASK, esr); in bxcan_handle_state_change()
482 if (esr & BXCAN_ESR_BOFF) in bxcan_handle_state_change()
484 else if (esr & BXCAN_ESR_EPVF) in bxcan_handle_state_change()
486 else if (esr & BXCAN_ESR_EWGF) in bxcan_handle_state_change()
517 static void bxcan_handle_bus_err(struct net_device *ndev, u32 esr) in bxcan_handle_bus_err() argument
524 lec_code = FIELD_GET(BXCAN_ESR_LEC_MASK, esr); in bxcan_handle_bus_err()
[all …]
/linux-6.6.21/drivers/net/ethernet/ibm/emac/
Dmal.c222 u32 esr = get_mal_dcrn(mal, MAL_ESR); in mal_serr() local
225 set_mal_dcrn(mal, MAL_ESR, esr); in mal_serr()
227 MAL_DBG(mal, "SERR %08x" NL, esr); in mal_serr()
229 if (esr & MAL_ESR_EVB) { in mal_serr()
230 if (esr & MAL_ESR_DE) { in mal_serr()
237 if (esr & MAL_ESR_PEIN) { in mal_serr()
245 mal->index, esr); in mal_serr()
255 mal->index, esr); in mal_serr()
355 u32 esr = get_mal_dcrn(mal, MAL_ESR); in mal_int() local
357 if (esr & MAL_ESR_EVB) { in mal_int()
[all …]
/linux-6.6.21/sound/soc/fsl/
Dfsl_esai.c102 u32 esr; in esai_isr() local
105 regmap_read(esai_priv->regmap, REG_ESAI_ESR, &esr); in esai_isr()
118 if (esr & ESAI_ESR_TINIT_MASK) in esai_isr()
121 if (esr & ESAI_ESR_RFF_MASK) in esai_isr()
124 if (esr & ESAI_ESR_TFE_MASK) in esai_isr()
127 if (esr & ESAI_ESR_TLS_MASK) in esai_isr()
130 if (esr & ESAI_ESR_TDE_MASK) in esai_isr()
133 if (esr & ESAI_ESR_TED_MASK) in esai_isr()
136 if (esr & ESAI_ESR_TD_MASK) in esai_isr()
139 if (esr & ESAI_ESR_RLS_MASK) in esai_isr()
[all …]
/linux-6.6.21/arch/powerpc/platforms/44x/
Dmachine_check.c14 unsigned long reason = regs->esr; in machine_check_440A()
51 unsigned long reason = regs->esr; in machine_check_47x()
/linux-6.6.21/arch/arm64/kvm/hyp/nvhe/
Dsys_regs.c37 u64 esr = (ESR_ELx_EC_UNKNOWN << ESR_ELx_EC_SHIFT); in inject_undef64() local
46 write_sysreg_el1(esr, SYS_ESR); in inject_undef64()
478 unsigned long esr = kvm_vcpu_get_esr(vcpu); in kvm_handle_pvm_sysreg() local
481 params = esr_sys64_to_params(esr); in kvm_handle_pvm_sysreg()
/linux-6.6.21/arch/mips/include/asm/octeon/
Dcvmx-sli-defs.h107 __BITFIELD_FIELD(uint64_t esr:2,
119 __BITFIELD_FIELD(uint64_t esr:2,
/linux-6.6.21/arch/arm64/kernel/probes/
Duprobes.c169 unsigned long esr) in uprobe_breakpoint_handler() argument
178 unsigned long esr) in uprobe_single_step_handler() argument

1234