summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2026-09-06 17:57:50 -0700
committerMark Brown <broonie@kernel.org>2026-09-08 13:01:24 +0100
commit23ea08ca607c2be0d4445dce7942a5049efb1451 (patch)
treea2153efcc54e9f8c7fe06bdaad5b0d816f22a214
parent98477036fc35472834ccfee018fdc99d2d21b073 (diff)
downloadlinux-next-23ea08ca607c2be0d4445dce7942a5049efb1451.tar.gz
linux-next-23ea08ca607c2be0d4445dce7942a5049efb1451.zip
spi: orion: yield to scheduler in transfer wait loop
orion_spi_wait_till_ready() busy-waits in a tight udelay(1) loop, up to 2000 iterations, and is called per byte from the polled, byte-at-a-time transfer path. On SoCs such as the Armada 388 (e.g. SolidRun Helios4), which also run SATA over the shared internal MBus fabric, this stalls the CPU for the whole transfer and delays servicing of SATA interrupts. Under sustained activity this can cause SATA timeouts and link resets (sometimes renegotiating down to SATA II, 3 Gbps). Add cond_resched() to the wait loop so the scheduler can run pending IRQs between polls. This is a no-op at runtime unless the kernel is built with CONFIG_PREEMPT enabled, where it lets other peripheral interrupts be serviced during SPI transfers. Built with LLVM=1 ARCH=powerpc; passes checkpatch --strict. Assisted-by: opencode:big-pickle Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://patch.msgid.link/20260907005750.230103-1-rosenp@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--drivers/spi/spi-orion.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/spi/spi-orion.c b/drivers/spi/spi-orion.c
index 26a9f268b2d3..b8882229c054 100644
--- a/drivers/spi/spi-orion.c
+++ b/drivers/spi/spi-orion.c
@@ -370,7 +370,16 @@ static inline int orion_spi_wait_till_ready(struct orion_spi *orion_spi)
if (readl(spi_reg(orion_spi, ORION_SPI_INT_CAUSE_REG)))
return 1;
+ /*
+ * This is a polled, byte-at-a-time transfer loop. Each
+ * iteration busy-waits in a tight udelay() loop, which can
+ * starve other time-sensitive peripherals (e.g. SATA) of CPU
+ * time and interfere with them if they run on this SoC.
+ * Yield to the scheduler between polls so pending IRQs can
+ * be serviced.
+ */
udelay(1);
+ cond_resched();
}
return -1;