2 * This provides the callbacks and functions that KGDB needs to share between
3 * the core, I/O and arch-specific portions.
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.
16 #include <linux/linkage.h>
17 #include <linux/init.h>
18 #include <linux/atomic.h>
19 #ifdef CONFIG_HAVE_ARCH_KGDB
27 * kgdb_skipexception - (optional) exit kgdb_handle_exception early
28 * @exception: Exception vector number
29 * @regs: Current &struct pt_regs.
31 * On some architectures it is required to skip a breakpoint
32 * exception when it occurs after a breakpoint has been removed.
33 * This can be implemented in the architecture specific portion of kgdb.
35 extern int kgdb_skipexception(int exception, struct pt_regs *regs);
37 struct tasklet_struct;
42 * kgdb_breakpoint - compiled in breakpoint
44 * This will be implemented as a static inline per architecture. This
45 * function is called by the kgdb core to execute an architecture
46 * specific trap to cause kgdb to enter the exception processing.
49 void kgdb_breakpoint(void);
51 extern int kgdb_connected;
52 extern int kgdb_io_module_registered;
54 extern atomic_t kgdb_setting_breakpoint;
55 extern atomic_t kgdb_cpu_doing_single_step;
57 extern struct task_struct *kgdb_usethread;
58 extern struct task_struct *kgdb_contthread;
62 BP_HARDWARE_BREAKPOINT,
77 unsigned long bpt_addr;
78 unsigned char saved_instr[BREAK_INSTR_SIZE];
79 enum kgdb_bptype type;
80 enum kgdb_bpstate state;
83 struct dbg_reg_def_t {
89 #ifndef DBG_MAX_REG_NUM
90 #define DBG_MAX_REG_NUM 0
92 extern struct dbg_reg_def_t dbg_reg_def[];
93 extern char *dbg_get_reg(int regno, void *mem, struct pt_regs *regs);
94 extern int dbg_set_reg(int regno, void *mem, struct pt_regs *regs);
96 #ifndef KGDB_MAX_BREAKPOINTS
97 # define KGDB_MAX_BREAKPOINTS 1000
100 #define KGDB_HW_BREAKPOINT 1
103 * Functions each KGDB-supporting architecture must provide:
107 * kgdb_arch_init - Perform any architecture specific initalization.
109 * This function will handle the initalization of any architecture
110 * specific callbacks.
112 extern int kgdb_arch_init(void);
115 * kgdb_arch_exit - Perform any architecture specific uninitalization.
117 * This function will handle the uninitalization of any architecture
118 * specific callbacks, for dynamic registration and unregistration.
120 extern void kgdb_arch_exit(void);
123 * 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.
127 * Convert the pt_regs in @regs into the format for registers that
128 * GDB expects, stored in @gdb_regs.
130 extern void pt_regs_to_gdb_regs(unsigned long *gdb_regs, struct pt_regs *regs);
133 * 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.
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.
145 sleeping_thread_to_gdb_regs(unsigned long *gdb_regs, struct task_struct *p);
148 * 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.
152 * Convert the GDB regs in @gdb_regs into the pt_regs, and store them
155 extern void gdb_regs_to_pt_regs(unsigned long *gdb_regs, struct pt_regs *regs);
158 * 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.
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
174 kgdb_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);
180 * kgdb_call_nmi_hook - Call kgdb_nmicallback() on the current CPU
181 * @ignored: This parameter is only here to match the prototype.
183 * If you're using the default implementation of kgdb_roundup_cpus()
184 * this function will be called per CPU. If you don't implement
185 * kgdb_call_nmi_hook() a default will be used.
188 extern void kgdb_call_nmi_hook(void *ignored);
191 * kgdb_roundup_cpus - Get other CPUs into a holding pattern
193 * On SMP systems, we need to get the attention of the other CPUs
194 * and get them into a known state. This should do what is needed
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. Normally
197 * those architectures can just not implement this and get the default.
199 * On non-SMP systems, this is not called.
201 extern void kgdb_roundup_cpus(void);
204 * kgdb_arch_set_pc - Generic call back to the program counter
205 * @regs: Current &struct pt_regs.
206 * @pc: The new value for the program counter
208 * This function handles updating the program counter and requires an
209 * architecture specific implementation.
211 extern void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long pc);
214 /* Optional functions. */
215 extern int kgdb_validate_break_address(unsigned long addr);
216 extern int kgdb_arch_set_breakpoint(struct kgdb_bkpt *bpt);
217 extern int kgdb_arch_remove_breakpoint(struct kgdb_bkpt *bpt);
220 * kgdb_arch_late - Perform any architecture specific initalization.
222 * This function will handle the late initalization of any
223 * architecture specific callbacks. This is an optional function for
224 * handling things like late initialization of hw breakpoints. The
225 * default implementation does nothing.
227 extern void kgdb_arch_late(void);
231 * struct kgdb_arch - Describe architecture specific values.
232 * @gdb_bpt_instr: The instruction to trigger a breakpoint.
233 * @flags: Flags for the breakpoint, currently just %KGDB_HW_BREAKPOINT.
234 * @set_breakpoint: Allow an architecture to specify how to set a software
236 * @remove_breakpoint: Allow an architecture to specify how to remove a
237 * software breakpoint.
238 * @set_hw_breakpoint: Allow an architecture to specify how to set a hardware
240 * @remove_hw_breakpoint: Allow an architecture to specify how to remove a
241 * hardware breakpoint.
242 * @disable_hw_break: Allow an architecture to specify how to disable
243 * hardware breakpoints for a single cpu.
244 * @remove_all_hw_break: Allow an architecture to specify how to remove all
245 * hardware breakpoints.
246 * @correct_hw_break: Allow an architecture to specify how to correct the
247 * hardware debug registers.
248 * @enable_nmi: Manage NMI-triggered entry to KGDB
251 unsigned char gdb_bpt_instr[BREAK_INSTR_SIZE];
254 int (*set_breakpoint)(unsigned long, char *);
255 int (*remove_breakpoint)(unsigned long, char *);
256 int (*set_hw_breakpoint)(unsigned long, int, enum kgdb_bptype);
257 int (*remove_hw_breakpoint)(unsigned long, int, enum kgdb_bptype);
258 void (*disable_hw_break)(struct pt_regs *regs);
259 void (*remove_all_hw_break)(void);
260 void (*correct_hw_break)(void);
262 void (*enable_nmi)(bool on);
266 * struct kgdb_io - Describe the interface for an I/O driver to talk with KGDB.
267 * @name: Name of the I/O driver.
268 * @read_char: Pointer to a function that will return one char.
269 * @write_char: Pointer to a function that will write one char.
270 * @flush: Pointer to a function that will flush any pending writes.
271 * @init: Pointer to a function that will initialize the device.
272 * @pre_exception: Pointer to a function that will do any prep work for
274 * @post_exception: Pointer to a function that will do any cleanup work
275 * for the I/O driver.
276 * @is_console: 1 if the end device is a console 0 if the I/O device is
281 int (*read_char) (void);
282 void (*write_char) (u8);
283 void (*flush) (void);
285 void (*pre_exception) (void);
286 void (*post_exception) (void);
290 extern const struct kgdb_arch arch_kgdb_ops;
292 extern unsigned long kgdb_arch_pc(int exception, struct pt_regs *regs);
294 #ifdef CONFIG_SERIAL_KGDB_NMI
295 extern int kgdb_register_nmi_console(void);
296 extern int kgdb_unregister_nmi_console(void);
297 extern bool kgdb_nmi_poll_knock(void);
299 static inline int kgdb_register_nmi_console(void) { return 0; }
300 static inline int kgdb_unregister_nmi_console(void) { return 0; }
301 static inline bool kgdb_nmi_poll_knock(void) { return 1; }
304 extern int kgdb_register_io_module(struct kgdb_io *local_kgdb_io_ops);
305 extern void kgdb_unregister_io_module(struct kgdb_io *local_kgdb_io_ops);
306 extern struct kgdb_io *dbg_io_ops;
308 extern int kgdb_hex2long(char **ptr, unsigned long *long_val);
309 extern char *kgdb_mem2hex(char *mem, char *buf, int count);
310 extern int kgdb_hex2mem(char *buf, char *mem, int count);
312 extern int kgdb_isremovedbreak(unsigned long addr);
313 extern void kgdb_schedule_breakpoint(void);
316 kgdb_handle_exception(int ex_vector, int signo, int err_code,
317 struct pt_regs *regs);
318 extern int kgdb_nmicallback(int cpu, void *regs);
319 extern int kgdb_nmicallin(int cpu, int trapnr, void *regs, int err_code,
321 extern void gdbstub_exit(int status);
323 extern int kgdb_single_step;
324 extern atomic_t kgdb_active;
325 #define in_dbg_master() \
326 (raw_smp_processor_id() == atomic_read(&kgdb_active))
327 extern bool dbg_is_early;
328 extern void __init dbg_late_init(void);
329 #else /* ! CONFIG_KGDB */
330 #define in_dbg_master() (0)
331 #define dbg_late_init()
332 #endif /* ! CONFIG_KGDB */
333 #endif /* _KGDB_H_ */