From: Frank Li <Frank.li@nxp.com>
To: Manivannan Sadhasivam <mani@kernel.org>
Cc: "Vinod Koul" <vkoul@kernel.org>,
"Gustavo Pimentel" <Gustavo.Pimentel@synopsys.com>,
"Kees Cook" <kees@kernel.org>,
"Gustavo A. R. Silva" <gustavoars@kernel.org>,
"Krzysztof Wilczyński" <kwilczynski@kernel.org>,
"Kishon Vijay Abraham I" <kishon@kernel.org>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Christoph Hellwig" <hch@lst.de>,
"Niklas Cassel" <cassel@kernel.org>,
dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-hardening@vger.kernel.org, linux-pci@vger.kernel.org,
linux-nvme@lists.infradead.org, imx@lists.linux.dev
Subject: Re: [PATCH 09/11] dmaengine: dw-edma: Use common dw_edma_core_start() for both edma and hdmi
Date: Mon, 5 Jan 2026 12:47:36 -0500 [thread overview]
Message-ID: <aVv5OLSorjVITZwR@lizhi-Precision-Tower-5810> (raw)
In-Reply-To: <lo5yj5eaqny4m5m4dxic4i2hnftnlgs32loed7x7wlwxpl72lj@bccj3ayuuyf5>
On Tue, Dec 30, 2025 at 10:24:20PM +0530, Manivannan Sadhasivam wrote:
> On Fri, Dec 12, 2025 at 05:24:48PM -0500, Frank Li wrote:
> > Use common dw_edma_core_start() for both edma and hdmi. Remove .start()
>
> s/edma/eDMA
> s/hdmi/HDMA
>
> Here and below.
>
> > callback functions at edma and hdmi.
> >
> > HDMI set CYCLE_BIT for each chunk. Now only set it when first is true. The
> > logic is the same because previous ll_max is -1, so first is always true.
> >
>
> How ll_max is related to 'desc->xfer_sz'?
No relastionship! why have this question?
Frank
>
> - Mani
>
> > Signed-off-by: Frank Li <Frank.Li@nxp.com>
> > ---
> > drivers/dma/dw-edma/dw-edma-core.c | 24 ++++++++++++++++--
> > drivers/dma/dw-edma/dw-edma-core.h | 7 -----
> > drivers/dma/dw-edma/dw-edma-v0-core.c | 48 -----------------------------------
> > drivers/dma/dw-edma/dw-hdma-v0-core.c | 43 +++----------------------------
> > 4 files changed, 25 insertions(+), 97 deletions(-)
> >
> > diff --git a/drivers/dma/dw-edma/dw-edma-core.c b/drivers/dma/dw-edma/dw-edma-core.c
> > index 5b12af20cb37156a8dec440401d956652b890d53..37918f733eb4d36c7ced6418b85a885affadc8f7 100644
> > --- a/drivers/dma/dw-edma/dw-edma-core.c
> > +++ b/drivers/dma/dw-edma/dw-edma-core.c
> > @@ -163,9 +163,29 @@ static void vchan_free_desc(struct virt_dma_desc *vdesc)
> > dw_edma_free_desc(vd2dw_edma_desc(vdesc));
> > }
> >
> > +static void dw_edma_core_start(struct dw_edma_chunk *chunk, bool first)
> > +{
> > + struct dw_edma_chan *chan = chunk->chan;
> > + struct dw_edma_burst *child;
> > + u32 i = 0;
> > + int j;
> > +
> > + j = chunk->bursts_alloc;
> > + list_for_each_entry(child, &chunk->burst->list, list) {
> > + j--;
> > + dw_edma_core_ll_data(chan, child, i++, chunk->cb, !j);
> > + }
> > +
> > + dw_edma_core_ll_link(chan, i, chunk->cb, chan->ll_region.paddr);
> > +
> > + if (first)
> > + dw_edma_core_ch_enable(chan);
> > +
> > + dw_edma_core_ch_doorbell(chan);
> > +}
> > +
> > static int dw_edma_start_transfer(struct dw_edma_chan *chan)
> > {
> > - struct dw_edma *dw = chan->dw;
> > struct dw_edma_chunk *child;
> > struct dw_edma_desc *desc;
> > struct virt_dma_desc *vd;
> > @@ -183,7 +203,7 @@ static int dw_edma_start_transfer(struct dw_edma_chan *chan)
> > if (!child)
> > return 0;
> >
> > - dw_edma_core_start(dw, child, !desc->xfer_sz);
> > + dw_edma_core_start(child, !desc->xfer_sz);
> > desc->xfer_sz += child->xfer_sz;
> > dw_edma_free_burst(child);
> > list_del(&child->list);
> > diff --git a/drivers/dma/dw-edma/dw-edma-core.h b/drivers/dma/dw-edma/dw-edma-core.h
> > index 2b5defae133c360f142394f9fab35c4748a893da..7a0d8405eb7feaedf4b19fd83bbeb5d24781bb7b 100644
> > --- a/drivers/dma/dw-edma/dw-edma-core.h
> > +++ b/drivers/dma/dw-edma/dw-edma-core.h
> > @@ -124,7 +124,6 @@ struct dw_edma_core_ops {
> > enum dma_status (*ch_status)(struct dw_edma_chan *chan);
> > irqreturn_t (*handle_int)(struct dw_edma_irq *dw_irq, enum dw_edma_dir dir,
> > dw_edma_handler_t done, dw_edma_handler_t abort);
> > - void (*start)(struct dw_edma_chunk *chunk, bool first);
> > void (*ll_data)(struct dw_edma_chan *chan, struct dw_edma_burst *burst,
> > u32 idx, bool cb, bool irq);
> > void (*ll_link)(struct dw_edma_chan *chan, u32 idx, bool cb, u64 addr);
> > @@ -195,12 +194,6 @@ dw_edma_core_handle_int(struct dw_edma_irq *dw_irq, enum dw_edma_dir dir,
> > return dw_irq->dw->core->handle_int(dw_irq, dir, done, abort);
> > }
> >
> > -static inline
> > -void dw_edma_core_start(struct dw_edma *dw, struct dw_edma_chunk *chunk, bool first)
> > -{
> > - dw->core->start(chunk, first);
> > -}
> > -
> > static inline
> > void dw_edma_core_ch_config(struct dw_edma_chan *chan)
> > {
> > diff --git a/drivers/dma/dw-edma/dw-edma-v0-core.c b/drivers/dma/dw-edma/dw-edma-v0-core.c
> > index 59ee219f1abddd48806dec953ce96afdc87ffdab..c5f381d00b9773e52c1134cfea3ac3a04c7bef52 100644
> > --- a/drivers/dma/dw-edma/dw-edma-v0-core.c
> > +++ b/drivers/dma/dw-edma/dw-edma-v0-core.c
> > @@ -379,36 +379,6 @@ static void dw_edma_v0_core_ch_enable(struct dw_edma_chan *chan)
> > upper_32_bits(chan->ll_region.paddr));
> > }
> >
> > -static void dw_edma_v0_core_write_chunk(struct dw_edma_chunk *chunk)
> > -{
> > - struct dw_edma_burst *child;
> > - struct dw_edma_chan *chan = chunk->chan;
> > - u32 control = 0, i = 0;
> > - int j;
> > -
> > - if (chunk->cb)
> > - control = DW_EDMA_V0_CB;
> > -
> > - j = chunk->bursts_alloc;
> > - list_for_each_entry(child, &chunk->burst->list, list) {
> > - j--;
> > - if (!j) {
> > - control |= DW_EDMA_V0_LIE;
> > - if (!(chan->dw->chip->flags & DW_EDMA_CHIP_LOCAL))
> > - control |= DW_EDMA_V0_RIE;
> > - }
> > -
> > - dw_edma_v0_write_ll_data(chan, i++, control, child->sz,
> > - child->sar, child->dar);
> > - }
> > -
> > - control = DW_EDMA_V0_LLP | DW_EDMA_V0_TCB;
> > - if (!chunk->cb)
> > - control |= DW_EDMA_V0_CB;
> > -
> > - dw_edma_v0_write_ll_link(chan, i, control, chan->ll_region.paddr);
> > -}
> > -
> > static void dw_edma_v0_sync_ll_data(struct dw_edma_chan *chan)
> > {
> > /*
> > @@ -423,23 +393,6 @@ static void dw_edma_v0_sync_ll_data(struct dw_edma_chan *chan)
> > readl(chan->ll_region.vaddr.io);
> > }
> >
> > -static void dw_edma_v0_core_start(struct dw_edma_chunk *chunk, bool first)
> > -{
> > - struct dw_edma_chan *chan = chunk->chan;
> > - struct dw_edma *dw = chan->dw;
> > -
> > - dw_edma_v0_core_write_chunk(chunk);
> > -
> > - if (first)
> > - dw_edma_v0_core_ch_enable(chan);
> > -
> > - dw_edma_v0_sync_ll_data(chan);
> > -
> > - /* Doorbell */
> > - SET_RW_32(dw, chan->dir, doorbell,
> > - FIELD_PREP(EDMA_V0_DOORBELL_CH_MASK, chan->id));
> > -}
> > -
> > static void dw_edma_v0_core_ch_config(struct dw_edma_chan *chan)
> > {
> > struct dw_edma *dw = chan->dw;
> > @@ -562,7 +515,6 @@ static const struct dw_edma_core_ops dw_edma_v0_core = {
> > .ch_count = dw_edma_v0_core_ch_count,
> > .ch_status = dw_edma_v0_core_ch_status,
> > .handle_int = dw_edma_v0_core_handle_int,
> > - .start = dw_edma_v0_core_start,
> > .ll_data = dw_edma_v0_core_ll_data,
> > .ll_link = dw_edma_v0_core_ll_link,
> > .ch_doorbell = dw_edma_v0_core_ch_doorbell,
> > diff --git a/drivers/dma/dw-edma/dw-hdma-v0-core.c b/drivers/dma/dw-edma/dw-hdma-v0-core.c
> > index 94350bb2bdcd6e29d8a42380160a5bd77caf4680..7f9fe3a6edd94583fd09c80a8d79527ed6383a8c 100644
> > --- a/drivers/dma/dw-edma/dw-hdma-v0-core.c
> > +++ b/drivers/dma/dw-edma/dw-hdma-v0-core.c
> > @@ -217,26 +217,10 @@ static void dw_hdma_v0_core_ch_enable(struct dw_edma_chan *chan)
> > lower_32_bits(chan->ll_region.paddr));
> > SET_CH_32(dw, chan->dir, chan->id, llp.msb,
> > upper_32_bits(chan->ll_region.paddr));
> > -}
> > -
> > -static void dw_hdma_v0_core_write_chunk(struct dw_edma_chunk *chunk)
> > -{
> > - struct dw_edma_chan *chan = chunk->chan;
> > - struct dw_edma_burst *child;
> > - u32 control = 0, i = 0;
> > -
> > - if (chunk->cb)
> > - control = DW_HDMA_V0_CB;
> > -
> > - list_for_each_entry(child, &chunk->burst->list, list)
> > - dw_hdma_v0_write_ll_data(chan, i++, control, child->sz,
> > - child->sar, child->dar);
> > -
> > - control = DW_HDMA_V0_LLP | DW_HDMA_V0_TCB;
> > - if (!chunk->cb)
> > - control |= DW_HDMA_V0_CB;
> >
> > - dw_hdma_v0_write_ll_link(chan, i, control, chunk->chan->ll_region.paddr);
> > + /* Set consumer cycle */
> > + SET_CH_32(dw, chan->dir, chan->id, cycle_sync,
> > + HDMA_V0_CONSUMER_CYCLE_STAT | HDMA_V0_CONSUMER_CYCLE_BIT);
> > }
> >
> > static void dw_hdma_v0_sync_ll_data(struct dw_edma_chan *chan)
> > @@ -253,26 +237,6 @@ static void dw_hdma_v0_sync_ll_data(struct dw_edma_chan *chan)
> > readl(chan->ll_region.vaddr.io);
> > }
> >
> > -static void dw_hdma_v0_core_start(struct dw_edma_chunk *chunk, bool first)
> > -{
> > - struct dw_edma_chan *chan = chunk->chan;
> > - struct dw_edma *dw = chan->dw;
> > -
> > - dw_hdma_v0_core_write_chunk(chunk);
> > -
> > - if (first)
> > - dw_hdma_v0_core_ch_enable(chan);
> > -
> > - /* Set consumer cycle */
> > - SET_CH_32(dw, chan->dir, chan->id, cycle_sync,
> > - HDMA_V0_CONSUMER_CYCLE_STAT | HDMA_V0_CONSUMER_CYCLE_BIT);
> > -
> > - dw_hdma_v0_sync_ll_data(chan);
> > -
> > - /* Doorbell */
> > - SET_CH_32(dw, chan->dir, chan->id, doorbell, HDMA_V0_DOORBELL_START);
> > -}
> > -
> > static void dw_hdma_v0_core_ch_config(struct dw_edma_chan *chan)
> > {
> > struct dw_edma *dw = chan->dw;
> > @@ -332,7 +296,6 @@ static const struct dw_edma_core_ops dw_hdma_v0_core = {
> > .ch_count = dw_hdma_v0_core_ch_count,
> > .ch_status = dw_hdma_v0_core_ch_status,
> > .handle_int = dw_hdma_v0_core_handle_int,
> > - .start = dw_hdma_v0_core_start,
> > .ll_data = dw_hdma_v0_core_ll_data,
> > .ll_link = dw_hdma_v0_core_ll_link,
> > .ch_doorbell = dw_hdma_v0_core_ch_doorbell,
> >
> > --
> > 2.34.1
> >
>
> --
> மணிவண்ணன் சதாசிவம்
next prev parent reply other threads:[~2026-01-05 17:47 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-12 22:24 [PATCH 00/11] dmaengine: dw-edma: flatten desc structions and simple code Frank Li
2025-12-12 22:24 ` [PATCH 01/11] dmaengine: dw-edma: Add spinlock to protect DONE_INT_MASK and ABORT_INT_MASK Frank Li
2025-12-30 16:30 ` Manivannan Sadhasivam
2026-01-05 17:42 ` Frank Li
2025-12-12 22:24 ` [PATCH 02/11] dmaengine: dw-edma: Move control field update of DMA link to the last step Frank Li
2025-12-12 22:24 ` [PATCH 03/11] dmaengine: dw-edma: Add xfer_sz field to struct dw_edma_chunk Frank Li
2025-12-12 22:24 ` [PATCH 04/11] dmaengine: dw-edma: Remove ll_max = -1 in dw_edma_channel_setup() Frank Li
2025-12-12 22:24 ` [PATCH 05/11] dmaengine: dw-edma: Move ll_region from struct dw_edma_chunk to struct dw_edma_chan Frank Li
2025-12-12 22:24 ` [PATCH 06/11] dmaengine: dw-edma: Pass down dw_edma_chan to reduce one level of indirection Frank Li
2025-12-12 22:24 ` [PATCH 07/11] dmaengine: dw-edma: Add helper dw_(edma|hdma)_v0_core_ch_enable() Frank Li
2025-12-12 22:24 ` [PATCH 08/11] dmaengine: dw-edma: Add new callback to fill link list entry Frank Li
2025-12-30 16:40 ` Manivannan Sadhasivam
2025-12-12 22:24 ` [PATCH 09/11] dmaengine: dw-edma: Use common dw_edma_core_start() for both edma and hdmi Frank Li
2025-12-30 16:54 ` Manivannan Sadhasivam
2026-01-05 17:47 ` Frank Li [this message]
2025-12-12 22:24 ` [PATCH 10/11] dmaengine: dw-edma: Use burst array instead of linked list Frank Li
2025-12-12 22:24 ` [PATCH 11/11] dmaengine: dw-edma: Remove struct dw_edma_chunk Frank Li
2025-12-30 17:01 ` Manivannan Sadhasivam
2026-01-05 17:50 ` Frank Li
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=aVv5OLSorjVITZwR@lizhi-Precision-Tower-5810 \
--to=frank.li@nxp.com \
--cc=Gustavo.Pimentel@synopsys.com \
--cc=bhelgaas@google.com \
--cc=cassel@kernel.org \
--cc=dmaengine@vger.kernel.org \
--cc=gustavoars@kernel.org \
--cc=hch@lst.de \
--cc=imx@lists.linux.dev \
--cc=kees@kernel.org \
--cc=kishon@kernel.org \
--cc=kwilczynski@kernel.org \
--cc=linux-hardening@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nvme@lists.infradead.org \
--cc=linux-pci@vger.kernel.org \
--cc=mani@kernel.org \
--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