mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-27 20:07:09 +00:00
drivers: PL011: refactor pl011_set_termios()
Split the pl011_set_termios() function into smaller chunks to allow easier reuse later when adding SBSA support. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Tested-by: Mark Langsdorf <mlangsdo@redhat.com> Tested-by: Naresh Bhat <nbhat@cavium.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
95166a3fd5
commit
ef5a935884
@ -1705,6 +1705,38 @@ static void pl011_shutdown(struct uart_port *port)
|
|||||||
uap->port.ops->flush_buffer(port);
|
uap->port.ops->flush_buffer(port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
pl011_setup_status_masks(struct uart_port *port, struct ktermios *termios)
|
||||||
|
{
|
||||||
|
port->read_status_mask = UART011_DR_OE | 255;
|
||||||
|
if (termios->c_iflag & INPCK)
|
||||||
|
port->read_status_mask |= UART011_DR_FE | UART011_DR_PE;
|
||||||
|
if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
|
||||||
|
port->read_status_mask |= UART011_DR_BE;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Characters to ignore
|
||||||
|
*/
|
||||||
|
port->ignore_status_mask = 0;
|
||||||
|
if (termios->c_iflag & IGNPAR)
|
||||||
|
port->ignore_status_mask |= UART011_DR_FE | UART011_DR_PE;
|
||||||
|
if (termios->c_iflag & IGNBRK) {
|
||||||
|
port->ignore_status_mask |= UART011_DR_BE;
|
||||||
|
/*
|
||||||
|
* If we're ignoring parity and break indicators,
|
||||||
|
* ignore overruns too (for real raw support).
|
||||||
|
*/
|
||||||
|
if (termios->c_iflag & IGNPAR)
|
||||||
|
port->ignore_status_mask |= UART011_DR_OE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Ignore all characters if CREAD is not set.
|
||||||
|
*/
|
||||||
|
if ((termios->c_cflag & CREAD) == 0)
|
||||||
|
port->ignore_status_mask |= UART_DUMMY_DR_RX;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
pl011_set_termios(struct uart_port *port, struct ktermios *termios,
|
pl011_set_termios(struct uart_port *port, struct ktermios *termios,
|
||||||
struct ktermios *old)
|
struct ktermios *old)
|
||||||
@ -1769,33 +1801,7 @@ pl011_set_termios(struct uart_port *port, struct ktermios *termios,
|
|||||||
*/
|
*/
|
||||||
uart_update_timeout(port, termios->c_cflag, baud);
|
uart_update_timeout(port, termios->c_cflag, baud);
|
||||||
|
|
||||||
port->read_status_mask = UART011_DR_OE | 255;
|
pl011_setup_status_masks(port, termios);
|
||||||
if (termios->c_iflag & INPCK)
|
|
||||||
port->read_status_mask |= UART011_DR_FE | UART011_DR_PE;
|
|
||||||
if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
|
|
||||||
port->read_status_mask |= UART011_DR_BE;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Characters to ignore
|
|
||||||
*/
|
|
||||||
port->ignore_status_mask = 0;
|
|
||||||
if (termios->c_iflag & IGNPAR)
|
|
||||||
port->ignore_status_mask |= UART011_DR_FE | UART011_DR_PE;
|
|
||||||
if (termios->c_iflag & IGNBRK) {
|
|
||||||
port->ignore_status_mask |= UART011_DR_BE;
|
|
||||||
/*
|
|
||||||
* If we're ignoring parity and break indicators,
|
|
||||||
* ignore overruns too (for real raw support).
|
|
||||||
*/
|
|
||||||
if (termios->c_iflag & IGNPAR)
|
|
||||||
port->ignore_status_mask |= UART011_DR_OE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Ignore all characters if CREAD is not set.
|
|
||||||
*/
|
|
||||||
if ((termios->c_cflag & CREAD) == 0)
|
|
||||||
port->ignore_status_mask |= UART_DUMMY_DR_RX;
|
|
||||||
|
|
||||||
if (UART_ENABLE_MS(port, termios->c_cflag))
|
if (UART_ENABLE_MS(port, termios->c_cflag))
|
||||||
pl011_enable_ms(port);
|
pl011_enable_ms(port);
|
||||||
|
Loading…
Reference in New Issue
Block a user