linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* RE: [PATCH v3] spi: atmel: Fix PDC transfer setup bug
@ 2021-09-20 14:31 Ville Baillie
  2021-09-20 14:35 ` Ville Baillie
  0 siblings, 1 reply; 2+ messages in thread
From: Ville Baillie @ 2021-09-20 14:31 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 626b32a8db5b1904b0f0f7781e2375b2fd17a497 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 v3] 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] 2+ messages in thread

* RE: [PATCH v3] spi: atmel: Fix PDC transfer setup bug
  2021-09-20 14:31 [PATCH v3] spi: atmel: Fix PDC transfer setup bug Ville Baillie
@ 2021-09-20 14:35 ` Ville Baillie
  0 siblings, 0 replies; 2+ messages in thread
From: Ville Baillie @ 2021-09-20 14:35 UTC (permalink / raw)
  To: tudor.ambarus, broonie, nicolas.ferre, alexandre.belloni,
	ludovic.desroches
  Cc: linux-spi, linux-arm-kernel, linux-kernel, dan.sneddon

My apologies, it appears my email client is mangling the patch.

I will resend if I can get 'git send-email' working.

Thanks
Ville

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

end of thread, other threads:[~2021-09-20 14:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-20 14:31 [PATCH v3] spi: atmel: Fix PDC transfer setup bug Ville Baillie
2021-09-20 14:35 ` Ville Baillie

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).