kgdb,docs: Update the kgdb docs to include kdb
[deliverable/linux.git] / include / linux / kgdb.h
CommitLineData
dc7d5527
JW
1/*
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>
dc7d5527 19#include <asm/atomic.h>
dcc78711 20#ifdef CONFIG_HAVE_ARCH_KGDB
dc7d5527 21#include <asm/kgdb.h>
dcc78711 22#endif
dc7d5527 23
dcc78711 24#ifdef CONFIG_KGDB
dc7d5527
JW
25struct pt_regs;
26
e3e2aaf7
JW
27/**
28 * kgdb_skipexception - (optional) exit kgdb_handle_exception early
dc7d5527
JW
29 * @exception: Exception vector number
30 * @regs: Current &struct pt_regs.
31 *
e3e2aaf7
JW
32 * On some architectures it is required to skip a breakpoint
33 * exception when it occurs after a breakpoint has been removed.
b11e1eca 34 * This can be implemented in the architecture specific portion of kgdb.
dc7d5527
JW
35 */
36extern int kgdb_skipexception(int exception, struct pt_regs *regs);
37
e3e2aaf7
JW
38/**
39 * kgdb_post_primary_code - (optional) Save error vector/code numbers.
dc7d5527
JW
40 * @regs: Original pt_regs.
41 * @e_vector: Original error vector.
42 * @err_code: Original error code.
43 *
e3e2aaf7
JW
44 * This is usually needed on architectures which support SMP and
45 * KGDB. This function is called after all the secondary cpus have
46 * been put to a know spin state and the primary CPU has control over
47 * KGDB.
dc7d5527
JW
48 */
49extern void kgdb_post_primary_code(struct pt_regs *regs, int e_vector,
50 int err_code);
51
e3e2aaf7
JW
52/**
53 * kgdb_disable_hw_debug - (optional) Disable hardware debugging hook
dc7d5527
JW
54 * @regs: Current &struct pt_regs.
55 *
56 * This function will be called if the particular architecture must
57 * disable hardware debugging while it is processing gdb packets or
58 * handling exception.
59 */
60extern void kgdb_disable_hw_debug(struct pt_regs *regs);
61
62struct tasklet_struct;
63struct task_struct;
64struct uart_port;
65
e3e2aaf7
JW
66/**
67 * kgdb_breakpoint - compiled in breakpoint
68 *
b11e1eca 69 * This will be implemented as a static inline per architecture. This
e3e2aaf7
JW
70 * function is called by the kgdb core to execute an architecture
71 * specific trap to cause kgdb to enter the exception processing.
72 *
73 */
dc7d5527
JW
74void kgdb_breakpoint(void);
75
76extern int kgdb_connected;
77
78extern atomic_t kgdb_setting_breakpoint;
79extern atomic_t kgdb_cpu_doing_single_step;
80
81extern struct task_struct *kgdb_usethread;
82extern struct task_struct *kgdb_contthread;
83
84enum kgdb_bptype {
85 BP_BREAKPOINT = 0,
86 BP_HARDWARE_BREAKPOINT,
87 BP_WRITE_WATCHPOINT,
88 BP_READ_WATCHPOINT,
89 BP_ACCESS_WATCHPOINT
90};
91
92enum kgdb_bpstate {
93 BP_UNDEFINED = 0,
94 BP_REMOVED,
95 BP_SET,
96 BP_ACTIVE
97};
98
99struct kgdb_bkpt {
100 unsigned long bpt_addr;
101 unsigned char saved_instr[BREAK_INSTR_SIZE];
102 enum kgdb_bptype type;
103 enum kgdb_bpstate state;
104};
105
106#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
e3e2aaf7 116/**
dc7d5527
JW
117 * 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
e3e2aaf7 124/**
dc7d5527
JW
125 * 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
e3e2aaf7 132/**
dc7d5527
JW
133 * 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
e3e2aaf7 142/**
dc7d5527
JW
143 * 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
e3e2aaf7 157/**
dc7d5527
JW
158 * 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
e3e2aaf7 167/**
dc7d5527
JW
168 * 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
e3e2aaf7 189/**
dc7d5527
JW
190 * 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
b11e1eca 194 * and get them into a known state. This should do what is needed
dc7d5527
JW
195 * 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
84c08fd6
JW
207/**
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
dc7d5527
JW
218/* 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
e3e2aaf7 223/**
dc7d5527
JW
224 * struct kgdb_arch - Describe architecture specific values.
225 * @gdb_bpt_instr: The instruction to trigger a breakpoint.
226 * @flags: Flags for the breakpoint, currently just %KGDB_HW_BREAKPOINT.
227 * @set_breakpoint: Allow an architecture to specify how to set a software
228 * breakpoint.
229 * @remove_breakpoint: Allow an architecture to specify how to remove a
230 * software breakpoint.
231 * @set_hw_breakpoint: Allow an architecture to specify how to set a hardware
232 * breakpoint.
233 * @remove_hw_breakpoint: Allow an architecture to specify how to remove a
234 * hardware breakpoint.
235 * @remove_all_hw_break: Allow an architecture to specify how to remove all
236 * hardware breakpoints.
237 * @correct_hw_break: Allow an architecture to specify how to correct the
238 * hardware debug registers.
239 */
240struct kgdb_arch {
241 unsigned char gdb_bpt_instr[BREAK_INSTR_SIZE];
242 unsigned long flags;
243
244 int (*set_breakpoint)(unsigned long, char *);
245 int (*remove_breakpoint)(unsigned long, char *);
246 int (*set_hw_breakpoint)(unsigned long, int, enum kgdb_bptype);
247 int (*remove_hw_breakpoint)(unsigned long, int, enum kgdb_bptype);
248 void (*remove_all_hw_break)(void);
249 void (*correct_hw_break)(void);
250};
251
e3e2aaf7 252/**
dc7d5527
JW
253 * struct kgdb_io - Describe the interface for an I/O driver to talk with KGDB.
254 * @name: Name of the I/O driver.
255 * @read_char: Pointer to a function that will return one char.
256 * @write_char: Pointer to a function that will write one char.
257 * @flush: Pointer to a function that will flush any pending writes.
258 * @init: Pointer to a function that will initialize the device.
259 * @pre_exception: Pointer to a function that will do any prep work for
260 * the I/O driver.
261 * @post_exception: Pointer to a function that will do any cleanup work
262 * for the I/O driver.
263 */
264struct kgdb_io {
265 const char *name;
266 int (*read_char) (void);
267 void (*write_char) (u8);
268 void (*flush) (void);
269 int (*init) (void);
270 void (*pre_exception) (void);
271 void (*post_exception) (void);
272};
273
274extern struct kgdb_arch arch_kgdb_ops;
275
688b744d
HH
276extern unsigned long __weak kgdb_arch_pc(int exception, struct pt_regs *regs);
277
dc7d5527
JW
278extern int kgdb_register_io_module(struct kgdb_io *local_kgdb_io_ops);
279extern void kgdb_unregister_io_module(struct kgdb_io *local_kgdb_io_ops);
53197fc4 280extern struct kgdb_io *dbg_io_ops;
dc7d5527 281
688b744d 282extern int kgdb_hex2long(char **ptr, unsigned long *long_val);
dc7d5527
JW
283extern int kgdb_mem2hex(char *mem, char *buf, int count);
284extern int kgdb_hex2mem(char *buf, char *mem, int count);
285
286extern int kgdb_isremovedbreak(unsigned long addr);
287
288extern int
289kgdb_handle_exception(int ex_vector, int signo, int err_code,
290 struct pt_regs *regs);
291extern int kgdb_nmicallback(int cpu, void *regs);
292
293extern int kgdb_single_step;
294extern atomic_t kgdb_active;
dcc78711
JW
295#define in_dbg_master() \
296 (raw_smp_processor_id() == atomic_read(&kgdb_active))
297#else /* ! CONFIG_KGDB */
298#define in_dbg_master() (0)
299#endif /* ! CONFIG_KGDB */
dc7d5527 300#endif /* _KGDB_H_ */
This page took 0.298809 seconds and 5 git commands to generate.