1 // SPDX-License-Identifier: GPL-2.0
3 * KGDB NMI serial console
5 * Copyright 2010 Google, Inc.
6 * Arve Hjønnevåg <arve@android.com>
7 * Colin Cross <ccross@android.com>
8 * Copyright 2012 Linaro Ltd.
9 * Anton Vorontsov <anton.vorontsov@linaro.org>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/compiler.h>
15 #include <linux/slab.h>
16 #include <linux/errno.h>
17 #include <linux/atomic.h>
18 #include <linux/console.h>
19 #include <linux/tty.h>
20 #include <linux/tty_driver.h>
21 #include <linux/tty_flip.h>
22 #include <linux/serial_core.h>
23 #include <linux/interrupt.h>
24 #include <linux/hrtimer.h>
25 #include <linux/tick.h>
26 #include <linux/kfifo.h>
27 #include <linux/kgdb.h>
28 #include <linux/kdb.h>
30 static int kgdb_nmi_knock
= 1;
31 module_param_named(knock
, kgdb_nmi_knock
, int, 0600);
32 MODULE_PARM_DESC(knock
, "if set to 1 (default), the special '$3#33' command " \
33 "must be used to enter the debugger; when set to 0, " \
34 "hitting return key is enough to enter the debugger; " \
35 "when set to -1, the debugger is entered immediately " \
38 static char *kgdb_nmi_magic
= "$3#33";
39 module_param_named(magic
, kgdb_nmi_magic
, charp
, 0600);
40 MODULE_PARM_DESC(magic
, "magic sequence to enter NMI debugger (default $3#33)");
42 static atomic_t kgdb_nmi_num_readers
= ATOMIC_INIT(0);
44 static int kgdb_nmi_console_setup(struct console
*co
, char *options
)
46 arch_kgdb_ops
.enable_nmi(1);
48 /* The NMI console uses the dbg_io_ops to issue console messages. To
49 * avoid duplicate messages during kdb sessions we must inform kdb's
50 * I/O utilities that messages sent to the console will automatically
51 * be displayed on the dbg_io.
53 dbg_io_ops
->is_console
= true;
58 static void kgdb_nmi_console_write(struct console
*co
, const char *s
, uint c
)
62 for (i
= 0; i
< c
; i
++)
63 dbg_io_ops
->write_char(s
[i
]);
66 static struct tty_driver
*kgdb_nmi_tty_driver
;
68 static struct tty_driver
*kgdb_nmi_console_device(struct console
*co
, int *idx
)
71 return kgdb_nmi_tty_driver
;
74 static struct console kgdb_nmi_console
= {
76 .setup
= kgdb_nmi_console_setup
,
77 .write
= kgdb_nmi_console_write
,
78 .device
= kgdb_nmi_console_device
,
79 .flags
= CON_PRINTBUFFER
| CON_ANYTIME
,
84 * This is usually the maximum rate on debug ports. We make fifo large enough
85 * to make copy-pasting to the terminal usable.
87 #define KGDB_NMI_BAUD 115200
88 #define KGDB_NMI_FIFO_SIZE roundup_pow_of_two(KGDB_NMI_BAUD / 8 / HZ)
90 struct kgdb_nmi_tty_priv
{
92 struct timer_list timer
;
93 STRUCT_KFIFO(char, KGDB_NMI_FIFO_SIZE
) fifo
;
96 static struct tty_port
*kgdb_nmi_port
;
98 static void kgdb_tty_recv(int ch
)
100 struct kgdb_nmi_tty_priv
*priv
;
103 if (!kgdb_nmi_port
|| ch
< 0)
106 * Can't use port->tty->driver_data as tty might be not there. Timer
107 * will check for tty and will get the ref, but here we don't have to
108 * do that, and actually, we can't: we're in NMI context, no locks are
111 priv
= container_of(kgdb_nmi_port
, struct kgdb_nmi_tty_priv
, port
);
112 kfifo_in(&priv
->fifo
, &c
, 1);
115 static int kgdb_nmi_poll_one_knock(void)
119 const char *magic
= kgdb_nmi_magic
;
120 size_t m
= strlen(magic
);
121 bool printch
= false;
123 c
= dbg_io_ops
->read_char();
124 if (c
== NO_POLL_CHAR
)
127 if (!kgdb_nmi_knock
&& (c
== '\r' || c
== '\n')) {
129 } else if (c
== magic
[n
]) {
138 if (atomic_read(&kgdb_nmi_num_readers
)) {
148 kdb_printf("\r%s %s to enter the debugger> %*s",
149 kgdb_nmi_knock
? "Type" : "Hit",
150 kgdb_nmi_knock
? magic
: "<return>", (int)m
, "");
157 * kgdb_nmi_poll_knock - Check if it is time to enter the debugger
159 * "Serial ports are often noisy, especially when muxed over another port (we
160 * often use serial over the headset connector). Noise on the async command
161 * line just causes characters that are ignored, on a command line that blocked
162 * execution noise would be catastrophic." -- Colin Cross
164 * So, this function implements KGDB/KDB knocking on the serial line: we won't
165 * enter the debugger until we receive a known magic phrase (which is actually
166 * "$3#33", known as "escape to KDB" command. There is also a relaxed variant
167 * of knocking, i.e. just pressing the return key is enough to enter the
168 * debugger. And if knocking is disabled, the function always returns 1.
170 bool kgdb_nmi_poll_knock(void)
172 if (kgdb_nmi_knock
< 0)
178 ret
= kgdb_nmi_poll_one_knock();
179 if (ret
== NO_POLL_CHAR
)
188 * The tasklet is cheap, it does not cause wakeups when reschedules itself,
189 * instead it waits for the next tick.
191 static void kgdb_nmi_tty_receiver(struct timer_list
*t
)
193 struct kgdb_nmi_tty_priv
*priv
= from_timer(priv
, t
, timer
);
196 priv
->timer
.expires
= jiffies
+ (HZ
/100);
197 add_timer(&priv
->timer
);
199 if (likely(!atomic_read(&kgdb_nmi_num_readers
) ||
200 !kfifo_len(&priv
->fifo
)))
203 while (kfifo_out(&priv
->fifo
, &ch
, 1))
204 tty_insert_flip_char(&priv
->port
, ch
, TTY_NORMAL
);
205 tty_flip_buffer_push(&priv
->port
);
208 static int kgdb_nmi_tty_activate(struct tty_port
*port
, struct tty_struct
*tty
)
210 struct kgdb_nmi_tty_priv
*priv
=
211 container_of(port
, struct kgdb_nmi_tty_priv
, port
);
213 kgdb_nmi_port
= port
;
214 priv
->timer
.expires
= jiffies
+ (HZ
/100);
215 add_timer(&priv
->timer
);
220 static void kgdb_nmi_tty_shutdown(struct tty_port
*port
)
222 struct kgdb_nmi_tty_priv
*priv
=
223 container_of(port
, struct kgdb_nmi_tty_priv
, port
);
225 del_timer(&priv
->timer
);
226 kgdb_nmi_port
= NULL
;
229 static const struct tty_port_operations kgdb_nmi_tty_port_ops
= {
230 .activate
= kgdb_nmi_tty_activate
,
231 .shutdown
= kgdb_nmi_tty_shutdown
,
234 static int kgdb_nmi_tty_install(struct tty_driver
*drv
, struct tty_struct
*tty
)
236 struct kgdb_nmi_tty_priv
*priv
;
239 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
243 INIT_KFIFO(priv
->fifo
);
244 timer_setup(&priv
->timer
, kgdb_nmi_tty_receiver
, 0);
245 tty_port_init(&priv
->port
);
246 priv
->port
.ops
= &kgdb_nmi_tty_port_ops
;
247 tty
->driver_data
= priv
;
249 ret
= tty_port_install(&priv
->port
, drv
, tty
);
251 pr_err("%s: can't install tty port: %d\n", __func__
, ret
);
256 tty_port_destroy(&priv
->port
);
261 static void kgdb_nmi_tty_cleanup(struct tty_struct
*tty
)
263 struct kgdb_nmi_tty_priv
*priv
= tty
->driver_data
;
265 tty
->driver_data
= NULL
;
266 tty_port_destroy(&priv
->port
);
270 static int kgdb_nmi_tty_open(struct tty_struct
*tty
, struct file
*file
)
272 struct kgdb_nmi_tty_priv
*priv
= tty
->driver_data
;
273 unsigned int mode
= file
->f_flags
& O_ACCMODE
;
276 ret
= tty_port_open(&priv
->port
, tty
, file
);
277 if (!ret
&& (mode
== O_RDONLY
|| mode
== O_RDWR
))
278 atomic_inc(&kgdb_nmi_num_readers
);
283 static void kgdb_nmi_tty_close(struct tty_struct
*tty
, struct file
*file
)
285 struct kgdb_nmi_tty_priv
*priv
= tty
->driver_data
;
286 unsigned int mode
= file
->f_flags
& O_ACCMODE
;
288 if (mode
== O_RDONLY
|| mode
== O_RDWR
)
289 atomic_dec(&kgdb_nmi_num_readers
);
291 tty_port_close(&priv
->port
, tty
, file
);
294 static void kgdb_nmi_tty_hangup(struct tty_struct
*tty
)
296 struct kgdb_nmi_tty_priv
*priv
= tty
->driver_data
;
298 tty_port_hangup(&priv
->port
);
301 static int kgdb_nmi_tty_write_room(struct tty_struct
*tty
)
303 /* Actually, we can handle any amount as we use polled writes. */
307 static int kgdb_nmi_tty_write(struct tty_struct
*tty
, const unchar
*buf
, int c
)
311 for (i
= 0; i
< c
; i
++)
312 dbg_io_ops
->write_char(buf
[i
]);
316 static const struct tty_operations kgdb_nmi_tty_ops
= {
317 .open
= kgdb_nmi_tty_open
,
318 .close
= kgdb_nmi_tty_close
,
319 .install
= kgdb_nmi_tty_install
,
320 .cleanup
= kgdb_nmi_tty_cleanup
,
321 .hangup
= kgdb_nmi_tty_hangup
,
322 .write_room
= kgdb_nmi_tty_write_room
,
323 .write
= kgdb_nmi_tty_write
,
326 int kgdb_register_nmi_console(void)
330 if (!arch_kgdb_ops
.enable_nmi
)
333 kgdb_nmi_tty_driver
= alloc_tty_driver(1);
334 if (!kgdb_nmi_tty_driver
) {
335 pr_err("%s: cannot allocate tty\n", __func__
);
338 kgdb_nmi_tty_driver
->driver_name
= "ttyNMI";
339 kgdb_nmi_tty_driver
->name
= "ttyNMI";
340 kgdb_nmi_tty_driver
->num
= 1;
341 kgdb_nmi_tty_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
342 kgdb_nmi_tty_driver
->subtype
= SERIAL_TYPE_NORMAL
;
343 kgdb_nmi_tty_driver
->flags
= TTY_DRIVER_REAL_RAW
;
344 kgdb_nmi_tty_driver
->init_termios
= tty_std_termios
;
345 tty_termios_encode_baud_rate(&kgdb_nmi_tty_driver
->init_termios
,
346 KGDB_NMI_BAUD
, KGDB_NMI_BAUD
);
347 tty_set_operations(kgdb_nmi_tty_driver
, &kgdb_nmi_tty_ops
);
349 ret
= tty_register_driver(kgdb_nmi_tty_driver
);
351 pr_err("%s: can't register tty driver: %d\n", __func__
, ret
);
355 register_console(&kgdb_nmi_console
);
359 put_tty_driver(kgdb_nmi_tty_driver
);
362 EXPORT_SYMBOL_GPL(kgdb_register_nmi_console
);
364 int kgdb_unregister_nmi_console(void)
368 if (!arch_kgdb_ops
.enable_nmi
)
370 arch_kgdb_ops
.enable_nmi(0);
372 ret
= unregister_console(&kgdb_nmi_console
);
376 ret
= tty_unregister_driver(kgdb_nmi_tty_driver
);
379 put_tty_driver(kgdb_nmi_tty_driver
);
383 EXPORT_SYMBOL_GPL(kgdb_unregister_nmi_console
);