1#ifndef _KDB_H
2#define _KDB_H
3
4
5
6
7
8
9
10
11
12
13
14
15
16typedef enum {
17 KDB_REPEAT_NONE = 0,
18 KDB_REPEAT_NO_ARGS,
19 KDB_REPEAT_WITH_ARGS,
20} kdb_repeat_t;
21
22typedef int (*kdb_func_t)(int, const char **);
23
24#ifdef CONFIG_KGDB_KDB
25#include <linux/init.h>
26#include <linux/sched.h>
27#include <linux/atomic.h>
28
29#define KDB_POLL_FUNC_MAX 5
30extern int kdb_poll_idx;
31
32
33
34
35
36extern int kdb_initial_cpu;
37extern atomic_t kdb_event;
38
39
40
41#define KDB_MAXARGS 16
42
43
44#define KDB_NOTFOUND (-1)
45#define KDB_ARGCOUNT (-2)
46#define KDB_BADWIDTH (-3)
47#define KDB_BADRADIX (-4)
48#define KDB_NOTENV (-5)
49#define KDB_NOENVVALUE (-6)
50#define KDB_NOTIMP (-7)
51#define KDB_ENVFULL (-8)
52#define KDB_ENVBUFFULL (-9)
53#define KDB_TOOMANYBPT (-10)
54#define KDB_TOOMANYDBREGS (-11)
55#define KDB_DUPBPT (-12)
56#define KDB_BPTNOTFOUND (-13)
57#define KDB_BADMODE (-14)
58#define KDB_BADINT (-15)
59#define KDB_INVADDRFMT (-16)
60#define KDB_BADREG (-17)
61#define KDB_BADCPUNUM (-18)
62#define KDB_BADLENGTH (-19)
63#define KDB_NOBP (-20)
64#define KDB_BADADDR (-21)
65
66
67
68
69
70
71
72extern const char *kdb_diemsg;
73
74#define KDB_FLAG_EARLYKDB (1 << 0)
75#define KDB_FLAG_CATASTROPHIC (1 << 1)
76#define KDB_FLAG_CMD_INTERRUPT (1 << 2)
77#define KDB_FLAG_NOIPI (1 << 3)
78#define KDB_FLAG_NO_CONSOLE (1 << 5)
79
80#define KDB_FLAG_NO_VT_CONSOLE (1 << 6)
81
82#define KDB_FLAG_NO_I8042 (1 << 7)
83
84
85extern int kdb_flags;
86
87extern void kdb_save_flags(void);
88extern void kdb_restore_flags(void);
89
90#define KDB_FLAG(flag) (kdb_flags & KDB_FLAG_##flag)
91#define KDB_FLAG_SET(flag) ((void)(kdb_flags |= KDB_FLAG_##flag))
92#define KDB_FLAG_CLEAR(flag) ((void)(kdb_flags &= ~KDB_FLAG_##flag))
93
94
95
96
97
98
99
100typedef enum {
101 KDB_REASON_ENTER = 1,
102 KDB_REASON_ENTER_SLAVE,
103 KDB_REASON_BREAK,
104 KDB_REASON_DEBUG,
105 KDB_REASON_OOPS,
106 KDB_REASON_SWITCH,
107 KDB_REASON_KEYBOARD,
108 KDB_REASON_NMI,
109 KDB_REASON_RECURSE,
110
111 KDB_REASON_SSTEP,
112 KDB_REASON_SYSTEM_NMI,
113} kdb_reason_t;
114
115extern int kdb_trap_printk;
116extern __printf(1, 0) int vkdb_printf(const char *fmt, va_list args);
117extern __printf(1, 2) int kdb_printf(const char *, ...);
118typedef __printf(1, 2) int (*kdb_printf_t)(const char *, ...);
119
120extern void kdb_init(int level);
121
122
123typedef int (*get_char_func)(void);
124extern get_char_func kdb_poll_funcs[];
125extern int kdb_get_kbd_char(void);
126
127static inline
128int kdb_process_cpu(const struct task_struct *p)
129{
130 unsigned int cpu = task_thread_info(p)->cpu;
131 if (cpu > num_possible_cpus())
132 cpu = 0;
133 return cpu;
134}
135
136
137extern struct pt_regs *kdb_current_regs;
138#ifdef CONFIG_KALLSYMS
139extern const char *kdb_walk_kallsyms(loff_t *pos);
140#else
141static inline const char *kdb_walk_kallsyms(loff_t *pos)
142{
143 return NULL;
144}
145#endif
146
147
148extern int kdb_register(char *, kdb_func_t, char *, char *, short);
149extern int kdb_register_repeat(char *, kdb_func_t, char *, char *,
150 short, kdb_repeat_t);
151extern int kdb_unregister(char *);
152#else
153static inline __printf(1, 2) int kdb_printf(const char *fmt, ...) { return 0; }
154static inline void kdb_init(int level) {}
155static inline int kdb_register(char *cmd, kdb_func_t func, char *usage,
156 char *help, short minlen) { return 0; }
157static inline int kdb_register_repeat(char *cmd, kdb_func_t func, char *usage,
158 char *help, short minlen,
159 kdb_repeat_t repeat) { return 0; }
160static inline int kdb_unregister(char *cmd) { return 0; }
161#endif
162enum {
163 KDB_NOT_INITIALIZED,
164 KDB_INIT_EARLY,
165 KDB_INIT_FULL,
166};
167
168extern int kdbgetintenv(const char *, int *);
169extern int kdb_set(int, const char **);
170
171#endif
172