blob: 406f6f9286f3f9d6fd7f6fc236721914e1110fd2 [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;
63
64extern atomic_t kgdb_setting_breakpoint;
65extern atomic_t kgdb_cpu_doing_single_step;
66
67extern struct task_struct *kgdb_usethread;
68extern struct task_struct *kgdb_contthread;
69
70enum kgdb_bptype {
71 BP_BREAKPOINT = 0,
72 BP_HARDWARE_BREAKPOINT,
73 BP_WRITE_WATCHPOINT,
74 BP_READ_WATCHPOINT,
75 BP_ACCESS_WATCHPOINT
76};
77
78enum kgdb_bpstate {
79 BP_UNDEFINED = 0,
80 BP_REMOVED,
81 BP_SET,
82 BP_ACTIVE
83};
84
85struct kgdb_bkpt {
86 unsigned long bpt_addr;
87 unsigned char saved_instr[BREAK_INSTR_SIZE];
88 enum kgdb_bptype type;
89 enum kgdb_bpstate state;
90};
91
92#ifndef KGDB_MAX_BREAKPOINTS
93# define KGDB_MAX_BREAKPOINTS 1000
94#endif
95
96#define KGDB_HW_BREAKPOINT 1
97
98/*
99 * Functions each KGDB-supporting architecture must provide:
100 */
101
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500102/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200103 * kgdb_arch_init - Perform any architecture specific initalization.
104 *
105 * This function will handle the initalization of any architecture
106 * specific callbacks.
107 */
108extern int kgdb_arch_init(void);
109
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500110/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200111 * kgdb_arch_exit - Perform any architecture specific uninitalization.
112 *
113 * This function will handle the uninitalization of any architecture
114 * specific callbacks, for dynamic registration and unregistration.
115 */
116extern void kgdb_arch_exit(void);
117
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500118/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200119 * pt_regs_to_gdb_regs - Convert ptrace regs to GDB regs
120 * @gdb_regs: A pointer to hold the registers in the order GDB wants.
121 * @regs: The &struct pt_regs of the current process.
122 *
123 * Convert the pt_regs in @regs into the format for registers that
124 * GDB expects, stored in @gdb_regs.
125 */
126extern void pt_regs_to_gdb_regs(unsigned long *gdb_regs, struct pt_regs *regs);
127
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500128/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200129 * sleeping_thread_to_gdb_regs - Convert ptrace regs to GDB regs
130 * @gdb_regs: A pointer to hold the registers in the order GDB wants.
131 * @p: The &struct task_struct of the desired process.
132 *
133 * Convert the register values of the sleeping process in @p to
134 * the format that GDB expects.
135 * This function is called when kgdb does not have access to the
136 * &struct pt_regs and therefore it should fill the gdb registers
137 * @gdb_regs with what has been saved in &struct thread_struct
138 * thread field during switch_to.
139 */
140extern void
141sleeping_thread_to_gdb_regs(unsigned long *gdb_regs, struct task_struct *p);
142
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500143/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200144 * gdb_regs_to_pt_regs - Convert GDB regs to ptrace regs.
145 * @gdb_regs: A pointer to hold the registers we've received from GDB.
146 * @regs: A pointer to a &struct pt_regs to hold these values in.
147 *
148 * Convert the GDB regs in @gdb_regs into the pt_regs, and store them
149 * in @regs.
150 */
151extern void gdb_regs_to_pt_regs(unsigned long *gdb_regs, struct pt_regs *regs);
152
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500153/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200154 * kgdb_arch_handle_exception - Handle architecture specific GDB packets.
155 * @vector: The error vector of the exception that happened.
156 * @signo: The signal number of the exception that happened.
157 * @err_code: The error code of the exception that happened.
158 * @remcom_in_buffer: The buffer of the packet we have read.
159 * @remcom_out_buffer: The buffer of %BUFMAX bytes to write a packet into.
160 * @regs: The &struct pt_regs of the current process.
161 *
162 * This function MUST handle the 'c' and 's' command packets,
163 * as well packets to set / remove a hardware breakpoint, if used.
164 * If there are additional packets which the hardware needs to handle,
165 * they are handled here. The code should return -1 if it wants to
166 * process more packets, and a %0 or %1 if it wants to exit from the
167 * kgdb callback.
168 */
169extern int
170kgdb_arch_handle_exception(int vector, int signo, int err_code,
171 char *remcom_in_buffer,
172 char *remcom_out_buffer,
173 struct pt_regs *regs);
174
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500175/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200176 * kgdb_roundup_cpus - Get other CPUs into a holding pattern
177 * @flags: Current IRQ state
178 *
179 * On SMP systems, we need to get the attention of the other CPUs
Randy Dunlapb11e1ec2010-01-07 11:58:37 -0600180 * and get them into a known state. This should do what is needed
Jason Wesseldc7d5522008-04-17 20:05:37 +0200181 * to get the other CPUs to call kgdb_wait(). Note that on some arches,
182 * the NMI approach is not used for rounding up all the CPUs. For example,
183 * in case of MIPS, smp_call_function() is used to roundup CPUs. In
184 * this case, we have to make sure that interrupts are enabled before
185 * calling smp_call_function(). The argument to this function is
186 * the flags that will be used when restoring the interrupts. There is
187 * local_irq_save() call before kgdb_roundup_cpus().
188 *
189 * On non-SMP systems, this is not called.
190 */
191extern void kgdb_roundup_cpus(unsigned long flags);
192
Jason Wessel84c08fd2010-05-20 21:04:24 -0500193/**
194 * kgdb_arch_set_pc - Generic call back to the program counter
195 * @regs: Current &struct pt_regs.
196 * @pc: The new value for the program counter
197 *
198 * This function handles updating the program counter and requires an
199 * architecture specific implementation.
200 */
201extern void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long pc);
202
203
Jason Wesseldc7d5522008-04-17 20:05:37 +0200204/* Optional functions. */
205extern int kgdb_validate_break_address(unsigned long addr);
206extern int kgdb_arch_set_breakpoint(unsigned long addr, char *saved_instr);
207extern int kgdb_arch_remove_breakpoint(unsigned long addr, char *bundle);
208
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500209/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200210 * struct kgdb_arch - Describe architecture specific values.
211 * @gdb_bpt_instr: The instruction to trigger a breakpoint.
212 * @flags: Flags for the breakpoint, currently just %KGDB_HW_BREAKPOINT.
213 * @set_breakpoint: Allow an architecture to specify how to set a software
214 * breakpoint.
215 * @remove_breakpoint: Allow an architecture to specify how to remove a
216 * software breakpoint.
217 * @set_hw_breakpoint: Allow an architecture to specify how to set a hardware
218 * breakpoint.
219 * @remove_hw_breakpoint: Allow an architecture to specify how to remove a
220 * hardware breakpoint.
221 * @remove_all_hw_break: Allow an architecture to specify how to remove all
222 * hardware breakpoints.
223 * @correct_hw_break: Allow an architecture to specify how to correct the
224 * hardware debug registers.
225 */
226struct kgdb_arch {
227 unsigned char gdb_bpt_instr[BREAK_INSTR_SIZE];
228 unsigned long flags;
229
230 int (*set_breakpoint)(unsigned long, char *);
231 int (*remove_breakpoint)(unsigned long, char *);
232 int (*set_hw_breakpoint)(unsigned long, int, enum kgdb_bptype);
233 int (*remove_hw_breakpoint)(unsigned long, int, enum kgdb_bptype);
234 void (*remove_all_hw_break)(void);
235 void (*correct_hw_break)(void);
236};
237
Jason Wessele3e2aaf2008-03-20 13:43:45 -0500238/**
Jason Wesseldc7d5522008-04-17 20:05:37 +0200239 * struct kgdb_io - Describe the interface for an I/O driver to talk with KGDB.
240 * @name: Name of the I/O driver.
241 * @read_char: Pointer to a function that will return one char.
242 * @write_char: Pointer to a function that will write one char.
243 * @flush: Pointer to a function that will flush any pending writes.
244 * @init: Pointer to a function that will initialize the device.
245 * @pre_exception: Pointer to a function that will do any prep work for
246 * the I/O driver.
247 * @post_exception: Pointer to a function that will do any cleanup work
248 * for the I/O driver.
249 */
250struct kgdb_io {
251 const char *name;
252 int (*read_char) (void);
253 void (*write_char) (u8);
254 void (*flush) (void);
255 int (*init) (void);
256 void (*pre_exception) (void);
257 void (*post_exception) (void);
258};
259
260extern struct kgdb_arch arch_kgdb_ops;
261
Harvey Harrison688b7442008-04-24 16:57:23 -0500262extern unsigned long __weak kgdb_arch_pc(int exception, struct pt_regs *regs);
263
Jason Wesseldc7d5522008-04-17 20:05:37 +0200264extern int kgdb_register_io_module(struct kgdb_io *local_kgdb_io_ops);
265extern void kgdb_unregister_io_module(struct kgdb_io *local_kgdb_io_ops);
Jason Wessel53197fc2010-04-02 11:48:03 -0500266extern struct kgdb_io *dbg_io_ops;
Jason Wesseldc7d5522008-04-17 20:05:37 +0200267
Harvey Harrison688b7442008-04-24 16:57:23 -0500268extern int kgdb_hex2long(char **ptr, unsigned long *long_val);
Jason Wesseldc7d5522008-04-17 20:05:37 +0200269extern int kgdb_mem2hex(char *mem, char *buf, int count);
270extern int kgdb_hex2mem(char *buf, char *mem, int count);
271
272extern int kgdb_isremovedbreak(unsigned long addr);
273
274extern int
275kgdb_handle_exception(int ex_vector, int signo, int err_code,
276 struct pt_regs *regs);
277extern int kgdb_nmicallback(int cpu, void *regs);
278
279extern int kgdb_single_step;
280extern atomic_t kgdb_active;
Jason Wesseldcc78712010-05-20 21:04:21 -0500281#define in_dbg_master() \
282 (raw_smp_processor_id() == atomic_read(&kgdb_active))
283#else /* ! CONFIG_KGDB */
284#define in_dbg_master() (0)
285#endif /* ! CONFIG_KGDB */
Jason Wesseldc7d5522008-04-17 20:05:37 +0200286#endif /* _KGDB_H_ */