summaryrefslogtreecommitdiffstats
path: root/sys/dev/uart/uart_dev_lpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/uart/uart_dev_lpc.c')
-rw-r--r--sys/dev/uart/uart_dev_lpc.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/dev/uart/uart_dev_lpc.c b/sys/dev/uart/uart_dev_lpc.c
index 306c9f1..48d7be3 100644
--- a/sys/dev/uart/uart_dev_lpc.c
+++ b/sys/dev/uart/uart_dev_lpc.c
@@ -345,9 +345,6 @@ lpc_ns8250_putc(struct uart_bas *bas, int c)
DELAY(4);
uart_setreg(bas, REG_DATA, c);
uart_barrier(bas);
- limit = 250000;
- while ((uart_getreg(bas, REG_LSR) & LSR_TEMT) == 0 && --limit)
- DELAY(4);
}
static int
@@ -890,8 +887,13 @@ lpc_ns8250_bus_transmit(struct uart_softc *sc)
bas = &sc->sc_bas;
uart_lock(sc->sc_hwmtx);
- while ((uart_getreg(bas, REG_LSR) & LSR_THRE) == 0)
- ;
+ if (sc->sc_txdatasz > 1) {
+ if ((uart_getreg(bas, REG_LSR) & LSR_TEMT) == 0)
+ lpc_ns8250_drain(bas, UART_DRAIN_TRANSMITTER);
+ } else {
+ while ((uart_getreg(bas, REG_LSR) & LSR_THRE) == 0)
+ DELAY(4);
+ }
for (i = 0; i < sc->sc_txdatasz; i++) {
uart_setreg(bas, REG_DATA, sc->sc_txbuf[i]);
uart_barrier(bas);
OpenPOWER on IntegriCloud