Now that com(4) uses a different iot for the initial console and the
authorpatrick <patrick@openbsd.org>
Mon, 15 Aug 2016 21:04:32 +0000 (21:04 +0000)
committerpatrick <patrick@openbsd.org>
Mon, 15 Aug 2016 21:04:32 +0000 (21:04 +0000)
main attachment, the serial port is now longer recognized as console.
To fix this, store the OFW node of the initial console and check it
in the attachment driver.

ok kettenis@

sys/arch/armv7/armv7/armv7_machdep.c
sys/arch/armv7/armv7/armv7_machdep.h
sys/arch/armv7/dev/com_fdt.c

index 8c1bda5..aa71259 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: armv7_machdep.c,v 1.35 2016/08/08 19:27:12 kettenis Exp $ */
+/*     $OpenBSD: armv7_machdep.c,v 1.36 2016/08/15 21:04:32 patrick Exp $ */
 /*     $NetBSD: lubbock_machdep.c,v 1.2 2003/07/15 00:25:06 lukem Exp $ */
 
 /*
 
 #include <dev/cons.h>
 #include <dev/ofw/fdt.h>
+#include <dev/ofw/openfirm.h>
 
 #include <net/if.h>
 
@@ -215,6 +216,8 @@ bs_protos(bs_notimpl);
 int comcnspeed = CONSPEED;
 int comcnmode = CONMODE;
 
+int stdout_node = 0;
+
 /*
  * void boot(int howto, char *bootstr)
  *
@@ -902,8 +905,10 @@ fdt_find_cons(const char *name)
        /* Lookup the physical address of the interface. */
        if (stdout) {
                node = fdt_find_node(stdout);
-               if (node && fdt_is_compatible(node, name))
+               if (node && fdt_is_compatible(node, name)) {
+                       stdout_node = OF_finddevice(stdout);
                        return (node);
+               }
        }
 
        return (NULL);
index 7533582..616613e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: armv7_machdep.h,v 1.8 2016/06/08 15:27:05 jsg Exp $   */
+/*     $OpenBSD: armv7_machdep.h,v 1.9 2016/08/15 21:04:32 patrick Exp $       */
 /*
  * Copyright (c) 2013 Sylvestre Gallon <ccna.syl@gmail.com>
  *
@@ -18,6 +18,8 @@
 #ifndef __PLATFORMVAR_H__
 #define __PLATFORMVAR_H__
 
+extern int stdout_node;
+
 void platform_init(void);
 void platform_powerdown(void);
 void platform_watchdog_reset(void);
index e72da18..5ca649b 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: com_fdt.c,v 1.2 2016/08/15 14:17:34 patrick Exp $ */
+/* $OpenBSD: com_fdt.c,v 1.3 2016/08/15 21:04:32 patrick Exp $ */
 /*
  * Copyright 2003 Wasabi Systems, Inc.
  * All rights reserved.
@@ -124,6 +124,11 @@ com_fdt_attach(struct device *parent, struct device *self, void *aux)
        sc->sc.sc_frequency = 48000000;
        sc->sc.sc_uarttype = COM_UART_TI16750;
 
+       if (stdout_node == faa->fa_node) {
+               SET(sc->sc.sc_hwflags, COM_HW_CONSOLE);
+               SET(sc->sc.sc_swflags, COM_SW_SOFTCAR);
+       }
+
        if (bus_space_map(sc->sc.sc_iot, sc->sc.sc_iobase,
            faa->fa_reg[0].size, 0, &sc->sc.sc_ioh)) {
                printf("%s: bus_space_map failed\n", __func__);