linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] spi: atmel: Fix PDC transfer setup bug
@ 2021-09-17  7:46 Ville Baillie
  2021-09-17 16:08 ` Dan.Sneddon
  2021-10-02  0:16 ` Mark Brown
  0 siblings, 2 replies; 4+ messages in thread
From: Ville Baillie @ 2021-09-17  7:46 UTC (permalink / raw)
  To: tudor.ambarus, broonie, nicolas.ferre, alexandre.belloni,
	ludovic.desroches
  Cc: linux-spi, linux-arm-kernel, linux-kernel, dan.sneddon, Ville Baillie

From 7f796c2004407f848f9ed97f406e24b9eadd74be Mon Sep 17 00:00:00 2001
From: Ville Baillie <villeb@bytesnap.co.uk>
Date: Thu, 16 Sep 2021 14:16:46 +0000
Subject: [PATCH v2] spi: atmel: Fix PDC transfer setup bug

Commit 5fa5e6dec762 ("spi: atmel: Switch to transfer_one transfer
method") refactored the code and changed a conditional causing
atmel_spi_dma_map_xfer to never be called in PDC mode. This causes the
driver to silently fail.

This patch changes the conditional to match the behaviour of the
previous commit before the refactor.

Signed-off-by: Ville Baillie <villeb@bytesnap.co.uk>
---
 drivers/spi/spi-atmel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/spi/spi-atmel.c b/drivers/spi/spi-atmel.c
index 788dcdf25f00..f872cf196c2f 100644
--- a/drivers/spi/spi-atmel.c
+++ b/drivers/spi/spi-atmel.c
@@ -1301,7 +1301,7 @@ static int atmel_spi_one_transfer(struct spi_master *master,
         * DMA map early, for performance (empties dcache ASAP) and
         * better fault reporting.
         */
-       if ((!master->cur_msg_mapped)
+       if ((!master->cur_msg->is_dma_mapped)
                && as->use_pdc) {
                if (atmel_spi_dma_map_xfer(as, xfer) < 0)
                        return -ENOMEM;
@@ -1381,7 +1381,7 @@ static int atmel_spi_one_transfer(struct spi_master *master,
                }
        }

-       if (!master->cur_msg_mapped
+       if (!master->cur_msg->is_dma_mapped
                && as->use_pdc)
                atmel_spi_dma_unmap_xfer(master, xfer);

--
2.17.1

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

* Re: [PATCH v2] spi: atmel: Fix PDC transfer setup bug
  2021-09-17  7:46 [PATCH v2] spi: atmel: Fix PDC transfer setup bug Ville Baillie
@ 2021-09-17 16:08 ` Dan.Sneddon
  2021-10-02  0:16 ` Mark Brown
  1 sibling, 0 replies; 4+ messages in thread
From: Dan.Sneddon @ 2021-09-17 16:08 UTC (permalink / raw)
  To: VilleB, Tudor.Ambarus, broonie, Nicolas.Ferre, alexandre.belloni,
	Ludovic.Desroches
  Cc: linux-spi, linux-arm-kernel, linux-kernel, Dan.Sneddon

On 9/17/21 12:46 AM, Ville Baillie wrote:
> [Some people who received this message don't often get email from villeb@bytesnap.co.uk. Learn why this is important at http://aka.ms/LearnAboutSenderIdentification.]
> 
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
> 
>  From 7f796c2004407f848f9ed97f406e24b9eadd74be Mon Sep 17 00:00:00 2001
> From: Ville Baillie <villeb@bytesnap.co.uk>
> Date: Thu, 16 Sep 2021 14:16:46 +0000
> Subject: [PATCH v2] spi: atmel: Fix PDC transfer setup bug
> 
> Commit 5fa5e6dec762 ("spi: atmel: Switch to transfer_one transfer
> method") refactored the code and changed a conditional causing
> atmel_spi_dma_map_xfer to never be called in PDC mode. This causes the
> driver to silently fail.
> 
> This patch changes the conditional to match the behaviour of the
> previous commit before the refactor.
> 
> Signed-off-by: Ville Baillie <villeb@bytesnap.co.uk>
Reviewed-by: Dan Sneddon <dan.sneddon@microchip.com>
> ---
>   drivers/spi/spi-atmel.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/spi/spi-atmel.c b/drivers/spi/spi-atmel.c
> index 788dcdf25f00..f872cf196c2f 100644
> --- a/drivers/spi/spi-atmel.c
> +++ b/drivers/spi/spi-atmel.c
> @@ -1301,7 +1301,7 @@ static int atmel_spi_one_transfer(struct spi_master *master,
>           * DMA map early, for performance (empties dcache ASAP) and
>           * better fault reporting.
>           */
> -       if ((!master->cur_msg_mapped)
> +       if ((!master->cur_msg->is_dma_mapped)
>                  && as->use_pdc) {
>                  if (atmel_spi_dma_map_xfer(as, xfer) < 0)
>                          return -ENOMEM;
> @@ -1381,7 +1381,7 @@ static int atmel_spi_one_transfer(struct spi_master *master,
>                  }
>          }
> 
> -       if (!master->cur_msg_mapped
> +       if (!master->cur_msg->is_dma_mapped
>                  && as->use_pdc)
>                  atmel_spi_dma_unmap_xfer(master, xfer);
> 
> --
> 2.17.1
> 


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

* Re: [PATCH v2] spi: atmel: Fix PDC transfer setup bug
  2021-09-17  7:46 [PATCH v2] spi: atmel: Fix PDC transfer setup bug Ville Baillie
  2021-09-17 16:08 ` Dan.Sneddon
@ 2021-10-02  0:16 ` Mark Brown
  1 sibling, 0 replies; 4+ messages in thread
From: Mark Brown @ 2021-10-02  0:16 UTC (permalink / raw)
  To: tudor.ambarus, nicolas.ferre, alexandre.belloni, Ville Baillie,
	ludovic.desroches
  Cc: Mark Brown, dan.sneddon, linux-arm-kernel, linux-kernel, linux-spi

On Fri, 17 Sep 2021 07:46:11 +0000, Ville Baillie wrote:
> From 7f796c2004407f848f9ed97f406e24b9eadd74be Mon Sep 17 00:00:00 2001
> From: Ville Baillie <villeb@bytesnap.co.uk>
> Date: Thu, 16 Sep 2021 14:16:46 +0000
> Subject: [PATCH v2] spi: atmel: Fix PDC transfer setup bug
> 
> Commit 5fa5e6dec762 ("spi: atmel: Switch to transfer_one transfer
> method") refactored the code and changed a conditional causing
> atmel_spi_dma_map_xfer to never be called in PDC mode. This causes the
> driver to silently fail.
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi: atmel: Fix PDC transfer setup bug
      commit: 75e33c55ae8fb4a177fe07c284665e1d61b02560

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

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

* Re: [PATCH v2] spi: atmel: Fix PDC transfer setup bug
@ 2021-09-20 12:28 Mark Brown
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2021-09-20 12:28 UTC (permalink / raw)
  To: Ville Baillie; +Cc: linux-spi, Dan Sneddon

[-- Attachment #1: Type: text/plain, Size: 482 bytes --]

On Thu, Sep 16, 2021 at 02:16:46PM +0000, Ville Baillie wrote:
> Commit 5fa5e6dec762 ("spi: atmel: Switch to transfer_one transfer
> method") refactored the code and changed a conditional causing
> atmel_spi_dma_map_xfer to never be called in PDC mode. This causes the
> driver to silently fail.
> 
> This patch changes the conditional to match the behaviour of the
> previous commit before the refactor.

This doesn't apply against current code, please check and resend.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2021-10-02  0:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-17  7:46 [PATCH v2] spi: atmel: Fix PDC transfer setup bug Ville Baillie
2021-09-17 16:08 ` Dan.Sneddon
2021-10-02  0:16 ` Mark Brown
2021-09-20 12:28 Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).