]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
spi: stm32-ospi: Remove CR_TCIE and CR_TEIE irq usage
authorPatrice Chotard <patrice.chotard@foss.st.com>
Mon, 8 Dec 2025 07:29:10 +0000 (08:29 +0100)
committerMark Brown <broonie@kernel.org>
Sun, 14 Dec 2025 10:39:05 +0000 (19:39 +0900)
Replace CR_TCIE and CR_TEIE irq usage by a read_poll_timeout_atomic() in
stm32_ospi_wait_cmd(). It will reduce the time waiting for TCF or TEF flags
to optimize throughput.

                                           before     after
average time spent in stm32_omi_wait_cmd:  5685 ns    923 ns

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Link: https://patch.msgid.link/20251208-upstream_qspi_ospi_updates-v2-3-62526c9467dc@foss.st.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-stm32-ospi.c

index a6f53f06200e7dd39c6da4c549e5ddc39f36143c..06632cdd1630570de9b2c0c64e00e8ecb4248f1c 100644 (file)
@@ -34,8 +34,6 @@
 #define CR_ABORT               BIT(1)
 #define CR_DMAEN               BIT(2)
 #define CR_FTHRES_SHIFT                8
-#define CR_TEIE                        BIT(16)
-#define CR_TCIE                        BIT(17)
 #define CR_SMIE                        BIT(19)
 #define CR_APMS                        BIT(22)
 #define CR_CSSEL               BIT(24)
 #define STM32_ABT_TIMEOUT_US           100000
 #define STM32_COMP_TIMEOUT_MS          5000
 #define STM32_BUSY_TIMEOUT_US          100000
-
+#define STM32_WAIT_CMD_TIMEOUT_US      5000
 
 #define STM32_AUTOSUSPEND_DELAY -1
 
@@ -116,7 +114,6 @@ struct stm32_ospi {
        struct clk *clk;
        struct reset_control *rstc;
 
-       struct completion data_completion;
        struct completion match_completion;
 
        struct dma_chan *dma_chtx;
@@ -240,22 +237,16 @@ static int stm32_ospi_wait_nobusy(struct stm32_ospi *ospi)
 static int stm32_ospi_wait_cmd(struct stm32_ospi *ospi)
 {
        void __iomem *regs_base = ospi->regs_base;
-       u32 cr, sr;
+       u32 sr;
        int err = 0;
 
-       if ((readl_relaxed(regs_base + OSPI_SR) & SR_TCF) ||
-           ospi->fmode == CR_FMODE_APM)
+       if (ospi->fmode == CR_FMODE_APM)
                goto out;
 
-       reinit_completion(&ospi->data_completion);
-       cr = readl_relaxed(regs_base + OSPI_CR);
-       writel_relaxed(cr | CR_TCIE | CR_TEIE, regs_base + OSPI_CR);
-
-       if (!wait_for_completion_timeout(&ospi->data_completion,
-                               msecs_to_jiffies(STM32_COMP_TIMEOUT_MS)))
-               err = -ETIMEDOUT;
+       err = readl_relaxed_poll_timeout_atomic(ospi->regs_base + OSPI_SR, sr,
+                                               (sr & (SR_TEF | SR_TCF)), 1,
+                                               STM32_WAIT_CMD_TIMEOUT_US);
 
-       sr = readl_relaxed(regs_base + OSPI_SR);
        if (sr & SR_TCF)
                /* avoid false timeout */
                err = 0;
@@ -293,15 +284,6 @@ static irqreturn_t stm32_ospi_irq(int irq, void *dev_id)
                cr &= ~CR_SMIE;
                writel_relaxed(cr, regs_base + OSPI_CR);
                complete(&ospi->match_completion);
-
-               return IRQ_HANDLED;
-       }
-
-       if (sr & (SR_TEF | SR_TCF)) {
-               /* disable irq */
-               cr &= ~CR_TCIE & ~CR_TEIE;
-               writel_relaxed(cr, regs_base + OSPI_CR);
-               complete(&ospi->data_completion);
        }
 
        return IRQ_HANDLED;
@@ -884,7 +866,6 @@ static int stm32_ospi_get_resources(struct platform_device *pdev)
                dev_info(dev, "No memory-map region found\n");
        }
 
-       init_completion(&ospi->data_completion);
        init_completion(&ospi->match_completion);
 
        return 0;