1 // SPDX-License-Identifier: GPL-2.0
3 * Based on the same principle as kgdboe using the NETPOLL api, this
4 * driver uses a console polling api to implement a gdb serial inteface
5 * which is multiplexed on a console port.
7 * Maintainer: Jason Wessel <jason.wessel@windriver.com>
9 * 2007-2008 (c) Jason Wessel - Wind River Systems, Inc.
11 #include <linux/kernel.h>
12 #include <linux/ctype.h>
13 #include <linux/kgdb.h>
14 #include <linux/kdb.h>
15 #include <linux/tty.h>
16 #include <linux/console.h>
17 #include <linux/vt_kern.h>
18 #include <linux/input.h>
19 #include <linux/module.h>
21 #define MAX_CONFIG_LEN 40
23 static struct kgdb_io kgdboc_io_ops
;
25 /* -1 = init not run yet, 0 = unconfigured, 1 = configured. */
26 static int configured
= -1;
28 static char config
[MAX_CONFIG_LEN
];
29 static struct kparam_string kps
= {
31 .maxlen
= MAX_CONFIG_LEN
,
34 static int kgdboc_use_kms
; /* 1 if we use kernel mode switching */
35 static struct tty_driver
*kgdb_tty_driver
;
36 static int kgdb_tty_line
;
38 #ifdef CONFIG_KDB_KEYBOARD
39 static int kgdboc_reset_connect(struct input_handler
*handler
,
40 struct input_dev
*dev
,
41 const struct input_device_id
*id
)
43 input_reset_device(dev
);
45 /* Return an error - we do not want to bind, just to reset */
49 static void kgdboc_reset_disconnect(struct input_handle
*handle
)
51 /* We do not expect anyone to actually bind to us */
55 static const struct input_device_id kgdboc_reset_ids
[] = {
57 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
,
58 .evbit
= { BIT_MASK(EV_KEY
) },
63 static struct input_handler kgdboc_reset_handler
= {
64 .connect
= kgdboc_reset_connect
,
65 .disconnect
= kgdboc_reset_disconnect
,
66 .name
= "kgdboc_reset",
67 .id_table
= kgdboc_reset_ids
,
70 static DEFINE_MUTEX(kgdboc_reset_mutex
);
72 static void kgdboc_restore_input_helper(struct work_struct
*dummy
)
75 * We need to take a mutex to prevent several instances of
76 * this work running on different CPUs so they don't try
77 * to register again already registered handler.
79 mutex_lock(&kgdboc_reset_mutex
);
81 if (input_register_handler(&kgdboc_reset_handler
) == 0)
82 input_unregister_handler(&kgdboc_reset_handler
);
84 mutex_unlock(&kgdboc_reset_mutex
);
87 static DECLARE_WORK(kgdboc_restore_input_work
, kgdboc_restore_input_helper
);
89 static void kgdboc_restore_input(void)
91 if (likely(system_state
== SYSTEM_RUNNING
))
92 schedule_work(&kgdboc_restore_input_work
);
95 static int kgdboc_register_kbd(char **cptr
)
97 if (strncmp(*cptr
, "kbd", 3) == 0 ||
98 strncmp(*cptr
, "kdb", 3) == 0) {
99 if (kdb_poll_idx
< KDB_POLL_FUNC_MAX
) {
100 kdb_poll_funcs
[kdb_poll_idx
] = kdb_get_kbd_char
;
102 if (cptr
[0][3] == ',')
111 static void kgdboc_unregister_kbd(void)
115 for (i
= 0; i
< kdb_poll_idx
; i
++) {
116 if (kdb_poll_funcs
[i
] == kdb_get_kbd_char
) {
118 kdb_poll_funcs
[i
] = kdb_poll_funcs
[kdb_poll_idx
];
119 kdb_poll_funcs
[kdb_poll_idx
] = NULL
;
123 flush_work(&kgdboc_restore_input_work
);
125 #else /* ! CONFIG_KDB_KEYBOARD */
126 #define kgdboc_register_kbd(x) 0
127 #define kgdboc_unregister_kbd()
128 #define kgdboc_restore_input()
129 #endif /* ! CONFIG_KDB_KEYBOARD */
131 static int kgdboc_option_setup(char *opt
)
133 if (strlen(opt
) >= MAX_CONFIG_LEN
) {
134 printk(KERN_ERR
"kgdboc: config string too long\n");
142 __setup("kgdboc=", kgdboc_option_setup
);
144 static void cleanup_kgdboc(void)
146 if (kgdb_unregister_nmi_console())
148 kgdboc_unregister_kbd();
150 kgdb_unregister_io_module(&kgdboc_io_ops
);
153 static int configure_kgdboc(void)
155 struct tty_driver
*p
;
159 struct console
*cons
;
161 err
= kgdboc_option_setup(config
);
162 if (err
|| !strlen(config
) || isspace(config
[0]))
166 kgdboc_io_ops
.is_console
= 0;
167 kgdb_tty_driver
= NULL
;
170 if (strncmp(cptr
, "kms,", 4) == 0) {
175 if (kgdboc_register_kbd(&cptr
))
178 p
= tty_find_polling_driver(cptr
, &tty_line
);
182 cons
= console_drivers
;
185 if (cons
->device
&& cons
->device(cons
, &idx
) == p
&&
187 kgdboc_io_ops
.is_console
= 1;
194 kgdb_tty_line
= tty_line
;
197 err
= kgdb_register_io_module(&kgdboc_io_ops
);
201 err
= kgdb_register_nmi_console();
210 kgdb_unregister_io_module(&kgdboc_io_ops
);
212 kgdboc_unregister_kbd();
220 static int __init
init_kgdboc(void)
222 /* Already configured? */
226 return configure_kgdboc();
229 static int kgdboc_get_char(void)
231 if (!kgdb_tty_driver
)
233 return kgdb_tty_driver
->ops
->poll_get_char(kgdb_tty_driver
,
237 static void kgdboc_put_char(u8 chr
)
239 if (!kgdb_tty_driver
)
241 kgdb_tty_driver
->ops
->poll_put_char(kgdb_tty_driver
,
245 static int param_set_kgdboc_var(const char *kmessage
,
246 const struct kernel_param
*kp
)
248 int len
= strlen(kmessage
);
250 if (len
>= MAX_CONFIG_LEN
) {
251 printk(KERN_ERR
"kgdboc: config string too long\n");
255 /* Only copy in the string if the init function has not run yet */
256 if (configured
< 0) {
257 strcpy(config
, kmessage
);
261 if (kgdb_connected
) {
263 "kgdboc: Cannot reconfigure while KGDB is connected.\n");
268 strcpy(config
, kmessage
);
269 /* Chop out \n char as a result of echo */
270 if (config
[len
- 1] == '\n')
271 config
[len
- 1] = '\0';
276 /* Go and configure with the new params. */
277 return configure_kgdboc();
280 static int dbg_restore_graphics
;
282 static void kgdboc_pre_exp_handler(void)
284 if (!dbg_restore_graphics
&& kgdboc_use_kms
) {
285 dbg_restore_graphics
= 1;
286 con_debug_enter(vc_cons
[fg_console
].d
);
288 /* Increment the module count when the debugger is active */
290 try_module_get(THIS_MODULE
);
293 static void kgdboc_post_exp_handler(void)
295 /* decrement the module count when the debugger detaches */
297 module_put(THIS_MODULE
);
298 if (kgdboc_use_kms
&& dbg_restore_graphics
) {
299 dbg_restore_graphics
= 0;
302 kgdboc_restore_input();
305 static struct kgdb_io kgdboc_io_ops
= {
307 .read_char
= kgdboc_get_char
,
308 .write_char
= kgdboc_put_char
,
309 .pre_exception
= kgdboc_pre_exp_handler
,
310 .post_exception
= kgdboc_post_exp_handler
,
313 #ifdef CONFIG_KGDB_SERIAL_CONSOLE
314 /* This is only available if kgdboc is a built in for early debugging */
315 static int __init
kgdboc_early_init(char *opt
)
317 /* save the first character of the config string because the
318 * init routine can destroy it.
322 kgdboc_option_setup(opt
);
329 early_param("ekgdboc", kgdboc_early_init
);
330 #endif /* CONFIG_KGDB_SERIAL_CONSOLE */
332 module_init(init_kgdboc
);
333 module_exit(cleanup_kgdboc
);
334 module_param_call(kgdboc
, param_set_kgdboc_var
, param_get_string
, &kps
, 0644);
335 MODULE_PARM_DESC(kgdboc
, "<serial_device>[,baud]");
336 MODULE_DESCRIPTION("KGDB Console TTY Driver");
337 MODULE_LICENSE("GPL");