Commit 5ab066e5 authored by Lee Jones's avatar Lee Jones Committed by Greg Kroah-Hartman

serial: st-asc: Ignore the parity error bit if 8-bit mode is enabled

The datasheet states:

"If the MODE field selects an 8-bit frame then this [parity error] bit
 is undefined. Software should ignore this bit when reading 8-bit frames."
Acked-by: default avatarPeter Griffin <peter.griffin@linaro.org>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1c9c858e
...@@ -287,9 +287,19 @@ static void asc_transmit_chars(struct uart_port *port) ...@@ -287,9 +287,19 @@ static void asc_transmit_chars(struct uart_port *port)
static void asc_receive_chars(struct uart_port *port) static void asc_receive_chars(struct uart_port *port)
{ {
struct tty_port *tport = &port->state->port; struct tty_port *tport = &port->state->port;
unsigned long status; unsigned long status, mode;
unsigned long c = 0; unsigned long c = 0;
char flag; char flag;
bool ignore_pe = false;
/*
* Datasheet states: If the MODE field selects an 8-bit frame then
* this [parity error] bit is undefined. Software should ignore this
* bit when reading 8-bit frames.
*/
mode = asc_in(port, ASC_CTL) & ASC_CTL_MODE_MSK;
if (mode == ASC_CTL_MODE_8BIT || mode == ASC_CTL_MODE_8BIT_PAR)
ignore_pe = true;
if (port->irq_wake) if (port->irq_wake)
pm_wakeup_event(tport->tty->dev, 0); pm_wakeup_event(tport->tty->dev, 0);
...@@ -299,8 +309,8 @@ static void asc_receive_chars(struct uart_port *port) ...@@ -299,8 +309,8 @@ static void asc_receive_chars(struct uart_port *port)
flag = TTY_NORMAL; flag = TTY_NORMAL;
port->icount.rx++; port->icount.rx++;
if ((c & (ASC_RXBUF_FE | ASC_RXBUF_PE)) || if (status & ASC_STA_OE || c & ASC_RXBUF_FE ||
status & ASC_STA_OE) { (c & ASC_RXBUF_PE && !ignore_pe)) {
if (c & ASC_RXBUF_FE) { if (c & ASC_RXBUF_FE) {
if (c == (ASC_RXBUF_FE | ASC_RXBUF_DUMMY_RX)) { if (c == (ASC_RXBUF_FE | ASC_RXBUF_DUMMY_RX)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment