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.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/kernel.h>
15 #include <linux/ctype.h>
16 #include <linux/kgdb.h>
17 #include <linux/kdb.h>
18 #include <linux/tty.h>
19 #include <linux/console.h>
20 #include <linux/vt_kern.h>
21 #include <linux/input.h>
22 #include <linux/module.h>
24 #define MAX_CONFIG_LEN 40
26 static struct kgdb_io kgdboc_io_ops
;
28 /* -1 = init not run yet, 0 = unconfigured, 1 = configured. */
29 static int configured
= -1;
31 static char config
[MAX_CONFIG_LEN
];
32 static struct kparam_string kps
= {
34 .maxlen
= MAX_CONFIG_LEN
,
37 static int kgdboc_use_kms
; /* 1 if we use kernel mode switching */
38 static struct tty_driver
*kgdb_tty_driver
;
39 static int kgdb_tty_line
;
41 #ifdef CONFIG_KDB_KEYBOARD
42 static int kgdboc_reset_connect(struct input_handler
*handler
,
43 struct input_dev
*dev
,
44 const struct input_device_id
*id
)
46 input_reset_device(dev
);
48 /* Return an error - we do not want to bind, just to reset */
52 static void kgdboc_reset_disconnect(struct input_handle
*handle
)
54 /* We do not expect anyone to actually bind to us */
58 static const struct input_device_id kgdboc_reset_ids
[] = {
60 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
,
61 .evbit
= { BIT_MASK(EV_KEY
) },
66 static struct input_handler kgdboc_reset_handler
= {
67 .connect
= kgdboc_reset_connect
,
68 .disconnect
= kgdboc_reset_disconnect
,
69 .name
= "kgdboc_reset",
70 .id_table
= kgdboc_reset_ids
,
73 static DEFINE_MUTEX(kgdboc_reset_mutex
);
75 static void kgdboc_restore_input_helper(struct work_struct
*dummy
)
78 * We need to take a mutex to prevent several instances of
79 * this work running on different CPUs so they don't try
80 * to register again already registered handler.
82 mutex_lock(&kgdboc_reset_mutex
);
84 if (input_register_handler(&kgdboc_reset_handler
) == 0)
85 input_unregister_handler(&kgdboc_reset_handler
);
87 mutex_unlock(&kgdboc_reset_mutex
);
90 static DECLARE_WORK(kgdboc_restore_input_work
, kgdboc_restore_input_helper
);
92 static void kgdboc_restore_input(void)
94 if (likely(system_state
== SYSTEM_RUNNING
))
95 schedule_work(&kgdboc_restore_input_work
);
98 static int kgdboc_register_kbd(char **cptr
)
100 if (strncmp(*cptr
, "kbd", 3) == 0 ||
101 strncmp(*cptr
, "kdb", 3) == 0) {
102 if (kdb_poll_idx
< KDB_POLL_FUNC_MAX
) {
103 kdb_poll_funcs
[kdb_poll_idx
] = kdb_get_kbd_char
;
105 if (cptr
[0][3] == ',')
114 static void kgdboc_unregister_kbd(void)
118 for (i
= 0; i
< kdb_poll_idx
; i
++) {
119 if (kdb_poll_funcs
[i
] == kdb_get_kbd_char
) {
121 kdb_poll_funcs
[i
] = kdb_poll_funcs
[kdb_poll_idx
];
122 kdb_poll_funcs
[kdb_poll_idx
] = NULL
;
126 flush_work(&kgdboc_restore_input_work
);
128 #else /* ! CONFIG_KDB_KEYBOARD */
129 #define kgdboc_register_kbd(x) 0
130 #define kgdboc_unregister_kbd()
131 #define kgdboc_restore_input()
132 #endif /* ! CONFIG_KDB_KEYBOARD */
134 static void cleanup_kgdboc(void)
136 if (kgdb_unregister_nmi_console())
138 kgdboc_unregister_kbd();
140 kgdb_unregister_io_module(&kgdboc_io_ops
);
143 static int configure_kgdboc(void)
145 struct tty_driver
*p
;
149 struct console
*cons
;
151 if (!strlen(config
) || isspace(config
[0])) {
156 kgdboc_io_ops
.is_console
= 0;
157 kgdb_tty_driver
= NULL
;
160 if (strncmp(cptr
, "kms,", 4) == 0) {
165 if (kgdboc_register_kbd(&cptr
))
168 p
= tty_find_polling_driver(cptr
, &tty_line
);
172 cons
= console_drivers
;
175 if (cons
->device
&& cons
->device(cons
, &idx
) == p
&&
177 kgdboc_io_ops
.is_console
= 1;
184 kgdb_tty_line
= tty_line
;
187 err
= kgdb_register_io_module(&kgdboc_io_ops
);
191 err
= kgdb_register_nmi_console();
200 kgdb_unregister_io_module(&kgdboc_io_ops
);
202 kgdboc_unregister_kbd();
210 static int __init
init_kgdboc(void)
212 /* Already configured? */
216 return configure_kgdboc();
219 static int kgdboc_get_char(void)
221 if (!kgdb_tty_driver
)
223 return kgdb_tty_driver
->ops
->poll_get_char(kgdb_tty_driver
,
227 static void kgdboc_put_char(u8 chr
)
229 if (!kgdb_tty_driver
)
231 kgdb_tty_driver
->ops
->poll_put_char(kgdb_tty_driver
,
235 static int param_set_kgdboc_var(const char *kmessage
,
236 const struct kernel_param
*kp
)
238 size_t len
= strlen(kmessage
);
240 if (len
>= MAX_CONFIG_LEN
) {
241 pr_err("config string too long\n");
245 /* Only copy in the string if the init function has not run yet */
246 if (configured
< 0) {
247 strcpy(config
, kmessage
);
251 if (kgdb_connected
) {
252 pr_err("Cannot reconfigure while KGDB is connected.\n");
257 strcpy(config
, kmessage
);
258 /* Chop out \n char as a result of echo */
259 if (len
&& config
[len
- 1] == '\n')
260 config
[len
- 1] = '\0';
265 /* Go and configure with the new params. */
266 return configure_kgdboc();
269 static int dbg_restore_graphics
;
271 static void kgdboc_pre_exp_handler(void)
273 if (!dbg_restore_graphics
&& kgdboc_use_kms
) {
274 dbg_restore_graphics
= 1;
275 con_debug_enter(vc_cons
[fg_console
].d
);
277 /* Increment the module count when the debugger is active */
279 try_module_get(THIS_MODULE
);
281 atomic_inc(&ignore_console_lock_warning
);
284 static void kgdboc_post_exp_handler(void)
286 atomic_dec(&ignore_console_lock_warning
);
288 /* decrement the module count when the debugger detaches */
290 module_put(THIS_MODULE
);
291 if (kgdboc_use_kms
&& dbg_restore_graphics
) {
292 dbg_restore_graphics
= 0;
295 kgdboc_restore_input();
298 static struct kgdb_io kgdboc_io_ops
= {
300 .read_char
= kgdboc_get_char
,
301 .write_char
= kgdboc_put_char
,
302 .pre_exception
= kgdboc_pre_exp_handler
,
303 .post_exception
= kgdboc_post_exp_handler
,
306 #ifdef CONFIG_KGDB_SERIAL_CONSOLE
307 static int kgdboc_option_setup(char *opt
)
310 pr_err("config string not provided\n");
314 if (strlen(opt
) >= MAX_CONFIG_LEN
) {
315 pr_err("config string too long\n");
323 __setup("kgdboc=", kgdboc_option_setup
);
326 /* This is only available if kgdboc is a built in for early debugging */
327 static int __init
kgdboc_early_init(char *opt
)
329 /* save the first character of the config string because the
330 * init routine can destroy it.
334 kgdboc_option_setup(opt
);
341 early_param("ekgdboc", kgdboc_early_init
);
342 #endif /* CONFIG_KGDB_SERIAL_CONSOLE */
344 module_init(init_kgdboc
);
345 module_exit(cleanup_kgdboc
);
346 module_param_call(kgdboc
, param_set_kgdboc_var
, param_get_string
, &kps
, 0644);
347 MODULE_PARM_DESC(kgdboc
, "<serial_device>[,baud]");
348 MODULE_DESCRIPTION("KGDB Console TTY Driver");
349 MODULE_LICENSE("GPL");