Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1565855 > unrolled thread
| Started by | Lee Jones <lee.jones@linaro.org> |
|---|---|
| First post | 2017-01-24 14:50 +0100 |
| Last post | 2017-01-25 12:10 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 1/8] serial: st-asc: Ignore the parity error bit if 8-bit mode is enabled Lee Jones <lee.jones@linaro.org> - 2017-01-24 14:50 +0100
Re: [STLinux Kernel] [PATCH 1/8] serial: st-asc: Ignore the parity error bit if 8-bit mode is enabled Peter Griffin <peter.griffin@linaro.org> - 2017-01-25 12:10 +0100
| From | Lee Jones <lee.jones@linaro.org> |
|---|---|
| Date | 2017-01-24 14:50 +0100 |
| Subject | [PATCH 1/8] serial: st-asc: Ignore the parity error bit if 8-bit mode is enabled |
| Message-ID | <t39DY-4W7-21@gated-at.bofh.it> |
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."
Signed-off-by: Lee Jones <lee.jones@linaro.org>
---
drivers/tty/serial/st-asc.c | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/drivers/tty/serial/st-asc.c b/drivers/tty/serial/st-asc.c
index 379e5bd..69e6232 100644
--- a/drivers/tty/serial/st-asc.c
+++ b/drivers/tty/serial/st-asc.c
@@ -287,9 +287,19 @@ static void asc_transmit_chars(struct uart_port *port)
static void asc_receive_chars(struct uart_port *port)
{
struct tty_port *tport = &port->state->port;
- unsigned long status;
+ unsigned long status, mode;
unsigned long c = 0;
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)
pm_wakeup_event(tport->tty->dev, 0);
@@ -299,8 +309,8 @@ static void asc_receive_chars(struct uart_port *port)
flag = TTY_NORMAL;
port->icount.rx++;
- if ((c & (ASC_RXBUF_FE | ASC_RXBUF_PE)) ||
- status & ASC_STA_OE) {
+ if (status & ASC_STA_OE || c & ASC_RXBUF_FE ||
+ (c & ASC_RXBUF_PE && !ignore_pe)) {
if (c & ASC_RXBUF_FE) {
if (c == (ASC_RXBUF_FE | ASC_RXBUF_DUMMY_RX)) {
--
2.10.2
[toc] | [next] | [standalone]
| From | Peter Griffin <peter.griffin@linaro.org> |
|---|---|
| Date | 2017-01-25 12:10 +0100 |
| Subject | Re: [STLinux Kernel] [PATCH 1/8] serial: st-asc: Ignore the parity error bit if 8-bit mode is enabled |
| Message-ID | <t3tCH-ZC-43@gated-at.bofh.it> |
| In reply to | #1565855 |
On Tue, 24 Jan 2017, Lee Jones wrote:
> 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."
>
> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Acked-by: Peter Griffin <peter.griffin@linaro.org>
> ---
> drivers/tty/serial/st-asc.c | 16 +++++++++++++---
> 1 file changed, 13 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/tty/serial/st-asc.c b/drivers/tty/serial/st-asc.c
> index 379e5bd..69e6232 100644
> --- a/drivers/tty/serial/st-asc.c
> +++ b/drivers/tty/serial/st-asc.c
> @@ -287,9 +287,19 @@ static void asc_transmit_chars(struct uart_port *port)
> static void asc_receive_chars(struct uart_port *port)
> {
> struct tty_port *tport = &port->state->port;
> - unsigned long status;
> + unsigned long status, mode;
> unsigned long c = 0;
> 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)
> pm_wakeup_event(tport->tty->dev, 0);
> @@ -299,8 +309,8 @@ static void asc_receive_chars(struct uart_port *port)
> flag = TTY_NORMAL;
> port->icount.rx++;
>
> - if ((c & (ASC_RXBUF_FE | ASC_RXBUF_PE)) ||
> - status & ASC_STA_OE) {
> + if (status & ASC_STA_OE || c & ASC_RXBUF_FE ||
> + (c & ASC_RXBUF_PE && !ignore_pe)) {
>
> if (c & ASC_RXBUF_FE) {
> if (c == (ASC_RXBUF_FE | ASC_RXBUF_DUMMY_RX)) {
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web