summaryrefslogtreecommitdiffstats
path: root/sys/dev/uart/uart_core.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2011-08-26 21:46:36 +0000
committerrwatson <rwatson@FreeBSD.org>2011-08-26 21:46:36 +0000
commit3f14675cff336d6d19e9cffbd2f4d4a28beb7dca (patch)
tree2ae73feb05cbeb7e5e297fdfc6fab07cf2db82b5 /sys/dev/uart/uart_core.c
parentdd0f1f95e294fe6290b1864612f81cf29a594aac (diff)
downloadFreeBSD-src-3f14675cff336d6d19e9cffbd2f4d4a28beb7dca.zip
FreeBSD-src-3f14675cff336d6d19e9cffbd2f4d4a28beb7dca.tar.gz
Attempt to make break-to-debugger and alternative break-to-debugger more
accessible: (1) Always compile in support for breaking into the debugger if options KDB is present in the kernel. (2) Disable both by default, but allow them to be enabled via tunables and sysctls debug.kdb.break_to_debugger and debug.kdb.alt_break_to_debugger. (3) options BREAK_TO_DEBUGGER and options ALT_BREAK_TO_DEBUGGER continue to behave as before -- only now instead of compiling in break-to-debugger support, they change the default values of the above sysctls to enable those features by default. Current kernel configurations should, therefore, continue to behave as expected. (4) Migrate alternative break-to-debugger state machine logic out of individual device drivers into centralised KDB code. This has a number of upsides, but also one downside: it's now tricky to release sio spin locks when entering the debugger, so we don't. However, similar logic does not exist in other device drivers, including uart. (5) dcons requires some special handling; unlike other console types, it allows overriding KDB's own debugger selection, so we need a new interface to KDB to allow that to work. GENERIC kernels in -CURRENT will now support break-to-debugger as long as appropriate boot/run-time options are set, which should improve the debuggability of BETA kernels significantly. MFC after: 3 weeks Reviewed by: kib, nwhitehorn Approved by: re (bz)
Diffstat (limited to 'sys/dev/uart/uart_core.c')
-rw-r--r--sys/dev/uart/uart_core.c26
1 files changed, 5 insertions, 21 deletions
diff --git a/sys/dev/uart/uart_core.c b/sys/dev/uart/uart_core.c
index 38d2a8f..5bd582b 100644
--- a/sys/dev/uart/uart_core.c
+++ b/sys/dev/uart/uart_core.c
@@ -118,10 +118,10 @@ uart_intr_break(void *arg)
{
struct uart_softc *sc = arg;
-#if defined(KDB) && defined(BREAK_TO_DEBUGGER)
+#if defined(KDB)
if (sc->sc_sysdev != NULL && sc->sc_sysdev->type == UART_DEV_CONSOLE) {
- kdb_enter(KDB_WHY_BREAK, "Line break on console");
- return (0);
+ if (kdb_break())
+ return (0);
}
#endif
if (sc->sc_opened)
@@ -170,26 +170,10 @@ uart_intr_rxready(void *arg)
rxp = sc->sc_rxput;
UART_RECEIVE(sc);
-#if defined(KDB) && defined(ALT_BREAK_TO_DEBUGGER)
+#if defined(KDB)
if (sc->sc_sysdev != NULL && sc->sc_sysdev->type == UART_DEV_CONSOLE) {
while (rxp != sc->sc_rxput) {
- int kdb_brk;
-
- if ((kdb_brk = kdb_alt_break(sc->sc_rxbuf[rxp++],
- &sc->sc_altbrk)) != 0) {
- switch (kdb_brk) {
- case KDB_REQ_DEBUGGER:
- kdb_enter(KDB_WHY_BREAK,
- "Break sequence on console");
- break;
- case KDB_REQ_PANIC:
- kdb_panic("Panic sequence on console");
- break;
- case KDB_REQ_REBOOT:
- kdb_reboot();
- break;
- }
- }
+ kdb_alt_break(sc->sc_rxbuf[rxp++], &sc->sc_altbrk);
if (rxp == sc->sc_rxbufsz)
rxp = 0;
}
OpenPOWER on IntegriCloud