]> git.sur5r.net Git - u-boot/commit
serial: ns16550: Add RX interrupt buffer support
authorStefan Roese <sr@denx.de>
Fri, 14 Jul 2017 15:25:54 +0000 (17:25 +0200)
committerTom Rini <trini@konsulko.com>
Sun, 23 Jul 2017 21:04:46 +0000 (17:04 -0400)
commit6822cf3ec7c8768b8727573b8f4b2cb3d870b881
tree5069bd6cc7729d3cced2bc523429c9e3573443bd
parentc3bec5478f604c88191bd29309abe47df0be53cb
serial: ns16550: Add RX interrupt buffer support

Pasting longer lines into the U-Boot console prompt sometimes leads to
characters missing. One problem here is the small 16-byte FIFO of the
legacy NS16550 UART, e.g. on x86 platforms.

This patch now introduces a Kconfig option to enable RX interrupt
buffer support for NS16550 style UARTs. With this option enabled, I was
able paste really long lines into the U-Boot console, without any
characters missing.

Signed-off-by: Stefan Roese <sr@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Cc: Bin Meng <bmeng.cn@gmail.com>
[trini: Guard ns16550_serial_remove with
CONFIG_IS_ENABLED(SERIAL_PRESENT) to match struct assignment]
Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/serial/Kconfig
drivers/serial/ns16550.c
include/ns16550.h