aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kgdb.h
diff options
context:
space:
mode:
authorJason Wessel <jason.wessel@windriver.com>2010-05-20 22:04:21 -0400
committerJason Wessel <jason.wessel@windriver.com>2010-05-20 22:04:21 -0400
commitdcc7871128e99458ca86186b7bc8bf27ff0c47b5 (patch)
treee10d252ccc4e990aac7dd09f44b94cfe045adc6b /include/linux/kgdb.h
parent67fc4e0cb931d6b4ccf21248e4199b154478ecea (diff)
kgdb: core changes to support kdb
These are the minimum changes to the kgdb core in order to enable an API to connect a new front end (kdb) to the debug core. This patch introduces the dbg_kdb_mode variable controls where the user level I/O is routed. It will be routed to the gdbstub (kgdb) or to the kdb front end which is a simple shell available over the kgdboc connection. You can switch back and forth between kdb or the gdb stub mode of operation dynamically. From gdb stub mode you can blindly type "$3#33", or from the kdb mode you can enter "kgdb" to switch to the gdb stub. The logic in the debug core depends on kdb to look for the typical gdb connection sequences and return immediately with KGDB_PASS_EVENT if a gdb serial command sequence is detected. That should allow a reasonably seamless transition between kdb -> gdb without leaving the kernel exception state. The two gdb serial queries that kdb is responsible for detecting are the "?" and "qSupported" packets. CC: Ingo Molnar <mingo@elte.hu> Signed-off-by: Jason Wessel <jason.wessel@windriver.com> Acked-by: Martin Hicks <mort@sgi.com>
Diffstat (limited to 'include/linux/kgdb.h')
-rw-r--r--include/linux/kgdb.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/include/linux/kgdb.h b/include/linux/kgdb.h
index 4830142ec339..5b37df00000d 100644
--- a/include/linux/kgdb.h
+++ b/include/linux/kgdb.h
@@ -16,10 +16,12 @@
16#include <linux/serial_8250.h> 16#include <linux/serial_8250.h>
17#include <linux/linkage.h> 17#include <linux/linkage.h>
18#include <linux/init.h> 18#include <linux/init.h>
19
20#include <asm/atomic.h> 19#include <asm/atomic.h>
20#ifdef CONFIG_HAVE_ARCH_KGDB
21#include <asm/kgdb.h> 21#include <asm/kgdb.h>
22#endif
22 23
24#ifdef CONFIG_KGDB
23struct pt_regs; 25struct pt_regs;
24 26
25/** 27/**
@@ -262,6 +264,7 @@ extern struct kgdb_arch arch_kgdb_ops;
262 264
263extern unsigned long __weak kgdb_arch_pc(int exception, struct pt_regs *regs); 265extern unsigned long __weak kgdb_arch_pc(int exception, struct pt_regs *regs);
264 266
267extern void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long pc);
265extern int kgdb_register_io_module(struct kgdb_io *local_kgdb_io_ops); 268extern int kgdb_register_io_module(struct kgdb_io *local_kgdb_io_ops);
266extern void kgdb_unregister_io_module(struct kgdb_io *local_kgdb_io_ops); 269extern void kgdb_unregister_io_module(struct kgdb_io *local_kgdb_io_ops);
267extern struct kgdb_io *dbg_io_ops; 270extern struct kgdb_io *dbg_io_ops;
@@ -279,5 +282,9 @@ extern int kgdb_nmicallback(int cpu, void *regs);
279 282
280extern int kgdb_single_step; 283extern int kgdb_single_step;
281extern atomic_t kgdb_active; 284extern atomic_t kgdb_active;
282 285#define in_dbg_master() \
286 (raw_smp_processor_id() == atomic_read(&kgdb_active))
287#else /* ! CONFIG_KGDB */
288#define in_dbg_master() (0)
289#endif /* ! CONFIG_KGDB */
283#endif /* _KGDB_H_ */ 290#endif /* _KGDB_H_ */