Lines Matching refs:esr

81 	printf("* Reason:        Exception from %s\n", esr_bits_ec[REG_BITS(regs->esr, 26, 0x3f)]);  in show_regs()
90 printf("* ESR_EL%d = %016lx\n", el, regs->esr); in show_regs()
123 printf("ESR: %lx (ec=%ld)\n", regs->esr, REG_BITS(regs->esr, 26, 0x3f)); in show_regs()
137 void do_bad_sync(struct pt_regs *pt_regs, unsigned int esr) in do_bad_sync() argument
140 printf("Bad mode in \"Synchronous Abort\" handler, esr 0x%08x\n", esr); in do_bad_sync()
148 void do_bad_irq(struct pt_regs *pt_regs, unsigned int esr) in do_bad_irq() argument
151 printf("Bad mode in \"Irq\" handler, esr 0x%08x\n", esr); in do_bad_irq()
159 void do_bad_fiq(struct pt_regs *pt_regs, unsigned int esr) in do_bad_fiq() argument
162 printf("Bad mode in \"Fiq\" handler, esr 0x%08x\n", esr); in do_bad_fiq()
170 void do_bad_error(struct pt_regs *pt_regs, unsigned int esr) in do_bad_error() argument
173 printf("Bad mode in \"Error\" handler, esr 0x%08x\n", esr); in do_bad_error()
181 void do_sync(struct pt_regs *pt_regs, unsigned int esr) in do_sync() argument
184 printf("\"Synchronous Abort\" handler, esr 0x%08x\n", esr); in do_sync()
193 void do_irq(struct pt_regs *pt_regs, unsigned int esr) in do_irq() argument
196 printf("\"Irq\" handler, esr 0x%08x\n", esr); in do_irq()
205 void do_fiq(struct pt_regs *pt_regs, unsigned int esr) in do_fiq() argument
208 printf("\"Fiq\" handler, esr 0x%08x\n", esr); in do_fiq()
219 void __weak do_error(struct pt_regs *pt_regs, unsigned int esr) in do_error() argument
222 printf("\"Error\" handler, esr 0x%08x\n", esr); in do_error()