From: Vishwaroop A <va@nvidia.com>
To: Mark Brown <broonie@kernel.org>
Cc: Thierry Reding <thierry.reding@gmail.com>,
Jon Hunter <jonathanh@nvidia.com>,
Laxman Dewangan <ldewangan@nvidia.com>,
"Sowjanya Komatineni" <skomatineni@nvidia.com>,
Breno Leitao <leitao@debian.org>,
"Suresh Mangipudi" <smangipudi@nvidia.com>,
Krishna Yarlagadda <kyarlagadda@nvidia.com>,
<linux-tegra@vger.kernel.org>, <linux-spi@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, Vishwaroop A <va@nvidia.com>
Subject: [PATCH v6 0/3] spi: tegra210-quad: Improve interrupt handling for loaded systems
Date: Thu, 13 Aug 2026 20:00:24 +0000 [thread overview]
Message-ID: <20260813200027.2711863-1-va@nvidia.com> (raw)
The current threaded IRQ implementation in spi-tegra210-quad suffers
from scheduler-induced latency on heavily loaded systems. The old
irq_thread() runs SCHED_FIFO but is pinned by the kernel to the IRQ
affinity mask (typically one CPU); when that CPU is saturated by RT
workloads (e.g. NCCL multicast) or by an SPI transaction coming from
a higher-priority context, the sleeping DMA/PIO wait inside the IRQ
thread cannot progress and wait_for_completion_timeout() in
transfer_one_message expires - even though the QSPI hardware
finished on time. This results in false timeout errors and WARN_ON
splats during normal operation.
This series addresses the problem in three steps:
1. Convert the threaded IRQ handler to a hard IRQ + high-priority
unbound workqueue model. The hard IRQ does the minimum: capture
FIFO status, mask and clear the controller IRQ, then schedule the
bottom half. The workqueue handler runs in process context (can
sleep for DMA completion) and runs on any CPU in the WQ_UNBOUND
pool, so the bottom half can migrate off the interrupt-taking CPU
that the previous threaded IRQ pinned to via
set_cpus_allowed_ptr(irq_affinity).
2. Cache QSPI_TRANS_STATUS in the ISR before clearing it. This lets
the timeout handler distinguish between a real hardware timeout
(QSPI_RDY not set) and a delayed workqueue (QSPI_RDY set),
preventing false timeout errors when hardware has already
completed. Pair the cache publication with
smp_store_release()/smp_load_acquire() so the timeout handler
observes a coherent set of cached fields on weakly-ordered
architectures. In v6 the timeout handler is additionally serialised
with the workqueue via cancel_work_sync() and only runs the manual
completion fallback on the last chunk of a transfer (see "Changes
since v5" below for the multi-chunk DMA race Mark identified).
3. Process small PIO transfers (those that complete the whole
spi_transfer in a single chunk) directly in hard IRQ context,
eliminating workqueue scheduling latency for TPM-style short reads.
Runtime PM lifetime note (unchanged from v4): the work handler only
touches QSPI MMIO when curr_xfer is non-NULL. While curr_xfer is set,
the transfer thread is blocked in wait_for_completion_timeout() with
the SPI core's runtime PM reference held, so the clocks are
guaranteed on. When the work handler runs late after the timeout path
has already processed the transfer, it sees curr_xfer == NULL and
returns without any MMIO. With this invariant no additional PM
reference handoff between the ISR and the work handler is needed.
Changes since v5 (addressing review by Mark Brown [1][2]):
Patch 1 ("Convert to hard IRQ with high-priority workqueue"):
- Rewrote the commit message to be honest about the priority
trade-off. WQ_HIGHPRI worker runs SCHED_NORMAL at nice -20
(HIGHPRI_NICE_LEVEL = MIN_NICE in kernel/workqueue.c) whereas
irq_thread() runs SCHED_FIFO. A real-time userspace task will
therefore preempt the bottom half where it would not have
preempted the old irq_thread. The changelog now spells out
what is gained in exchange - hard-IRQ status latching that is
independent of the process scheduler, WQ_UNBOUND worker
migration off the interrupt-taking CPU that irq_thread() could
not leave, and the small-PIO fastpath (patch 3) that removes
the worker from the latency-sensitive TPM path entirely.
Addresses Mark's "The high priority workqueue is a SCHED_NORMAL
task with priority -20 so it can be starved by real time tasks
running at SCHED_FIFO" review comment.
The wording explicitly notes that the hard IRQ can still be
delayed by higher-priority IRQ handling or local IRQ-disabled /
non-preemptible sections; it is not subject to the process
scheduler, but it is not literally immediate either.
- Removed the reference to cancel_work_sync() from the
tegra_qspi_work_handler() comment in this patch. That call is
introduced in patch 2, so the v5 comment described behaviour
that did not exist at patch 1's bisect point. Patch 2 now
updates the same comment to describe the serialisation once
cancel_work_sync() is actually in place. Addresses Mark's
"That's actually in patch 2 so we have a bisect issue here"
comment.
- Reworded the tegra_qspi_work_handler() kernel-doc: threaded
IRQ pins to the IRQ affinity mask (not necessarily CPU0).
Patch 2 ("Cache TRANS_STATUS in ISR for timeout handler"):
- Rewrote tegra_qspi_handle_timeout() to close the multi-chunk
DMA race Mark identified. After cancel_work_sync() drains the
bottom half, try_wait_for_completion(&xfer_completion) is
called first; a full-transfer completion signalled by the
work handler during the drain is consumed and the handler
returns 0. Otherwise the fallback that invokes
handle_{cpu,dma}_based_xfer() from process context is now
gated on "is the current chunk the last chunk of the
transfer?", computed under tqspi->lock as
cur_pos + curr_dma_words * bytes_per_word >= t->len
which is the same expression tegra_qspi_start_cpu_based_
transfer() already uses to set is_last_pio_chunk. On an
intermediate chunk of a multi-chunk DMA transfer the work
handler may have processed the current chunk and armed the
next chunk (unmasked the IRQ and kicked HW) before
cancel_work_sync() returned; running another handler from
handle_timeout() there would let seq_xfer() clear curr_xfer
and finalise the message while the DMA engine is still
moving the next chunk into the client buffer. Multi-chunk
continuation timeouts now return -ETIMEDOUT and the caller's
existing dma_stop() + reset() path cleans up. Addresses
Mark's "handle_dma_based_xfer() starts a new DMA after the
current one completes if there's more work to do but it
looks like _combined_seq_xfer() will clear curr_xfer if we
didn't get an error from handling the timeout" review
comment.
- Added a recovery_in_progress guard. tegra_qspi_handle_timeout()
publishes recovery_in_progress under tqspi->lock; the ISR
checks it under the same lock and skips both the small-PIO
fastpath dispatch and queue_work() while recovery runs. Both
dispatch decisions inside the ISR now happen while still
holding tqspi->lock (queue_work() is safe to call from
spinlock context), so the guard is atomic with the dispatch
decision. Any ISR that had already released the lock and is
about to run its fastpath / queue_work() is drained by
synchronize_irq(tqspi->irq), which handle_timeout() calls
immediately after masking the controller IRQ. This closes the
residual re-enqueue race where a running worker armed the next
chunk during the drain, unmasked the controller, and let a
subsequent RDY IRQ enqueue a fresh worker after
cancel_work_sync() returned.
- Reordered the ISR so trans_status is published via
smp_store_release() *before* tegra_qspi_mask_clear_irq()
clears QSPI_TRANS_STATUS in hardware. In the previous ordering
a timeout handler on another CPU that saw the cache still zero
(release not yet visible) and fell back to a live
QSPI_TRANS_STATUS read could observe the hardware bit already
cleared, reporting a false timeout on a transfer that had in
fact just completed. Publishing the cache first keeps the
"cache miss -> live read" fallback consistent: the live read
still sees QSPI_RDY until the cache is visible.
- Re-mask and synchronize_irq() at the exit of
tegra_qspi_handle_timeout() before clearing
recovery_in_progress. The drained worker may have unmasked the
controller IRQ when arming the next chunk of a multi-chunk
transfer; without re-masking here a lingering RDY IRQ that
arrives after this function returns could enter the ISR after
recovery_in_progress has been cleared, queue a fresh worker
and race the caller's dma_stop() + device_reset() + curr_xfer
clear path.
- handle_timeout() now enters recovery unconditionally rather
than returning -ETIMEDOUT before serialising against the ISR
and worker. Every expired wait_for_completion_timeout() masks
the controller IRQ, synchronize_irq()s to drain any in-flight
hard IRQ (including the small-PIO fastpath), and
cancel_work_sync()s the workqueue before deciding whether the
hardware finished. The RDY classification runs *after* this
quiesce, so a genuine hardware timeout still ends up as
-ETIMEDOUT but the caller's dma_stop() + device_reset() +
curr_xfer clear no longer races a delayed ISR that fires
immediately after the entry status sample.
- Added a cache-live-cache retry to the entry trans_status
classification. The initial smp_load_acquire() may miss a
concurrent smp_store_release() from an ISR on another CPU; if
the subsequent live QSPI_TRANS_STATUS read also returns zero
(because the ISR W1C'd it between our two loads), a second
cache load observes the now-visible release. Without this
retry the timeout path could report -ETIMEDOUT on a transfer
that actually completed but whose cache publication was still
in flight.
- Added a lost-IRQ FIFO snapshot. When the ISR cache is empty
but the live QSPI_TRANS_STATUS shows RDY (a genuine lost or
severely delayed IRQ), snapshot QSPI_FIFO_STATUS *before*
tegra_qspi_mask_clear_irq() W1Cs the FIFO error bits, then
publish that snapshot into tqspi->{status_reg,tx_status,
rx_status} after the drain. Without this the manual final-
chunk handler would operate on stale tx_status / rx_status
fields from a previous chunk's ISR.
- Updated the tegra_qspi_handle_timeout() kernel-doc to
describe the last-chunk gate and the reason multi-chunk
continuation timeouts must surface -ETIMEDOUT.
- Updated the tegra_qspi_work_handler() comment to describe the
cancel_work_sync() + recovery_in_progress serialisation (now
in this patch, where both live).
- Corrected the cancel_work_sync() description in the
handle_timeout() comment and commit message: cancel_work_sync()
cancels a pending worker without executing it and waits for a
currently running worker to finish (v5 wording incorrectly
said "executes a pending work synchronously").
- Changed the is_curr_dma_xfer read in handle_timeout() to
READ_ONCE(), matching the WRITE_ONCE() used in the writers.
Consistency cleanup inside the function this patch is
already touching.
Patch 3 ("Process small PIO transfers in hard IRQ context"):
- The small-PIO fastpath is now dispatched while still holding
tqspi->lock (the lock is dropped only immediately before the
call to handle_cpu_based_xfer(), which takes the lock
internally). This puts the fastpath decision under the same
recovery_in_progress guard as queue_work() in patch 2, so
tegra_qspi_handle_timeout() cannot race a hard-IRQ fastpath
run: either the ISR observes recovery_in_progress == true
under the lock and returns early, or it commits to the
fastpath dispatch before handle_timeout() can proceed past
synchronize_irq(). No functional change to the fastpath
itself.
Changes since v4 (addressing review by Mark Brown [3]):
Patch 1 ("Convert to hard IRQ with high-priority workqueue"):
- Rewrote the tegra_qspi_work_handler() comment to describe the
serialisation invariant honestly (superseded by patch-1 fixes
in v6 above; the current wording lives in patch 2 where
cancel_work_sync() exists). Addresses Mark's "Can't the
timeout handler also be running at the same time as this?"
comment on v4.
- Converted the tegra_qspi_isr() header comment to a proper
kernel-doc block, with @irq / @context_data / Return: fields.
No functional change.
Patch 2 ("Cache TRANS_STATUS in ISR for timeout handler"):
- Serialise tegra_qspi_handle_timeout() against the workqueue.
Mask the controller IRQ (tegra_qspi_mask_clear_irq()) and then
cancel_work_sync(&tqspi->irq_work) at the top of the recovery
path. Once cancel_work_sync() returns the bottom half is
neither running nor pending. Addresses Mark's "This can be
called from both tegra_qspi_work_handler() and
tegra_qspi_handle_timeout() - I can't see what stops them
both handling and completing the same transfer simultaneously?"
v4 review comment.
- Clear the cached trans_status per chunk. Add
smp_store_release(&trans_status, 0) immediately before
tegra_qspi_unmask_irq() in both tegra_qspi_start_cpu_based_
transfer() and tegra_qspi_start_dma_based_transfer(), so a
multi-chunk DMA transfer (or the DMA -> PIO tail-chunk
transition) cannot leave a stale RDY from chunk N in the cache
when chunk N+1's completion times out. Addresses Mark's "It
looks like the CPU based transfer function supports multiple
interrupts per transfer ... don't we need to clear
trans_status when we handle the interrupt as well?" v4
review comment.
- Take tqspi->lock across the ISR's status snapshot and cache
publish sequence, and move tegra_qspi_mask_clear_irq() inside
the locked region. Closes the QSPI_INTR_MASK RMW race Mark
had already flagged on v3.
Patch 3 ("Process small PIO transfers in hard IRQ context"):
- Comment-only reflows to match the surrounding text.
Changes since v3 (addressing review by Mark Brown):
Patch 1 ("Convert to hard IRQ with high-priority workqueue"):
- Dropped IRQF_SHARED. Tegra QSPI uses a dedicated GIC SPI line
on every SoC that uses this driver, so the ISR does not need
a runtime PM reference. Addresses Mark's "Since we now have
IRQF_SHARED we need to take a runtime PM reference here"
comment.
- Switched from devm_request_irq() to plain request_irq() in
probe() and added explicit free_irq() in remove(), in the
order: spi_unregister_controller -> free_irq ->
destroy_workqueue -> pm_runtime_dont_use_autosuspend ->
pm_runtime_force_suspend -> tegra_qspi_deinit_dma. Addresses
Mark's "devm + non-devm mix seems likely to be racy"
comments on probe() and remove().
- Removed the tegra_qspi_unmask_irq() call from the
work_handler NULL-bail path. Addresses Mark's "unmask after
dropping the lock feels like it opens up races" comment.
- Snapshot tqspi->curr_xfer under tqspi->lock at the top of
handle_dma_based_xfer() so the DMA waits operate on a stable
transfer pointer even if the timeout path clears curr_xfer
concurrently. Integrates cleanly with Breno Leitao's
recently merged protect-curr_xfer series.
Patch 2 ("Cache TRANS_STATUS in ISR for timeout handler"):
- Cached status_reg / tx_status / rx_status / trans_status are
now published with WRITE_ONCE() and smp_store_release() and
consumed with smp_load_acquire() in
tegra_qspi_handle_timeout(). Live MMIO fallback via
tegra_qspi_readl() only runs when the cache is still zero
(the ISR never ran).
Patch 3 ("Process small PIO transfers in hard IRQ context"):
- Replaced the previous "curr_dma_words <= QSPI_FIFO_DEPTH"
check with a tqspi->is_last_pio_chunk scalar computed in
tegra_qspi_start_cpu_based_transfer() before it unmasks the
IRQ. Addresses Mark's "Is cur_dma_words always in the same
units as QSPI_FIFO_DEPTH - I see there's packed transfer
support in the driver?" comment.
- Fastpath additionally gates on tx_status == 0 &&
rx_status == 0 because handle_cpu_based_xfer()'s error path
calls tegra_qspi_handle_error() -> device_reset(), which can
sleep and must not run from hard IRQ context.
- is_curr_dma_xfer and is_last_pio_chunk are written from
process context and read lock-free from the hard IRQ handler
and the workqueue handler, so the writers use WRITE_ONCE()
and the readers use READ_ONCE().
Changes since v2:
- Added cancel_work_sync() in remove to flush pending work
before devm tore down the workqueue (Jon Hunter). v4 has
replaced devm altogether per Mark Brown's comment, so the
explicit teardown now relies on free_irq() preventing new
work being queued, followed by destroy_workqueue() draining
what is in-flight.
- Rewrote patch 2 commit message to describe the race in terms
of the workqueue model rather than referencing the old
threaded IRQ (Jon).
- s/NULLed/cleared/ in code comment (Jon).
Changes since v1:
- Switched to devm_alloc_workqueue() and devm_request_irq() for
resource management (Jon Hunter). v4 has since reverted to
non-devm for the IRQ and workqueue per Mark Brown's review,
so teardown order can be made explicit.
- Improved patch 2 commit message to explain the timeout race
scenario and clarify that the issue pre-exists the workqueue
conversion (Jon).
- Removed unnecessary local variable in tegra_qspi_handle_timeout
(Jon).
- Moved "workqueue was delayed" comment updates from patch 2 to
patch 1, since patch 1 introduces the workqueue (Jon).
The series is based on linux-next (next-20260810).
[1] https://lore.kernel.org/linux-spi/bbc6a709-7c83-4866-8905-39ab4d8b3b77@sirena.org.uk/
[2] https://lore.kernel.org/linux-spi/c1100cde-ffe9-42b7-9f21-827cae7248e7@sirena.org.uk/
[3] https://lore.kernel.org/linux-spi/20260610062400.1502354-1-va@nvidia.com/
Vishwaroop A (3):
spi: tegra210-quad: Convert to hard IRQ with high-priority workqueue
spi: tegra210-quad: Cache TRANS_STATUS in ISR for timeout handler
spi: tegra210-quad: Process small PIO transfers in hard IRQ context
drivers/spi/spi-tegra210-quad.c | 509 +++++++++++++++++++++++++++-----
1 file changed, 441 insertions(+), 68 deletions(-)
--
2.17.1
next reply other threads:[~2026-08-13 20:00 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-13 20:00 Vishwaroop A [this message]
2026-08-13 20:00 ` [PATCH v6 1/3] spi: tegra210-quad: Convert to hard IRQ with high-priority workqueue Vishwaroop A
2026-08-13 20:00 ` [PATCH v6 2/3] spi: tegra210-quad: Cache TRANS_STATUS in ISR for timeout handler Vishwaroop A
2026-08-13 20:00 ` [PATCH v6 3/3] spi: tegra210-quad: Process small PIO transfers in hard IRQ context Vishwaroop A
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260813200027.2711863-1-va@nvidia.com \
--to=va@nvidia.com \
--cc=broonie@kernel.org \
--cc=jonathanh@nvidia.com \
--cc=kyarlagadda@nvidia.com \
--cc=ldewangan@nvidia.com \
--cc=leitao@debian.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=skomatineni@nvidia.com \
--cc=smangipudi@nvidia.com \
--cc=thierry.reding@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox