Lines Matching refs:esr
74 #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()
395 const char *esr_get_class_string(unsigned long esr);