Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 2 | #ifndef __ASM_KGDB_H_ |
| 3 | #define __ASM_KGDB_H_ |
| 4 | |
| 5 | #ifdef __KERNEL__ |
| 6 | |
| 7 | #include <asm/sgidefs.h> |
| 8 | |
| 9 | #if (_MIPS_ISA == _MIPS_ISA_MIPS1) || (_MIPS_ISA == _MIPS_ISA_MIPS2) || \ |
| 10 | (_MIPS_ISA == _MIPS_ISA_MIPS32) |
| 11 | |
Jason Wessel | 0896a9b | 2010-08-05 09:22:21 -0500 | [diff] [blame] | 12 | #define KGDB_GDB_REG_SIZE 32 |
| 13 | #define GDB_SIZEOF_REG sizeof(u32) |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 14 | |
| 15 | #elif (_MIPS_ISA == _MIPS_ISA_MIPS3) || (_MIPS_ISA == _MIPS_ISA_MIPS4) || \ |
| 16 | (_MIPS_ISA == _MIPS_ISA_MIPS64) |
| 17 | |
| 18 | #ifdef CONFIG_32BIT |
Jason Wessel | 0896a9b | 2010-08-05 09:22:21 -0500 | [diff] [blame] | 19 | #define KGDB_GDB_REG_SIZE 32 |
| 20 | #define GDB_SIZEOF_REG sizeof(u32) |
Lukas Bulwahn | 301e499 | 2021-12-13 12:16:38 +0100 | [diff] [blame] | 21 | #else /* CONFIG_32BIT */ |
Jason Wessel | 0896a9b | 2010-08-05 09:22:21 -0500 | [diff] [blame] | 22 | #define KGDB_GDB_REG_SIZE 64 |
| 23 | #define GDB_SIZEOF_REG sizeof(u64) |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 24 | #endif |
| 25 | #else |
| 26 | #error "Need to set KGDB_GDB_REG_SIZE for MIPS ISA" |
| 27 | #endif /* _MIPS_ISA */ |
| 28 | |
| 29 | #define BUFMAX 2048 |
Jason Wessel | 0896a9b | 2010-08-05 09:22:21 -0500 | [diff] [blame] | 30 | #define DBG_MAX_REG_NUM 72 |
| 31 | #define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG)) |
| 32 | #define NUMCRITREGBYTES (12 * sizeof(GDB_SIZEOF_REG)) |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 33 | #define BREAK_INSTR_SIZE 4 |
| 34 | #define CACHE_FLUSH_IS_SAFE 0 |
| 35 | |
| 36 | extern void arch_kgdb_breakpoint(void); |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 37 | extern void *saved_vectors[32]; |
| 38 | extern void handle_exception(struct pt_regs *regs); |
| 39 | extern void breakinst(void); |
Jason Wessel | 5dd11d5 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 40 | extern int kgdb_ll_trap(int cmd, const char *str, |
| 41 | struct pt_regs *regs, long err, int trap, int sig); |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 42 | |
| 43 | #endif /* __KERNEL__ */ |
| 44 | |
| 45 | #endif /* __ASM_KGDB_H_ */ |