spi: atmel: fix handling of cs_change set on non-last xfer
authorMans Rullgard <mans@mansr.com>
Fri, 18 Oct 2019 15:35:04 +0000 (17:35 +0200)
committerMark Brown <broonie@kernel.org>
Fri, 18 Oct 2019 17:42:28 +0000 (18:42 +0100)
The driver does the wrong thing when cs_change is set on a non-last
xfer in a message.  When cs_change is set, the driver deactivates the
CS and leaves it off until a later xfer again has cs_change set whereas
it should be briefly toggling CS off and on again.

This patch brings the behaviour of the driver back in line with the
documentation and common sense.  The delay of 10 us is the same as is
used by the default spi_transfer_one_message() function in spi.c.
[gregory: rebased on for-5.5 from spi tree]
Fixes: 8090d6d1a415 ("spi: atmel: Refactor spi-atmel to use SPI framework queue")
Signed-off-by: Mans Rullgard <mans@mansr.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
Link: https://lore.kernel.org/r/20191018153504.4249-1-gregory.clement@bootlin.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-atmel.c

index acf318e7330c4ae851385e8f9a641761cd5c504f..2f8c79ce05c8969c4e5cb8f142b7c413597dab4d 100644 (file)
@@ -302,7 +302,6 @@ struct atmel_spi {
        bool                    use_cs_gpios;
 
        bool                    keep_cs;
-       bool                    cs_active;
 
        u32                     fifo_size;
 };
@@ -1376,11 +1375,9 @@ static int atmel_spi_one_transfer(struct spi_master *master,
                                 &msg->transfers)) {
                        as->keep_cs = true;
                } else {
-                       as->cs_active = !as->cs_active;
-                       if (as->cs_active)
-                               cs_activate(as, msg->spi);
-                       else
-                               cs_deactivate(as, msg->spi);
+                       cs_deactivate(as, msg->spi);
+                       udelay(10);
+                       cs_activate(as, msg->spi);
                }
        }
 
@@ -1403,7 +1400,6 @@ static int atmel_spi_transfer_one_message(struct spi_master *master,
        atmel_spi_lock(as);
        cs_activate(as, spi);
 
-       as->cs_active = true;
        as->keep_cs = false;
 
        msg->status = 0;