From: Mark Brown <broonie@kernel.org>
To: Fabrizio Castro <fabrizio.castro.jz@renesas.com>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Geert Uytterhoeven <geert+renesas@glider.be>,
Magnus Damm <magnus.damm@gmail.com>,
Philipp Zabel <p.zabel@pengutronix.de>,
Cosmin Tanislav <cosmin-gabriel.tanislav.xa@renesas.com>
Cc: linux-spi@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: (subset) [PATCH 00/13] Add DMA support for RZ/T2H RSPI
Date: Mon, 15 Dec 2025 22:59:31 +0900 [thread overview]
Message-ID: <176580717199.161463.3915595459908387302.b4-ty@kernel.org> (raw)
In-Reply-To: <20251201134229.600817-1-cosmin-gabriel.tanislav.xa@renesas.com>
On Mon, 01 Dec 2025 15:42:16 +0200, Cosmin Tanislav wrote:
> The DMA controller can be used to transfer data to and from the SPI
> controller without involving the CPU for each word of a SPI transfer.
>
> Add support for DMA mode, and do some other cleanups while touching the
> same code.
>
> The dts changes in this series depend on the DMA series [1].
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[01/13] spi: rzv2h-rspi: fix rzv2h_rspi_transfer_one() indentation
commit: fb0140774aff45b8dc326987cc1da89484ecb081
[02/13] spi: rzv2h-rspi: remove call to spi_finalize_current_transfer()
commit: 9e4830b35dc0d522f45e1ec3ee5b1ff1648afe1b
[03/13] spi: rzv2h-rspi: do not set SPI_TRANS_FAIL_IO
commit: 218917659df165cff72439480929e68a6e127b55
[04/13] spi: rzv2h-rspi: use device-managed APIs
commit: b73ac782828f27c2217a17bd26aa8710769f032d
[05/13] spi: rzv2h-rspi: store RX interrupt in state
commit: 28b590bd4c6a051ec61cf286a46a8b14846e6fcf
[06/13] spi: rzv2h-rspi: set MUST_RX/MUST_TX
commit: 6f9026b5a18acdf190d1622831b100aacfca0eb3
[07/13] spi: rzv2h-rspi: set TX FIFO threshold to 0
commit: a886baaaa6e12a9b7d5a9687d11d3b895f1b87c9
[08/13] spi: rzv2h-rspi: enable TX buffer empty interrupt
commit: d49eea07de5851e1b8941ad6b6179be7ec36a986
[09/13] spi: rzv2h-rspi: split out PIO transfer
commit: 1e5e10df8b9be71ca64435cbe7c96b189e5ee293
[10/13] dt-bindings: spi: renesas,rzv2h-rspi: document optional support for DMA
commit: 163345e356722e98ba57cd120787d6e991da7b1d
[11/13] spi: rzv2h-rspi: add support for DMA mode
commit: fa08b566860bca8ebf9300090b85174c34de7ca5
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
prev parent reply other threads:[~2025-12-15 13:59 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-01 13:42 Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 01/13] spi: rzv2h-rspi: fix rzv2h_rspi_transfer_one() indentation Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 02/13] spi: rzv2h-rspi: remove call to spi_finalize_current_transfer() Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 03/13] spi: rzv2h-rspi: do not set SPI_TRANS_FAIL_IO Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 04/13] spi: rzv2h-rspi: use device-managed APIs Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 05/13] spi: rzv2h-rspi: store RX interrupt in state Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 06/13] spi: rzv2h-rspi: set MUST_RX/MUST_TX Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 07/13] spi: rzv2h-rspi: set TX FIFO threshold to 0 Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 08/13] spi: rzv2h-rspi: enable TX buffer empty interrupt Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 09/13] spi: rzv2h-rspi: split out PIO transfer Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 10/13] dt-bindings: spi: renesas,rzv2h-rspi: document optional support for DMA Cosmin Tanislav
2025-12-04 21:25 ` Rob Herring (Arm)
2025-12-01 13:42 ` [PATCH 11/13] spi: rzv2h-rspi: add support for DMA mode Cosmin Tanislav
2025-12-01 13:42 ` [PATCH 12/13] arm64: dts: renesas: r9a09g077: wire up DMA support for SPI Cosmin Tanislav
2025-12-23 14:24 ` Geert Uytterhoeven
2025-12-23 14:42 ` Cosmin-Gabriel Tanislav
2025-12-23 16:04 ` Geert Uytterhoeven
2025-12-01 13:42 ` [PATCH 13/13] arm64: dts: renesas: r9a09g087: " Cosmin Tanislav
2025-12-23 14:25 ` Geert Uytterhoeven
2025-12-15 13:59 ` Mark Brown [this message]
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=176580717199.161463.3915595459908387302.b4-ty@kernel.org \
--to=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=cosmin-gabriel.tanislav.xa@renesas.com \
--cc=devicetree@vger.kernel.org \
--cc=fabrizio.castro.jz@renesas.com \
--cc=geert+renesas@glider.be \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=p.zabel@pengutronix.de \
--cc=robh@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®