Changeset 1b1be5f in mainline for kernel


Ignore:
Timestamp:
2019-04-15T17:26:37Z (6 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4099129, 8c5586c
Parents:
b63f4e89
Message:

Add support for serial kernel console on sun4u

This feature is currently disabled by default (CONFIG_SUN_TTY) due to
the following behavior observed with QEMU 3.1. After producing a couple
of lines of serial output, the kernel seems to hang on an IO read of the
NS 16550's LSR register (which it needs in order to test for
LSR_TH_READY). Providing some input on the serial console results in
unblocking the kernel for a while until it blocks again a couple of
lines of output later.

Location:
kernel/arch/sparc64
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/Makefile.inc

    rb63f4e89 r1b1be5f  
    8282        arch/$(KARCH)/src/drivers/tick.c \
    8383        arch/$(KARCH)/src/drivers/kbd.c \
     84        arch/$(KARCH)/src/drivers/tty.c \
    8485        arch/$(KARCH)/src/drivers/pci.c \
    8586        arch/$(KARCH)/src/trap/$(USARCH)/interrupt.c
  • kernel/arch/sparc64/src/console.c

    rb63f4e89 r1b1be5f  
    3737#include <arch/drivers/scr.h>
    3838#include <arch/drivers/kbd.h>
     39#include <arch/drivers/tty.h>
    3940#include <genarch/srln/srln.h>
    4041#include <console/chardev.h>
     
    8485        kbd_init(keyboard);
    8586#endif
     87
     88#ifdef CONFIG_SUN_TTY
     89        ofw_tree_property_t *prop_tty = ofw_tree_getprop(aliases, "ttya");
     90        if (prop_tty && prop_tty->value) {
     91                ofw_tree_node_t *tty = ofw_tree_lookup(prop_tty->value);
     92                if (tty)
     93                        tty_init(tty);
     94        }
     95#endif
    8696}
    8797
Note: See TracChangeset for help on using the changeset viewer.