public inbox for linux-serial@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tty: serial: 8250_omap: fix tx with dma
@ 2025-04-30 16:37 Mans Rullgard
  2025-04-30 16:50 ` Greg Kroah-Hartman
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Mans Rullgard @ 2025-04-30 16:37 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Jiri Slaby; +Cc: linux-kernel, linux-serial

Commit 1788cf6a91d9 ("tty: serial: switch from circ_buf to kfifo")
introduced two errors in the TX DMA handling for 8250_omap.

Firstly, kfifo_dma_out_prepare_mapped() needs a scatterlist with two
entries whereas only one is provided.  The same error was fixed for
8250_dma in 59449c9dbdaa ("tty: serial: 8250_dma: use sgl with 2 nents
to take care of buffer wrap").

Secondly, when the OMAP_DMA_TX_KICK flag is set, one byte is pulled from
the kfifo and emitted directly in order to start the DMA.  This is done
without updating DMA tx_size which leads to uart_xmit_advance() called
in the DMA complete callback advancing the kfifo by one too much.

In practice, transmitting N bytes has been seen to result in the last
N-1 bytes being sent repeatedly.

This change fixes both problems.

Fixes: 1788cf6a91d9 ("tty: serial: switch from circ_buf to kfifo")
Signed-off-by: Mans Rullgard <mans@mansr.com>
---
 drivers/tty/serial/8250/8250_omap.c | 35 +++++++++++++++--------------
 1 file changed, 18 insertions(+), 17 deletions(-)

diff --git a/drivers/tty/serial/8250/8250_omap.c b/drivers/tty/serial/8250/8250_omap.c
index f1aee915bc02..84a2f013015e 100644
--- a/drivers/tty/serial/8250/8250_omap.c
+++ b/drivers/tty/serial/8250/8250_omap.c
@@ -1152,9 +1152,11 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
 	struct omap8250_priv		*priv = p->port.private_data;
 	struct tty_port			*tport = &p->port.state->port;
 	struct dma_async_tx_descriptor	*desc;
-	struct scatterlist sg;
+	struct scatterlist *sg;
+	struct scatterlist sgl[2];
 	int skip_byte = -1;
 	int ret;
+	int i;
 
 	if (dma->tx_running)
 		return 0;
@@ -1173,16 +1175,6 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
 		return 0;
 	}
 
-	sg_init_table(&sg, 1);
-	ret = kfifo_dma_out_prepare_mapped(&tport->xmit_fifo, &sg, 1,
-					   UART_XMIT_SIZE, dma->tx_addr);
-	if (ret != 1) {
-		serial8250_clear_THRI(p);
-		return 0;
-	}
-
-	dma->tx_size = sg_dma_len(&sg);
-
 	if (priv->habit & OMAP_DMA_TX_KICK) {
 		unsigned char c;
 		u8 tx_lvl;
@@ -1207,7 +1199,7 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
 			ret = -EBUSY;
 			goto err;
 		}
-		if (dma->tx_size < 4) {
+		if (kfifo_len(&tport->xmit_fifo) < 4) {
 			ret = -EINVAL;
 			goto err;
 		}
@@ -1216,12 +1208,19 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
 			goto err;
 		}
 		skip_byte = c;
-		/* now we need to recompute due to kfifo_get */
-		kfifo_dma_out_prepare_mapped(&tport->xmit_fifo, &sg, 1,
-				UART_XMIT_SIZE, dma->tx_addr);
 	}
 
-	desc = dmaengine_prep_slave_sg(dma->txchan, &sg, 1, DMA_MEM_TO_DEV,
+	sg_init_table(sgl, ARRAY_SIZE(sgl));
+
+	ret = kfifo_dma_out_prepare_mapped(&tport->xmit_fifo, sgl, ARRAY_SIZE(sgl),
+					   UART_XMIT_SIZE, dma->tx_addr);
+
+	dma->tx_size = 0;
+
+	for_each_sg(sgl, sg, ret, i)
+		dma->tx_size += sg_dma_len(sg);
+
+	desc = dmaengine_prep_slave_sg(dma->txchan, sgl, ret, DMA_MEM_TO_DEV,
 			DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
 	if (!desc) {
 		ret = -EBUSY;
@@ -1248,8 +1247,10 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
 err:
 	dma->tx_err = 1;
 out_skip:
-	if (skip_byte >= 0)
+	if (skip_byte >= 0) {
 		serial_out(p, UART_TX, skip_byte);
+		p->port.icount.tx++;
+	}
 	return ret;
 }
 
-- 
2.49.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] tty: serial: 8250_omap: fix tx with dma
  2025-04-30 16:37 [PATCH] tty: serial: 8250_omap: fix tx with dma Mans Rullgard
@ 2025-04-30 16:50 ` Greg Kroah-Hartman
  2025-05-05 11:43 ` Geert Uytterhoeven
  2025-05-06  7:32 ` Jiri Slaby
  2 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2025-04-30 16:50 UTC (permalink / raw)
  To: Mans Rullgard; +Cc: Jiri Slaby, linux-kernel, linux-serial

On Wed, Apr 30, 2025 at 05:37:09PM +0100, Mans Rullgard wrote:
> Commit 1788cf6a91d9 ("tty: serial: switch from circ_buf to kfifo")
> introduced two errors in the TX DMA handling for 8250_omap.
> 
> Firstly, kfifo_dma_out_prepare_mapped() needs a scatterlist with two
> entries whereas only one is provided.  The same error was fixed for
> 8250_dma in 59449c9dbdaa ("tty: serial: 8250_dma: use sgl with 2 nents
> to take care of buffer wrap").
> 
> Secondly, when the OMAP_DMA_TX_KICK flag is set, one byte is pulled from
> the kfifo and emitted directly in order to start the DMA.  This is done
> without updating DMA tx_size which leads to uart_xmit_advance() called
> in the DMA complete callback advancing the kfifo by one too much.
> 
> In practice, transmitting N bytes has been seen to result in the last
> N-1 bytes being sent repeatedly.
> 
> This change fixes both problems.
> 
> Fixes: 1788cf6a91d9 ("tty: serial: switch from circ_buf to kfifo")
> Signed-off-by: Mans Rullgard <mans@mansr.com>
> ---
>  drivers/tty/serial/8250/8250_omap.c | 35 +++++++++++++++--------------
>  1 file changed, 18 insertions(+), 17 deletions(-)
> 
> diff --git a/drivers/tty/serial/8250/8250_omap.c b/drivers/tty/serial/8250/8250_omap.c
> index f1aee915bc02..84a2f013015e 100644
> --- a/drivers/tty/serial/8250/8250_omap.c
> +++ b/drivers/tty/serial/8250/8250_omap.c
> @@ -1152,9 +1152,11 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>  	struct omap8250_priv		*priv = p->port.private_data;
>  	struct tty_port			*tport = &p->port.state->port;
>  	struct dma_async_tx_descriptor	*desc;
> -	struct scatterlist sg;
> +	struct scatterlist *sg;
> +	struct scatterlist sgl[2];
>  	int skip_byte = -1;
>  	int ret;
> +	int i;
>  
>  	if (dma->tx_running)
>  		return 0;
> @@ -1173,16 +1175,6 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>  		return 0;
>  	}
>  
> -	sg_init_table(&sg, 1);
> -	ret = kfifo_dma_out_prepare_mapped(&tport->xmit_fifo, &sg, 1,
> -					   UART_XMIT_SIZE, dma->tx_addr);
> -	if (ret != 1) {
> -		serial8250_clear_THRI(p);
> -		return 0;
> -	}
> -
> -	dma->tx_size = sg_dma_len(&sg);
> -
>  	if (priv->habit & OMAP_DMA_TX_KICK) {
>  		unsigned char c;
>  		u8 tx_lvl;
> @@ -1207,7 +1199,7 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>  			ret = -EBUSY;
>  			goto err;
>  		}
> -		if (dma->tx_size < 4) {
> +		if (kfifo_len(&tport->xmit_fifo) < 4) {
>  			ret = -EINVAL;
>  			goto err;
>  		}
> @@ -1216,12 +1208,19 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>  			goto err;
>  		}
>  		skip_byte = c;
> -		/* now we need to recompute due to kfifo_get */
> -		kfifo_dma_out_prepare_mapped(&tport->xmit_fifo, &sg, 1,
> -				UART_XMIT_SIZE, dma->tx_addr);
>  	}
>  
> -	desc = dmaengine_prep_slave_sg(dma->txchan, &sg, 1, DMA_MEM_TO_DEV,
> +	sg_init_table(sgl, ARRAY_SIZE(sgl));
> +
> +	ret = kfifo_dma_out_prepare_mapped(&tport->xmit_fifo, sgl, ARRAY_SIZE(sgl),
> +					   UART_XMIT_SIZE, dma->tx_addr);
> +
> +	dma->tx_size = 0;
> +
> +	for_each_sg(sgl, sg, ret, i)
> +		dma->tx_size += sg_dma_len(sg);
> +
> +	desc = dmaengine_prep_slave_sg(dma->txchan, sgl, ret, DMA_MEM_TO_DEV,
>  			DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
>  	if (!desc) {
>  		ret = -EBUSY;
> @@ -1248,8 +1247,10 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>  err:
>  	dma->tx_err = 1;
>  out_skip:
> -	if (skip_byte >= 0)
> +	if (skip_byte >= 0) {
>  		serial_out(p, UART_TX, skip_byte);
> +		p->port.icount.tx++;
> +	}
>  	return ret;
>  }
>  
> -- 
> 2.49.0
> 

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- You have marked a patch with a "Fixes:" tag for a commit that is in an
  older released kernel, yet you do not have a cc: stable line in the
  signed-off-by area at all, which means that the patch will not be
  applied to any older kernel releases.  To properly fix this, please
  follow the documented rules in the
  Documentation/process/stable-kernel-rules.rst file for how to resolve
  this.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] tty: serial: 8250_omap: fix tx with dma
  2025-04-30 16:37 [PATCH] tty: serial: 8250_omap: fix tx with dma Mans Rullgard
  2025-04-30 16:50 ` Greg Kroah-Hartman
@ 2025-05-05 11:43 ` Geert Uytterhoeven
  2025-05-06  7:32 ` Jiri Slaby
  2 siblings, 0 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2025-05-05 11:43 UTC (permalink / raw)
  To: Mans Rullgard
  Cc: Greg Kroah-Hartman, Jiri Slaby, linux-kernel, linux-serial,
	Kevin Hilman, Aaro Koskinen, Andreas Kemnade, Roger Quadros,
	Tony Lindgren, open list:TI ETHERNET SWITCH DRIVER (CPSW),
	Matti Vaittinen

CC omap

On Wed, 30 Apr 2025 at 18:45, Mans Rullgard <mans@mansr.com> wrote:
> Commit 1788cf6a91d9 ("tty: serial: switch from circ_buf to kfifo")
> introduced two errors in the TX DMA handling for 8250_omap.
>
> Firstly, kfifo_dma_out_prepare_mapped() needs a scatterlist with two
> entries whereas only one is provided.  The same error was fixed for
> 8250_dma in 59449c9dbdaa ("tty: serial: 8250_dma: use sgl with 2 nents
> to take care of buffer wrap").
>
> Secondly, when the OMAP_DMA_TX_KICK flag is set, one byte is pulled from
> the kfifo and emitted directly in order to start the DMA.  This is done
> without updating DMA tx_size which leads to uart_xmit_advance() called
> in the DMA complete callback advancing the kfifo by one too much.
>
> In practice, transmitting N bytes has been seen to result in the last
> N-1 bytes being sent repeatedly.
>
> This change fixes both problems.
>
> Fixes: 1788cf6a91d9 ("tty: serial: switch from circ_buf to kfifo")
> Signed-off-by: Mans Rullgard <mans@mansr.com>
> ---
>  drivers/tty/serial/8250/8250_omap.c | 35 +++++++++++++++--------------
>  1 file changed, 18 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/tty/serial/8250/8250_omap.c b/drivers/tty/serial/8250/8250_omap.c
> index f1aee915bc02..84a2f013015e 100644
> --- a/drivers/tty/serial/8250/8250_omap.c
> +++ b/drivers/tty/serial/8250/8250_omap.c
> @@ -1152,9 +1152,11 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>         struct omap8250_priv            *priv = p->port.private_data;
>         struct tty_port                 *tport = &p->port.state->port;
>         struct dma_async_tx_descriptor  *desc;
> -       struct scatterlist sg;
> +       struct scatterlist *sg;
> +       struct scatterlist sgl[2];
>         int skip_byte = -1;
>         int ret;
> +       int i;
>
>         if (dma->tx_running)
>                 return 0;
> @@ -1173,16 +1175,6 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>                 return 0;
>         }
>
> -       sg_init_table(&sg, 1);
> -       ret = kfifo_dma_out_prepare_mapped(&tport->xmit_fifo, &sg, 1,
> -                                          UART_XMIT_SIZE, dma->tx_addr);
> -       if (ret != 1) {
> -               serial8250_clear_THRI(p);
> -               return 0;
> -       }
> -
> -       dma->tx_size = sg_dma_len(&sg);
> -
>         if (priv->habit & OMAP_DMA_TX_KICK) {
>                 unsigned char c;
>                 u8 tx_lvl;
> @@ -1207,7 +1199,7 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>                         ret = -EBUSY;
>                         goto err;
>                 }
> -               if (dma->tx_size < 4) {
> +               if (kfifo_len(&tport->xmit_fifo) < 4) {
>                         ret = -EINVAL;
>                         goto err;
>                 }
> @@ -1216,12 +1208,19 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>                         goto err;
>                 }
>                 skip_byte = c;
> -               /* now we need to recompute due to kfifo_get */
> -               kfifo_dma_out_prepare_mapped(&tport->xmit_fifo, &sg, 1,
> -                               UART_XMIT_SIZE, dma->tx_addr);
>         }
>
> -       desc = dmaengine_prep_slave_sg(dma->txchan, &sg, 1, DMA_MEM_TO_DEV,
> +       sg_init_table(sgl, ARRAY_SIZE(sgl));
> +
> +       ret = kfifo_dma_out_prepare_mapped(&tport->xmit_fifo, sgl, ARRAY_SIZE(sgl),
> +                                          UART_XMIT_SIZE, dma->tx_addr);
> +
> +       dma->tx_size = 0;
> +
> +       for_each_sg(sgl, sg, ret, i)
> +               dma->tx_size += sg_dma_len(sg);
> +
> +       desc = dmaengine_prep_slave_sg(dma->txchan, sgl, ret, DMA_MEM_TO_DEV,
>                         DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
>         if (!desc) {
>                 ret = -EBUSY;
> @@ -1248,8 +1247,10 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>  err:
>         dma->tx_err = 1;
>  out_skip:
> -       if (skip_byte >= 0)
> +       if (skip_byte >= 0) {
>                 serial_out(p, UART_TX, skip_byte);
> +               p->port.icount.tx++;
> +       }
>         return ret;
>  }
>
> --
> 2.49.0

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] tty: serial: 8250_omap: fix tx with dma
  2025-04-30 16:37 [PATCH] tty: serial: 8250_omap: fix tx with dma Mans Rullgard
  2025-04-30 16:50 ` Greg Kroah-Hartman
  2025-05-05 11:43 ` Geert Uytterhoeven
@ 2025-05-06  7:32 ` Jiri Slaby
  2 siblings, 0 replies; 4+ messages in thread
From: Jiri Slaby @ 2025-05-06  7:32 UTC (permalink / raw)
  To: Mans Rullgard, Greg Kroah-Hartman; +Cc: linux-kernel, linux-serial

On 30. 04. 25, 18:37, Mans Rullgard wrote:
> Commit 1788cf6a91d9 ("tty: serial: switch from circ_buf to kfifo")
> introduced two errors in the TX DMA handling for 8250_omap.
> 
> Firstly, kfifo_dma_out_prepare_mapped() needs a scatterlist with two
> entries whereas only one is provided.  The same error was fixed for
> 8250_dma in 59449c9dbdaa ("tty: serial: 8250_dma: use sgl with 2 nents
> to take care of buffer wrap").

It's not an error. This is how it used to work since ever. Providing two 
is an optimization, right?

> Secondly, when the OMAP_DMA_TX_KICK flag is set, one byte is pulled from
> the kfifo and emitted directly in order to start the DMA.

> This is done without updating DMA tx_size

Ah, that's an error, of course.

> which leads to uart_xmit_advance() called
> in the DMA complete callback advancing the kfifo by one too much.
> 
> In practice, transmitting N bytes has been seen to result in the last
> N-1 bytes being sent repeatedly.
> 
> This change fixes both problems.

I am not sure you want to mix fixups with features.

> Fixes: 1788cf6a91d9 ("tty: serial: switch from circ_buf to kfifo")
> Signed-off-by: Mans Rullgard <mans@mansr.com>
...
> @@ -1248,8 +1247,10 @@ static int omap_8250_tx_dma(struct uart_8250_port *p)
>   err:
>   	dma->tx_err = 1;
>   out_skip:
> -	if (skip_byte >= 0)
> +	if (skip_byte >= 0) {
>   		serial_out(p, UART_TX, skip_byte);
> +		p->port.icount.tx++;

This is unrelated (but correct) too.

thanks,
-- 
js
suse labs

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-05-06  7:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-30 16:37 [PATCH] tty: serial: 8250_omap: fix tx with dma Mans Rullgard
2025-04-30 16:50 ` Greg Kroah-Hartman
2025-05-05 11:43 ` Geert Uytterhoeven
2025-05-06  7:32 ` Jiri Slaby

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox