blob: e465bb15912d98cd1136f985a110bf0347667bd1 [file] [log] [blame]
Jason Wesseldc7d5522008-04-17 20:05:37 +02001/*
2 * This provides the callbacks and functions that KGDB needs to share between
3 * the core, I/O and arch-specific portions.
4 *
5 * Author: Amit Kale <amitkale@linsyssoft.com> and
6 * Tom Rini <trini@kernel.crashing.org>
7 *
8 * 2001-2004 (c) Amit S. Kale and 2003-2005 (c) MontaVista Software, Inc.
9 * This file is licensed under the terms of the GNU General Public License
10 * version 2. This program is licensed "as is" without any warranty of any
11 * kind, whether express or implied.
12 */
13#ifndef _KGDB_H_
14#define _KGDB_H_
15
Jason Wesseldc7d5522008-04-17 20:05:37 +020016#include <linux/linkage.h>
17#include <linux/init.h>
Arun Sharma600634972011-07-26 16:09:06 -070018#include <linux/atomic.h>
Jason Wesseldcc78712010-05-20 21:04:21 -050019#ifdef CONFIG_HAVE_ARCH_KGDB
Jason Wesseldc7d5522008-04-17 20:05:37 +020020#include <asm/kgdb.h>
Jason Wesseldcc78712010-05-20 21:04:21 -050021#endif
Jason Wesseldc7d5522008-04-17 20:05:37 +020022
Jason Wesseldcc78712010-05-20 21:04:21 -050023#ifdef CONFIG_KGDB
Jason Wesseldc7d5522008-04-17 20:05:37 +020024struct pt_regs;
25
Jason Wessele3e2aaf2008-03-20 13:43:45 -050026/**
27 * kgdb_skipexception - (optional) exit kgdb_handle_exception early
Jason Wesseldc7d5522008-04-17 20:05:37 +020028 * @exception: Exception vector number
29 * @regs: Current &struct pt_regs.
30 *
Jason Wessele3e2aaf2008-03-20 13:43:45 -050031 * On some architectures it is required to skip a breakpoint
32 * exception when it occurs after a breakpoint has been removed.
Randy Dunlapb11e1ec2010-01-07 11:58:37 -060033 * This can be implemented in the architecture specific portion of kgdb.
Jason Wesseldc7d5522008-04-17 20:05:37 +020034 */
35extern int kgdb_skipexception(int exception, struct pt_regs *regs);
36
Jason Wesseldc7d5522008-04-17 20:05:37 +020037struct tasklet_struct;
38struct task_struct;
39struct uart_port;
40
Jason Wessele3e2aaf2008-03-20 13:43:45 -050041/**
42 * kgdb_breakpoint - compiled in breakpoint
43 *
Randy Dunlapb11e1ec2010-01-07 11:58:37 -060044 * This will be implemented as a static inline per architecture. This
Jason Wessele3e2aaf2008-03-20 13:43:45 -050045 * function is called by the kgdb core to execute an architecture
46 * specific trap to cause kgdb to enter the exception processing.
47 *
48 */
Jason Wesseldc7d5522008-04-17 20:05:37 +020049void kgdb_breakpoint(void);
50
51extern int kgdb_connected;
Jason Wesself503b5a2010-05-20 21:04:25 -050052extern int kgdb_io_module_registered;
Jason Wesseldc7d5522008-04-17 20:05:37 +020053
54extern atomic_t kgdb_setting_breakpoint;
55extern atomic_t kgdb_cpu_doing_single_step;
56
57extern struct task_struct *kgdb_usethread;
58extern struct task_struct *kgdb_contthread;
59
60enum kgdb_bptype {
61 BP_BREAKPOINT = 0,
62 BP_HARDWARE_BREAKPOINT,
63 BP_WRITE_WATCHPOINT,
64 BP_READ_WATCHPOINT,
Jason Wessel3751d3e2012-03-23 09:35:05 -050065 BP_ACCESS_WATCHPOINT,
66 BP_POKE_BREAKPOINT,
Jason Wesseldc7d5522008-04-17 20:05:37 +020067};
68
69enum kgdb_bpstate {
70 BP_UNDEFINED = 0,
71 BP_REMOVED,
72 BP_SET,
73 BP_ACTIVE
74};
75
76struct kgdb_bkpt {
77 unsigned long bpt_addr;
78 unsigned char saved_instr[BREAK_INSTR_SIZE];
79 enum kgdb_bptype type;
80 enum kgdb_bpstate state;
81};
82
Jason Wessel534af102010-08-05 09:22:20 -050083struct dbg_reg_def_t {
84 char *name;
85 int size;
86 int offset;
87};
88
89#ifndef DBG_MAX_REG_NUM
90#define DBG_MAX_REG_NUM 0
91#else
92extern struct dbg_reg_def_t dbg_reg_def[];
93extern char *dbg_get_reg(int regno, void *mem, struct pt_regs *regs);
94extern int dbg_set_reg(int regno, void *mem, struct pt_regs *regs);
95#endif
Jason Wesseldc7d5522008-04-17 20:05:37 +020096#ifndef KGDB_MAX_BREAKPOINTS
97# define KGDB_MAX_BREAKPOINTS 1000
98#endif
99
100#define KGDB_HW_BREAKPOINT 1
101
102/*
103 * Functions each KGDB-supporting architecture must provide:
104 */
105
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500106/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200107 * kgdb_arch_init - Perform any architecture specific initalization.
108 *
109 * This function will handle the initalization of any architecture
110 * specific callbacks.
111 */
112extern int kgdb_arch_init(void);
113
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500114/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200115 * kgdb_arch_exit - Perform any architecture specific uninitalization.
116 *
117 * This function will handle the uninitalization of any architecture
118 * specific callbacks, for dynamic registration and unregistration.
119 */
120extern void kgdb_arch_exit(void);
121
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500122/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200123 * pt_regs_to_gdb_regs - Convert ptrace regs to GDB regs
124 * @gdb_regs: A pointer to hold the registers in the order GDB wants.
125 * @regs: The &struct pt_regs of the current process.
126 *
127 * Convert the pt_regs in @regs into the format for registers that
128 * GDB expects, stored in @gdb_regs.
129 */
130extern void pt_regs_to_gdb_regs(unsigned long *gdb_regs, struct pt_regs *regs);
131
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500132/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200133 * sleeping_thread_to_gdb_regs - Convert ptrace regs to GDB regs
134 * @gdb_regs: A pointer to hold the registers in the order GDB wants.
135 * @p: The &struct task_struct of the desired process.
136 *
137 * Convert the register values of the sleeping process in @p to
138 * the format that GDB expects.
139 * This function is called when kgdb does not have access to the
140 * &struct pt_regs and therefore it should fill the gdb registers
141 * @gdb_regs with what has been saved in &struct thread_struct
142 * thread field during switch_to.
143 */
144extern void
145sleeping_thread_to_gdb_regs(unsigned long *gdb_regs, struct task_struct *p);
146
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500147/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200148 * gdb_regs_to_pt_regs - Convert GDB regs to ptrace regs.
149 * @gdb_regs: A pointer to hold the registers we've received from GDB.
150 * @regs: A pointer to a &struct pt_regs to hold these values in.
151 *
152 * Convert the GDB regs in @gdb_regs into the pt_regs, and store them
153 * in @regs.
154 */
155extern void gdb_regs_to_pt_regs(unsigned long *gdb_regs, struct pt_regs *regs);
156
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500157/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200158 * kgdb_arch_handle_exception - Handle architecture specific GDB packets.
159 * @vector: The error vector of the exception that happened.
160 * @signo: The signal number of the exception that happened.
161 * @err_code: The error code of the exception that happened.
162 * @remcom_in_buffer: The buffer of the packet we have read.
163 * @remcom_out_buffer: The buffer of %BUFMAX bytes to write a packet into.
164 * @regs: The &struct pt_regs of the current process.
165 *
166 * This function MUST handle the 'c' and 's' command packets,
167 * as well packets to set / remove a hardware breakpoint, if used.
168 * If there are additional packets which the hardware needs to handle,
169 * they are handled here. The code should return -1 if it wants to
170 * process more packets, and a %0 or %1 if it wants to exit from the
171 * kgdb callback.
172 */
173extern int
174kgdb_arch_handle_exception(int vector, int signo, int err_code,
175 char *remcom_in_buffer,
176 char *remcom_out_buffer,
177 struct pt_regs *regs);
178
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500179/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200180 * kgdb_roundup_cpus - Get other CPUs into a holding pattern
181 * @flags: Current IRQ state
182 *
183 * On SMP systems, we need to get the attention of the other CPUs
Randy Dunlapb11e1ec2010-01-07 11:58:37 -0600184 * and get them into a known state. This should do what is needed
Jason Wesseldc7d5522008-04-17 20:05:37 +0200185 * to get the other CPUs to call kgdb_wait(). Note that on some arches,
186 * the NMI approach is not used for rounding up all the CPUs. For example,
187 * in case of MIPS, smp_call_function() is used to roundup CPUs. In
188 * this case, we have to make sure that interrupts are enabled before
189 * calling smp_call_function(). The argument to this function is
190 * the flags that will be used when restoring the interrupts. There is
191 * local_irq_save() call before kgdb_roundup_cpus().
192 *
193 * On non-SMP systems, this is not called.
194 */
195extern void kgdb_roundup_cpus(unsigned long flags);
196
Jason Wessel84c08fd2010-05-20 21:04:24 -0500197/**
198 * kgdb_arch_set_pc - Generic call back to the program counter
199 * @regs: Current &struct pt_regs.
200 * @pc: The new value for the program counter
201 *
202 * This function handles updating the program counter and requires an
203 * architecture specific implementation.
204 */
205extern void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long pc);
206
207
Jason Wesseldc7d5522008-04-17 20:05:37 +0200208/* Optional functions. */
209extern int kgdb_validate_break_address(unsigned long addr);
Jason Wessel98b54aa2012-03-21 10:17:03 -0500210extern int kgdb_arch_set_breakpoint(struct kgdb_bkpt *bpt);
211extern int kgdb_arch_remove_breakpoint(struct kgdb_bkpt *bpt);
Jason Wesseldc7d5522008-04-17 20:05:37 +0200212
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500213/**
Jason Wessel0b4b3822010-05-20 21:04:29 -0500214 * kgdb_arch_late - Perform any architecture specific initalization.
215 *
216 * This function will handle the late initalization of any
217 * architecture specific callbacks. This is an optional function for
218 * handling things like late initialization of hw breakpoints. The
219 * default implementation does nothing.
220 */
221extern void kgdb_arch_late(void);
222
223
224/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200225 * struct kgdb_arch - Describe architecture specific values.
226 * @gdb_bpt_instr: The instruction to trigger a breakpoint.
227 * @flags: Flags for the breakpoint, currently just %KGDB_HW_BREAKPOINT.
228 * @set_breakpoint: Allow an architecture to specify how to set a software
229 * breakpoint.
230 * @remove_breakpoint: Allow an architecture to specify how to remove a
231 * software breakpoint.
232 * @set_hw_breakpoint: Allow an architecture to specify how to set a hardware
233 * breakpoint.
234 * @remove_hw_breakpoint: Allow an architecture to specify how to remove a
235 * hardware breakpoint.
Dongdong Dengd7ba979d2010-08-18 06:02:00 -0500236 * @disable_hw_break: Allow an architecture to specify how to disable
237 * hardware breakpoints for a single cpu.
Jason Wesseldc7d5522008-04-17 20:05:37 +0200238 * @remove_all_hw_break: Allow an architecture to specify how to remove all
239 * hardware breakpoints.
240 * @correct_hw_break: Allow an architecture to specify how to correct the
241 * hardware debug registers.
Anton Vorontsov5a14fea2012-09-24 14:27:50 -0700242 * @enable_nmi: Manage NMI-triggered entry to KGDB
Jason Wesseldc7d5522008-04-17 20:05:37 +0200243 */
244struct kgdb_arch {
245 unsigned char gdb_bpt_instr[BREAK_INSTR_SIZE];
246 unsigned long flags;
247
248 int (*set_breakpoint)(unsigned long, char *);
249 int (*remove_breakpoint)(unsigned long, char *);
250 int (*set_hw_breakpoint)(unsigned long, int, enum kgdb_bptype);
251 int (*remove_hw_breakpoint)(unsigned long, int, enum kgdb_bptype);
Dongdong Dengd7ba979d2010-08-18 06:02:00 -0500252 void (*disable_hw_break)(struct pt_regs *regs);
Jason Wesseldc7d5522008-04-17 20:05:37 +0200253 void (*remove_all_hw_break)(void);
254 void (*correct_hw_break)(void);
Anton Vorontsov5a14fea2012-09-24 14:27:50 -0700255
256 void (*enable_nmi)(bool on);
Jason Wesseldc7d5522008-04-17 20:05:37 +0200257};
258
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500259/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200260 * struct kgdb_io - Describe the interface for an I/O driver to talk with KGDB.
261 * @name: Name of the I/O driver.
262 * @read_char: Pointer to a function that will return one char.
263 * @write_char: Pointer to a function that will write one char.
264 * @flush: Pointer to a function that will flush any pending writes.
265 * @init: Pointer to a function that will initialize the device.
266 * @pre_exception: Pointer to a function that will do any prep work for
267 * the I/O driver.
268 * @post_exception: Pointer to a function that will do any cleanup work
269 * for the I/O driver.
Jason Wesselefe2f292010-05-20 21:04:26 -0500270 * @is_console: 1 if the end device is a console 0 if the I/O device is
271 * not a console
Jason Wesseldc7d5522008-04-17 20:05:37 +0200272 */
273struct kgdb_io {
274 const char *name;
275 int (*read_char) (void);
276 void (*write_char) (u8);
277 void (*flush) (void);
278 int (*init) (void);
279 void (*pre_exception) (void);
280 void (*post_exception) (void);
Jason Wesselefe2f292010-05-20 21:04:26 -0500281 int is_console;
Jason Wesseldc7d5522008-04-17 20:05:37 +0200282};
283
284extern struct kgdb_arch arch_kgdb_ops;
285
Bjorn Helgaas107bcc62014-10-13 19:00:25 -0600286extern unsigned long kgdb_arch_pc(int exception, struct pt_regs *regs);
Harvey Harrison688b7442008-04-24 16:57:23 -0500287
Anton Vorontsov0c57dfc2012-09-24 14:27:56 -0700288#ifdef CONFIG_SERIAL_KGDB_NMI
289extern int kgdb_register_nmi_console(void);
290extern int kgdb_unregister_nmi_console(void);
291extern bool kgdb_nmi_poll_knock(void);
292#else
293static inline int kgdb_register_nmi_console(void) { return 0; }
294static inline int kgdb_unregister_nmi_console(void) { return 0; }
295static inline bool kgdb_nmi_poll_knock(void) { return 1; }
296#endif
297
Jason Wesseldc7d5522008-04-17 20:05:37 +0200298extern int kgdb_register_io_module(struct kgdb_io *local_kgdb_io_ops);
299extern void kgdb_unregister_io_module(struct kgdb_io *local_kgdb_io_ops);
Jason Wessel53197fc2010-04-02 11:48:03 -0500300extern struct kgdb_io *dbg_io_ops;
Jason Wesseldc7d5522008-04-17 20:05:37 +0200301
Harvey Harrison688b7442008-04-24 16:57:23 -0500302extern int kgdb_hex2long(char **ptr, unsigned long *long_val);
Jason Wessel55751142010-08-05 09:22:21 -0500303extern char *kgdb_mem2hex(char *mem, char *buf, int count);
Jason Wesseldc7d5522008-04-17 20:05:37 +0200304extern int kgdb_hex2mem(char *buf, char *mem, int count);
305
306extern int kgdb_isremovedbreak(unsigned long addr);
Jason Wessel1cee5e32009-06-03 14:06:57 -0500307extern void kgdb_schedule_breakpoint(void);
Jason Wesseldc7d5522008-04-17 20:05:37 +0200308
309extern int
310kgdb_handle_exception(int ex_vector, int signo, int err_code,
311 struct pt_regs *regs);
312extern int kgdb_nmicallback(int cpu, void *regs);
Mike Travisfc8b1372014-01-14 10:25:52 -0600313extern int kgdb_nmicallin(int cpu, int trapnr, void *regs, int err_code,
314 atomic_t *snd_rdy);
David Howellsd57f0782011-03-18 16:54:31 +0000315extern void gdbstub_exit(int status);
Jason Wesseldc7d5522008-04-17 20:05:37 +0200316
317extern int kgdb_single_step;
318extern atomic_t kgdb_active;
Jason Wesseldcc78712010-05-20 21:04:21 -0500319#define in_dbg_master() \
320 (raw_smp_processor_id() == atomic_read(&kgdb_active))
Jason Wessel0b4b3822010-05-20 21:04:29 -0500321extern bool dbg_is_early;
322extern void __init dbg_late_init(void);
Jason Wesseldcc78712010-05-20 21:04:21 -0500323#else /* ! CONFIG_KGDB */
324#define in_dbg_master() (0)
Jason Wessel0b4b3822010-05-20 21:04:29 -0500325#define dbg_late_init()
Jason Wesseldcc78712010-05-20 21:04:21 -0500326#endif /* ! CONFIG_KGDB */
Jason Wesseldc7d5522008-04-17 20:05:37 +0200327#endif /* _KGDB_H_ */