Lines Matching refs:esr

84 	printf("* Reason:        Exception from %s\n", esr_bits_ec[REG_BITS(regs->esr, 26, 0x3f)]);  in show_regs()
93 printf("* ESR_EL%d = %016lx\n", el, regs->esr); in show_regs()
126 printf("ESR: %lx (ec=%ld)\n", regs->esr, REG_BITS(regs->esr, 26, 0x3f)); in show_regs()
140 void do_bad_sync(struct pt_regs *pt_regs, unsigned int esr) in do_bad_sync() argument
143 printf("Bad mode in \"Synchronous Abort\" handler, esr 0x%08x\n", esr); in do_bad_sync()
151 void do_bad_irq(struct pt_regs *pt_regs, unsigned int esr) in do_bad_irq() argument
154 printf("Bad mode in \"Irq\" handler, esr 0x%08x\n", esr); in do_bad_irq()
162 void do_bad_fiq(struct pt_regs *pt_regs, unsigned int esr) in do_bad_fiq() argument
165 printf("Bad mode in \"Fiq\" handler, esr 0x%08x\n", esr); in do_bad_fiq()
173 void do_bad_error(struct pt_regs *pt_regs, unsigned int esr) in do_bad_error() argument
176 printf("Bad mode in \"Error\" handler, esr 0x%08x\n", esr); in do_bad_error()
184 void do_sync(struct pt_regs *pt_regs, unsigned int esr) in do_sync() argument
188 if (md_no_fault_handler(pt_regs, esr)) { in do_sync()
194 printf("\"Synchronous Abort\" handler, esr 0x%08x\n", esr); in do_sync()
203 void do_irq(struct pt_regs *pt_regs, unsigned int esr) in do_irq() argument
206 printf("\"Irq\" handler, esr 0x%08x\n", esr); in do_irq()
215 void do_fiq(struct pt_regs *pt_regs, unsigned int esr) in do_fiq() argument
218 printf("\"Fiq\" handler, esr 0x%08x\n", esr); in do_fiq()
229 void __weak do_error(struct pt_regs *pt_regs, unsigned int esr) in do_error() argument
233 if (md_no_fault_handler(pt_regs, esr)) { in do_error()
239 printf("\"Error\" handler, esr 0x%08x\n", esr); in do_error()