All of lore.kernel.org
 help / color / mirror / Atom feed
From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Lizhi Hou <lizhi.hou@amd.com>, Brian Xu <brian.xu@amd.com>,
	Raj Kumar Rampelli <raj.kumar.rampelli@amd.com>,
	Vinod Koul <vkoul@kernel.org>, Michal Simek <monstr@monstr.eu>
Cc: dmaengine@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
	linux-kernel@vger.kernel.org,
	Miquel Raynal <miquel.raynal@bootlin.com>
Subject: [PATCH v3 0/3] dmaengine: xdma: Cyclic transfers support
Date: Thu,  5 Oct 2023 18:02:34 +0200	[thread overview]
Message-ID: <20231005160237.2804238-1-miquel.raynal@bootlin.com> (raw)

Hello,

Following the introduction of scatter-gather support of Xilinx's XDMA IP
in the Linux kernel, here is a small series adding cyclic transfers.

The first patch is a preparation patch to ease the review of the second
one which actually adds cyclic transfers support.

Thanks,
Miquèl

Changes in v3:
* Fixed the kdoc: missing 'cyclic' description in xdma_free_desc().

Changes in v2:
* Rebased on top of v6.6-rc1
* Removed the if (!state) superfluous check.
* Address a kernel test robot report (uninitialized variable in error case)
* Simplify the convoluted logic when filling the hardware descriptors

Miquel Raynal (3):
  ASoC: soc-generic-dmaengine-pcm: Fix function name in comment
  dmaengine: xilinx: xdma: Prepare the introduction of cyclic transfers
  dmaengine: xilinx: xdma: Support cyclic transfers

 drivers/dma/xilinx/xdma-regs.h        |   2 +
 drivers/dma/xilinx/xdma.c             | 179 ++++++++++++++++++++++++--
 sound/soc/soc-generic-dmaengine-pcm.c |   4 +-
 3 files changed, 175 insertions(+), 10 deletions(-)

-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Lizhi Hou <lizhi.hou@amd.com>, Brian Xu <brian.xu@amd.com>,
	Raj Kumar Rampelli <raj.kumar.rampelli@amd.com>,
	Vinod Koul <vkoul@kernel.org>, Michal Simek <monstr@monstr.eu>
Cc: dmaengine@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
	linux-kernel@vger.kernel.org,
	Miquel Raynal <miquel.raynal@bootlin.com>
Subject: [PATCH v3 0/3] dmaengine: xdma: Cyclic transfers support
Date: Thu,  5 Oct 2023 18:02:34 +0200	[thread overview]
Message-ID: <20231005160237.2804238-1-miquel.raynal@bootlin.com> (raw)

Hello,

Following the introduction of scatter-gather support of Xilinx's XDMA IP
in the Linux kernel, here is a small series adding cyclic transfers.

The first patch is a preparation patch to ease the review of the second
one which actually adds cyclic transfers support.

Thanks,
Miquèl

Changes in v3:
* Fixed the kdoc: missing 'cyclic' description in xdma_free_desc().

Changes in v2:
* Rebased on top of v6.6-rc1
* Removed the if (!state) superfluous check.
* Address a kernel test robot report (uninitialized variable in error case)
* Simplify the convoluted logic when filling the hardware descriptors

Miquel Raynal (3):
  ASoC: soc-generic-dmaengine-pcm: Fix function name in comment
  dmaengine: xilinx: xdma: Prepare the introduction of cyclic transfers
  dmaengine: xilinx: xdma: Support cyclic transfers

 drivers/dma/xilinx/xdma-regs.h        |   2 +
 drivers/dma/xilinx/xdma.c             | 179 ++++++++++++++++++++++++--
 sound/soc/soc-generic-dmaengine-pcm.c |   4 +-
 3 files changed, 175 insertions(+), 10 deletions(-)

-- 
2.34.1


             reply	other threads:[~2023-10-05 16:03 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-05 16:02 Miquel Raynal [this message]
2023-10-05 16:02 ` [PATCH v3 0/3] dmaengine: xdma: Cyclic transfers support Miquel Raynal
2023-10-05 16:02 ` [PATCH v3 1/3] ASoC: soc-generic-dmaengine-pcm: Fix function name in comment Miquel Raynal
2023-10-05 16:02   ` Miquel Raynal
2023-10-09  5:28   ` Vinod Koul
2023-10-09  5:28     ` Vinod Koul
2023-10-05 16:02 ` [PATCH v3 2/3] dmaengine: xilinx: xdma: Prepare the introduction of cyclic transfers Miquel Raynal
2023-10-05 16:02   ` Miquel Raynal
2023-10-05 16:02 ` [PATCH v3 3/3] dmaengine: xilinx: xdma: Support " Miquel Raynal
2023-10-05 16:02   ` Miquel Raynal
2023-10-09  6:12 ` (subset) [PATCH v3 0/3] dmaengine: xdma: Cyclic transfers support Vinod Koul
2023-10-09  6:12   ` Vinod Koul

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=20231005160237.2804238-1-miquel.raynal@bootlin.com \
    --to=miquel.raynal@bootlin.com \
    --cc=brian.xu@amd.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lizhi.hou@amd.com \
    --cc=monstr@monstr.eu \
    --cc=raj.kumar.rampelli@amd.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.