mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Nuno Sá" <nuno.sa@analog.com>
To: Vinod Koul <vkoul@kernel.org>
Cc: "Frank Li" <Frank.li@oss.nxp.com>,
	"Andy Shevchenko" <andriy.shevchenko@intel.com>,
	linux-kernel@vger.kernel.org, dmaengine@vger.kernel.org,
	linux-arm-msm@vger.kernel.org,
	linux-stm32@st-md-mailman.stormreply.com,
	linux-arm-kernel@lists.infradead.org, linux-iio@vger.kernel.org,
	linux-sound@vger.kernel.org, linux-spi@vger.kernel.org,
	"Frank Li" <Frank.Li@kernel.org>,
	"Lars-Peter Clausen" <lars@metafoo.de>,
	"Eugeniy Paltsev" <Eugeniy.Paltsev@synopsys.com>,
	"Amélie Delaunay" <amelie.delaunay@foss.st.com>,
	"Maxime Coquelin" <mcoquelin.stm32@gmail.com>,
	"Alexandre Torgue" <alexandre.torgue@foss.st.com>,
	"Jonathan Cameron" <jic23@kernel.org>,
	"David Lechner" <dlechner@baylibre.com>,
	"Andy Shevchenko" <andy@kernel.org>,
	"Jaroslav Kysela" <perex@perex.cz>,
	"Takashi Iwai" <tiwai@suse.com>,
	"Mark Brown" <broonie@kernel.org>
Subject: Re: [PATCH v4 01/10] dmaengine: Move enum dma_slave_buswidth to a new header
Date: Mon, 21 Sep 2026 09:53:49 +0100	[thread overview]
Message-ID: <arDtEB0na9DxDWAS@nsa> (raw)
In-Reply-To: <aq18_TMNs4EJzgZO@parshuram>

On Fri, Sep 18, 2026 at 11:33:41PM +0530, Vinod Koul wrote:
> On 18-09-26, 09:39, Nuno Sá wrote:
> > On Thu, Sep 17, 2026 at 11:39:54PM +0530, Vinod Koul wrote:
> > > On 15-09-26, 12:04, Frank Li wrote:
> > > > On Tue, Sep 15, 2026 at 09:50:22PM +0530, Vinod Koul wrote:
> > > > > On 15-09-26, 21:22, Vinod Koul wrote:
> > > 
> > > > > > > Traditional naming would be
> > > > > > > dma/engine/provider.h
> > > > > > > dma/engine/consumer.h
> > > > > >
> > > > > > consumer and provider and good names.. I would retain the full dmaengine
> > > > > > everywhere please. dma causes confusion already!
> > > > >
> > > > > Thinking about it again, drivers/dma/dmaengine.h should be the provider
> > > > 
> > > > There some dmaengine code outside drivers/dma directory, like
> > > > drivers/crypto/ccp/ccp-dmaengine.c
> > > 
> > > They chose to be outside, their choice... They need to be updated as
> > > well to point to ../../dma/dmaengine.h :-)
> > 
> > I tend to agree with Andy but anyways. I feel this is going a bit out of
> > scope now. So what we have now in the series is:
> > 
> > 
> > - include/linux/dmaengine.h (without enum dma_slave_buswidth)
> > - include/linux/dma/types.h (with enum dma_slave_buswidth and new
> >   dma_buswidth_t type) - A future one would be dma_cap_mask_t and we could
> >   drop bitmap.h from dmaengine.h
> > - include/linux/dma/widthmask.h - The new bitmap based API for bus_width
> > 
> > I kind like the separation (and the whole point was to avoid bitmap.h in
> > the main dmaengine.h API) but tbh I'm not sure if a consumer driver
> > will ever use dma/widthmask.h without needing the consumer API. But
> > to sum things up, what do you suggest for vÛE?
> > 
> > * include/linux/dmaengine.h as the consumer API and includes the new
> > the widthmask API
> > * provider/private goes to drivers/dma/dmaengine.h and just includes
> > include/linux/dmaengine.h as the starting point?
> > 
> > Let me know how do you want things for v5
> 
> Yes lets talk about dma_slave_buswidth, it is client type. This is
> configured by users to set the width of peripheral.
> So this needs to be in the include/linux/dmaengine.h
> 

Agreed! But providers also need to set the allowed bus mask. And I'm
just not sure they need to include/consume all of the consumer API.
Also, it's common to allow the provider API to be widely used throughout
the kernel (but I agree that could be even harder to get done - if we
want to make some stuff really private - but I guess that could be done
in a second step or more incrementally). We do also have some subfolders
in `drivers/dma` which means we'll need the odd "../dmaengine.h" relative
include which I do not love tbh (on top of the crypto stuff).

I really think something like the below would be more appropriate (if we
just want the provider/consumer API without further splitting like the
types.h and widthmak.h in this version):

include/linux/dmaengine.h - provider API (as of today)
include/linux/dmaengine-consumer.h

But anyways, if you or Frank do not object in the next few days, I'll
take the above approach suggested by Vinod:

drivers/dma/dmaengine.h - provider
include/linux/dmaengine.h - consumer

- Nuno Sá

> -- 
> ~Vinod

  reply	other threads:[~2026-09-21  8:53 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-11 17:25 [PATCH v4 00/10] dmaengine: Support bus widths of 32 bytes and above Nuno Sá
2026-09-11 17:25 ` [PATCH v4 01/10] dmaengine: Move enum dma_slave_buswidth to a new header Nuno Sá
2026-09-12  7:57   ` Andy Shevchenko
2026-09-14 14:18   ` Frank Li
2026-09-14 15:40     ` Nuno Sá
2026-09-15  7:29     ` Andy Shevchenko
2026-09-15 14:37       ` Frank Li
2026-09-15 14:53         ` Andy Shevchenko
2026-09-17 10:54           ` Nuno Sá
2026-09-17 12:29             ` Andy Shevchenko
2026-09-17 10:49         ` Nuno Sá
2026-09-17 14:38           ` Frank Li
2026-09-17 15:26             ` Nuno Sá
2026-09-18  8:25             ` Nuno Sá
2026-09-15 15:52       ` Vinod Koul
2026-09-15 16:20         ` Vinod Koul
2026-09-15 17:04           ` Frank Li
2026-09-17 18:09             ` Vinod Koul
2026-09-18  6:24               ` Andy Shevchenko
2026-09-18 18:01                 ` Vinod Koul
2026-09-18  8:39               ` Nuno Sá
2026-09-18 18:03                 ` Vinod Koul
2026-09-21  8:53                   ` Nuno Sá [this message]
2026-09-21 16:12                     ` Frank Li
2026-09-11 17:25 ` [PATCH v4 02/10] dmaengine: Support bus widths of 32 bytes and above Nuno Sá
2026-09-14  8:05   ` Andy Shevchenko
2026-09-11 17:25 ` [PATCH v4 03/10] dmaengine: dma-axi-dmac: Use bus width capability helpers Nuno Sá
2026-09-11 17:25 ` [PATCH v4 04/10] dmaengine: dw-axi-dmac: " Nuno Sá
2026-09-11 17:25 ` [PATCH v4 05/10] dmaengine: qcom: gpi: " Nuno Sá
2026-09-11 17:25 ` [PATCH v4 06/10] dmaengine: stm32-dma3: " Nuno Sá
2026-09-11 17:25 ` [PATCH v4 07/10] iio: buffer-dmaengine: Use dma_slave_caps bus width accessors Nuno Sá
2026-09-14  8:06   ` Andy Shevchenko
2026-09-11 17:25 ` [PATCH v4 08/10] ALSA: pcm_dmaengine: Use dma_slave_caps bus width helpers Nuno Sá
2026-09-14  8:12   ` Andy Shevchenko
2026-09-14 15:39     ` Nuno Sá
2026-09-15  7:31       ` Andy Shevchenko
2026-09-15  8:13         ` Nuno Sá
2026-09-11 17:25 ` [PATCH v4 09/10] spi: dw: " Nuno Sá
2026-09-11 17:25 ` [PATCH v4 10/10] dmaengine: Drop legacy bus width fields from dma_slave_caps Nuno Sá

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=arDtEB0na9DxDWAS@nsa \
    --to=nuno.sa@analog.com \
    --cc=Eugeniy.Paltsev@synopsys.com \
    --cc=Frank.Li@kernel.org \
    --cc=Frank.li@oss.nxp.com \
    --cc=alexandre.torgue@foss.st.com \
    --cc=amelie.delaunay@foss.st.com \
    --cc=andriy.shevchenko@intel.com \
    --cc=andy@kernel.org \
    --cc=broonie@kernel.org \
    --cc=dlechner@baylibre.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=jic23@kernel.org \
    --cc=lars@metafoo.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --cc=linux-spi@vger.kernel.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=mcoquelin.stm32@gmail.com \
    --cc=perex@perex.cz \
    --cc=tiwai@suse.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

all inboxes | Powered by JetHome®