From: "Benoît Monin" <benoit.monin@bootlin.com>
To: Frank Li <Frank.li@nxp.com>
Cc: "Benoît Monin" <benoit.monin@bootlin.com>,
"Vinod Koul" <vkoul@kernel.org>,
"Thomas Petazzoni" <thomas.petazzoni@bootlin.com>,
"Frank Li" <Frank.Li@kernel.org>,
imx@lists.linux.dev, dmaengine@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH RFC 2/2] dmaengine: fsl-edma: Support dynamic scatter/gather chaining
Date: Thu, 7 May 2026 16:15:19 +0200 [thread overview]
Message-ID: <a658efd5a6990632def9684007573fff3e130979.1778160702.git.benoit.monin@bootlin.com> (raw)
In-Reply-To: <aftUorBAXzTD1BBD@lizhi-Precision-Tower-5810>
On Wednesday, 6 May 2026 at 16:48:02 CEST, Frank Li wrote:
> On Wed, May 06, 2026 at 04:01:37PM +0200, Benoît Monin wrote:
> > On Tuesday, 5 May 2026 at 17:07:48 CEST, Frank Li wrote:
> > > > > how do you test it? and how much preformance improved?
> > > > I did my tests by doing SPI transfers with the LPSPI controllers, doing DMA
> > > > transactions with different number of buffers and different buffer sizes.
> > > > Without chaining, interruptions on the SPI bus occur between each DMA
> > > > transaction. With chaining, the activity on the SPI bus is continuous as
> > > > long as DMA transactions are issued before the end of the current
> > > > transaction.
> > >
> > > Does SPI support issue new transfers without wait for previous transfer
> > > complete, or SPI transfer already support async queue?
> > >
> > This is done with a local version of fsl-lpspi driver adding a simple
> > offload support by borrowing the DMA channels allocated to the SPI
> > controller. I can then issue multiple DMA transactions with the dma_buf API
> > of the IIO subsystem and trigger SG chaining.
>
> Can you include these patches to reference?
>
Here it is, beware that this is work in progress.
---
WIP: spi: spi-fsl-lpspi: Add Rx offload support
Add minimal support for SPI offload Currently, only the receive path
can be offloaded. SPI offload is enabled when a trigger-sources entry
is found in the device tree.
SPI offload uses the Rx DMA channel that is normally used by the
controller, thus non-offloaded SPI accesses are done in PIO mode
if offloading is enabled.
Signed-off-by: Benoît Monin <benoit.monin@bootlin.com>
---
drivers/spi/spi-fsl-lpspi.c | 180 +++++++++++++++++++++++++++++++++++-
1 file changed, 179 insertions(+), 1 deletion(-)
diff --git a/drivers/spi/spi-fsl-lpspi.c b/drivers/spi/spi-fsl-lpspi.c
index e201309f8aae..d873581a776a 100644
--- a/drivers/spi/spi-fsl-lpspi.c
+++ b/drivers/spi/spi-fsl-lpspi.c
@@ -23,6 +23,7 @@
#include <linux/dma/imx-dma.h>
#include <linux/pm_runtime.h>
#include <linux/slab.h>
+#include <linux/spi/offload/provider.h>
#include <linux/spi/spi.h>
#include <linux/spi/spi_bitbang.h>
#include <linux/types.h>
@@ -136,6 +137,12 @@ struct fsl_lpspi_data {
struct completion dma_rx_completion;
struct completion dma_tx_completion;
+ /* offload */
+ struct spi_offload *offload;
+ struct mutex offload_lock;
+ u32 offload_caps;
+ struct dma_chan *offload_rx_chan;
+
const struct fsl_lpspi_devtype_data *devtype_data;
};
@@ -729,6 +736,10 @@ static int fsl_lpspi_dma_init(struct device *dev,
{
int ret;
+ /* The DMA channels are reserved for offload */
+ if (fsl_lpspi->offload)
+ return -EBUSY;
+
/* Prepare for TX DMA: */
controller->dma_tx = dma_request_chan(dev, "tx");
if (IS_ERR(controller->dma_tx)) {
@@ -889,6 +900,151 @@ static int fsl_lpspi_init_rpm(struct fsl_lpspi_data *fsl_lpspi)
return 0;
}
+static int fsl_lpspi_optimize_message(struct spi_message *msg)
+{
+ struct spi_controller *controller = msg->spi->controller;
+ struct fsl_lpspi_data *fsl_lpspi = spi_controller_get_devdata(controller);
+ struct spi_transfer *xfer;
+
+ if (!msg->offload)
+ return 0;
+
+ /* We can only offload one transfer */
+ if (!list_is_singular(&msg->transfers))
+ return -EINVAL;
+
+ /* gather info for offloaded message */
+ xfer = list_first_entry(&msg->transfers, struct spi_transfer, transfer_list);
+ fsl_lpspi->config.mode = msg->spi->mode;
+ fsl_lpspi->config.bpw = xfer->bits_per_word;
+
+ return 0;
+}
+
+static struct spi_offload
+*fsl_lpspi_get_offload(struct spi_device *spi,
+ const struct spi_offload_config *config)
+{
+ struct spi_controller *controller = spi->controller;
+ struct fsl_lpspi_data *fsl_lpspi;
+ int ret;
+
+ fsl_lpspi = spi_controller_get_devdata(controller);
+
+ if (!fsl_lpspi->offload)
+ return ERR_PTR(-ENODEV);
+
+ if (config->capability_flags & ~fsl_lpspi->offload_caps)
+ return ERR_PTR(-EINVAL);
+
+ if (!mutex_trylock(&fsl_lpspi->offload_lock))
+ return ERR_PTR(-EBUSY);
+
+ ret = pm_runtime_resume_and_get(fsl_lpspi->dev);
+ if (ret < 0) {
+ dev_err(fsl_lpspi->dev, "failed to enable clock\n");
+ return ERR_PTR(ret);
+ }
+
+ fsl_lpspi_reset(fsl_lpspi);
+
+ return fsl_lpspi->offload;
+}
+
+static void fsl_lpspi_put_offload(struct spi_offload *offload)
+{
+ struct fsl_lpspi_data *fsl_lpspi = offload->priv;
+
+ pm_runtime_put_autosuspend(fsl_lpspi->dev);
+
+ mutex_unlock(&fsl_lpspi->offload_lock);
+}
+
+static int fsl_lpspi_trigger_enable(struct spi_offload *offload)
+{
+ struct fsl_lpspi_data *fsl_lpspi = offload->priv;
+ enum dma_slave_buswidth buswidth;
+ struct dma_slave_config cfg = {};
+ u32 temp;
+ int ret;
+
+ switch (fsl_lpspi_bytes_per_word(fsl_lpspi->config.bpw)) {
+ case 4:
+ buswidth = DMA_SLAVE_BUSWIDTH_4_BYTES;
+ break;
+ case 2:
+ buswidth = DMA_SLAVE_BUSWIDTH_2_BYTES;
+ break;
+ case 1:
+ buswidth = DMA_SLAVE_BUSWIDTH_1_BYTE;
+ break;
+ default:
+ return -EINVAL;
+ }
+
+ /* configure the DMA channel */
+ cfg.direction = DMA_DEV_TO_MEM;
+ cfg.src_addr = fsl_lpspi->base_phys + IMX7ULP_RDR;
+ cfg.src_addr_width = buswidth;
+ cfg.src_maxburst = 1;
+
+ ret = dmaengine_slave_config(fsl_lpspi->offload_rx_chan, &cfg);
+ if (ret) {
+ dev_err(offload->provider_dev, "RX dma configuration failed with %d\n",
+ ret);
+ return ret;
+ }
+ fsl_lpspi_config(fsl_lpspi);
+ fsl_lpspi_set_cmd(fsl_lpspi);
+
+ /* enable Rx DMA */
+ temp = DER_RDDE;
+ writel(temp, fsl_lpspi->base + IMX7ULP_DER);
+
+ return 0;
+}
+
+static void fsl_lpspi_trigger_disable(struct spi_offload *offload)
+{
+ struct fsl_lpspi_data *fsl_lpspi = offload->priv;
+
+ fsl_lpspi_reset(fsl_lpspi);
+}
+
+static struct dma_chan
+*fsl_lpspi_rx_stream_request_dma_chan(struct spi_offload *offload)
+{
+ struct fsl_lpspi_data *fsl_lpspi = offload->priv;
+ struct dma_slave_config cfg = {};
+ int ret;
+
+ fsl_lpspi->offload_rx_chan = dma_request_chan(offload->provider_dev, "rx");
+ if (IS_ERR(fsl_lpspi->offload_rx_chan))
+ return fsl_lpspi->offload_rx_chan;
+
+ /* set a default configuration */
+ cfg.direction = DMA_DEV_TO_MEM;
+ cfg.src_addr = fsl_lpspi->base_phys + IMX7ULP_RDR;
+ cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
+ cfg.src_maxburst = 1;
+
+ ret = dmaengine_slave_config(fsl_lpspi->offload_rx_chan, &cfg);
+ if (ret) {
+ dma_release_channel(fsl_lpspi->offload_rx_chan);
+ dev_err(offload->provider_dev, "RX dma configuration failed with %d\n",
+ ret);
+ return ERR_PTR(ret);
+ }
+
+ return fsl_lpspi->offload_rx_chan;
+}
+
+static const struct spi_offload_ops fsl_lpspi_offload_ops = {
+ .trigger_enable = fsl_lpspi_trigger_enable,
+ .trigger_disable = fsl_lpspi_trigger_disable,
+ .rx_stream_request_dma_chan = fsl_lpspi_rx_stream_request_dma_chan,
+};
+
static int fsl_lpspi_probe(struct platform_device *pdev)
{
const struct fsl_lpspi_devtype_data *devtype_data;
@@ -958,6 +1114,24 @@ static int fsl_lpspi_probe(struct platform_device *pdev)
return ret;
}
+ if (device_property_present(&pdev->dev, "trigger-sources")) {
+ fsl_lpspi->offload = devm_spi_offload_alloc(&pdev->dev, 0);
+ ret = PTR_ERR_OR_ZERO(fsl_lpspi->offload);
+ if (ret) {
+ dev_err(fsl_lpspi->dev, "failed to allocate offload\n");
+ return ret;
+ }
+ mutex_init(&fsl_lpspi->offload_lock);
+ fsl_lpspi->offload->priv = fsl_lpspi;
+ fsl_lpspi->offload->ops = &fsl_lpspi_offload_ops;
+ fsl_lpspi->offload_caps = SPI_OFFLOAD_CAP_TRIGGER;
+
+ if (device_property_match_string(&pdev->dev, "dma-names", "rx") >= 0) {
+ fsl_lpspi->offload->xfer_flags = SPI_OFFLOAD_XFER_RX_STREAM;
+ fsl_lpspi->offload_caps |= SPI_OFFLOAD_CAP_RX_STREAM_DMA;
+ }
+ }
+
/* enable the clock */
ret = fsl_lpspi_init_rpm(fsl_lpspi);
if (ret)
@@ -985,6 +1159,9 @@ static int fsl_lpspi_probe(struct platform_device *pdev)
controller->transfer_one = fsl_lpspi_transfer_one;
controller->prepare_transfer_hardware = lpspi_prepare_xfer_hardware;
controller->unprepare_transfer_hardware = lpspi_unprepare_xfer_hardware;
+ controller->optimize_message = fsl_lpspi_optimize_message;
+ controller->get_offload = fsl_lpspi_get_offload;
+ controller->put_offload = fsl_lpspi_put_offload;
controller->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
controller->flags = SPI_CONTROLLER_MUST_RX | SPI_CONTROLLER_MUST_TX;
controller->bus_num = pdev->id;
@@ -997,7 +1174,8 @@ static int fsl_lpspi_probe(struct platform_device *pdev)
if (ret == -EPROBE_DEFER)
goto out_pm_get;
if (ret < 0) {
- dev_warn(&pdev->dev, "dma setup error %d, use pio\n", ret);
+ if (!fsl_lpspi->offload)
+ dev_warn(&pdev->dev, "dma setup error %d, use pio\n", ret);
enable_irq(irq);
}
prev parent reply other threads:[~2026-05-07 14:15 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-30 9:49 [PATCH RFC 0/2] dmaengine: fsl-edma: Scatter/gather improvements Benoît Monin
2026-04-30 9:49 ` [PATCH RFC 1/2] dmaengine: fsl-edma: Implement device_prep_peripheral_dma_vec Benoît Monin
2026-05-04 15:58 ` Frank Li
2026-05-05 13:51 ` Benoît Monin
2026-04-30 9:49 ` [PATCH RFC 2/2] dmaengine: fsl-edma: Support dynamic scatter/gather chaining Benoît Monin
2026-05-04 16:04 ` Frank Li
2026-05-05 13:51 ` Benoît Monin
2026-05-05 15:07 ` Frank Li
2026-05-06 14:01 ` Benoît Monin
2026-05-06 14:48 ` Frank Li
2026-05-07 14:15 ` Benoît Monin [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=a658efd5a6990632def9684007573fff3e130979.1778160702.git.benoit.monin@bootlin.com \
--to=benoit.monin@bootlin.com \
--cc=Frank.Li@kernel.org \
--cc=Frank.li@nxp.com \
--cc=dmaengine@vger.kernel.org \
--cc=imx@lists.linux.dev \
--cc=linux-kernel@vger.kernel.org \
--cc=thomas.petazzoni@bootlin.com \
--cc=vkoul@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