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/irq_work.h>
23 #include <linux/module.h>
24 #include <linux/platform_device.h>
25 #include <linux/serial_core.h>
27 #define MAX_CONFIG_LEN 40
29 static struct kgdb_io kgdboc_io_ops
;
31 /* -1 = init not run yet, 0 = unconfigured, 1 = configured. */
32 static int configured
= -1;
33 static DEFINE_MUTEX(config_mutex
);
35 static char config
[MAX_CONFIG_LEN
];
36 static struct kparam_string kps
= {
38 .maxlen
= MAX_CONFIG_LEN
,
41 static int kgdboc_use_kms
; /* 1 if we use kernel mode switching */
42 static struct tty_driver
*kgdb_tty_driver
;
43 static int kgdb_tty_line
;
45 static struct platform_device
*kgdboc_pdev
;
47 #if IS_BUILTIN(CONFIG_KGDB_SERIAL_CONSOLE)
48 static struct kgdb_io kgdboc_earlycon_io_ops
;
49 static int (*earlycon_orig_exit
)(struct console
*con
);
50 #endif /* IS_BUILTIN(CONFIG_KGDB_SERIAL_CONSOLE) */
53 * When we leave the debug trap handler we need to reset the keyboard status
54 * (since the original keyboard state gets partially clobbered by kdb use of
57 * The path to deliver the reset is somewhat circuitous.
59 * To deliver the reset we register an input handler, reset the keyboard and
60 * then deregister the input handler. However, to get this done right, we do
61 * have to carefully manage the calling context because we can only register
62 * input handlers from task context.
64 * In particular we need to trigger the action from the debug trap handler with
65 * all its NMI and/or NMI-like oddities. To solve this the kgdboc trap exit code
66 * (the "post_exception" callback) uses irq_work_queue(), which is NMI-safe, to
67 * schedule a callback from a hardirq context. From there we have to defer the
68 * work again, this time using schedule_work(), to get a callback using the
69 * system workqueue, which runs in task context.
71 #ifdef CONFIG_KDB_KEYBOARD
72 static int kgdboc_reset_connect(struct input_handler
*handler
,
73 struct input_dev
*dev
,
74 const struct input_device_id
*id
)
76 input_reset_device(dev
);
78 /* Return an error - we do not want to bind, just to reset */
82 static void kgdboc_reset_disconnect(struct input_handle
*handle
)
84 /* We do not expect anyone to actually bind to us */
88 static const struct input_device_id kgdboc_reset_ids
[] = {
90 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
,
91 .evbit
= { BIT_MASK(EV_KEY
) },
96 static struct input_handler kgdboc_reset_handler
= {
97 .connect
= kgdboc_reset_connect
,
98 .disconnect
= kgdboc_reset_disconnect
,
99 .name
= "kgdboc_reset",
100 .id_table
= kgdboc_reset_ids
,
103 static DEFINE_MUTEX(kgdboc_reset_mutex
);
105 static void kgdboc_restore_input_helper(struct work_struct
*dummy
)
108 * We need to take a mutex to prevent several instances of
109 * this work running on different CPUs so they don't try
110 * to register again already registered handler.
112 mutex_lock(&kgdboc_reset_mutex
);
114 if (input_register_handler(&kgdboc_reset_handler
) == 0)
115 input_unregister_handler(&kgdboc_reset_handler
);
117 mutex_unlock(&kgdboc_reset_mutex
);
120 static DECLARE_WORK(kgdboc_restore_input_work
, kgdboc_restore_input_helper
);
122 static void kgdboc_queue_restore_input_helper(struct irq_work
*unused
)
124 schedule_work(&kgdboc_restore_input_work
);
127 static DEFINE_IRQ_WORK(kgdboc_restore_input_irq_work
, kgdboc_queue_restore_input_helper
);
129 static void kgdboc_restore_input(void)
131 if (likely(system_state
== SYSTEM_RUNNING
))
132 irq_work_queue(&kgdboc_restore_input_irq_work
);
135 static int kgdboc_register_kbd(char **cptr
)
137 if (strncmp(*cptr
, "kbd", 3) == 0 ||
138 strncmp(*cptr
, "kdb", 3) == 0) {
139 if (kdb_poll_idx
< KDB_POLL_FUNC_MAX
) {
140 kdb_poll_funcs
[kdb_poll_idx
] = kdb_get_kbd_char
;
142 if (cptr
[0][3] == ',')
151 static void kgdboc_unregister_kbd(void)
155 for (i
= 0; i
< kdb_poll_idx
; i
++) {
156 if (kdb_poll_funcs
[i
] == kdb_get_kbd_char
) {
158 kdb_poll_funcs
[i
] = kdb_poll_funcs
[kdb_poll_idx
];
159 kdb_poll_funcs
[kdb_poll_idx
] = NULL
;
163 irq_work_sync(&kgdboc_restore_input_irq_work
);
164 flush_work(&kgdboc_restore_input_work
);
166 #else /* ! CONFIG_KDB_KEYBOARD */
167 #define kgdboc_register_kbd(x) 0
168 #define kgdboc_unregister_kbd()
169 #define kgdboc_restore_input()
170 #endif /* ! CONFIG_KDB_KEYBOARD */
172 #if IS_BUILTIN(CONFIG_KGDB_SERIAL_CONSOLE)
173 static void cleanup_earlycon(void)
175 if (kgdboc_earlycon_io_ops
.cons
)
176 kgdb_unregister_io_module(&kgdboc_earlycon_io_ops
);
178 #else /* !IS_BUILTIN(CONFIG_KGDB_SERIAL_CONSOLE) */
179 static inline void cleanup_earlycon(void) { }
180 #endif /* !IS_BUILTIN(CONFIG_KGDB_SERIAL_CONSOLE) */
182 static void cleanup_kgdboc(void)
189 if (kgdb_unregister_nmi_console())
191 kgdboc_unregister_kbd();
192 kgdb_unregister_io_module(&kgdboc_io_ops
);
195 static int configure_kgdboc(void)
197 struct tty_driver
*p
;
201 struct console
*cons
;
204 if (!strlen(config
) || isspace(config
[0])) {
209 kgdboc_io_ops
.cons
= NULL
;
210 kgdb_tty_driver
= NULL
;
213 if (strncmp(cptr
, "kms,", 4) == 0) {
218 if (kgdboc_register_kbd(&cptr
))
221 p
= tty_find_polling_driver(cptr
, &tty_line
);
226 * Take console_lock to serialize device() callback with
227 * other console operations. For example, fg_console is
228 * modified under console_lock when switching vt.
232 cookie
= console_srcu_read_lock();
233 for_each_console_srcu(cons
) {
235 if (cons
->device
&& cons
->device(cons
, &idx
) == p
&&
237 kgdboc_io_ops
.cons
= cons
;
241 console_srcu_read_unlock(cookie
);
246 kgdb_tty_line
= tty_line
;
249 err
= kgdb_register_io_module(&kgdboc_io_ops
);
253 err
= kgdb_register_nmi_console();
262 kgdb_unregister_io_module(&kgdboc_io_ops
);
264 kgdboc_unregister_kbd();
270 static int kgdboc_probe(struct platform_device
*pdev
)
274 mutex_lock(&config_mutex
);
275 if (configured
!= 1) {
276 ret
= configure_kgdboc();
278 /* Convert "no device" to "defer" so we'll keep trying */
282 mutex_unlock(&config_mutex
);
287 static struct platform_driver kgdboc_platform_driver
= {
288 .probe
= kgdboc_probe
,
291 .suppress_bind_attrs
= true,
295 static int __init
init_kgdboc(void)
300 * kgdboc is a little bit of an odd "platform_driver". It can be
301 * up and running long before the platform_driver object is
302 * created and thus doesn't actually store anything in it. There's
303 * only one instance of kgdb so anything is stored as global state.
304 * The platform_driver is only created so that we can leverage the
305 * kernel's mechanisms (like -EPROBE_DEFER) to call us when our
306 * underlying tty is ready. Here we init our platform driver and
307 * then create the single kgdboc instance.
309 ret
= platform_driver_register(&kgdboc_platform_driver
);
313 kgdboc_pdev
= platform_device_alloc("kgdboc", PLATFORM_DEVID_NONE
);
316 goto err_did_register
;
319 ret
= platform_device_add(kgdboc_pdev
);
323 platform_device_put(kgdboc_pdev
);
326 platform_driver_unregister(&kgdboc_platform_driver
);
330 static void exit_kgdboc(void)
332 mutex_lock(&config_mutex
);
334 mutex_unlock(&config_mutex
);
336 platform_device_unregister(kgdboc_pdev
);
337 platform_driver_unregister(&kgdboc_platform_driver
);
340 static int kgdboc_get_char(void)
342 if (!kgdb_tty_driver
)
344 return kgdb_tty_driver
->ops
->poll_get_char(kgdb_tty_driver
,
348 static void kgdboc_put_char(u8 chr
)
350 if (!kgdb_tty_driver
)
352 kgdb_tty_driver
->ops
->poll_put_char(kgdb_tty_driver
,
356 static int param_set_kgdboc_var(const char *kmessage
,
357 const struct kernel_param
*kp
)
359 size_t len
= strlen(kmessage
);
362 if (len
>= MAX_CONFIG_LEN
) {
363 pr_err("config string too long\n");
367 if (kgdb_connected
) {
368 pr_err("Cannot reconfigure while KGDB is connected.\n");
372 mutex_lock(&config_mutex
);
374 strcpy(config
, kmessage
);
375 /* Chop out \n char as a result of echo */
376 if (len
&& config
[len
- 1] == '\n')
377 config
[len
- 1] = '\0';
383 * Configure with the new params as long as init already ran.
384 * Note that we can get called before init if someone loads us
385 * with "modprobe kgdboc kgdboc=..." or if they happen to use
386 * the odd syntax of "kgdboc.kgdboc=..." on the kernel command.
389 ret
= configure_kgdboc();
392 * If we couldn't configure then clear out the config. Note that
393 * specifying an invalid config on the kernel command line vs.
394 * through sysfs have slightly different behaviors. If we fail
395 * to configure what was specified on the kernel command line
396 * we'll leave it in the 'config' and return -EPROBE_DEFER from
397 * our probe. When specified through sysfs userspace is
398 * responsible for loading the tty driver before setting up.
403 mutex_unlock(&config_mutex
);
408 static int dbg_restore_graphics
;
410 static void kgdboc_pre_exp_handler(void)
412 if (!dbg_restore_graphics
&& kgdboc_use_kms
) {
413 dbg_restore_graphics
= 1;
414 con_debug_enter(vc_cons
[fg_console
].d
);
416 /* Increment the module count when the debugger is active */
418 try_module_get(THIS_MODULE
);
421 static void kgdboc_post_exp_handler(void)
423 /* decrement the module count when the debugger detaches */
425 module_put(THIS_MODULE
);
426 if (kgdboc_use_kms
&& dbg_restore_graphics
) {
427 dbg_restore_graphics
= 0;
430 kgdboc_restore_input();
433 static struct kgdb_io kgdboc_io_ops
= {
435 .read_char
= kgdboc_get_char
,
436 .write_char
= kgdboc_put_char
,
437 .pre_exception
= kgdboc_pre_exp_handler
,
438 .post_exception
= kgdboc_post_exp_handler
,
441 #if IS_BUILTIN(CONFIG_KGDB_SERIAL_CONSOLE)
442 static int kgdboc_option_setup(char *opt
)
445 pr_err("config string not provided\n");
449 if (strlen(opt
) >= MAX_CONFIG_LEN
) {
450 pr_err("config string too long\n");
458 __setup("kgdboc=", kgdboc_option_setup
);
461 /* This is only available if kgdboc is a built in for early debugging */
462 static int __init
kgdboc_early_init(char *opt
)
464 kgdboc_option_setup(opt
);
469 early_param("ekgdboc", kgdboc_early_init
);
471 static int kgdboc_earlycon_get_char(void)
475 if (!kgdboc_earlycon_io_ops
.cons
->read(kgdboc_earlycon_io_ops
.cons
,
482 static void kgdboc_earlycon_put_char(u8 chr
)
484 kgdboc_earlycon_io_ops
.cons
->write(kgdboc_earlycon_io_ops
.cons
, &chr
,
488 static void kgdboc_earlycon_pre_exp_handler(void)
491 static bool already_warned
;
498 * When the first normal console comes up the kernel will take all
499 * the boot consoles out of the list. Really, we should stop using
500 * the boot console when it does that but until a TTY is registered
501 * we have no other choice so we keep using it. Since not all
502 * serial drivers might be OK with this, print a warning once per
503 * boot if we detect this case.
505 cookie
= console_srcu_read_lock();
506 for_each_console_srcu(con
) {
507 if (con
== kgdboc_earlycon_io_ops
.cons
)
510 console_srcu_read_unlock(cookie
);
514 already_warned
= true;
515 pr_warn("kgdboc_earlycon is still using bootconsole\n");
518 static int kgdboc_earlycon_deferred_exit(struct console
*con
)
521 * If we get here it means the boot console is going away but we
522 * don't yet have a suitable replacement. Don't pass through to
523 * the original exit routine. We'll call it later in our deinit()
524 * function. For now, restore the original exit() function pointer
525 * as a sentinal that we've hit this point.
527 con
->exit
= earlycon_orig_exit
;
532 static void kgdboc_earlycon_deinit(void)
534 if (!kgdboc_earlycon_io_ops
.cons
)
537 if (kgdboc_earlycon_io_ops
.cons
->exit
== kgdboc_earlycon_deferred_exit
)
539 * kgdboc_earlycon is exiting but original boot console exit
540 * was never called (AKA kgdboc_earlycon_deferred_exit()
541 * didn't ever run). Undo our trap.
543 kgdboc_earlycon_io_ops
.cons
->exit
= earlycon_orig_exit
;
544 else if (kgdboc_earlycon_io_ops
.cons
->exit
)
546 * We skipped calling the exit() routine so we could try to
547 * keep using the boot console even after it went away. We're
548 * finally done so call the function now.
550 kgdboc_earlycon_io_ops
.cons
->exit(kgdboc_earlycon_io_ops
.cons
);
552 kgdboc_earlycon_io_ops
.cons
= NULL
;
555 static struct kgdb_io kgdboc_earlycon_io_ops
= {
556 .name
= "kgdboc_earlycon",
557 .read_char
= kgdboc_earlycon_get_char
,
558 .write_char
= kgdboc_earlycon_put_char
,
559 .pre_exception
= kgdboc_earlycon_pre_exp_handler
,
560 .deinit
= kgdboc_earlycon_deinit
,
563 #define MAX_CONSOLE_NAME_LEN (sizeof((struct console *) 0)->name)
564 static char kgdboc_earlycon_param
[MAX_CONSOLE_NAME_LEN
] __initdata
;
565 static bool kgdboc_earlycon_late_enable __initdata
;
567 static int __init
kgdboc_earlycon_init(char *opt
)
571 kdb_init(KDB_INIT_EARLY
);
574 * Look for a matching console, or if the name was left blank just
575 * pick the first one we find.
579 * Hold the console_list_lock to guarantee that no consoles are
580 * unregistered until the kgdboc_earlycon setup is complete.
581 * Trapping the exit() callback relies on exit() not being
582 * called until the trap is setup. This also allows safe
583 * traversal of the console list and race-free reading of @flags.
586 for_each_console(con
) {
587 if (con
->write
&& con
->read
&&
588 (con
->flags
& (CON_BOOT
| CON_ENABLED
)) &&
589 (!opt
|| !opt
[0] || strcmp(con
->name
, opt
) == 0))
595 * Both earlycon and kgdboc_earlycon are initialized during
596 * early parameter parsing. We cannot guarantee earlycon gets
597 * in first and, in any case, on ACPI systems earlycon may
598 * defer its own initialization (usually to somewhere within
599 * setup_arch() ). To cope with either of these situations
600 * we can defer our own initialization to a little later in
603 if (!kgdboc_earlycon_late_enable
) {
604 pr_info("No suitable earlycon yet, will try later\n");
606 strscpy(kgdboc_earlycon_param
, opt
,
607 sizeof(kgdboc_earlycon_param
));
608 kgdboc_earlycon_late_enable
= true;
610 pr_info("Couldn't find kgdb earlycon\n");
615 kgdboc_earlycon_io_ops
.cons
= con
;
616 pr_info("Going to register kgdb with earlycon '%s'\n", con
->name
);
617 if (kgdb_register_io_module(&kgdboc_earlycon_io_ops
) != 0) {
618 kgdboc_earlycon_io_ops
.cons
= NULL
;
619 pr_info("Failed to register kgdb with earlycon\n");
621 /* Trap exit so we can keep earlycon longer if needed. */
622 earlycon_orig_exit
= con
->exit
;
623 con
->exit
= kgdboc_earlycon_deferred_exit
;
627 console_list_unlock();
629 /* Non-zero means malformed option so we always return zero */
633 early_param("kgdboc_earlycon", kgdboc_earlycon_init
);
636 * This is only intended for the late adoption of an early console.
638 * It is not a reliable way to adopt regular consoles because we can not
639 * control what order console initcalls are made and, in any case, many
640 * regular consoles are registered much later in the boot process than
641 * the console initcalls!
643 static int __init
kgdboc_earlycon_late_init(void)
645 if (kgdboc_earlycon_late_enable
)
646 kgdboc_earlycon_init(kgdboc_earlycon_param
);
649 console_initcall(kgdboc_earlycon_late_init
);
651 #endif /* IS_BUILTIN(CONFIG_KGDB_SERIAL_CONSOLE) */
653 module_init(init_kgdboc
);
654 module_exit(exit_kgdboc
);
655 module_param_call(kgdboc
, param_set_kgdboc_var
, param_get_string
, &kps
, 0644);
656 MODULE_PARM_DESC(kgdboc
, "<serial_device>[,baud]");
657 MODULE_DESCRIPTION("KGDB Console TTY Driver");
658 MODULE_LICENSE("GPL");