Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 2 | #ifndef _ASM_X86_KGDB_H |
| 3 | #define _ASM_X86_KGDB_H |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 4 | |
| 5 | /* |
| 6 | * Copyright (C) 2001-2004 Amit S. Kale |
| 7 | * Copyright (C) 2008 Wind River Systems, Inc. |
| 8 | */ |
| 9 | |
Andy Lutomirski | 35de5b0 | 2016-04-26 12:23:24 -0700 | [diff] [blame] | 10 | #include <asm/ptrace.h> |
| 11 | |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 12 | /* |
| 13 | * BUFMAX defines the maximum number of characters in inbound/outbound |
| 14 | * buffers at least NUMREGBYTES*2 are needed for register packets |
| 15 | * Longer buffer is needed to list all threads |
| 16 | */ |
| 17 | #define BUFMAX 1024 |
| 18 | |
| 19 | /* |
| 20 | * Note that this register image is in a different order than |
| 21 | * the register image that Linux produces at interrupt time. |
| 22 | * |
| 23 | * Linux's register image is defined by struct pt_regs in ptrace.h. |
| 24 | * Just why GDB uses a different order is a historical mystery. |
| 25 | */ |
| 26 | #ifdef CONFIG_X86_32 |
| 27 | enum regnames { |
| 28 | GDB_AX, /* 0 */ |
| 29 | GDB_CX, /* 1 */ |
| 30 | GDB_DX, /* 2 */ |
| 31 | GDB_BX, /* 3 */ |
| 32 | GDB_SP, /* 4 */ |
| 33 | GDB_BP, /* 5 */ |
| 34 | GDB_SI, /* 6 */ |
| 35 | GDB_DI, /* 7 */ |
| 36 | GDB_PC, /* 8 also known as eip */ |
| 37 | GDB_PS, /* 9 also known as eflags */ |
| 38 | GDB_CS, /* 10 */ |
| 39 | GDB_SS, /* 11 */ |
| 40 | GDB_DS, /* 12 */ |
| 41 | GDB_ES, /* 13 */ |
| 42 | GDB_FS, /* 14 */ |
| 43 | GDB_GS, /* 15 */ |
| 44 | }; |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 45 | #define GDB_ORIG_AX 41 |
| 46 | #define DBG_MAX_REG_NUM 16 |
Jason Wessel | 703a1ed | 2008-09-26 10:36:42 -0500 | [diff] [blame] | 47 | #define NUMREGBYTES ((GDB_GS+1)*4) |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 48 | #else /* ! CONFIG_X86_32 */ |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 49 | enum regnames { |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 50 | GDB_AX, /* 0 */ |
Jason Wessel | 95dbf1d | 2008-09-26 10:36:42 -0500 | [diff] [blame] | 51 | GDB_BX, /* 1 */ |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 52 | GDB_CX, /* 2 */ |
Jason Wessel | 95dbf1d | 2008-09-26 10:36:42 -0500 | [diff] [blame] | 53 | GDB_DX, /* 3 */ |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 54 | GDB_SI, /* 4 */ |
| 55 | GDB_DI, /* 5 */ |
| 56 | GDB_BP, /* 6 */ |
| 57 | GDB_SP, /* 7 */ |
| 58 | GDB_R8, /* 8 */ |
| 59 | GDB_R9, /* 9 */ |
| 60 | GDB_R10, /* 10 */ |
| 61 | GDB_R11, /* 11 */ |
| 62 | GDB_R12, /* 12 */ |
| 63 | GDB_R13, /* 13 */ |
| 64 | GDB_R14, /* 14 */ |
| 65 | GDB_R15, /* 15 */ |
| 66 | GDB_PC, /* 16 */ |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 67 | GDB_PS, /* 17 */ |
| 68 | GDB_CS, /* 18 */ |
| 69 | GDB_SS, /* 19 */ |
Jan Kiszka | 639077f | 2012-03-19 15:16:48 -0500 | [diff] [blame] | 70 | GDB_DS, /* 20 */ |
| 71 | GDB_ES, /* 21 */ |
| 72 | GDB_FS, /* 22 */ |
| 73 | GDB_GS, /* 23 */ |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 74 | }; |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 75 | #define GDB_ORIG_AX 57 |
Jan Kiszka | 639077f | 2012-03-19 15:16:48 -0500 | [diff] [blame] | 76 | #define DBG_MAX_REG_NUM 24 |
| 77 | /* 17 64 bit regs and 5 32 bit regs */ |
| 78 | #define NUMREGBYTES ((17 * 8) + (5 * 4)) |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 79 | #endif /* ! CONFIG_X86_32 */ |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 80 | |
| 81 | static inline void arch_kgdb_breakpoint(void) |
| 82 | { |
| 83 | asm(" int $3"); |
| 84 | } |
| 85 | #define BREAK_INSTR_SIZE 1 |
| 86 | #define CACHE_FLUSH_IS_SAFE 1 |
Mike Frysinger | 63ab25e | 2011-05-26 16:25:45 -0700 | [diff] [blame] | 87 | #define GDB_ADJUSTS_BREAK_OFFSET |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 88 | |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 89 | extern int kgdb_ll_trap(int cmd, const char *str, |
| 90 | struct pt_regs *regs, long err, int trap, int sig); |
| 91 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 92 | #endif /* _ASM_X86_KGDB_H */ |