From: Changhuang Liang <changhuang.liang@starfivetech.com>
To: jszhang@kernel.org
Cc: broonie@kernel.org, linux-kernel@vger.kernel.org,
linux-spi@vger.kernel.org
Subject: [PATCH v3 4/5] spi: dw: restore previous irq handling behavior when !ctlr->cur_msg
Date: Wed, 23 Sep 2026 19:13:51 -0700 [thread overview]
Message-ID: <20260924021351.3965-1-changhuang.liang@starfivetech.com> (raw)
In-Reply-To: <20260909143652.9234-5-jszhang@kernel.org>
hi, Jisheng
Thanks for the fix.
> Recent "enhanced" support changes the dw_spi_irq() behavior a bit
> when !!ctlr->cur_msg:
>
> if (!ctlr->cur_msg && dws->transfer_handler == dw_spi_transfer_handler) {
> dw_spi_mask_intr(dws, 0xff);
> return IRQ_HANDLED;
> }
>
> But it misses the dma case, where the transfer_handler ==
> dw_spi_dma_transfer_handler, so this changes the previous long time
> working behavior, let's restore the previous handling by only filtering
> out the dw_spi_enh_handler.
>
> Signed-off-by: Jisheng Zhang <jszhang@kernel.org>
Reviewed-by: Changhuang Liang <changhuang.liang@starfivetech.com>
Maybe a “Fixes” tag could be added.
> ---
> drivers/spi/spi-dw-core.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/spi/spi-dw-core.c b/drivers/spi/spi-dw-core.c
> index 91de357f97f3..da7d4872e513 100644
> --- a/drivers/spi/spi-dw-core.c
> +++ b/drivers/spi/spi-dw-core.c
> @@ -280,7 +280,7 @@ static irqreturn_t dw_spi_irq(int irq, void *dev_id)
> if (!irq_status)
> return IRQ_NONE;
>
> - if (!ctlr->cur_msg && dws->transfer_handler == dw_spi_transfer_handler) {
> + if (!ctlr->cur_msg && dws->transfer_handler != dw_spi_enh_handler) {
> dw_spi_mask_intr(dws, 0xff);
> return IRQ_HANDLED;
> }
next prev parent reply other threads:[~2026-09-24 2:14 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-09 14:36 [PATCH v3 0/5] spi: dw: use threaded interrupt Jisheng Zhang
2026-09-09 14:36 ` [PATCH v3 1/5] spi: dw: use DW_SPI_ISR directly Jisheng Zhang
2026-09-09 14:36 ` [PATCH v3 2/5] spi: dw: remove useless dws->transfer_handler check Jisheng Zhang
2026-09-09 14:36 ` [PATCH v3 3/5] spi: dw: remove duplicated "!rx_len && !tx_len" handling from dw_spi_irq Jisheng Zhang
2026-09-24 2:14 ` Changhuang Liang
2026-09-09 14:36 ` [PATCH v3 4/5] spi: dw: restore previous irq handling behavior when !ctlr->cur_msg Jisheng Zhang
2026-09-24 2:13 ` Changhuang Liang [this message]
2026-09-09 14:36 ` [PATCH v3 5/5] spi: dw: use threaded interrupt and optimize the threaded ISR Jisheng Zhang
2026-09-10 22:17 ` Mark Brown
2026-09-11 14:22 ` Joseph Steel
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=20260924021351.3965-1-changhuang.liang@starfivetech.com \
--to=changhuang.liang@starfivetech.com \
--cc=broonie@kernel.org \
--cc=jszhang@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
/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
all inboxes | Powered by JetHome®