blob: cc96f0f23e04a545ffd3dfc7faff7d27fb7d61f1 [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
16#include <linux/serial_8250.h>
17#include <linux/linkage.h>
18#include <linux/init.h>
Jason Wesseldc7d5522008-04-17 20:05:37 +020019#include <asm/atomic.h>
Jason Wesseldcc78712010-05-20 21:04:21 -050020#ifdef CONFIG_HAVE_ARCH_KGDB
Jason Wesseldc7d5522008-04-17 20:05:37 +020021#include <asm/kgdb.h>
Jason Wesseldcc78712010-05-20 21:04:21 -050022#endif
Jason Wesseldc7d5522008-04-17 20:05:37 +020023
Jason Wesseldcc78712010-05-20 21:04:21 -050024#ifdef CONFIG_KGDB
Jason Wesseldc7d5522008-04-17 20:05:37 +020025struct pt_regs;
26
Jason Wessele3e2aaf2008-03-20 13:43:45 -050027/**
28 * kgdb_skipexception - (optional) exit kgdb_handle_exception early
Jason Wesseldc7d5522008-04-17 20:05:37 +020029 * @exception: Exception vector number
30 * @regs: Current &struct pt_regs.
31 *
Jason Wessele3e2aaf2008-03-20 13:43:45 -050032 * On some architectures it is required to skip a breakpoint
33 * exception when it occurs after a breakpoint has been removed.
Randy Dunlapb11e1ec2010-01-07 11:58:37 -060034 * This can be implemented in the architecture specific portion of kgdb.
Jason Wesseldc7d5522008-04-17 20:05:37 +020035 */
36extern int kgdb_skipexception(int exception, struct pt_regs *regs);
37
Jason Wessele3e2aaf2008-03-20 13:43:45 -050038/**
Jason Wessele3e2aaf2008-03-20 13:43:45 -050039 * kgdb_disable_hw_debug - (optional) Disable hardware debugging hook
Jason Wesseldc7d5522008-04-17 20:05:37 +020040 * @regs: Current &struct pt_regs.
41 *
42 * This function will be called if the particular architecture must
43 * disable hardware debugging while it is processing gdb packets or
44 * handling exception.
45 */
46extern void kgdb_disable_hw_debug(struct pt_regs *regs);
47
48struct tasklet_struct;
49struct task_struct;
50struct uart_port;
51
Jason Wessele3e2aaf2008-03-20 13:43:45 -050052/**
53 * kgdb_breakpoint - compiled in breakpoint
54 *
Randy Dunlapb11e1ec2010-01-07 11:58:37 -060055 * This will be implemented as a static inline per architecture. This
Jason Wessele3e2aaf2008-03-20 13:43:45 -050056 * function is called by the kgdb core to execute an architecture
57 * specific trap to cause kgdb to enter the exception processing.
58 *
59 */
Jason Wesseldc7d5522008-04-17 20:05:37 +020060void kgdb_breakpoint(void);
61
62extern int kgdb_connected;
Jason Wesself503b5a2010-05-20 21:04:25 -050063extern int kgdb_io_module_registered;
Jason Wesseldc7d5522008-04-17 20:05:37 +020064
65extern atomic_t kgdb_setting_breakpoint;
66extern atomic_t kgdb_cpu_doing_single_step;
67
68extern struct task_struct *kgdb_usethread;
69extern struct task_struct *kgdb_contthread;
70
71enum kgdb_bptype {
72 BP_BREAKPOINT = 0,
73 BP_HARDWARE_BREAKPOINT,
74 BP_WRITE_WATCHPOINT,
75 BP_READ_WATCHPOINT,
76 BP_ACCESS_WATCHPOINT
77};
78
79enum kgdb_bpstate {
80 BP_UNDEFINED = 0,
81 BP_REMOVED,
82 BP_SET,
83 BP_ACTIVE
84};
85
86struct kgdb_bkpt {
87 unsigned long bpt_addr;
88 unsigned char saved_instr[BREAK_INSTR_SIZE];
89 enum kgdb_bptype type;
90 enum kgdb_bpstate state;
91};
92
Jason Wessel534af102010-08-05 09:22:20 -050093struct dbg_reg_def_t {
94 char *name;
95 int size;
96 int offset;
97};
98
99#ifndef DBG_MAX_REG_NUM
100#define DBG_MAX_REG_NUM 0
101#else
102extern struct dbg_reg_def_t dbg_reg_def[];
103extern char *dbg_get_reg(int regno, void *mem, struct pt_regs *regs);
104extern int dbg_set_reg(int regno, void *mem, struct pt_regs *regs);
105#endif
Jason Wesseldc7d5522008-04-17 20:05:37 +0200106#ifndef KGDB_MAX_BREAKPOINTS
107# define KGDB_MAX_BREAKPOINTS 1000
108#endif
109
110#define KGDB_HW_BREAKPOINT 1
111
112/*
113 * Functions each KGDB-supporting architecture must provide:
114 */
115
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500116/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200117 * kgdb_arch_init - Perform any architecture specific initalization.
118 *
119 * This function will handle the initalization of any architecture
120 * specific callbacks.
121 */
122extern int kgdb_arch_init(void);
123
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500124/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200125 * kgdb_arch_exit - Perform any architecture specific uninitalization.
126 *
127 * This function will handle the uninitalization of any architecture
128 * specific callbacks, for dynamic registration and unregistration.
129 */
130extern void kgdb_arch_exit(void);
131
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500132/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200133 * pt_regs_to_gdb_regs - Convert ptrace regs to GDB regs
134 * @gdb_regs: A pointer to hold the registers in the order GDB wants.
135 * @regs: The &struct pt_regs of the current process.
136 *
137 * Convert the pt_regs in @regs into the format for registers that
138 * GDB expects, stored in @gdb_regs.
139 */
140extern void pt_regs_to_gdb_regs(unsigned long *gdb_regs, struct pt_regs *regs);
141
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500142/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200143 * sleeping_thread_to_gdb_regs - Convert ptrace regs to GDB regs
144 * @gdb_regs: A pointer to hold the registers in the order GDB wants.
145 * @p: The &struct task_struct of the desired process.
146 *
147 * Convert the register values of the sleeping process in @p to
148 * the format that GDB expects.
149 * This function is called when kgdb does not have access to the
150 * &struct pt_regs and therefore it should fill the gdb registers
151 * @gdb_regs with what has been saved in &struct thread_struct
152 * thread field during switch_to.
153 */
154extern void
155sleeping_thread_to_gdb_regs(unsigned long *gdb_regs, struct task_struct *p);
156
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500157/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200158 * gdb_regs_to_pt_regs - Convert GDB regs to ptrace regs.
159 * @gdb_regs: A pointer to hold the registers we've received from GDB.
160 * @regs: A pointer to a &struct pt_regs to hold these values in.
161 *
162 * Convert the GDB regs in @gdb_regs into the pt_regs, and store them
163 * in @regs.
164 */
165extern void gdb_regs_to_pt_regs(unsigned long *gdb_regs, struct pt_regs *regs);
166
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500167/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200168 * kgdb_arch_handle_exception - Handle architecture specific GDB packets.
169 * @vector: The error vector of the exception that happened.
170 * @signo: The signal number of the exception that happened.
171 * @err_code: The error code of the exception that happened.
172 * @remcom_in_buffer: The buffer of the packet we have read.
173 * @remcom_out_buffer: The buffer of %BUFMAX bytes to write a packet into.
174 * @regs: The &struct pt_regs of the current process.
175 *
176 * This function MUST handle the 'c' and 's' command packets,
177 * as well packets to set / remove a hardware breakpoint, if used.
178 * If there are additional packets which the hardware needs to handle,
179 * they are handled here. The code should return -1 if it wants to
180 * process more packets, and a %0 or %1 if it wants to exit from the
181 * kgdb callback.
182 */
183extern int
184kgdb_arch_handle_exception(int vector, int signo, int err_code,
185 char *remcom_in_buffer,
186 char *remcom_out_buffer,
187 struct pt_regs *regs);
188
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500189/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200190 * kgdb_roundup_cpus - Get other CPUs into a holding pattern
191 * @flags: Current IRQ state
192 *
193 * On SMP systems, we need to get the attention of the other CPUs
Randy Dunlapb11e1ec2010-01-07 11:58:37 -0600194 * and get them into a known state. This should do what is needed
Jason Wesseldc7d5522008-04-17 20:05:37 +0200195 * to get the other CPUs to call kgdb_wait(). Note that on some arches,
196 * the NMI approach is not used for rounding up all the CPUs. For example,
197 * in case of MIPS, smp_call_function() is used to roundup CPUs. In
198 * this case, we have to make sure that interrupts are enabled before
199 * calling smp_call_function(). The argument to this function is
200 * the flags that will be used when restoring the interrupts. There is
201 * local_irq_save() call before kgdb_roundup_cpus().
202 *
203 * On non-SMP systems, this is not called.
204 */
205extern void kgdb_roundup_cpus(unsigned long flags);
206
Jason Wessel84c08fd2010-05-20 21:04:24 -0500207/**
208 * kgdb_arch_set_pc - Generic call back to the program counter
209 * @regs: Current &struct pt_regs.
210 * @pc: The new value for the program counter
211 *
212 * This function handles updating the program counter and requires an
213 * architecture specific implementation.
214 */
215extern void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long pc);
216
217
Jason Wesseldc7d5522008-04-17 20:05:37 +0200218/* Optional functions. */
219extern int kgdb_validate_break_address(unsigned long addr);
220extern int kgdb_arch_set_breakpoint(unsigned long addr, char *saved_instr);
221extern int kgdb_arch_remove_breakpoint(unsigned long addr, char *bundle);
222
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500223/**
Jason Wessel0b4b3822010-05-20 21:04:29 -0500224 * kgdb_arch_late - Perform any architecture specific initalization.
225 *
226 * This function will handle the late initalization of any
227 * architecture specific callbacks. This is an optional function for
228 * handling things like late initialization of hw breakpoints. The
229 * default implementation does nothing.
230 */
231extern void kgdb_arch_late(void);
232
233
234/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200235 * struct kgdb_arch - Describe architecture specific values.
236 * @gdb_bpt_instr: The instruction to trigger a breakpoint.
237 * @flags: Flags for the breakpoint, currently just %KGDB_HW_BREAKPOINT.
238 * @set_breakpoint: Allow an architecture to specify how to set a software
239 * breakpoint.
240 * @remove_breakpoint: Allow an architecture to specify how to remove a
241 * software breakpoint.
242 * @set_hw_breakpoint: Allow an architecture to specify how to set a hardware
243 * breakpoint.
244 * @remove_hw_breakpoint: Allow an architecture to specify how to remove a
245 * hardware breakpoint.
246 * @remove_all_hw_break: Allow an architecture to specify how to remove all
247 * hardware breakpoints.
248 * @correct_hw_break: Allow an architecture to specify how to correct the
249 * hardware debug registers.
250 */
251struct kgdb_arch {
252 unsigned char gdb_bpt_instr[BREAK_INSTR_SIZE];
253 unsigned long flags;
254
255 int (*set_breakpoint)(unsigned long, char *);
256 int (*remove_breakpoint)(unsigned long, char *);
257 int (*set_hw_breakpoint)(unsigned long, int, enum kgdb_bptype);
258 int (*remove_hw_breakpoint)(unsigned long, int, enum kgdb_bptype);
259 void (*remove_all_hw_break)(void);
260 void (*correct_hw_break)(void);
261};
262
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500263/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200264 * struct kgdb_io - Describe the interface for an I/O driver to talk with KGDB.
265 * @name: Name of the I/O driver.
266 * @read_char: Pointer to a function that will return one char.
267 * @write_char: Pointer to a function that will write one char.
268 * @flush: Pointer to a function that will flush any pending writes.
269 * @init: Pointer to a function that will initialize the device.
270 * @pre_exception: Pointer to a function that will do any prep work for
271 * the I/O driver.
272 * @post_exception: Pointer to a function that will do any cleanup work
273 * for the I/O driver.
Jason Wesselefe2f292010-05-20 21:04:26 -0500274 * @is_console: 1 if the end device is a console 0 if the I/O device is
275 * not a console
Jason Wesseldc7d5522008-04-17 20:05:37 +0200276 */
277struct kgdb_io {
278 const char *name;
279 int (*read_char) (void);
280 void (*write_char) (u8);
281 void (*flush) (void);
282 int (*init) (void);
283 void (*pre_exception) (void);
284 void (*post_exception) (void);
Jason Wesselefe2f292010-05-20 21:04:26 -0500285 int is_console;
Jason Wesseldc7d5522008-04-17 20:05:37 +0200286};
287
288extern struct kgdb_arch arch_kgdb_ops;
289
Harvey Harrison688b7442008-04-24 16:57:23 -0500290extern unsigned long __weak kgdb_arch_pc(int exception, struct pt_regs *regs);
291
Jason Wesseldc7d5522008-04-17 20:05:37 +0200292extern int kgdb_register_io_module(struct kgdb_io *local_kgdb_io_ops);
293extern void kgdb_unregister_io_module(struct kgdb_io *local_kgdb_io_ops);
Jason Wessel53197fc2010-04-02 11:48:03 -0500294extern struct kgdb_io *dbg_io_ops;
Jason Wesseldc7d5522008-04-17 20:05:37 +0200295
Harvey Harrison688b7442008-04-24 16:57:23 -0500296extern int kgdb_hex2long(char **ptr, unsigned long *long_val);
Jason Wessel55751142010-08-05 09:22:21 -0500297extern char *kgdb_mem2hex(char *mem, char *buf, int count);
Jason Wesseldc7d5522008-04-17 20:05:37 +0200298extern int kgdb_hex2mem(char *buf, char *mem, int count);
299
300extern int kgdb_isremovedbreak(unsigned long addr);
Jason Wessel1cee5e32009-06-03 14:06:57 -0500301extern void kgdb_schedule_breakpoint(void);
Jason Wesseldc7d5522008-04-17 20:05:37 +0200302
303extern int
304kgdb_handle_exception(int ex_vector, int signo, int err_code,
305 struct pt_regs *regs);
306extern int kgdb_nmicallback(int cpu, void *regs);
307
308extern int kgdb_single_step;
309extern atomic_t kgdb_active;
Jason Wesseldcc78712010-05-20 21:04:21 -0500310#define in_dbg_master() \
311 (raw_smp_processor_id() == atomic_read(&kgdb_active))
Jason Wessel0b4b3822010-05-20 21:04:29 -0500312extern bool dbg_is_early;
313extern void __init dbg_late_init(void);
Jason Wesseldcc78712010-05-20 21:04:21 -0500314#else /* ! CONFIG_KGDB */
315#define in_dbg_master() (0)
Jason Wessel0b4b3822010-05-20 21:04:29 -0500316#define dbg_late_init()
Jason Wesseldcc78712010-05-20 21:04:21 -0500317#endif /* ! CONFIG_KGDB */
Jason Wesseldc7d5522008-04-17 20:05:37 +0200318#endif /* _KGDB_H_ */