serial: 8250: Extract IIR logic steering from rx dma
authorPeter Hurley <peter@hurleysoftware.com>
Sun, 10 Apr 2016 05:14:36 +0000 (22:14 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Apr 2016 16:26:55 +0000 (09:26 -0700)
commit33d9b8b23a73d5d8609a740d0adeea8235c2ae52
treeef63a64eb25995cc3dd6f9912ced54560275e71c
parentb74fdd23d8fb4e349185ed9d963da8fc2b6eb34c
serial: 8250: Extract IIR logic steering from rx dma

Using fake IIR values to perform rx dma operations unnecessarily
conflates separate operations, stopping in-progress dma with starting
new dma.

Introduce serial8250_rx_dma_flush() to handle stopping in-progress dma
[omap8250 already has equivalent omap_8250_rx_dma_flush()].
Replace rx_dma(UART_IIR_RX_TIMEOUT) with the equivalent *_rx_dma_flush(),
and rx_dma(0) with the equivalent *_rx_dma(). Handle IIR steering
in the irq handler with handle_rx_dma() helper.

Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/8250/8250.h
drivers/tty/serial/8250/8250_dma.c
drivers/tty/serial/8250/8250_omap.c
drivers/tty/serial/8250/8250_port.c