| /rk3399_rockchip-uboot/arch/mips/lib/ |
| H A D | asm-offsets.c | 21 OFFSET(PT_R0, pt_regs, regs[0]); in output_ptreg_defines() 22 OFFSET(PT_R1, pt_regs, regs[1]); in output_ptreg_defines() 23 OFFSET(PT_R2, pt_regs, regs[2]); in output_ptreg_defines() 24 OFFSET(PT_R3, pt_regs, regs[3]); in output_ptreg_defines() 25 OFFSET(PT_R4, pt_regs, regs[4]); in output_ptreg_defines() 26 OFFSET(PT_R5, pt_regs, regs[5]); in output_ptreg_defines() 27 OFFSET(PT_R6, pt_regs, regs[6]); in output_ptreg_defines() 28 OFFSET(PT_R7, pt_regs, regs[7]); in output_ptreg_defines() 29 OFFSET(PT_R8, pt_regs, regs[8]); in output_ptreg_defines() 30 OFFSET(PT_R9, pt_regs, regs[9]); in output_ptreg_defines() [all …]
|
| H A D | traps.c | 21 static void show_regs(const struct pt_regs *regs) in show_regs() 68 void do_reserved(const struct pt_regs *regs) in do_reserved() 75 void do_ejtag_debug(const struct pt_regs *regs) in do_ejtag_debug()
|
| /rk3399_rockchip-uboot/arch/arm/lib/ |
| H A D | interrupts.c | 58 void show_regs (struct pt_regs *regs) in show_regs() 113 static inline void fixup_pc(struct pt_regs *regs, int offset) in fixup_pc() 119 void do_undefined_instruction (struct pt_regs *pt_regs) in do_undefined_instruction() argument 123 fixup_pc(pt_regs, -4); in do_undefined_instruction() 124 show_regs (pt_regs); in do_undefined_instruction() 128 void do_software_interrupt (struct pt_regs *pt_regs) in do_software_interrupt() argument 132 fixup_pc(pt_regs, -4); in do_software_interrupt() 133 show_regs (pt_regs); in do_software_interrupt() 137 void do_prefetch_abort (struct pt_regs *pt_regs) in do_prefetch_abort() argument 141 fixup_pc(pt_regs, -8); in do_prefetch_abort() [all …]
|
| H A D | interrupts_64.c | 39 void show_regs(struct pt_regs *regs) in show_regs() 114 void show_regs(struct pt_regs *regs) in show_regs() 140 void do_bad_sync(struct pt_regs *pt_regs, unsigned int esr) in do_bad_sync() argument 144 show_regs(pt_regs); in do_bad_sync() 151 void do_bad_irq(struct pt_regs *pt_regs, unsigned int esr) in do_bad_irq() argument 155 show_regs(pt_regs); in do_bad_irq() 162 void do_bad_fiq(struct pt_regs *pt_regs, unsigned int esr) in do_bad_fiq() argument 166 show_regs(pt_regs); in do_bad_fiq() 173 void do_bad_error(struct pt_regs *pt_regs, unsigned int esr) in do_bad_error() argument 177 show_regs(pt_regs); in do_bad_error() [all …]
|
| /rk3399_rockchip-uboot/arch/arm/include/asm/ |
| H A D | u-boot-arm.h | 50 struct pt_regs; 53 void do_undefined_instruction(struct pt_regs *pt_regs); 54 void do_software_interrupt(struct pt_regs *pt_regs); 55 void do_prefetch_abort(struct pt_regs *pt_regs); 56 void do_data_abort(struct pt_regs *pt_regs); 57 void do_not_used(struct pt_regs *pt_regs); 59 void do_fiq(struct pt_regs *pt_regs, unsigned int esr); 60 void do_irq(struct pt_regs *pt_regs, unsigned int esr); 62 void do_fiq(struct pt_regs *pt_regs); 63 void do_irq(struct pt_regs *pt_regswq);
|
| /rk3399_rockchip-uboot/arch/arc/lib/ |
| H A D | interrupts.c | 62 void show_regs(struct pt_regs *regs) in show_regs() 76 void bad_mode(struct pt_regs *regs) in bad_mode() 84 void do_memory_error(unsigned long address, struct pt_regs *regs) in do_memory_error() 90 void do_instruction_error(unsigned long address, struct pt_regs *regs) in do_instruction_error() 96 void do_machine_check_fault(unsigned long address, struct pt_regs *regs) in do_machine_check_fault() 108 void do_itlb_miss(struct pt_regs *regs) in do_itlb_miss() 114 void do_dtlb_miss(struct pt_regs *regs) in do_dtlb_miss() 120 void do_tlb_prot_violation(unsigned long address, struct pt_regs *regs) in do_tlb_prot_violation() 127 void do_privilege_violation(struct pt_regs *regs) in do_privilege_violation() 133 void do_trap(struct pt_regs *regs) in do_trap() [all …]
|
| /rk3399_rockchip-uboot/include/ |
| H A D | kgdb.h | 52 extern void kgdb_enter(struct pt_regs *, kgdb_data *); 53 extern void kgdb_exit(struct pt_regs *, kgdb_data *); 54 extern int kgdb_getregs(struct pt_regs *, char *, int); 55 extern void kgdb_putreg(struct pt_regs *, int, char *, int); 56 extern void kgdb_putregs(struct pt_regs *, char *, int); 57 extern int kgdb_trap(struct pt_regs *); 68 extern int (*debugger_exception_handler)(struct pt_regs *);
|
| H A D | rk_mini_dump.h | 38 u32 md_no_fault_handler(struct pt_regs *pt_regs, unsigned int esr);
|
| /rk3399_rockchip-uboot/arch/mips/include/asm/ |
| H A D | ptrace.h | 21 struct pt_regs { struct 47 static inline unsigned long kernel_stack_pointer(struct pt_regs *regs) in kernel_stack_pointer() argument 57 static inline void instruction_pointer_set(struct pt_regs *regs, in instruction_pointer_set() 65 #define MAX_REG_OFFSET (offsetof(struct pt_regs, __last)) 76 static inline unsigned long regs_get_register(struct pt_regs *regs, in regs_get_register() 95 static inline unsigned long user_stack_pointer(struct pt_regs *regs) in user_stack_pointer() 100 static inline void user_stack_pointer_set(struct pt_regs *regs, in user_stack_pointer_set()
|
| /rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/ |
| H A D | traps.c | 55 static void show_regs(struct pt_regs *regs) in show_regs() 79 static void _exception(int signr, struct pt_regs *regs) in _exception() 86 void MachineCheckException(struct pt_regs *regs) in MachineCheckException() 124 void AlignmentException(struct pt_regs *regs) in AlignmentException() 131 void ProgramCheckException(struct pt_regs *regs) in ProgramCheckException() 138 void SoftEmuException(struct pt_regs *regs) in SoftEmuException() 146 void UnknownException(struct pt_regs *regs) in UnknownException() 153 void DebugException(struct pt_regs *regs) in DebugException()
|
| /rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/ |
| H A D | traps.c | 52 void show_regs(struct pt_regs *regs) in show_regs() 78 static void _exception(int signr, struct pt_regs *regs) in _exception() 102 void MachineCheckException(struct pt_regs *regs) in MachineCheckException() 161 void AlignmentException(struct pt_regs *regs) in AlignmentException() 172 void ProgramCheckException(struct pt_regs *regs) in ProgramCheckException() 183 void SoftEmuException(struct pt_regs *regs) in SoftEmuException() 195 void UnknownException(struct pt_regs *regs) in UnknownException() 207 extern void do_bedbug_breakpoint(struct pt_regs *); 210 void DebugException(struct pt_regs *regs) in DebugException()
|
| H A D | interrupts.c | 39 void external_interrupt (struct pt_regs *regs) in external_interrupt() 59 void timer_interrupt_cpu (struct pt_regs *regs) in timer_interrupt_cpu()
|
| /rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/ |
| H A D | traps.c | 61 extern void do_bedbug_breakpoint(struct pt_regs *); 88 void show_regs(struct pt_regs *regs) in show_regs() 116 static void _exception(int signr, struct pt_regs *regs) in _exception() 123 void CritcalInputException(struct pt_regs *regs) in CritcalInputException() 130 void MachineCheckException(struct pt_regs *regs) in MachineCheckException() 202 void AlignmentException(struct pt_regs *regs) in AlignmentException() 214 void ProgramCheckException(struct pt_regs *regs) in ProgramCheckException() 237 void PITException(struct pt_regs *regs) in PITException() 250 void UnknownException(struct pt_regs *regs) in UnknownException() 262 void ExtIntException(struct pt_regs *regs) in ExtIntException() [all …]
|
| /rk3399_rockchip-uboot/include/bedbug/ |
| H A D | type.h | 8 void do_bedbug_breakpoint (struct pt_regs *); 9 void bedbug_main_loop (unsigned long, struct pt_regs *); 16 struct pt_regs *regs; 19 void (*break_isr) (struct pt_regs *);
|
| /rk3399_rockchip-uboot/arch/sh/include/asm/ |
| H A D | ptrace.h | 52 struct pt_regs { struct 90 extern void show_regs(struct pt_regs *); 94 ((struct pt_regs *) (task_stack_page(task) + THREAD_SIZE \ 98 ((struct pt_regs *) (task_stack_page(task) + THREAD_SIZE \ 102 static inline unsigned long profile_pc(struct pt_regs *regs) in profile_pc()
|
| /rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/ |
| H A D | traps.c | 59 void show_regs(struct pt_regs *regs) in show_regs() 87 static void _exception(int signr, struct pt_regs *regs) in _exception() 94 void MachineCheckException(struct pt_regs *regs) in MachineCheckException() 140 void AlignmentException(struct pt_regs *regs) in AlignmentException() 151 void ProgramCheckException(struct pt_regs *regs) in ProgramCheckException() 176 void SoftEmuException(struct pt_regs *regs) in SoftEmuException() 187 void UnknownException(struct pt_regs *regs) in UnknownException()
|
| /rk3399_rockchip-uboot/board/cavium/thunderx/ |
| H A D | atf.c | 23 struct pt_regs regs; in atf_read_mmc() 36 struct pt_regs regs; in atf_read_nor() 49 struct pt_regs regs; in atf_get_pcount() 59 struct pt_regs regs; in atf_get_part() 71 struct pt_regs regs; in atf_erase_nor() 83 struct pt_regs regs; in atf_write_nor() 97 struct pt_regs regs; in atf_write_mmc() 111 struct pt_regs regs; in atf_dram_size() 122 struct pt_regs regs; in atf_node_count() 132 struct pt_regs regs; in atf_env_count() [all …]
|
| /rk3399_rockchip-uboot/arch/arm/cpu/armv8/ |
| H A D | fwcall.c | 22 static void __efi_runtime hvc_call(struct pt_regs *args) in hvc_call() 56 void __efi_runtime smc_call(struct pt_regs *args) in smc_call() 90 struct pt_regs regs; in psci_system_reset() 105 struct pt_regs regs; in psci_system_off()
|
| /rk3399_rockchip-uboot/arch/nds32/lib/ |
| H A D | interrupts.c | 71 void show_regs(struct pt_regs *regs) in show_regs() 100 void do_interruption(struct pt_regs *pt_regs, int EVIC_num) in do_interruption() argument 115 show_regs(pt_regs); in do_interruption()
|
| /rk3399_rockchip-uboot/arch/powerpc/lib/ |
| H A D | kgdb.c | 80 kgdb_enter(struct pt_regs *regs, kgdb_data *kdp) in kgdb_enter() 106 kgdb_exit(struct pt_regs *regs, kgdb_data *kdp) in kgdb_exit() 130 kgdb_trap(struct pt_regs *regs) in kgdb_trap() 149 kgdb_getregs(struct pt_regs *regs, char *buf, int max) in kgdb_getregs() 183 kgdb_putreg(struct pt_regs *regs, int regno, char *buf, int length) in kgdb_putreg() 217 kgdb_putregs(struct pt_regs *regs, char *buf, int length) in kgdb_putregs()
|
| /rk3399_rockchip-uboot/arch/sandbox/include/asm/ |
| H A D | ptrace.h | 12 struct pt_regs { struct 16 extern void show_regs(struct pt_regs *);
|
| /rk3399_rockchip-uboot/arch/nios2/cpu/ |
| H A D | traps.c | 11 void trap_handler (struct pt_regs *regs) in trap_handler() 18 void soft_emulation (struct pt_regs *regs) in soft_emulation()
|
| /rk3399_rockchip-uboot/arch/xtensa/include/asm/ |
| H A D | ptrace.h | 85 struct pt_regs { struct 114 # define task_pt_regs(tsk) ((struct pt_regs *) \ argument 118 void show_regs(struct pt_regs *);
|
| /rk3399_rockchip-uboot/arch/xtensa/cpu/ |
| H A D | exceptions.c | 19 typedef void (*handler_t)(struct pt_regs *); 21 void unhandled_exception(struct pt_regs *regs) in unhandled_exception()
|
| /rk3399_rockchip-uboot/arch/arm/include/asm/proc-armv/ |
| H A D | ptrace.h | 23 struct pt_regs { struct 74 struct pt_regs { struct 124 static inline int valid_user_regs(struct pt_regs *regs) in valid_user_regs()
|