]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
spi: cadence-quadspi: Fix check condition for DTR ops
authorApurva Nandan <a-nandan@ti.com>
Wed, 12 Apr 2023 10:58:54 +0000 (16:28 +0530)
committerJagan Teki <jagan@amarulasolutions.com>
Wed, 26 Apr 2023 08:06:52 +0000 (13:36 +0530)
buswidth and dtr fields in spi_mem_op are only valid when the
corresponding spi_mem_op phase has a non-zero length. For example,
SPI NAND core doesn't set buswidth when using SPI_MEM_OP_NO_ADDR
phase.

Fix the dtr checks in set_protocol() to ignore empty spi_mem_op
phases, as checking for dtr field in empty phase will result in
false negatives.

Signed-off-by: Apurva Nandan <a-nandan@ti.com>
Signed-off-by: Dhruva Gole <d-gole@ti.com>
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
drivers/spi/cadence_qspi.c
drivers/spi/cadence_qspi_apb.c

index c7f10c501320a941d5607e0e9d466177bb254348..a858a62888e45647a3495064a1f9dd92684eb54d 100644 (file)
@@ -362,8 +362,15 @@ static bool cadence_spi_mem_supports_op(struct spi_slave *slave,
 {
        bool all_true, all_false;
 
-       all_true = op->cmd.dtr && op->addr.dtr && op->dummy.dtr &&
-                  op->data.dtr;
+       /*
+        * op->dummy.dtr is required for converting nbytes into ncycles.
+        * Also, don't check the dtr field of the op phase having zero nbytes.
+        */
+       all_true = op->cmd.dtr &&
+                  (!op->addr.nbytes || op->addr.dtr) &&
+                  (!op->dummy.nbytes || op->dummy.dtr) &&
+                  (!op->data.nbytes || op->data.dtr);
+
        all_false = !op->cmd.dtr && !op->addr.dtr && !op->dummy.dtr &&
                    !op->data.dtr;
 
index 21fe2e655c5f63fda12b2c8744445089598b1c29..dfcdeff80545a1487226e401db9d952ed0894d63 100644 (file)
@@ -120,7 +120,16 @@ static int cadence_qspi_set_protocol(struct cadence_spi_priv *priv,
 {
        int ret;
 
-       priv->dtr = op->data.dtr && op->cmd.dtr && op->addr.dtr;
+       /*
+        * For an op to be DTR, cmd phase along with every other non-empty
+        * phase should have dtr field set to 1. If an op phase has zero
+        * nbytes, ignore its dtr field; otherwise, check its dtr field.
+        * Also, dummy checks not performed here Since supports_op()
+        * already checks that all or none of the fields are DTR.
+        */
+       priv->dtr = op->cmd.dtr &&
+                   (!op->addr.nbytes || op->addr.dtr) &&
+                   (!op->data.nbytes || op->data.dtr);
 
        ret = cadence_qspi_buswidth_to_inst_type(op->cmd.buswidth);
        if (ret < 0)