Lines Matching refs:esr
47 void do_bad_sync(struct pt_regs *pt_regs, unsigned int esr) in do_bad_sync() argument
50 printf("Bad mode in \"Synchronous Abort\" handler, esr 0x%08x\n", esr); in do_bad_sync()
58 void do_bad_irq(struct pt_regs *pt_regs, unsigned int esr) in do_bad_irq() argument
61 printf("Bad mode in \"Irq\" handler, esr 0x%08x\n", esr); in do_bad_irq()
69 void do_bad_fiq(struct pt_regs *pt_regs, unsigned int esr) in do_bad_fiq() argument
72 printf("Bad mode in \"Fiq\" handler, esr 0x%08x\n", esr); in do_bad_fiq()
80 void do_bad_error(struct pt_regs *pt_regs, unsigned int esr) in do_bad_error() argument
83 printf("Bad mode in \"Error\" handler, esr 0x%08x\n", esr); in do_bad_error()
91 void do_sync(struct pt_regs *pt_regs, unsigned int esr) in do_sync() argument
94 printf("\"Synchronous Abort\" handler, esr 0x%08x\n", esr); in do_sync()
102 void do_irq(struct pt_regs *pt_regs, unsigned int esr) in do_irq() argument
105 printf("\"Irq\" handler, esr 0x%08x\n", esr); in do_irq()
113 void do_fiq(struct pt_regs *pt_regs, unsigned int esr) in do_fiq() argument
116 printf("\"Fiq\" handler, esr 0x%08x\n", esr); in do_fiq()
127 void __weak do_error(struct pt_regs *pt_regs, unsigned int esr) in do_error() argument
130 printf("\"Error\" handler, esr 0x%08x\n", esr); in do_error()